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 "AArch64RegisterInfo.h"
19 #include "AArch64Subtarget.h"
20 #include "MCTargetDesc/AArch64AddressingModes.h"
21 #include "Utils/AArch64BaseInfo.h"
22 #include "llvm/ADT/APFloat.h"
23 #include "llvm/ADT/APInt.h"
24 #include "llvm/ADT/ArrayRef.h"
25 #include "llvm/ADT/STLExtras.h"
26 #include "llvm/ADT/SmallVector.h"
27 #include "llvm/ADT/Statistic.h"
28 #include "llvm/ADT/StringRef.h"
29 #include "llvm/ADT/StringSwitch.h"
30 #include "llvm/ADT/Triple.h"
31 #include "llvm/ADT/Twine.h"
32 #include "llvm/Analysis/VectorUtils.h"
33 #include "llvm/CodeGen/CallingConvLower.h"
34 #include "llvm/CodeGen/MachineBasicBlock.h"
35 #include "llvm/CodeGen/MachineFrameInfo.h"
36 #include "llvm/CodeGen/MachineFunction.h"
37 #include "llvm/CodeGen/MachineInstr.h"
38 #include "llvm/CodeGen/MachineInstrBuilder.h"
39 #include "llvm/CodeGen/MachineMemOperand.h"
40 #include "llvm/CodeGen/MachineRegisterInfo.h"
41 #include "llvm/CodeGen/MachineValueType.h"
42 #include "llvm/CodeGen/RuntimeLibcalls.h"
43 #include "llvm/CodeGen/SelectionDAG.h"
44 #include "llvm/CodeGen/SelectionDAGNodes.h"
45 #include "llvm/CodeGen/ValueTypes.h"
46 #include "llvm/IR/Attributes.h"
47 #include "llvm/IR/Constants.h"
48 #include "llvm/IR/DataLayout.h"
49 #include "llvm/IR/DebugLoc.h"
50 #include "llvm/IR/DerivedTypes.h"
51 #include "llvm/IR/Function.h"
52 #include "llvm/IR/GetElementPtrTypeIterator.h"
53 #include "llvm/IR/GlobalValue.h"
54 #include "llvm/IR/IRBuilder.h"
55 #include "llvm/IR/Instruction.h"
56 #include "llvm/IR/Instructions.h"
57 #include "llvm/IR/Intrinsics.h"
58 #include "llvm/IR/Module.h"
59 #include "llvm/IR/OperandTraits.h"
60 #include "llvm/IR/Type.h"
61 #include "llvm/IR/Use.h"
62 #include "llvm/IR/Value.h"
63 #include "llvm/MC/MCRegisterInfo.h"
64 #include "llvm/Support/Casting.h"
65 #include "llvm/Support/CodeGen.h"
66 #include "llvm/Support/CommandLine.h"
67 #include "llvm/Support/Compiler.h"
68 #include "llvm/Support/Debug.h"
69 #include "llvm/Support/ErrorHandling.h"
70 #include "llvm/Support/KnownBits.h"
71 #include "llvm/Support/MathExtras.h"
72 #include "llvm/Support/raw_ostream.h"
73 #include "llvm/Target/TargetCallingConv.h"
74 #include "llvm/Target/TargetInstrInfo.h"
75 #include "llvm/Target/TargetMachine.h"
76 #include "llvm/Target/TargetOptions.h"
77 #include <algorithm>
78 #include <bitset>
79 #include <cassert>
80 #include <cctype>
81 #include <cstdint>
82 #include <cstdlib>
83 #include <iterator>
84 #include <limits>
85 #include <tuple>
86 #include <utility>
87 #include <vector>
88 
89 using namespace llvm;
90 
91 #define DEBUG_TYPE "aarch64-lower"
92 
93 STATISTIC(NumTailCalls, "Number of tail calls");
94 STATISTIC(NumShiftInserts, "Number of vector shift inserts");
95 STATISTIC(NumOptimizedImms, "Number of times immediates were optimized");
96 
97 static cl::opt<bool>
98 EnableAArch64SlrGeneration("aarch64-shift-insert-generation", cl::Hidden,
99                            cl::desc("Allow AArch64 SLI/SRI formation"),
100                            cl::init(false));
101 
102 // FIXME: The necessary dtprel relocations don't seem to be supported
103 // well in the GNU bfd and gold linkers at the moment. Therefore, by
104 // default, for now, fall back to GeneralDynamic code generation.
105 cl::opt<bool> EnableAArch64ELFLocalDynamicTLSGeneration(
106     "aarch64-elf-ldtls-generation", cl::Hidden,
107     cl::desc("Allow AArch64 Local Dynamic TLS code generation"),
108     cl::init(false));
109 
110 static cl::opt<bool>
111 EnableOptimizeLogicalImm("aarch64-enable-logical-imm", cl::Hidden,
112                          cl::desc("Enable AArch64 logical imm instruction "
113                                   "optimization"),
114                          cl::init(true));
115 
116 /// Value type used for condition codes.
117 static const MVT MVT_CC = MVT::i32;
118 
119 AArch64TargetLowering::AArch64TargetLowering(const TargetMachine &TM,
120                                              const AArch64Subtarget &STI)
121     : TargetLowering(TM), Subtarget(&STI) {
122   // AArch64 doesn't have comparisons which set GPRs or setcc instructions, so
123   // we have to make something up. Arbitrarily, choose ZeroOrOne.
124   setBooleanContents(ZeroOrOneBooleanContent);
125   // When comparing vectors the result sets the different elements in the
126   // vector to all-one or all-zero.
127   setBooleanVectorContents(ZeroOrNegativeOneBooleanContent);
128 
129   // Set up the register classes.
130   addRegisterClass(MVT::i32, &AArch64::GPR32allRegClass);
131   addRegisterClass(MVT::i64, &AArch64::GPR64allRegClass);
132 
133   if (Subtarget->hasFPARMv8()) {
134     addRegisterClass(MVT::f16, &AArch64::FPR16RegClass);
135     addRegisterClass(MVT::f32, &AArch64::FPR32RegClass);
136     addRegisterClass(MVT::f64, &AArch64::FPR64RegClass);
137     addRegisterClass(MVT::f128, &AArch64::FPR128RegClass);
138   }
139 
140   if (Subtarget->hasNEON()) {
141     addRegisterClass(MVT::v16i8, &AArch64::FPR8RegClass);
142     addRegisterClass(MVT::v8i16, &AArch64::FPR16RegClass);
143     // Someone set us up the NEON.
144     addDRTypeForNEON(MVT::v2f32);
145     addDRTypeForNEON(MVT::v8i8);
146     addDRTypeForNEON(MVT::v4i16);
147     addDRTypeForNEON(MVT::v2i32);
148     addDRTypeForNEON(MVT::v1i64);
149     addDRTypeForNEON(MVT::v1f64);
150     addDRTypeForNEON(MVT::v4f16);
151 
152     addQRTypeForNEON(MVT::v4f32);
153     addQRTypeForNEON(MVT::v2f64);
154     addQRTypeForNEON(MVT::v16i8);
155     addQRTypeForNEON(MVT::v8i16);
156     addQRTypeForNEON(MVT::v4i32);
157     addQRTypeForNEON(MVT::v2i64);
158     addQRTypeForNEON(MVT::v8f16);
159   }
160 
161   // Compute derived properties from the register classes
162   computeRegisterProperties(Subtarget->getRegisterInfo());
163 
164   // Provide all sorts of operation actions
165   setOperationAction(ISD::GlobalAddress, MVT::i64, Custom);
166   setOperationAction(ISD::GlobalTLSAddress, MVT::i64, Custom);
167   setOperationAction(ISD::SETCC, MVT::i32, Custom);
168   setOperationAction(ISD::SETCC, MVT::i64, Custom);
169   setOperationAction(ISD::SETCC, MVT::f16, Custom);
170   setOperationAction(ISD::SETCC, MVT::f32, Custom);
171   setOperationAction(ISD::SETCC, MVT::f64, Custom);
172   setOperationAction(ISD::BITREVERSE, MVT::i32, Legal);
173   setOperationAction(ISD::BITREVERSE, MVT::i64, Legal);
174   setOperationAction(ISD::BRCOND, MVT::Other, Expand);
175   setOperationAction(ISD::BR_CC, MVT::i32, Custom);
176   setOperationAction(ISD::BR_CC, MVT::i64, Custom);
177   setOperationAction(ISD::BR_CC, MVT::f16, Custom);
178   setOperationAction(ISD::BR_CC, MVT::f32, Custom);
179   setOperationAction(ISD::BR_CC, MVT::f64, Custom);
180   setOperationAction(ISD::SELECT, MVT::i32, Custom);
181   setOperationAction(ISD::SELECT, MVT::i64, Custom);
182   setOperationAction(ISD::SELECT, MVT::f16, Custom);
183   setOperationAction(ISD::SELECT, MVT::f32, Custom);
184   setOperationAction(ISD::SELECT, MVT::f64, Custom);
185   setOperationAction(ISD::SELECT_CC, MVT::i32, Custom);
186   setOperationAction(ISD::SELECT_CC, MVT::i64, Custom);
187   setOperationAction(ISD::SELECT_CC, MVT::f16, Custom);
188   setOperationAction(ISD::SELECT_CC, MVT::f32, Custom);
189   setOperationAction(ISD::SELECT_CC, MVT::f64, Custom);
190   setOperationAction(ISD::BR_JT, MVT::Other, Expand);
191   setOperationAction(ISD::JumpTable, MVT::i64, Custom);
192 
193   setOperationAction(ISD::SHL_PARTS, MVT::i64, Custom);
194   setOperationAction(ISD::SRA_PARTS, MVT::i64, Custom);
195   setOperationAction(ISD::SRL_PARTS, MVT::i64, Custom);
196 
197   setOperationAction(ISD::FREM, MVT::f32, Expand);
198   setOperationAction(ISD::FREM, MVT::f64, Expand);
199   setOperationAction(ISD::FREM, MVT::f80, Expand);
200 
201   // Custom lowering hooks are needed for XOR
202   // to fold it into CSINC/CSINV.
203   setOperationAction(ISD::XOR, MVT::i32, Custom);
204   setOperationAction(ISD::XOR, MVT::i64, Custom);
205 
206   // Virtually no operation on f128 is legal, but LLVM can't expand them when
207   // there's a valid register class, so we need custom operations in most cases.
208   setOperationAction(ISD::FABS, MVT::f128, Expand);
209   setOperationAction(ISD::FADD, MVT::f128, Custom);
210   setOperationAction(ISD::FCOPYSIGN, MVT::f128, Expand);
211   setOperationAction(ISD::FCOS, MVT::f128, Expand);
212   setOperationAction(ISD::FDIV, MVT::f128, Custom);
213   setOperationAction(ISD::FMA, MVT::f128, Expand);
214   setOperationAction(ISD::FMUL, MVT::f128, Custom);
215   setOperationAction(ISD::FNEG, MVT::f128, Expand);
216   setOperationAction(ISD::FPOW, MVT::f128, Expand);
217   setOperationAction(ISD::FREM, MVT::f128, Expand);
218   setOperationAction(ISD::FRINT, MVT::f128, Expand);
219   setOperationAction(ISD::FSIN, MVT::f128, Expand);
220   setOperationAction(ISD::FSINCOS, MVT::f128, Expand);
221   setOperationAction(ISD::FSQRT, MVT::f128, Expand);
222   setOperationAction(ISD::FSUB, MVT::f128, Custom);
223   setOperationAction(ISD::FTRUNC, MVT::f128, Expand);
224   setOperationAction(ISD::SETCC, MVT::f128, Custom);
225   setOperationAction(ISD::BR_CC, MVT::f128, Custom);
226   setOperationAction(ISD::SELECT, MVT::f128, Custom);
227   setOperationAction(ISD::SELECT_CC, MVT::f128, Custom);
228   setOperationAction(ISD::FP_EXTEND, MVT::f128, Custom);
229 
230   // Lowering for many of the conversions is actually specified by the non-f128
231   // type. The LowerXXX function will be trivial when f128 isn't involved.
232   setOperationAction(ISD::FP_TO_SINT, MVT::i32, Custom);
233   setOperationAction(ISD::FP_TO_SINT, MVT::i64, Custom);
234   setOperationAction(ISD::FP_TO_SINT, MVT::i128, Custom);
235   setOperationAction(ISD::FP_TO_UINT, MVT::i32, Custom);
236   setOperationAction(ISD::FP_TO_UINT, MVT::i64, Custom);
237   setOperationAction(ISD::FP_TO_UINT, MVT::i128, Custom);
238   setOperationAction(ISD::SINT_TO_FP, MVT::i32, Custom);
239   setOperationAction(ISD::SINT_TO_FP, MVT::i64, Custom);
240   setOperationAction(ISD::SINT_TO_FP, MVT::i128, Custom);
241   setOperationAction(ISD::UINT_TO_FP, MVT::i32, Custom);
242   setOperationAction(ISD::UINT_TO_FP, MVT::i64, Custom);
243   setOperationAction(ISD::UINT_TO_FP, MVT::i128, Custom);
244   setOperationAction(ISD::FP_ROUND, MVT::f32, Custom);
245   setOperationAction(ISD::FP_ROUND, MVT::f64, Custom);
246 
247   // Variable arguments.
248   setOperationAction(ISD::VASTART, MVT::Other, Custom);
249   setOperationAction(ISD::VAARG, MVT::Other, Custom);
250   setOperationAction(ISD::VACOPY, MVT::Other, Custom);
251   setOperationAction(ISD::VAEND, MVT::Other, Expand);
252 
253   // Variable-sized objects.
254   setOperationAction(ISD::STACKSAVE, MVT::Other, Expand);
255   setOperationAction(ISD::STACKRESTORE, MVT::Other, Expand);
256   setOperationAction(ISD::DYNAMIC_STACKALLOC, MVT::i64, Expand);
257 
258   // Constant pool entries
259   setOperationAction(ISD::ConstantPool, MVT::i64, Custom);
260 
261   // BlockAddress
262   setOperationAction(ISD::BlockAddress, MVT::i64, Custom);
263 
264   // Add/Sub overflow ops with MVT::Glues are lowered to NZCV dependences.
265   setOperationAction(ISD::ADDC, MVT::i32, Custom);
266   setOperationAction(ISD::ADDE, MVT::i32, Custom);
267   setOperationAction(ISD::SUBC, MVT::i32, Custom);
268   setOperationAction(ISD::SUBE, MVT::i32, Custom);
269   setOperationAction(ISD::ADDC, MVT::i64, Custom);
270   setOperationAction(ISD::ADDE, MVT::i64, Custom);
271   setOperationAction(ISD::SUBC, MVT::i64, Custom);
272   setOperationAction(ISD::SUBE, MVT::i64, Custom);
273 
274   // AArch64 lacks both left-rotate and popcount instructions.
275   setOperationAction(ISD::ROTL, MVT::i32, Expand);
276   setOperationAction(ISD::ROTL, MVT::i64, Expand);
277   for (MVT VT : MVT::vector_valuetypes()) {
278     setOperationAction(ISD::ROTL, VT, Expand);
279     setOperationAction(ISD::ROTR, VT, Expand);
280   }
281 
282   // AArch64 doesn't have {U|S}MUL_LOHI.
283   setOperationAction(ISD::UMUL_LOHI, MVT::i64, Expand);
284   setOperationAction(ISD::SMUL_LOHI, MVT::i64, Expand);
285 
286   setOperationAction(ISD::CTPOP, MVT::i32, Custom);
287   setOperationAction(ISD::CTPOP, MVT::i64, Custom);
288 
289   setOperationAction(ISD::SDIVREM, MVT::i32, Expand);
290   setOperationAction(ISD::SDIVREM, MVT::i64, Expand);
291   for (MVT VT : MVT::vector_valuetypes()) {
292     setOperationAction(ISD::SDIVREM, VT, Expand);
293     setOperationAction(ISD::UDIVREM, VT, Expand);
294   }
295   setOperationAction(ISD::SREM, MVT::i32, Expand);
296   setOperationAction(ISD::SREM, MVT::i64, Expand);
297   setOperationAction(ISD::UDIVREM, MVT::i32, Expand);
298   setOperationAction(ISD::UDIVREM, MVT::i64, Expand);
299   setOperationAction(ISD::UREM, MVT::i32, Expand);
300   setOperationAction(ISD::UREM, MVT::i64, Expand);
301 
302   // Custom lower Add/Sub/Mul with overflow.
303   setOperationAction(ISD::SADDO, MVT::i32, Custom);
304   setOperationAction(ISD::SADDO, MVT::i64, Custom);
305   setOperationAction(ISD::UADDO, MVT::i32, Custom);
306   setOperationAction(ISD::UADDO, MVT::i64, Custom);
307   setOperationAction(ISD::SSUBO, MVT::i32, Custom);
308   setOperationAction(ISD::SSUBO, MVT::i64, Custom);
309   setOperationAction(ISD::USUBO, MVT::i32, Custom);
310   setOperationAction(ISD::USUBO, MVT::i64, Custom);
311   setOperationAction(ISD::SMULO, MVT::i32, Custom);
312   setOperationAction(ISD::SMULO, MVT::i64, Custom);
313   setOperationAction(ISD::UMULO, MVT::i32, Custom);
314   setOperationAction(ISD::UMULO, MVT::i64, Custom);
315 
316   setOperationAction(ISD::FSIN, MVT::f32, Expand);
317   setOperationAction(ISD::FSIN, MVT::f64, Expand);
318   setOperationAction(ISD::FCOS, MVT::f32, Expand);
319   setOperationAction(ISD::FCOS, MVT::f64, Expand);
320   setOperationAction(ISD::FPOW, MVT::f32, Expand);
321   setOperationAction(ISD::FPOW, MVT::f64, Expand);
322   setOperationAction(ISD::FCOPYSIGN, MVT::f64, Custom);
323   setOperationAction(ISD::FCOPYSIGN, MVT::f32, Custom);
324   if (Subtarget->hasFullFP16())
325     setOperationAction(ISD::FCOPYSIGN, MVT::f16, Custom);
326   else
327     setOperationAction(ISD::FCOPYSIGN, MVT::f16, Promote);
328 
329   setOperationAction(ISD::FREM,    MVT::f16,   Promote);
330   setOperationAction(ISD::FREM,    MVT::v4f16, Promote);
331   setOperationAction(ISD::FREM,    MVT::v8f16, Promote);
332   setOperationAction(ISD::FPOW,    MVT::f16,   Promote);
333   setOperationAction(ISD::FPOW,    MVT::v4f16, Promote);
334   setOperationAction(ISD::FPOW,    MVT::v8f16, Promote);
335   setOperationAction(ISD::FPOWI,   MVT::f16,   Promote);
336   setOperationAction(ISD::FCOS,    MVT::f16,   Promote);
337   setOperationAction(ISD::FCOS,    MVT::v4f16, Promote);
338   setOperationAction(ISD::FCOS,    MVT::v8f16, Promote);
339   setOperationAction(ISD::FSIN,    MVT::f16,   Promote);
340   setOperationAction(ISD::FSIN,    MVT::v4f16, Promote);
341   setOperationAction(ISD::FSIN,    MVT::v8f16, Promote);
342   setOperationAction(ISD::FSINCOS, MVT::f16,   Promote);
343   setOperationAction(ISD::FSINCOS, MVT::v4f16, Promote);
344   setOperationAction(ISD::FSINCOS, MVT::v8f16, Promote);
345   setOperationAction(ISD::FEXP,    MVT::f16,   Promote);
346   setOperationAction(ISD::FEXP,    MVT::v4f16, Promote);
347   setOperationAction(ISD::FEXP,    MVT::v8f16, Promote);
348   setOperationAction(ISD::FEXP2,   MVT::f16,   Promote);
349   setOperationAction(ISD::FEXP2,   MVT::v4f16, Promote);
350   setOperationAction(ISD::FEXP2,   MVT::v8f16, Promote);
351   setOperationAction(ISD::FLOG,    MVT::f16,   Promote);
352   setOperationAction(ISD::FLOG,    MVT::v4f16, Promote);
353   setOperationAction(ISD::FLOG,    MVT::v8f16, Promote);
354   setOperationAction(ISD::FLOG2,   MVT::f16,   Promote);
355   setOperationAction(ISD::FLOG2,   MVT::v4f16, Promote);
356   setOperationAction(ISD::FLOG2,   MVT::v8f16, Promote);
357   setOperationAction(ISD::FLOG10,  MVT::f16,   Promote);
358   setOperationAction(ISD::FLOG10,  MVT::v4f16, Promote);
359   setOperationAction(ISD::FLOG10,  MVT::v8f16, Promote);
360 
361   if (!Subtarget->hasFullFP16()) {
362     setOperationAction(ISD::SELECT,      MVT::f16,  Promote);
363     setOperationAction(ISD::SELECT_CC,   MVT::f16,  Promote);
364     setOperationAction(ISD::SETCC,       MVT::f16,  Promote);
365     setOperationAction(ISD::BR_CC,       MVT::f16,  Promote);
366     setOperationAction(ISD::FADD,        MVT::f16,  Promote);
367     setOperationAction(ISD::FSUB,        MVT::f16,  Promote);
368     setOperationAction(ISD::FMUL,        MVT::f16,  Promote);
369     setOperationAction(ISD::FDIV,        MVT::f16,  Promote);
370     setOperationAction(ISD::FMA,         MVT::f16,  Promote);
371     setOperationAction(ISD::FNEG,        MVT::f16,  Promote);
372     setOperationAction(ISD::FABS,        MVT::f16,  Promote);
373     setOperationAction(ISD::FCEIL,       MVT::f16,  Promote);
374     setOperationAction(ISD::FSQRT,       MVT::f16,  Promote);
375     setOperationAction(ISD::FFLOOR,      MVT::f16,  Promote);
376     setOperationAction(ISD::FNEARBYINT,  MVT::f16,  Promote);
377     setOperationAction(ISD::FRINT,       MVT::f16,  Promote);
378     setOperationAction(ISD::FROUND,      MVT::f16,  Promote);
379     setOperationAction(ISD::FTRUNC,      MVT::f16,  Promote);
380     setOperationAction(ISD::FMINNUM,     MVT::f16,  Promote);
381     setOperationAction(ISD::FMAXNUM,     MVT::f16,  Promote);
382     setOperationAction(ISD::FMINNAN,     MVT::f16,  Promote);
383     setOperationAction(ISD::FMAXNAN,     MVT::f16,  Promote);
384 
385     // promote v4f16 to v4f32 when that is known to be safe.
386     setOperationAction(ISD::FADD,        MVT::v4f16, Promote);
387     setOperationAction(ISD::FSUB,        MVT::v4f16, Promote);
388     setOperationAction(ISD::FMUL,        MVT::v4f16, Promote);
389     setOperationAction(ISD::FDIV,        MVT::v4f16, Promote);
390     setOperationAction(ISD::FP_EXTEND,   MVT::v4f16, Promote);
391     setOperationAction(ISD::FP_ROUND,    MVT::v4f16, Promote);
392     AddPromotedToType(ISD::FADD,         MVT::v4f16, MVT::v4f32);
393     AddPromotedToType(ISD::FSUB,         MVT::v4f16, MVT::v4f32);
394     AddPromotedToType(ISD::FMUL,         MVT::v4f16, MVT::v4f32);
395     AddPromotedToType(ISD::FDIV,         MVT::v4f16, MVT::v4f32);
396     AddPromotedToType(ISD::FP_EXTEND,    MVT::v4f16, MVT::v4f32);
397     AddPromotedToType(ISD::FP_ROUND,     MVT::v4f16, MVT::v4f32);
398 
399     setOperationAction(ISD::FABS,        MVT::v4f16, Expand);
400     setOperationAction(ISD::FNEG,        MVT::v4f16, Expand);
401     setOperationAction(ISD::FROUND,      MVT::v4f16, Expand);
402     setOperationAction(ISD::FMA,         MVT::v4f16, Expand);
403     setOperationAction(ISD::SETCC,       MVT::v4f16, Expand);
404     setOperationAction(ISD::BR_CC,       MVT::v4f16, Expand);
405     setOperationAction(ISD::SELECT,      MVT::v4f16, Expand);
406     setOperationAction(ISD::SELECT_CC,   MVT::v4f16, Expand);
407     setOperationAction(ISD::FTRUNC,      MVT::v4f16, Expand);
408     setOperationAction(ISD::FCOPYSIGN,   MVT::v4f16, Expand);
409     setOperationAction(ISD::FFLOOR,      MVT::v4f16, Expand);
410     setOperationAction(ISD::FCEIL,       MVT::v4f16, Expand);
411     setOperationAction(ISD::FRINT,       MVT::v4f16, Expand);
412     setOperationAction(ISD::FNEARBYINT,  MVT::v4f16, Expand);
413     setOperationAction(ISD::FSQRT,       MVT::v4f16, Expand);
414 
415     setOperationAction(ISD::FABS,        MVT::v8f16, Expand);
416     setOperationAction(ISD::FADD,        MVT::v8f16, Expand);
417     setOperationAction(ISD::FCEIL,       MVT::v8f16, Expand);
418     setOperationAction(ISD::FCOPYSIGN,   MVT::v8f16, Expand);
419     setOperationAction(ISD::FDIV,        MVT::v8f16, Expand);
420     setOperationAction(ISD::FFLOOR,      MVT::v8f16, Expand);
421     setOperationAction(ISD::FMA,         MVT::v8f16, Expand);
422     setOperationAction(ISD::FMUL,        MVT::v8f16, Expand);
423     setOperationAction(ISD::FNEARBYINT,  MVT::v8f16, Expand);
424     setOperationAction(ISD::FNEG,        MVT::v8f16, Expand);
425     setOperationAction(ISD::FROUND,      MVT::v8f16, Expand);
426     setOperationAction(ISD::FRINT,       MVT::v8f16, Expand);
427     setOperationAction(ISD::FSQRT,       MVT::v8f16, Expand);
428     setOperationAction(ISD::FSUB,        MVT::v8f16, Expand);
429     setOperationAction(ISD::FTRUNC,      MVT::v8f16, Expand);
430     setOperationAction(ISD::SETCC,       MVT::v8f16, Expand);
431     setOperationAction(ISD::BR_CC,       MVT::v8f16, Expand);
432     setOperationAction(ISD::SELECT,      MVT::v8f16, Expand);
433     setOperationAction(ISD::SELECT_CC,   MVT::v8f16, Expand);
434     setOperationAction(ISD::FP_EXTEND,   MVT::v8f16, Expand);
435   }
436 
437   // AArch64 has implementations of a lot of rounding-like FP operations.
438   for (MVT Ty : {MVT::f32, MVT::f64}) {
439     setOperationAction(ISD::FFLOOR, Ty, Legal);
440     setOperationAction(ISD::FNEARBYINT, Ty, Legal);
441     setOperationAction(ISD::FCEIL, Ty, Legal);
442     setOperationAction(ISD::FRINT, Ty, Legal);
443     setOperationAction(ISD::FTRUNC, Ty, Legal);
444     setOperationAction(ISD::FROUND, Ty, Legal);
445     setOperationAction(ISD::FMINNUM, Ty, Legal);
446     setOperationAction(ISD::FMAXNUM, Ty, Legal);
447     setOperationAction(ISD::FMINNAN, Ty, Legal);
448     setOperationAction(ISD::FMAXNAN, Ty, Legal);
449   }
450 
451   if (Subtarget->hasFullFP16()) {
452     setOperationAction(ISD::FNEARBYINT, MVT::f16, Legal);
453     setOperationAction(ISD::FFLOOR,  MVT::f16, Legal);
454     setOperationAction(ISD::FCEIL,   MVT::f16, Legal);
455     setOperationAction(ISD::FRINT,   MVT::f16, Legal);
456     setOperationAction(ISD::FTRUNC,  MVT::f16, Legal);
457     setOperationAction(ISD::FROUND,  MVT::f16, Legal);
458     setOperationAction(ISD::FMINNUM, MVT::f16, Legal);
459     setOperationAction(ISD::FMAXNUM, MVT::f16, Legal);
460     setOperationAction(ISD::FMINNAN, MVT::f16, Legal);
461     setOperationAction(ISD::FMAXNAN, MVT::f16, Legal);
462   }
463 
464   setOperationAction(ISD::PREFETCH, MVT::Other, Custom);
465 
466   setOperationAction(ISD::ATOMIC_CMP_SWAP, MVT::i128, Custom);
467 
468   // Lower READCYCLECOUNTER using an mrs from PMCCNTR_EL0.
469   // This requires the Performance Monitors extension.
470   if (Subtarget->hasPerfMon())
471     setOperationAction(ISD::READCYCLECOUNTER, MVT::i64, Legal);
472 
473   if (Subtarget->isTargetMachO()) {
474     // For iOS, we don't want to the normal expansion of a libcall to
475     // sincos. We want to issue a libcall to __sincos_stret to avoid memory
476     // traffic.
477     setOperationAction(ISD::FSINCOS, MVT::f64, Custom);
478     setOperationAction(ISD::FSINCOS, MVT::f32, Custom);
479   } else {
480     setOperationAction(ISD::FSINCOS, MVT::f64, Expand);
481     setOperationAction(ISD::FSINCOS, MVT::f32, Expand);
482   }
483 
484   // Make floating-point constants legal for the large code model, so they don't
485   // become loads from the constant pool.
486   if (Subtarget->isTargetMachO() && TM.getCodeModel() == CodeModel::Large) {
487     setOperationAction(ISD::ConstantFP, MVT::f32, Legal);
488     setOperationAction(ISD::ConstantFP, MVT::f64, Legal);
489   }
490 
491   // AArch64 does not have floating-point extending loads, i1 sign-extending
492   // load, floating-point truncating stores, or v2i32->v2i16 truncating store.
493   for (MVT VT : MVT::fp_valuetypes()) {
494     setLoadExtAction(ISD::EXTLOAD, VT, MVT::f16, Expand);
495     setLoadExtAction(ISD::EXTLOAD, VT, MVT::f32, Expand);
496     setLoadExtAction(ISD::EXTLOAD, VT, MVT::f64, Expand);
497     setLoadExtAction(ISD::EXTLOAD, VT, MVT::f80, Expand);
498   }
499   for (MVT VT : MVT::integer_valuetypes())
500     setLoadExtAction(ISD::SEXTLOAD, VT, MVT::i1, Expand);
501 
502   setTruncStoreAction(MVT::f32, MVT::f16, Expand);
503   setTruncStoreAction(MVT::f64, MVT::f32, Expand);
504   setTruncStoreAction(MVT::f64, MVT::f16, Expand);
505   setTruncStoreAction(MVT::f128, MVT::f80, Expand);
506   setTruncStoreAction(MVT::f128, MVT::f64, Expand);
507   setTruncStoreAction(MVT::f128, MVT::f32, Expand);
508   setTruncStoreAction(MVT::f128, MVT::f16, Expand);
509 
510   setOperationAction(ISD::BITCAST, MVT::i16, Custom);
511   setOperationAction(ISD::BITCAST, MVT::f16, Custom);
512 
513   // Indexed loads and stores are supported.
514   for (unsigned im = (unsigned)ISD::PRE_INC;
515        im != (unsigned)ISD::LAST_INDEXED_MODE; ++im) {
516     setIndexedLoadAction(im, MVT::i8, Legal);
517     setIndexedLoadAction(im, MVT::i16, Legal);
518     setIndexedLoadAction(im, MVT::i32, Legal);
519     setIndexedLoadAction(im, MVT::i64, Legal);
520     setIndexedLoadAction(im, MVT::f64, Legal);
521     setIndexedLoadAction(im, MVT::f32, Legal);
522     setIndexedLoadAction(im, MVT::f16, Legal);
523     setIndexedStoreAction(im, MVT::i8, Legal);
524     setIndexedStoreAction(im, MVT::i16, Legal);
525     setIndexedStoreAction(im, MVT::i32, Legal);
526     setIndexedStoreAction(im, MVT::i64, Legal);
527     setIndexedStoreAction(im, MVT::f64, Legal);
528     setIndexedStoreAction(im, MVT::f32, Legal);
529     setIndexedStoreAction(im, MVT::f16, Legal);
530   }
531 
532   // Trap.
533   setOperationAction(ISD::TRAP, MVT::Other, Legal);
534 
535   // We combine OR nodes for bitfield operations.
536   setTargetDAGCombine(ISD::OR);
537 
538   // Vector add and sub nodes may conceal a high-half opportunity.
539   // Also, try to fold ADD into CSINC/CSINV..
540   setTargetDAGCombine(ISD::ADD);
541   setTargetDAGCombine(ISD::SUB);
542   setTargetDAGCombine(ISD::SRL);
543   setTargetDAGCombine(ISD::XOR);
544   setTargetDAGCombine(ISD::SINT_TO_FP);
545   setTargetDAGCombine(ISD::UINT_TO_FP);
546 
547   setTargetDAGCombine(ISD::FP_TO_SINT);
548   setTargetDAGCombine(ISD::FP_TO_UINT);
549   setTargetDAGCombine(ISD::FDIV);
550 
551   setTargetDAGCombine(ISD::INTRINSIC_WO_CHAIN);
552 
553   setTargetDAGCombine(ISD::ANY_EXTEND);
554   setTargetDAGCombine(ISD::ZERO_EXTEND);
555   setTargetDAGCombine(ISD::SIGN_EXTEND);
556   setTargetDAGCombine(ISD::BITCAST);
557   setTargetDAGCombine(ISD::CONCAT_VECTORS);
558   setTargetDAGCombine(ISD::STORE);
559   if (Subtarget->supportsAddressTopByteIgnored())
560     setTargetDAGCombine(ISD::LOAD);
561 
562   setTargetDAGCombine(ISD::MUL);
563 
564   setTargetDAGCombine(ISD::SELECT);
565   setTargetDAGCombine(ISD::VSELECT);
566 
567   setTargetDAGCombine(ISD::INTRINSIC_VOID);
568   setTargetDAGCombine(ISD::INTRINSIC_W_CHAIN);
569   setTargetDAGCombine(ISD::INSERT_VECTOR_ELT);
570 
571   MaxStoresPerMemset = MaxStoresPerMemsetOptSize = 8;
572   MaxStoresPerMemcpy = MaxStoresPerMemcpyOptSize = 4;
573   MaxStoresPerMemmove = MaxStoresPerMemmoveOptSize = 4;
574 
575   setStackPointerRegisterToSaveRestore(AArch64::SP);
576 
577   setSchedulingPreference(Sched::Hybrid);
578 
579   EnableExtLdPromotion = true;
580 
581   // Set required alignment.
582   setMinFunctionAlignment(2);
583   // Set preferred alignments.
584   setPrefFunctionAlignment(STI.getPrefFunctionAlignment());
585   setPrefLoopAlignment(STI.getPrefLoopAlignment());
586 
587   // Only change the limit for entries in a jump table if specified by
588   // the subtarget, but not at the command line.
589   unsigned MaxJT = STI.getMaximumJumpTableSize();
590   if (MaxJT && getMaximumJumpTableSize() == 0)
591     setMaximumJumpTableSize(MaxJT);
592 
593   setHasExtractBitsInsn(true);
594 
595   setOperationAction(ISD::INTRINSIC_WO_CHAIN, MVT::Other, Custom);
596 
597   if (Subtarget->hasNEON()) {
598     // FIXME: v1f64 shouldn't be legal if we can avoid it, because it leads to
599     // silliness like this:
600     setOperationAction(ISD::FABS, MVT::v1f64, Expand);
601     setOperationAction(ISD::FADD, MVT::v1f64, Expand);
602     setOperationAction(ISD::FCEIL, MVT::v1f64, Expand);
603     setOperationAction(ISD::FCOPYSIGN, MVT::v1f64, Expand);
604     setOperationAction(ISD::FCOS, MVT::v1f64, Expand);
605     setOperationAction(ISD::FDIV, MVT::v1f64, Expand);
606     setOperationAction(ISD::FFLOOR, MVT::v1f64, Expand);
607     setOperationAction(ISD::FMA, MVT::v1f64, Expand);
608     setOperationAction(ISD::FMUL, MVT::v1f64, Expand);
609     setOperationAction(ISD::FNEARBYINT, MVT::v1f64, Expand);
610     setOperationAction(ISD::FNEG, MVT::v1f64, Expand);
611     setOperationAction(ISD::FPOW, MVT::v1f64, Expand);
612     setOperationAction(ISD::FREM, MVT::v1f64, Expand);
613     setOperationAction(ISD::FROUND, MVT::v1f64, Expand);
614     setOperationAction(ISD::FRINT, MVT::v1f64, Expand);
615     setOperationAction(ISD::FSIN, MVT::v1f64, Expand);
616     setOperationAction(ISD::FSINCOS, MVT::v1f64, Expand);
617     setOperationAction(ISD::FSQRT, MVT::v1f64, Expand);
618     setOperationAction(ISD::FSUB, MVT::v1f64, Expand);
619     setOperationAction(ISD::FTRUNC, MVT::v1f64, Expand);
620     setOperationAction(ISD::SETCC, MVT::v1f64, Expand);
621     setOperationAction(ISD::BR_CC, MVT::v1f64, Expand);
622     setOperationAction(ISD::SELECT, MVT::v1f64, Expand);
623     setOperationAction(ISD::SELECT_CC, MVT::v1f64, Expand);
624     setOperationAction(ISD::FP_EXTEND, MVT::v1f64, Expand);
625 
626     setOperationAction(ISD::FP_TO_SINT, MVT::v1i64, Expand);
627     setOperationAction(ISD::FP_TO_UINT, MVT::v1i64, Expand);
628     setOperationAction(ISD::SINT_TO_FP, MVT::v1i64, Expand);
629     setOperationAction(ISD::UINT_TO_FP, MVT::v1i64, Expand);
630     setOperationAction(ISD::FP_ROUND, MVT::v1f64, Expand);
631 
632     setOperationAction(ISD::MUL, MVT::v1i64, Expand);
633 
634     // AArch64 doesn't have a direct vector ->f32 conversion instructions for
635     // elements smaller than i32, so promote the input to i32 first.
636     setOperationAction(ISD::UINT_TO_FP, MVT::v4i8, Promote);
637     setOperationAction(ISD::SINT_TO_FP, MVT::v4i8, Promote);
638     setOperationAction(ISD::UINT_TO_FP, MVT::v4i16, Promote);
639     setOperationAction(ISD::SINT_TO_FP, MVT::v4i16, Promote);
640     // i8 and i16 vector elements also need promotion to i32 for v8i8 or v8i16
641     // -> v8f16 conversions.
642     setOperationAction(ISD::SINT_TO_FP, MVT::v8i8, Promote);
643     setOperationAction(ISD::UINT_TO_FP, MVT::v8i8, Promote);
644     setOperationAction(ISD::SINT_TO_FP, MVT::v8i16, Promote);
645     setOperationAction(ISD::UINT_TO_FP, MVT::v8i16, Promote);
646     // Similarly, there is no direct i32 -> f64 vector conversion instruction.
647     setOperationAction(ISD::SINT_TO_FP, MVT::v2i32, Custom);
648     setOperationAction(ISD::UINT_TO_FP, MVT::v2i32, Custom);
649     setOperationAction(ISD::SINT_TO_FP, MVT::v2i64, Custom);
650     setOperationAction(ISD::UINT_TO_FP, MVT::v2i64, Custom);
651     // Or, direct i32 -> f16 vector conversion.  Set it so custom, so the
652     // conversion happens in two steps: v4i32 -> v4f32 -> v4f16
653     setOperationAction(ISD::SINT_TO_FP, MVT::v4i32, Custom);
654     setOperationAction(ISD::UINT_TO_FP, MVT::v4i32, Custom);
655 
656     setOperationAction(ISD::CTLZ,       MVT::v1i64, Expand);
657     setOperationAction(ISD::CTLZ,       MVT::v2i64, Expand);
658 
659     setOperationAction(ISD::CTTZ,       MVT::v2i8,  Expand);
660     setOperationAction(ISD::CTTZ,       MVT::v4i16, Expand);
661     setOperationAction(ISD::CTTZ,       MVT::v2i32, Expand);
662     setOperationAction(ISD::CTTZ,       MVT::v1i64, Expand);
663     setOperationAction(ISD::CTTZ,       MVT::v16i8, Expand);
664     setOperationAction(ISD::CTTZ,       MVT::v8i16, Expand);
665     setOperationAction(ISD::CTTZ,       MVT::v4i32, Expand);
666     setOperationAction(ISD::CTTZ,       MVT::v2i64, Expand);
667 
668     // AArch64 doesn't have MUL.2d:
669     setOperationAction(ISD::MUL, MVT::v2i64, Expand);
670     // Custom handling for some quad-vector types to detect MULL.
671     setOperationAction(ISD::MUL, MVT::v8i16, Custom);
672     setOperationAction(ISD::MUL, MVT::v4i32, Custom);
673     setOperationAction(ISD::MUL, MVT::v2i64, Custom);
674 
675     // Vector reductions
676     for (MVT VT : MVT::integer_valuetypes()) {
677       setOperationAction(ISD::VECREDUCE_ADD, VT, Custom);
678       setOperationAction(ISD::VECREDUCE_SMAX, VT, Custom);
679       setOperationAction(ISD::VECREDUCE_SMIN, VT, Custom);
680       setOperationAction(ISD::VECREDUCE_UMAX, VT, Custom);
681       setOperationAction(ISD::VECREDUCE_UMIN, VT, Custom);
682     }
683     for (MVT VT : MVT::fp_valuetypes()) {
684       setOperationAction(ISD::VECREDUCE_FMAX, VT, Custom);
685       setOperationAction(ISD::VECREDUCE_FMIN, VT, Custom);
686     }
687 
688     setOperationAction(ISD::ANY_EXTEND, MVT::v4i32, Legal);
689     setTruncStoreAction(MVT::v2i32, MVT::v2i16, Expand);
690     // Likewise, narrowing and extending vector loads/stores aren't handled
691     // directly.
692     for (MVT VT : MVT::vector_valuetypes()) {
693       setOperationAction(ISD::SIGN_EXTEND_INREG, VT, Expand);
694 
695       setOperationAction(ISD::MULHS, VT, Expand);
696       setOperationAction(ISD::SMUL_LOHI, VT, Expand);
697       setOperationAction(ISD::MULHU, VT, Expand);
698       setOperationAction(ISD::UMUL_LOHI, VT, Expand);
699 
700       setOperationAction(ISD::BSWAP, VT, Expand);
701 
702       for (MVT InnerVT : MVT::vector_valuetypes()) {
703         setTruncStoreAction(VT, InnerVT, Expand);
704         setLoadExtAction(ISD::SEXTLOAD, VT, InnerVT, Expand);
705         setLoadExtAction(ISD::ZEXTLOAD, VT, InnerVT, Expand);
706         setLoadExtAction(ISD::EXTLOAD, VT, InnerVT, Expand);
707       }
708     }
709 
710     // AArch64 has implementations of a lot of rounding-like FP operations.
711     for (MVT Ty : {MVT::v2f32, MVT::v4f32, MVT::v2f64}) {
712       setOperationAction(ISD::FFLOOR, Ty, Legal);
713       setOperationAction(ISD::FNEARBYINT, Ty, Legal);
714       setOperationAction(ISD::FCEIL, Ty, Legal);
715       setOperationAction(ISD::FRINT, Ty, Legal);
716       setOperationAction(ISD::FTRUNC, Ty, Legal);
717       setOperationAction(ISD::FROUND, Ty, Legal);
718     }
719   }
720 
721   PredictableSelectIsExpensive = Subtarget->predictableSelectIsExpensive();
722 }
723 
724 void AArch64TargetLowering::addTypeForNEON(MVT VT, MVT PromotedBitwiseVT) {
725   if (VT == MVT::v2f32 || VT == MVT::v4f16) {
726     setOperationAction(ISD::LOAD, VT, Promote);
727     AddPromotedToType(ISD::LOAD, VT, MVT::v2i32);
728 
729     setOperationAction(ISD::STORE, VT, Promote);
730     AddPromotedToType(ISD::STORE, VT, MVT::v2i32);
731   } else if (VT == MVT::v2f64 || VT == MVT::v4f32 || VT == MVT::v8f16) {
732     setOperationAction(ISD::LOAD, VT, Promote);
733     AddPromotedToType(ISD::LOAD, VT, MVT::v2i64);
734 
735     setOperationAction(ISD::STORE, VT, Promote);
736     AddPromotedToType(ISD::STORE, VT, MVT::v2i64);
737   }
738 
739   // Mark vector float intrinsics as expand.
740   if (VT == MVT::v2f32 || VT == MVT::v4f32 || VT == MVT::v2f64) {
741     setOperationAction(ISD::FSIN, VT, Expand);
742     setOperationAction(ISD::FCOS, VT, Expand);
743     setOperationAction(ISD::FPOW, VT, Expand);
744     setOperationAction(ISD::FLOG, VT, Expand);
745     setOperationAction(ISD::FLOG2, VT, Expand);
746     setOperationAction(ISD::FLOG10, VT, Expand);
747     setOperationAction(ISD::FEXP, VT, Expand);
748     setOperationAction(ISD::FEXP2, VT, Expand);
749 
750     // But we do support custom-lowering for FCOPYSIGN.
751     setOperationAction(ISD::FCOPYSIGN, VT, Custom);
752   }
753 
754   setOperationAction(ISD::EXTRACT_VECTOR_ELT, VT, Custom);
755   setOperationAction(ISD::INSERT_VECTOR_ELT, VT, Custom);
756   setOperationAction(ISD::BUILD_VECTOR, VT, Custom);
757   setOperationAction(ISD::VECTOR_SHUFFLE, VT, Custom);
758   setOperationAction(ISD::EXTRACT_SUBVECTOR, VT, Custom);
759   setOperationAction(ISD::SRA, VT, Custom);
760   setOperationAction(ISD::SRL, VT, Custom);
761   setOperationAction(ISD::SHL, VT, Custom);
762   setOperationAction(ISD::AND, VT, Custom);
763   setOperationAction(ISD::OR, VT, Custom);
764   setOperationAction(ISD::SETCC, VT, Custom);
765   setOperationAction(ISD::CONCAT_VECTORS, VT, Legal);
766 
767   setOperationAction(ISD::SELECT, VT, Expand);
768   setOperationAction(ISD::SELECT_CC, VT, Expand);
769   setOperationAction(ISD::VSELECT, VT, Expand);
770   for (MVT InnerVT : MVT::all_valuetypes())
771     setLoadExtAction(ISD::EXTLOAD, InnerVT, VT, Expand);
772 
773   // CNT supports only B element sizes.
774   if (VT != MVT::v8i8 && VT != MVT::v16i8)
775     setOperationAction(ISD::CTPOP, VT, Expand);
776 
777   setOperationAction(ISD::UDIV, VT, Expand);
778   setOperationAction(ISD::SDIV, VT, Expand);
779   setOperationAction(ISD::UREM, VT, Expand);
780   setOperationAction(ISD::SREM, VT, Expand);
781   setOperationAction(ISD::FREM, VT, Expand);
782 
783   setOperationAction(ISD::FP_TO_SINT, VT, Custom);
784   setOperationAction(ISD::FP_TO_UINT, VT, Custom);
785 
786   if (!VT.isFloatingPoint())
787     setOperationAction(ISD::ABS, VT, Legal);
788 
789   // [SU][MIN|MAX] are available for all NEON types apart from i64.
790   if (!VT.isFloatingPoint() && VT != MVT::v2i64 && VT != MVT::v1i64)
791     for (unsigned Opcode : {ISD::SMIN, ISD::SMAX, ISD::UMIN, ISD::UMAX})
792       setOperationAction(Opcode, VT, Legal);
793 
794   // F[MIN|MAX][NUM|NAN] are available for all FP NEON types.
795   if (VT.isFloatingPoint() &&
796       (VT.getVectorElementType() != MVT::f16 || Subtarget->hasFullFP16()))
797     for (unsigned Opcode : {ISD::FMINNAN, ISD::FMAXNAN,
798                             ISD::FMINNUM, ISD::FMAXNUM})
799       setOperationAction(Opcode, VT, Legal);
800 
801   if (Subtarget->isLittleEndian()) {
802     for (unsigned im = (unsigned)ISD::PRE_INC;
803          im != (unsigned)ISD::LAST_INDEXED_MODE; ++im) {
804       setIndexedLoadAction(im, VT, Legal);
805       setIndexedStoreAction(im, VT, Legal);
806     }
807   }
808 }
809 
810 void AArch64TargetLowering::addDRTypeForNEON(MVT VT) {
811   addRegisterClass(VT, &AArch64::FPR64RegClass);
812   addTypeForNEON(VT, MVT::v2i32);
813 }
814 
815 void AArch64TargetLowering::addQRTypeForNEON(MVT VT) {
816   addRegisterClass(VT, &AArch64::FPR128RegClass);
817   addTypeForNEON(VT, MVT::v4i32);
818 }
819 
820 EVT AArch64TargetLowering::getSetCCResultType(const DataLayout &, LLVMContext &,
821                                               EVT VT) const {
822   if (!VT.isVector())
823     return MVT::i32;
824   return VT.changeVectorElementTypeToInteger();
825 }
826 
827 static bool optimizeLogicalImm(SDValue Op, unsigned Size, uint64_t Imm,
828                                const APInt &Demanded,
829                                TargetLowering::TargetLoweringOpt &TLO,
830                                unsigned NewOpc) {
831   uint64_t OldImm = Imm, NewImm, Enc;
832   uint64_t Mask = ((uint64_t)(-1LL) >> (64 - Size)), OrigMask = Mask;
833 
834   // Return if the immediate is already all zeros, all ones, a bimm32 or a
835   // bimm64.
836   if (Imm == 0 || Imm == Mask ||
837       AArch64_AM::isLogicalImmediate(Imm & Mask, Size))
838     return false;
839 
840   unsigned EltSize = Size;
841   uint64_t DemandedBits = Demanded.getZExtValue();
842 
843   // Clear bits that are not demanded.
844   Imm &= DemandedBits;
845 
846   while (true) {
847     // The goal here is to set the non-demanded bits in a way that minimizes
848     // the number of switching between 0 and 1. In order to achieve this goal,
849     // we set the non-demanded bits to the value of the preceding demanded bits.
850     // For example, if we have an immediate 0bx10xx0x1 ('x' indicates a
851     // non-demanded bit), we copy bit0 (1) to the least significant 'x',
852     // bit2 (0) to 'xx', and bit6 (1) to the most significant 'x'.
853     // The final result is 0b11000011.
854     uint64_t NonDemandedBits = ~DemandedBits;
855     uint64_t InvertedImm = ~Imm & DemandedBits;
856     uint64_t RotatedImm =
857         ((InvertedImm << 1) | (InvertedImm >> (EltSize - 1) & 1)) &
858         NonDemandedBits;
859     uint64_t Sum = RotatedImm + NonDemandedBits;
860     bool Carry = NonDemandedBits & ~Sum & (1ULL << (EltSize - 1));
861     uint64_t Ones = (Sum + Carry) & NonDemandedBits;
862     NewImm = (Imm | Ones) & Mask;
863 
864     // If NewImm or its bitwise NOT is a shifted mask, it is a bitmask immediate
865     // or all-ones or all-zeros, in which case we can stop searching. Otherwise,
866     // we halve the element size and continue the search.
867     if (isShiftedMask_64(NewImm) || isShiftedMask_64(~(NewImm | ~Mask)))
868       break;
869 
870     // We cannot shrink the element size any further if it is 2-bits.
871     if (EltSize == 2)
872       return false;
873 
874     EltSize /= 2;
875     Mask >>= EltSize;
876     uint64_t Hi = Imm >> EltSize, DemandedBitsHi = DemandedBits >> EltSize;
877 
878     // Return if there is mismatch in any of the demanded bits of Imm and Hi.
879     if (((Imm ^ Hi) & (DemandedBits & DemandedBitsHi) & Mask) != 0)
880       return false;
881 
882     // Merge the upper and lower halves of Imm and DemandedBits.
883     Imm |= Hi;
884     DemandedBits |= DemandedBitsHi;
885   }
886 
887   ++NumOptimizedImms;
888 
889   // Replicate the element across the register width.
890   while (EltSize < Size) {
891     NewImm |= NewImm << EltSize;
892     EltSize *= 2;
893   }
894 
895   (void)OldImm;
896   assert(((OldImm ^ NewImm) & Demanded.getZExtValue()) == 0 &&
897          "demanded bits should never be altered");
898   assert(OldImm != NewImm && "the new imm shouldn't be equal to the old imm");
899 
900   // Create the new constant immediate node.
901   EVT VT = Op.getValueType();
902   SDLoc DL(Op);
903   SDValue New;
904 
905   // If the new constant immediate is all-zeros or all-ones, let the target
906   // independent DAG combine optimize this node.
907   if (NewImm == 0 || NewImm == OrigMask) {
908     New = TLO.DAG.getNode(Op.getOpcode(), DL, VT, Op.getOperand(0),
909                           TLO.DAG.getConstant(NewImm, DL, VT));
910   // Otherwise, create a machine node so that target independent DAG combine
911   // doesn't undo this optimization.
912   } else {
913     Enc = AArch64_AM::encodeLogicalImmediate(NewImm, Size);
914     SDValue EncConst = TLO.DAG.getTargetConstant(Enc, DL, VT);
915     New = SDValue(
916         TLO.DAG.getMachineNode(NewOpc, DL, VT, Op.getOperand(0), EncConst), 0);
917   }
918 
919   return TLO.CombineTo(Op, New);
920 }
921 
922 bool AArch64TargetLowering::targetShrinkDemandedConstant(
923     SDValue Op, const APInt &Demanded, TargetLoweringOpt &TLO) const {
924   // Delay this optimization to as late as possible.
925   if (!TLO.LegalOps)
926     return false;
927 
928   if (!EnableOptimizeLogicalImm)
929     return false;
930 
931   EVT VT = Op.getValueType();
932   if (VT.isVector())
933     return false;
934 
935   unsigned Size = VT.getSizeInBits();
936   assert((Size == 32 || Size == 64) &&
937          "i32 or i64 is expected after legalization.");
938 
939   // Exit early if we demand all bits.
940   if (Demanded.countPopulation() == Size)
941     return false;
942 
943   unsigned NewOpc;
944   switch (Op.getOpcode()) {
945   default:
946     return false;
947   case ISD::AND:
948     NewOpc = Size == 32 ? AArch64::ANDWri : AArch64::ANDXri;
949     break;
950   case ISD::OR:
951     NewOpc = Size == 32 ? AArch64::ORRWri : AArch64::ORRXri;
952     break;
953   case ISD::XOR:
954     NewOpc = Size == 32 ? AArch64::EORWri : AArch64::EORXri;
955     break;
956   }
957   ConstantSDNode *C = dyn_cast<ConstantSDNode>(Op.getOperand(1));
958   if (!C)
959     return false;
960   uint64_t Imm = C->getZExtValue();
961   return optimizeLogicalImm(Op, Size, Imm, Demanded, TLO, NewOpc);
962 }
963 
964 /// computeKnownBitsForTargetNode - Determine which of the bits specified in
965 /// Mask are known to be either zero or one and return them Known.
966 void AArch64TargetLowering::computeKnownBitsForTargetNode(
967     const SDValue Op, KnownBits &Known,
968     const APInt &DemandedElts, const SelectionDAG &DAG, unsigned Depth) const {
969   switch (Op.getOpcode()) {
970   default:
971     break;
972   case AArch64ISD::CSEL: {
973     KnownBits Known2;
974     DAG.computeKnownBits(Op->getOperand(0), Known, Depth + 1);
975     DAG.computeKnownBits(Op->getOperand(1), Known2, Depth + 1);
976     Known.Zero &= Known2.Zero;
977     Known.One &= Known2.One;
978     break;
979   }
980   case ISD::INTRINSIC_W_CHAIN: {
981     ConstantSDNode *CN = cast<ConstantSDNode>(Op->getOperand(1));
982     Intrinsic::ID IntID = static_cast<Intrinsic::ID>(CN->getZExtValue());
983     switch (IntID) {
984     default: return;
985     case Intrinsic::aarch64_ldaxr:
986     case Intrinsic::aarch64_ldxr: {
987       unsigned BitWidth = Known.getBitWidth();
988       EVT VT = cast<MemIntrinsicSDNode>(Op)->getMemoryVT();
989       unsigned MemBits = VT.getScalarSizeInBits();
990       Known.Zero |= APInt::getHighBitsSet(BitWidth, BitWidth - MemBits);
991       return;
992     }
993     }
994     break;
995   }
996   case ISD::INTRINSIC_WO_CHAIN:
997   case ISD::INTRINSIC_VOID: {
998     unsigned IntNo = cast<ConstantSDNode>(Op.getOperand(0))->getZExtValue();
999     switch (IntNo) {
1000     default:
1001       break;
1002     case Intrinsic::aarch64_neon_umaxv:
1003     case Intrinsic::aarch64_neon_uminv: {
1004       // Figure out the datatype of the vector operand. The UMINV instruction
1005       // will zero extend the result, so we can mark as known zero all the
1006       // bits larger than the element datatype. 32-bit or larget doesn't need
1007       // this as those are legal types and will be handled by isel directly.
1008       MVT VT = Op.getOperand(1).getValueType().getSimpleVT();
1009       unsigned BitWidth = Known.getBitWidth();
1010       if (VT == MVT::v8i8 || VT == MVT::v16i8) {
1011         assert(BitWidth >= 8 && "Unexpected width!");
1012         APInt Mask = APInt::getHighBitsSet(BitWidth, BitWidth - 8);
1013         Known.Zero |= Mask;
1014       } else if (VT == MVT::v4i16 || VT == MVT::v8i16) {
1015         assert(BitWidth >= 16 && "Unexpected width!");
1016         APInt Mask = APInt::getHighBitsSet(BitWidth, BitWidth - 16);
1017         Known.Zero |= Mask;
1018       }
1019       break;
1020     } break;
1021     }
1022   }
1023   }
1024 }
1025 
1026 MVT AArch64TargetLowering::getScalarShiftAmountTy(const DataLayout &DL,
1027                                                   EVT) const {
1028   return MVT::i64;
1029 }
1030 
1031 bool AArch64TargetLowering::allowsMisalignedMemoryAccesses(EVT VT,
1032                                                            unsigned AddrSpace,
1033                                                            unsigned Align,
1034                                                            bool *Fast) const {
1035   if (Subtarget->requiresStrictAlign())
1036     return false;
1037 
1038   if (Fast) {
1039     // Some CPUs are fine with unaligned stores except for 128-bit ones.
1040     *Fast = !Subtarget->isMisaligned128StoreSlow() || VT.getStoreSize() != 16 ||
1041             // See comments in performSTORECombine() for more details about
1042             // these conditions.
1043 
1044             // Code that uses clang vector extensions can mark that it
1045             // wants unaligned accesses to be treated as fast by
1046             // underspecifying alignment to be 1 or 2.
1047             Align <= 2 ||
1048 
1049             // Disregard v2i64. Memcpy lowering produces those and splitting
1050             // them regresses performance on micro-benchmarks and olden/bh.
1051             VT == MVT::v2i64;
1052   }
1053   return true;
1054 }
1055 
1056 FastISel *
1057 AArch64TargetLowering::createFastISel(FunctionLoweringInfo &funcInfo,
1058                                       const TargetLibraryInfo *libInfo) const {
1059   return AArch64::createFastISel(funcInfo, libInfo);
1060 }
1061 
1062 const char *AArch64TargetLowering::getTargetNodeName(unsigned Opcode) const {
1063   switch ((AArch64ISD::NodeType)Opcode) {
1064   case AArch64ISD::FIRST_NUMBER:      break;
1065   case AArch64ISD::CALL:              return "AArch64ISD::CALL";
1066   case AArch64ISD::ADRP:              return "AArch64ISD::ADRP";
1067   case AArch64ISD::ADDlow:            return "AArch64ISD::ADDlow";
1068   case AArch64ISD::LOADgot:           return "AArch64ISD::LOADgot";
1069   case AArch64ISD::RET_FLAG:          return "AArch64ISD::RET_FLAG";
1070   case AArch64ISD::BRCOND:            return "AArch64ISD::BRCOND";
1071   case AArch64ISD::CSEL:              return "AArch64ISD::CSEL";
1072   case AArch64ISD::FCSEL:             return "AArch64ISD::FCSEL";
1073   case AArch64ISD::CSINV:             return "AArch64ISD::CSINV";
1074   case AArch64ISD::CSNEG:             return "AArch64ISD::CSNEG";
1075   case AArch64ISD::CSINC:             return "AArch64ISD::CSINC";
1076   case AArch64ISD::THREAD_POINTER:    return "AArch64ISD::THREAD_POINTER";
1077   case AArch64ISD::TLSDESC_CALLSEQ:   return "AArch64ISD::TLSDESC_CALLSEQ";
1078   case AArch64ISD::ADC:               return "AArch64ISD::ADC";
1079   case AArch64ISD::SBC:               return "AArch64ISD::SBC";
1080   case AArch64ISD::ADDS:              return "AArch64ISD::ADDS";
1081   case AArch64ISD::SUBS:              return "AArch64ISD::SUBS";
1082   case AArch64ISD::ADCS:              return "AArch64ISD::ADCS";
1083   case AArch64ISD::SBCS:              return "AArch64ISD::SBCS";
1084   case AArch64ISD::ANDS:              return "AArch64ISD::ANDS";
1085   case AArch64ISD::CCMP:              return "AArch64ISD::CCMP";
1086   case AArch64ISD::CCMN:              return "AArch64ISD::CCMN";
1087   case AArch64ISD::FCCMP:             return "AArch64ISD::FCCMP";
1088   case AArch64ISD::FCMP:              return "AArch64ISD::FCMP";
1089   case AArch64ISD::DUP:               return "AArch64ISD::DUP";
1090   case AArch64ISD::DUPLANE8:          return "AArch64ISD::DUPLANE8";
1091   case AArch64ISD::DUPLANE16:         return "AArch64ISD::DUPLANE16";
1092   case AArch64ISD::DUPLANE32:         return "AArch64ISD::DUPLANE32";
1093   case AArch64ISD::DUPLANE64:         return "AArch64ISD::DUPLANE64";
1094   case AArch64ISD::MOVI:              return "AArch64ISD::MOVI";
1095   case AArch64ISD::MOVIshift:         return "AArch64ISD::MOVIshift";
1096   case AArch64ISD::MOVIedit:          return "AArch64ISD::MOVIedit";
1097   case AArch64ISD::MOVImsl:           return "AArch64ISD::MOVImsl";
1098   case AArch64ISD::FMOV:              return "AArch64ISD::FMOV";
1099   case AArch64ISD::MVNIshift:         return "AArch64ISD::MVNIshift";
1100   case AArch64ISD::MVNImsl:           return "AArch64ISD::MVNImsl";
1101   case AArch64ISD::BICi:              return "AArch64ISD::BICi";
1102   case AArch64ISD::ORRi:              return "AArch64ISD::ORRi";
1103   case AArch64ISD::BSL:               return "AArch64ISD::BSL";
1104   case AArch64ISD::NEG:               return "AArch64ISD::NEG";
1105   case AArch64ISD::EXTR:              return "AArch64ISD::EXTR";
1106   case AArch64ISD::ZIP1:              return "AArch64ISD::ZIP1";
1107   case AArch64ISD::ZIP2:              return "AArch64ISD::ZIP2";
1108   case AArch64ISD::UZP1:              return "AArch64ISD::UZP1";
1109   case AArch64ISD::UZP2:              return "AArch64ISD::UZP2";
1110   case AArch64ISD::TRN1:              return "AArch64ISD::TRN1";
1111   case AArch64ISD::TRN2:              return "AArch64ISD::TRN2";
1112   case AArch64ISD::REV16:             return "AArch64ISD::REV16";
1113   case AArch64ISD::REV32:             return "AArch64ISD::REV32";
1114   case AArch64ISD::REV64:             return "AArch64ISD::REV64";
1115   case AArch64ISD::EXT:               return "AArch64ISD::EXT";
1116   case AArch64ISD::VSHL:              return "AArch64ISD::VSHL";
1117   case AArch64ISD::VLSHR:             return "AArch64ISD::VLSHR";
1118   case AArch64ISD::VASHR:             return "AArch64ISD::VASHR";
1119   case AArch64ISD::CMEQ:              return "AArch64ISD::CMEQ";
1120   case AArch64ISD::CMGE:              return "AArch64ISD::CMGE";
1121   case AArch64ISD::CMGT:              return "AArch64ISD::CMGT";
1122   case AArch64ISD::CMHI:              return "AArch64ISD::CMHI";
1123   case AArch64ISD::CMHS:              return "AArch64ISD::CMHS";
1124   case AArch64ISD::FCMEQ:             return "AArch64ISD::FCMEQ";
1125   case AArch64ISD::FCMGE:             return "AArch64ISD::FCMGE";
1126   case AArch64ISD::FCMGT:             return "AArch64ISD::FCMGT";
1127   case AArch64ISD::CMEQz:             return "AArch64ISD::CMEQz";
1128   case AArch64ISD::CMGEz:             return "AArch64ISD::CMGEz";
1129   case AArch64ISD::CMGTz:             return "AArch64ISD::CMGTz";
1130   case AArch64ISD::CMLEz:             return "AArch64ISD::CMLEz";
1131   case AArch64ISD::CMLTz:             return "AArch64ISD::CMLTz";
1132   case AArch64ISD::FCMEQz:            return "AArch64ISD::FCMEQz";
1133   case AArch64ISD::FCMGEz:            return "AArch64ISD::FCMGEz";
1134   case AArch64ISD::FCMGTz:            return "AArch64ISD::FCMGTz";
1135   case AArch64ISD::FCMLEz:            return "AArch64ISD::FCMLEz";
1136   case AArch64ISD::FCMLTz:            return "AArch64ISD::FCMLTz";
1137   case AArch64ISD::SADDV:             return "AArch64ISD::SADDV";
1138   case AArch64ISD::UADDV:             return "AArch64ISD::UADDV";
1139   case AArch64ISD::SMINV:             return "AArch64ISD::SMINV";
1140   case AArch64ISD::UMINV:             return "AArch64ISD::UMINV";
1141   case AArch64ISD::SMAXV:             return "AArch64ISD::SMAXV";
1142   case AArch64ISD::UMAXV:             return "AArch64ISD::UMAXV";
1143   case AArch64ISD::NOT:               return "AArch64ISD::NOT";
1144   case AArch64ISD::BIT:               return "AArch64ISD::BIT";
1145   case AArch64ISD::CBZ:               return "AArch64ISD::CBZ";
1146   case AArch64ISD::CBNZ:              return "AArch64ISD::CBNZ";
1147   case AArch64ISD::TBZ:               return "AArch64ISD::TBZ";
1148   case AArch64ISD::TBNZ:              return "AArch64ISD::TBNZ";
1149   case AArch64ISD::TC_RETURN:         return "AArch64ISD::TC_RETURN";
1150   case AArch64ISD::PREFETCH:          return "AArch64ISD::PREFETCH";
1151   case AArch64ISD::SITOF:             return "AArch64ISD::SITOF";
1152   case AArch64ISD::UITOF:             return "AArch64ISD::UITOF";
1153   case AArch64ISD::NVCAST:            return "AArch64ISD::NVCAST";
1154   case AArch64ISD::SQSHL_I:           return "AArch64ISD::SQSHL_I";
1155   case AArch64ISD::UQSHL_I:           return "AArch64ISD::UQSHL_I";
1156   case AArch64ISD::SRSHR_I:           return "AArch64ISD::SRSHR_I";
1157   case AArch64ISD::URSHR_I:           return "AArch64ISD::URSHR_I";
1158   case AArch64ISD::SQSHLU_I:          return "AArch64ISD::SQSHLU_I";
1159   case AArch64ISD::WrapperLarge:      return "AArch64ISD::WrapperLarge";
1160   case AArch64ISD::LD2post:           return "AArch64ISD::LD2post";
1161   case AArch64ISD::LD3post:           return "AArch64ISD::LD3post";
1162   case AArch64ISD::LD4post:           return "AArch64ISD::LD4post";
1163   case AArch64ISD::ST2post:           return "AArch64ISD::ST2post";
1164   case AArch64ISD::ST3post:           return "AArch64ISD::ST3post";
1165   case AArch64ISD::ST4post:           return "AArch64ISD::ST4post";
1166   case AArch64ISD::LD1x2post:         return "AArch64ISD::LD1x2post";
1167   case AArch64ISD::LD1x3post:         return "AArch64ISD::LD1x3post";
1168   case AArch64ISD::LD1x4post:         return "AArch64ISD::LD1x4post";
1169   case AArch64ISD::ST1x2post:         return "AArch64ISD::ST1x2post";
1170   case AArch64ISD::ST1x3post:         return "AArch64ISD::ST1x3post";
1171   case AArch64ISD::ST1x4post:         return "AArch64ISD::ST1x4post";
1172   case AArch64ISD::LD1DUPpost:        return "AArch64ISD::LD1DUPpost";
1173   case AArch64ISD::LD2DUPpost:        return "AArch64ISD::LD2DUPpost";
1174   case AArch64ISD::LD3DUPpost:        return "AArch64ISD::LD3DUPpost";
1175   case AArch64ISD::LD4DUPpost:        return "AArch64ISD::LD4DUPpost";
1176   case AArch64ISD::LD1LANEpost:       return "AArch64ISD::LD1LANEpost";
1177   case AArch64ISD::LD2LANEpost:       return "AArch64ISD::LD2LANEpost";
1178   case AArch64ISD::LD3LANEpost:       return "AArch64ISD::LD3LANEpost";
1179   case AArch64ISD::LD4LANEpost:       return "AArch64ISD::LD4LANEpost";
1180   case AArch64ISD::ST2LANEpost:       return "AArch64ISD::ST2LANEpost";
1181   case AArch64ISD::ST3LANEpost:       return "AArch64ISD::ST3LANEpost";
1182   case AArch64ISD::ST4LANEpost:       return "AArch64ISD::ST4LANEpost";
1183   case AArch64ISD::SMULL:             return "AArch64ISD::SMULL";
1184   case AArch64ISD::UMULL:             return "AArch64ISD::UMULL";
1185   case AArch64ISD::FRECPE:            return "AArch64ISD::FRECPE";
1186   case AArch64ISD::FRECPS:            return "AArch64ISD::FRECPS";
1187   case AArch64ISD::FRSQRTE:           return "AArch64ISD::FRSQRTE";
1188   case AArch64ISD::FRSQRTS:           return "AArch64ISD::FRSQRTS";
1189   }
1190   return nullptr;
1191 }
1192 
1193 MachineBasicBlock *
1194 AArch64TargetLowering::EmitF128CSEL(MachineInstr &MI,
1195                                     MachineBasicBlock *MBB) const {
1196   // We materialise the F128CSEL pseudo-instruction as some control flow and a
1197   // phi node:
1198 
1199   // OrigBB:
1200   //     [... previous instrs leading to comparison ...]
1201   //     b.ne TrueBB
1202   //     b EndBB
1203   // TrueBB:
1204   //     ; Fallthrough
1205   // EndBB:
1206   //     Dest = PHI [IfTrue, TrueBB], [IfFalse, OrigBB]
1207 
1208   MachineFunction *MF = MBB->getParent();
1209   const TargetInstrInfo *TII = Subtarget->getInstrInfo();
1210   const BasicBlock *LLVM_BB = MBB->getBasicBlock();
1211   DebugLoc DL = MI.getDebugLoc();
1212   MachineFunction::iterator It = ++MBB->getIterator();
1213 
1214   unsigned DestReg = MI.getOperand(0).getReg();
1215   unsigned IfTrueReg = MI.getOperand(1).getReg();
1216   unsigned IfFalseReg = MI.getOperand(2).getReg();
1217   unsigned CondCode = MI.getOperand(3).getImm();
1218   bool NZCVKilled = MI.getOperand(4).isKill();
1219 
1220   MachineBasicBlock *TrueBB = MF->CreateMachineBasicBlock(LLVM_BB);
1221   MachineBasicBlock *EndBB = MF->CreateMachineBasicBlock(LLVM_BB);
1222   MF->insert(It, TrueBB);
1223   MF->insert(It, EndBB);
1224 
1225   // Transfer rest of current basic-block to EndBB
1226   EndBB->splice(EndBB->begin(), MBB, std::next(MachineBasicBlock::iterator(MI)),
1227                 MBB->end());
1228   EndBB->transferSuccessorsAndUpdatePHIs(MBB);
1229 
1230   BuildMI(MBB, DL, TII->get(AArch64::Bcc)).addImm(CondCode).addMBB(TrueBB);
1231   BuildMI(MBB, DL, TII->get(AArch64::B)).addMBB(EndBB);
1232   MBB->addSuccessor(TrueBB);
1233   MBB->addSuccessor(EndBB);
1234 
1235   // TrueBB falls through to the end.
1236   TrueBB->addSuccessor(EndBB);
1237 
1238   if (!NZCVKilled) {
1239     TrueBB->addLiveIn(AArch64::NZCV);
1240     EndBB->addLiveIn(AArch64::NZCV);
1241   }
1242 
1243   BuildMI(*EndBB, EndBB->begin(), DL, TII->get(AArch64::PHI), DestReg)
1244       .addReg(IfTrueReg)
1245       .addMBB(TrueBB)
1246       .addReg(IfFalseReg)
1247       .addMBB(MBB);
1248 
1249   MI.eraseFromParent();
1250   return EndBB;
1251 }
1252 
1253 MachineBasicBlock *AArch64TargetLowering::EmitInstrWithCustomInserter(
1254     MachineInstr &MI, MachineBasicBlock *BB) const {
1255   switch (MI.getOpcode()) {
1256   default:
1257 #ifndef NDEBUG
1258     MI.dump();
1259 #endif
1260     llvm_unreachable("Unexpected instruction for custom inserter!");
1261 
1262   case AArch64::F128CSEL:
1263     return EmitF128CSEL(MI, BB);
1264 
1265   case TargetOpcode::STACKMAP:
1266   case TargetOpcode::PATCHPOINT:
1267     return emitPatchPoint(MI, BB);
1268   }
1269 }
1270 
1271 //===----------------------------------------------------------------------===//
1272 // AArch64 Lowering private implementation.
1273 //===----------------------------------------------------------------------===//
1274 
1275 //===----------------------------------------------------------------------===//
1276 // Lowering Code
1277 //===----------------------------------------------------------------------===//
1278 
1279 /// changeIntCCToAArch64CC - Convert a DAG integer condition code to an AArch64
1280 /// CC
1281 static AArch64CC::CondCode changeIntCCToAArch64CC(ISD::CondCode CC) {
1282   switch (CC) {
1283   default:
1284     llvm_unreachable("Unknown condition code!");
1285   case ISD::SETNE:
1286     return AArch64CC::NE;
1287   case ISD::SETEQ:
1288     return AArch64CC::EQ;
1289   case ISD::SETGT:
1290     return AArch64CC::GT;
1291   case ISD::SETGE:
1292     return AArch64CC::GE;
1293   case ISD::SETLT:
1294     return AArch64CC::LT;
1295   case ISD::SETLE:
1296     return AArch64CC::LE;
1297   case ISD::SETUGT:
1298     return AArch64CC::HI;
1299   case ISD::SETUGE:
1300     return AArch64CC::HS;
1301   case ISD::SETULT:
1302     return AArch64CC::LO;
1303   case ISD::SETULE:
1304     return AArch64CC::LS;
1305   }
1306 }
1307 
1308 /// changeFPCCToAArch64CC - Convert a DAG fp condition code to an AArch64 CC.
1309 static void changeFPCCToAArch64CC(ISD::CondCode CC,
1310                                   AArch64CC::CondCode &CondCode,
1311                                   AArch64CC::CondCode &CondCode2) {
1312   CondCode2 = AArch64CC::AL;
1313   switch (CC) {
1314   default:
1315     llvm_unreachable("Unknown FP condition!");
1316   case ISD::SETEQ:
1317   case ISD::SETOEQ:
1318     CondCode = AArch64CC::EQ;
1319     break;
1320   case ISD::SETGT:
1321   case ISD::SETOGT:
1322     CondCode = AArch64CC::GT;
1323     break;
1324   case ISD::SETGE:
1325   case ISD::SETOGE:
1326     CondCode = AArch64CC::GE;
1327     break;
1328   case ISD::SETOLT:
1329     CondCode = AArch64CC::MI;
1330     break;
1331   case ISD::SETOLE:
1332     CondCode = AArch64CC::LS;
1333     break;
1334   case ISD::SETONE:
1335     CondCode = AArch64CC::MI;
1336     CondCode2 = AArch64CC::GT;
1337     break;
1338   case ISD::SETO:
1339     CondCode = AArch64CC::VC;
1340     break;
1341   case ISD::SETUO:
1342     CondCode = AArch64CC::VS;
1343     break;
1344   case ISD::SETUEQ:
1345     CondCode = AArch64CC::EQ;
1346     CondCode2 = AArch64CC::VS;
1347     break;
1348   case ISD::SETUGT:
1349     CondCode = AArch64CC::HI;
1350     break;
1351   case ISD::SETUGE:
1352     CondCode = AArch64CC::PL;
1353     break;
1354   case ISD::SETLT:
1355   case ISD::SETULT:
1356     CondCode = AArch64CC::LT;
1357     break;
1358   case ISD::SETLE:
1359   case ISD::SETULE:
1360     CondCode = AArch64CC::LE;
1361     break;
1362   case ISD::SETNE:
1363   case ISD::SETUNE:
1364     CondCode = AArch64CC::NE;
1365     break;
1366   }
1367 }
1368 
1369 /// Convert a DAG fp condition code to an AArch64 CC.
1370 /// This differs from changeFPCCToAArch64CC in that it returns cond codes that
1371 /// should be AND'ed instead of OR'ed.
1372 static void changeFPCCToANDAArch64CC(ISD::CondCode CC,
1373                                      AArch64CC::CondCode &CondCode,
1374                                      AArch64CC::CondCode &CondCode2) {
1375   CondCode2 = AArch64CC::AL;
1376   switch (CC) {
1377   default:
1378     changeFPCCToAArch64CC(CC, CondCode, CondCode2);
1379     assert(CondCode2 == AArch64CC::AL);
1380     break;
1381   case ISD::SETONE:
1382     // (a one b)
1383     // == ((a olt b) || (a ogt b))
1384     // == ((a ord b) && (a une b))
1385     CondCode = AArch64CC::VC;
1386     CondCode2 = AArch64CC::NE;
1387     break;
1388   case ISD::SETUEQ:
1389     // (a ueq b)
1390     // == ((a uno b) || (a oeq b))
1391     // == ((a ule b) && (a uge b))
1392     CondCode = AArch64CC::PL;
1393     CondCode2 = AArch64CC::LE;
1394     break;
1395   }
1396 }
1397 
1398 /// changeVectorFPCCToAArch64CC - Convert a DAG fp condition code to an AArch64
1399 /// CC usable with the vector instructions. Fewer operations are available
1400 /// without a real NZCV register, so we have to use less efficient combinations
1401 /// to get the same effect.
1402 static void changeVectorFPCCToAArch64CC(ISD::CondCode CC,
1403                                         AArch64CC::CondCode &CondCode,
1404                                         AArch64CC::CondCode &CondCode2,
1405                                         bool &Invert) {
1406   Invert = false;
1407   switch (CC) {
1408   default:
1409     // Mostly the scalar mappings work fine.
1410     changeFPCCToAArch64CC(CC, CondCode, CondCode2);
1411     break;
1412   case ISD::SETUO:
1413     Invert = true;
1414     LLVM_FALLTHROUGH;
1415   case ISD::SETO:
1416     CondCode = AArch64CC::MI;
1417     CondCode2 = AArch64CC::GE;
1418     break;
1419   case ISD::SETUEQ:
1420   case ISD::SETULT:
1421   case ISD::SETULE:
1422   case ISD::SETUGT:
1423   case ISD::SETUGE:
1424     // All of the compare-mask comparisons are ordered, but we can switch
1425     // between the two by a double inversion. E.g. ULE == !OGT.
1426     Invert = true;
1427     changeFPCCToAArch64CC(getSetCCInverse(CC, false), CondCode, CondCode2);
1428     break;
1429   }
1430 }
1431 
1432 static bool isLegalArithImmed(uint64_t C) {
1433   // Matches AArch64DAGToDAGISel::SelectArithImmed().
1434   bool IsLegal = (C >> 12 == 0) || ((C & 0xFFFULL) == 0 && C >> 24 == 0);
1435   DEBUG(dbgs() << "Is imm " << C << " legal: " << (IsLegal ? "yes\n" : "no\n"));
1436   return IsLegal;
1437 }
1438 
1439 static SDValue emitComparison(SDValue LHS, SDValue RHS, ISD::CondCode CC,
1440                               const SDLoc &dl, SelectionDAG &DAG) {
1441   EVT VT = LHS.getValueType();
1442   const bool FullFP16 =
1443     static_cast<const AArch64Subtarget &>(DAG.getSubtarget()).hasFullFP16();
1444 
1445   if (VT.isFloatingPoint()) {
1446     assert(VT != MVT::f128);
1447     if (VT == MVT::f16 && !FullFP16) {
1448       LHS = DAG.getNode(ISD::FP_EXTEND, dl, MVT::f32, LHS);
1449       RHS = DAG.getNode(ISD::FP_EXTEND, dl, MVT::f32, RHS);
1450       VT = MVT::f32;
1451     }
1452     return DAG.getNode(AArch64ISD::FCMP, dl, VT, LHS, RHS);
1453   }
1454 
1455   // The CMP instruction is just an alias for SUBS, and representing it as
1456   // SUBS means that it's possible to get CSE with subtract operations.
1457   // A later phase can perform the optimization of setting the destination
1458   // register to WZR/XZR if it ends up being unused.
1459   unsigned Opcode = AArch64ISD::SUBS;
1460 
1461   if (RHS.getOpcode() == ISD::SUB && isNullConstant(RHS.getOperand(0)) &&
1462       (CC == ISD::SETEQ || CC == ISD::SETNE)) {
1463     // We'd like to combine a (CMP op1, (sub 0, op2) into a CMN instruction on
1464     // the grounds that "op1 - (-op2) == op1 + op2". However, the C and V flags
1465     // can be set differently by this operation. It comes down to whether
1466     // "SInt(~op2)+1 == SInt(~op2+1)" (and the same for UInt). If they are then
1467     // everything is fine. If not then the optimization is wrong. Thus general
1468     // comparisons are only valid if op2 != 0.
1469 
1470     // So, finally, the only LLVM-native comparisons that don't mention C and V
1471     // are SETEQ and SETNE. They're the only ones we can safely use CMN for in
1472     // the absence of information about op2.
1473     Opcode = AArch64ISD::ADDS;
1474     RHS = RHS.getOperand(1);
1475   } else if (LHS.getOpcode() == ISD::AND && isNullConstant(RHS) &&
1476              !isUnsignedIntSetCC(CC)) {
1477     // Similarly, (CMP (and X, Y), 0) can be implemented with a TST
1478     // (a.k.a. ANDS) except that the flags are only guaranteed to work for one
1479     // of the signed comparisons.
1480     Opcode = AArch64ISD::ANDS;
1481     RHS = LHS.getOperand(1);
1482     LHS = LHS.getOperand(0);
1483   }
1484 
1485   return DAG.getNode(Opcode, dl, DAG.getVTList(VT, MVT_CC), LHS, RHS)
1486       .getValue(1);
1487 }
1488 
1489 /// \defgroup AArch64CCMP CMP;CCMP matching
1490 ///
1491 /// These functions deal with the formation of CMP;CCMP;... sequences.
1492 /// The CCMP/CCMN/FCCMP/FCCMPE instructions allow the conditional execution of
1493 /// a comparison. They set the NZCV flags to a predefined value if their
1494 /// predicate is false. This allows to express arbitrary conjunctions, for
1495 /// example "cmp 0 (and (setCA (cmp A)) (setCB (cmp B))))"
1496 /// expressed as:
1497 ///   cmp A
1498 ///   ccmp B, inv(CB), CA
1499 ///   check for CB flags
1500 ///
1501 /// In general we can create code for arbitrary "... (and (and A B) C)"
1502 /// sequences. We can also implement some "or" expressions, because "(or A B)"
1503 /// is equivalent to "not (and (not A) (not B))" and we can implement some
1504 /// negation operations:
1505 /// We can negate the results of a single comparison by inverting the flags
1506 /// used when the predicate fails and inverting the flags tested in the next
1507 /// instruction; We can also negate the results of the whole previous
1508 /// conditional compare sequence by inverting the flags tested in the next
1509 /// instruction. However there is no way to negate the result of a partial
1510 /// sequence.
1511 ///
1512 /// Therefore on encountering an "or" expression we can negate the subtree on
1513 /// one side and have to be able to push the negate to the leafs of the subtree
1514 /// on the other side (see also the comments in code). As complete example:
1515 /// "or (or (setCA (cmp A)) (setCB (cmp B)))
1516 ///     (and (setCC (cmp C)) (setCD (cmp D)))"
1517 /// is transformed to
1518 /// "not (and (not (and (setCC (cmp C)) (setCC (cmp D))))
1519 ///           (and (not (setCA (cmp A)) (not (setCB (cmp B))))))"
1520 /// and implemented as:
1521 ///   cmp C
1522 ///   ccmp D, inv(CD), CC
1523 ///   ccmp A, CA, inv(CD)
1524 ///   ccmp B, CB, inv(CA)
1525 ///   check for CB flags
1526 /// A counterexample is "or (and A B) (and C D)" which cannot be implemented
1527 /// by conditional compare sequences.
1528 /// @{
1529 
1530 /// Create a conditional comparison; Use CCMP, CCMN or FCCMP as appropriate.
1531 static SDValue emitConditionalComparison(SDValue LHS, SDValue RHS,
1532                                          ISD::CondCode CC, SDValue CCOp,
1533                                          AArch64CC::CondCode Predicate,
1534                                          AArch64CC::CondCode OutCC,
1535                                          const SDLoc &DL, SelectionDAG &DAG) {
1536   unsigned Opcode = 0;
1537   const bool FullFP16 =
1538     static_cast<const AArch64Subtarget &>(DAG.getSubtarget()).hasFullFP16();
1539 
1540   if (LHS.getValueType().isFloatingPoint()) {
1541     assert(LHS.getValueType() != MVT::f128);
1542     if (LHS.getValueType() == MVT::f16 && !FullFP16) {
1543       LHS = DAG.getNode(ISD::FP_EXTEND, DL, MVT::f32, LHS);
1544       RHS = DAG.getNode(ISD::FP_EXTEND, DL, MVT::f32, RHS);
1545     }
1546     Opcode = AArch64ISD::FCCMP;
1547   } else if (RHS.getOpcode() == ISD::SUB) {
1548     SDValue SubOp0 = RHS.getOperand(0);
1549     if (isNullConstant(SubOp0) && (CC == ISD::SETEQ || CC == ISD::SETNE)) {
1550       // See emitComparison() on why we can only do this for SETEQ and SETNE.
1551       Opcode = AArch64ISD::CCMN;
1552       RHS = RHS.getOperand(1);
1553     }
1554   }
1555   if (Opcode == 0)
1556     Opcode = AArch64ISD::CCMP;
1557 
1558   SDValue Condition = DAG.getConstant(Predicate, DL, MVT_CC);
1559   AArch64CC::CondCode InvOutCC = AArch64CC::getInvertedCondCode(OutCC);
1560   unsigned NZCV = AArch64CC::getNZCVToSatisfyCondCode(InvOutCC);
1561   SDValue NZCVOp = DAG.getConstant(NZCV, DL, MVT::i32);
1562   return DAG.getNode(Opcode, DL, MVT_CC, LHS, RHS, NZCVOp, Condition, CCOp);
1563 }
1564 
1565 /// Returns true if @p Val is a tree of AND/OR/SETCC operations.
1566 /// CanPushNegate is set to true if we can push a negate operation through
1567 /// the tree in a was that we are left with AND operations and negate operations
1568 /// at the leafs only. i.e. "not (or (or x y) z)" can be changed to
1569 /// "and (and (not x) (not y)) (not z)"; "not (or (and x y) z)" cannot be
1570 /// brought into such a form.
1571 static bool isConjunctionDisjunctionTree(const SDValue Val, bool &CanNegate,
1572                                          unsigned Depth = 0) {
1573   if (!Val.hasOneUse())
1574     return false;
1575   unsigned Opcode = Val->getOpcode();
1576   if (Opcode == ISD::SETCC) {
1577     if (Val->getOperand(0).getValueType() == MVT::f128)
1578       return false;
1579     CanNegate = true;
1580     return true;
1581   }
1582   // Protect against exponential runtime and stack overflow.
1583   if (Depth > 6)
1584     return false;
1585   if (Opcode == ISD::AND || Opcode == ISD::OR) {
1586     SDValue O0 = Val->getOperand(0);
1587     SDValue O1 = Val->getOperand(1);
1588     bool CanNegateL;
1589     if (!isConjunctionDisjunctionTree(O0, CanNegateL, Depth+1))
1590       return false;
1591     bool CanNegateR;
1592     if (!isConjunctionDisjunctionTree(O1, CanNegateR, Depth+1))
1593       return false;
1594 
1595     if (Opcode == ISD::OR) {
1596       // For an OR expression we need to be able to negate at least one side or
1597       // we cannot do the transformation at all.
1598       if (!CanNegateL && !CanNegateR)
1599         return false;
1600       // We can however change a (not (or x y)) to (and (not x) (not y)) if we
1601       // can negate the x and y subtrees.
1602       CanNegate = CanNegateL && CanNegateR;
1603     } else {
1604       // If the operands are OR expressions then we finally need to negate their
1605       // outputs, we can only do that for the operand with emitted last by
1606       // negating OutCC, not for both operands.
1607       bool NeedsNegOutL = O0->getOpcode() == ISD::OR;
1608       bool NeedsNegOutR = O1->getOpcode() == ISD::OR;
1609       if (NeedsNegOutL && NeedsNegOutR)
1610         return false;
1611       // We cannot negate an AND operation (it would become an OR),
1612       CanNegate = false;
1613     }
1614     return true;
1615   }
1616   return false;
1617 }
1618 
1619 /// Emit conjunction or disjunction tree with the CMP/FCMP followed by a chain
1620 /// of CCMP/CFCMP ops. See @ref AArch64CCMP.
1621 /// Tries to transform the given i1 producing node @p Val to a series compare
1622 /// and conditional compare operations. @returns an NZCV flags producing node
1623 /// and sets @p OutCC to the flags that should be tested or returns SDValue() if
1624 /// transformation was not possible.
1625 /// On recursive invocations @p PushNegate may be set to true to have negation
1626 /// effects pushed to the tree leafs; @p Predicate is an NZCV flag predicate
1627 /// for the comparisons in the current subtree; @p Depth limits the search
1628 /// depth to avoid stack overflow.
1629 static SDValue emitConjunctionDisjunctionTreeRec(SelectionDAG &DAG, SDValue Val,
1630     AArch64CC::CondCode &OutCC, bool Negate, SDValue CCOp,
1631     AArch64CC::CondCode Predicate) {
1632   // We're at a tree leaf, produce a conditional comparison operation.
1633   unsigned Opcode = Val->getOpcode();
1634   if (Opcode == ISD::SETCC) {
1635     SDValue LHS = Val->getOperand(0);
1636     SDValue RHS = Val->getOperand(1);
1637     ISD::CondCode CC = cast<CondCodeSDNode>(Val->getOperand(2))->get();
1638     bool isInteger = LHS.getValueType().isInteger();
1639     if (Negate)
1640       CC = getSetCCInverse(CC, isInteger);
1641     SDLoc DL(Val);
1642     // Determine OutCC and handle FP special case.
1643     if (isInteger) {
1644       OutCC = changeIntCCToAArch64CC(CC);
1645     } else {
1646       assert(LHS.getValueType().isFloatingPoint());
1647       AArch64CC::CondCode ExtraCC;
1648       changeFPCCToANDAArch64CC(CC, OutCC, ExtraCC);
1649       // Some floating point conditions can't be tested with a single condition
1650       // code. Construct an additional comparison in this case.
1651       if (ExtraCC != AArch64CC::AL) {
1652         SDValue ExtraCmp;
1653         if (!CCOp.getNode())
1654           ExtraCmp = emitComparison(LHS, RHS, CC, DL, DAG);
1655         else
1656           ExtraCmp = emitConditionalComparison(LHS, RHS, CC, CCOp, Predicate,
1657                                                ExtraCC, DL, DAG);
1658         CCOp = ExtraCmp;
1659         Predicate = ExtraCC;
1660       }
1661     }
1662 
1663     // Produce a normal comparison if we are first in the chain
1664     if (!CCOp)
1665       return emitComparison(LHS, RHS, CC, DL, DAG);
1666     // Otherwise produce a ccmp.
1667     return emitConditionalComparison(LHS, RHS, CC, CCOp, Predicate, OutCC, DL,
1668                                      DAG);
1669   }
1670   assert((Opcode == ISD::AND || (Opcode == ISD::OR && Val->hasOneUse())) &&
1671          "Valid conjunction/disjunction tree");
1672 
1673   // Check if both sides can be transformed.
1674   SDValue LHS = Val->getOperand(0);
1675   SDValue RHS = Val->getOperand(1);
1676 
1677   // In case of an OR we need to negate our operands and the result.
1678   // (A v B) <=> not(not(A) ^ not(B))
1679   bool NegateOpsAndResult = Opcode == ISD::OR;
1680   // We can negate the results of all previous operations by inverting the
1681   // predicate flags giving us a free negation for one side. The other side
1682   // must be negatable by itself.
1683   if (NegateOpsAndResult) {
1684     // See which side we can negate.
1685     bool CanNegateL;
1686     bool isValidL = isConjunctionDisjunctionTree(LHS, CanNegateL);
1687     assert(isValidL && "Valid conjunction/disjunction tree");
1688     (void)isValidL;
1689 
1690 #ifndef NDEBUG
1691     bool CanNegateR;
1692     bool isValidR = isConjunctionDisjunctionTree(RHS, CanNegateR);
1693     assert(isValidR && "Valid conjunction/disjunction tree");
1694     assert((CanNegateL || CanNegateR) && "Valid conjunction/disjunction tree");
1695 #endif
1696 
1697     // Order the side which we cannot negate to RHS so we can emit it first.
1698     if (!CanNegateL)
1699       std::swap(LHS, RHS);
1700   } else {
1701     bool NeedsNegOutL = LHS->getOpcode() == ISD::OR;
1702     assert((!NeedsNegOutL || RHS->getOpcode() != ISD::OR) &&
1703            "Valid conjunction/disjunction tree");
1704     // Order the side where we need to negate the output flags to RHS so it
1705     // gets emitted first.
1706     if (NeedsNegOutL)
1707       std::swap(LHS, RHS);
1708   }
1709 
1710   // Emit RHS. If we want to negate the tree we only need to push a negate
1711   // through if we are already in a PushNegate case, otherwise we can negate
1712   // the "flags to test" afterwards.
1713   AArch64CC::CondCode RHSCC;
1714   SDValue CmpR = emitConjunctionDisjunctionTreeRec(DAG, RHS, RHSCC, Negate,
1715                                                    CCOp, Predicate);
1716   if (NegateOpsAndResult && !Negate)
1717     RHSCC = AArch64CC::getInvertedCondCode(RHSCC);
1718   // Emit LHS. We may need to negate it.
1719   SDValue CmpL = emitConjunctionDisjunctionTreeRec(DAG, LHS, OutCC,
1720                                                    NegateOpsAndResult, CmpR,
1721                                                    RHSCC);
1722   // If we transformed an OR to and AND then we have to negate the result
1723   // (or absorb the Negate parameter).
1724   if (NegateOpsAndResult && !Negate)
1725     OutCC = AArch64CC::getInvertedCondCode(OutCC);
1726   return CmpL;
1727 }
1728 
1729 /// Emit conjunction or disjunction tree with the CMP/FCMP followed by a chain
1730 /// of CCMP/CFCMP ops. See @ref AArch64CCMP.
1731 /// \see emitConjunctionDisjunctionTreeRec().
1732 static SDValue emitConjunctionDisjunctionTree(SelectionDAG &DAG, SDValue Val,
1733                                               AArch64CC::CondCode &OutCC) {
1734   bool CanNegate;
1735   if (!isConjunctionDisjunctionTree(Val, CanNegate))
1736     return SDValue();
1737 
1738   return emitConjunctionDisjunctionTreeRec(DAG, Val, OutCC, false, SDValue(),
1739                                            AArch64CC::AL);
1740 }
1741 
1742 /// @}
1743 
1744 static SDValue getAArch64Cmp(SDValue LHS, SDValue RHS, ISD::CondCode CC,
1745                              SDValue &AArch64cc, SelectionDAG &DAG,
1746                              const SDLoc &dl) {
1747   if (ConstantSDNode *RHSC = dyn_cast<ConstantSDNode>(RHS.getNode())) {
1748     EVT VT = RHS.getValueType();
1749     uint64_t C = RHSC->getZExtValue();
1750     if (!isLegalArithImmed(C)) {
1751       // Constant does not fit, try adjusting it by one?
1752       switch (CC) {
1753       default:
1754         break;
1755       case ISD::SETLT:
1756       case ISD::SETGE:
1757         if ((VT == MVT::i32 && C != 0x80000000 &&
1758              isLegalArithImmed((uint32_t)(C - 1))) ||
1759             (VT == MVT::i64 && C != 0x80000000ULL &&
1760              isLegalArithImmed(C - 1ULL))) {
1761           CC = (CC == ISD::SETLT) ? ISD::SETLE : ISD::SETGT;
1762           C = (VT == MVT::i32) ? (uint32_t)(C - 1) : C - 1;
1763           RHS = DAG.getConstant(C, dl, VT);
1764         }
1765         break;
1766       case ISD::SETULT:
1767       case ISD::SETUGE:
1768         if ((VT == MVT::i32 && C != 0 &&
1769              isLegalArithImmed((uint32_t)(C - 1))) ||
1770             (VT == MVT::i64 && C != 0ULL && isLegalArithImmed(C - 1ULL))) {
1771           CC = (CC == ISD::SETULT) ? ISD::SETULE : ISD::SETUGT;
1772           C = (VT == MVT::i32) ? (uint32_t)(C - 1) : C - 1;
1773           RHS = DAG.getConstant(C, dl, VT);
1774         }
1775         break;
1776       case ISD::SETLE:
1777       case ISD::SETGT:
1778         if ((VT == MVT::i32 && C != INT32_MAX &&
1779              isLegalArithImmed((uint32_t)(C + 1))) ||
1780             (VT == MVT::i64 && C != INT64_MAX &&
1781              isLegalArithImmed(C + 1ULL))) {
1782           CC = (CC == ISD::SETLE) ? ISD::SETLT : ISD::SETGE;
1783           C = (VT == MVT::i32) ? (uint32_t)(C + 1) : C + 1;
1784           RHS = DAG.getConstant(C, dl, VT);
1785         }
1786         break;
1787       case ISD::SETULE:
1788       case ISD::SETUGT:
1789         if ((VT == MVT::i32 && C != UINT32_MAX &&
1790              isLegalArithImmed((uint32_t)(C + 1))) ||
1791             (VT == MVT::i64 && C != UINT64_MAX &&
1792              isLegalArithImmed(C + 1ULL))) {
1793           CC = (CC == ISD::SETULE) ? ISD::SETULT : ISD::SETUGE;
1794           C = (VT == MVT::i32) ? (uint32_t)(C + 1) : C + 1;
1795           RHS = DAG.getConstant(C, dl, VT);
1796         }
1797         break;
1798       }
1799     }
1800   }
1801   SDValue Cmp;
1802   AArch64CC::CondCode AArch64CC;
1803   if ((CC == ISD::SETEQ || CC == ISD::SETNE) && isa<ConstantSDNode>(RHS)) {
1804     const ConstantSDNode *RHSC = cast<ConstantSDNode>(RHS);
1805 
1806     // The imm operand of ADDS is an unsigned immediate, in the range 0 to 4095.
1807     // For the i8 operand, the largest immediate is 255, so this can be easily
1808     // encoded in the compare instruction. For the i16 operand, however, the
1809     // largest immediate cannot be encoded in the compare.
1810     // Therefore, use a sign extending load and cmn to avoid materializing the
1811     // -1 constant. For example,
1812     // movz w1, #65535
1813     // ldrh w0, [x0, #0]
1814     // cmp w0, w1
1815     // >
1816     // ldrsh w0, [x0, #0]
1817     // cmn w0, #1
1818     // Fundamental, we're relying on the property that (zext LHS) == (zext RHS)
1819     // if and only if (sext LHS) == (sext RHS). The checks are in place to
1820     // ensure both the LHS and RHS are truly zero extended and to make sure the
1821     // transformation is profitable.
1822     if ((RHSC->getZExtValue() >> 16 == 0) && isa<LoadSDNode>(LHS) &&
1823         cast<LoadSDNode>(LHS)->getExtensionType() == ISD::ZEXTLOAD &&
1824         cast<LoadSDNode>(LHS)->getMemoryVT() == MVT::i16 &&
1825         LHS.getNode()->hasNUsesOfValue(1, 0)) {
1826       int16_t ValueofRHS = cast<ConstantSDNode>(RHS)->getZExtValue();
1827       if (ValueofRHS < 0 && isLegalArithImmed(-ValueofRHS)) {
1828         SDValue SExt =
1829             DAG.getNode(ISD::SIGN_EXTEND_INREG, dl, LHS.getValueType(), LHS,
1830                         DAG.getValueType(MVT::i16));
1831         Cmp = emitComparison(SExt, DAG.getConstant(ValueofRHS, dl,
1832                                                    RHS.getValueType()),
1833                              CC, dl, DAG);
1834         AArch64CC = changeIntCCToAArch64CC(CC);
1835       }
1836     }
1837 
1838     if (!Cmp && (RHSC->isNullValue() || RHSC->isOne())) {
1839       if ((Cmp = emitConjunctionDisjunctionTree(DAG, LHS, AArch64CC))) {
1840         if ((CC == ISD::SETNE) ^ RHSC->isNullValue())
1841           AArch64CC = AArch64CC::getInvertedCondCode(AArch64CC);
1842       }
1843     }
1844   }
1845 
1846   if (!Cmp) {
1847     Cmp = emitComparison(LHS, RHS, CC, dl, DAG);
1848     AArch64CC = changeIntCCToAArch64CC(CC);
1849   }
1850   AArch64cc = DAG.getConstant(AArch64CC, dl, MVT_CC);
1851   return Cmp;
1852 }
1853 
1854 static std::pair<SDValue, SDValue>
1855 getAArch64XALUOOp(AArch64CC::CondCode &CC, SDValue Op, SelectionDAG &DAG) {
1856   assert((Op.getValueType() == MVT::i32 || Op.getValueType() == MVT::i64) &&
1857          "Unsupported value type");
1858   SDValue Value, Overflow;
1859   SDLoc DL(Op);
1860   SDValue LHS = Op.getOperand(0);
1861   SDValue RHS = Op.getOperand(1);
1862   unsigned Opc = 0;
1863   switch (Op.getOpcode()) {
1864   default:
1865     llvm_unreachable("Unknown overflow instruction!");
1866   case ISD::SADDO:
1867     Opc = AArch64ISD::ADDS;
1868     CC = AArch64CC::VS;
1869     break;
1870   case ISD::UADDO:
1871     Opc = AArch64ISD::ADDS;
1872     CC = AArch64CC::HS;
1873     break;
1874   case ISD::SSUBO:
1875     Opc = AArch64ISD::SUBS;
1876     CC = AArch64CC::VS;
1877     break;
1878   case ISD::USUBO:
1879     Opc = AArch64ISD::SUBS;
1880     CC = AArch64CC::LO;
1881     break;
1882   // Multiply needs a little bit extra work.
1883   case ISD::SMULO:
1884   case ISD::UMULO: {
1885     CC = AArch64CC::NE;
1886     bool IsSigned = Op.getOpcode() == ISD::SMULO;
1887     if (Op.getValueType() == MVT::i32) {
1888       unsigned ExtendOpc = IsSigned ? ISD::SIGN_EXTEND : ISD::ZERO_EXTEND;
1889       // For a 32 bit multiply with overflow check we want the instruction
1890       // selector to generate a widening multiply (SMADDL/UMADDL). For that we
1891       // need to generate the following pattern:
1892       // (i64 add 0, (i64 mul (i64 sext|zext i32 %a), (i64 sext|zext i32 %b))
1893       LHS = DAG.getNode(ExtendOpc, DL, MVT::i64, LHS);
1894       RHS = DAG.getNode(ExtendOpc, DL, MVT::i64, RHS);
1895       SDValue Mul = DAG.getNode(ISD::MUL, DL, MVT::i64, LHS, RHS);
1896       SDValue Add = DAG.getNode(ISD::ADD, DL, MVT::i64, Mul,
1897                                 DAG.getConstant(0, DL, MVT::i64));
1898       // On AArch64 the upper 32 bits are always zero extended for a 32 bit
1899       // operation. We need to clear out the upper 32 bits, because we used a
1900       // widening multiply that wrote all 64 bits. In the end this should be a
1901       // noop.
1902       Value = DAG.getNode(ISD::TRUNCATE, DL, MVT::i32, Add);
1903       if (IsSigned) {
1904         // The signed overflow check requires more than just a simple check for
1905         // any bit set in the upper 32 bits of the result. These bits could be
1906         // just the sign bits of a negative number. To perform the overflow
1907         // check we have to arithmetic shift right the 32nd bit of the result by
1908         // 31 bits. Then we compare the result to the upper 32 bits.
1909         SDValue UpperBits = DAG.getNode(ISD::SRL, DL, MVT::i64, Add,
1910                                         DAG.getConstant(32, DL, MVT::i64));
1911         UpperBits = DAG.getNode(ISD::TRUNCATE, DL, MVT::i32, UpperBits);
1912         SDValue LowerBits = DAG.getNode(ISD::SRA, DL, MVT::i32, Value,
1913                                         DAG.getConstant(31, DL, MVT::i64));
1914         // It is important that LowerBits is last, otherwise the arithmetic
1915         // shift will not be folded into the compare (SUBS).
1916         SDVTList VTs = DAG.getVTList(MVT::i32, MVT::i32);
1917         Overflow = DAG.getNode(AArch64ISD::SUBS, DL, VTs, UpperBits, LowerBits)
1918                        .getValue(1);
1919       } else {
1920         // The overflow check for unsigned multiply is easy. We only need to
1921         // check if any of the upper 32 bits are set. This can be done with a
1922         // CMP (shifted register). For that we need to generate the following
1923         // pattern:
1924         // (i64 AArch64ISD::SUBS i64 0, (i64 srl i64 %Mul, i64 32)
1925         SDValue UpperBits = DAG.getNode(ISD::SRL, DL, MVT::i64, Mul,
1926                                         DAG.getConstant(32, DL, MVT::i64));
1927         SDVTList VTs = DAG.getVTList(MVT::i64, MVT::i32);
1928         Overflow =
1929             DAG.getNode(AArch64ISD::SUBS, DL, VTs,
1930                         DAG.getConstant(0, DL, MVT::i64),
1931                         UpperBits).getValue(1);
1932       }
1933       break;
1934     }
1935     assert(Op.getValueType() == MVT::i64 && "Expected an i64 value type");
1936     // For the 64 bit multiply
1937     Value = DAG.getNode(ISD::MUL, DL, MVT::i64, LHS, RHS);
1938     if (IsSigned) {
1939       SDValue UpperBits = DAG.getNode(ISD::MULHS, DL, MVT::i64, LHS, RHS);
1940       SDValue LowerBits = DAG.getNode(ISD::SRA, DL, MVT::i64, Value,
1941                                       DAG.getConstant(63, DL, MVT::i64));
1942       // It is important that LowerBits is last, otherwise the arithmetic
1943       // shift will not be folded into the compare (SUBS).
1944       SDVTList VTs = DAG.getVTList(MVT::i64, MVT::i32);
1945       Overflow = DAG.getNode(AArch64ISD::SUBS, DL, VTs, UpperBits, LowerBits)
1946                      .getValue(1);
1947     } else {
1948       SDValue UpperBits = DAG.getNode(ISD::MULHU, DL, MVT::i64, LHS, RHS);
1949       SDVTList VTs = DAG.getVTList(MVT::i64, MVT::i32);
1950       Overflow =
1951           DAG.getNode(AArch64ISD::SUBS, DL, VTs,
1952                       DAG.getConstant(0, DL, MVT::i64),
1953                       UpperBits).getValue(1);
1954     }
1955     break;
1956   }
1957   } // switch (...)
1958 
1959   if (Opc) {
1960     SDVTList VTs = DAG.getVTList(Op->getValueType(0), MVT::i32);
1961 
1962     // Emit the AArch64 operation with overflow check.
1963     Value = DAG.getNode(Opc, DL, VTs, LHS, RHS);
1964     Overflow = Value.getValue(1);
1965   }
1966   return std::make_pair(Value, Overflow);
1967 }
1968 
1969 SDValue AArch64TargetLowering::LowerF128Call(SDValue Op, SelectionDAG &DAG,
1970                                              RTLIB::Libcall Call) const {
1971   SmallVector<SDValue, 2> Ops(Op->op_begin(), Op->op_end());
1972   return makeLibCall(DAG, Call, MVT::f128, Ops, false, SDLoc(Op)).first;
1973 }
1974 
1975 // Returns true if the given Op is the overflow flag result of an overflow
1976 // intrinsic operation.
1977 static bool isOverflowIntrOpRes(SDValue Op) {
1978   unsigned Opc = Op.getOpcode();
1979   return (Op.getResNo() == 1 &&
1980           (Opc == ISD::SADDO || Opc == ISD::UADDO || Opc == ISD::SSUBO ||
1981            Opc == ISD::USUBO || Opc == ISD::SMULO || Opc == ISD::UMULO));
1982 }
1983 
1984 static SDValue LowerXOR(SDValue Op, SelectionDAG &DAG) {
1985   SDValue Sel = Op.getOperand(0);
1986   SDValue Other = Op.getOperand(1);
1987   SDLoc dl(Sel);
1988 
1989   // If the operand is an overflow checking operation, invert the condition
1990   // code and kill the Not operation. I.e., transform:
1991   // (xor (overflow_op_bool, 1))
1992   //   -->
1993   // (csel 1, 0, invert(cc), overflow_op_bool)
1994   // ... which later gets transformed to just a cset instruction with an
1995   // inverted condition code, rather than a cset + eor sequence.
1996   if (isOneConstant(Other) && isOverflowIntrOpRes(Sel)) {
1997     // Only lower legal XALUO ops.
1998     if (!DAG.getTargetLoweringInfo().isTypeLegal(Sel->getValueType(0)))
1999       return SDValue();
2000 
2001     SDValue TVal = DAG.getConstant(1, dl, MVT::i32);
2002     SDValue FVal = DAG.getConstant(0, dl, MVT::i32);
2003     AArch64CC::CondCode CC;
2004     SDValue Value, Overflow;
2005     std::tie(Value, Overflow) = getAArch64XALUOOp(CC, Sel.getValue(0), DAG);
2006     SDValue CCVal = DAG.getConstant(getInvertedCondCode(CC), dl, MVT::i32);
2007     return DAG.getNode(AArch64ISD::CSEL, dl, Op.getValueType(), TVal, FVal,
2008                        CCVal, Overflow);
2009   }
2010   // If neither operand is a SELECT_CC, give up.
2011   if (Sel.getOpcode() != ISD::SELECT_CC)
2012     std::swap(Sel, Other);
2013   if (Sel.getOpcode() != ISD::SELECT_CC)
2014     return Op;
2015 
2016   // The folding we want to perform is:
2017   // (xor x, (select_cc a, b, cc, 0, -1) )
2018   //   -->
2019   // (csel x, (xor x, -1), cc ...)
2020   //
2021   // The latter will get matched to a CSINV instruction.
2022 
2023   ISD::CondCode CC = cast<CondCodeSDNode>(Sel.getOperand(4))->get();
2024   SDValue LHS = Sel.getOperand(0);
2025   SDValue RHS = Sel.getOperand(1);
2026   SDValue TVal = Sel.getOperand(2);
2027   SDValue FVal = Sel.getOperand(3);
2028 
2029   // FIXME: This could be generalized to non-integer comparisons.
2030   if (LHS.getValueType() != MVT::i32 && LHS.getValueType() != MVT::i64)
2031     return Op;
2032 
2033   ConstantSDNode *CFVal = dyn_cast<ConstantSDNode>(FVal);
2034   ConstantSDNode *CTVal = dyn_cast<ConstantSDNode>(TVal);
2035 
2036   // The values aren't constants, this isn't the pattern we're looking for.
2037   if (!CFVal || !CTVal)
2038     return Op;
2039 
2040   // We can commute the SELECT_CC by inverting the condition.  This
2041   // might be needed to make this fit into a CSINV pattern.
2042   if (CTVal->isAllOnesValue() && CFVal->isNullValue()) {
2043     std::swap(TVal, FVal);
2044     std::swap(CTVal, CFVal);
2045     CC = ISD::getSetCCInverse(CC, true);
2046   }
2047 
2048   // If the constants line up, perform the transform!
2049   if (CTVal->isNullValue() && CFVal->isAllOnesValue()) {
2050     SDValue CCVal;
2051     SDValue Cmp = getAArch64Cmp(LHS, RHS, CC, CCVal, DAG, dl);
2052 
2053     FVal = Other;
2054     TVal = DAG.getNode(ISD::XOR, dl, Other.getValueType(), Other,
2055                        DAG.getConstant(-1ULL, dl, Other.getValueType()));
2056 
2057     return DAG.getNode(AArch64ISD::CSEL, dl, Sel.getValueType(), FVal, TVal,
2058                        CCVal, Cmp);
2059   }
2060 
2061   return Op;
2062 }
2063 
2064 static SDValue LowerADDC_ADDE_SUBC_SUBE(SDValue Op, SelectionDAG &DAG) {
2065   EVT VT = Op.getValueType();
2066 
2067   // Let legalize expand this if it isn't a legal type yet.
2068   if (!DAG.getTargetLoweringInfo().isTypeLegal(VT))
2069     return SDValue();
2070 
2071   SDVTList VTs = DAG.getVTList(VT, MVT::i32);
2072 
2073   unsigned Opc;
2074   bool ExtraOp = false;
2075   switch (Op.getOpcode()) {
2076   default:
2077     llvm_unreachable("Invalid code");
2078   case ISD::ADDC:
2079     Opc = AArch64ISD::ADDS;
2080     break;
2081   case ISD::SUBC:
2082     Opc = AArch64ISD::SUBS;
2083     break;
2084   case ISD::ADDE:
2085     Opc = AArch64ISD::ADCS;
2086     ExtraOp = true;
2087     break;
2088   case ISD::SUBE:
2089     Opc = AArch64ISD::SBCS;
2090     ExtraOp = true;
2091     break;
2092   }
2093 
2094   if (!ExtraOp)
2095     return DAG.getNode(Opc, SDLoc(Op), VTs, Op.getOperand(0), Op.getOperand(1));
2096   return DAG.getNode(Opc, SDLoc(Op), VTs, Op.getOperand(0), Op.getOperand(1),
2097                      Op.getOperand(2));
2098 }
2099 
2100 static SDValue LowerXALUO(SDValue Op, SelectionDAG &DAG) {
2101   // Let legalize expand this if it isn't a legal type yet.
2102   if (!DAG.getTargetLoweringInfo().isTypeLegal(Op.getValueType()))
2103     return SDValue();
2104 
2105   SDLoc dl(Op);
2106   AArch64CC::CondCode CC;
2107   // The actual operation that sets the overflow or carry flag.
2108   SDValue Value, Overflow;
2109   std::tie(Value, Overflow) = getAArch64XALUOOp(CC, Op, DAG);
2110 
2111   // We use 0 and 1 as false and true values.
2112   SDValue TVal = DAG.getConstant(1, dl, MVT::i32);
2113   SDValue FVal = DAG.getConstant(0, dl, MVT::i32);
2114 
2115   // We use an inverted condition, because the conditional select is inverted
2116   // too. This will allow it to be selected to a single instruction:
2117   // CSINC Wd, WZR, WZR, invert(cond).
2118   SDValue CCVal = DAG.getConstant(getInvertedCondCode(CC), dl, MVT::i32);
2119   Overflow = DAG.getNode(AArch64ISD::CSEL, dl, MVT::i32, FVal, TVal,
2120                          CCVal, Overflow);
2121 
2122   SDVTList VTs = DAG.getVTList(Op.getValueType(), MVT::i32);
2123   return DAG.getNode(ISD::MERGE_VALUES, dl, VTs, Value, Overflow);
2124 }
2125 
2126 // Prefetch operands are:
2127 // 1: Address to prefetch
2128 // 2: bool isWrite
2129 // 3: int locality (0 = no locality ... 3 = extreme locality)
2130 // 4: bool isDataCache
2131 static SDValue LowerPREFETCH(SDValue Op, SelectionDAG &DAG) {
2132   SDLoc DL(Op);
2133   unsigned IsWrite = cast<ConstantSDNode>(Op.getOperand(2))->getZExtValue();
2134   unsigned Locality = cast<ConstantSDNode>(Op.getOperand(3))->getZExtValue();
2135   unsigned IsData = cast<ConstantSDNode>(Op.getOperand(4))->getZExtValue();
2136 
2137   bool IsStream = !Locality;
2138   // When the locality number is set
2139   if (Locality) {
2140     // The front-end should have filtered out the out-of-range values
2141     assert(Locality <= 3 && "Prefetch locality out-of-range");
2142     // The locality degree is the opposite of the cache speed.
2143     // Put the number the other way around.
2144     // The encoding starts at 0 for level 1
2145     Locality = 3 - Locality;
2146   }
2147 
2148   // built the mask value encoding the expected behavior.
2149   unsigned PrfOp = (IsWrite << 4) |     // Load/Store bit
2150                    (!IsData << 3) |     // IsDataCache bit
2151                    (Locality << 1) |    // Cache level bits
2152                    (unsigned)IsStream;  // Stream bit
2153   return DAG.getNode(AArch64ISD::PREFETCH, DL, MVT::Other, Op.getOperand(0),
2154                      DAG.getConstant(PrfOp, DL, MVT::i32), Op.getOperand(1));
2155 }
2156 
2157 SDValue AArch64TargetLowering::LowerFP_EXTEND(SDValue Op,
2158                                               SelectionDAG &DAG) const {
2159   assert(Op.getValueType() == MVT::f128 && "Unexpected lowering");
2160 
2161   RTLIB::Libcall LC;
2162   LC = RTLIB::getFPEXT(Op.getOperand(0).getValueType(), Op.getValueType());
2163 
2164   return LowerF128Call(Op, DAG, LC);
2165 }
2166 
2167 SDValue AArch64TargetLowering::LowerFP_ROUND(SDValue Op,
2168                                              SelectionDAG &DAG) const {
2169   if (Op.getOperand(0).getValueType() != MVT::f128) {
2170     // It's legal except when f128 is involved
2171     return Op;
2172   }
2173 
2174   RTLIB::Libcall LC;
2175   LC = RTLIB::getFPROUND(Op.getOperand(0).getValueType(), Op.getValueType());
2176 
2177   // FP_ROUND node has a second operand indicating whether it is known to be
2178   // precise. That doesn't take part in the LibCall so we can't directly use
2179   // LowerF128Call.
2180   SDValue SrcVal = Op.getOperand(0);
2181   return makeLibCall(DAG, LC, Op.getValueType(), SrcVal, /*isSigned*/ false,
2182                      SDLoc(Op)).first;
2183 }
2184 
2185 static SDValue LowerVectorFP_TO_INT(SDValue Op, SelectionDAG &DAG) {
2186   // Warning: We maintain cost tables in AArch64TargetTransformInfo.cpp.
2187   // Any additional optimization in this function should be recorded
2188   // in the cost tables.
2189   EVT InVT = Op.getOperand(0).getValueType();
2190   EVT VT = Op.getValueType();
2191   unsigned NumElts = InVT.getVectorNumElements();
2192 
2193   // f16 vectors are promoted to f32 before a conversion.
2194   if (InVT.getVectorElementType() == MVT::f16) {
2195     MVT NewVT = MVT::getVectorVT(MVT::f32, NumElts);
2196     SDLoc dl(Op);
2197     return DAG.getNode(
2198         Op.getOpcode(), dl, Op.getValueType(),
2199         DAG.getNode(ISD::FP_EXTEND, dl, NewVT, Op.getOperand(0)));
2200   }
2201 
2202   if (VT.getSizeInBits() < InVT.getSizeInBits()) {
2203     SDLoc dl(Op);
2204     SDValue Cv =
2205         DAG.getNode(Op.getOpcode(), dl, InVT.changeVectorElementTypeToInteger(),
2206                     Op.getOperand(0));
2207     return DAG.getNode(ISD::TRUNCATE, dl, VT, Cv);
2208   }
2209 
2210   if (VT.getSizeInBits() > InVT.getSizeInBits()) {
2211     SDLoc dl(Op);
2212     MVT ExtVT =
2213         MVT::getVectorVT(MVT::getFloatingPointVT(VT.getScalarSizeInBits()),
2214                          VT.getVectorNumElements());
2215     SDValue Ext = DAG.getNode(ISD::FP_EXTEND, dl, ExtVT, Op.getOperand(0));
2216     return DAG.getNode(Op.getOpcode(), dl, VT, Ext);
2217   }
2218 
2219   // Type changing conversions are illegal.
2220   return Op;
2221 }
2222 
2223 SDValue AArch64TargetLowering::LowerFP_TO_INT(SDValue Op,
2224                                               SelectionDAG &DAG) const {
2225   if (Op.getOperand(0).getValueType().isVector())
2226     return LowerVectorFP_TO_INT(Op, DAG);
2227 
2228   // f16 conversions are promoted to f32 when full fp16 is not supported.
2229   if (Op.getOperand(0).getValueType() == MVT::f16 &&
2230       !Subtarget->hasFullFP16()) {
2231     SDLoc dl(Op);
2232     return DAG.getNode(
2233         Op.getOpcode(), dl, Op.getValueType(),
2234         DAG.getNode(ISD::FP_EXTEND, dl, MVT::f32, Op.getOperand(0)));
2235   }
2236 
2237   if (Op.getOperand(0).getValueType() != MVT::f128) {
2238     // It's legal except when f128 is involved
2239     return Op;
2240   }
2241 
2242   RTLIB::Libcall LC;
2243   if (Op.getOpcode() == ISD::FP_TO_SINT)
2244     LC = RTLIB::getFPTOSINT(Op.getOperand(0).getValueType(), Op.getValueType());
2245   else
2246     LC = RTLIB::getFPTOUINT(Op.getOperand(0).getValueType(), Op.getValueType());
2247 
2248   SmallVector<SDValue, 2> Ops(Op->op_begin(), Op->op_end());
2249   return makeLibCall(DAG, LC, Op.getValueType(), Ops, false, SDLoc(Op)).first;
2250 }
2251 
2252 static SDValue LowerVectorINT_TO_FP(SDValue Op, SelectionDAG &DAG) {
2253   // Warning: We maintain cost tables in AArch64TargetTransformInfo.cpp.
2254   // Any additional optimization in this function should be recorded
2255   // in the cost tables.
2256   EVT VT = Op.getValueType();
2257   SDLoc dl(Op);
2258   SDValue In = Op.getOperand(0);
2259   EVT InVT = In.getValueType();
2260 
2261   if (VT.getSizeInBits() < InVT.getSizeInBits()) {
2262     MVT CastVT =
2263         MVT::getVectorVT(MVT::getFloatingPointVT(InVT.getScalarSizeInBits()),
2264                          InVT.getVectorNumElements());
2265     In = DAG.getNode(Op.getOpcode(), dl, CastVT, In);
2266     return DAG.getNode(ISD::FP_ROUND, dl, VT, In, DAG.getIntPtrConstant(0, dl));
2267   }
2268 
2269   if (VT.getSizeInBits() > InVT.getSizeInBits()) {
2270     unsigned CastOpc =
2271         Op.getOpcode() == ISD::SINT_TO_FP ? ISD::SIGN_EXTEND : ISD::ZERO_EXTEND;
2272     EVT CastVT = VT.changeVectorElementTypeToInteger();
2273     In = DAG.getNode(CastOpc, dl, CastVT, In);
2274     return DAG.getNode(Op.getOpcode(), dl, VT, In);
2275   }
2276 
2277   return Op;
2278 }
2279 
2280 SDValue AArch64TargetLowering::LowerINT_TO_FP(SDValue Op,
2281                                             SelectionDAG &DAG) const {
2282   if (Op.getValueType().isVector())
2283     return LowerVectorINT_TO_FP(Op, DAG);
2284 
2285   // f16 conversions are promoted to f32 when full fp16 is not supported.
2286   if (Op.getValueType() == MVT::f16 &&
2287       !Subtarget->hasFullFP16()) {
2288     SDLoc dl(Op);
2289     return DAG.getNode(
2290         ISD::FP_ROUND, dl, MVT::f16,
2291         DAG.getNode(Op.getOpcode(), dl, MVT::f32, Op.getOperand(0)),
2292         DAG.getIntPtrConstant(0, dl));
2293   }
2294 
2295   // i128 conversions are libcalls.
2296   if (Op.getOperand(0).getValueType() == MVT::i128)
2297     return SDValue();
2298 
2299   // Other conversions are legal, unless it's to the completely software-based
2300   // fp128.
2301   if (Op.getValueType() != MVT::f128)
2302     return Op;
2303 
2304   RTLIB::Libcall LC;
2305   if (Op.getOpcode() == ISD::SINT_TO_FP)
2306     LC = RTLIB::getSINTTOFP(Op.getOperand(0).getValueType(), Op.getValueType());
2307   else
2308     LC = RTLIB::getUINTTOFP(Op.getOperand(0).getValueType(), Op.getValueType());
2309 
2310   return LowerF128Call(Op, DAG, LC);
2311 }
2312 
2313 SDValue AArch64TargetLowering::LowerFSINCOS(SDValue Op,
2314                                             SelectionDAG &DAG) const {
2315   // For iOS, we want to call an alternative entry point: __sincos_stret,
2316   // which returns the values in two S / D registers.
2317   SDLoc dl(Op);
2318   SDValue Arg = Op.getOperand(0);
2319   EVT ArgVT = Arg.getValueType();
2320   Type *ArgTy = ArgVT.getTypeForEVT(*DAG.getContext());
2321 
2322   ArgListTy Args;
2323   ArgListEntry Entry;
2324 
2325   Entry.Node = Arg;
2326   Entry.Ty = ArgTy;
2327   Entry.IsSExt = false;
2328   Entry.IsZExt = false;
2329   Args.push_back(Entry);
2330 
2331   const char *LibcallName =
2332       (ArgVT == MVT::f64) ? "__sincos_stret" : "__sincosf_stret";
2333   SDValue Callee =
2334       DAG.getExternalSymbol(LibcallName, getPointerTy(DAG.getDataLayout()));
2335 
2336   StructType *RetTy = StructType::get(ArgTy, ArgTy);
2337   TargetLowering::CallLoweringInfo CLI(DAG);
2338   CLI.setDebugLoc(dl)
2339       .setChain(DAG.getEntryNode())
2340       .setLibCallee(CallingConv::Fast, RetTy, Callee, std::move(Args));
2341 
2342   std::pair<SDValue, SDValue> CallResult = LowerCallTo(CLI);
2343   return CallResult.first;
2344 }
2345 
2346 static SDValue LowerBITCAST(SDValue Op, SelectionDAG &DAG) {
2347   if (Op.getValueType() != MVT::f16)
2348     return SDValue();
2349 
2350   assert(Op.getOperand(0).getValueType() == MVT::i16);
2351   SDLoc DL(Op);
2352 
2353   Op = DAG.getNode(ISD::ANY_EXTEND, DL, MVT::i32, Op.getOperand(0));
2354   Op = DAG.getNode(ISD::BITCAST, DL, MVT::f32, Op);
2355   return SDValue(
2356       DAG.getMachineNode(TargetOpcode::EXTRACT_SUBREG, DL, MVT::f16, Op,
2357                          DAG.getTargetConstant(AArch64::hsub, DL, MVT::i32)),
2358       0);
2359 }
2360 
2361 static EVT getExtensionTo64Bits(const EVT &OrigVT) {
2362   if (OrigVT.getSizeInBits() >= 64)
2363     return OrigVT;
2364 
2365   assert(OrigVT.isSimple() && "Expecting a simple value type");
2366 
2367   MVT::SimpleValueType OrigSimpleTy = OrigVT.getSimpleVT().SimpleTy;
2368   switch (OrigSimpleTy) {
2369   default: llvm_unreachable("Unexpected Vector Type");
2370   case MVT::v2i8:
2371   case MVT::v2i16:
2372      return MVT::v2i32;
2373   case MVT::v4i8:
2374     return  MVT::v4i16;
2375   }
2376 }
2377 
2378 static SDValue addRequiredExtensionForVectorMULL(SDValue N, SelectionDAG &DAG,
2379                                                  const EVT &OrigTy,
2380                                                  const EVT &ExtTy,
2381                                                  unsigned ExtOpcode) {
2382   // The vector originally had a size of OrigTy. It was then extended to ExtTy.
2383   // We expect the ExtTy to be 128-bits total. If the OrigTy is less than
2384   // 64-bits we need to insert a new extension so that it will be 64-bits.
2385   assert(ExtTy.is128BitVector() && "Unexpected extension size");
2386   if (OrigTy.getSizeInBits() >= 64)
2387     return N;
2388 
2389   // Must extend size to at least 64 bits to be used as an operand for VMULL.
2390   EVT NewVT = getExtensionTo64Bits(OrigTy);
2391 
2392   return DAG.getNode(ExtOpcode, SDLoc(N), NewVT, N);
2393 }
2394 
2395 static bool isExtendedBUILD_VECTOR(SDNode *N, SelectionDAG &DAG,
2396                                    bool isSigned) {
2397   EVT VT = N->getValueType(0);
2398 
2399   if (N->getOpcode() != ISD::BUILD_VECTOR)
2400     return false;
2401 
2402   for (const SDValue &Elt : N->op_values()) {
2403     if (ConstantSDNode *C = dyn_cast<ConstantSDNode>(Elt)) {
2404       unsigned EltSize = VT.getScalarSizeInBits();
2405       unsigned HalfSize = EltSize / 2;
2406       if (isSigned) {
2407         if (!isIntN(HalfSize, C->getSExtValue()))
2408           return false;
2409       } else {
2410         if (!isUIntN(HalfSize, C->getZExtValue()))
2411           return false;
2412       }
2413       continue;
2414     }
2415     return false;
2416   }
2417 
2418   return true;
2419 }
2420 
2421 static SDValue skipExtensionForVectorMULL(SDNode *N, SelectionDAG &DAG) {
2422   if (N->getOpcode() == ISD::SIGN_EXTEND || N->getOpcode() == ISD::ZERO_EXTEND)
2423     return addRequiredExtensionForVectorMULL(N->getOperand(0), DAG,
2424                                              N->getOperand(0)->getValueType(0),
2425                                              N->getValueType(0),
2426                                              N->getOpcode());
2427 
2428   assert(N->getOpcode() == ISD::BUILD_VECTOR && "expected BUILD_VECTOR");
2429   EVT VT = N->getValueType(0);
2430   SDLoc dl(N);
2431   unsigned EltSize = VT.getScalarSizeInBits() / 2;
2432   unsigned NumElts = VT.getVectorNumElements();
2433   MVT TruncVT = MVT::getIntegerVT(EltSize);
2434   SmallVector<SDValue, 8> Ops;
2435   for (unsigned i = 0; i != NumElts; ++i) {
2436     ConstantSDNode *C = cast<ConstantSDNode>(N->getOperand(i));
2437     const APInt &CInt = C->getAPIntValue();
2438     // Element types smaller than 32 bits are not legal, so use i32 elements.
2439     // The values are implicitly truncated so sext vs. zext doesn't matter.
2440     Ops.push_back(DAG.getConstant(CInt.zextOrTrunc(32), dl, MVT::i32));
2441   }
2442   return DAG.getBuildVector(MVT::getVectorVT(TruncVT, NumElts), dl, Ops);
2443 }
2444 
2445 static bool isSignExtended(SDNode *N, SelectionDAG &DAG) {
2446   return N->getOpcode() == ISD::SIGN_EXTEND ||
2447          isExtendedBUILD_VECTOR(N, DAG, true);
2448 }
2449 
2450 static bool isZeroExtended(SDNode *N, SelectionDAG &DAG) {
2451   return N->getOpcode() == ISD::ZERO_EXTEND ||
2452          isExtendedBUILD_VECTOR(N, DAG, false);
2453 }
2454 
2455 static bool isAddSubSExt(SDNode *N, SelectionDAG &DAG) {
2456   unsigned Opcode = N->getOpcode();
2457   if (Opcode == ISD::ADD || Opcode == ISD::SUB) {
2458     SDNode *N0 = N->getOperand(0).getNode();
2459     SDNode *N1 = N->getOperand(1).getNode();
2460     return N0->hasOneUse() && N1->hasOneUse() &&
2461       isSignExtended(N0, DAG) && isSignExtended(N1, DAG);
2462   }
2463   return false;
2464 }
2465 
2466 static bool isAddSubZExt(SDNode *N, SelectionDAG &DAG) {
2467   unsigned Opcode = N->getOpcode();
2468   if (Opcode == ISD::ADD || Opcode == ISD::SUB) {
2469     SDNode *N0 = N->getOperand(0).getNode();
2470     SDNode *N1 = N->getOperand(1).getNode();
2471     return N0->hasOneUse() && N1->hasOneUse() &&
2472       isZeroExtended(N0, DAG) && isZeroExtended(N1, DAG);
2473   }
2474   return false;
2475 }
2476 
2477 static SDValue LowerMUL(SDValue Op, SelectionDAG &DAG) {
2478   // Multiplications are only custom-lowered for 128-bit vectors so that
2479   // VMULL can be detected.  Otherwise v2i64 multiplications are not legal.
2480   EVT VT = Op.getValueType();
2481   assert(VT.is128BitVector() && VT.isInteger() &&
2482          "unexpected type for custom-lowering ISD::MUL");
2483   SDNode *N0 = Op.getOperand(0).getNode();
2484   SDNode *N1 = Op.getOperand(1).getNode();
2485   unsigned NewOpc = 0;
2486   bool isMLA = false;
2487   bool isN0SExt = isSignExtended(N0, DAG);
2488   bool isN1SExt = isSignExtended(N1, DAG);
2489   if (isN0SExt && isN1SExt)
2490     NewOpc = AArch64ISD::SMULL;
2491   else {
2492     bool isN0ZExt = isZeroExtended(N0, DAG);
2493     bool isN1ZExt = isZeroExtended(N1, DAG);
2494     if (isN0ZExt && isN1ZExt)
2495       NewOpc = AArch64ISD::UMULL;
2496     else if (isN1SExt || isN1ZExt) {
2497       // Look for (s/zext A + s/zext B) * (s/zext C). We want to turn these
2498       // into (s/zext A * s/zext C) + (s/zext B * s/zext C)
2499       if (isN1SExt && isAddSubSExt(N0, DAG)) {
2500         NewOpc = AArch64ISD::SMULL;
2501         isMLA = true;
2502       } else if (isN1ZExt && isAddSubZExt(N0, DAG)) {
2503         NewOpc =  AArch64ISD::UMULL;
2504         isMLA = true;
2505       } else if (isN0ZExt && isAddSubZExt(N1, DAG)) {
2506         std::swap(N0, N1);
2507         NewOpc =  AArch64ISD::UMULL;
2508         isMLA = true;
2509       }
2510     }
2511 
2512     if (!NewOpc) {
2513       if (VT == MVT::v2i64)
2514         // Fall through to expand this.  It is not legal.
2515         return SDValue();
2516       else
2517         // Other vector multiplications are legal.
2518         return Op;
2519     }
2520   }
2521 
2522   // Legalize to a S/UMULL instruction
2523   SDLoc DL(Op);
2524   SDValue Op0;
2525   SDValue Op1 = skipExtensionForVectorMULL(N1, DAG);
2526   if (!isMLA) {
2527     Op0 = skipExtensionForVectorMULL(N0, DAG);
2528     assert(Op0.getValueType().is64BitVector() &&
2529            Op1.getValueType().is64BitVector() &&
2530            "unexpected types for extended operands to VMULL");
2531     return DAG.getNode(NewOpc, DL, VT, Op0, Op1);
2532   }
2533   // Optimizing (zext A + zext B) * C, to (S/UMULL A, C) + (S/UMULL B, C) during
2534   // isel lowering to take advantage of no-stall back to back s/umul + s/umla.
2535   // This is true for CPUs with accumulate forwarding such as Cortex-A53/A57
2536   SDValue N00 = skipExtensionForVectorMULL(N0->getOperand(0).getNode(), DAG);
2537   SDValue N01 = skipExtensionForVectorMULL(N0->getOperand(1).getNode(), DAG);
2538   EVT Op1VT = Op1.getValueType();
2539   return DAG.getNode(N0->getOpcode(), DL, VT,
2540                      DAG.getNode(NewOpc, DL, VT,
2541                                DAG.getNode(ISD::BITCAST, DL, Op1VT, N00), Op1),
2542                      DAG.getNode(NewOpc, DL, VT,
2543                                DAG.getNode(ISD::BITCAST, DL, Op1VT, N01), Op1));
2544 }
2545 
2546 SDValue AArch64TargetLowering::LowerINTRINSIC_WO_CHAIN(SDValue Op,
2547                                                      SelectionDAG &DAG) const {
2548   unsigned IntNo = cast<ConstantSDNode>(Op.getOperand(0))->getZExtValue();
2549   SDLoc dl(Op);
2550   switch (IntNo) {
2551   default: return SDValue();    // Don't custom lower most intrinsics.
2552   case Intrinsic::thread_pointer: {
2553     EVT PtrVT = getPointerTy(DAG.getDataLayout());
2554     return DAG.getNode(AArch64ISD::THREAD_POINTER, dl, PtrVT);
2555   }
2556   case Intrinsic::aarch64_neon_abs:
2557     return DAG.getNode(ISD::ABS, dl, Op.getValueType(),
2558                        Op.getOperand(1));
2559   case Intrinsic::aarch64_neon_smax:
2560     return DAG.getNode(ISD::SMAX, dl, Op.getValueType(),
2561                        Op.getOperand(1), Op.getOperand(2));
2562   case Intrinsic::aarch64_neon_umax:
2563     return DAG.getNode(ISD::UMAX, dl, Op.getValueType(),
2564                        Op.getOperand(1), Op.getOperand(2));
2565   case Intrinsic::aarch64_neon_smin:
2566     return DAG.getNode(ISD::SMIN, dl, Op.getValueType(),
2567                        Op.getOperand(1), Op.getOperand(2));
2568   case Intrinsic::aarch64_neon_umin:
2569     return DAG.getNode(ISD::UMIN, dl, Op.getValueType(),
2570                        Op.getOperand(1), Op.getOperand(2));
2571   }
2572 }
2573 
2574 SDValue AArch64TargetLowering::LowerOperation(SDValue Op,
2575                                               SelectionDAG &DAG) const {
2576   DEBUG(dbgs() << "Custom lowering: ");
2577   DEBUG(Op.dump());
2578 
2579   switch (Op.getOpcode()) {
2580   default:
2581     llvm_unreachable("unimplemented operand");
2582     return SDValue();
2583   case ISD::BITCAST:
2584     return LowerBITCAST(Op, DAG);
2585   case ISD::GlobalAddress:
2586     return LowerGlobalAddress(Op, DAG);
2587   case ISD::GlobalTLSAddress:
2588     return LowerGlobalTLSAddress(Op, DAG);
2589   case ISD::SETCC:
2590     return LowerSETCC(Op, DAG);
2591   case ISD::BR_CC:
2592     return LowerBR_CC(Op, DAG);
2593   case ISD::SELECT:
2594     return LowerSELECT(Op, DAG);
2595   case ISD::SELECT_CC:
2596     return LowerSELECT_CC(Op, DAG);
2597   case ISD::JumpTable:
2598     return LowerJumpTable(Op, DAG);
2599   case ISD::ConstantPool:
2600     return LowerConstantPool(Op, DAG);
2601   case ISD::BlockAddress:
2602     return LowerBlockAddress(Op, DAG);
2603   case ISD::VASTART:
2604     return LowerVASTART(Op, DAG);
2605   case ISD::VACOPY:
2606     return LowerVACOPY(Op, DAG);
2607   case ISD::VAARG:
2608     return LowerVAARG(Op, DAG);
2609   case ISD::ADDC:
2610   case ISD::ADDE:
2611   case ISD::SUBC:
2612   case ISD::SUBE:
2613     return LowerADDC_ADDE_SUBC_SUBE(Op, DAG);
2614   case ISD::SADDO:
2615   case ISD::UADDO:
2616   case ISD::SSUBO:
2617   case ISD::USUBO:
2618   case ISD::SMULO:
2619   case ISD::UMULO:
2620     return LowerXALUO(Op, DAG);
2621   case ISD::FADD:
2622     return LowerF128Call(Op, DAG, RTLIB::ADD_F128);
2623   case ISD::FSUB:
2624     return LowerF128Call(Op, DAG, RTLIB::SUB_F128);
2625   case ISD::FMUL:
2626     return LowerF128Call(Op, DAG, RTLIB::MUL_F128);
2627   case ISD::FDIV:
2628     return LowerF128Call(Op, DAG, RTLIB::DIV_F128);
2629   case ISD::FP_ROUND:
2630     return LowerFP_ROUND(Op, DAG);
2631   case ISD::FP_EXTEND:
2632     return LowerFP_EXTEND(Op, DAG);
2633   case ISD::FRAMEADDR:
2634     return LowerFRAMEADDR(Op, DAG);
2635   case ISD::RETURNADDR:
2636     return LowerRETURNADDR(Op, DAG);
2637   case ISD::INSERT_VECTOR_ELT:
2638     return LowerINSERT_VECTOR_ELT(Op, DAG);
2639   case ISD::EXTRACT_VECTOR_ELT:
2640     return LowerEXTRACT_VECTOR_ELT(Op, DAG);
2641   case ISD::BUILD_VECTOR:
2642     return LowerBUILD_VECTOR(Op, DAG);
2643   case ISD::VECTOR_SHUFFLE:
2644     return LowerVECTOR_SHUFFLE(Op, DAG);
2645   case ISD::EXTRACT_SUBVECTOR:
2646     return LowerEXTRACT_SUBVECTOR(Op, DAG);
2647   case ISD::SRA:
2648   case ISD::SRL:
2649   case ISD::SHL:
2650     return LowerVectorSRA_SRL_SHL(Op, DAG);
2651   case ISD::SHL_PARTS:
2652     return LowerShiftLeftParts(Op, DAG);
2653   case ISD::SRL_PARTS:
2654   case ISD::SRA_PARTS:
2655     return LowerShiftRightParts(Op, DAG);
2656   case ISD::CTPOP:
2657     return LowerCTPOP(Op, DAG);
2658   case ISD::FCOPYSIGN:
2659     return LowerFCOPYSIGN(Op, DAG);
2660   case ISD::AND:
2661     return LowerVectorAND(Op, DAG);
2662   case ISD::OR:
2663     return LowerVectorOR(Op, DAG);
2664   case ISD::XOR:
2665     return LowerXOR(Op, DAG);
2666   case ISD::PREFETCH:
2667     return LowerPREFETCH(Op, DAG);
2668   case ISD::SINT_TO_FP:
2669   case ISD::UINT_TO_FP:
2670     return LowerINT_TO_FP(Op, DAG);
2671   case ISD::FP_TO_SINT:
2672   case ISD::FP_TO_UINT:
2673     return LowerFP_TO_INT(Op, DAG);
2674   case ISD::FSINCOS:
2675     return LowerFSINCOS(Op, DAG);
2676   case ISD::MUL:
2677     return LowerMUL(Op, DAG);
2678   case ISD::INTRINSIC_WO_CHAIN:
2679     return LowerINTRINSIC_WO_CHAIN(Op, DAG);
2680   case ISD::VECREDUCE_ADD:
2681   case ISD::VECREDUCE_SMAX:
2682   case ISD::VECREDUCE_SMIN:
2683   case ISD::VECREDUCE_UMAX:
2684   case ISD::VECREDUCE_UMIN:
2685   case ISD::VECREDUCE_FMAX:
2686   case ISD::VECREDUCE_FMIN:
2687     return LowerVECREDUCE(Op, DAG);
2688   }
2689 }
2690 
2691 //===----------------------------------------------------------------------===//
2692 //                      Calling Convention Implementation
2693 //===----------------------------------------------------------------------===//
2694 
2695 #include "AArch64GenCallingConv.inc"
2696 
2697 /// Selects the correct CCAssignFn for a given CallingConvention value.
2698 CCAssignFn *AArch64TargetLowering::CCAssignFnForCall(CallingConv::ID CC,
2699                                                      bool IsVarArg) const {
2700   switch (CC) {
2701   default:
2702     report_fatal_error("Unsupported calling convention.");
2703   case CallingConv::WebKit_JS:
2704     return CC_AArch64_WebKit_JS;
2705   case CallingConv::GHC:
2706     return CC_AArch64_GHC;
2707   case CallingConv::C:
2708   case CallingConv::Fast:
2709   case CallingConv::PreserveMost:
2710   case CallingConv::CXX_FAST_TLS:
2711   case CallingConv::Swift:
2712     if (Subtarget->isTargetWindows() && IsVarArg)
2713       return CC_AArch64_Win64_VarArg;
2714     if (!Subtarget->isTargetDarwin())
2715       return CC_AArch64_AAPCS;
2716     return IsVarArg ? CC_AArch64_DarwinPCS_VarArg : CC_AArch64_DarwinPCS;
2717   case CallingConv::Win64:
2718     return IsVarArg ? CC_AArch64_Win64_VarArg : CC_AArch64_AAPCS;
2719   }
2720 }
2721 
2722 CCAssignFn *
2723 AArch64TargetLowering::CCAssignFnForReturn(CallingConv::ID CC) const {
2724   return CC == CallingConv::WebKit_JS ? RetCC_AArch64_WebKit_JS
2725                                       : RetCC_AArch64_AAPCS;
2726 }
2727 
2728 SDValue AArch64TargetLowering::LowerFormalArguments(
2729     SDValue Chain, CallingConv::ID CallConv, bool isVarArg,
2730     const SmallVectorImpl<ISD::InputArg> &Ins, const SDLoc &DL,
2731     SelectionDAG &DAG, SmallVectorImpl<SDValue> &InVals) const {
2732   MachineFunction &MF = DAG.getMachineFunction();
2733   MachineFrameInfo &MFI = MF.getFrameInfo();
2734   bool IsWin64 = Subtarget->isCallingConvWin64(MF.getFunction()->getCallingConv());
2735 
2736   // Assign locations to all of the incoming arguments.
2737   SmallVector<CCValAssign, 16> ArgLocs;
2738   CCState CCInfo(CallConv, isVarArg, DAG.getMachineFunction(), ArgLocs,
2739                  *DAG.getContext());
2740 
2741   // At this point, Ins[].VT may already be promoted to i32. To correctly
2742   // handle passing i8 as i8 instead of i32 on stack, we pass in both i32 and
2743   // i8 to CC_AArch64_AAPCS with i32 being ValVT and i8 being LocVT.
2744   // Since AnalyzeFormalArguments uses Ins[].VT for both ValVT and LocVT, here
2745   // we use a special version of AnalyzeFormalArguments to pass in ValVT and
2746   // LocVT.
2747   unsigned NumArgs = Ins.size();
2748   Function::const_arg_iterator CurOrigArg = MF.getFunction()->arg_begin();
2749   unsigned CurArgIdx = 0;
2750   for (unsigned i = 0; i != NumArgs; ++i) {
2751     MVT ValVT = Ins[i].VT;
2752     if (Ins[i].isOrigArg()) {
2753       std::advance(CurOrigArg, Ins[i].getOrigArgIndex() - CurArgIdx);
2754       CurArgIdx = Ins[i].getOrigArgIndex();
2755 
2756       // Get type of the original argument.
2757       EVT ActualVT = getValueType(DAG.getDataLayout(), CurOrigArg->getType(),
2758                                   /*AllowUnknown*/ true);
2759       MVT ActualMVT = ActualVT.isSimple() ? ActualVT.getSimpleVT() : MVT::Other;
2760       // If ActualMVT is i1/i8/i16, we should set LocVT to i8/i8/i16.
2761       if (ActualMVT == MVT::i1 || ActualMVT == MVT::i8)
2762         ValVT = MVT::i8;
2763       else if (ActualMVT == MVT::i16)
2764         ValVT = MVT::i16;
2765     }
2766     CCAssignFn *AssignFn = CCAssignFnForCall(CallConv, /*IsVarArg=*/false);
2767     bool Res =
2768         AssignFn(i, ValVT, ValVT, CCValAssign::Full, Ins[i].Flags, CCInfo);
2769     assert(!Res && "Call operand has unhandled type");
2770     (void)Res;
2771   }
2772   assert(ArgLocs.size() == Ins.size());
2773   SmallVector<SDValue, 16> ArgValues;
2774   for (unsigned i = 0, e = ArgLocs.size(); i != e; ++i) {
2775     CCValAssign &VA = ArgLocs[i];
2776 
2777     if (Ins[i].Flags.isByVal()) {
2778       // Byval is used for HFAs in the PCS, but the system should work in a
2779       // non-compliant manner for larger structs.
2780       EVT PtrVT = getPointerTy(DAG.getDataLayout());
2781       int Size = Ins[i].Flags.getByValSize();
2782       unsigned NumRegs = (Size + 7) / 8;
2783 
2784       // FIXME: This works on big-endian for composite byvals, which are the common
2785       // case. It should also work for fundamental types too.
2786       unsigned FrameIdx =
2787         MFI.CreateFixedObject(8 * NumRegs, VA.getLocMemOffset(), false);
2788       SDValue FrameIdxN = DAG.getFrameIndex(FrameIdx, PtrVT);
2789       InVals.push_back(FrameIdxN);
2790 
2791       continue;
2792     }
2793 
2794     if (VA.isRegLoc()) {
2795       // Arguments stored in registers.
2796       EVT RegVT = VA.getLocVT();
2797 
2798       SDValue ArgValue;
2799       const TargetRegisterClass *RC;
2800 
2801       if (RegVT == MVT::i32)
2802         RC = &AArch64::GPR32RegClass;
2803       else if (RegVT == MVT::i64)
2804         RC = &AArch64::GPR64RegClass;
2805       else if (RegVT == MVT::f16)
2806         RC = &AArch64::FPR16RegClass;
2807       else if (RegVT == MVT::f32)
2808         RC = &AArch64::FPR32RegClass;
2809       else if (RegVT == MVT::f64 || RegVT.is64BitVector())
2810         RC = &AArch64::FPR64RegClass;
2811       else if (RegVT == MVT::f128 || RegVT.is128BitVector())
2812         RC = &AArch64::FPR128RegClass;
2813       else
2814         llvm_unreachable("RegVT not supported by FORMAL_ARGUMENTS Lowering");
2815 
2816       // Transform the arguments in physical registers into virtual ones.
2817       unsigned Reg = MF.addLiveIn(VA.getLocReg(), RC);
2818       ArgValue = DAG.getCopyFromReg(Chain, DL, Reg, RegVT);
2819 
2820       // If this is an 8, 16 or 32-bit value, it is really passed promoted
2821       // to 64 bits.  Insert an assert[sz]ext to capture this, then
2822       // truncate to the right size.
2823       switch (VA.getLocInfo()) {
2824       default:
2825         llvm_unreachable("Unknown loc info!");
2826       case CCValAssign::Full:
2827         break;
2828       case CCValAssign::BCvt:
2829         ArgValue = DAG.getNode(ISD::BITCAST, DL, VA.getValVT(), ArgValue);
2830         break;
2831       case CCValAssign::AExt:
2832       case CCValAssign::SExt:
2833       case CCValAssign::ZExt:
2834         // SelectionDAGBuilder will insert appropriate AssertZExt & AssertSExt
2835         // nodes after our lowering.
2836         assert(RegVT == Ins[i].VT && "incorrect register location selected");
2837         break;
2838       }
2839 
2840       InVals.push_back(ArgValue);
2841 
2842     } else { // VA.isRegLoc()
2843       assert(VA.isMemLoc() && "CCValAssign is neither reg nor mem");
2844       unsigned ArgOffset = VA.getLocMemOffset();
2845       unsigned ArgSize = VA.getValVT().getSizeInBits() / 8;
2846 
2847       uint32_t BEAlign = 0;
2848       if (!Subtarget->isLittleEndian() && ArgSize < 8 &&
2849           !Ins[i].Flags.isInConsecutiveRegs())
2850         BEAlign = 8 - ArgSize;
2851 
2852       int FI = MFI.CreateFixedObject(ArgSize, ArgOffset + BEAlign, true);
2853 
2854       // Create load nodes to retrieve arguments from the stack.
2855       SDValue FIN = DAG.getFrameIndex(FI, getPointerTy(DAG.getDataLayout()));
2856       SDValue ArgValue;
2857 
2858       // For NON_EXTLOAD, generic code in getLoad assert(ValVT == MemVT)
2859       ISD::LoadExtType ExtType = ISD::NON_EXTLOAD;
2860       MVT MemVT = VA.getValVT();
2861 
2862       switch (VA.getLocInfo()) {
2863       default:
2864         break;
2865       case CCValAssign::BCvt:
2866         MemVT = VA.getLocVT();
2867         break;
2868       case CCValAssign::SExt:
2869         ExtType = ISD::SEXTLOAD;
2870         break;
2871       case CCValAssign::ZExt:
2872         ExtType = ISD::ZEXTLOAD;
2873         break;
2874       case CCValAssign::AExt:
2875         ExtType = ISD::EXTLOAD;
2876         break;
2877       }
2878 
2879       ArgValue = DAG.getExtLoad(
2880           ExtType, DL, VA.getLocVT(), Chain, FIN,
2881           MachinePointerInfo::getFixedStack(DAG.getMachineFunction(), FI),
2882           MemVT);
2883 
2884       InVals.push_back(ArgValue);
2885     }
2886   }
2887 
2888   // varargs
2889   AArch64FunctionInfo *FuncInfo = MF.getInfo<AArch64FunctionInfo>();
2890   if (isVarArg) {
2891     if (!Subtarget->isTargetDarwin() || IsWin64) {
2892       // The AAPCS variadic function ABI is identical to the non-variadic
2893       // one. As a result there may be more arguments in registers and we should
2894       // save them for future reference.
2895       // Win64 variadic functions also pass arguments in registers, but all float
2896       // arguments are passed in integer registers.
2897       saveVarArgRegisters(CCInfo, DAG, DL, Chain);
2898     }
2899 
2900     // This will point to the next argument passed via stack.
2901     unsigned StackOffset = CCInfo.getNextStackOffset();
2902     // We currently pass all varargs at 8-byte alignment.
2903     StackOffset = ((StackOffset + 7) & ~7);
2904     FuncInfo->setVarArgsStackIndex(MFI.CreateFixedObject(4, StackOffset, true));
2905   }
2906 
2907   unsigned StackArgSize = CCInfo.getNextStackOffset();
2908   bool TailCallOpt = MF.getTarget().Options.GuaranteedTailCallOpt;
2909   if (DoesCalleeRestoreStack(CallConv, TailCallOpt)) {
2910     // This is a non-standard ABI so by fiat I say we're allowed to make full
2911     // use of the stack area to be popped, which must be aligned to 16 bytes in
2912     // any case:
2913     StackArgSize = alignTo(StackArgSize, 16);
2914 
2915     // If we're expected to restore the stack (e.g. fastcc) then we'll be adding
2916     // a multiple of 16.
2917     FuncInfo->setArgumentStackToRestore(StackArgSize);
2918 
2919     // This realignment carries over to the available bytes below. Our own
2920     // callers will guarantee the space is free by giving an aligned value to
2921     // CALLSEQ_START.
2922   }
2923   // Even if we're not expected to free up the space, it's useful to know how
2924   // much is there while considering tail calls (because we can reuse it).
2925   FuncInfo->setBytesInStackArgArea(StackArgSize);
2926 
2927   return Chain;
2928 }
2929 
2930 void AArch64TargetLowering::saveVarArgRegisters(CCState &CCInfo,
2931                                                 SelectionDAG &DAG,
2932                                                 const SDLoc &DL,
2933                                                 SDValue &Chain) const {
2934   MachineFunction &MF = DAG.getMachineFunction();
2935   MachineFrameInfo &MFI = MF.getFrameInfo();
2936   AArch64FunctionInfo *FuncInfo = MF.getInfo<AArch64FunctionInfo>();
2937   auto PtrVT = getPointerTy(DAG.getDataLayout());
2938   bool IsWin64 = Subtarget->isCallingConvWin64(MF.getFunction()->getCallingConv());
2939 
2940   SmallVector<SDValue, 8> MemOps;
2941 
2942   static const MCPhysReg GPRArgRegs[] = { AArch64::X0, AArch64::X1, AArch64::X2,
2943                                           AArch64::X3, AArch64::X4, AArch64::X5,
2944                                           AArch64::X6, AArch64::X7 };
2945   static const unsigned NumGPRArgRegs = array_lengthof(GPRArgRegs);
2946   unsigned FirstVariadicGPR = CCInfo.getFirstUnallocated(GPRArgRegs);
2947 
2948   unsigned GPRSaveSize = 8 * (NumGPRArgRegs - FirstVariadicGPR);
2949   int GPRIdx = 0;
2950   if (GPRSaveSize != 0) {
2951     if (IsWin64) {
2952       GPRIdx = MFI.CreateFixedObject(GPRSaveSize, -(int)GPRSaveSize, false);
2953       if (GPRSaveSize & 15)
2954         // The extra size here, if triggered, will always be 8.
2955         MFI.CreateFixedObject(16 - (GPRSaveSize & 15), -(int)alignTo(GPRSaveSize, 16), false);
2956     } else
2957       GPRIdx = MFI.CreateStackObject(GPRSaveSize, 8, false);
2958 
2959     SDValue FIN = DAG.getFrameIndex(GPRIdx, PtrVT);
2960 
2961     for (unsigned i = FirstVariadicGPR; i < NumGPRArgRegs; ++i) {
2962       unsigned VReg = MF.addLiveIn(GPRArgRegs[i], &AArch64::GPR64RegClass);
2963       SDValue Val = DAG.getCopyFromReg(Chain, DL, VReg, MVT::i64);
2964       SDValue Store = DAG.getStore(
2965           Val.getValue(1), DL, Val, FIN,
2966           IsWin64
2967               ? MachinePointerInfo::getFixedStack(DAG.getMachineFunction(),
2968                                                   GPRIdx,
2969                                                   (i - FirstVariadicGPR) * 8)
2970               : MachinePointerInfo::getStack(DAG.getMachineFunction(), i * 8));
2971       MemOps.push_back(Store);
2972       FIN =
2973           DAG.getNode(ISD::ADD, DL, PtrVT, FIN, DAG.getConstant(8, DL, PtrVT));
2974     }
2975   }
2976   FuncInfo->setVarArgsGPRIndex(GPRIdx);
2977   FuncInfo->setVarArgsGPRSize(GPRSaveSize);
2978 
2979   if (Subtarget->hasFPARMv8() && !IsWin64) {
2980     static const MCPhysReg FPRArgRegs[] = {
2981         AArch64::Q0, AArch64::Q1, AArch64::Q2, AArch64::Q3,
2982         AArch64::Q4, AArch64::Q5, AArch64::Q6, AArch64::Q7};
2983     static const unsigned NumFPRArgRegs = array_lengthof(FPRArgRegs);
2984     unsigned FirstVariadicFPR = CCInfo.getFirstUnallocated(FPRArgRegs);
2985 
2986     unsigned FPRSaveSize = 16 * (NumFPRArgRegs - FirstVariadicFPR);
2987     int FPRIdx = 0;
2988     if (FPRSaveSize != 0) {
2989       FPRIdx = MFI.CreateStackObject(FPRSaveSize, 16, false);
2990 
2991       SDValue FIN = DAG.getFrameIndex(FPRIdx, PtrVT);
2992 
2993       for (unsigned i = FirstVariadicFPR; i < NumFPRArgRegs; ++i) {
2994         unsigned VReg = MF.addLiveIn(FPRArgRegs[i], &AArch64::FPR128RegClass);
2995         SDValue Val = DAG.getCopyFromReg(Chain, DL, VReg, MVT::f128);
2996 
2997         SDValue Store = DAG.getStore(
2998             Val.getValue(1), DL, Val, FIN,
2999             MachinePointerInfo::getStack(DAG.getMachineFunction(), i * 16));
3000         MemOps.push_back(Store);
3001         FIN = DAG.getNode(ISD::ADD, DL, PtrVT, FIN,
3002                           DAG.getConstant(16, DL, PtrVT));
3003       }
3004     }
3005     FuncInfo->setVarArgsFPRIndex(FPRIdx);
3006     FuncInfo->setVarArgsFPRSize(FPRSaveSize);
3007   }
3008 
3009   if (!MemOps.empty()) {
3010     Chain = DAG.getNode(ISD::TokenFactor, DL, MVT::Other, MemOps);
3011   }
3012 }
3013 
3014 /// LowerCallResult - Lower the result values of a call into the
3015 /// appropriate copies out of appropriate physical registers.
3016 SDValue AArch64TargetLowering::LowerCallResult(
3017     SDValue Chain, SDValue InFlag, CallingConv::ID CallConv, bool isVarArg,
3018     const SmallVectorImpl<ISD::InputArg> &Ins, const SDLoc &DL,
3019     SelectionDAG &DAG, SmallVectorImpl<SDValue> &InVals, bool isThisReturn,
3020     SDValue ThisVal) const {
3021   CCAssignFn *RetCC = CallConv == CallingConv::WebKit_JS
3022                           ? RetCC_AArch64_WebKit_JS
3023                           : RetCC_AArch64_AAPCS;
3024   // Assign locations to each value returned by this call.
3025   SmallVector<CCValAssign, 16> RVLocs;
3026   CCState CCInfo(CallConv, isVarArg, DAG.getMachineFunction(), RVLocs,
3027                  *DAG.getContext());
3028   CCInfo.AnalyzeCallResult(Ins, RetCC);
3029 
3030   // Copy all of the result registers out of their specified physreg.
3031   for (unsigned i = 0; i != RVLocs.size(); ++i) {
3032     CCValAssign VA = RVLocs[i];
3033 
3034     // Pass 'this' value directly from the argument to return value, to avoid
3035     // reg unit interference
3036     if (i == 0 && isThisReturn) {
3037       assert(!VA.needsCustom() && VA.getLocVT() == MVT::i64 &&
3038              "unexpected return calling convention register assignment");
3039       InVals.push_back(ThisVal);
3040       continue;
3041     }
3042 
3043     SDValue Val =
3044         DAG.getCopyFromReg(Chain, DL, VA.getLocReg(), VA.getLocVT(), InFlag);
3045     Chain = Val.getValue(1);
3046     InFlag = Val.getValue(2);
3047 
3048     switch (VA.getLocInfo()) {
3049     default:
3050       llvm_unreachable("Unknown loc info!");
3051     case CCValAssign::Full:
3052       break;
3053     case CCValAssign::BCvt:
3054       Val = DAG.getNode(ISD::BITCAST, DL, VA.getValVT(), Val);
3055       break;
3056     }
3057 
3058     InVals.push_back(Val);
3059   }
3060 
3061   return Chain;
3062 }
3063 
3064 /// Return true if the calling convention is one that we can guarantee TCO for.
3065 static bool canGuaranteeTCO(CallingConv::ID CC) {
3066   return CC == CallingConv::Fast;
3067 }
3068 
3069 /// Return true if we might ever do TCO for calls with this calling convention.
3070 static bool mayTailCallThisCC(CallingConv::ID CC) {
3071   switch (CC) {
3072   case CallingConv::C:
3073   case CallingConv::PreserveMost:
3074   case CallingConv::Swift:
3075     return true;
3076   default:
3077     return canGuaranteeTCO(CC);
3078   }
3079 }
3080 
3081 bool AArch64TargetLowering::isEligibleForTailCallOptimization(
3082     SDValue Callee, CallingConv::ID CalleeCC, bool isVarArg,
3083     const SmallVectorImpl<ISD::OutputArg> &Outs,
3084     const SmallVectorImpl<SDValue> &OutVals,
3085     const SmallVectorImpl<ISD::InputArg> &Ins, SelectionDAG &DAG) const {
3086   if (!mayTailCallThisCC(CalleeCC))
3087     return false;
3088 
3089   MachineFunction &MF = DAG.getMachineFunction();
3090   const Function *CallerF = MF.getFunction();
3091   CallingConv::ID CallerCC = CallerF->getCallingConv();
3092   bool CCMatch = CallerCC == CalleeCC;
3093 
3094   // Byval parameters hand the function a pointer directly into the stack area
3095   // we want to reuse during a tail call. Working around this *is* possible (see
3096   // X86) but less efficient and uglier in LowerCall.
3097   for (Function::const_arg_iterator i = CallerF->arg_begin(),
3098                                     e = CallerF->arg_end();
3099        i != e; ++i)
3100     if (i->hasByValAttr())
3101       return false;
3102 
3103   if (getTargetMachine().Options.GuaranteedTailCallOpt)
3104     return canGuaranteeTCO(CalleeCC) && CCMatch;
3105 
3106   // Externally-defined functions with weak linkage should not be
3107   // tail-called on AArch64 when the OS does not support dynamic
3108   // pre-emption of symbols, as the AAELF spec requires normal calls
3109   // to undefined weak functions to be replaced with a NOP or jump to the
3110   // next instruction. The behaviour of branch instructions in this
3111   // situation (as used for tail calls) is implementation-defined, so we
3112   // cannot rely on the linker replacing the tail call with a return.
3113   if (GlobalAddressSDNode *G = dyn_cast<GlobalAddressSDNode>(Callee)) {
3114     const GlobalValue *GV = G->getGlobal();
3115     const Triple &TT = getTargetMachine().getTargetTriple();
3116     if (GV->hasExternalWeakLinkage() &&
3117         (!TT.isOSWindows() || TT.isOSBinFormatELF() || TT.isOSBinFormatMachO()))
3118       return false;
3119   }
3120 
3121   // Now we search for cases where we can use a tail call without changing the
3122   // ABI. Sibcall is used in some places (particularly gcc) to refer to this
3123   // concept.
3124 
3125   // I want anyone implementing a new calling convention to think long and hard
3126   // about this assert.
3127   assert((!isVarArg || CalleeCC == CallingConv::C) &&
3128          "Unexpected variadic calling convention");
3129 
3130   LLVMContext &C = *DAG.getContext();
3131   if (isVarArg && !Outs.empty()) {
3132     // At least two cases here: if caller is fastcc then we can't have any
3133     // memory arguments (we'd be expected to clean up the stack afterwards). If
3134     // caller is C then we could potentially use its argument area.
3135 
3136     // FIXME: for now we take the most conservative of these in both cases:
3137     // disallow all variadic memory operands.
3138     SmallVector<CCValAssign, 16> ArgLocs;
3139     CCState CCInfo(CalleeCC, isVarArg, MF, ArgLocs, C);
3140 
3141     CCInfo.AnalyzeCallOperands(Outs, CCAssignFnForCall(CalleeCC, true));
3142     for (const CCValAssign &ArgLoc : ArgLocs)
3143       if (!ArgLoc.isRegLoc())
3144         return false;
3145   }
3146 
3147   // Check that the call results are passed in the same way.
3148   if (!CCState::resultsCompatible(CalleeCC, CallerCC, MF, C, Ins,
3149                                   CCAssignFnForCall(CalleeCC, isVarArg),
3150                                   CCAssignFnForCall(CallerCC, isVarArg)))
3151     return false;
3152   // The callee has to preserve all registers the caller needs to preserve.
3153   const AArch64RegisterInfo *TRI = Subtarget->getRegisterInfo();
3154   const uint32_t *CallerPreserved = TRI->getCallPreservedMask(MF, CallerCC);
3155   if (!CCMatch) {
3156     const uint32_t *CalleePreserved = TRI->getCallPreservedMask(MF, CalleeCC);
3157     if (!TRI->regmaskSubsetEqual(CallerPreserved, CalleePreserved))
3158       return false;
3159   }
3160 
3161   // Nothing more to check if the callee is taking no arguments
3162   if (Outs.empty())
3163     return true;
3164 
3165   SmallVector<CCValAssign, 16> ArgLocs;
3166   CCState CCInfo(CalleeCC, isVarArg, MF, ArgLocs, C);
3167 
3168   CCInfo.AnalyzeCallOperands(Outs, CCAssignFnForCall(CalleeCC, isVarArg));
3169 
3170   const AArch64FunctionInfo *FuncInfo = MF.getInfo<AArch64FunctionInfo>();
3171 
3172   // If the stack arguments for this call do not fit into our own save area then
3173   // the call cannot be made tail.
3174   if (CCInfo.getNextStackOffset() > FuncInfo->getBytesInStackArgArea())
3175     return false;
3176 
3177   const MachineRegisterInfo &MRI = MF.getRegInfo();
3178   if (!parametersInCSRMatch(MRI, CallerPreserved, ArgLocs, OutVals))
3179     return false;
3180 
3181   return true;
3182 }
3183 
3184 SDValue AArch64TargetLowering::addTokenForArgument(SDValue Chain,
3185                                                    SelectionDAG &DAG,
3186                                                    MachineFrameInfo &MFI,
3187                                                    int ClobberedFI) const {
3188   SmallVector<SDValue, 8> ArgChains;
3189   int64_t FirstByte = MFI.getObjectOffset(ClobberedFI);
3190   int64_t LastByte = FirstByte + MFI.getObjectSize(ClobberedFI) - 1;
3191 
3192   // Include the original chain at the beginning of the list. When this is
3193   // used by target LowerCall hooks, this helps legalize find the
3194   // CALLSEQ_BEGIN node.
3195   ArgChains.push_back(Chain);
3196 
3197   // Add a chain value for each stack argument corresponding
3198   for (SDNode::use_iterator U = DAG.getEntryNode().getNode()->use_begin(),
3199                             UE = DAG.getEntryNode().getNode()->use_end();
3200        U != UE; ++U)
3201     if (LoadSDNode *L = dyn_cast<LoadSDNode>(*U))
3202       if (FrameIndexSDNode *FI = dyn_cast<FrameIndexSDNode>(L->getBasePtr()))
3203         if (FI->getIndex() < 0) {
3204           int64_t InFirstByte = MFI.getObjectOffset(FI->getIndex());
3205           int64_t InLastByte = InFirstByte;
3206           InLastByte += MFI.getObjectSize(FI->getIndex()) - 1;
3207 
3208           if ((InFirstByte <= FirstByte && FirstByte <= InLastByte) ||
3209               (FirstByte <= InFirstByte && InFirstByte <= LastByte))
3210             ArgChains.push_back(SDValue(L, 1));
3211         }
3212 
3213   // Build a tokenfactor for all the chains.
3214   return DAG.getNode(ISD::TokenFactor, SDLoc(Chain), MVT::Other, ArgChains);
3215 }
3216 
3217 bool AArch64TargetLowering::DoesCalleeRestoreStack(CallingConv::ID CallCC,
3218                                                    bool TailCallOpt) const {
3219   return CallCC == CallingConv::Fast && TailCallOpt;
3220 }
3221 
3222 /// LowerCall - Lower a call to a callseq_start + CALL + callseq_end chain,
3223 /// and add input and output parameter nodes.
3224 SDValue
3225 AArch64TargetLowering::LowerCall(CallLoweringInfo &CLI,
3226                                  SmallVectorImpl<SDValue> &InVals) const {
3227   SelectionDAG &DAG = CLI.DAG;
3228   SDLoc &DL = CLI.DL;
3229   SmallVector<ISD::OutputArg, 32> &Outs = CLI.Outs;
3230   SmallVector<SDValue, 32> &OutVals = CLI.OutVals;
3231   SmallVector<ISD::InputArg, 32> &Ins = CLI.Ins;
3232   SDValue Chain = CLI.Chain;
3233   SDValue Callee = CLI.Callee;
3234   bool &IsTailCall = CLI.IsTailCall;
3235   CallingConv::ID CallConv = CLI.CallConv;
3236   bool IsVarArg = CLI.IsVarArg;
3237 
3238   MachineFunction &MF = DAG.getMachineFunction();
3239   bool IsThisReturn = false;
3240 
3241   AArch64FunctionInfo *FuncInfo = MF.getInfo<AArch64FunctionInfo>();
3242   bool TailCallOpt = MF.getTarget().Options.GuaranteedTailCallOpt;
3243   bool IsSibCall = false;
3244 
3245   if (IsTailCall) {
3246     // Check if it's really possible to do a tail call.
3247     IsTailCall = isEligibleForTailCallOptimization(
3248         Callee, CallConv, IsVarArg, Outs, OutVals, Ins, DAG);
3249     if (!IsTailCall && CLI.CS && CLI.CS.isMustTailCall())
3250       report_fatal_error("failed to perform tail call elimination on a call "
3251                          "site marked musttail");
3252 
3253     // A sibling call is one where we're under the usual C ABI and not planning
3254     // to change that but can still do a tail call:
3255     if (!TailCallOpt && IsTailCall)
3256       IsSibCall = true;
3257 
3258     if (IsTailCall)
3259       ++NumTailCalls;
3260   }
3261 
3262   // Analyze operands of the call, assigning locations to each operand.
3263   SmallVector<CCValAssign, 16> ArgLocs;
3264   CCState CCInfo(CallConv, IsVarArg, DAG.getMachineFunction(), ArgLocs,
3265                  *DAG.getContext());
3266 
3267   if (IsVarArg) {
3268     // Handle fixed and variable vector arguments differently.
3269     // Variable vector arguments always go into memory.
3270     unsigned NumArgs = Outs.size();
3271 
3272     for (unsigned i = 0; i != NumArgs; ++i) {
3273       MVT ArgVT = Outs[i].VT;
3274       ISD::ArgFlagsTy ArgFlags = Outs[i].Flags;
3275       CCAssignFn *AssignFn = CCAssignFnForCall(CallConv,
3276                                                /*IsVarArg=*/ !Outs[i].IsFixed);
3277       bool Res = AssignFn(i, ArgVT, ArgVT, CCValAssign::Full, ArgFlags, CCInfo);
3278       assert(!Res && "Call operand has unhandled type");
3279       (void)Res;
3280     }
3281   } else {
3282     // At this point, Outs[].VT may already be promoted to i32. To correctly
3283     // handle passing i8 as i8 instead of i32 on stack, we pass in both i32 and
3284     // i8 to CC_AArch64_AAPCS with i32 being ValVT and i8 being LocVT.
3285     // Since AnalyzeCallOperands uses Ins[].VT for both ValVT and LocVT, here
3286     // we use a special version of AnalyzeCallOperands to pass in ValVT and
3287     // LocVT.
3288     unsigned NumArgs = Outs.size();
3289     for (unsigned i = 0; i != NumArgs; ++i) {
3290       MVT ValVT = Outs[i].VT;
3291       // Get type of the original argument.
3292       EVT ActualVT = getValueType(DAG.getDataLayout(),
3293                                   CLI.getArgs()[Outs[i].OrigArgIndex].Ty,
3294                                   /*AllowUnknown*/ true);
3295       MVT ActualMVT = ActualVT.isSimple() ? ActualVT.getSimpleVT() : ValVT;
3296       ISD::ArgFlagsTy ArgFlags = Outs[i].Flags;
3297       // If ActualMVT is i1/i8/i16, we should set LocVT to i8/i8/i16.
3298       if (ActualMVT == MVT::i1 || ActualMVT == MVT::i8)
3299         ValVT = MVT::i8;
3300       else if (ActualMVT == MVT::i16)
3301         ValVT = MVT::i16;
3302 
3303       CCAssignFn *AssignFn = CCAssignFnForCall(CallConv, /*IsVarArg=*/false);
3304       bool Res = AssignFn(i, ValVT, ValVT, CCValAssign::Full, ArgFlags, CCInfo);
3305       assert(!Res && "Call operand has unhandled type");
3306       (void)Res;
3307     }
3308   }
3309 
3310   // Get a count of how many bytes are to be pushed on the stack.
3311   unsigned NumBytes = CCInfo.getNextStackOffset();
3312 
3313   if (IsSibCall) {
3314     // Since we're not changing the ABI to make this a tail call, the memory
3315     // operands are already available in the caller's incoming argument space.
3316     NumBytes = 0;
3317   }
3318 
3319   // FPDiff is the byte offset of the call's argument area from the callee's.
3320   // Stores to callee stack arguments will be placed in FixedStackSlots offset
3321   // by this amount for a tail call. In a sibling call it must be 0 because the
3322   // caller will deallocate the entire stack and the callee still expects its
3323   // arguments to begin at SP+0. Completely unused for non-tail calls.
3324   int FPDiff = 0;
3325 
3326   if (IsTailCall && !IsSibCall) {
3327     unsigned NumReusableBytes = FuncInfo->getBytesInStackArgArea();
3328 
3329     // Since callee will pop argument stack as a tail call, we must keep the
3330     // popped size 16-byte aligned.
3331     NumBytes = alignTo(NumBytes, 16);
3332 
3333     // FPDiff will be negative if this tail call requires more space than we
3334     // would automatically have in our incoming argument space. Positive if we
3335     // can actually shrink the stack.
3336     FPDiff = NumReusableBytes - NumBytes;
3337 
3338     // The stack pointer must be 16-byte aligned at all times it's used for a
3339     // memory operation, which in practice means at *all* times and in
3340     // particular across call boundaries. Therefore our own arguments started at
3341     // a 16-byte aligned SP and the delta applied for the tail call should
3342     // satisfy the same constraint.
3343     assert(FPDiff % 16 == 0 && "unaligned stack on tail call");
3344   }
3345 
3346   // Adjust the stack pointer for the new arguments...
3347   // These operations are automatically eliminated by the prolog/epilog pass
3348   if (!IsSibCall)
3349     Chain = DAG.getCALLSEQ_START(Chain, NumBytes, 0, DL);
3350 
3351   SDValue StackPtr = DAG.getCopyFromReg(Chain, DL, AArch64::SP,
3352                                         getPointerTy(DAG.getDataLayout()));
3353 
3354   SmallVector<std::pair<unsigned, SDValue>, 8> RegsToPass;
3355   SmallVector<SDValue, 8> MemOpChains;
3356   auto PtrVT = getPointerTy(DAG.getDataLayout());
3357 
3358   // Walk the register/memloc assignments, inserting copies/loads.
3359   for (unsigned i = 0, realArgIdx = 0, e = ArgLocs.size(); i != e;
3360        ++i, ++realArgIdx) {
3361     CCValAssign &VA = ArgLocs[i];
3362     SDValue Arg = OutVals[realArgIdx];
3363     ISD::ArgFlagsTy Flags = Outs[realArgIdx].Flags;
3364 
3365     // Promote the value if needed.
3366     switch (VA.getLocInfo()) {
3367     default:
3368       llvm_unreachable("Unknown loc info!");
3369     case CCValAssign::Full:
3370       break;
3371     case CCValAssign::SExt:
3372       Arg = DAG.getNode(ISD::SIGN_EXTEND, DL, VA.getLocVT(), Arg);
3373       break;
3374     case CCValAssign::ZExt:
3375       Arg = DAG.getNode(ISD::ZERO_EXTEND, DL, VA.getLocVT(), Arg);
3376       break;
3377     case CCValAssign::AExt:
3378       if (Outs[realArgIdx].ArgVT == MVT::i1) {
3379         // AAPCS requires i1 to be zero-extended to 8-bits by the caller.
3380         Arg = DAG.getNode(ISD::TRUNCATE, DL, MVT::i1, Arg);
3381         Arg = DAG.getNode(ISD::ZERO_EXTEND, DL, MVT::i8, Arg);
3382       }
3383       Arg = DAG.getNode(ISD::ANY_EXTEND, DL, VA.getLocVT(), Arg);
3384       break;
3385     case CCValAssign::BCvt:
3386       Arg = DAG.getNode(ISD::BITCAST, DL, VA.getLocVT(), Arg);
3387       break;
3388     case CCValAssign::FPExt:
3389       Arg = DAG.getNode(ISD::FP_EXTEND, DL, VA.getLocVT(), Arg);
3390       break;
3391     }
3392 
3393     if (VA.isRegLoc()) {
3394       if (realArgIdx == 0 && Flags.isReturned() && !Flags.isSwiftSelf() &&
3395           Outs[0].VT == MVT::i64) {
3396         assert(VA.getLocVT() == MVT::i64 &&
3397                "unexpected calling convention register assignment");
3398         assert(!Ins.empty() && Ins[0].VT == MVT::i64 &&
3399                "unexpected use of 'returned'");
3400         IsThisReturn = true;
3401       }
3402       RegsToPass.push_back(std::make_pair(VA.getLocReg(), Arg));
3403     } else {
3404       assert(VA.isMemLoc());
3405 
3406       SDValue DstAddr;
3407       MachinePointerInfo DstInfo;
3408 
3409       // FIXME: This works on big-endian for composite byvals, which are the
3410       // common case. It should also work for fundamental types too.
3411       uint32_t BEAlign = 0;
3412       unsigned OpSize = Flags.isByVal() ? Flags.getByValSize() * 8
3413                                         : VA.getValVT().getSizeInBits();
3414       OpSize = (OpSize + 7) / 8;
3415       if (!Subtarget->isLittleEndian() && !Flags.isByVal() &&
3416           !Flags.isInConsecutiveRegs()) {
3417         if (OpSize < 8)
3418           BEAlign = 8 - OpSize;
3419       }
3420       unsigned LocMemOffset = VA.getLocMemOffset();
3421       int32_t Offset = LocMemOffset + BEAlign;
3422       SDValue PtrOff = DAG.getIntPtrConstant(Offset, DL);
3423       PtrOff = DAG.getNode(ISD::ADD, DL, PtrVT, StackPtr, PtrOff);
3424 
3425       if (IsTailCall) {
3426         Offset = Offset + FPDiff;
3427         int FI = MF.getFrameInfo().CreateFixedObject(OpSize, Offset, true);
3428 
3429         DstAddr = DAG.getFrameIndex(FI, PtrVT);
3430         DstInfo =
3431             MachinePointerInfo::getFixedStack(DAG.getMachineFunction(), FI);
3432 
3433         // Make sure any stack arguments overlapping with where we're storing
3434         // are loaded before this eventual operation. Otherwise they'll be
3435         // clobbered.
3436         Chain = addTokenForArgument(Chain, DAG, MF.getFrameInfo(), FI);
3437       } else {
3438         SDValue PtrOff = DAG.getIntPtrConstant(Offset, DL);
3439 
3440         DstAddr = DAG.getNode(ISD::ADD, DL, PtrVT, StackPtr, PtrOff);
3441         DstInfo = MachinePointerInfo::getStack(DAG.getMachineFunction(),
3442                                                LocMemOffset);
3443       }
3444 
3445       if (Outs[i].Flags.isByVal()) {
3446         SDValue SizeNode =
3447             DAG.getConstant(Outs[i].Flags.getByValSize(), DL, MVT::i64);
3448         SDValue Cpy = DAG.getMemcpy(
3449             Chain, DL, DstAddr, Arg, SizeNode, Outs[i].Flags.getByValAlign(),
3450             /*isVol = */ false, /*AlwaysInline = */ false,
3451             /*isTailCall = */ false,
3452             DstInfo, MachinePointerInfo());
3453 
3454         MemOpChains.push_back(Cpy);
3455       } else {
3456         // Since we pass i1/i8/i16 as i1/i8/i16 on stack and Arg is already
3457         // promoted to a legal register type i32, we should truncate Arg back to
3458         // i1/i8/i16.
3459         if (VA.getValVT() == MVT::i1 || VA.getValVT() == MVT::i8 ||
3460             VA.getValVT() == MVT::i16)
3461           Arg = DAG.getNode(ISD::TRUNCATE, DL, VA.getValVT(), Arg);
3462 
3463         SDValue Store = DAG.getStore(Chain, DL, Arg, DstAddr, DstInfo);
3464         MemOpChains.push_back(Store);
3465       }
3466     }
3467   }
3468 
3469   if (!MemOpChains.empty())
3470     Chain = DAG.getNode(ISD::TokenFactor, DL, MVT::Other, MemOpChains);
3471 
3472   // Build a sequence of copy-to-reg nodes chained together with token chain
3473   // and flag operands which copy the outgoing args into the appropriate regs.
3474   SDValue InFlag;
3475   for (auto &RegToPass : RegsToPass) {
3476     Chain = DAG.getCopyToReg(Chain, DL, RegToPass.first,
3477                              RegToPass.second, InFlag);
3478     InFlag = Chain.getValue(1);
3479   }
3480 
3481   // If the callee is a GlobalAddress/ExternalSymbol node (quite common, every
3482   // direct call is) turn it into a TargetGlobalAddress/TargetExternalSymbol
3483   // node so that legalize doesn't hack it.
3484   if (auto *G = dyn_cast<GlobalAddressSDNode>(Callee)) {
3485     auto GV = G->getGlobal();
3486     if (Subtarget->classifyGlobalFunctionReference(GV, getTargetMachine()) ==
3487         AArch64II::MO_GOT) {
3488       Callee = DAG.getTargetGlobalAddress(GV, DL, PtrVT, 0, AArch64II::MO_GOT);
3489       Callee = DAG.getNode(AArch64ISD::LOADgot, DL, PtrVT, Callee);
3490     } else {
3491       const GlobalValue *GV = G->getGlobal();
3492       Callee = DAG.getTargetGlobalAddress(GV, DL, PtrVT, 0, 0);
3493     }
3494   } else if (auto *S = dyn_cast<ExternalSymbolSDNode>(Callee)) {
3495     if (getTargetMachine().getCodeModel() == CodeModel::Large &&
3496         Subtarget->isTargetMachO()) {
3497       const char *Sym = S->getSymbol();
3498       Callee = DAG.getTargetExternalSymbol(Sym, PtrVT, AArch64II::MO_GOT);
3499       Callee = DAG.getNode(AArch64ISD::LOADgot, DL, PtrVT, Callee);
3500     } else {
3501       const char *Sym = S->getSymbol();
3502       Callee = DAG.getTargetExternalSymbol(Sym, PtrVT, 0);
3503     }
3504   }
3505 
3506   // We don't usually want to end the call-sequence here because we would tidy
3507   // the frame up *after* the call, however in the ABI-changing tail-call case
3508   // we've carefully laid out the parameters so that when sp is reset they'll be
3509   // in the correct location.
3510   if (IsTailCall && !IsSibCall) {
3511     Chain = DAG.getCALLSEQ_END(Chain, DAG.getIntPtrConstant(NumBytes, DL, true),
3512                                DAG.getIntPtrConstant(0, DL, true), InFlag, DL);
3513     InFlag = Chain.getValue(1);
3514   }
3515 
3516   std::vector<SDValue> Ops;
3517   Ops.push_back(Chain);
3518   Ops.push_back(Callee);
3519 
3520   if (IsTailCall) {
3521     // Each tail call may have to adjust the stack by a different amount, so
3522     // this information must travel along with the operation for eventual
3523     // consumption by emitEpilogue.
3524     Ops.push_back(DAG.getTargetConstant(FPDiff, DL, MVT::i32));
3525   }
3526 
3527   // Add argument registers to the end of the list so that they are known live
3528   // into the call.
3529   for (auto &RegToPass : RegsToPass)
3530     Ops.push_back(DAG.getRegister(RegToPass.first,
3531                                   RegToPass.second.getValueType()));
3532 
3533   // Add a register mask operand representing the call-preserved registers.
3534   const uint32_t *Mask;
3535   const AArch64RegisterInfo *TRI = Subtarget->getRegisterInfo();
3536   if (IsThisReturn) {
3537     // For 'this' returns, use the X0-preserving mask if applicable
3538     Mask = TRI->getThisReturnPreservedMask(MF, CallConv);
3539     if (!Mask) {
3540       IsThisReturn = false;
3541       Mask = TRI->getCallPreservedMask(MF, CallConv);
3542     }
3543   } else
3544     Mask = TRI->getCallPreservedMask(MF, CallConv);
3545 
3546   assert(Mask && "Missing call preserved mask for calling convention");
3547   Ops.push_back(DAG.getRegisterMask(Mask));
3548 
3549   if (InFlag.getNode())
3550     Ops.push_back(InFlag);
3551 
3552   SDVTList NodeTys = DAG.getVTList(MVT::Other, MVT::Glue);
3553 
3554   // If we're doing a tall call, use a TC_RETURN here rather than an
3555   // actual call instruction.
3556   if (IsTailCall) {
3557     MF.getFrameInfo().setHasTailCall();
3558     return DAG.getNode(AArch64ISD::TC_RETURN, DL, NodeTys, Ops);
3559   }
3560 
3561   // Returns a chain and a flag for retval copy to use.
3562   Chain = DAG.getNode(AArch64ISD::CALL, DL, NodeTys, Ops);
3563   InFlag = Chain.getValue(1);
3564 
3565   uint64_t CalleePopBytes =
3566       DoesCalleeRestoreStack(CallConv, TailCallOpt) ? alignTo(NumBytes, 16) : 0;
3567 
3568   Chain = DAG.getCALLSEQ_END(Chain, DAG.getIntPtrConstant(NumBytes, DL, true),
3569                              DAG.getIntPtrConstant(CalleePopBytes, DL, true),
3570                              InFlag, DL);
3571   if (!Ins.empty())
3572     InFlag = Chain.getValue(1);
3573 
3574   // Handle result values, copying them out of physregs into vregs that we
3575   // return.
3576   return LowerCallResult(Chain, InFlag, CallConv, IsVarArg, Ins, DL, DAG,
3577                          InVals, IsThisReturn,
3578                          IsThisReturn ? OutVals[0] : SDValue());
3579 }
3580 
3581 bool AArch64TargetLowering::CanLowerReturn(
3582     CallingConv::ID CallConv, MachineFunction &MF, bool isVarArg,
3583     const SmallVectorImpl<ISD::OutputArg> &Outs, LLVMContext &Context) const {
3584   CCAssignFn *RetCC = CallConv == CallingConv::WebKit_JS
3585                           ? RetCC_AArch64_WebKit_JS
3586                           : RetCC_AArch64_AAPCS;
3587   SmallVector<CCValAssign, 16> RVLocs;
3588   CCState CCInfo(CallConv, isVarArg, MF, RVLocs, Context);
3589   return CCInfo.CheckReturn(Outs, RetCC);
3590 }
3591 
3592 SDValue
3593 AArch64TargetLowering::LowerReturn(SDValue Chain, CallingConv::ID CallConv,
3594                                    bool isVarArg,
3595                                    const SmallVectorImpl<ISD::OutputArg> &Outs,
3596                                    const SmallVectorImpl<SDValue> &OutVals,
3597                                    const SDLoc &DL, SelectionDAG &DAG) const {
3598   CCAssignFn *RetCC = CallConv == CallingConv::WebKit_JS
3599                           ? RetCC_AArch64_WebKit_JS
3600                           : RetCC_AArch64_AAPCS;
3601   SmallVector<CCValAssign, 16> RVLocs;
3602   CCState CCInfo(CallConv, isVarArg, DAG.getMachineFunction(), RVLocs,
3603                  *DAG.getContext());
3604   CCInfo.AnalyzeReturn(Outs, RetCC);
3605 
3606   // Copy the result values into the output registers.
3607   SDValue Flag;
3608   SmallVector<SDValue, 4> RetOps(1, Chain);
3609   for (unsigned i = 0, realRVLocIdx = 0; i != RVLocs.size();
3610        ++i, ++realRVLocIdx) {
3611     CCValAssign &VA = RVLocs[i];
3612     assert(VA.isRegLoc() && "Can only return in registers!");
3613     SDValue Arg = OutVals[realRVLocIdx];
3614 
3615     switch (VA.getLocInfo()) {
3616     default:
3617       llvm_unreachable("Unknown loc info!");
3618     case CCValAssign::Full:
3619       if (Outs[i].ArgVT == MVT::i1) {
3620         // AAPCS requires i1 to be zero-extended to i8 by the producer of the
3621         // value. This is strictly redundant on Darwin (which uses "zeroext
3622         // i1"), but will be optimised out before ISel.
3623         Arg = DAG.getNode(ISD::TRUNCATE, DL, MVT::i1, Arg);
3624         Arg = DAG.getNode(ISD::ZERO_EXTEND, DL, VA.getLocVT(), Arg);
3625       }
3626       break;
3627     case CCValAssign::BCvt:
3628       Arg = DAG.getNode(ISD::BITCAST, DL, VA.getLocVT(), Arg);
3629       break;
3630     }
3631 
3632     Chain = DAG.getCopyToReg(Chain, DL, VA.getLocReg(), Arg, Flag);
3633     Flag = Chain.getValue(1);
3634     RetOps.push_back(DAG.getRegister(VA.getLocReg(), VA.getLocVT()));
3635   }
3636   const AArch64RegisterInfo *TRI = Subtarget->getRegisterInfo();
3637   const MCPhysReg *I =
3638       TRI->getCalleeSavedRegsViaCopy(&DAG.getMachineFunction());
3639   if (I) {
3640     for (; *I; ++I) {
3641       if (AArch64::GPR64RegClass.contains(*I))
3642         RetOps.push_back(DAG.getRegister(*I, MVT::i64));
3643       else if (AArch64::FPR64RegClass.contains(*I))
3644         RetOps.push_back(DAG.getRegister(*I, MVT::getFloatingPointVT(64)));
3645       else
3646         llvm_unreachable("Unexpected register class in CSRsViaCopy!");
3647     }
3648   }
3649 
3650   RetOps[0] = Chain; // Update chain.
3651 
3652   // Add the flag if we have it.
3653   if (Flag.getNode())
3654     RetOps.push_back(Flag);
3655 
3656   return DAG.getNode(AArch64ISD::RET_FLAG, DL, MVT::Other, RetOps);
3657 }
3658 
3659 //===----------------------------------------------------------------------===//
3660 //  Other Lowering Code
3661 //===----------------------------------------------------------------------===//
3662 
3663 SDValue AArch64TargetLowering::getTargetNode(GlobalAddressSDNode *N, EVT Ty,
3664                                              SelectionDAG &DAG,
3665                                              unsigned Flag) const {
3666   return DAG.getTargetGlobalAddress(N->getGlobal(), SDLoc(N), Ty, 0, Flag);
3667 }
3668 
3669 SDValue AArch64TargetLowering::getTargetNode(JumpTableSDNode *N, EVT Ty,
3670                                              SelectionDAG &DAG,
3671                                              unsigned Flag) const {
3672   return DAG.getTargetJumpTable(N->getIndex(), Ty, Flag);
3673 }
3674 
3675 SDValue AArch64TargetLowering::getTargetNode(ConstantPoolSDNode *N, EVT Ty,
3676                                              SelectionDAG &DAG,
3677                                              unsigned Flag) const {
3678   return DAG.getTargetConstantPool(N->getConstVal(), Ty, N->getAlignment(),
3679                                    N->getOffset(), Flag);
3680 }
3681 
3682 SDValue AArch64TargetLowering::getTargetNode(BlockAddressSDNode* N, EVT Ty,
3683                                              SelectionDAG &DAG,
3684                                              unsigned Flag) const {
3685   return DAG.getTargetBlockAddress(N->getBlockAddress(), Ty, 0, Flag);
3686 }
3687 
3688 // (loadGOT sym)
3689 template <class NodeTy>
3690 SDValue AArch64TargetLowering::getGOT(NodeTy *N, SelectionDAG &DAG) const {
3691   DEBUG(dbgs() << "AArch64TargetLowering::getGOT\n");
3692   SDLoc DL(N);
3693   EVT Ty = getPointerTy(DAG.getDataLayout());
3694   SDValue GotAddr = getTargetNode(N, Ty, DAG, AArch64II::MO_GOT);
3695   // FIXME: Once remat is capable of dealing with instructions with register
3696   // operands, expand this into two nodes instead of using a wrapper node.
3697   return DAG.getNode(AArch64ISD::LOADgot, DL, Ty, GotAddr);
3698 }
3699 
3700 // (wrapper %highest(sym), %higher(sym), %hi(sym), %lo(sym))
3701 template <class NodeTy>
3702 SDValue AArch64TargetLowering::getAddrLarge(NodeTy *N, SelectionDAG &DAG)
3703   const {
3704   DEBUG(dbgs() << "AArch64TargetLowering::getAddrLarge\n");
3705   SDLoc DL(N);
3706   EVT Ty = getPointerTy(DAG.getDataLayout());
3707   const unsigned char MO_NC = AArch64II::MO_NC;
3708   return DAG.getNode(
3709         AArch64ISD::WrapperLarge, DL, Ty,
3710         getTargetNode(N, Ty, DAG, AArch64II::MO_G3),
3711         getTargetNode(N, Ty, DAG, AArch64II::MO_G2 | MO_NC),
3712         getTargetNode(N, Ty, DAG, AArch64II::MO_G1 | MO_NC),
3713         getTargetNode(N, Ty, DAG, AArch64II::MO_G0 | MO_NC));
3714 }
3715 
3716 // (addlow (adrp %hi(sym)) %lo(sym))
3717 template <class NodeTy>
3718 SDValue AArch64TargetLowering::getAddr(NodeTy *N, SelectionDAG &DAG) const {
3719   DEBUG(dbgs() << "AArch64TargetLowering::getAddr\n");
3720   SDLoc DL(N);
3721   EVT Ty = getPointerTy(DAG.getDataLayout());
3722   SDValue Hi = getTargetNode(N, Ty, DAG, AArch64II::MO_PAGE);
3723   SDValue Lo = getTargetNode(N, Ty, DAG,
3724                              AArch64II::MO_PAGEOFF | AArch64II::MO_NC);
3725   SDValue ADRP = DAG.getNode(AArch64ISD::ADRP, DL, Ty, Hi);
3726   return DAG.getNode(AArch64ISD::ADDlow, DL, Ty, ADRP, Lo);
3727 }
3728 
3729 SDValue AArch64TargetLowering::LowerGlobalAddress(SDValue Op,
3730                                                   SelectionDAG &DAG) const {
3731   GlobalAddressSDNode *GN = cast<GlobalAddressSDNode>(Op);
3732   const GlobalValue *GV = GN->getGlobal();
3733   unsigned char OpFlags =
3734       Subtarget->ClassifyGlobalReference(GV, getTargetMachine());
3735 
3736   assert(cast<GlobalAddressSDNode>(Op)->getOffset() == 0 &&
3737          "unexpected offset in global node");
3738 
3739   // This also catches the large code model case for Darwin.
3740   if ((OpFlags & AArch64II::MO_GOT) != 0) {
3741     return getGOT(GN, DAG);
3742   }
3743 
3744   if (getTargetMachine().getCodeModel() == CodeModel::Large) {
3745     return getAddrLarge(GN, DAG);
3746   } else {
3747     return getAddr(GN, DAG);
3748   }
3749 }
3750 
3751 /// \brief Convert a TLS address reference into the correct sequence of loads
3752 /// and calls to compute the variable's address (for Darwin, currently) and
3753 /// return an SDValue containing the final node.
3754 
3755 /// Darwin only has one TLS scheme which must be capable of dealing with the
3756 /// fully general situation, in the worst case. This means:
3757 ///     + "extern __thread" declaration.
3758 ///     + Defined in a possibly unknown dynamic library.
3759 ///
3760 /// The general system is that each __thread variable has a [3 x i64] descriptor
3761 /// which contains information used by the runtime to calculate the address. The
3762 /// only part of this the compiler needs to know about is the first xword, which
3763 /// contains a function pointer that must be called with the address of the
3764 /// entire descriptor in "x0".
3765 ///
3766 /// Since this descriptor may be in a different unit, in general even the
3767 /// descriptor must be accessed via an indirect load. The "ideal" code sequence
3768 /// is:
3769 ///     adrp x0, _var@TLVPPAGE
3770 ///     ldr x0, [x0, _var@TLVPPAGEOFF]   ; x0 now contains address of descriptor
3771 ///     ldr x1, [x0]                     ; x1 contains 1st entry of descriptor,
3772 ///                                      ; the function pointer
3773 ///     blr x1                           ; Uses descriptor address in x0
3774 ///     ; Address of _var is now in x0.
3775 ///
3776 /// If the address of _var's descriptor *is* known to the linker, then it can
3777 /// change the first "ldr" instruction to an appropriate "add x0, x0, #imm" for
3778 /// a slight efficiency gain.
3779 SDValue
3780 AArch64TargetLowering::LowerDarwinGlobalTLSAddress(SDValue Op,
3781                                                    SelectionDAG &DAG) const {
3782   assert(Subtarget->isTargetDarwin() && "TLS only supported on Darwin");
3783 
3784   SDLoc DL(Op);
3785   MVT PtrVT = getPointerTy(DAG.getDataLayout());
3786   const GlobalValue *GV = cast<GlobalAddressSDNode>(Op)->getGlobal();
3787 
3788   SDValue TLVPAddr =
3789       DAG.getTargetGlobalAddress(GV, DL, PtrVT, 0, AArch64II::MO_TLS);
3790   SDValue DescAddr = DAG.getNode(AArch64ISD::LOADgot, DL, PtrVT, TLVPAddr);
3791 
3792   // The first entry in the descriptor is a function pointer that we must call
3793   // to obtain the address of the variable.
3794   SDValue Chain = DAG.getEntryNode();
3795   SDValue FuncTLVGet = DAG.getLoad(
3796       MVT::i64, DL, Chain, DescAddr,
3797       MachinePointerInfo::getGOT(DAG.getMachineFunction()),
3798       /* Alignment = */ 8,
3799       MachineMemOperand::MONonTemporal | MachineMemOperand::MOInvariant |
3800           MachineMemOperand::MODereferenceable);
3801   Chain = FuncTLVGet.getValue(1);
3802 
3803   MachineFrameInfo &MFI = DAG.getMachineFunction().getFrameInfo();
3804   MFI.setAdjustsStack(true);
3805 
3806   // TLS calls preserve all registers except those that absolutely must be
3807   // trashed: X0 (it takes an argument), LR (it's a call) and NZCV (let's not be
3808   // silly).
3809   const uint32_t *Mask =
3810       Subtarget->getRegisterInfo()->getTLSCallPreservedMask();
3811 
3812   // Finally, we can make the call. This is just a degenerate version of a
3813   // normal AArch64 call node: x0 takes the address of the descriptor, and
3814   // returns the address of the variable in this thread.
3815   Chain = DAG.getCopyToReg(Chain, DL, AArch64::X0, DescAddr, SDValue());
3816   Chain =
3817       DAG.getNode(AArch64ISD::CALL, DL, DAG.getVTList(MVT::Other, MVT::Glue),
3818                   Chain, FuncTLVGet, DAG.getRegister(AArch64::X0, MVT::i64),
3819                   DAG.getRegisterMask(Mask), Chain.getValue(1));
3820   return DAG.getCopyFromReg(Chain, DL, AArch64::X0, PtrVT, Chain.getValue(1));
3821 }
3822 
3823 /// When accessing thread-local variables under either the general-dynamic or
3824 /// local-dynamic system, we make a "TLS-descriptor" call. The variable will
3825 /// have a descriptor, accessible via a PC-relative ADRP, and whose first entry
3826 /// is a function pointer to carry out the resolution.
3827 ///
3828 /// The sequence is:
3829 ///    adrp  x0, :tlsdesc:var
3830 ///    ldr   x1, [x0, #:tlsdesc_lo12:var]
3831 ///    add   x0, x0, #:tlsdesc_lo12:var
3832 ///    .tlsdesccall var
3833 ///    blr   x1
3834 ///    (TPIDR_EL0 offset now in x0)
3835 ///
3836 ///  The above sequence must be produced unscheduled, to enable the linker to
3837 ///  optimize/relax this sequence.
3838 ///  Therefore, a pseudo-instruction (TLSDESC_CALLSEQ) is used to represent the
3839 ///  above sequence, and expanded really late in the compilation flow, to ensure
3840 ///  the sequence is produced as per above.
3841 SDValue AArch64TargetLowering::LowerELFTLSDescCallSeq(SDValue SymAddr,
3842                                                       const SDLoc &DL,
3843                                                       SelectionDAG &DAG) const {
3844   EVT PtrVT = getPointerTy(DAG.getDataLayout());
3845 
3846   SDValue Chain = DAG.getEntryNode();
3847   SDVTList NodeTys = DAG.getVTList(MVT::Other, MVT::Glue);
3848 
3849   Chain =
3850       DAG.getNode(AArch64ISD::TLSDESC_CALLSEQ, DL, NodeTys, {Chain, SymAddr});
3851   SDValue Glue = Chain.getValue(1);
3852 
3853   return DAG.getCopyFromReg(Chain, DL, AArch64::X0, PtrVT, Glue);
3854 }
3855 
3856 SDValue
3857 AArch64TargetLowering::LowerELFGlobalTLSAddress(SDValue Op,
3858                                                 SelectionDAG &DAG) const {
3859   assert(Subtarget->isTargetELF() && "This function expects an ELF target");
3860   assert(Subtarget->useSmallAddressing() &&
3861          "ELF TLS only supported in small memory model");
3862   // Different choices can be made for the maximum size of the TLS area for a
3863   // module. For the small address model, the default TLS size is 16MiB and the
3864   // maximum TLS size is 4GiB.
3865   // FIXME: add -mtls-size command line option and make it control the 16MiB
3866   // vs. 4GiB code sequence generation.
3867   const GlobalAddressSDNode *GA = cast<GlobalAddressSDNode>(Op);
3868 
3869   TLSModel::Model Model = getTargetMachine().getTLSModel(GA->getGlobal());
3870 
3871   if (DAG.getTarget().Options.EmulatedTLS)
3872     return LowerToTLSEmulatedModel(GA, DAG);
3873 
3874   if (!EnableAArch64ELFLocalDynamicTLSGeneration) {
3875     if (Model == TLSModel::LocalDynamic)
3876       Model = TLSModel::GeneralDynamic;
3877   }
3878 
3879   SDValue TPOff;
3880   EVT PtrVT = getPointerTy(DAG.getDataLayout());
3881   SDLoc DL(Op);
3882   const GlobalValue *GV = GA->getGlobal();
3883 
3884   SDValue ThreadBase = DAG.getNode(AArch64ISD::THREAD_POINTER, DL, PtrVT);
3885 
3886   if (Model == TLSModel::LocalExec) {
3887     SDValue HiVar = DAG.getTargetGlobalAddress(
3888         GV, DL, PtrVT, 0, AArch64II::MO_TLS | AArch64II::MO_HI12);
3889     SDValue LoVar = DAG.getTargetGlobalAddress(
3890         GV, DL, PtrVT, 0,
3891         AArch64II::MO_TLS | AArch64II::MO_PAGEOFF | AArch64II::MO_NC);
3892 
3893     SDValue TPWithOff_lo =
3894         SDValue(DAG.getMachineNode(AArch64::ADDXri, DL, PtrVT, ThreadBase,
3895                                    HiVar,
3896                                    DAG.getTargetConstant(0, DL, MVT::i32)),
3897                 0);
3898     SDValue TPWithOff =
3899         SDValue(DAG.getMachineNode(AArch64::ADDXri, DL, PtrVT, TPWithOff_lo,
3900                                    LoVar,
3901                                    DAG.getTargetConstant(0, DL, MVT::i32)),
3902                 0);
3903     return TPWithOff;
3904   } else if (Model == TLSModel::InitialExec) {
3905     TPOff = DAG.getTargetGlobalAddress(GV, DL, PtrVT, 0, AArch64II::MO_TLS);
3906     TPOff = DAG.getNode(AArch64ISD::LOADgot, DL, PtrVT, TPOff);
3907   } else if (Model == TLSModel::LocalDynamic) {
3908     // Local-dynamic accesses proceed in two phases. A general-dynamic TLS
3909     // descriptor call against the special symbol _TLS_MODULE_BASE_ to calculate
3910     // the beginning of the module's TLS region, followed by a DTPREL offset
3911     // calculation.
3912 
3913     // These accesses will need deduplicating if there's more than one.
3914     AArch64FunctionInfo *MFI =
3915         DAG.getMachineFunction().getInfo<AArch64FunctionInfo>();
3916     MFI->incNumLocalDynamicTLSAccesses();
3917 
3918     // The call needs a relocation too for linker relaxation. It doesn't make
3919     // sense to call it MO_PAGE or MO_PAGEOFF though so we need another copy of
3920     // the address.
3921     SDValue SymAddr = DAG.getTargetExternalSymbol("_TLS_MODULE_BASE_", PtrVT,
3922                                                   AArch64II::MO_TLS);
3923 
3924     // Now we can calculate the offset from TPIDR_EL0 to this module's
3925     // thread-local area.
3926     TPOff = LowerELFTLSDescCallSeq(SymAddr, DL, DAG);
3927 
3928     // Now use :dtprel_whatever: operations to calculate this variable's offset
3929     // in its thread-storage area.
3930     SDValue HiVar = DAG.getTargetGlobalAddress(
3931         GV, DL, MVT::i64, 0, AArch64II::MO_TLS | AArch64II::MO_HI12);
3932     SDValue LoVar = DAG.getTargetGlobalAddress(
3933         GV, DL, MVT::i64, 0,
3934         AArch64II::MO_TLS | AArch64II::MO_PAGEOFF | AArch64II::MO_NC);
3935 
3936     TPOff = SDValue(DAG.getMachineNode(AArch64::ADDXri, DL, PtrVT, TPOff, HiVar,
3937                                        DAG.getTargetConstant(0, DL, MVT::i32)),
3938                     0);
3939     TPOff = SDValue(DAG.getMachineNode(AArch64::ADDXri, DL, PtrVT, TPOff, LoVar,
3940                                        DAG.getTargetConstant(0, DL, MVT::i32)),
3941                     0);
3942   } else if (Model == TLSModel::GeneralDynamic) {
3943     // The call needs a relocation too for linker relaxation. It doesn't make
3944     // sense to call it MO_PAGE or MO_PAGEOFF though so we need another copy of
3945     // the address.
3946     SDValue SymAddr =
3947         DAG.getTargetGlobalAddress(GV, DL, PtrVT, 0, AArch64II::MO_TLS);
3948 
3949     // Finally we can make a call to calculate the offset from tpidr_el0.
3950     TPOff = LowerELFTLSDescCallSeq(SymAddr, DL, DAG);
3951   } else
3952     llvm_unreachable("Unsupported ELF TLS access model");
3953 
3954   return DAG.getNode(ISD::ADD, DL, PtrVT, ThreadBase, TPOff);
3955 }
3956 
3957 SDValue AArch64TargetLowering::LowerGlobalTLSAddress(SDValue Op,
3958                                                      SelectionDAG &DAG) const {
3959   if (Subtarget->isTargetDarwin())
3960     return LowerDarwinGlobalTLSAddress(Op, DAG);
3961   if (Subtarget->isTargetELF())
3962     return LowerELFGlobalTLSAddress(Op, DAG);
3963 
3964   llvm_unreachable("Unexpected platform trying to use TLS");
3965 }
3966 
3967 SDValue AArch64TargetLowering::LowerBR_CC(SDValue Op, SelectionDAG &DAG) const {
3968   SDValue Chain = Op.getOperand(0);
3969   ISD::CondCode CC = cast<CondCodeSDNode>(Op.getOperand(1))->get();
3970   SDValue LHS = Op.getOperand(2);
3971   SDValue RHS = Op.getOperand(3);
3972   SDValue Dest = Op.getOperand(4);
3973   SDLoc dl(Op);
3974 
3975   // Handle f128 first, since lowering it will result in comparing the return
3976   // value of a libcall against zero, which is just what the rest of LowerBR_CC
3977   // is expecting to deal with.
3978   if (LHS.getValueType() == MVT::f128) {
3979     softenSetCCOperands(DAG, MVT::f128, LHS, RHS, CC, dl);
3980 
3981     // If softenSetCCOperands returned a scalar, we need to compare the result
3982     // against zero to select between true and false values.
3983     if (!RHS.getNode()) {
3984       RHS = DAG.getConstant(0, dl, LHS.getValueType());
3985       CC = ISD::SETNE;
3986     }
3987   }
3988 
3989   // Optimize {s|u}{add|sub|mul}.with.overflow feeding into a branch
3990   // instruction.
3991   if (isOverflowIntrOpRes(LHS) && isOneConstant(RHS)) {
3992     assert((CC == ISD::SETEQ || CC == ISD::SETNE) &&
3993            "Unexpected condition code.");
3994     // Only lower legal XALUO ops.
3995     if (!DAG.getTargetLoweringInfo().isTypeLegal(LHS->getValueType(0)))
3996       return SDValue();
3997 
3998     // The actual operation with overflow check.
3999     AArch64CC::CondCode OFCC;
4000     SDValue Value, Overflow;
4001     std::tie(Value, Overflow) = getAArch64XALUOOp(OFCC, LHS.getValue(0), DAG);
4002 
4003     if (CC == ISD::SETNE)
4004       OFCC = getInvertedCondCode(OFCC);
4005     SDValue CCVal = DAG.getConstant(OFCC, dl, MVT::i32);
4006 
4007     return DAG.getNode(AArch64ISD::BRCOND, dl, MVT::Other, Chain, Dest, CCVal,
4008                        Overflow);
4009   }
4010 
4011   if (LHS.getValueType().isInteger()) {
4012     assert((LHS.getValueType() == RHS.getValueType()) &&
4013            (LHS.getValueType() == MVT::i32 || LHS.getValueType() == MVT::i64));
4014 
4015     // If the RHS of the comparison is zero, we can potentially fold this
4016     // to a specialized branch.
4017     const ConstantSDNode *RHSC = dyn_cast<ConstantSDNode>(RHS);
4018     if (RHSC && RHSC->getZExtValue() == 0) {
4019       if (CC == ISD::SETEQ) {
4020         // See if we can use a TBZ to fold in an AND as well.
4021         // TBZ has a smaller branch displacement than CBZ.  If the offset is
4022         // out of bounds, a late MI-layer pass rewrites branches.
4023         // 403.gcc is an example that hits this case.
4024         if (LHS.getOpcode() == ISD::AND &&
4025             isa<ConstantSDNode>(LHS.getOperand(1)) &&
4026             isPowerOf2_64(LHS.getConstantOperandVal(1))) {
4027           SDValue Test = LHS.getOperand(0);
4028           uint64_t Mask = LHS.getConstantOperandVal(1);
4029           return DAG.getNode(AArch64ISD::TBZ, dl, MVT::Other, Chain, Test,
4030                              DAG.getConstant(Log2_64(Mask), dl, MVT::i64),
4031                              Dest);
4032         }
4033 
4034         return DAG.getNode(AArch64ISD::CBZ, dl, MVT::Other, Chain, LHS, Dest);
4035       } else if (CC == ISD::SETNE) {
4036         // See if we can use a TBZ to fold in an AND as well.
4037         // TBZ has a smaller branch displacement than CBZ.  If the offset is
4038         // out of bounds, a late MI-layer pass rewrites branches.
4039         // 403.gcc is an example that hits this case.
4040         if (LHS.getOpcode() == ISD::AND &&
4041             isa<ConstantSDNode>(LHS.getOperand(1)) &&
4042             isPowerOf2_64(LHS.getConstantOperandVal(1))) {
4043           SDValue Test = LHS.getOperand(0);
4044           uint64_t Mask = LHS.getConstantOperandVal(1);
4045           return DAG.getNode(AArch64ISD::TBNZ, dl, MVT::Other, Chain, Test,
4046                              DAG.getConstant(Log2_64(Mask), dl, MVT::i64),
4047                              Dest);
4048         }
4049 
4050         return DAG.getNode(AArch64ISD::CBNZ, dl, MVT::Other, Chain, LHS, Dest);
4051       } else if (CC == ISD::SETLT && LHS.getOpcode() != ISD::AND) {
4052         // Don't combine AND since emitComparison converts the AND to an ANDS
4053         // (a.k.a. TST) and the test in the test bit and branch instruction
4054         // becomes redundant.  This would also increase register pressure.
4055         uint64_t Mask = LHS.getValueSizeInBits() - 1;
4056         return DAG.getNode(AArch64ISD::TBNZ, dl, MVT::Other, Chain, LHS,
4057                            DAG.getConstant(Mask, dl, MVT::i64), Dest);
4058       }
4059     }
4060     if (RHSC && RHSC->getSExtValue() == -1 && CC == ISD::SETGT &&
4061         LHS.getOpcode() != ISD::AND) {
4062       // Don't combine AND since emitComparison converts the AND to an ANDS
4063       // (a.k.a. TST) and the test in the test bit and branch instruction
4064       // becomes redundant.  This would also increase register pressure.
4065       uint64_t Mask = LHS.getValueSizeInBits() - 1;
4066       return DAG.getNode(AArch64ISD::TBZ, dl, MVT::Other, Chain, LHS,
4067                          DAG.getConstant(Mask, dl, MVT::i64), Dest);
4068     }
4069 
4070     SDValue CCVal;
4071     SDValue Cmp = getAArch64Cmp(LHS, RHS, CC, CCVal, DAG, dl);
4072     return DAG.getNode(AArch64ISD::BRCOND, dl, MVT::Other, Chain, Dest, CCVal,
4073                        Cmp);
4074   }
4075 
4076   assert(LHS.getValueType() == MVT::f16 || LHS.getValueType() == MVT::f32 ||
4077          LHS.getValueType() == MVT::f64);
4078 
4079   // Unfortunately, the mapping of LLVM FP CC's onto AArch64 CC's isn't totally
4080   // clean.  Some of them require two branches to implement.
4081   SDValue Cmp = emitComparison(LHS, RHS, CC, dl, DAG);
4082   AArch64CC::CondCode CC1, CC2;
4083   changeFPCCToAArch64CC(CC, CC1, CC2);
4084   SDValue CC1Val = DAG.getConstant(CC1, dl, MVT::i32);
4085   SDValue BR1 =
4086       DAG.getNode(AArch64ISD::BRCOND, dl, MVT::Other, Chain, Dest, CC1Val, Cmp);
4087   if (CC2 != AArch64CC::AL) {
4088     SDValue CC2Val = DAG.getConstant(CC2, dl, MVT::i32);
4089     return DAG.getNode(AArch64ISD::BRCOND, dl, MVT::Other, BR1, Dest, CC2Val,
4090                        Cmp);
4091   }
4092 
4093   return BR1;
4094 }
4095 
4096 SDValue AArch64TargetLowering::LowerFCOPYSIGN(SDValue Op,
4097                                               SelectionDAG &DAG) const {
4098   EVT VT = Op.getValueType();
4099   SDLoc DL(Op);
4100 
4101   SDValue In1 = Op.getOperand(0);
4102   SDValue In2 = Op.getOperand(1);
4103   EVT SrcVT = In2.getValueType();
4104 
4105   if (SrcVT.bitsLT(VT))
4106     In2 = DAG.getNode(ISD::FP_EXTEND, DL, VT, In2);
4107   else if (SrcVT.bitsGT(VT))
4108     In2 = DAG.getNode(ISD::FP_ROUND, DL, VT, In2, DAG.getIntPtrConstant(0, DL));
4109 
4110   EVT VecVT;
4111   uint64_t EltMask;
4112   SDValue VecVal1, VecVal2;
4113 
4114   auto setVecVal = [&] (int Idx) {
4115     if (!VT.isVector()) {
4116       VecVal1 = DAG.getTargetInsertSubreg(Idx, DL, VecVT,
4117                                           DAG.getUNDEF(VecVT), In1);
4118       VecVal2 = DAG.getTargetInsertSubreg(Idx, DL, VecVT,
4119                                           DAG.getUNDEF(VecVT), In2);
4120     } else {
4121       VecVal1 = DAG.getNode(ISD::BITCAST, DL, VecVT, In1);
4122       VecVal2 = DAG.getNode(ISD::BITCAST, DL, VecVT, In2);
4123     }
4124   };
4125 
4126   if (VT == MVT::f32 || VT == MVT::v2f32 || VT == MVT::v4f32) {
4127     VecVT = (VT == MVT::v2f32 ? MVT::v2i32 : MVT::v4i32);
4128     EltMask = 0x80000000ULL;
4129     setVecVal(AArch64::ssub);
4130   } else if (VT == MVT::f64 || VT == MVT::v2f64) {
4131     VecVT = MVT::v2i64;
4132 
4133     // We want to materialize a mask with the high bit set, but the AdvSIMD
4134     // immediate moves cannot materialize that in a single instruction for
4135     // 64-bit elements. Instead, materialize zero and then negate it.
4136     EltMask = 0;
4137 
4138     setVecVal(AArch64::dsub);
4139   } else if (VT == MVT::f16 || VT == MVT::v4f16 || VT == MVT::v8f16) {
4140     VecVT = (VT == MVT::v4f16 ? MVT::v4i16 : MVT::v8i16);
4141     EltMask = 0x8000ULL;
4142     setVecVal(AArch64::hsub);
4143   } else {
4144     llvm_unreachable("Invalid type for copysign!");
4145   }
4146 
4147   SDValue BuildVec = DAG.getConstant(EltMask, DL, VecVT);
4148 
4149   // If we couldn't materialize the mask above, then the mask vector will be
4150   // the zero vector, and we need to negate it here.
4151   if (VT == MVT::f64 || VT == MVT::v2f64) {
4152     BuildVec = DAG.getNode(ISD::BITCAST, DL, MVT::v2f64, BuildVec);
4153     BuildVec = DAG.getNode(ISD::FNEG, DL, MVT::v2f64, BuildVec);
4154     BuildVec = DAG.getNode(ISD::BITCAST, DL, MVT::v2i64, BuildVec);
4155   }
4156 
4157   SDValue Sel =
4158       DAG.getNode(AArch64ISD::BIT, DL, VecVT, VecVal1, VecVal2, BuildVec);
4159 
4160   if (VT == MVT::f16)
4161     return DAG.getTargetExtractSubreg(AArch64::hsub, DL, VT, Sel);
4162   if (VT == MVT::f32)
4163     return DAG.getTargetExtractSubreg(AArch64::ssub, DL, VT, Sel);
4164   else if (VT == MVT::f64)
4165     return DAG.getTargetExtractSubreg(AArch64::dsub, DL, VT, Sel);
4166   else
4167     return DAG.getNode(ISD::BITCAST, DL, VT, Sel);
4168 }
4169 
4170 SDValue AArch64TargetLowering::LowerCTPOP(SDValue Op, SelectionDAG &DAG) const {
4171   if (DAG.getMachineFunction().getFunction()->hasFnAttribute(
4172           Attribute::NoImplicitFloat))
4173     return SDValue();
4174 
4175   if (!Subtarget->hasNEON())
4176     return SDValue();
4177 
4178   // While there is no integer popcount instruction, it can
4179   // be more efficiently lowered to the following sequence that uses
4180   // AdvSIMD registers/instructions as long as the copies to/from
4181   // the AdvSIMD registers are cheap.
4182   //  FMOV    D0, X0        // copy 64-bit int to vector, high bits zero'd
4183   //  CNT     V0.8B, V0.8B  // 8xbyte pop-counts
4184   //  ADDV    B0, V0.8B     // sum 8xbyte pop-counts
4185   //  UMOV    X0, V0.B[0]   // copy byte result back to integer reg
4186   SDValue Val = Op.getOperand(0);
4187   SDLoc DL(Op);
4188   EVT VT = Op.getValueType();
4189 
4190   if (VT == MVT::i32)
4191     Val = DAG.getNode(ISD::ZERO_EXTEND, DL, MVT::i64, Val);
4192   Val = DAG.getNode(ISD::BITCAST, DL, MVT::v8i8, Val);
4193 
4194   SDValue CtPop = DAG.getNode(ISD::CTPOP, DL, MVT::v8i8, Val);
4195   SDValue UaddLV = DAG.getNode(
4196       ISD::INTRINSIC_WO_CHAIN, DL, MVT::i32,
4197       DAG.getConstant(Intrinsic::aarch64_neon_uaddlv, DL, MVT::i32), CtPop);
4198 
4199   if (VT == MVT::i64)
4200     UaddLV = DAG.getNode(ISD::ZERO_EXTEND, DL, MVT::i64, UaddLV);
4201   return UaddLV;
4202 }
4203 
4204 SDValue AArch64TargetLowering::LowerSETCC(SDValue Op, SelectionDAG &DAG) const {
4205 
4206   if (Op.getValueType().isVector())
4207     return LowerVSETCC(Op, DAG);
4208 
4209   SDValue LHS = Op.getOperand(0);
4210   SDValue RHS = Op.getOperand(1);
4211   ISD::CondCode CC = cast<CondCodeSDNode>(Op.getOperand(2))->get();
4212   SDLoc dl(Op);
4213 
4214   // We chose ZeroOrOneBooleanContents, so use zero and one.
4215   EVT VT = Op.getValueType();
4216   SDValue TVal = DAG.getConstant(1, dl, VT);
4217   SDValue FVal = DAG.getConstant(0, dl, VT);
4218 
4219   // Handle f128 first, since one possible outcome is a normal integer
4220   // comparison which gets picked up by the next if statement.
4221   if (LHS.getValueType() == MVT::f128) {
4222     softenSetCCOperands(DAG, MVT::f128, LHS, RHS, CC, dl);
4223 
4224     // If softenSetCCOperands returned a scalar, use it.
4225     if (!RHS.getNode()) {
4226       assert(LHS.getValueType() == Op.getValueType() &&
4227              "Unexpected setcc expansion!");
4228       return LHS;
4229     }
4230   }
4231 
4232   if (LHS.getValueType().isInteger()) {
4233     SDValue CCVal;
4234     SDValue Cmp =
4235         getAArch64Cmp(LHS, RHS, ISD::getSetCCInverse(CC, true), CCVal, DAG, dl);
4236 
4237     // Note that we inverted the condition above, so we reverse the order of
4238     // the true and false operands here.  This will allow the setcc to be
4239     // matched to a single CSINC instruction.
4240     return DAG.getNode(AArch64ISD::CSEL, dl, VT, FVal, TVal, CCVal, Cmp);
4241   }
4242 
4243   // Now we know we're dealing with FP values.
4244   assert(LHS.getValueType() == MVT::f16 || LHS.getValueType() == MVT::f32 ||
4245          LHS.getValueType() == MVT::f64);
4246 
4247   // If that fails, we'll need to perform an FCMP + CSEL sequence.  Go ahead
4248   // and do the comparison.
4249   SDValue Cmp = emitComparison(LHS, RHS, CC, dl, DAG);
4250 
4251   AArch64CC::CondCode CC1, CC2;
4252   changeFPCCToAArch64CC(CC, CC1, CC2);
4253   if (CC2 == AArch64CC::AL) {
4254     changeFPCCToAArch64CC(ISD::getSetCCInverse(CC, false), CC1, CC2);
4255     SDValue CC1Val = DAG.getConstant(CC1, dl, MVT::i32);
4256 
4257     // Note that we inverted the condition above, so we reverse the order of
4258     // the true and false operands here.  This will allow the setcc to be
4259     // matched to a single CSINC instruction.
4260     return DAG.getNode(AArch64ISD::CSEL, dl, VT, FVal, TVal, CC1Val, Cmp);
4261   } else {
4262     // Unfortunately, the mapping of LLVM FP CC's onto AArch64 CC's isn't
4263     // totally clean.  Some of them require two CSELs to implement.  As is in
4264     // this case, we emit the first CSEL and then emit a second using the output
4265     // of the first as the RHS.  We're effectively OR'ing the two CC's together.
4266 
4267     // FIXME: It would be nice if we could match the two CSELs to two CSINCs.
4268     SDValue CC1Val = DAG.getConstant(CC1, dl, MVT::i32);
4269     SDValue CS1 =
4270         DAG.getNode(AArch64ISD::CSEL, dl, VT, TVal, FVal, CC1Val, Cmp);
4271 
4272     SDValue CC2Val = DAG.getConstant(CC2, dl, MVT::i32);
4273     return DAG.getNode(AArch64ISD::CSEL, dl, VT, TVal, CS1, CC2Val, Cmp);
4274   }
4275 }
4276 
4277 SDValue AArch64TargetLowering::LowerSELECT_CC(ISD::CondCode CC, SDValue LHS,
4278                                               SDValue RHS, SDValue TVal,
4279                                               SDValue FVal, const SDLoc &dl,
4280                                               SelectionDAG &DAG) const {
4281   // Handle f128 first, because it will result in a comparison of some RTLIB
4282   // call result against zero.
4283   if (LHS.getValueType() == MVT::f128) {
4284     softenSetCCOperands(DAG, MVT::f128, LHS, RHS, CC, dl);
4285 
4286     // If softenSetCCOperands returned a scalar, we need to compare the result
4287     // against zero to select between true and false values.
4288     if (!RHS.getNode()) {
4289       RHS = DAG.getConstant(0, dl, LHS.getValueType());
4290       CC = ISD::SETNE;
4291     }
4292   }
4293 
4294   // Also handle f16, for which we need to do a f32 comparison.
4295   if (LHS.getValueType() == MVT::f16 && !Subtarget->hasFullFP16()) {
4296     LHS = DAG.getNode(ISD::FP_EXTEND, dl, MVT::f32, LHS);
4297     RHS = DAG.getNode(ISD::FP_EXTEND, dl, MVT::f32, RHS);
4298   }
4299 
4300   // Next, handle integers.
4301   if (LHS.getValueType().isInteger()) {
4302     assert((LHS.getValueType() == RHS.getValueType()) &&
4303            (LHS.getValueType() == MVT::i32 || LHS.getValueType() == MVT::i64));
4304 
4305     unsigned Opcode = AArch64ISD::CSEL;
4306 
4307     // If both the TVal and the FVal are constants, see if we can swap them in
4308     // order to for a CSINV or CSINC out of them.
4309     ConstantSDNode *CFVal = dyn_cast<ConstantSDNode>(FVal);
4310     ConstantSDNode *CTVal = dyn_cast<ConstantSDNode>(TVal);
4311 
4312     if (CTVal && CFVal && CTVal->isAllOnesValue() && CFVal->isNullValue()) {
4313       std::swap(TVal, FVal);
4314       std::swap(CTVal, CFVal);
4315       CC = ISD::getSetCCInverse(CC, true);
4316     } else if (CTVal && CFVal && CTVal->isOne() && CFVal->isNullValue()) {
4317       std::swap(TVal, FVal);
4318       std::swap(CTVal, CFVal);
4319       CC = ISD::getSetCCInverse(CC, true);
4320     } else if (TVal.getOpcode() == ISD::XOR) {
4321       // If TVal is a NOT we want to swap TVal and FVal so that we can match
4322       // with a CSINV rather than a CSEL.
4323       if (isAllOnesConstant(TVal.getOperand(1))) {
4324         std::swap(TVal, FVal);
4325         std::swap(CTVal, CFVal);
4326         CC = ISD::getSetCCInverse(CC, true);
4327       }
4328     } else if (TVal.getOpcode() == ISD::SUB) {
4329       // If TVal is a negation (SUB from 0) we want to swap TVal and FVal so
4330       // that we can match with a CSNEG rather than a CSEL.
4331       if (isNullConstant(TVal.getOperand(0))) {
4332         std::swap(TVal, FVal);
4333         std::swap(CTVal, CFVal);
4334         CC = ISD::getSetCCInverse(CC, true);
4335       }
4336     } else if (CTVal && CFVal) {
4337       const int64_t TrueVal = CTVal->getSExtValue();
4338       const int64_t FalseVal = CFVal->getSExtValue();
4339       bool Swap = false;
4340 
4341       // If both TVal and FVal are constants, see if FVal is the
4342       // inverse/negation/increment of TVal and generate a CSINV/CSNEG/CSINC
4343       // instead of a CSEL in that case.
4344       if (TrueVal == ~FalseVal) {
4345         Opcode = AArch64ISD::CSINV;
4346       } else if (TrueVal == -FalseVal) {
4347         Opcode = AArch64ISD::CSNEG;
4348       } else if (TVal.getValueType() == MVT::i32) {
4349         // If our operands are only 32-bit wide, make sure we use 32-bit
4350         // arithmetic for the check whether we can use CSINC. This ensures that
4351         // the addition in the check will wrap around properly in case there is
4352         // an overflow (which would not be the case if we do the check with
4353         // 64-bit arithmetic).
4354         const uint32_t TrueVal32 = CTVal->getZExtValue();
4355         const uint32_t FalseVal32 = CFVal->getZExtValue();
4356 
4357         if ((TrueVal32 == FalseVal32 + 1) || (TrueVal32 + 1 == FalseVal32)) {
4358           Opcode = AArch64ISD::CSINC;
4359 
4360           if (TrueVal32 > FalseVal32) {
4361             Swap = true;
4362           }
4363         }
4364         // 64-bit check whether we can use CSINC.
4365       } else if ((TrueVal == FalseVal + 1) || (TrueVal + 1 == FalseVal)) {
4366         Opcode = AArch64ISD::CSINC;
4367 
4368         if (TrueVal > FalseVal) {
4369           Swap = true;
4370         }
4371       }
4372 
4373       // Swap TVal and FVal if necessary.
4374       if (Swap) {
4375         std::swap(TVal, FVal);
4376         std::swap(CTVal, CFVal);
4377         CC = ISD::getSetCCInverse(CC, true);
4378       }
4379 
4380       if (Opcode != AArch64ISD::CSEL) {
4381         // Drop FVal since we can get its value by simply inverting/negating
4382         // TVal.
4383         FVal = TVal;
4384       }
4385     }
4386 
4387     // Avoid materializing a constant when possible by reusing a known value in
4388     // a register.  However, don't perform this optimization if the known value
4389     // is one, zero or negative one in the case of a CSEL.  We can always
4390     // materialize these values using CSINC, CSEL and CSINV with wzr/xzr as the
4391     // FVal, respectively.
4392     ConstantSDNode *RHSVal = dyn_cast<ConstantSDNode>(RHS);
4393     if (Opcode == AArch64ISD::CSEL && RHSVal && !RHSVal->isOne() &&
4394         !RHSVal->isNullValue() && !RHSVal->isAllOnesValue()) {
4395       AArch64CC::CondCode AArch64CC = changeIntCCToAArch64CC(CC);
4396       // Transform "a == C ? C : x" to "a == C ? a : x" and "a != C ? x : C" to
4397       // "a != C ? x : a" to avoid materializing C.
4398       if (CTVal && CTVal == RHSVal && AArch64CC == AArch64CC::EQ)
4399         TVal = LHS;
4400       else if (CFVal && CFVal == RHSVal && AArch64CC == AArch64CC::NE)
4401         FVal = LHS;
4402     } else if (Opcode == AArch64ISD::CSNEG && RHSVal && RHSVal->isOne()) {
4403       assert (CTVal && CFVal && "Expected constant operands for CSNEG.");
4404       // Use a CSINV to transform "a == C ? 1 : -1" to "a == C ? a : -1" to
4405       // avoid materializing C.
4406       AArch64CC::CondCode AArch64CC = changeIntCCToAArch64CC(CC);
4407       if (CTVal == RHSVal && AArch64CC == AArch64CC::EQ) {
4408         Opcode = AArch64ISD::CSINV;
4409         TVal = LHS;
4410         FVal = DAG.getConstant(0, dl, FVal.getValueType());
4411       }
4412     }
4413 
4414     SDValue CCVal;
4415     SDValue Cmp = getAArch64Cmp(LHS, RHS, CC, CCVal, DAG, dl);
4416     EVT VT = TVal.getValueType();
4417     return DAG.getNode(Opcode, dl, VT, TVal, FVal, CCVal, Cmp);
4418   }
4419 
4420   // Now we know we're dealing with FP values.
4421   assert(LHS.getValueType() == MVT::f16 || LHS.getValueType() == MVT::f32 ||
4422          LHS.getValueType() == MVT::f64);
4423   assert(LHS.getValueType() == RHS.getValueType());
4424   EVT VT = TVal.getValueType();
4425   SDValue Cmp = emitComparison(LHS, RHS, CC, dl, DAG);
4426 
4427   // Unfortunately, the mapping of LLVM FP CC's onto AArch64 CC's isn't totally
4428   // clean.  Some of them require two CSELs to implement.
4429   AArch64CC::CondCode CC1, CC2;
4430   changeFPCCToAArch64CC(CC, CC1, CC2);
4431 
4432   if (DAG.getTarget().Options.UnsafeFPMath) {
4433     // Transform "a == 0.0 ? 0.0 : x" to "a == 0.0 ? a : x" and
4434     // "a != 0.0 ? x : 0.0" to "a != 0.0 ? x : a" to avoid materializing 0.0.
4435     ConstantFPSDNode *RHSVal = dyn_cast<ConstantFPSDNode>(RHS);
4436     if (RHSVal && RHSVal->isZero()) {
4437       ConstantFPSDNode *CFVal = dyn_cast<ConstantFPSDNode>(FVal);
4438       ConstantFPSDNode *CTVal = dyn_cast<ConstantFPSDNode>(TVal);
4439 
4440       if ((CC == ISD::SETEQ || CC == ISD::SETOEQ || CC == ISD::SETUEQ) &&
4441           CTVal && CTVal->isZero() && TVal.getValueType() == LHS.getValueType())
4442         TVal = LHS;
4443       else if ((CC == ISD::SETNE || CC == ISD::SETONE || CC == ISD::SETUNE) &&
4444                CFVal && CFVal->isZero() &&
4445                FVal.getValueType() == LHS.getValueType())
4446         FVal = LHS;
4447     }
4448   }
4449 
4450   // Emit first, and possibly only, CSEL.
4451   SDValue CC1Val = DAG.getConstant(CC1, dl, MVT::i32);
4452   SDValue CS1 = DAG.getNode(AArch64ISD::CSEL, dl, VT, TVal, FVal, CC1Val, Cmp);
4453 
4454   // If we need a second CSEL, emit it, using the output of the first as the
4455   // RHS.  We're effectively OR'ing the two CC's together.
4456   if (CC2 != AArch64CC::AL) {
4457     SDValue CC2Val = DAG.getConstant(CC2, dl, MVT::i32);
4458     return DAG.getNode(AArch64ISD::CSEL, dl, VT, TVal, CS1, CC2Val, Cmp);
4459   }
4460 
4461   // Otherwise, return the output of the first CSEL.
4462   return CS1;
4463 }
4464 
4465 SDValue AArch64TargetLowering::LowerSELECT_CC(SDValue Op,
4466                                               SelectionDAG &DAG) const {
4467   ISD::CondCode CC = cast<CondCodeSDNode>(Op.getOperand(4))->get();
4468   SDValue LHS = Op.getOperand(0);
4469   SDValue RHS = Op.getOperand(1);
4470   SDValue TVal = Op.getOperand(2);
4471   SDValue FVal = Op.getOperand(3);
4472   SDLoc DL(Op);
4473   return LowerSELECT_CC(CC, LHS, RHS, TVal, FVal, DL, DAG);
4474 }
4475 
4476 SDValue AArch64TargetLowering::LowerSELECT(SDValue Op,
4477                                            SelectionDAG &DAG) const {
4478   SDValue CCVal = Op->getOperand(0);
4479   SDValue TVal = Op->getOperand(1);
4480   SDValue FVal = Op->getOperand(2);
4481   SDLoc DL(Op);
4482 
4483   // Optimize {s|u}{add|sub|mul}.with.overflow feeding into a select
4484   // instruction.
4485   if (isOverflowIntrOpRes(CCVal)) {
4486     // Only lower legal XALUO ops.
4487     if (!DAG.getTargetLoweringInfo().isTypeLegal(CCVal->getValueType(0)))
4488       return SDValue();
4489 
4490     AArch64CC::CondCode OFCC;
4491     SDValue Value, Overflow;
4492     std::tie(Value, Overflow) = getAArch64XALUOOp(OFCC, CCVal.getValue(0), DAG);
4493     SDValue CCVal = DAG.getConstant(OFCC, DL, MVT::i32);
4494 
4495     return DAG.getNode(AArch64ISD::CSEL, DL, Op.getValueType(), TVal, FVal,
4496                        CCVal, Overflow);
4497   }
4498 
4499   // Lower it the same way as we would lower a SELECT_CC node.
4500   ISD::CondCode CC;
4501   SDValue LHS, RHS;
4502   if (CCVal.getOpcode() == ISD::SETCC) {
4503     LHS = CCVal.getOperand(0);
4504     RHS = CCVal.getOperand(1);
4505     CC = cast<CondCodeSDNode>(CCVal->getOperand(2))->get();
4506   } else {
4507     LHS = CCVal;
4508     RHS = DAG.getConstant(0, DL, CCVal.getValueType());
4509     CC = ISD::SETNE;
4510   }
4511   return LowerSELECT_CC(CC, LHS, RHS, TVal, FVal, DL, DAG);
4512 }
4513 
4514 SDValue AArch64TargetLowering::LowerJumpTable(SDValue Op,
4515                                               SelectionDAG &DAG) const {
4516   // Jump table entries as PC relative offsets. No additional tweaking
4517   // is necessary here. Just get the address of the jump table.
4518   JumpTableSDNode *JT = cast<JumpTableSDNode>(Op);
4519 
4520   if (getTargetMachine().getCodeModel() == CodeModel::Large &&
4521       !Subtarget->isTargetMachO()) {
4522     return getAddrLarge(JT, DAG);
4523   }
4524   return getAddr(JT, DAG);
4525 }
4526 
4527 SDValue AArch64TargetLowering::LowerConstantPool(SDValue Op,
4528                                                  SelectionDAG &DAG) const {
4529   ConstantPoolSDNode *CP = cast<ConstantPoolSDNode>(Op);
4530 
4531   if (getTargetMachine().getCodeModel() == CodeModel::Large) {
4532     // Use the GOT for the large code model on iOS.
4533     if (Subtarget->isTargetMachO()) {
4534       return getGOT(CP, DAG);
4535     }
4536     return getAddrLarge(CP, DAG);
4537   } else {
4538     return getAddr(CP, DAG);
4539   }
4540 }
4541 
4542 SDValue AArch64TargetLowering::LowerBlockAddress(SDValue Op,
4543                                                SelectionDAG &DAG) const {
4544   BlockAddressSDNode *BA = cast<BlockAddressSDNode>(Op);
4545   if (getTargetMachine().getCodeModel() == CodeModel::Large &&
4546       !Subtarget->isTargetMachO()) {
4547     return getAddrLarge(BA, DAG);
4548   } else {
4549     return getAddr(BA, DAG);
4550   }
4551 }
4552 
4553 SDValue AArch64TargetLowering::LowerDarwin_VASTART(SDValue Op,
4554                                                  SelectionDAG &DAG) const {
4555   AArch64FunctionInfo *FuncInfo =
4556       DAG.getMachineFunction().getInfo<AArch64FunctionInfo>();
4557 
4558   SDLoc DL(Op);
4559   SDValue FR = DAG.getFrameIndex(FuncInfo->getVarArgsStackIndex(),
4560                                  getPointerTy(DAG.getDataLayout()));
4561   const Value *SV = cast<SrcValueSDNode>(Op.getOperand(2))->getValue();
4562   return DAG.getStore(Op.getOperand(0), DL, FR, Op.getOperand(1),
4563                       MachinePointerInfo(SV));
4564 }
4565 
4566 SDValue AArch64TargetLowering::LowerWin64_VASTART(SDValue Op,
4567                                                   SelectionDAG &DAG) const {
4568   AArch64FunctionInfo *FuncInfo =
4569       DAG.getMachineFunction().getInfo<AArch64FunctionInfo>();
4570 
4571   SDLoc DL(Op);
4572   SDValue FR = DAG.getFrameIndex(FuncInfo->getVarArgsGPRSize() > 0
4573                                      ? FuncInfo->getVarArgsGPRIndex()
4574                                      : FuncInfo->getVarArgsStackIndex(),
4575                                  getPointerTy(DAG.getDataLayout()));
4576   const Value *SV = cast<SrcValueSDNode>(Op.getOperand(2))->getValue();
4577   return DAG.getStore(Op.getOperand(0), DL, FR, Op.getOperand(1),
4578                       MachinePointerInfo(SV));
4579 }
4580 
4581 SDValue AArch64TargetLowering::LowerAAPCS_VASTART(SDValue Op,
4582                                                 SelectionDAG &DAG) const {
4583   // The layout of the va_list struct is specified in the AArch64 Procedure Call
4584   // Standard, section B.3.
4585   MachineFunction &MF = DAG.getMachineFunction();
4586   AArch64FunctionInfo *FuncInfo = MF.getInfo<AArch64FunctionInfo>();
4587   auto PtrVT = getPointerTy(DAG.getDataLayout());
4588   SDLoc DL(Op);
4589 
4590   SDValue Chain = Op.getOperand(0);
4591   SDValue VAList = Op.getOperand(1);
4592   const Value *SV = cast<SrcValueSDNode>(Op.getOperand(2))->getValue();
4593   SmallVector<SDValue, 4> MemOps;
4594 
4595   // void *__stack at offset 0
4596   SDValue Stack = DAG.getFrameIndex(FuncInfo->getVarArgsStackIndex(), PtrVT);
4597   MemOps.push_back(DAG.getStore(Chain, DL, Stack, VAList,
4598                                 MachinePointerInfo(SV), /* Alignment = */ 8));
4599 
4600   // void *__gr_top at offset 8
4601   int GPRSize = FuncInfo->getVarArgsGPRSize();
4602   if (GPRSize > 0) {
4603     SDValue GRTop, GRTopAddr;
4604 
4605     GRTopAddr =
4606         DAG.getNode(ISD::ADD, DL, PtrVT, VAList, DAG.getConstant(8, DL, PtrVT));
4607 
4608     GRTop = DAG.getFrameIndex(FuncInfo->getVarArgsGPRIndex(), PtrVT);
4609     GRTop = DAG.getNode(ISD::ADD, DL, PtrVT, GRTop,
4610                         DAG.getConstant(GPRSize, DL, PtrVT));
4611 
4612     MemOps.push_back(DAG.getStore(Chain, DL, GRTop, GRTopAddr,
4613                                   MachinePointerInfo(SV, 8),
4614                                   /* Alignment = */ 8));
4615   }
4616 
4617   // void *__vr_top at offset 16
4618   int FPRSize = FuncInfo->getVarArgsFPRSize();
4619   if (FPRSize > 0) {
4620     SDValue VRTop, VRTopAddr;
4621     VRTopAddr = DAG.getNode(ISD::ADD, DL, PtrVT, VAList,
4622                             DAG.getConstant(16, DL, PtrVT));
4623 
4624     VRTop = DAG.getFrameIndex(FuncInfo->getVarArgsFPRIndex(), PtrVT);
4625     VRTop = DAG.getNode(ISD::ADD, DL, PtrVT, VRTop,
4626                         DAG.getConstant(FPRSize, DL, PtrVT));
4627 
4628     MemOps.push_back(DAG.getStore(Chain, DL, VRTop, VRTopAddr,
4629                                   MachinePointerInfo(SV, 16),
4630                                   /* Alignment = */ 8));
4631   }
4632 
4633   // int __gr_offs at offset 24
4634   SDValue GROffsAddr =
4635       DAG.getNode(ISD::ADD, DL, PtrVT, VAList, DAG.getConstant(24, DL, PtrVT));
4636   MemOps.push_back(DAG.getStore(
4637       Chain, DL, DAG.getConstant(-GPRSize, DL, MVT::i32), GROffsAddr,
4638       MachinePointerInfo(SV, 24), /* Alignment = */ 4));
4639 
4640   // int __vr_offs at offset 28
4641   SDValue VROffsAddr =
4642       DAG.getNode(ISD::ADD, DL, PtrVT, VAList, DAG.getConstant(28, DL, PtrVT));
4643   MemOps.push_back(DAG.getStore(
4644       Chain, DL, DAG.getConstant(-FPRSize, DL, MVT::i32), VROffsAddr,
4645       MachinePointerInfo(SV, 28), /* Alignment = */ 4));
4646 
4647   return DAG.getNode(ISD::TokenFactor, DL, MVT::Other, MemOps);
4648 }
4649 
4650 SDValue AArch64TargetLowering::LowerVASTART(SDValue Op,
4651                                             SelectionDAG &DAG) const {
4652   MachineFunction &MF = DAG.getMachineFunction();
4653 
4654   if (Subtarget->isCallingConvWin64(MF.getFunction()->getCallingConv()))
4655     return LowerWin64_VASTART(Op, DAG);
4656   else if (Subtarget->isTargetDarwin())
4657     return LowerDarwin_VASTART(Op, DAG);
4658   else
4659     return LowerAAPCS_VASTART(Op, DAG);
4660 }
4661 
4662 SDValue AArch64TargetLowering::LowerVACOPY(SDValue Op,
4663                                            SelectionDAG &DAG) const {
4664   // AAPCS has three pointers and two ints (= 32 bytes), Darwin has single
4665   // pointer.
4666   SDLoc DL(Op);
4667   unsigned VaListSize =
4668       Subtarget->isTargetDarwin() || Subtarget->isTargetWindows() ? 8 : 32;
4669   const Value *DestSV = cast<SrcValueSDNode>(Op.getOperand(3))->getValue();
4670   const Value *SrcSV = cast<SrcValueSDNode>(Op.getOperand(4))->getValue();
4671 
4672   return DAG.getMemcpy(Op.getOperand(0), DL, Op.getOperand(1),
4673                        Op.getOperand(2),
4674                        DAG.getConstant(VaListSize, DL, MVT::i32),
4675                        8, false, false, false, MachinePointerInfo(DestSV),
4676                        MachinePointerInfo(SrcSV));
4677 }
4678 
4679 SDValue AArch64TargetLowering::LowerVAARG(SDValue Op, SelectionDAG &DAG) const {
4680   assert(Subtarget->isTargetDarwin() &&
4681          "automatic va_arg instruction only works on Darwin");
4682 
4683   const Value *V = cast<SrcValueSDNode>(Op.getOperand(2))->getValue();
4684   EVT VT = Op.getValueType();
4685   SDLoc DL(Op);
4686   SDValue Chain = Op.getOperand(0);
4687   SDValue Addr = Op.getOperand(1);
4688   unsigned Align = Op.getConstantOperandVal(3);
4689   auto PtrVT = getPointerTy(DAG.getDataLayout());
4690 
4691   SDValue VAList = DAG.getLoad(PtrVT, DL, Chain, Addr, MachinePointerInfo(V));
4692   Chain = VAList.getValue(1);
4693 
4694   if (Align > 8) {
4695     assert(((Align & (Align - 1)) == 0) && "Expected Align to be a power of 2");
4696     VAList = DAG.getNode(ISD::ADD, DL, PtrVT, VAList,
4697                          DAG.getConstant(Align - 1, DL, PtrVT));
4698     VAList = DAG.getNode(ISD::AND, DL, PtrVT, VAList,
4699                          DAG.getConstant(-(int64_t)Align, DL, PtrVT));
4700   }
4701 
4702   Type *ArgTy = VT.getTypeForEVT(*DAG.getContext());
4703   uint64_t ArgSize = DAG.getDataLayout().getTypeAllocSize(ArgTy);
4704 
4705   // Scalar integer and FP values smaller than 64 bits are implicitly extended
4706   // up to 64 bits.  At the very least, we have to increase the striding of the
4707   // vaargs list to match this, and for FP values we need to introduce
4708   // FP_ROUND nodes as well.
4709   if (VT.isInteger() && !VT.isVector())
4710     ArgSize = 8;
4711   bool NeedFPTrunc = false;
4712   if (VT.isFloatingPoint() && !VT.isVector() && VT != MVT::f64) {
4713     ArgSize = 8;
4714     NeedFPTrunc = true;
4715   }
4716 
4717   // Increment the pointer, VAList, to the next vaarg
4718   SDValue VANext = DAG.getNode(ISD::ADD, DL, PtrVT, VAList,
4719                                DAG.getConstant(ArgSize, DL, PtrVT));
4720   // Store the incremented VAList to the legalized pointer
4721   SDValue APStore =
4722       DAG.getStore(Chain, DL, VANext, Addr, MachinePointerInfo(V));
4723 
4724   // Load the actual argument out of the pointer VAList
4725   if (NeedFPTrunc) {
4726     // Load the value as an f64.
4727     SDValue WideFP =
4728         DAG.getLoad(MVT::f64, DL, APStore, VAList, MachinePointerInfo());
4729     // Round the value down to an f32.
4730     SDValue NarrowFP = DAG.getNode(ISD::FP_ROUND, DL, VT, WideFP.getValue(0),
4731                                    DAG.getIntPtrConstant(1, DL));
4732     SDValue Ops[] = { NarrowFP, WideFP.getValue(1) };
4733     // Merge the rounded value with the chain output of the load.
4734     return DAG.getMergeValues(Ops, DL);
4735   }
4736 
4737   return DAG.getLoad(VT, DL, APStore, VAList, MachinePointerInfo());
4738 }
4739 
4740 SDValue AArch64TargetLowering::LowerFRAMEADDR(SDValue Op,
4741                                               SelectionDAG &DAG) const {
4742   MachineFrameInfo &MFI = DAG.getMachineFunction().getFrameInfo();
4743   MFI.setFrameAddressIsTaken(true);
4744 
4745   EVT VT = Op.getValueType();
4746   SDLoc DL(Op);
4747   unsigned Depth = cast<ConstantSDNode>(Op.getOperand(0))->getZExtValue();
4748   SDValue FrameAddr =
4749       DAG.getCopyFromReg(DAG.getEntryNode(), DL, AArch64::FP, VT);
4750   while (Depth--)
4751     FrameAddr = DAG.getLoad(VT, DL, DAG.getEntryNode(), FrameAddr,
4752                             MachinePointerInfo());
4753   return FrameAddr;
4754 }
4755 
4756 // FIXME? Maybe this could be a TableGen attribute on some registers and
4757 // this table could be generated automatically from RegInfo.
4758 unsigned AArch64TargetLowering::getRegisterByName(const char* RegName, EVT VT,
4759                                                   SelectionDAG &DAG) const {
4760   unsigned Reg = StringSwitch<unsigned>(RegName)
4761                        .Case("sp", AArch64::SP)
4762                        .Case("x18", AArch64::X18)
4763                        .Case("w18", AArch64::W18)
4764                        .Default(0);
4765   if ((Reg == AArch64::X18 || Reg == AArch64::W18) &&
4766       !Subtarget->isX18Reserved())
4767     Reg = 0;
4768   if (Reg)
4769     return Reg;
4770   report_fatal_error(Twine("Invalid register name \""
4771                               + StringRef(RegName)  + "\"."));
4772 }
4773 
4774 SDValue AArch64TargetLowering::LowerRETURNADDR(SDValue Op,
4775                                                SelectionDAG &DAG) const {
4776   MachineFunction &MF = DAG.getMachineFunction();
4777   MachineFrameInfo &MFI = MF.getFrameInfo();
4778   MFI.setReturnAddressIsTaken(true);
4779 
4780   EVT VT = Op.getValueType();
4781   SDLoc DL(Op);
4782   unsigned Depth = cast<ConstantSDNode>(Op.getOperand(0))->getZExtValue();
4783   if (Depth) {
4784     SDValue FrameAddr = LowerFRAMEADDR(Op, DAG);
4785     SDValue Offset = DAG.getConstant(8, DL, getPointerTy(DAG.getDataLayout()));
4786     return DAG.getLoad(VT, DL, DAG.getEntryNode(),
4787                        DAG.getNode(ISD::ADD, DL, VT, FrameAddr, Offset),
4788                        MachinePointerInfo());
4789   }
4790 
4791   // Return LR, which contains the return address. Mark it an implicit live-in.
4792   unsigned Reg = MF.addLiveIn(AArch64::LR, &AArch64::GPR64RegClass);
4793   return DAG.getCopyFromReg(DAG.getEntryNode(), DL, Reg, VT);
4794 }
4795 
4796 /// LowerShiftRightParts - Lower SRA_PARTS, which returns two
4797 /// i64 values and take a 2 x i64 value to shift plus a shift amount.
4798 SDValue AArch64TargetLowering::LowerShiftRightParts(SDValue Op,
4799                                                     SelectionDAG &DAG) const {
4800   assert(Op.getNumOperands() == 3 && "Not a double-shift!");
4801   EVT VT = Op.getValueType();
4802   unsigned VTBits = VT.getSizeInBits();
4803   SDLoc dl(Op);
4804   SDValue ShOpLo = Op.getOperand(0);
4805   SDValue ShOpHi = Op.getOperand(1);
4806   SDValue ShAmt = Op.getOperand(2);
4807   unsigned Opc = (Op.getOpcode() == ISD::SRA_PARTS) ? ISD::SRA : ISD::SRL;
4808 
4809   assert(Op.getOpcode() == ISD::SRA_PARTS || Op.getOpcode() == ISD::SRL_PARTS);
4810 
4811   SDValue RevShAmt = DAG.getNode(ISD::SUB, dl, MVT::i64,
4812                                  DAG.getConstant(VTBits, dl, MVT::i64), ShAmt);
4813   SDValue HiBitsForLo = DAG.getNode(ISD::SHL, dl, VT, ShOpHi, RevShAmt);
4814 
4815   // Unfortunately, if ShAmt == 0, we just calculated "(SHL ShOpHi, 64)" which
4816   // is "undef". We wanted 0, so CSEL it directly.
4817   SDValue Cmp = emitComparison(ShAmt, DAG.getConstant(0, dl, MVT::i64),
4818                                ISD::SETEQ, dl, DAG);
4819   SDValue CCVal = DAG.getConstant(AArch64CC::EQ, dl, MVT::i32);
4820   HiBitsForLo =
4821       DAG.getNode(AArch64ISD::CSEL, dl, VT, DAG.getConstant(0, dl, MVT::i64),
4822                   HiBitsForLo, CCVal, Cmp);
4823 
4824   SDValue ExtraShAmt = DAG.getNode(ISD::SUB, dl, MVT::i64, ShAmt,
4825                                    DAG.getConstant(VTBits, dl, MVT::i64));
4826 
4827   SDValue LoBitsForLo = DAG.getNode(ISD::SRL, dl, VT, ShOpLo, ShAmt);
4828   SDValue LoForNormalShift =
4829       DAG.getNode(ISD::OR, dl, VT, LoBitsForLo, HiBitsForLo);
4830 
4831   Cmp = emitComparison(ExtraShAmt, DAG.getConstant(0, dl, MVT::i64), ISD::SETGE,
4832                        dl, DAG);
4833   CCVal = DAG.getConstant(AArch64CC::GE, dl, MVT::i32);
4834   SDValue LoForBigShift = DAG.getNode(Opc, dl, VT, ShOpHi, ExtraShAmt);
4835   SDValue Lo = DAG.getNode(AArch64ISD::CSEL, dl, VT, LoForBigShift,
4836                            LoForNormalShift, CCVal, Cmp);
4837 
4838   // AArch64 shifts larger than the register width are wrapped rather than
4839   // clamped, so we can't just emit "hi >> x".
4840   SDValue HiForNormalShift = DAG.getNode(Opc, dl, VT, ShOpHi, ShAmt);
4841   SDValue HiForBigShift =
4842       Opc == ISD::SRA
4843           ? DAG.getNode(Opc, dl, VT, ShOpHi,
4844                         DAG.getConstant(VTBits - 1, dl, MVT::i64))
4845           : DAG.getConstant(0, dl, VT);
4846   SDValue Hi = DAG.getNode(AArch64ISD::CSEL, dl, VT, HiForBigShift,
4847                            HiForNormalShift, CCVal, Cmp);
4848 
4849   SDValue Ops[2] = { Lo, Hi };
4850   return DAG.getMergeValues(Ops, dl);
4851 }
4852 
4853 /// LowerShiftLeftParts - Lower SHL_PARTS, which returns two
4854 /// i64 values and take a 2 x i64 value to shift plus a shift amount.
4855 SDValue AArch64TargetLowering::LowerShiftLeftParts(SDValue Op,
4856                                                    SelectionDAG &DAG) const {
4857   assert(Op.getNumOperands() == 3 && "Not a double-shift!");
4858   EVT VT = Op.getValueType();
4859   unsigned VTBits = VT.getSizeInBits();
4860   SDLoc dl(Op);
4861   SDValue ShOpLo = Op.getOperand(0);
4862   SDValue ShOpHi = Op.getOperand(1);
4863   SDValue ShAmt = Op.getOperand(2);
4864 
4865   assert(Op.getOpcode() == ISD::SHL_PARTS);
4866   SDValue RevShAmt = DAG.getNode(ISD::SUB, dl, MVT::i64,
4867                                  DAG.getConstant(VTBits, dl, MVT::i64), ShAmt);
4868   SDValue LoBitsForHi = DAG.getNode(ISD::SRL, dl, VT, ShOpLo, RevShAmt);
4869 
4870   // Unfortunately, if ShAmt == 0, we just calculated "(SRL ShOpLo, 64)" which
4871   // is "undef". We wanted 0, so CSEL it directly.
4872   SDValue Cmp = emitComparison(ShAmt, DAG.getConstant(0, dl, MVT::i64),
4873                                ISD::SETEQ, dl, DAG);
4874   SDValue CCVal = DAG.getConstant(AArch64CC::EQ, dl, MVT::i32);
4875   LoBitsForHi =
4876       DAG.getNode(AArch64ISD::CSEL, dl, VT, DAG.getConstant(0, dl, MVT::i64),
4877                   LoBitsForHi, CCVal, Cmp);
4878 
4879   SDValue ExtraShAmt = DAG.getNode(ISD::SUB, dl, MVT::i64, ShAmt,
4880                                    DAG.getConstant(VTBits, dl, MVT::i64));
4881   SDValue HiBitsForHi = DAG.getNode(ISD::SHL, dl, VT, ShOpHi, ShAmt);
4882   SDValue HiForNormalShift =
4883       DAG.getNode(ISD::OR, dl, VT, LoBitsForHi, HiBitsForHi);
4884 
4885   SDValue HiForBigShift = DAG.getNode(ISD::SHL, dl, VT, ShOpLo, ExtraShAmt);
4886 
4887   Cmp = emitComparison(ExtraShAmt, DAG.getConstant(0, dl, MVT::i64), ISD::SETGE,
4888                        dl, DAG);
4889   CCVal = DAG.getConstant(AArch64CC::GE, dl, MVT::i32);
4890   SDValue Hi = DAG.getNode(AArch64ISD::CSEL, dl, VT, HiForBigShift,
4891                            HiForNormalShift, CCVal, Cmp);
4892 
4893   // AArch64 shifts of larger than register sizes are wrapped rather than
4894   // clamped, so we can't just emit "lo << a" if a is too big.
4895   SDValue LoForBigShift = DAG.getConstant(0, dl, VT);
4896   SDValue LoForNormalShift = DAG.getNode(ISD::SHL, dl, VT, ShOpLo, ShAmt);
4897   SDValue Lo = DAG.getNode(AArch64ISD::CSEL, dl, VT, LoForBigShift,
4898                            LoForNormalShift, CCVal, Cmp);
4899 
4900   SDValue Ops[2] = { Lo, Hi };
4901   return DAG.getMergeValues(Ops, dl);
4902 }
4903 
4904 bool AArch64TargetLowering::isOffsetFoldingLegal(
4905     const GlobalAddressSDNode *GA) const {
4906   DEBUG(dbgs() << "Skipping offset folding global address: ");
4907   DEBUG(GA->dump());
4908   DEBUG(dbgs() << "AArch64 doesn't support folding offsets into global "
4909         "addresses\n");
4910   return false;
4911 }
4912 
4913 bool AArch64TargetLowering::isFPImmLegal(const APFloat &Imm, EVT VT) const {
4914   // We can materialize #0.0 as fmov $Rd, XZR for 64-bit and 32-bit cases.
4915   // FIXME: We should be able to handle f128 as well with a clever lowering.
4916   if (Imm.isPosZero() && (VT == MVT::f16 || VT == MVT::f64 || VT == MVT::f32)) {
4917     DEBUG(dbgs() << "Legal fp imm: materialize 0 using the zero register\n");
4918     return true;
4919   }
4920 
4921   StringRef FPType;
4922   bool IsLegal = false;
4923   SmallString<128> ImmStrVal;
4924   Imm.toString(ImmStrVal);
4925 
4926   if (VT == MVT::f64) {
4927     FPType = "f64";
4928     IsLegal = AArch64_AM::getFP64Imm(Imm) != -1;
4929   } else if (VT == MVT::f32) {
4930     FPType = "f32";
4931     IsLegal = AArch64_AM::getFP32Imm(Imm) != -1;
4932   } else if (VT == MVT::f16 && Subtarget->hasFullFP16()) {
4933     FPType = "f16";
4934     IsLegal = AArch64_AM::getFP16Imm(Imm) != -1;
4935   }
4936 
4937   if (IsLegal) {
4938     DEBUG(dbgs() << "Legal " << FPType << " imm value: " << ImmStrVal << "\n");
4939     return true;
4940   }
4941 
4942   if (!FPType.empty())
4943     DEBUG(dbgs() << "Illegal " << FPType << " imm value: " << ImmStrVal << "\n");
4944   else
4945     DEBUG(dbgs() << "Illegal fp imm " << ImmStrVal << ": unsupported fp type\n");
4946 
4947   return false;
4948 }
4949 
4950 //===----------------------------------------------------------------------===//
4951 //                          AArch64 Optimization Hooks
4952 //===----------------------------------------------------------------------===//
4953 
4954 static SDValue getEstimate(const AArch64Subtarget *ST, unsigned Opcode,
4955                            SDValue Operand, SelectionDAG &DAG,
4956                            int &ExtraSteps) {
4957   EVT VT = Operand.getValueType();
4958   if (ST->hasNEON() &&
4959       (VT == MVT::f64 || VT == MVT::v1f64 || VT == MVT::v2f64 ||
4960        VT == MVT::f32 || VT == MVT::v1f32 ||
4961        VT == MVT::v2f32 || VT == MVT::v4f32)) {
4962     if (ExtraSteps == TargetLoweringBase::ReciprocalEstimate::Unspecified)
4963       // For the reciprocal estimates, convergence is quadratic, so the number
4964       // of digits is doubled after each iteration.  In ARMv8, the accuracy of
4965       // the initial estimate is 2^-8.  Thus the number of extra steps to refine
4966       // the result for float (23 mantissa bits) is 2 and for double (52
4967       // mantissa bits) is 3.
4968       ExtraSteps = VT == MVT::f64 ? 3 : 2;
4969 
4970     return DAG.getNode(Opcode, SDLoc(Operand), VT, Operand);
4971   }
4972 
4973   return SDValue();
4974 }
4975 
4976 SDValue AArch64TargetLowering::getSqrtEstimate(SDValue Operand,
4977                                                SelectionDAG &DAG, int Enabled,
4978                                                int &ExtraSteps,
4979                                                bool &UseOneConst,
4980                                                bool Reciprocal) const {
4981   if (Enabled == ReciprocalEstimate::Enabled ||
4982       (Enabled == ReciprocalEstimate::Unspecified && Subtarget->useRSqrt()))
4983     if (SDValue Estimate = getEstimate(Subtarget, AArch64ISD::FRSQRTE, Operand,
4984                                        DAG, ExtraSteps)) {
4985       SDLoc DL(Operand);
4986       EVT VT = Operand.getValueType();
4987 
4988       SDNodeFlags Flags;
4989       Flags.setUnsafeAlgebra(true);
4990 
4991       // Newton reciprocal square root iteration: E * 0.5 * (3 - X * E^2)
4992       // AArch64 reciprocal square root iteration instruction: 0.5 * (3 - M * N)
4993       for (int i = ExtraSteps; i > 0; --i) {
4994         SDValue Step = DAG.getNode(ISD::FMUL, DL, VT, Estimate, Estimate,
4995                                    Flags);
4996         Step = DAG.getNode(AArch64ISD::FRSQRTS, DL, VT, Operand, Step, Flags);
4997         Estimate = DAG.getNode(ISD::FMUL, DL, VT, Estimate, Step, Flags);
4998       }
4999 
5000       if (!Reciprocal) {
5001         EVT CCVT = getSetCCResultType(DAG.getDataLayout(), *DAG.getContext(),
5002                                       VT);
5003         SDValue FPZero = DAG.getConstantFP(0.0, DL, VT);
5004         SDValue Eq = DAG.getSetCC(DL, CCVT, Operand, FPZero, ISD::SETEQ);
5005 
5006         Estimate = DAG.getNode(ISD::FMUL, DL, VT, Operand, Estimate, Flags);
5007         // Correct the result if the operand is 0.0.
5008         Estimate = DAG.getNode(VT.isVector() ? ISD::VSELECT : ISD::SELECT, DL,
5009                                VT, Eq, Operand, Estimate);
5010       }
5011 
5012       ExtraSteps = 0;
5013       return Estimate;
5014     }
5015 
5016   return SDValue();
5017 }
5018 
5019 SDValue AArch64TargetLowering::getRecipEstimate(SDValue Operand,
5020                                                 SelectionDAG &DAG, int Enabled,
5021                                                 int &ExtraSteps) const {
5022   if (Enabled == ReciprocalEstimate::Enabled)
5023     if (SDValue Estimate = getEstimate(Subtarget, AArch64ISD::FRECPE, Operand,
5024                                        DAG, ExtraSteps)) {
5025       SDLoc DL(Operand);
5026       EVT VT = Operand.getValueType();
5027 
5028       SDNodeFlags Flags;
5029       Flags.setUnsafeAlgebra(true);
5030 
5031       // Newton reciprocal iteration: E * (2 - X * E)
5032       // AArch64 reciprocal iteration instruction: (2 - M * N)
5033       for (int i = ExtraSteps; i > 0; --i) {
5034         SDValue Step = DAG.getNode(AArch64ISD::FRECPS, DL, VT, Operand,
5035                                    Estimate, Flags);
5036         Estimate = DAG.getNode(ISD::FMUL, DL, VT, Estimate, Step, Flags);
5037       }
5038 
5039       ExtraSteps = 0;
5040       return Estimate;
5041     }
5042 
5043   return SDValue();
5044 }
5045 
5046 //===----------------------------------------------------------------------===//
5047 //                          AArch64 Inline Assembly Support
5048 //===----------------------------------------------------------------------===//
5049 
5050 // Table of Constraints
5051 // TODO: This is the current set of constraints supported by ARM for the
5052 // compiler, not all of them may make sense, e.g. S may be difficult to support.
5053 //
5054 // r - A general register
5055 // w - An FP/SIMD register of some size in the range v0-v31
5056 // x - An FP/SIMD register of some size in the range v0-v15
5057 // I - Constant that can be used with an ADD instruction
5058 // J - Constant that can be used with a SUB instruction
5059 // K - Constant that can be used with a 32-bit logical instruction
5060 // L - Constant that can be used with a 64-bit logical instruction
5061 // M - Constant that can be used as a 32-bit MOV immediate
5062 // N - Constant that can be used as a 64-bit MOV immediate
5063 // Q - A memory reference with base register and no offset
5064 // S - A symbolic address
5065 // Y - Floating point constant zero
5066 // Z - Integer constant zero
5067 //
5068 //   Note that general register operands will be output using their 64-bit x
5069 // register name, whatever the size of the variable, unless the asm operand
5070 // is prefixed by the %w modifier. Floating-point and SIMD register operands
5071 // will be output with the v prefix unless prefixed by the %b, %h, %s, %d or
5072 // %q modifier.
5073 const char *AArch64TargetLowering::LowerXConstraint(EVT ConstraintVT) const {
5074   // At this point, we have to lower this constraint to something else, so we
5075   // lower it to an "r" or "w". However, by doing this we will force the result
5076   // to be in register, while the X constraint is much more permissive.
5077   //
5078   // Although we are correct (we are free to emit anything, without
5079   // constraints), we might break use cases that would expect us to be more
5080   // efficient and emit something else.
5081   if (!Subtarget->hasFPARMv8())
5082     return "r";
5083 
5084   if (ConstraintVT.isFloatingPoint())
5085     return "w";
5086 
5087   if (ConstraintVT.isVector() &&
5088      (ConstraintVT.getSizeInBits() == 64 ||
5089       ConstraintVT.getSizeInBits() == 128))
5090     return "w";
5091 
5092   return "r";
5093 }
5094 
5095 /// getConstraintType - Given a constraint letter, return the type of
5096 /// constraint it is for this target.
5097 AArch64TargetLowering::ConstraintType
5098 AArch64TargetLowering::getConstraintType(StringRef Constraint) const {
5099   if (Constraint.size() == 1) {
5100     switch (Constraint[0]) {
5101     default:
5102       break;
5103     case 'z':
5104       return C_Other;
5105     case 'x':
5106     case 'w':
5107       return C_RegisterClass;
5108     // An address with a single base register. Due to the way we
5109     // currently handle addresses it is the same as 'r'.
5110     case 'Q':
5111       return C_Memory;
5112     }
5113   }
5114   return TargetLowering::getConstraintType(Constraint);
5115 }
5116 
5117 /// Examine constraint type and operand type and determine a weight value.
5118 /// This object must already have been set up with the operand type
5119 /// and the current alternative constraint selected.
5120 TargetLowering::ConstraintWeight
5121 AArch64TargetLowering::getSingleConstraintMatchWeight(
5122     AsmOperandInfo &info, const char *constraint) const {
5123   ConstraintWeight weight = CW_Invalid;
5124   Value *CallOperandVal = info.CallOperandVal;
5125   // If we don't have a value, we can't do a match,
5126   // but allow it at the lowest weight.
5127   if (!CallOperandVal)
5128     return CW_Default;
5129   Type *type = CallOperandVal->getType();
5130   // Look at the constraint type.
5131   switch (*constraint) {
5132   default:
5133     weight = TargetLowering::getSingleConstraintMatchWeight(info, constraint);
5134     break;
5135   case 'x':
5136   case 'w':
5137     if (type->isFloatingPointTy() || type->isVectorTy())
5138       weight = CW_Register;
5139     break;
5140   case 'z':
5141     weight = CW_Constant;
5142     break;
5143   }
5144   return weight;
5145 }
5146 
5147 std::pair<unsigned, const TargetRegisterClass *>
5148 AArch64TargetLowering::getRegForInlineAsmConstraint(
5149     const TargetRegisterInfo *TRI, StringRef Constraint, MVT VT) const {
5150   if (Constraint.size() == 1) {
5151     switch (Constraint[0]) {
5152     case 'r':
5153       if (VT.getSizeInBits() == 64)
5154         return std::make_pair(0U, &AArch64::GPR64commonRegClass);
5155       return std::make_pair(0U, &AArch64::GPR32commonRegClass);
5156     case 'w':
5157       if (VT.getSizeInBits() == 16)
5158         return std::make_pair(0U, &AArch64::FPR16RegClass);
5159       if (VT.getSizeInBits() == 32)
5160         return std::make_pair(0U, &AArch64::FPR32RegClass);
5161       if (VT.getSizeInBits() == 64)
5162         return std::make_pair(0U, &AArch64::FPR64RegClass);
5163       if (VT.getSizeInBits() == 128)
5164         return std::make_pair(0U, &AArch64::FPR128RegClass);
5165       break;
5166     // The instructions that this constraint is designed for can
5167     // only take 128-bit registers so just use that regclass.
5168     case 'x':
5169       if (VT.getSizeInBits() == 128)
5170         return std::make_pair(0U, &AArch64::FPR128_loRegClass);
5171       break;
5172     }
5173   }
5174   if (StringRef("{cc}").equals_lower(Constraint))
5175     return std::make_pair(unsigned(AArch64::NZCV), &AArch64::CCRRegClass);
5176 
5177   // Use the default implementation in TargetLowering to convert the register
5178   // constraint into a member of a register class.
5179   std::pair<unsigned, const TargetRegisterClass *> Res;
5180   Res = TargetLowering::getRegForInlineAsmConstraint(TRI, Constraint, VT);
5181 
5182   // Not found as a standard register?
5183   if (!Res.second) {
5184     unsigned Size = Constraint.size();
5185     if ((Size == 4 || Size == 5) && Constraint[0] == '{' &&
5186         tolower(Constraint[1]) == 'v' && Constraint[Size - 1] == '}') {
5187       int RegNo;
5188       bool Failed = Constraint.slice(2, Size - 1).getAsInteger(10, RegNo);
5189       if (!Failed && RegNo >= 0 && RegNo <= 31) {
5190         // v0 - v31 are aliases of q0 - q31 or d0 - d31 depending on size.
5191         // By default we'll emit v0-v31 for this unless there's a modifier where
5192         // we'll emit the correct register as well.
5193         if (VT != MVT::Other && VT.getSizeInBits() == 64) {
5194           Res.first = AArch64::FPR64RegClass.getRegister(RegNo);
5195           Res.second = &AArch64::FPR64RegClass;
5196         } else {
5197           Res.first = AArch64::FPR128RegClass.getRegister(RegNo);
5198           Res.second = &AArch64::FPR128RegClass;
5199         }
5200       }
5201     }
5202   }
5203 
5204   return Res;
5205 }
5206 
5207 /// LowerAsmOperandForConstraint - Lower the specified operand into the Ops
5208 /// vector.  If it is invalid, don't add anything to Ops.
5209 void AArch64TargetLowering::LowerAsmOperandForConstraint(
5210     SDValue Op, std::string &Constraint, std::vector<SDValue> &Ops,
5211     SelectionDAG &DAG) const {
5212   SDValue Result;
5213 
5214   // Currently only support length 1 constraints.
5215   if (Constraint.length() != 1)
5216     return;
5217 
5218   char ConstraintLetter = Constraint[0];
5219   switch (ConstraintLetter) {
5220   default:
5221     break;
5222 
5223   // This set of constraints deal with valid constants for various instructions.
5224   // Validate and return a target constant for them if we can.
5225   case 'z': {
5226     // 'z' maps to xzr or wzr so it needs an input of 0.
5227     if (!isNullConstant(Op))
5228       return;
5229 
5230     if (Op.getValueType() == MVT::i64)
5231       Result = DAG.getRegister(AArch64::XZR, MVT::i64);
5232     else
5233       Result = DAG.getRegister(AArch64::WZR, MVT::i32);
5234     break;
5235   }
5236 
5237   case 'I':
5238   case 'J':
5239   case 'K':
5240   case 'L':
5241   case 'M':
5242   case 'N':
5243     ConstantSDNode *C = dyn_cast<ConstantSDNode>(Op);
5244     if (!C)
5245       return;
5246 
5247     // Grab the value and do some validation.
5248     uint64_t CVal = C->getZExtValue();
5249     switch (ConstraintLetter) {
5250     // The I constraint applies only to simple ADD or SUB immediate operands:
5251     // i.e. 0 to 4095 with optional shift by 12
5252     // The J constraint applies only to ADD or SUB immediates that would be
5253     // valid when negated, i.e. if [an add pattern] were to be output as a SUB
5254     // instruction [or vice versa], in other words -1 to -4095 with optional
5255     // left shift by 12.
5256     case 'I':
5257       if (isUInt<12>(CVal) || isShiftedUInt<12, 12>(CVal))
5258         break;
5259       return;
5260     case 'J': {
5261       uint64_t NVal = -C->getSExtValue();
5262       if (isUInt<12>(NVal) || isShiftedUInt<12, 12>(NVal)) {
5263         CVal = C->getSExtValue();
5264         break;
5265       }
5266       return;
5267     }
5268     // The K and L constraints apply *only* to logical immediates, including
5269     // what used to be the MOVI alias for ORR (though the MOVI alias has now
5270     // been removed and MOV should be used). So these constraints have to
5271     // distinguish between bit patterns that are valid 32-bit or 64-bit
5272     // "bitmask immediates": for example 0xaaaaaaaa is a valid bimm32 (K), but
5273     // not a valid bimm64 (L) where 0xaaaaaaaaaaaaaaaa would be valid, and vice
5274     // versa.
5275     case 'K':
5276       if (AArch64_AM::isLogicalImmediate(CVal, 32))
5277         break;
5278       return;
5279     case 'L':
5280       if (AArch64_AM::isLogicalImmediate(CVal, 64))
5281         break;
5282       return;
5283     // The M and N constraints are a superset of K and L respectively, for use
5284     // with the MOV (immediate) alias. As well as the logical immediates they
5285     // also match 32 or 64-bit immediates that can be loaded either using a
5286     // *single* MOVZ or MOVN , such as 32-bit 0x12340000, 0x00001234, 0xffffedca
5287     // (M) or 64-bit 0x1234000000000000 (N) etc.
5288     // As a note some of this code is liberally stolen from the asm parser.
5289     case 'M': {
5290       if (!isUInt<32>(CVal))
5291         return;
5292       if (AArch64_AM::isLogicalImmediate(CVal, 32))
5293         break;
5294       if ((CVal & 0xFFFF) == CVal)
5295         break;
5296       if ((CVal & 0xFFFF0000ULL) == CVal)
5297         break;
5298       uint64_t NCVal = ~(uint32_t)CVal;
5299       if ((NCVal & 0xFFFFULL) == NCVal)
5300         break;
5301       if ((NCVal & 0xFFFF0000ULL) == NCVal)
5302         break;
5303       return;
5304     }
5305     case 'N': {
5306       if (AArch64_AM::isLogicalImmediate(CVal, 64))
5307         break;
5308       if ((CVal & 0xFFFFULL) == CVal)
5309         break;
5310       if ((CVal & 0xFFFF0000ULL) == CVal)
5311         break;
5312       if ((CVal & 0xFFFF00000000ULL) == CVal)
5313         break;
5314       if ((CVal & 0xFFFF000000000000ULL) == CVal)
5315         break;
5316       uint64_t NCVal = ~CVal;
5317       if ((NCVal & 0xFFFFULL) == NCVal)
5318         break;
5319       if ((NCVal & 0xFFFF0000ULL) == NCVal)
5320         break;
5321       if ((NCVal & 0xFFFF00000000ULL) == NCVal)
5322         break;
5323       if ((NCVal & 0xFFFF000000000000ULL) == NCVal)
5324         break;
5325       return;
5326     }
5327     default:
5328       return;
5329     }
5330 
5331     // All assembler immediates are 64-bit integers.
5332     Result = DAG.getTargetConstant(CVal, SDLoc(Op), MVT::i64);
5333     break;
5334   }
5335 
5336   if (Result.getNode()) {
5337     Ops.push_back(Result);
5338     return;
5339   }
5340 
5341   return TargetLowering::LowerAsmOperandForConstraint(Op, Constraint, Ops, DAG);
5342 }
5343 
5344 //===----------------------------------------------------------------------===//
5345 //                     AArch64 Advanced SIMD Support
5346 //===----------------------------------------------------------------------===//
5347 
5348 /// WidenVector - Given a value in the V64 register class, produce the
5349 /// equivalent value in the V128 register class.
5350 static SDValue WidenVector(SDValue V64Reg, SelectionDAG &DAG) {
5351   EVT VT = V64Reg.getValueType();
5352   unsigned NarrowSize = VT.getVectorNumElements();
5353   MVT EltTy = VT.getVectorElementType().getSimpleVT();
5354   MVT WideTy = MVT::getVectorVT(EltTy, 2 * NarrowSize);
5355   SDLoc DL(V64Reg);
5356 
5357   return DAG.getNode(ISD::INSERT_SUBVECTOR, DL, WideTy, DAG.getUNDEF(WideTy),
5358                      V64Reg, DAG.getConstant(0, DL, MVT::i32));
5359 }
5360 
5361 /// getExtFactor - Determine the adjustment factor for the position when
5362 /// generating an "extract from vector registers" instruction.
5363 static unsigned getExtFactor(SDValue &V) {
5364   EVT EltType = V.getValueType().getVectorElementType();
5365   return EltType.getSizeInBits() / 8;
5366 }
5367 
5368 /// NarrowVector - Given a value in the V128 register class, produce the
5369 /// equivalent value in the V64 register class.
5370 static SDValue NarrowVector(SDValue V128Reg, SelectionDAG &DAG) {
5371   EVT VT = V128Reg.getValueType();
5372   unsigned WideSize = VT.getVectorNumElements();
5373   MVT EltTy = VT.getVectorElementType().getSimpleVT();
5374   MVT NarrowTy = MVT::getVectorVT(EltTy, WideSize / 2);
5375   SDLoc DL(V128Reg);
5376 
5377   return DAG.getTargetExtractSubreg(AArch64::dsub, DL, NarrowTy, V128Reg);
5378 }
5379 
5380 // Gather data to see if the operation can be modelled as a
5381 // shuffle in combination with VEXTs.
5382 SDValue AArch64TargetLowering::ReconstructShuffle(SDValue Op,
5383                                                   SelectionDAG &DAG) const {
5384   assert(Op.getOpcode() == ISD::BUILD_VECTOR && "Unknown opcode!");
5385   DEBUG(dbgs() << "AArch64TargetLowering::ReconstructShuffle\n");
5386   SDLoc dl(Op);
5387   EVT VT = Op.getValueType();
5388   unsigned NumElts = VT.getVectorNumElements();
5389 
5390   struct ShuffleSourceInfo {
5391     SDValue Vec;
5392     unsigned MinElt;
5393     unsigned MaxElt;
5394 
5395     // We may insert some combination of BITCASTs and VEXT nodes to force Vec to
5396     // be compatible with the shuffle we intend to construct. As a result
5397     // ShuffleVec will be some sliding window into the original Vec.
5398     SDValue ShuffleVec;
5399 
5400     // Code should guarantee that element i in Vec starts at element "WindowBase
5401     // + i * WindowScale in ShuffleVec".
5402     int WindowBase;
5403     int WindowScale;
5404 
5405     ShuffleSourceInfo(SDValue Vec)
5406       : Vec(Vec), MinElt(std::numeric_limits<unsigned>::max()), MaxElt(0),
5407           ShuffleVec(Vec), WindowBase(0), WindowScale(1) {}
5408 
5409     bool operator ==(SDValue OtherVec) { return Vec == OtherVec; }
5410   };
5411 
5412   // First gather all vectors used as an immediate source for this BUILD_VECTOR
5413   // node.
5414   SmallVector<ShuffleSourceInfo, 2> Sources;
5415   for (unsigned i = 0; i < NumElts; ++i) {
5416     SDValue V = Op.getOperand(i);
5417     if (V.isUndef())
5418       continue;
5419     else if (V.getOpcode() != ISD::EXTRACT_VECTOR_ELT ||
5420              !isa<ConstantSDNode>(V.getOperand(1))) {
5421       DEBUG(dbgs() << "Reshuffle failed: "
5422                       "a shuffle can only come from building a vector from "
5423                       "various elements of other vectors, provided their "
5424                       "indices are constant\n");
5425       return SDValue();
5426     }
5427 
5428     // Add this element source to the list if it's not already there.
5429     SDValue SourceVec = V.getOperand(0);
5430     auto Source = find(Sources, SourceVec);
5431     if (Source == Sources.end())
5432       Source = Sources.insert(Sources.end(), ShuffleSourceInfo(SourceVec));
5433 
5434     // Update the minimum and maximum lane number seen.
5435     unsigned EltNo = cast<ConstantSDNode>(V.getOperand(1))->getZExtValue();
5436     Source->MinElt = std::min(Source->MinElt, EltNo);
5437     Source->MaxElt = std::max(Source->MaxElt, EltNo);
5438   }
5439 
5440   if (Sources.size() > 2) {
5441     DEBUG(dbgs() << "Reshuffle failed: currently only do something sane when at "
5442                     "most two source vectors are involved\n");
5443     return SDValue();
5444   }
5445 
5446   // Find out the smallest element size among result and two sources, and use
5447   // it as element size to build the shuffle_vector.
5448   EVT SmallestEltTy = VT.getVectorElementType();
5449   for (auto &Source : Sources) {
5450     EVT SrcEltTy = Source.Vec.getValueType().getVectorElementType();
5451     if (SrcEltTy.bitsLT(SmallestEltTy)) {
5452       SmallestEltTy = SrcEltTy;
5453     }
5454   }
5455   unsigned ResMultiplier =
5456       VT.getScalarSizeInBits() / SmallestEltTy.getSizeInBits();
5457   NumElts = VT.getSizeInBits() / SmallestEltTy.getSizeInBits();
5458   EVT ShuffleVT = EVT::getVectorVT(*DAG.getContext(), SmallestEltTy, NumElts);
5459 
5460   // If the source vector is too wide or too narrow, we may nevertheless be able
5461   // to construct a compatible shuffle either by concatenating it with UNDEF or
5462   // extracting a suitable range of elements.
5463   for (auto &Src : Sources) {
5464     EVT SrcVT = Src.ShuffleVec.getValueType();
5465 
5466     if (SrcVT.getSizeInBits() == VT.getSizeInBits())
5467       continue;
5468 
5469     // This stage of the search produces a source with the same element type as
5470     // the original, but with a total width matching the BUILD_VECTOR output.
5471     EVT EltVT = SrcVT.getVectorElementType();
5472     unsigned NumSrcElts = VT.getSizeInBits() / EltVT.getSizeInBits();
5473     EVT DestVT = EVT::getVectorVT(*DAG.getContext(), EltVT, NumSrcElts);
5474 
5475     if (SrcVT.getSizeInBits() < VT.getSizeInBits()) {
5476       assert(2 * SrcVT.getSizeInBits() == VT.getSizeInBits());
5477       // We can pad out the smaller vector for free, so if it's part of a
5478       // shuffle...
5479       Src.ShuffleVec =
5480           DAG.getNode(ISD::CONCAT_VECTORS, dl, DestVT, Src.ShuffleVec,
5481                       DAG.getUNDEF(Src.ShuffleVec.getValueType()));
5482       continue;
5483     }
5484 
5485     assert(SrcVT.getSizeInBits() == 2 * VT.getSizeInBits());
5486 
5487     if (Src.MaxElt - Src.MinElt >= NumSrcElts) {
5488       DEBUG(dbgs() << "Reshuffle failed: span too large for a VEXT to cope\n");
5489       return SDValue();
5490     }
5491 
5492     if (Src.MinElt >= NumSrcElts) {
5493       // The extraction can just take the second half
5494       Src.ShuffleVec =
5495           DAG.getNode(ISD::EXTRACT_SUBVECTOR, dl, DestVT, Src.ShuffleVec,
5496                       DAG.getConstant(NumSrcElts, dl, MVT::i64));
5497       Src.WindowBase = -NumSrcElts;
5498     } else if (Src.MaxElt < NumSrcElts) {
5499       // The extraction can just take the first half
5500       Src.ShuffleVec =
5501           DAG.getNode(ISD::EXTRACT_SUBVECTOR, dl, DestVT, Src.ShuffleVec,
5502                       DAG.getConstant(0, dl, MVT::i64));
5503     } else {
5504       // An actual VEXT is needed
5505       SDValue VEXTSrc1 =
5506           DAG.getNode(ISD::EXTRACT_SUBVECTOR, dl, DestVT, Src.ShuffleVec,
5507                       DAG.getConstant(0, dl, MVT::i64));
5508       SDValue VEXTSrc2 =
5509           DAG.getNode(ISD::EXTRACT_SUBVECTOR, dl, DestVT, Src.ShuffleVec,
5510                       DAG.getConstant(NumSrcElts, dl, MVT::i64));
5511       unsigned Imm = Src.MinElt * getExtFactor(VEXTSrc1);
5512 
5513       Src.ShuffleVec = DAG.getNode(AArch64ISD::EXT, dl, DestVT, VEXTSrc1,
5514                                    VEXTSrc2,
5515                                    DAG.getConstant(Imm, dl, MVT::i32));
5516       Src.WindowBase = -Src.MinElt;
5517     }
5518   }
5519 
5520   // Another possible incompatibility occurs from the vector element types. We
5521   // can fix this by bitcasting the source vectors to the same type we intend
5522   // for the shuffle.
5523   for (auto &Src : Sources) {
5524     EVT SrcEltTy = Src.ShuffleVec.getValueType().getVectorElementType();
5525     if (SrcEltTy == SmallestEltTy)
5526       continue;
5527     assert(ShuffleVT.getVectorElementType() == SmallestEltTy);
5528     Src.ShuffleVec = DAG.getNode(ISD::BITCAST, dl, ShuffleVT, Src.ShuffleVec);
5529     Src.WindowScale = SrcEltTy.getSizeInBits() / SmallestEltTy.getSizeInBits();
5530     Src.WindowBase *= Src.WindowScale;
5531   }
5532 
5533   // Final sanity check before we try to actually produce a shuffle.
5534   DEBUG(
5535     for (auto Src : Sources)
5536       assert(Src.ShuffleVec.getValueType() == ShuffleVT);
5537   );
5538 
5539   // The stars all align, our next step is to produce the mask for the shuffle.
5540   SmallVector<int, 8> Mask(ShuffleVT.getVectorNumElements(), -1);
5541   int BitsPerShuffleLane = ShuffleVT.getScalarSizeInBits();
5542   for (unsigned i = 0; i < VT.getVectorNumElements(); ++i) {
5543     SDValue Entry = Op.getOperand(i);
5544     if (Entry.isUndef())
5545       continue;
5546 
5547     auto Src = find(Sources, Entry.getOperand(0));
5548     int EltNo = cast<ConstantSDNode>(Entry.getOperand(1))->getSExtValue();
5549 
5550     // EXTRACT_VECTOR_ELT performs an implicit any_ext; BUILD_VECTOR an implicit
5551     // trunc. So only std::min(SrcBits, DestBits) actually get defined in this
5552     // segment.
5553     EVT OrigEltTy = Entry.getOperand(0).getValueType().getVectorElementType();
5554     int BitsDefined =
5555         std::min(OrigEltTy.getSizeInBits(), VT.getScalarSizeInBits());
5556     int LanesDefined = BitsDefined / BitsPerShuffleLane;
5557 
5558     // This source is expected to fill ResMultiplier lanes of the final shuffle,
5559     // starting at the appropriate offset.
5560     int *LaneMask = &Mask[i * ResMultiplier];
5561 
5562     int ExtractBase = EltNo * Src->WindowScale + Src->WindowBase;
5563     ExtractBase += NumElts * (Src - Sources.begin());
5564     for (int j = 0; j < LanesDefined; ++j)
5565       LaneMask[j] = ExtractBase + j;
5566   }
5567 
5568   // Final check before we try to produce nonsense...
5569   if (!isShuffleMaskLegal(Mask, ShuffleVT)) {
5570     DEBUG(dbgs() << "Reshuffle failed: illegal shuffle mask\n");
5571     return SDValue();
5572   }
5573 
5574   SDValue ShuffleOps[] = { DAG.getUNDEF(ShuffleVT), DAG.getUNDEF(ShuffleVT) };
5575   for (unsigned i = 0; i < Sources.size(); ++i)
5576     ShuffleOps[i] = Sources[i].ShuffleVec;
5577 
5578   SDValue Shuffle = DAG.getVectorShuffle(ShuffleVT, dl, ShuffleOps[0],
5579                                          ShuffleOps[1], Mask);
5580   SDValue V = DAG.getNode(ISD::BITCAST, dl, VT, Shuffle);
5581 
5582   DEBUG(
5583     dbgs() << "Reshuffle, creating node: ";
5584     Shuffle.dump();
5585     dbgs() << "Reshuffle, creating node: ";
5586     V.dump();
5587   );
5588 
5589   return V;
5590 }
5591 
5592 // check if an EXT instruction can handle the shuffle mask when the
5593 // vector sources of the shuffle are the same.
5594 static bool isSingletonEXTMask(ArrayRef<int> M, EVT VT, unsigned &Imm) {
5595   unsigned NumElts = VT.getVectorNumElements();
5596 
5597   // Assume that the first shuffle index is not UNDEF.  Fail if it is.
5598   if (M[0] < 0)
5599     return false;
5600 
5601   Imm = M[0];
5602 
5603   // If this is a VEXT shuffle, the immediate value is the index of the first
5604   // element.  The other shuffle indices must be the successive elements after
5605   // the first one.
5606   unsigned ExpectedElt = Imm;
5607   for (unsigned i = 1; i < NumElts; ++i) {
5608     // Increment the expected index.  If it wraps around, just follow it
5609     // back to index zero and keep going.
5610     ++ExpectedElt;
5611     if (ExpectedElt == NumElts)
5612       ExpectedElt = 0;
5613 
5614     if (M[i] < 0)
5615       continue; // ignore UNDEF indices
5616     if (ExpectedElt != static_cast<unsigned>(M[i]))
5617       return false;
5618   }
5619 
5620   return true;
5621 }
5622 
5623 // check if an EXT instruction can handle the shuffle mask when the
5624 // vector sources of the shuffle are different.
5625 static bool isEXTMask(ArrayRef<int> M, EVT VT, bool &ReverseEXT,
5626                       unsigned &Imm) {
5627   // Look for the first non-undef element.
5628   const int *FirstRealElt = find_if(M, [](int Elt) { return Elt >= 0; });
5629 
5630   // Benefit form APInt to handle overflow when calculating expected element.
5631   unsigned NumElts = VT.getVectorNumElements();
5632   unsigned MaskBits = APInt(32, NumElts * 2).logBase2();
5633   APInt ExpectedElt = APInt(MaskBits, *FirstRealElt + 1);
5634   // The following shuffle indices must be the successive elements after the
5635   // first real element.
5636   const int *FirstWrongElt = std::find_if(FirstRealElt + 1, M.end(),
5637       [&](int Elt) {return Elt != ExpectedElt++ && Elt != -1;});
5638   if (FirstWrongElt != M.end())
5639     return false;
5640 
5641   // The index of an EXT is the first element if it is not UNDEF.
5642   // Watch out for the beginning UNDEFs. The EXT index should be the expected
5643   // value of the first element.  E.g.
5644   // <-1, -1, 3, ...> is treated as <1, 2, 3, ...>.
5645   // <-1, -1, 0, 1, ...> is treated as <2*NumElts-2, 2*NumElts-1, 0, 1, ...>.
5646   // ExpectedElt is the last mask index plus 1.
5647   Imm = ExpectedElt.getZExtValue();
5648 
5649   // There are two difference cases requiring to reverse input vectors.
5650   // For example, for vector <4 x i32> we have the following cases,
5651   // Case 1: shufflevector(<4 x i32>,<4 x i32>,<-1, -1, -1, 0>)
5652   // Case 2: shufflevector(<4 x i32>,<4 x i32>,<-1, -1, 7, 0>)
5653   // For both cases, we finally use mask <5, 6, 7, 0>, which requires
5654   // to reverse two input vectors.
5655   if (Imm < NumElts)
5656     ReverseEXT = true;
5657   else
5658     Imm -= NumElts;
5659 
5660   return true;
5661 }
5662 
5663 /// isREVMask - Check if a vector shuffle corresponds to a REV
5664 /// instruction with the specified blocksize.  (The order of the elements
5665 /// within each block of the vector is reversed.)
5666 static bool isREVMask(ArrayRef<int> M, EVT VT, unsigned BlockSize) {
5667   assert((BlockSize == 16 || BlockSize == 32 || BlockSize == 64) &&
5668          "Only possible block sizes for REV are: 16, 32, 64");
5669 
5670   unsigned EltSz = VT.getScalarSizeInBits();
5671   if (EltSz == 64)
5672     return false;
5673 
5674   unsigned NumElts = VT.getVectorNumElements();
5675   unsigned BlockElts = M[0] + 1;
5676   // If the first shuffle index is UNDEF, be optimistic.
5677   if (M[0] < 0)
5678     BlockElts = BlockSize / EltSz;
5679 
5680   if (BlockSize <= EltSz || BlockSize != BlockElts * EltSz)
5681     return false;
5682 
5683   for (unsigned i = 0; i < NumElts; ++i) {
5684     if (M[i] < 0)
5685       continue; // ignore UNDEF indices
5686     if ((unsigned)M[i] != (i - i % BlockElts) + (BlockElts - 1 - i % BlockElts))
5687       return false;
5688   }
5689 
5690   return true;
5691 }
5692 
5693 static bool isZIPMask(ArrayRef<int> M, EVT VT, unsigned &WhichResult) {
5694   unsigned NumElts = VT.getVectorNumElements();
5695   WhichResult = (M[0] == 0 ? 0 : 1);
5696   unsigned Idx = WhichResult * NumElts / 2;
5697   for (unsigned i = 0; i != NumElts; i += 2) {
5698     if ((M[i] >= 0 && (unsigned)M[i] != Idx) ||
5699         (M[i + 1] >= 0 && (unsigned)M[i + 1] != Idx + NumElts))
5700       return false;
5701     Idx += 1;
5702   }
5703 
5704   return true;
5705 }
5706 
5707 static bool isUZPMask(ArrayRef<int> M, EVT VT, unsigned &WhichResult) {
5708   unsigned NumElts = VT.getVectorNumElements();
5709   WhichResult = (M[0] == 0 ? 0 : 1);
5710   for (unsigned i = 0; i != NumElts; ++i) {
5711     if (M[i] < 0)
5712       continue; // ignore UNDEF indices
5713     if ((unsigned)M[i] != 2 * i + WhichResult)
5714       return false;
5715   }
5716 
5717   return true;
5718 }
5719 
5720 static bool isTRNMask(ArrayRef<int> M, EVT VT, unsigned &WhichResult) {
5721   unsigned NumElts = VT.getVectorNumElements();
5722   WhichResult = (M[0] == 0 ? 0 : 1);
5723   for (unsigned i = 0; i < NumElts; i += 2) {
5724     if ((M[i] >= 0 && (unsigned)M[i] != i + WhichResult) ||
5725         (M[i + 1] >= 0 && (unsigned)M[i + 1] != i + NumElts + WhichResult))
5726       return false;
5727   }
5728   return true;
5729 }
5730 
5731 /// isZIP_v_undef_Mask - Special case of isZIPMask for canonical form of
5732 /// "vector_shuffle v, v", i.e., "vector_shuffle v, undef".
5733 /// Mask is e.g., <0, 0, 1, 1> instead of <0, 4, 1, 5>.
5734 static bool isZIP_v_undef_Mask(ArrayRef<int> M, EVT VT, unsigned &WhichResult) {
5735   unsigned NumElts = VT.getVectorNumElements();
5736   WhichResult = (M[0] == 0 ? 0 : 1);
5737   unsigned Idx = WhichResult * NumElts / 2;
5738   for (unsigned i = 0; i != NumElts; i += 2) {
5739     if ((M[i] >= 0 && (unsigned)M[i] != Idx) ||
5740         (M[i + 1] >= 0 && (unsigned)M[i + 1] != Idx))
5741       return false;
5742     Idx += 1;
5743   }
5744 
5745   return true;
5746 }
5747 
5748 /// isUZP_v_undef_Mask - Special case of isUZPMask for canonical form of
5749 /// "vector_shuffle v, v", i.e., "vector_shuffle v, undef".
5750 /// Mask is e.g., <0, 2, 0, 2> instead of <0, 2, 4, 6>,
5751 static bool isUZP_v_undef_Mask(ArrayRef<int> M, EVT VT, unsigned &WhichResult) {
5752   unsigned Half = VT.getVectorNumElements() / 2;
5753   WhichResult = (M[0] == 0 ? 0 : 1);
5754   for (unsigned j = 0; j != 2; ++j) {
5755     unsigned Idx = WhichResult;
5756     for (unsigned i = 0; i != Half; ++i) {
5757       int MIdx = M[i + j * Half];
5758       if (MIdx >= 0 && (unsigned)MIdx != Idx)
5759         return false;
5760       Idx += 2;
5761     }
5762   }
5763 
5764   return true;
5765 }
5766 
5767 /// isTRN_v_undef_Mask - Special case of isTRNMask for canonical form of
5768 /// "vector_shuffle v, v", i.e., "vector_shuffle v, undef".
5769 /// Mask is e.g., <0, 0, 2, 2> instead of <0, 4, 2, 6>.
5770 static bool isTRN_v_undef_Mask(ArrayRef<int> M, EVT VT, unsigned &WhichResult) {
5771   unsigned NumElts = VT.getVectorNumElements();
5772   WhichResult = (M[0] == 0 ? 0 : 1);
5773   for (unsigned i = 0; i < NumElts; i += 2) {
5774     if ((M[i] >= 0 && (unsigned)M[i] != i + WhichResult) ||
5775         (M[i + 1] >= 0 && (unsigned)M[i + 1] != i + WhichResult))
5776       return false;
5777   }
5778   return true;
5779 }
5780 
5781 static bool isINSMask(ArrayRef<int> M, int NumInputElements,
5782                       bool &DstIsLeft, int &Anomaly) {
5783   if (M.size() != static_cast<size_t>(NumInputElements))
5784     return false;
5785 
5786   int NumLHSMatch = 0, NumRHSMatch = 0;
5787   int LastLHSMismatch = -1, LastRHSMismatch = -1;
5788 
5789   for (int i = 0; i < NumInputElements; ++i) {
5790     if (M[i] == -1) {
5791       ++NumLHSMatch;
5792       ++NumRHSMatch;
5793       continue;
5794     }
5795 
5796     if (M[i] == i)
5797       ++NumLHSMatch;
5798     else
5799       LastLHSMismatch = i;
5800 
5801     if (M[i] == i + NumInputElements)
5802       ++NumRHSMatch;
5803     else
5804       LastRHSMismatch = i;
5805   }
5806 
5807   if (NumLHSMatch == NumInputElements - 1) {
5808     DstIsLeft = true;
5809     Anomaly = LastLHSMismatch;
5810     return true;
5811   } else if (NumRHSMatch == NumInputElements - 1) {
5812     DstIsLeft = false;
5813     Anomaly = LastRHSMismatch;
5814     return true;
5815   }
5816 
5817   return false;
5818 }
5819 
5820 static bool isConcatMask(ArrayRef<int> Mask, EVT VT, bool SplitLHS) {
5821   if (VT.getSizeInBits() != 128)
5822     return false;
5823 
5824   unsigned NumElts = VT.getVectorNumElements();
5825 
5826   for (int I = 0, E = NumElts / 2; I != E; I++) {
5827     if (Mask[I] != I)
5828       return false;
5829   }
5830 
5831   int Offset = NumElts / 2;
5832   for (int I = NumElts / 2, E = NumElts; I != E; I++) {
5833     if (Mask[I] != I + SplitLHS * Offset)
5834       return false;
5835   }
5836 
5837   return true;
5838 }
5839 
5840 static SDValue tryFormConcatFromShuffle(SDValue Op, SelectionDAG &DAG) {
5841   SDLoc DL(Op);
5842   EVT VT = Op.getValueType();
5843   SDValue V0 = Op.getOperand(0);
5844   SDValue V1 = Op.getOperand(1);
5845   ArrayRef<int> Mask = cast<ShuffleVectorSDNode>(Op)->getMask();
5846 
5847   if (VT.getVectorElementType() != V0.getValueType().getVectorElementType() ||
5848       VT.getVectorElementType() != V1.getValueType().getVectorElementType())
5849     return SDValue();
5850 
5851   bool SplitV0 = V0.getValueSizeInBits() == 128;
5852 
5853   if (!isConcatMask(Mask, VT, SplitV0))
5854     return SDValue();
5855 
5856   EVT CastVT = EVT::getVectorVT(*DAG.getContext(), VT.getVectorElementType(),
5857                                 VT.getVectorNumElements() / 2);
5858   if (SplitV0) {
5859     V0 = DAG.getNode(ISD::EXTRACT_SUBVECTOR, DL, CastVT, V0,
5860                      DAG.getConstant(0, DL, MVT::i64));
5861   }
5862   if (V1.getValueSizeInBits() == 128) {
5863     V1 = DAG.getNode(ISD::EXTRACT_SUBVECTOR, DL, CastVT, V1,
5864                      DAG.getConstant(0, DL, MVT::i64));
5865   }
5866   return DAG.getNode(ISD::CONCAT_VECTORS, DL, VT, V0, V1);
5867 }
5868 
5869 /// GeneratePerfectShuffle - Given an entry in the perfect-shuffle table, emit
5870 /// the specified operations to build the shuffle.
5871 static SDValue GeneratePerfectShuffle(unsigned PFEntry, SDValue LHS,
5872                                       SDValue RHS, SelectionDAG &DAG,
5873                                       const SDLoc &dl) {
5874   unsigned OpNum = (PFEntry >> 26) & 0x0F;
5875   unsigned LHSID = (PFEntry >> 13) & ((1 << 13) - 1);
5876   unsigned RHSID = (PFEntry >> 0) & ((1 << 13) - 1);
5877 
5878   enum {
5879     OP_COPY = 0, // Copy, used for things like <u,u,u,3> to say it is <0,1,2,3>
5880     OP_VREV,
5881     OP_VDUP0,
5882     OP_VDUP1,
5883     OP_VDUP2,
5884     OP_VDUP3,
5885     OP_VEXT1,
5886     OP_VEXT2,
5887     OP_VEXT3,
5888     OP_VUZPL, // VUZP, left result
5889     OP_VUZPR, // VUZP, right result
5890     OP_VZIPL, // VZIP, left result
5891     OP_VZIPR, // VZIP, right result
5892     OP_VTRNL, // VTRN, left result
5893     OP_VTRNR  // VTRN, right result
5894   };
5895 
5896   if (OpNum == OP_COPY) {
5897     if (LHSID == (1 * 9 + 2) * 9 + 3)
5898       return LHS;
5899     assert(LHSID == ((4 * 9 + 5) * 9 + 6) * 9 + 7 && "Illegal OP_COPY!");
5900     return RHS;
5901   }
5902 
5903   SDValue OpLHS, OpRHS;
5904   OpLHS = GeneratePerfectShuffle(PerfectShuffleTable[LHSID], LHS, RHS, DAG, dl);
5905   OpRHS = GeneratePerfectShuffle(PerfectShuffleTable[RHSID], LHS, RHS, DAG, dl);
5906   EVT VT = OpLHS.getValueType();
5907 
5908   switch (OpNum) {
5909   default:
5910     llvm_unreachable("Unknown shuffle opcode!");
5911   case OP_VREV:
5912     // VREV divides the vector in half and swaps within the half.
5913     if (VT.getVectorElementType() == MVT::i32 ||
5914         VT.getVectorElementType() == MVT::f32)
5915       return DAG.getNode(AArch64ISD::REV64, dl, VT, OpLHS);
5916     // vrev <4 x i16> -> REV32
5917     if (VT.getVectorElementType() == MVT::i16 ||
5918         VT.getVectorElementType() == MVT::f16)
5919       return DAG.getNode(AArch64ISD::REV32, dl, VT, OpLHS);
5920     // vrev <4 x i8> -> REV16
5921     assert(VT.getVectorElementType() == MVT::i8);
5922     return DAG.getNode(AArch64ISD::REV16, dl, VT, OpLHS);
5923   case OP_VDUP0:
5924   case OP_VDUP1:
5925   case OP_VDUP2:
5926   case OP_VDUP3: {
5927     EVT EltTy = VT.getVectorElementType();
5928     unsigned Opcode;
5929     if (EltTy == MVT::i8)
5930       Opcode = AArch64ISD::DUPLANE8;
5931     else if (EltTy == MVT::i16 || EltTy == MVT::f16)
5932       Opcode = AArch64ISD::DUPLANE16;
5933     else if (EltTy == MVT::i32 || EltTy == MVT::f32)
5934       Opcode = AArch64ISD::DUPLANE32;
5935     else if (EltTy == MVT::i64 || EltTy == MVT::f64)
5936       Opcode = AArch64ISD::DUPLANE64;
5937     else
5938       llvm_unreachable("Invalid vector element type?");
5939 
5940     if (VT.getSizeInBits() == 64)
5941       OpLHS = WidenVector(OpLHS, DAG);
5942     SDValue Lane = DAG.getConstant(OpNum - OP_VDUP0, dl, MVT::i64);
5943     return DAG.getNode(Opcode, dl, VT, OpLHS, Lane);
5944   }
5945   case OP_VEXT1:
5946   case OP_VEXT2:
5947   case OP_VEXT3: {
5948     unsigned Imm = (OpNum - OP_VEXT1 + 1) * getExtFactor(OpLHS);
5949     return DAG.getNode(AArch64ISD::EXT, dl, VT, OpLHS, OpRHS,
5950                        DAG.getConstant(Imm, dl, MVT::i32));
5951   }
5952   case OP_VUZPL:
5953     return DAG.getNode(AArch64ISD::UZP1, dl, DAG.getVTList(VT, VT), OpLHS,
5954                        OpRHS);
5955   case OP_VUZPR:
5956     return DAG.getNode(AArch64ISD::UZP2, dl, DAG.getVTList(VT, VT), OpLHS,
5957                        OpRHS);
5958   case OP_VZIPL:
5959     return DAG.getNode(AArch64ISD::ZIP1, dl, DAG.getVTList(VT, VT), OpLHS,
5960                        OpRHS);
5961   case OP_VZIPR:
5962     return DAG.getNode(AArch64ISD::ZIP2, dl, DAG.getVTList(VT, VT), OpLHS,
5963                        OpRHS);
5964   case OP_VTRNL:
5965     return DAG.getNode(AArch64ISD::TRN1, dl, DAG.getVTList(VT, VT), OpLHS,
5966                        OpRHS);
5967   case OP_VTRNR:
5968     return DAG.getNode(AArch64ISD::TRN2, dl, DAG.getVTList(VT, VT), OpLHS,
5969                        OpRHS);
5970   }
5971 }
5972 
5973 static SDValue GenerateTBL(SDValue Op, ArrayRef<int> ShuffleMask,
5974                            SelectionDAG &DAG) {
5975   // Check to see if we can use the TBL instruction.
5976   SDValue V1 = Op.getOperand(0);
5977   SDValue V2 = Op.getOperand(1);
5978   SDLoc DL(Op);
5979 
5980   EVT EltVT = Op.getValueType().getVectorElementType();
5981   unsigned BytesPerElt = EltVT.getSizeInBits() / 8;
5982 
5983   SmallVector<SDValue, 8> TBLMask;
5984   for (int Val : ShuffleMask) {
5985     for (unsigned Byte = 0; Byte < BytesPerElt; ++Byte) {
5986       unsigned Offset = Byte + Val * BytesPerElt;
5987       TBLMask.push_back(DAG.getConstant(Offset, DL, MVT::i32));
5988     }
5989   }
5990 
5991   MVT IndexVT = MVT::v8i8;
5992   unsigned IndexLen = 8;
5993   if (Op.getValueSizeInBits() == 128) {
5994     IndexVT = MVT::v16i8;
5995     IndexLen = 16;
5996   }
5997 
5998   SDValue V1Cst = DAG.getNode(ISD::BITCAST, DL, IndexVT, V1);
5999   SDValue V2Cst = DAG.getNode(ISD::BITCAST, DL, IndexVT, V2);
6000 
6001   SDValue Shuffle;
6002   if (V2.getNode()->isUndef()) {
6003     if (IndexLen == 8)
6004       V1Cst = DAG.getNode(ISD::CONCAT_VECTORS, DL, MVT::v16i8, V1Cst, V1Cst);
6005     Shuffle = DAG.getNode(
6006         ISD::INTRINSIC_WO_CHAIN, DL, IndexVT,
6007         DAG.getConstant(Intrinsic::aarch64_neon_tbl1, DL, MVT::i32), V1Cst,
6008         DAG.getBuildVector(IndexVT, DL,
6009                            makeArrayRef(TBLMask.data(), IndexLen)));
6010   } else {
6011     if (IndexLen == 8) {
6012       V1Cst = DAG.getNode(ISD::CONCAT_VECTORS, DL, MVT::v16i8, V1Cst, V2Cst);
6013       Shuffle = DAG.getNode(
6014           ISD::INTRINSIC_WO_CHAIN, DL, IndexVT,
6015           DAG.getConstant(Intrinsic::aarch64_neon_tbl1, DL, MVT::i32), V1Cst,
6016           DAG.getBuildVector(IndexVT, DL,
6017                              makeArrayRef(TBLMask.data(), IndexLen)));
6018     } else {
6019       // FIXME: We cannot, for the moment, emit a TBL2 instruction because we
6020       // cannot currently represent the register constraints on the input
6021       // table registers.
6022       //  Shuffle = DAG.getNode(AArch64ISD::TBL2, DL, IndexVT, V1Cst, V2Cst,
6023       //                   DAG.getBuildVector(IndexVT, DL, &TBLMask[0],
6024       //                   IndexLen));
6025       Shuffle = DAG.getNode(
6026           ISD::INTRINSIC_WO_CHAIN, DL, IndexVT,
6027           DAG.getConstant(Intrinsic::aarch64_neon_tbl2, DL, MVT::i32), V1Cst,
6028           V2Cst, DAG.getBuildVector(IndexVT, DL,
6029                                     makeArrayRef(TBLMask.data(), IndexLen)));
6030     }
6031   }
6032   return DAG.getNode(ISD::BITCAST, DL, Op.getValueType(), Shuffle);
6033 }
6034 
6035 static unsigned getDUPLANEOp(EVT EltType) {
6036   if (EltType == MVT::i8)
6037     return AArch64ISD::DUPLANE8;
6038   if (EltType == MVT::i16 || EltType == MVT::f16)
6039     return AArch64ISD::DUPLANE16;
6040   if (EltType == MVT::i32 || EltType == MVT::f32)
6041     return AArch64ISD::DUPLANE32;
6042   if (EltType == MVT::i64 || EltType == MVT::f64)
6043     return AArch64ISD::DUPLANE64;
6044 
6045   llvm_unreachable("Invalid vector element type?");
6046 }
6047 
6048 SDValue AArch64TargetLowering::LowerVECTOR_SHUFFLE(SDValue Op,
6049                                                    SelectionDAG &DAG) const {
6050   SDLoc dl(Op);
6051   EVT VT = Op.getValueType();
6052 
6053   ShuffleVectorSDNode *SVN = cast<ShuffleVectorSDNode>(Op.getNode());
6054 
6055   // Convert shuffles that are directly supported on NEON to target-specific
6056   // DAG nodes, instead of keeping them as shuffles and matching them again
6057   // during code selection.  This is more efficient and avoids the possibility
6058   // of inconsistencies between legalization and selection.
6059   ArrayRef<int> ShuffleMask = SVN->getMask();
6060 
6061   SDValue V1 = Op.getOperand(0);
6062   SDValue V2 = Op.getOperand(1);
6063 
6064   if (SVN->isSplat()) {
6065     int Lane = SVN->getSplatIndex();
6066     // If this is undef splat, generate it via "just" vdup, if possible.
6067     if (Lane == -1)
6068       Lane = 0;
6069 
6070     if (Lane == 0 && V1.getOpcode() == ISD::SCALAR_TO_VECTOR)
6071       return DAG.getNode(AArch64ISD::DUP, dl, V1.getValueType(),
6072                          V1.getOperand(0));
6073     // Test if V1 is a BUILD_VECTOR and the lane being referenced is a non-
6074     // constant. If so, we can just reference the lane's definition directly.
6075     if (V1.getOpcode() == ISD::BUILD_VECTOR &&
6076         !isa<ConstantSDNode>(V1.getOperand(Lane)))
6077       return DAG.getNode(AArch64ISD::DUP, dl, VT, V1.getOperand(Lane));
6078 
6079     // Otherwise, duplicate from the lane of the input vector.
6080     unsigned Opcode = getDUPLANEOp(V1.getValueType().getVectorElementType());
6081 
6082     // SelectionDAGBuilder may have "helpfully" already extracted or conatenated
6083     // to make a vector of the same size as this SHUFFLE. We can ignore the
6084     // extract entirely, and canonicalise the concat using WidenVector.
6085     if (V1.getOpcode() == ISD::EXTRACT_SUBVECTOR) {
6086       Lane += cast<ConstantSDNode>(V1.getOperand(1))->getZExtValue();
6087       V1 = V1.getOperand(0);
6088     } else if (V1.getOpcode() == ISD::CONCAT_VECTORS) {
6089       unsigned Idx = Lane >= (int)VT.getVectorNumElements() / 2;
6090       Lane -= Idx * VT.getVectorNumElements() / 2;
6091       V1 = WidenVector(V1.getOperand(Idx), DAG);
6092     } else if (VT.getSizeInBits() == 64)
6093       V1 = WidenVector(V1, DAG);
6094 
6095     return DAG.getNode(Opcode, dl, VT, V1, DAG.getConstant(Lane, dl, MVT::i64));
6096   }
6097 
6098   if (isREVMask(ShuffleMask, VT, 64))
6099     return DAG.getNode(AArch64ISD::REV64, dl, V1.getValueType(), V1, V2);
6100   if (isREVMask(ShuffleMask, VT, 32))
6101     return DAG.getNode(AArch64ISD::REV32, dl, V1.getValueType(), V1, V2);
6102   if (isREVMask(ShuffleMask, VT, 16))
6103     return DAG.getNode(AArch64ISD::REV16, dl, V1.getValueType(), V1, V2);
6104 
6105   bool ReverseEXT = false;
6106   unsigned Imm;
6107   if (isEXTMask(ShuffleMask, VT, ReverseEXT, Imm)) {
6108     if (ReverseEXT)
6109       std::swap(V1, V2);
6110     Imm *= getExtFactor(V1);
6111     return DAG.getNode(AArch64ISD::EXT, dl, V1.getValueType(), V1, V2,
6112                        DAG.getConstant(Imm, dl, MVT::i32));
6113   } else if (V2->isUndef() && isSingletonEXTMask(ShuffleMask, VT, Imm)) {
6114     Imm *= getExtFactor(V1);
6115     return DAG.getNode(AArch64ISD::EXT, dl, V1.getValueType(), V1, V1,
6116                        DAG.getConstant(Imm, dl, MVT::i32));
6117   }
6118 
6119   unsigned WhichResult;
6120   if (isZIPMask(ShuffleMask, VT, WhichResult)) {
6121     unsigned Opc = (WhichResult == 0) ? AArch64ISD::ZIP1 : AArch64ISD::ZIP2;
6122     return DAG.getNode(Opc, dl, V1.getValueType(), V1, V2);
6123   }
6124   if (isUZPMask(ShuffleMask, VT, WhichResult)) {
6125     unsigned Opc = (WhichResult == 0) ? AArch64ISD::UZP1 : AArch64ISD::UZP2;
6126     return DAG.getNode(Opc, dl, V1.getValueType(), V1, V2);
6127   }
6128   if (isTRNMask(ShuffleMask, VT, WhichResult)) {
6129     unsigned Opc = (WhichResult == 0) ? AArch64ISD::TRN1 : AArch64ISD::TRN2;
6130     return DAG.getNode(Opc, dl, V1.getValueType(), V1, V2);
6131   }
6132 
6133   if (isZIP_v_undef_Mask(ShuffleMask, VT, WhichResult)) {
6134     unsigned Opc = (WhichResult == 0) ? AArch64ISD::ZIP1 : AArch64ISD::ZIP2;
6135     return DAG.getNode(Opc, dl, V1.getValueType(), V1, V1);
6136   }
6137   if (isUZP_v_undef_Mask(ShuffleMask, VT, WhichResult)) {
6138     unsigned Opc = (WhichResult == 0) ? AArch64ISD::UZP1 : AArch64ISD::UZP2;
6139     return DAG.getNode(Opc, dl, V1.getValueType(), V1, V1);
6140   }
6141   if (isTRN_v_undef_Mask(ShuffleMask, VT, WhichResult)) {
6142     unsigned Opc = (WhichResult == 0) ? AArch64ISD::TRN1 : AArch64ISD::TRN2;
6143     return DAG.getNode(Opc, dl, V1.getValueType(), V1, V1);
6144   }
6145 
6146   if (SDValue Concat = tryFormConcatFromShuffle(Op, DAG))
6147     return Concat;
6148 
6149   bool DstIsLeft;
6150   int Anomaly;
6151   int NumInputElements = V1.getValueType().getVectorNumElements();
6152   if (isINSMask(ShuffleMask, NumInputElements, DstIsLeft, Anomaly)) {
6153     SDValue DstVec = DstIsLeft ? V1 : V2;
6154     SDValue DstLaneV = DAG.getConstant(Anomaly, dl, MVT::i64);
6155 
6156     SDValue SrcVec = V1;
6157     int SrcLane = ShuffleMask[Anomaly];
6158     if (SrcLane >= NumInputElements) {
6159       SrcVec = V2;
6160       SrcLane -= VT.getVectorNumElements();
6161     }
6162     SDValue SrcLaneV = DAG.getConstant(SrcLane, dl, MVT::i64);
6163 
6164     EVT ScalarVT = VT.getVectorElementType();
6165 
6166     if (ScalarVT.getSizeInBits() < 32 && ScalarVT.isInteger())
6167       ScalarVT = MVT::i32;
6168 
6169     return DAG.getNode(
6170         ISD::INSERT_VECTOR_ELT, dl, VT, DstVec,
6171         DAG.getNode(ISD::EXTRACT_VECTOR_ELT, dl, ScalarVT, SrcVec, SrcLaneV),
6172         DstLaneV);
6173   }
6174 
6175   // If the shuffle is not directly supported and it has 4 elements, use
6176   // the PerfectShuffle-generated table to synthesize it from other shuffles.
6177   unsigned NumElts = VT.getVectorNumElements();
6178   if (NumElts == 4) {
6179     unsigned PFIndexes[4];
6180     for (unsigned i = 0; i != 4; ++i) {
6181       if (ShuffleMask[i] < 0)
6182         PFIndexes[i] = 8;
6183       else
6184         PFIndexes[i] = ShuffleMask[i];
6185     }
6186 
6187     // Compute the index in the perfect shuffle table.
6188     unsigned PFTableIndex = PFIndexes[0] * 9 * 9 * 9 + PFIndexes[1] * 9 * 9 +
6189                             PFIndexes[2] * 9 + PFIndexes[3];
6190     unsigned PFEntry = PerfectShuffleTable[PFTableIndex];
6191     unsigned Cost = (PFEntry >> 30);
6192 
6193     if (Cost <= 4)
6194       return GeneratePerfectShuffle(PFEntry, V1, V2, DAG, dl);
6195   }
6196 
6197   return GenerateTBL(Op, ShuffleMask, DAG);
6198 }
6199 
6200 static bool resolveBuildVector(BuildVectorSDNode *BVN, APInt &CnstBits,
6201                                APInt &UndefBits) {
6202   EVT VT = BVN->getValueType(0);
6203   APInt SplatBits, SplatUndef;
6204   unsigned SplatBitSize;
6205   bool HasAnyUndefs;
6206   if (BVN->isConstantSplat(SplatBits, SplatUndef, SplatBitSize, HasAnyUndefs)) {
6207     unsigned NumSplats = VT.getSizeInBits() / SplatBitSize;
6208 
6209     for (unsigned i = 0; i < NumSplats; ++i) {
6210       CnstBits <<= SplatBitSize;
6211       UndefBits <<= SplatBitSize;
6212       CnstBits |= SplatBits.zextOrTrunc(VT.getSizeInBits());
6213       UndefBits |= (SplatBits ^ SplatUndef).zextOrTrunc(VT.getSizeInBits());
6214     }
6215 
6216     return true;
6217   }
6218 
6219   return false;
6220 }
6221 
6222 SDValue AArch64TargetLowering::LowerVectorAND(SDValue Op,
6223                                               SelectionDAG &DAG) const {
6224   BuildVectorSDNode *BVN =
6225       dyn_cast<BuildVectorSDNode>(Op.getOperand(1).getNode());
6226   SDValue LHS = Op.getOperand(0);
6227   SDLoc dl(Op);
6228   EVT VT = Op.getValueType();
6229 
6230   if (!BVN)
6231     return Op;
6232 
6233   APInt CnstBits(VT.getSizeInBits(), 0);
6234   APInt UndefBits(VT.getSizeInBits(), 0);
6235   if (resolveBuildVector(BVN, CnstBits, UndefBits)) {
6236     // We only have BIC vector immediate instruction, which is and-not.
6237     CnstBits = ~CnstBits;
6238 
6239     // We make use of a little bit of goto ickiness in order to avoid having to
6240     // duplicate the immediate matching logic for the undef toggled case.
6241     bool SecondTry = false;
6242   AttemptModImm:
6243 
6244     if (CnstBits.getHiBits(64) == CnstBits.getLoBits(64)) {
6245       CnstBits = CnstBits.zextOrTrunc(64);
6246       uint64_t CnstVal = CnstBits.getZExtValue();
6247 
6248       if (AArch64_AM::isAdvSIMDModImmType1(CnstVal)) {
6249         CnstVal = AArch64_AM::encodeAdvSIMDModImmType1(CnstVal);
6250         MVT MovTy = (VT.getSizeInBits() == 128) ? MVT::v4i32 : MVT::v2i32;
6251         SDValue Mov = DAG.getNode(AArch64ISD::BICi, dl, MovTy, LHS,
6252                                   DAG.getConstant(CnstVal, dl, MVT::i32),
6253                                   DAG.getConstant(0, dl, MVT::i32));
6254         return DAG.getNode(AArch64ISD::NVCAST, dl, VT, Mov);
6255       }
6256 
6257       if (AArch64_AM::isAdvSIMDModImmType2(CnstVal)) {
6258         CnstVal = AArch64_AM::encodeAdvSIMDModImmType2(CnstVal);
6259         MVT MovTy = (VT.getSizeInBits() == 128) ? MVT::v4i32 : MVT::v2i32;
6260         SDValue Mov = DAG.getNode(AArch64ISD::BICi, dl, MovTy, LHS,
6261                                   DAG.getConstant(CnstVal, dl, MVT::i32),
6262                                   DAG.getConstant(8, dl, MVT::i32));
6263         return DAG.getNode(AArch64ISD::NVCAST, dl, VT, Mov);
6264       }
6265 
6266       if (AArch64_AM::isAdvSIMDModImmType3(CnstVal)) {
6267         CnstVal = AArch64_AM::encodeAdvSIMDModImmType3(CnstVal);
6268         MVT MovTy = (VT.getSizeInBits() == 128) ? MVT::v4i32 : MVT::v2i32;
6269         SDValue Mov = DAG.getNode(AArch64ISD::BICi, dl, MovTy, LHS,
6270                                   DAG.getConstant(CnstVal, dl, MVT::i32),
6271                                   DAG.getConstant(16, dl, MVT::i32));
6272         return DAG.getNode(AArch64ISD::NVCAST, dl, VT, Mov);
6273       }
6274 
6275       if (AArch64_AM::isAdvSIMDModImmType4(CnstVal)) {
6276         CnstVal = AArch64_AM::encodeAdvSIMDModImmType4(CnstVal);
6277         MVT MovTy = (VT.getSizeInBits() == 128) ? MVT::v4i32 : MVT::v2i32;
6278         SDValue Mov = DAG.getNode(AArch64ISD::BICi, dl, MovTy, LHS,
6279                                   DAG.getConstant(CnstVal, dl, MVT::i32),
6280                                   DAG.getConstant(24, dl, MVT::i32));
6281         return DAG.getNode(AArch64ISD::NVCAST, dl, VT, Mov);
6282       }
6283 
6284       if (AArch64_AM::isAdvSIMDModImmType5(CnstVal)) {
6285         CnstVal = AArch64_AM::encodeAdvSIMDModImmType5(CnstVal);
6286         MVT MovTy = (VT.getSizeInBits() == 128) ? MVT::v8i16 : MVT::v4i16;
6287         SDValue Mov = DAG.getNode(AArch64ISD::BICi, dl, MovTy, LHS,
6288                                   DAG.getConstant(CnstVal, dl, MVT::i32),
6289                                   DAG.getConstant(0, dl, MVT::i32));
6290         return DAG.getNode(AArch64ISD::NVCAST, dl, VT, Mov);
6291       }
6292 
6293       if (AArch64_AM::isAdvSIMDModImmType6(CnstVal)) {
6294         CnstVal = AArch64_AM::encodeAdvSIMDModImmType6(CnstVal);
6295         MVT MovTy = (VT.getSizeInBits() == 128) ? MVT::v8i16 : MVT::v4i16;
6296         SDValue Mov = DAG.getNode(AArch64ISD::BICi, dl, MovTy, LHS,
6297                                   DAG.getConstant(CnstVal, dl, MVT::i32),
6298                                   DAG.getConstant(8, dl, MVT::i32));
6299         return DAG.getNode(AArch64ISD::NVCAST, dl, VT, Mov);
6300       }
6301     }
6302 
6303     if (SecondTry)
6304       goto FailedModImm;
6305     SecondTry = true;
6306     CnstBits = ~UndefBits;
6307     goto AttemptModImm;
6308   }
6309 
6310 // We can always fall back to a non-immediate AND.
6311 FailedModImm:
6312   return Op;
6313 }
6314 
6315 // Specialized code to quickly find if PotentialBVec is a BuildVector that
6316 // consists of only the same constant int value, returned in reference arg
6317 // ConstVal
6318 static bool isAllConstantBuildVector(const SDValue &PotentialBVec,
6319                                      uint64_t &ConstVal) {
6320   BuildVectorSDNode *Bvec = dyn_cast<BuildVectorSDNode>(PotentialBVec);
6321   if (!Bvec)
6322     return false;
6323   ConstantSDNode *FirstElt = dyn_cast<ConstantSDNode>(Bvec->getOperand(0));
6324   if (!FirstElt)
6325     return false;
6326   EVT VT = Bvec->getValueType(0);
6327   unsigned NumElts = VT.getVectorNumElements();
6328   for (unsigned i = 1; i < NumElts; ++i)
6329     if (dyn_cast<ConstantSDNode>(Bvec->getOperand(i)) != FirstElt)
6330       return false;
6331   ConstVal = FirstElt->getZExtValue();
6332   return true;
6333 }
6334 
6335 static unsigned getIntrinsicID(const SDNode *N) {
6336   unsigned Opcode = N->getOpcode();
6337   switch (Opcode) {
6338   default:
6339     return Intrinsic::not_intrinsic;
6340   case ISD::INTRINSIC_WO_CHAIN: {
6341     unsigned IID = cast<ConstantSDNode>(N->getOperand(0))->getZExtValue();
6342     if (IID < Intrinsic::num_intrinsics)
6343       return IID;
6344     return Intrinsic::not_intrinsic;
6345   }
6346   }
6347 }
6348 
6349 // Attempt to form a vector S[LR]I from (or (and X, BvecC1), (lsl Y, C2)),
6350 // to (SLI X, Y, C2), where X and Y have matching vector types, BvecC1 is a
6351 // BUILD_VECTORs with constant element C1, C2 is a constant, and C1 == ~C2.
6352 // Also, logical shift right -> sri, with the same structure.
6353 static SDValue tryLowerToSLI(SDNode *N, SelectionDAG &DAG) {
6354   EVT VT = N->getValueType(0);
6355 
6356   if (!VT.isVector())
6357     return SDValue();
6358 
6359   SDLoc DL(N);
6360 
6361   // Is the first op an AND?
6362   const SDValue And = N->getOperand(0);
6363   if (And.getOpcode() != ISD::AND)
6364     return SDValue();
6365 
6366   // Is the second op an shl or lshr?
6367   SDValue Shift = N->getOperand(1);
6368   // This will have been turned into: AArch64ISD::VSHL vector, #shift
6369   // or AArch64ISD::VLSHR vector, #shift
6370   unsigned ShiftOpc = Shift.getOpcode();
6371   if ((ShiftOpc != AArch64ISD::VSHL && ShiftOpc != AArch64ISD::VLSHR))
6372     return SDValue();
6373   bool IsShiftRight = ShiftOpc == AArch64ISD::VLSHR;
6374 
6375   // Is the shift amount constant?
6376   ConstantSDNode *C2node = dyn_cast<ConstantSDNode>(Shift.getOperand(1));
6377   if (!C2node)
6378     return SDValue();
6379 
6380   // Is the and mask vector all constant?
6381   uint64_t C1;
6382   if (!isAllConstantBuildVector(And.getOperand(1), C1))
6383     return SDValue();
6384 
6385   // Is C1 == ~C2, taking into account how much one can shift elements of a
6386   // particular size?
6387   uint64_t C2 = C2node->getZExtValue();
6388   unsigned ElemSizeInBits = VT.getScalarSizeInBits();
6389   if (C2 > ElemSizeInBits)
6390     return SDValue();
6391   unsigned ElemMask = (1 << ElemSizeInBits) - 1;
6392   if ((C1 & ElemMask) != (~C2 & ElemMask))
6393     return SDValue();
6394 
6395   SDValue X = And.getOperand(0);
6396   SDValue Y = Shift.getOperand(0);
6397 
6398   unsigned Intrin =
6399       IsShiftRight ? Intrinsic::aarch64_neon_vsri : Intrinsic::aarch64_neon_vsli;
6400   SDValue ResultSLI =
6401       DAG.getNode(ISD::INTRINSIC_WO_CHAIN, DL, VT,
6402                   DAG.getConstant(Intrin, DL, MVT::i32), X, Y,
6403                   Shift.getOperand(1));
6404 
6405   DEBUG(dbgs() << "aarch64-lower: transformed: \n");
6406   DEBUG(N->dump(&DAG));
6407   DEBUG(dbgs() << "into: \n");
6408   DEBUG(ResultSLI->dump(&DAG));
6409 
6410   ++NumShiftInserts;
6411   return ResultSLI;
6412 }
6413 
6414 SDValue AArch64TargetLowering::LowerVectorOR(SDValue Op,
6415                                              SelectionDAG &DAG) const {
6416   // Attempt to form a vector S[LR]I from (or (and X, C1), (lsl Y, C2))
6417   if (EnableAArch64SlrGeneration) {
6418     if (SDValue Res = tryLowerToSLI(Op.getNode(), DAG))
6419       return Res;
6420   }
6421 
6422   BuildVectorSDNode *BVN =
6423       dyn_cast<BuildVectorSDNode>(Op.getOperand(0).getNode());
6424   SDValue LHS = Op.getOperand(1);
6425   SDLoc dl(Op);
6426   EVT VT = Op.getValueType();
6427 
6428   // OR commutes, so try swapping the operands.
6429   if (!BVN) {
6430     LHS = Op.getOperand(0);
6431     BVN = dyn_cast<BuildVectorSDNode>(Op.getOperand(1).getNode());
6432   }
6433   if (!BVN)
6434     return Op;
6435 
6436   APInt CnstBits(VT.getSizeInBits(), 0);
6437   APInt UndefBits(VT.getSizeInBits(), 0);
6438   if (resolveBuildVector(BVN, CnstBits, UndefBits)) {
6439     // We make use of a little bit of goto ickiness in order to avoid having to
6440     // duplicate the immediate matching logic for the undef toggled case.
6441     bool SecondTry = false;
6442   AttemptModImm:
6443 
6444     if (CnstBits.getHiBits(64) == CnstBits.getLoBits(64)) {
6445       CnstBits = CnstBits.zextOrTrunc(64);
6446       uint64_t CnstVal = CnstBits.getZExtValue();
6447 
6448       if (AArch64_AM::isAdvSIMDModImmType1(CnstVal)) {
6449         CnstVal = AArch64_AM::encodeAdvSIMDModImmType1(CnstVal);
6450         MVT MovTy = (VT.getSizeInBits() == 128) ? MVT::v4i32 : MVT::v2i32;
6451         SDValue Mov = DAG.getNode(AArch64ISD::ORRi, dl, MovTy, LHS,
6452                                   DAG.getConstant(CnstVal, dl, MVT::i32),
6453                                   DAG.getConstant(0, dl, MVT::i32));
6454         return DAG.getNode(AArch64ISD::NVCAST, dl, VT, Mov);
6455       }
6456 
6457       if (AArch64_AM::isAdvSIMDModImmType2(CnstVal)) {
6458         CnstVal = AArch64_AM::encodeAdvSIMDModImmType2(CnstVal);
6459         MVT MovTy = (VT.getSizeInBits() == 128) ? MVT::v4i32 : MVT::v2i32;
6460         SDValue Mov = DAG.getNode(AArch64ISD::ORRi, dl, MovTy, LHS,
6461                                   DAG.getConstant(CnstVal, dl, MVT::i32),
6462                                   DAG.getConstant(8, dl, MVT::i32));
6463         return DAG.getNode(AArch64ISD::NVCAST, dl, VT, Mov);
6464       }
6465 
6466       if (AArch64_AM::isAdvSIMDModImmType3(CnstVal)) {
6467         CnstVal = AArch64_AM::encodeAdvSIMDModImmType3(CnstVal);
6468         MVT MovTy = (VT.getSizeInBits() == 128) ? MVT::v4i32 : MVT::v2i32;
6469         SDValue Mov = DAG.getNode(AArch64ISD::ORRi, dl, MovTy, LHS,
6470                                   DAG.getConstant(CnstVal, dl, MVT::i32),
6471                                   DAG.getConstant(16, dl, MVT::i32));
6472         return DAG.getNode(AArch64ISD::NVCAST, dl, VT, Mov);
6473       }
6474 
6475       if (AArch64_AM::isAdvSIMDModImmType4(CnstVal)) {
6476         CnstVal = AArch64_AM::encodeAdvSIMDModImmType4(CnstVal);
6477         MVT MovTy = (VT.getSizeInBits() == 128) ? MVT::v4i32 : MVT::v2i32;
6478         SDValue Mov = DAG.getNode(AArch64ISD::ORRi, dl, MovTy, LHS,
6479                                   DAG.getConstant(CnstVal, dl, MVT::i32),
6480                                   DAG.getConstant(24, dl, MVT::i32));
6481         return DAG.getNode(AArch64ISD::NVCAST, dl, VT, Mov);
6482       }
6483 
6484       if (AArch64_AM::isAdvSIMDModImmType5(CnstVal)) {
6485         CnstVal = AArch64_AM::encodeAdvSIMDModImmType5(CnstVal);
6486         MVT MovTy = (VT.getSizeInBits() == 128) ? MVT::v8i16 : MVT::v4i16;
6487         SDValue Mov = DAG.getNode(AArch64ISD::ORRi, dl, MovTy, LHS,
6488                                   DAG.getConstant(CnstVal, dl, MVT::i32),
6489                                   DAG.getConstant(0, dl, MVT::i32));
6490         return DAG.getNode(AArch64ISD::NVCAST, dl, VT, Mov);
6491       }
6492 
6493       if (AArch64_AM::isAdvSIMDModImmType6(CnstVal)) {
6494         CnstVal = AArch64_AM::encodeAdvSIMDModImmType6(CnstVal);
6495         MVT MovTy = (VT.getSizeInBits() == 128) ? MVT::v8i16 : MVT::v4i16;
6496         SDValue Mov = DAG.getNode(AArch64ISD::ORRi, dl, MovTy, LHS,
6497                                   DAG.getConstant(CnstVal, dl, MVT::i32),
6498                                   DAG.getConstant(8, dl, MVT::i32));
6499         return DAG.getNode(AArch64ISD::NVCAST, dl, VT, Mov);
6500       }
6501     }
6502 
6503     if (SecondTry)
6504       goto FailedModImm;
6505     SecondTry = true;
6506     CnstBits = UndefBits;
6507     goto AttemptModImm;
6508   }
6509 
6510 // We can always fall back to a non-immediate OR.
6511 FailedModImm:
6512   return Op;
6513 }
6514 
6515 // Normalize the operands of BUILD_VECTOR. The value of constant operands will
6516 // be truncated to fit element width.
6517 static SDValue NormalizeBuildVector(SDValue Op,
6518                                     SelectionDAG &DAG) {
6519   assert(Op.getOpcode() == ISD::BUILD_VECTOR && "Unknown opcode!");
6520   SDLoc dl(Op);
6521   EVT VT = Op.getValueType();
6522   EVT EltTy= VT.getVectorElementType();
6523 
6524   if (EltTy.isFloatingPoint() || EltTy.getSizeInBits() > 16)
6525     return Op;
6526 
6527   SmallVector<SDValue, 16> Ops;
6528   for (SDValue Lane : Op->ops()) {
6529     if (auto *CstLane = dyn_cast<ConstantSDNode>(Lane)) {
6530       APInt LowBits(EltTy.getSizeInBits(),
6531                     CstLane->getZExtValue());
6532       Lane = DAG.getConstant(LowBits.getZExtValue(), dl, MVT::i32);
6533     }
6534     Ops.push_back(Lane);
6535   }
6536   return DAG.getBuildVector(VT, dl, Ops);
6537 }
6538 
6539 SDValue AArch64TargetLowering::LowerBUILD_VECTOR(SDValue Op,
6540                                                  SelectionDAG &DAG) const {
6541   SDLoc dl(Op);
6542   EVT VT = Op.getValueType();
6543   Op = NormalizeBuildVector(Op, DAG);
6544   BuildVectorSDNode *BVN = cast<BuildVectorSDNode>(Op.getNode());
6545 
6546   APInt CnstBits(VT.getSizeInBits(), 0);
6547   APInt UndefBits(VT.getSizeInBits(), 0);
6548   if (resolveBuildVector(BVN, CnstBits, UndefBits)) {
6549     // We make use of a little bit of goto ickiness in order to avoid having to
6550     // duplicate the immediate matching logic for the undef toggled case.
6551     bool SecondTry = false;
6552   AttemptModImm:
6553 
6554     if (CnstBits.getHiBits(64) == CnstBits.getLoBits(64)) {
6555       CnstBits = CnstBits.zextOrTrunc(64);
6556       uint64_t CnstVal = CnstBits.getZExtValue();
6557 
6558       // Certain magic vector constants (used to express things like NOT
6559       // and NEG) are passed through unmodified.  This allows codegen patterns
6560       // for these operations to match.  Special-purpose patterns will lower
6561       // these immediates to MOVIs if it proves necessary.
6562       if (VT.isInteger() && (CnstVal == 0 || CnstVal == ~0ULL))
6563         return Op;
6564 
6565       // The many faces of MOVI...
6566       if (AArch64_AM::isAdvSIMDModImmType10(CnstVal)) {
6567         CnstVal = AArch64_AM::encodeAdvSIMDModImmType10(CnstVal);
6568         if (VT.getSizeInBits() == 128) {
6569           SDValue Mov = DAG.getNode(AArch64ISD::MOVIedit, dl, MVT::v2i64,
6570                                     DAG.getConstant(CnstVal, dl, MVT::i32));
6571           return DAG.getNode(AArch64ISD::NVCAST, dl, VT, Mov);
6572         }
6573 
6574         // Support the V64 version via subregister insertion.
6575         SDValue Mov = DAG.getNode(AArch64ISD::MOVIedit, dl, MVT::f64,
6576                                   DAG.getConstant(CnstVal, dl, MVT::i32));
6577         return DAG.getNode(AArch64ISD::NVCAST, dl, VT, Mov);
6578       }
6579 
6580       if (AArch64_AM::isAdvSIMDModImmType1(CnstVal)) {
6581         CnstVal = AArch64_AM::encodeAdvSIMDModImmType1(CnstVal);
6582         MVT MovTy = (VT.getSizeInBits() == 128) ? MVT::v4i32 : MVT::v2i32;
6583         SDValue Mov = DAG.getNode(AArch64ISD::MOVIshift, dl, MovTy,
6584                                   DAG.getConstant(CnstVal, dl, MVT::i32),
6585                                   DAG.getConstant(0, dl, MVT::i32));
6586         return DAG.getNode(AArch64ISD::NVCAST, dl, VT, Mov);
6587       }
6588 
6589       if (AArch64_AM::isAdvSIMDModImmType2(CnstVal)) {
6590         CnstVal = AArch64_AM::encodeAdvSIMDModImmType2(CnstVal);
6591         MVT MovTy = (VT.getSizeInBits() == 128) ? MVT::v4i32 : MVT::v2i32;
6592         SDValue Mov = DAG.getNode(AArch64ISD::MOVIshift, dl, MovTy,
6593                                   DAG.getConstant(CnstVal, dl, MVT::i32),
6594                                   DAG.getConstant(8, dl, MVT::i32));
6595         return DAG.getNode(AArch64ISD::NVCAST, dl, VT, Mov);
6596       }
6597 
6598       if (AArch64_AM::isAdvSIMDModImmType3(CnstVal)) {
6599         CnstVal = AArch64_AM::encodeAdvSIMDModImmType3(CnstVal);
6600         MVT MovTy = (VT.getSizeInBits() == 128) ? MVT::v4i32 : MVT::v2i32;
6601         SDValue Mov = DAG.getNode(AArch64ISD::MOVIshift, dl, MovTy,
6602                                   DAG.getConstant(CnstVal, dl, MVT::i32),
6603                                   DAG.getConstant(16, dl, MVT::i32));
6604         return DAG.getNode(AArch64ISD::NVCAST, dl, VT, Mov);
6605       }
6606 
6607       if (AArch64_AM::isAdvSIMDModImmType4(CnstVal)) {
6608         CnstVal = AArch64_AM::encodeAdvSIMDModImmType4(CnstVal);
6609         MVT MovTy = (VT.getSizeInBits() == 128) ? MVT::v4i32 : MVT::v2i32;
6610         SDValue Mov = DAG.getNode(AArch64ISD::MOVIshift, dl, MovTy,
6611                                   DAG.getConstant(CnstVal, dl, MVT::i32),
6612                                   DAG.getConstant(24, dl, MVT::i32));
6613         return DAG.getNode(AArch64ISD::NVCAST, dl, VT, Mov);
6614       }
6615 
6616       if (AArch64_AM::isAdvSIMDModImmType5(CnstVal)) {
6617         CnstVal = AArch64_AM::encodeAdvSIMDModImmType5(CnstVal);
6618         MVT MovTy = (VT.getSizeInBits() == 128) ? MVT::v8i16 : MVT::v4i16;
6619         SDValue Mov = DAG.getNode(AArch64ISD::MOVIshift, dl, MovTy,
6620                                   DAG.getConstant(CnstVal, dl, MVT::i32),
6621                                   DAG.getConstant(0, dl, MVT::i32));
6622         return DAG.getNode(AArch64ISD::NVCAST, dl, VT, Mov);
6623       }
6624 
6625       if (AArch64_AM::isAdvSIMDModImmType6(CnstVal)) {
6626         CnstVal = AArch64_AM::encodeAdvSIMDModImmType6(CnstVal);
6627         MVT MovTy = (VT.getSizeInBits() == 128) ? MVT::v8i16 : MVT::v4i16;
6628         SDValue Mov = DAG.getNode(AArch64ISD::MOVIshift, dl, MovTy,
6629                                   DAG.getConstant(CnstVal, dl, MVT::i32),
6630                                   DAG.getConstant(8, dl, MVT::i32));
6631         return DAG.getNode(AArch64ISD::NVCAST, dl, VT, Mov);
6632       }
6633 
6634       if (AArch64_AM::isAdvSIMDModImmType7(CnstVal)) {
6635         CnstVal = AArch64_AM::encodeAdvSIMDModImmType7(CnstVal);
6636         MVT MovTy = (VT.getSizeInBits() == 128) ? MVT::v4i32 : MVT::v2i32;
6637         SDValue Mov = DAG.getNode(AArch64ISD::MOVImsl, dl, MovTy,
6638                                   DAG.getConstant(CnstVal, dl, MVT::i32),
6639                                   DAG.getConstant(264, dl, MVT::i32));
6640         return DAG.getNode(AArch64ISD::NVCAST, dl, VT, Mov);
6641       }
6642 
6643       if (AArch64_AM::isAdvSIMDModImmType8(CnstVal)) {
6644         CnstVal = AArch64_AM::encodeAdvSIMDModImmType8(CnstVal);
6645         MVT MovTy = (VT.getSizeInBits() == 128) ? MVT::v4i32 : MVT::v2i32;
6646         SDValue Mov = DAG.getNode(AArch64ISD::MOVImsl, dl, MovTy,
6647                                   DAG.getConstant(CnstVal, dl, MVT::i32),
6648                                   DAG.getConstant(272, dl, MVT::i32));
6649         return DAG.getNode(AArch64ISD::NVCAST, dl, VT, Mov);
6650       }
6651 
6652       if (AArch64_AM::isAdvSIMDModImmType9(CnstVal)) {
6653         CnstVal = AArch64_AM::encodeAdvSIMDModImmType9(CnstVal);
6654         MVT MovTy = (VT.getSizeInBits() == 128) ? MVT::v16i8 : MVT::v8i8;
6655         SDValue Mov = DAG.getNode(AArch64ISD::MOVI, dl, MovTy,
6656                                   DAG.getConstant(CnstVal, dl, MVT::i32));
6657         return DAG.getNode(AArch64ISD::NVCAST, dl, VT, Mov);
6658       }
6659 
6660       // The few faces of FMOV...
6661       if (AArch64_AM::isAdvSIMDModImmType11(CnstVal)) {
6662         CnstVal = AArch64_AM::encodeAdvSIMDModImmType11(CnstVal);
6663         MVT MovTy = (VT.getSizeInBits() == 128) ? MVT::v4f32 : MVT::v2f32;
6664         SDValue Mov = DAG.getNode(AArch64ISD::FMOV, dl, MovTy,
6665                                   DAG.getConstant(CnstVal, dl, MVT::i32));
6666         return DAG.getNode(AArch64ISD::NVCAST, dl, VT, Mov);
6667       }
6668 
6669       if (AArch64_AM::isAdvSIMDModImmType12(CnstVal) &&
6670           VT.getSizeInBits() == 128) {
6671         CnstVal = AArch64_AM::encodeAdvSIMDModImmType12(CnstVal);
6672         SDValue Mov = DAG.getNode(AArch64ISD::FMOV, dl, MVT::v2f64,
6673                                   DAG.getConstant(CnstVal, dl, MVT::i32));
6674         return DAG.getNode(AArch64ISD::NVCAST, dl, VT, Mov);
6675       }
6676 
6677       // The many faces of MVNI...
6678       CnstVal = ~CnstVal;
6679       if (AArch64_AM::isAdvSIMDModImmType1(CnstVal)) {
6680         CnstVal = AArch64_AM::encodeAdvSIMDModImmType1(CnstVal);
6681         MVT MovTy = (VT.getSizeInBits() == 128) ? MVT::v4i32 : MVT::v2i32;
6682         SDValue Mov = DAG.getNode(AArch64ISD::MVNIshift, dl, MovTy,
6683                                   DAG.getConstant(CnstVal, dl, MVT::i32),
6684                                   DAG.getConstant(0, dl, MVT::i32));
6685         return DAG.getNode(AArch64ISD::NVCAST, dl, VT, Mov);
6686       }
6687 
6688       if (AArch64_AM::isAdvSIMDModImmType2(CnstVal)) {
6689         CnstVal = AArch64_AM::encodeAdvSIMDModImmType2(CnstVal);
6690         MVT MovTy = (VT.getSizeInBits() == 128) ? MVT::v4i32 : MVT::v2i32;
6691         SDValue Mov = DAG.getNode(AArch64ISD::MVNIshift, dl, MovTy,
6692                                   DAG.getConstant(CnstVal, dl, MVT::i32),
6693                                   DAG.getConstant(8, dl, MVT::i32));
6694         return DAG.getNode(AArch64ISD::NVCAST, dl, VT, Mov);
6695       }
6696 
6697       if (AArch64_AM::isAdvSIMDModImmType3(CnstVal)) {
6698         CnstVal = AArch64_AM::encodeAdvSIMDModImmType3(CnstVal);
6699         MVT MovTy = (VT.getSizeInBits() == 128) ? MVT::v4i32 : MVT::v2i32;
6700         SDValue Mov = DAG.getNode(AArch64ISD::MVNIshift, dl, MovTy,
6701                                   DAG.getConstant(CnstVal, dl, MVT::i32),
6702                                   DAG.getConstant(16, dl, MVT::i32));
6703         return DAG.getNode(AArch64ISD::NVCAST, dl, VT, Mov);
6704       }
6705 
6706       if (AArch64_AM::isAdvSIMDModImmType4(CnstVal)) {
6707         CnstVal = AArch64_AM::encodeAdvSIMDModImmType4(CnstVal);
6708         MVT MovTy = (VT.getSizeInBits() == 128) ? MVT::v4i32 : MVT::v2i32;
6709         SDValue Mov = DAG.getNode(AArch64ISD::MVNIshift, dl, MovTy,
6710                                   DAG.getConstant(CnstVal, dl, MVT::i32),
6711                                   DAG.getConstant(24, dl, MVT::i32));
6712         return DAG.getNode(AArch64ISD::NVCAST, dl, VT, Mov);
6713       }
6714 
6715       if (AArch64_AM::isAdvSIMDModImmType5(CnstVal)) {
6716         CnstVal = AArch64_AM::encodeAdvSIMDModImmType5(CnstVal);
6717         MVT MovTy = (VT.getSizeInBits() == 128) ? MVT::v8i16 : MVT::v4i16;
6718         SDValue Mov = DAG.getNode(AArch64ISD::MVNIshift, dl, MovTy,
6719                                   DAG.getConstant(CnstVal, dl, MVT::i32),
6720                                   DAG.getConstant(0, dl, MVT::i32));
6721         return DAG.getNode(AArch64ISD::NVCAST, dl, VT, Mov);
6722       }
6723 
6724       if (AArch64_AM::isAdvSIMDModImmType6(CnstVal)) {
6725         CnstVal = AArch64_AM::encodeAdvSIMDModImmType6(CnstVal);
6726         MVT MovTy = (VT.getSizeInBits() == 128) ? MVT::v8i16 : MVT::v4i16;
6727         SDValue Mov = DAG.getNode(AArch64ISD::MVNIshift, dl, MovTy,
6728                                   DAG.getConstant(CnstVal, dl, MVT::i32),
6729                                   DAG.getConstant(8, dl, MVT::i32));
6730         return DAG.getNode(AArch64ISD::NVCAST, dl, VT, Mov);
6731       }
6732 
6733       if (AArch64_AM::isAdvSIMDModImmType7(CnstVal)) {
6734         CnstVal = AArch64_AM::encodeAdvSIMDModImmType7(CnstVal);
6735         MVT MovTy = (VT.getSizeInBits() == 128) ? MVT::v4i32 : MVT::v2i32;
6736         SDValue Mov = DAG.getNode(AArch64ISD::MVNImsl, dl, MovTy,
6737                                   DAG.getConstant(CnstVal, dl, MVT::i32),
6738                                   DAG.getConstant(264, dl, MVT::i32));
6739         return DAG.getNode(AArch64ISD::NVCAST, dl, VT, Mov);
6740       }
6741 
6742       if (AArch64_AM::isAdvSIMDModImmType8(CnstVal)) {
6743         CnstVal = AArch64_AM::encodeAdvSIMDModImmType8(CnstVal);
6744         MVT MovTy = (VT.getSizeInBits() == 128) ? MVT::v4i32 : MVT::v2i32;
6745         SDValue Mov = DAG.getNode(AArch64ISD::MVNImsl, dl, MovTy,
6746                                   DAG.getConstant(CnstVal, dl, MVT::i32),
6747                                   DAG.getConstant(272, dl, MVT::i32));
6748         return DAG.getNode(AArch64ISD::NVCAST, dl, VT, Mov);
6749       }
6750     }
6751 
6752     if (SecondTry)
6753       goto FailedModImm;
6754     SecondTry = true;
6755     CnstBits = UndefBits;
6756     goto AttemptModImm;
6757   }
6758 FailedModImm:
6759 
6760   // Scan through the operands to find some interesting properties we can
6761   // exploit:
6762   //   1) If only one value is used, we can use a DUP, or
6763   //   2) if only the low element is not undef, we can just insert that, or
6764   //   3) if only one constant value is used (w/ some non-constant lanes),
6765   //      we can splat the constant value into the whole vector then fill
6766   //      in the non-constant lanes.
6767   //   4) FIXME: If different constant values are used, but we can intelligently
6768   //             select the values we'll be overwriting for the non-constant
6769   //             lanes such that we can directly materialize the vector
6770   //             some other way (MOVI, e.g.), we can be sneaky.
6771   unsigned NumElts = VT.getVectorNumElements();
6772   bool isOnlyLowElement = true;
6773   bool usesOnlyOneValue = true;
6774   bool usesOnlyOneConstantValue = true;
6775   bool isConstant = true;
6776   unsigned NumConstantLanes = 0;
6777   SDValue Value;
6778   SDValue ConstantValue;
6779   for (unsigned i = 0; i < NumElts; ++i) {
6780     SDValue V = Op.getOperand(i);
6781     if (V.isUndef())
6782       continue;
6783     if (i > 0)
6784       isOnlyLowElement = false;
6785     if (!isa<ConstantFPSDNode>(V) && !isa<ConstantSDNode>(V))
6786       isConstant = false;
6787 
6788     if (isa<ConstantSDNode>(V) || isa<ConstantFPSDNode>(V)) {
6789       ++NumConstantLanes;
6790       if (!ConstantValue.getNode())
6791         ConstantValue = V;
6792       else if (ConstantValue != V)
6793         usesOnlyOneConstantValue = false;
6794     }
6795 
6796     if (!Value.getNode())
6797       Value = V;
6798     else if (V != Value)
6799       usesOnlyOneValue = false;
6800   }
6801 
6802   if (!Value.getNode()) {
6803     DEBUG(dbgs() << "LowerBUILD_VECTOR: value undefined, creating undef node\n");
6804     return DAG.getUNDEF(VT);
6805   }
6806 
6807   if (isOnlyLowElement) {
6808     DEBUG(dbgs() << "LowerBUILD_VECTOR: only low element used, creating 1 "
6809                     "SCALAR_TO_VECTOR node\n");
6810     return DAG.getNode(ISD::SCALAR_TO_VECTOR, dl, VT, Value);
6811   }
6812 
6813   // Use DUP for non-constant splats. For f32 constant splats, reduce to
6814   // i32 and try again.
6815   if (usesOnlyOneValue) {
6816     if (!isConstant) {
6817       if (Value.getOpcode() != ISD::EXTRACT_VECTOR_ELT ||
6818           Value.getValueType() != VT) {
6819         DEBUG(dbgs() << "LowerBUILD_VECTOR: use DUP for non-constant splats\n");
6820         return DAG.getNode(AArch64ISD::DUP, dl, VT, Value);
6821       }
6822 
6823       // This is actually a DUPLANExx operation, which keeps everything vectory.
6824 
6825       SDValue Lane = Value.getOperand(1);
6826       Value = Value.getOperand(0);
6827       if (Value.getValueSizeInBits() == 64) {
6828         DEBUG(dbgs() << "LowerBUILD_VECTOR: DUPLANE works on 128-bit vectors, "
6829                         "widening it\n");
6830         Value = WidenVector(Value, DAG);
6831       }
6832 
6833       unsigned Opcode = getDUPLANEOp(VT.getVectorElementType());
6834       return DAG.getNode(Opcode, dl, VT, Value, Lane);
6835     }
6836 
6837     if (VT.getVectorElementType().isFloatingPoint()) {
6838       SmallVector<SDValue, 8> Ops;
6839       EVT EltTy = VT.getVectorElementType();
6840       assert ((EltTy == MVT::f16 || EltTy == MVT::f32 || EltTy == MVT::f64) &&
6841               "Unsupported floating-point vector type");
6842       DEBUG(dbgs() << "LowerBUILD_VECTOR: float constant splats, creating int "
6843                       "BITCASTS, and try again\n");
6844       MVT NewType = MVT::getIntegerVT(EltTy.getSizeInBits());
6845       for (unsigned i = 0; i < NumElts; ++i)
6846         Ops.push_back(DAG.getNode(ISD::BITCAST, dl, NewType, Op.getOperand(i)));
6847       EVT VecVT = EVT::getVectorVT(*DAG.getContext(), NewType, NumElts);
6848       SDValue Val = DAG.getBuildVector(VecVT, dl, Ops);
6849       DEBUG(
6850         dbgs() << "LowerBUILD_VECTOR: trying to lower new vector: ";
6851         Val.dump();
6852       );
6853       Val = LowerBUILD_VECTOR(Val, DAG);
6854       if (Val.getNode())
6855         return DAG.getNode(ISD::BITCAST, dl, VT, Val);
6856     }
6857   }
6858 
6859   // If there was only one constant value used and for more than one lane,
6860   // start by splatting that value, then replace the non-constant lanes. This
6861   // is better than the default, which will perform a separate initialization
6862   // for each lane.
6863   if (NumConstantLanes > 0 && usesOnlyOneConstantValue) {
6864     SDValue Val = DAG.getNode(AArch64ISD::DUP, dl, VT, ConstantValue);
6865     // Now insert the non-constant lanes.
6866     for (unsigned i = 0; i < NumElts; ++i) {
6867       SDValue V = Op.getOperand(i);
6868       SDValue LaneIdx = DAG.getConstant(i, dl, MVT::i64);
6869       if (!isa<ConstantSDNode>(V) && !isa<ConstantFPSDNode>(V)) {
6870         // Note that type legalization likely mucked about with the VT of the
6871         // source operand, so we may have to convert it here before inserting.
6872         Val = DAG.getNode(ISD::INSERT_VECTOR_ELT, dl, VT, Val, V, LaneIdx);
6873       }
6874     }
6875     return Val;
6876   }
6877 
6878   // This will generate a load from the constant pool.
6879   if (isConstant) {
6880     DEBUG(dbgs() << "LowerBUILD_VECTOR: all elements are constant, use default "
6881                     "expansion\n");
6882     return SDValue();
6883   }
6884 
6885   // Empirical tests suggest this is rarely worth it for vectors of length <= 2.
6886   if (NumElts >= 4) {
6887     if (SDValue shuffle = ReconstructShuffle(Op, DAG))
6888       return shuffle;
6889   }
6890 
6891   // If all else fails, just use a sequence of INSERT_VECTOR_ELT when we
6892   // know the default expansion would otherwise fall back on something even
6893   // worse. For a vector with one or two non-undef values, that's
6894   // scalar_to_vector for the elements followed by a shuffle (provided the
6895   // shuffle is valid for the target) and materialization element by element
6896   // on the stack followed by a load for everything else.
6897   if (!isConstant && !usesOnlyOneValue) {
6898     DEBUG(dbgs() << "LowerBUILD_VECTOR: alternatives failed, creating sequence "
6899                     "of INSERT_VECTOR_ELT\n");
6900 
6901     SDValue Vec = DAG.getUNDEF(VT);
6902     SDValue Op0 = Op.getOperand(0);
6903     unsigned i = 0;
6904 
6905     // Use SCALAR_TO_VECTOR for lane zero to
6906     // a) Avoid a RMW dependency on the full vector register, and
6907     // b) Allow the register coalescer to fold away the copy if the
6908     //    value is already in an S or D register, and we're forced to emit an
6909     //    INSERT_SUBREG that we can't fold anywhere.
6910     //
6911     // We also allow types like i8 and i16 which are illegal scalar but legal
6912     // vector element types. After type-legalization the inserted value is
6913     // extended (i32) and it is safe to cast them to the vector type by ignoring
6914     // the upper bits of the lowest lane (e.g. v8i8, v4i16).
6915     if (!Op0.isUndef()) {
6916       DEBUG(dbgs() << "Creating node for op0, it is not undefined:\n");
6917       Vec = DAG.getNode(ISD::SCALAR_TO_VECTOR, dl, VT, Op0);
6918       ++i;
6919     }
6920     DEBUG(
6921       if (i < NumElts)
6922         dbgs() << "Creating nodes for the other vector elements:\n";
6923     );
6924     for (; i < NumElts; ++i) {
6925       SDValue V = Op.getOperand(i);
6926       if (V.isUndef())
6927         continue;
6928       SDValue LaneIdx = DAG.getConstant(i, dl, MVT::i64);
6929       Vec = DAG.getNode(ISD::INSERT_VECTOR_ELT, dl, VT, Vec, V, LaneIdx);
6930     }
6931     return Vec;
6932   }
6933 
6934   DEBUG(dbgs() << "LowerBUILD_VECTOR: use default expansion, failed to find "
6935                   "better alternative\n");
6936   return SDValue();
6937 }
6938 
6939 SDValue AArch64TargetLowering::LowerINSERT_VECTOR_ELT(SDValue Op,
6940                                                       SelectionDAG &DAG) const {
6941   assert(Op.getOpcode() == ISD::INSERT_VECTOR_ELT && "Unknown opcode!");
6942 
6943   // Check for non-constant or out of range lane.
6944   EVT VT = Op.getOperand(0).getValueType();
6945   ConstantSDNode *CI = dyn_cast<ConstantSDNode>(Op.getOperand(2));
6946   if (!CI || CI->getZExtValue() >= VT.getVectorNumElements())
6947     return SDValue();
6948 
6949 
6950   // Insertion/extraction are legal for V128 types.
6951   if (VT == MVT::v16i8 || VT == MVT::v8i16 || VT == MVT::v4i32 ||
6952       VT == MVT::v2i64 || VT == MVT::v4f32 || VT == MVT::v2f64 ||
6953       VT == MVT::v8f16)
6954     return Op;
6955 
6956   if (VT != MVT::v8i8 && VT != MVT::v4i16 && VT != MVT::v2i32 &&
6957       VT != MVT::v1i64 && VT != MVT::v2f32 && VT != MVT::v4f16)
6958     return SDValue();
6959 
6960   // For V64 types, we perform insertion by expanding the value
6961   // to a V128 type and perform the insertion on that.
6962   SDLoc DL(Op);
6963   SDValue WideVec = WidenVector(Op.getOperand(0), DAG);
6964   EVT WideTy = WideVec.getValueType();
6965 
6966   SDValue Node = DAG.getNode(ISD::INSERT_VECTOR_ELT, DL, WideTy, WideVec,
6967                              Op.getOperand(1), Op.getOperand(2));
6968   // Re-narrow the resultant vector.
6969   return NarrowVector(Node, DAG);
6970 }
6971 
6972 SDValue
6973 AArch64TargetLowering::LowerEXTRACT_VECTOR_ELT(SDValue Op,
6974                                                SelectionDAG &DAG) const {
6975   assert(Op.getOpcode() == ISD::EXTRACT_VECTOR_ELT && "Unknown opcode!");
6976 
6977   // Check for non-constant or out of range lane.
6978   EVT VT = Op.getOperand(0).getValueType();
6979   ConstantSDNode *CI = dyn_cast<ConstantSDNode>(Op.getOperand(1));
6980   if (!CI || CI->getZExtValue() >= VT.getVectorNumElements())
6981     return SDValue();
6982 
6983 
6984   // Insertion/extraction are legal for V128 types.
6985   if (VT == MVT::v16i8 || VT == MVT::v8i16 || VT == MVT::v4i32 ||
6986       VT == MVT::v2i64 || VT == MVT::v4f32 || VT == MVT::v2f64 ||
6987       VT == MVT::v8f16)
6988     return Op;
6989 
6990   if (VT != MVT::v8i8 && VT != MVT::v4i16 && VT != MVT::v2i32 &&
6991       VT != MVT::v1i64 && VT != MVT::v2f32 && VT != MVT::v4f16)
6992     return SDValue();
6993 
6994   // For V64 types, we perform extraction by expanding the value
6995   // to a V128 type and perform the extraction on that.
6996   SDLoc DL(Op);
6997   SDValue WideVec = WidenVector(Op.getOperand(0), DAG);
6998   EVT WideTy = WideVec.getValueType();
6999 
7000   EVT ExtrTy = WideTy.getVectorElementType();
7001   if (ExtrTy == MVT::i16 || ExtrTy == MVT::i8)
7002     ExtrTy = MVT::i32;
7003 
7004   // For extractions, we just return the result directly.
7005   return DAG.getNode(ISD::EXTRACT_VECTOR_ELT, DL, ExtrTy, WideVec,
7006                      Op.getOperand(1));
7007 }
7008 
7009 SDValue AArch64TargetLowering::LowerEXTRACT_SUBVECTOR(SDValue Op,
7010                                                       SelectionDAG &DAG) const {
7011   EVT VT = Op.getOperand(0).getValueType();
7012   SDLoc dl(Op);
7013   // Just in case...
7014   if (!VT.isVector())
7015     return SDValue();
7016 
7017   ConstantSDNode *Cst = dyn_cast<ConstantSDNode>(Op.getOperand(1));
7018   if (!Cst)
7019     return SDValue();
7020   unsigned Val = Cst->getZExtValue();
7021 
7022   unsigned Size = Op.getValueSizeInBits();
7023 
7024   // This will get lowered to an appropriate EXTRACT_SUBREG in ISel.
7025   if (Val == 0)
7026     return Op;
7027 
7028   // If this is extracting the upper 64-bits of a 128-bit vector, we match
7029   // that directly.
7030   if (Size == 64 && Val * VT.getScalarSizeInBits() == 64)
7031     return Op;
7032 
7033   return SDValue();
7034 }
7035 
7036 bool AArch64TargetLowering::isShuffleMaskLegal(ArrayRef<int> M, EVT VT) const {
7037   if (VT.getVectorNumElements() == 4 &&
7038       (VT.is128BitVector() || VT.is64BitVector())) {
7039     unsigned PFIndexes[4];
7040     for (unsigned i = 0; i != 4; ++i) {
7041       if (M[i] < 0)
7042         PFIndexes[i] = 8;
7043       else
7044         PFIndexes[i] = M[i];
7045     }
7046 
7047     // Compute the index in the perfect shuffle table.
7048     unsigned PFTableIndex = PFIndexes[0] * 9 * 9 * 9 + PFIndexes[1] * 9 * 9 +
7049                             PFIndexes[2] * 9 + PFIndexes[3];
7050     unsigned PFEntry = PerfectShuffleTable[PFTableIndex];
7051     unsigned Cost = (PFEntry >> 30);
7052 
7053     if (Cost <= 4)
7054       return true;
7055   }
7056 
7057   bool DummyBool;
7058   int DummyInt;
7059   unsigned DummyUnsigned;
7060 
7061   return (ShuffleVectorSDNode::isSplatMask(&M[0], VT) || isREVMask(M, VT, 64) ||
7062           isREVMask(M, VT, 32) || isREVMask(M, VT, 16) ||
7063           isEXTMask(M, VT, DummyBool, DummyUnsigned) ||
7064           // isTBLMask(M, VT) || // FIXME: Port TBL support from ARM.
7065           isTRNMask(M, VT, DummyUnsigned) || isUZPMask(M, VT, DummyUnsigned) ||
7066           isZIPMask(M, VT, DummyUnsigned) ||
7067           isTRN_v_undef_Mask(M, VT, DummyUnsigned) ||
7068           isUZP_v_undef_Mask(M, VT, DummyUnsigned) ||
7069           isZIP_v_undef_Mask(M, VT, DummyUnsigned) ||
7070           isINSMask(M, VT.getVectorNumElements(), DummyBool, DummyInt) ||
7071           isConcatMask(M, VT, VT.getSizeInBits() == 128));
7072 }
7073 
7074 /// getVShiftImm - Check if this is a valid build_vector for the immediate
7075 /// operand of a vector shift operation, where all the elements of the
7076 /// build_vector must have the same constant integer value.
7077 static bool getVShiftImm(SDValue Op, unsigned ElementBits, int64_t &Cnt) {
7078   // Ignore bit_converts.
7079   while (Op.getOpcode() == ISD::BITCAST)
7080     Op = Op.getOperand(0);
7081   BuildVectorSDNode *BVN = dyn_cast<BuildVectorSDNode>(Op.getNode());
7082   APInt SplatBits, SplatUndef;
7083   unsigned SplatBitSize;
7084   bool HasAnyUndefs;
7085   if (!BVN || !BVN->isConstantSplat(SplatBits, SplatUndef, SplatBitSize,
7086                                     HasAnyUndefs, ElementBits) ||
7087       SplatBitSize > ElementBits)
7088     return false;
7089   Cnt = SplatBits.getSExtValue();
7090   return true;
7091 }
7092 
7093 /// isVShiftLImm - Check if this is a valid build_vector for the immediate
7094 /// operand of a vector shift left operation.  That value must be in the range:
7095 ///   0 <= Value < ElementBits for a left shift; or
7096 ///   0 <= Value <= ElementBits for a long left shift.
7097 static bool isVShiftLImm(SDValue Op, EVT VT, bool isLong, int64_t &Cnt) {
7098   assert(VT.isVector() && "vector shift count is not a vector type");
7099   int64_t ElementBits = VT.getScalarSizeInBits();
7100   if (!getVShiftImm(Op, ElementBits, Cnt))
7101     return false;
7102   return (Cnt >= 0 && (isLong ? Cnt - 1 : Cnt) < ElementBits);
7103 }
7104 
7105 /// isVShiftRImm - Check if this is a valid build_vector for the immediate
7106 /// operand of a vector shift right operation. The value must be in the range:
7107 ///   1 <= Value <= ElementBits for a right shift; or
7108 static bool isVShiftRImm(SDValue Op, EVT VT, bool isNarrow, int64_t &Cnt) {
7109   assert(VT.isVector() && "vector shift count is not a vector type");
7110   int64_t ElementBits = VT.getScalarSizeInBits();
7111   if (!getVShiftImm(Op, ElementBits, Cnt))
7112     return false;
7113   return (Cnt >= 1 && Cnt <= (isNarrow ? ElementBits / 2 : ElementBits));
7114 }
7115 
7116 SDValue AArch64TargetLowering::LowerVectorSRA_SRL_SHL(SDValue Op,
7117                                                       SelectionDAG &DAG) const {
7118   EVT VT = Op.getValueType();
7119   SDLoc DL(Op);
7120   int64_t Cnt;
7121 
7122   if (!Op.getOperand(1).getValueType().isVector())
7123     return Op;
7124   unsigned EltSize = VT.getScalarSizeInBits();
7125 
7126   switch (Op.getOpcode()) {
7127   default:
7128     llvm_unreachable("unexpected shift opcode");
7129 
7130   case ISD::SHL:
7131     if (isVShiftLImm(Op.getOperand(1), VT, false, Cnt) && Cnt < EltSize)
7132       return DAG.getNode(AArch64ISD::VSHL, DL, VT, Op.getOperand(0),
7133                          DAG.getConstant(Cnt, DL, MVT::i32));
7134     return DAG.getNode(ISD::INTRINSIC_WO_CHAIN, DL, VT,
7135                        DAG.getConstant(Intrinsic::aarch64_neon_ushl, DL,
7136                                        MVT::i32),
7137                        Op.getOperand(0), Op.getOperand(1));
7138   case ISD::SRA:
7139   case ISD::SRL:
7140     // Right shift immediate
7141     if (isVShiftRImm(Op.getOperand(1), VT, false, Cnt) && Cnt < EltSize) {
7142       unsigned Opc =
7143           (Op.getOpcode() == ISD::SRA) ? AArch64ISD::VASHR : AArch64ISD::VLSHR;
7144       return DAG.getNode(Opc, DL, VT, Op.getOperand(0),
7145                          DAG.getConstant(Cnt, DL, MVT::i32));
7146     }
7147 
7148     // Right shift register.  Note, there is not a shift right register
7149     // instruction, but the shift left register instruction takes a signed
7150     // value, where negative numbers specify a right shift.
7151     unsigned Opc = (Op.getOpcode() == ISD::SRA) ? Intrinsic::aarch64_neon_sshl
7152                                                 : Intrinsic::aarch64_neon_ushl;
7153     // negate the shift amount
7154     SDValue NegShift = DAG.getNode(AArch64ISD::NEG, DL, VT, Op.getOperand(1));
7155     SDValue NegShiftLeft =
7156         DAG.getNode(ISD::INTRINSIC_WO_CHAIN, DL, VT,
7157                     DAG.getConstant(Opc, DL, MVT::i32), Op.getOperand(0),
7158                     NegShift);
7159     return NegShiftLeft;
7160   }
7161 
7162   return SDValue();
7163 }
7164 
7165 static SDValue EmitVectorComparison(SDValue LHS, SDValue RHS,
7166                                     AArch64CC::CondCode CC, bool NoNans, EVT VT,
7167                                     const SDLoc &dl, SelectionDAG &DAG) {
7168   EVT SrcVT = LHS.getValueType();
7169   assert(VT.getSizeInBits() == SrcVT.getSizeInBits() &&
7170          "function only supposed to emit natural comparisons");
7171 
7172   BuildVectorSDNode *BVN = dyn_cast<BuildVectorSDNode>(RHS.getNode());
7173   APInt CnstBits(VT.getSizeInBits(), 0);
7174   APInt UndefBits(VT.getSizeInBits(), 0);
7175   bool IsCnst = BVN && resolveBuildVector(BVN, CnstBits, UndefBits);
7176   bool IsZero = IsCnst && (CnstBits == 0);
7177 
7178   if (SrcVT.getVectorElementType().isFloatingPoint()) {
7179     switch (CC) {
7180     default:
7181       return SDValue();
7182     case AArch64CC::NE: {
7183       SDValue Fcmeq;
7184       if (IsZero)
7185         Fcmeq = DAG.getNode(AArch64ISD::FCMEQz, dl, VT, LHS);
7186       else
7187         Fcmeq = DAG.getNode(AArch64ISD::FCMEQ, dl, VT, LHS, RHS);
7188       return DAG.getNode(AArch64ISD::NOT, dl, VT, Fcmeq);
7189     }
7190     case AArch64CC::EQ:
7191       if (IsZero)
7192         return DAG.getNode(AArch64ISD::FCMEQz, dl, VT, LHS);
7193       return DAG.getNode(AArch64ISD::FCMEQ, dl, VT, LHS, RHS);
7194     case AArch64CC::GE:
7195       if (IsZero)
7196         return DAG.getNode(AArch64ISD::FCMGEz, dl, VT, LHS);
7197       return DAG.getNode(AArch64ISD::FCMGE, dl, VT, LHS, RHS);
7198     case AArch64CC::GT:
7199       if (IsZero)
7200         return DAG.getNode(AArch64ISD::FCMGTz, dl, VT, LHS);
7201       return DAG.getNode(AArch64ISD::FCMGT, dl, VT, LHS, RHS);
7202     case AArch64CC::LS:
7203       if (IsZero)
7204         return DAG.getNode(AArch64ISD::FCMLEz, dl, VT, LHS);
7205       return DAG.getNode(AArch64ISD::FCMGE, dl, VT, RHS, LHS);
7206     case AArch64CC::LT:
7207       if (!NoNans)
7208         return SDValue();
7209       // If we ignore NaNs then we can use to the MI implementation.
7210       LLVM_FALLTHROUGH;
7211     case AArch64CC::MI:
7212       if (IsZero)
7213         return DAG.getNode(AArch64ISD::FCMLTz, dl, VT, LHS);
7214       return DAG.getNode(AArch64ISD::FCMGT, dl, VT, RHS, LHS);
7215     }
7216   }
7217 
7218   switch (CC) {
7219   default:
7220     return SDValue();
7221   case AArch64CC::NE: {
7222     SDValue Cmeq;
7223     if (IsZero)
7224       Cmeq = DAG.getNode(AArch64ISD::CMEQz, dl, VT, LHS);
7225     else
7226       Cmeq = DAG.getNode(AArch64ISD::CMEQ, dl, VT, LHS, RHS);
7227     return DAG.getNode(AArch64ISD::NOT, dl, VT, Cmeq);
7228   }
7229   case AArch64CC::EQ:
7230     if (IsZero)
7231       return DAG.getNode(AArch64ISD::CMEQz, dl, VT, LHS);
7232     return DAG.getNode(AArch64ISD::CMEQ, dl, VT, LHS, RHS);
7233   case AArch64CC::GE:
7234     if (IsZero)
7235       return DAG.getNode(AArch64ISD::CMGEz, dl, VT, LHS);
7236     return DAG.getNode(AArch64ISD::CMGE, dl, VT, LHS, RHS);
7237   case AArch64CC::GT:
7238     if (IsZero)
7239       return DAG.getNode(AArch64ISD::CMGTz, dl, VT, LHS);
7240     return DAG.getNode(AArch64ISD::CMGT, dl, VT, LHS, RHS);
7241   case AArch64CC::LE:
7242     if (IsZero)
7243       return DAG.getNode(AArch64ISD::CMLEz, dl, VT, LHS);
7244     return DAG.getNode(AArch64ISD::CMGE, dl, VT, RHS, LHS);
7245   case AArch64CC::LS:
7246     return DAG.getNode(AArch64ISD::CMHS, dl, VT, RHS, LHS);
7247   case AArch64CC::LO:
7248     return DAG.getNode(AArch64ISD::CMHI, dl, VT, RHS, LHS);
7249   case AArch64CC::LT:
7250     if (IsZero)
7251       return DAG.getNode(AArch64ISD::CMLTz, dl, VT, LHS);
7252     return DAG.getNode(AArch64ISD::CMGT, dl, VT, RHS, LHS);
7253   case AArch64CC::HI:
7254     return DAG.getNode(AArch64ISD::CMHI, dl, VT, LHS, RHS);
7255   case AArch64CC::HS:
7256     return DAG.getNode(AArch64ISD::CMHS, dl, VT, LHS, RHS);
7257   }
7258 }
7259 
7260 SDValue AArch64TargetLowering::LowerVSETCC(SDValue Op,
7261                                            SelectionDAG &DAG) const {
7262   ISD::CondCode CC = cast<CondCodeSDNode>(Op.getOperand(2))->get();
7263   SDValue LHS = Op.getOperand(0);
7264   SDValue RHS = Op.getOperand(1);
7265   EVT CmpVT = LHS.getValueType().changeVectorElementTypeToInteger();
7266   SDLoc dl(Op);
7267 
7268   if (LHS.getValueType().getVectorElementType().isInteger()) {
7269     assert(LHS.getValueType() == RHS.getValueType());
7270     AArch64CC::CondCode AArch64CC = changeIntCCToAArch64CC(CC);
7271     SDValue Cmp =
7272         EmitVectorComparison(LHS, RHS, AArch64CC, false, CmpVT, dl, DAG);
7273     return DAG.getSExtOrTrunc(Cmp, dl, Op.getValueType());
7274   }
7275 
7276   if (LHS.getValueType().getVectorElementType() == MVT::f16)
7277     return SDValue();
7278 
7279   assert(LHS.getValueType().getVectorElementType() == MVT::f32 ||
7280          LHS.getValueType().getVectorElementType() == MVT::f64);
7281 
7282   // Unfortunately, the mapping of LLVM FP CC's onto AArch64 CC's isn't totally
7283   // clean.  Some of them require two branches to implement.
7284   AArch64CC::CondCode CC1, CC2;
7285   bool ShouldInvert;
7286   changeVectorFPCCToAArch64CC(CC, CC1, CC2, ShouldInvert);
7287 
7288   bool NoNaNs = getTargetMachine().Options.NoNaNsFPMath;
7289   SDValue Cmp =
7290       EmitVectorComparison(LHS, RHS, CC1, NoNaNs, CmpVT, dl, DAG);
7291   if (!Cmp.getNode())
7292     return SDValue();
7293 
7294   if (CC2 != AArch64CC::AL) {
7295     SDValue Cmp2 =
7296         EmitVectorComparison(LHS, RHS, CC2, NoNaNs, CmpVT, dl, DAG);
7297     if (!Cmp2.getNode())
7298       return SDValue();
7299 
7300     Cmp = DAG.getNode(ISD::OR, dl, CmpVT, Cmp, Cmp2);
7301   }
7302 
7303   Cmp = DAG.getSExtOrTrunc(Cmp, dl, Op.getValueType());
7304 
7305   if (ShouldInvert)
7306     return Cmp = DAG.getNOT(dl, Cmp, Cmp.getValueType());
7307 
7308   return Cmp;
7309 }
7310 
7311 static SDValue getReductionSDNode(unsigned Op, SDLoc DL, SDValue ScalarOp,
7312                                   SelectionDAG &DAG) {
7313   SDValue VecOp = ScalarOp.getOperand(0);
7314   auto Rdx = DAG.getNode(Op, DL, VecOp.getSimpleValueType(), VecOp);
7315   return DAG.getNode(ISD::EXTRACT_VECTOR_ELT, DL, ScalarOp.getValueType(), Rdx,
7316                      DAG.getConstant(0, DL, MVT::i64));
7317 }
7318 
7319 SDValue AArch64TargetLowering::LowerVECREDUCE(SDValue Op,
7320                                               SelectionDAG &DAG) const {
7321   SDLoc dl(Op);
7322   switch (Op.getOpcode()) {
7323   case ISD::VECREDUCE_ADD:
7324     return getReductionSDNode(AArch64ISD::UADDV, dl, Op, DAG);
7325   case ISD::VECREDUCE_SMAX:
7326     return getReductionSDNode(AArch64ISD::SMAXV, dl, Op, DAG);
7327   case ISD::VECREDUCE_SMIN:
7328     return getReductionSDNode(AArch64ISD::SMINV, dl, Op, DAG);
7329   case ISD::VECREDUCE_UMAX:
7330     return getReductionSDNode(AArch64ISD::UMAXV, dl, Op, DAG);
7331   case ISD::VECREDUCE_UMIN:
7332     return getReductionSDNode(AArch64ISD::UMINV, dl, Op, DAG);
7333   case ISD::VECREDUCE_FMAX: {
7334     assert(Op->getFlags().hasNoNaNs() && "fmax vector reduction needs NoNaN flag");
7335     return DAG.getNode(
7336         ISD::INTRINSIC_WO_CHAIN, dl, Op.getValueType(),
7337         DAG.getConstant(Intrinsic::aarch64_neon_fmaxnmv, dl, MVT::i32),
7338         Op.getOperand(0));
7339   }
7340   case ISD::VECREDUCE_FMIN: {
7341     assert(Op->getFlags().hasNoNaNs() && "fmin vector reduction needs NoNaN flag");
7342     return DAG.getNode(
7343         ISD::INTRINSIC_WO_CHAIN, dl, Op.getValueType(),
7344         DAG.getConstant(Intrinsic::aarch64_neon_fminnmv, dl, MVT::i32),
7345         Op.getOperand(0));
7346   }
7347   default:
7348     llvm_unreachable("Unhandled reduction");
7349   }
7350 }
7351 
7352 /// getTgtMemIntrinsic - Represent NEON load and store intrinsics as
7353 /// MemIntrinsicNodes.  The associated MachineMemOperands record the alignment
7354 /// specified in the intrinsic calls.
7355 bool AArch64TargetLowering::getTgtMemIntrinsic(IntrinsicInfo &Info,
7356                                                const CallInst &I,
7357                                                unsigned Intrinsic) const {
7358   auto &DL = I.getModule()->getDataLayout();
7359   switch (Intrinsic) {
7360   case Intrinsic::aarch64_neon_ld2:
7361   case Intrinsic::aarch64_neon_ld3:
7362   case Intrinsic::aarch64_neon_ld4:
7363   case Intrinsic::aarch64_neon_ld1x2:
7364   case Intrinsic::aarch64_neon_ld1x3:
7365   case Intrinsic::aarch64_neon_ld1x4:
7366   case Intrinsic::aarch64_neon_ld2lane:
7367   case Intrinsic::aarch64_neon_ld3lane:
7368   case Intrinsic::aarch64_neon_ld4lane:
7369   case Intrinsic::aarch64_neon_ld2r:
7370   case Intrinsic::aarch64_neon_ld3r:
7371   case Intrinsic::aarch64_neon_ld4r: {
7372     Info.opc = ISD::INTRINSIC_W_CHAIN;
7373     // Conservatively set memVT to the entire set of vectors loaded.
7374     uint64_t NumElts = DL.getTypeSizeInBits(I.getType()) / 64;
7375     Info.memVT = EVT::getVectorVT(I.getType()->getContext(), MVT::i64, NumElts);
7376     Info.ptrVal = I.getArgOperand(I.getNumArgOperands() - 1);
7377     Info.offset = 0;
7378     Info.align = 0;
7379     Info.vol = false; // volatile loads with NEON intrinsics not supported
7380     Info.readMem = true;
7381     Info.writeMem = false;
7382     return true;
7383   }
7384   case Intrinsic::aarch64_neon_st2:
7385   case Intrinsic::aarch64_neon_st3:
7386   case Intrinsic::aarch64_neon_st4:
7387   case Intrinsic::aarch64_neon_st1x2:
7388   case Intrinsic::aarch64_neon_st1x3:
7389   case Intrinsic::aarch64_neon_st1x4:
7390   case Intrinsic::aarch64_neon_st2lane:
7391   case Intrinsic::aarch64_neon_st3lane:
7392   case Intrinsic::aarch64_neon_st4lane: {
7393     Info.opc = ISD::INTRINSIC_VOID;
7394     // Conservatively set memVT to the entire set of vectors stored.
7395     unsigned NumElts = 0;
7396     for (unsigned ArgI = 1, ArgE = I.getNumArgOperands(); ArgI < ArgE; ++ArgI) {
7397       Type *ArgTy = I.getArgOperand(ArgI)->getType();
7398       if (!ArgTy->isVectorTy())
7399         break;
7400       NumElts += DL.getTypeSizeInBits(ArgTy) / 64;
7401     }
7402     Info.memVT = EVT::getVectorVT(I.getType()->getContext(), MVT::i64, NumElts);
7403     Info.ptrVal = I.getArgOperand(I.getNumArgOperands() - 1);
7404     Info.offset = 0;
7405     Info.align = 0;
7406     Info.vol = false; // volatile stores with NEON intrinsics not supported
7407     Info.readMem = false;
7408     Info.writeMem = true;
7409     return true;
7410   }
7411   case Intrinsic::aarch64_ldaxr:
7412   case Intrinsic::aarch64_ldxr: {
7413     PointerType *PtrTy = cast<PointerType>(I.getArgOperand(0)->getType());
7414     Info.opc = ISD::INTRINSIC_W_CHAIN;
7415     Info.memVT = MVT::getVT(PtrTy->getElementType());
7416     Info.ptrVal = I.getArgOperand(0);
7417     Info.offset = 0;
7418     Info.align = DL.getABITypeAlignment(PtrTy->getElementType());
7419     Info.vol = true;
7420     Info.readMem = true;
7421     Info.writeMem = false;
7422     return true;
7423   }
7424   case Intrinsic::aarch64_stlxr:
7425   case Intrinsic::aarch64_stxr: {
7426     PointerType *PtrTy = cast<PointerType>(I.getArgOperand(1)->getType());
7427     Info.opc = ISD::INTRINSIC_W_CHAIN;
7428     Info.memVT = MVT::getVT(PtrTy->getElementType());
7429     Info.ptrVal = I.getArgOperand(1);
7430     Info.offset = 0;
7431     Info.align = DL.getABITypeAlignment(PtrTy->getElementType());
7432     Info.vol = true;
7433     Info.readMem = false;
7434     Info.writeMem = true;
7435     return true;
7436   }
7437   case Intrinsic::aarch64_ldaxp:
7438   case Intrinsic::aarch64_ldxp:
7439     Info.opc = ISD::INTRINSIC_W_CHAIN;
7440     Info.memVT = MVT::i128;
7441     Info.ptrVal = I.getArgOperand(0);
7442     Info.offset = 0;
7443     Info.align = 16;
7444     Info.vol = true;
7445     Info.readMem = true;
7446     Info.writeMem = false;
7447     return true;
7448   case Intrinsic::aarch64_stlxp:
7449   case Intrinsic::aarch64_stxp:
7450     Info.opc = ISD::INTRINSIC_W_CHAIN;
7451     Info.memVT = MVT::i128;
7452     Info.ptrVal = I.getArgOperand(2);
7453     Info.offset = 0;
7454     Info.align = 16;
7455     Info.vol = true;
7456     Info.readMem = false;
7457     Info.writeMem = true;
7458     return true;
7459   default:
7460     break;
7461   }
7462 
7463   return false;
7464 }
7465 
7466 // Truncations from 64-bit GPR to 32-bit GPR is free.
7467 bool AArch64TargetLowering::isTruncateFree(Type *Ty1, Type *Ty2) const {
7468   if (!Ty1->isIntegerTy() || !Ty2->isIntegerTy())
7469     return false;
7470   unsigned NumBits1 = Ty1->getPrimitiveSizeInBits();
7471   unsigned NumBits2 = Ty2->getPrimitiveSizeInBits();
7472   return NumBits1 > NumBits2;
7473 }
7474 bool AArch64TargetLowering::isTruncateFree(EVT VT1, EVT VT2) const {
7475   if (VT1.isVector() || VT2.isVector() || !VT1.isInteger() || !VT2.isInteger())
7476     return false;
7477   unsigned NumBits1 = VT1.getSizeInBits();
7478   unsigned NumBits2 = VT2.getSizeInBits();
7479   return NumBits1 > NumBits2;
7480 }
7481 
7482 /// Check if it is profitable to hoist instruction in then/else to if.
7483 /// Not profitable if I and it's user can form a FMA instruction
7484 /// because we prefer FMSUB/FMADD.
7485 bool AArch64TargetLowering::isProfitableToHoist(Instruction *I) const {
7486   if (I->getOpcode() != Instruction::FMul)
7487     return true;
7488 
7489   if (!I->hasOneUse())
7490     return true;
7491 
7492   Instruction *User = I->user_back();
7493 
7494   if (User &&
7495       !(User->getOpcode() == Instruction::FSub ||
7496         User->getOpcode() == Instruction::FAdd))
7497     return true;
7498 
7499   const TargetOptions &Options = getTargetMachine().Options;
7500   const DataLayout &DL = I->getModule()->getDataLayout();
7501   EVT VT = getValueType(DL, User->getOperand(0)->getType());
7502 
7503   return !(isFMAFasterThanFMulAndFAdd(VT) &&
7504            isOperationLegalOrCustom(ISD::FMA, VT) &&
7505            (Options.AllowFPOpFusion == FPOpFusion::Fast ||
7506             Options.UnsafeFPMath));
7507 }
7508 
7509 // All 32-bit GPR operations implicitly zero the high-half of the corresponding
7510 // 64-bit GPR.
7511 bool AArch64TargetLowering::isZExtFree(Type *Ty1, Type *Ty2) const {
7512   if (!Ty1->isIntegerTy() || !Ty2->isIntegerTy())
7513     return false;
7514   unsigned NumBits1 = Ty1->getPrimitiveSizeInBits();
7515   unsigned NumBits2 = Ty2->getPrimitiveSizeInBits();
7516   return NumBits1 == 32 && NumBits2 == 64;
7517 }
7518 bool AArch64TargetLowering::isZExtFree(EVT VT1, EVT VT2) const {
7519   if (VT1.isVector() || VT2.isVector() || !VT1.isInteger() || !VT2.isInteger())
7520     return false;
7521   unsigned NumBits1 = VT1.getSizeInBits();
7522   unsigned NumBits2 = VT2.getSizeInBits();
7523   return NumBits1 == 32 && NumBits2 == 64;
7524 }
7525 
7526 bool AArch64TargetLowering::isZExtFree(SDValue Val, EVT VT2) const {
7527   EVT VT1 = Val.getValueType();
7528   if (isZExtFree(VT1, VT2)) {
7529     return true;
7530   }
7531 
7532   if (Val.getOpcode() != ISD::LOAD)
7533     return false;
7534 
7535   // 8-, 16-, and 32-bit integer loads all implicitly zero-extend.
7536   return (VT1.isSimple() && !VT1.isVector() && VT1.isInteger() &&
7537           VT2.isSimple() && !VT2.isVector() && VT2.isInteger() &&
7538           VT1.getSizeInBits() <= 32);
7539 }
7540 
7541 bool AArch64TargetLowering::isExtFreeImpl(const Instruction *Ext) const {
7542   if (isa<FPExtInst>(Ext))
7543     return false;
7544 
7545   // Vector types are not free.
7546   if (Ext->getType()->isVectorTy())
7547     return false;
7548 
7549   for (const Use &U : Ext->uses()) {
7550     // The extension is free if we can fold it with a left shift in an
7551     // addressing mode or an arithmetic operation: add, sub, and cmp.
7552 
7553     // Is there a shift?
7554     const Instruction *Instr = cast<Instruction>(U.getUser());
7555 
7556     // Is this a constant shift?
7557     switch (Instr->getOpcode()) {
7558     case Instruction::Shl:
7559       if (!isa<ConstantInt>(Instr->getOperand(1)))
7560         return false;
7561       break;
7562     case Instruction::GetElementPtr: {
7563       gep_type_iterator GTI = gep_type_begin(Instr);
7564       auto &DL = Ext->getModule()->getDataLayout();
7565       std::advance(GTI, U.getOperandNo()-1);
7566       Type *IdxTy = GTI.getIndexedType();
7567       // This extension will end up with a shift because of the scaling factor.
7568       // 8-bit sized types have a scaling factor of 1, thus a shift amount of 0.
7569       // Get the shift amount based on the scaling factor:
7570       // log2(sizeof(IdxTy)) - log2(8).
7571       uint64_t ShiftAmt =
7572           countTrailingZeros(DL.getTypeStoreSizeInBits(IdxTy)) - 3;
7573       // Is the constant foldable in the shift of the addressing mode?
7574       // I.e., shift amount is between 1 and 4 inclusive.
7575       if (ShiftAmt == 0 || ShiftAmt > 4)
7576         return false;
7577       break;
7578     }
7579     case Instruction::Trunc:
7580       // Check if this is a noop.
7581       // trunc(sext ty1 to ty2) to ty1.
7582       if (Instr->getType() == Ext->getOperand(0)->getType())
7583         continue;
7584       LLVM_FALLTHROUGH;
7585     default:
7586       return false;
7587     }
7588 
7589     // At this point we can use the bfm family, so this extension is free
7590     // for that use.
7591   }
7592   return true;
7593 }
7594 
7595 bool AArch64TargetLowering::hasPairedLoad(EVT LoadedType,
7596                                           unsigned &RequiredAligment) const {
7597   if (!LoadedType.isSimple() ||
7598       (!LoadedType.isInteger() && !LoadedType.isFloatingPoint()))
7599     return false;
7600   // Cyclone supports unaligned accesses.
7601   RequiredAligment = 0;
7602   unsigned NumBits = LoadedType.getSizeInBits();
7603   return NumBits == 32 || NumBits == 64;
7604 }
7605 
7606 /// A helper function for determining the number of interleaved accesses we
7607 /// will generate when lowering accesses of the given type.
7608 unsigned
7609 AArch64TargetLowering::getNumInterleavedAccesses(VectorType *VecTy,
7610                                                  const DataLayout &DL) const {
7611   return (DL.getTypeSizeInBits(VecTy) + 127) / 128;
7612 }
7613 
7614 MachineMemOperand::Flags
7615 AArch64TargetLowering::getMMOFlags(const Instruction &I) const {
7616   if (Subtarget->getProcFamily() == AArch64Subtarget::Falkor &&
7617       I.getMetadata(FALKOR_STRIDED_ACCESS_MD) != nullptr)
7618     return MOStridedAccess;
7619   return MachineMemOperand::MONone;
7620 }
7621 
7622 bool AArch64TargetLowering::isLegalInterleavedAccessType(
7623     VectorType *VecTy, const DataLayout &DL) const {
7624 
7625   unsigned VecSize = DL.getTypeSizeInBits(VecTy);
7626   unsigned ElSize = DL.getTypeSizeInBits(VecTy->getElementType());
7627 
7628   // Ensure the number of vector elements is greater than 1.
7629   if (VecTy->getNumElements() < 2)
7630     return false;
7631 
7632   // Ensure the element type is legal.
7633   if (ElSize != 8 && ElSize != 16 && ElSize != 32 && ElSize != 64)
7634     return false;
7635 
7636   // Ensure the total vector size is 64 or a multiple of 128. Types larger than
7637   // 128 will be split into multiple interleaved accesses.
7638   return VecSize == 64 || VecSize % 128 == 0;
7639 }
7640 
7641 /// \brief Lower an interleaved load into a ldN intrinsic.
7642 ///
7643 /// E.g. Lower an interleaved load (Factor = 2):
7644 ///        %wide.vec = load <8 x i32>, <8 x i32>* %ptr
7645 ///        %v0 = shuffle %wide.vec, undef, <0, 2, 4, 6>  ; Extract even elements
7646 ///        %v1 = shuffle %wide.vec, undef, <1, 3, 5, 7>  ; Extract odd elements
7647 ///
7648 ///      Into:
7649 ///        %ld2 = { <4 x i32>, <4 x i32> } call llvm.aarch64.neon.ld2(%ptr)
7650 ///        %vec0 = extractelement { <4 x i32>, <4 x i32> } %ld2, i32 0
7651 ///        %vec1 = extractelement { <4 x i32>, <4 x i32> } %ld2, i32 1
7652 bool AArch64TargetLowering::lowerInterleavedLoad(
7653     LoadInst *LI, ArrayRef<ShuffleVectorInst *> Shuffles,
7654     ArrayRef<unsigned> Indices, unsigned Factor) const {
7655   assert(Factor >= 2 && Factor <= getMaxSupportedInterleaveFactor() &&
7656          "Invalid interleave factor");
7657   assert(!Shuffles.empty() && "Empty shufflevector input");
7658   assert(Shuffles.size() == Indices.size() &&
7659          "Unmatched number of shufflevectors and indices");
7660 
7661   const DataLayout &DL = LI->getModule()->getDataLayout();
7662 
7663   VectorType *VecTy = Shuffles[0]->getType();
7664 
7665   // Skip if we do not have NEON and skip illegal vector types. We can
7666   // "legalize" wide vector types into multiple interleaved accesses as long as
7667   // the vector types are divisible by 128.
7668   if (!Subtarget->hasNEON() || !isLegalInterleavedAccessType(VecTy, DL))
7669     return false;
7670 
7671   unsigned NumLoads = getNumInterleavedAccesses(VecTy, DL);
7672 
7673   // A pointer vector can not be the return type of the ldN intrinsics. Need to
7674   // load integer vectors first and then convert to pointer vectors.
7675   Type *EltTy = VecTy->getVectorElementType();
7676   if (EltTy->isPointerTy())
7677     VecTy =
7678         VectorType::get(DL.getIntPtrType(EltTy), VecTy->getVectorNumElements());
7679 
7680   IRBuilder<> Builder(LI);
7681 
7682   // The base address of the load.
7683   Value *BaseAddr = LI->getPointerOperand();
7684 
7685   if (NumLoads > 1) {
7686     // If we're going to generate more than one load, reset the sub-vector type
7687     // to something legal.
7688     VecTy = VectorType::get(VecTy->getVectorElementType(),
7689                             VecTy->getVectorNumElements() / NumLoads);
7690 
7691     // We will compute the pointer operand of each load from the original base
7692     // address using GEPs. Cast the base address to a pointer to the scalar
7693     // element type.
7694     BaseAddr = Builder.CreateBitCast(
7695         BaseAddr, VecTy->getVectorElementType()->getPointerTo(
7696                       LI->getPointerAddressSpace()));
7697   }
7698 
7699   Type *PtrTy = VecTy->getPointerTo(LI->getPointerAddressSpace());
7700   Type *Tys[2] = {VecTy, PtrTy};
7701   static const Intrinsic::ID LoadInts[3] = {Intrinsic::aarch64_neon_ld2,
7702                                             Intrinsic::aarch64_neon_ld3,
7703                                             Intrinsic::aarch64_neon_ld4};
7704   Function *LdNFunc =
7705       Intrinsic::getDeclaration(LI->getModule(), LoadInts[Factor - 2], Tys);
7706 
7707   // Holds sub-vectors extracted from the load intrinsic return values. The
7708   // sub-vectors are associated with the shufflevector instructions they will
7709   // replace.
7710   DenseMap<ShuffleVectorInst *, SmallVector<Value *, 4>> SubVecs;
7711 
7712   for (unsigned LoadCount = 0; LoadCount < NumLoads; ++LoadCount) {
7713 
7714     // If we're generating more than one load, compute the base address of
7715     // subsequent loads as an offset from the previous.
7716     if (LoadCount > 0)
7717       BaseAddr = Builder.CreateConstGEP1_32(
7718           BaseAddr, VecTy->getVectorNumElements() * Factor);
7719 
7720     CallInst *LdN = Builder.CreateCall(
7721         LdNFunc, Builder.CreateBitCast(BaseAddr, PtrTy), "ldN");
7722 
7723     // Extract and store the sub-vectors returned by the load intrinsic.
7724     for (unsigned i = 0; i < Shuffles.size(); i++) {
7725       ShuffleVectorInst *SVI = Shuffles[i];
7726       unsigned Index = Indices[i];
7727 
7728       Value *SubVec = Builder.CreateExtractValue(LdN, Index);
7729 
7730       // Convert the integer vector to pointer vector if the element is pointer.
7731       if (EltTy->isPointerTy())
7732         SubVec = Builder.CreateIntToPtr(
7733             SubVec, VectorType::get(SVI->getType()->getVectorElementType(),
7734                                     VecTy->getVectorNumElements()));
7735       SubVecs[SVI].push_back(SubVec);
7736     }
7737   }
7738 
7739   // Replace uses of the shufflevector instructions with the sub-vectors
7740   // returned by the load intrinsic. If a shufflevector instruction is
7741   // associated with more than one sub-vector, those sub-vectors will be
7742   // concatenated into a single wide vector.
7743   for (ShuffleVectorInst *SVI : Shuffles) {
7744     auto &SubVec = SubVecs[SVI];
7745     auto *WideVec =
7746         SubVec.size() > 1 ? concatenateVectors(Builder, SubVec) : SubVec[0];
7747     SVI->replaceAllUsesWith(WideVec);
7748   }
7749 
7750   return true;
7751 }
7752 
7753 /// \brief Lower an interleaved store into a stN intrinsic.
7754 ///
7755 /// E.g. Lower an interleaved store (Factor = 3):
7756 ///        %i.vec = shuffle <8 x i32> %v0, <8 x i32> %v1,
7757 ///                 <0, 4, 8, 1, 5, 9, 2, 6, 10, 3, 7, 11>
7758 ///        store <12 x i32> %i.vec, <12 x i32>* %ptr
7759 ///
7760 ///      Into:
7761 ///        %sub.v0 = shuffle <8 x i32> %v0, <8 x i32> v1, <0, 1, 2, 3>
7762 ///        %sub.v1 = shuffle <8 x i32> %v0, <8 x i32> v1, <4, 5, 6, 7>
7763 ///        %sub.v2 = shuffle <8 x i32> %v0, <8 x i32> v1, <8, 9, 10, 11>
7764 ///        call void llvm.aarch64.neon.st3(%sub.v0, %sub.v1, %sub.v2, %ptr)
7765 ///
7766 /// Note that the new shufflevectors will be removed and we'll only generate one
7767 /// st3 instruction in CodeGen.
7768 ///
7769 /// Example for a more general valid mask (Factor 3). Lower:
7770 ///        %i.vec = shuffle <32 x i32> %v0, <32 x i32> %v1,
7771 ///                 <4, 32, 16, 5, 33, 17, 6, 34, 18, 7, 35, 19>
7772 ///        store <12 x i32> %i.vec, <12 x i32>* %ptr
7773 ///
7774 ///      Into:
7775 ///        %sub.v0 = shuffle <32 x i32> %v0, <32 x i32> v1, <4, 5, 6, 7>
7776 ///        %sub.v1 = shuffle <32 x i32> %v0, <32 x i32> v1, <32, 33, 34, 35>
7777 ///        %sub.v2 = shuffle <32 x i32> %v0, <32 x i32> v1, <16, 17, 18, 19>
7778 ///        call void llvm.aarch64.neon.st3(%sub.v0, %sub.v1, %sub.v2, %ptr)
7779 bool AArch64TargetLowering::lowerInterleavedStore(StoreInst *SI,
7780                                                   ShuffleVectorInst *SVI,
7781                                                   unsigned Factor) const {
7782   assert(Factor >= 2 && Factor <= getMaxSupportedInterleaveFactor() &&
7783          "Invalid interleave factor");
7784 
7785   VectorType *VecTy = SVI->getType();
7786   assert(VecTy->getVectorNumElements() % Factor == 0 &&
7787          "Invalid interleaved store");
7788 
7789   unsigned LaneLen = VecTy->getVectorNumElements() / Factor;
7790   Type *EltTy = VecTy->getVectorElementType();
7791   VectorType *SubVecTy = VectorType::get(EltTy, LaneLen);
7792 
7793   const DataLayout &DL = SI->getModule()->getDataLayout();
7794 
7795   // Skip if we do not have NEON and skip illegal vector types. We can
7796   // "legalize" wide vector types into multiple interleaved accesses as long as
7797   // the vector types are divisible by 128.
7798   if (!Subtarget->hasNEON() || !isLegalInterleavedAccessType(SubVecTy, DL))
7799     return false;
7800 
7801   unsigned NumStores = getNumInterleavedAccesses(SubVecTy, DL);
7802 
7803   Value *Op0 = SVI->getOperand(0);
7804   Value *Op1 = SVI->getOperand(1);
7805   IRBuilder<> Builder(SI);
7806 
7807   // StN intrinsics don't support pointer vectors as arguments. Convert pointer
7808   // vectors to integer vectors.
7809   if (EltTy->isPointerTy()) {
7810     Type *IntTy = DL.getIntPtrType(EltTy);
7811     unsigned NumOpElts =
7812         dyn_cast<VectorType>(Op0->getType())->getVectorNumElements();
7813 
7814     // Convert to the corresponding integer vector.
7815     Type *IntVecTy = VectorType::get(IntTy, NumOpElts);
7816     Op0 = Builder.CreatePtrToInt(Op0, IntVecTy);
7817     Op1 = Builder.CreatePtrToInt(Op1, IntVecTy);
7818 
7819     SubVecTy = VectorType::get(IntTy, LaneLen);
7820   }
7821 
7822   // The base address of the store.
7823   Value *BaseAddr = SI->getPointerOperand();
7824 
7825   if (NumStores > 1) {
7826     // If we're going to generate more than one store, reset the lane length
7827     // and sub-vector type to something legal.
7828     LaneLen /= NumStores;
7829     SubVecTy = VectorType::get(SubVecTy->getVectorElementType(), LaneLen);
7830 
7831     // We will compute the pointer operand of each store from the original base
7832     // address using GEPs. Cast the base address to a pointer to the scalar
7833     // element type.
7834     BaseAddr = Builder.CreateBitCast(
7835         BaseAddr, SubVecTy->getVectorElementType()->getPointerTo(
7836                       SI->getPointerAddressSpace()));
7837   }
7838 
7839   auto Mask = SVI->getShuffleMask();
7840 
7841   Type *PtrTy = SubVecTy->getPointerTo(SI->getPointerAddressSpace());
7842   Type *Tys[2] = {SubVecTy, PtrTy};
7843   static const Intrinsic::ID StoreInts[3] = {Intrinsic::aarch64_neon_st2,
7844                                              Intrinsic::aarch64_neon_st3,
7845                                              Intrinsic::aarch64_neon_st4};
7846   Function *StNFunc =
7847       Intrinsic::getDeclaration(SI->getModule(), StoreInts[Factor - 2], Tys);
7848 
7849   for (unsigned StoreCount = 0; StoreCount < NumStores; ++StoreCount) {
7850 
7851     SmallVector<Value *, 5> Ops;
7852 
7853     // Split the shufflevector operands into sub vectors for the new stN call.
7854     for (unsigned i = 0; i < Factor; i++) {
7855       unsigned IdxI = StoreCount * LaneLen * Factor + i;
7856       if (Mask[IdxI] >= 0) {
7857         Ops.push_back(Builder.CreateShuffleVector(
7858             Op0, Op1, createSequentialMask(Builder, Mask[IdxI], LaneLen, 0)));
7859       } else {
7860         unsigned StartMask = 0;
7861         for (unsigned j = 1; j < LaneLen; j++) {
7862           unsigned IdxJ = StoreCount * LaneLen * Factor + j;
7863           if (Mask[IdxJ * Factor + IdxI] >= 0) {
7864             StartMask = Mask[IdxJ * Factor + IdxI] - IdxJ;
7865             break;
7866           }
7867         }
7868         // Note: Filling undef gaps with random elements is ok, since
7869         // those elements were being written anyway (with undefs).
7870         // In the case of all undefs we're defaulting to using elems from 0
7871         // Note: StartMask cannot be negative, it's checked in
7872         // isReInterleaveMask
7873         Ops.push_back(Builder.CreateShuffleVector(
7874             Op0, Op1, createSequentialMask(Builder, StartMask, LaneLen, 0)));
7875       }
7876     }
7877 
7878     // If we generating more than one store, we compute the base address of
7879     // subsequent stores as an offset from the previous.
7880     if (StoreCount > 0)
7881       BaseAddr = Builder.CreateConstGEP1_32(BaseAddr, LaneLen * Factor);
7882 
7883     Ops.push_back(Builder.CreateBitCast(BaseAddr, PtrTy));
7884     Builder.CreateCall(StNFunc, Ops);
7885   }
7886   return true;
7887 }
7888 
7889 static bool memOpAlign(unsigned DstAlign, unsigned SrcAlign,
7890                        unsigned AlignCheck) {
7891   return ((SrcAlign == 0 || SrcAlign % AlignCheck == 0) &&
7892           (DstAlign == 0 || DstAlign % AlignCheck == 0));
7893 }
7894 
7895 EVT AArch64TargetLowering::getOptimalMemOpType(uint64_t Size, unsigned DstAlign,
7896                                                unsigned SrcAlign, bool IsMemset,
7897                                                bool ZeroMemset,
7898                                                bool MemcpyStrSrc,
7899                                                MachineFunction &MF) const {
7900   // Don't use AdvSIMD to implement 16-byte memset. It would have taken one
7901   // instruction to materialize the v2i64 zero and one store (with restrictive
7902   // addressing mode). Just do two i64 store of zero-registers.
7903   bool Fast;
7904   const Function *F = MF.getFunction();
7905   if (Subtarget->hasFPARMv8() && !IsMemset && Size >= 16 &&
7906       !F->hasFnAttribute(Attribute::NoImplicitFloat) &&
7907       (memOpAlign(SrcAlign, DstAlign, 16) ||
7908        (allowsMisalignedMemoryAccesses(MVT::f128, 0, 1, &Fast) && Fast)))
7909     return MVT::f128;
7910 
7911   if (Size >= 8 &&
7912       (memOpAlign(SrcAlign, DstAlign, 8) ||
7913        (allowsMisalignedMemoryAccesses(MVT::i64, 0, 1, &Fast) && Fast)))
7914     return MVT::i64;
7915 
7916   if (Size >= 4 &&
7917       (memOpAlign(SrcAlign, DstAlign, 4) ||
7918        (allowsMisalignedMemoryAccesses(MVT::i32, 0, 1, &Fast) && Fast)))
7919     return MVT::i32;
7920 
7921   return MVT::Other;
7922 }
7923 
7924 // 12-bit optionally shifted immediates are legal for adds.
7925 bool AArch64TargetLowering::isLegalAddImmediate(int64_t Immed) const {
7926   if (Immed == std::numeric_limits<int64_t>::min()) {
7927     DEBUG(dbgs() << "Illegal add imm " << Immed << ": avoid UB for INT64_MIN\n");
7928     return false;
7929   }
7930   // Same encoding for add/sub, just flip the sign.
7931   Immed = std::abs(Immed);
7932   bool IsLegal = ((Immed >> 12) == 0 ||
7933                   ((Immed & 0xfff) == 0 && Immed >> 24 == 0));
7934   DEBUG(dbgs() << "Is " << Immed << " legal add imm: " <<
7935         (IsLegal ? "yes" : "no") << "\n");
7936   return IsLegal;
7937 }
7938 
7939 // Integer comparisons are implemented with ADDS/SUBS, so the range of valid
7940 // immediates is the same as for an add or a sub.
7941 bool AArch64TargetLowering::isLegalICmpImmediate(int64_t Immed) const {
7942   return isLegalAddImmediate(Immed);
7943 }
7944 
7945 /// isLegalAddressingMode - Return true if the addressing mode represented
7946 /// by AM is legal for this target, for a load/store of the specified type.
7947 bool AArch64TargetLowering::isLegalAddressingMode(const DataLayout &DL,
7948                                                   const AddrMode &AM, Type *Ty,
7949                                                   unsigned AS, Instruction *I) const {
7950   // AArch64 has five basic addressing modes:
7951   //  reg
7952   //  reg + 9-bit signed offset
7953   //  reg + SIZE_IN_BYTES * 12-bit unsigned offset
7954   //  reg1 + reg2
7955   //  reg + SIZE_IN_BYTES * reg
7956 
7957   // No global is ever allowed as a base.
7958   if (AM.BaseGV)
7959     return false;
7960 
7961   // No reg+reg+imm addressing.
7962   if (AM.HasBaseReg && AM.BaseOffs && AM.Scale)
7963     return false;
7964 
7965   // check reg + imm case:
7966   // i.e., reg + 0, reg + imm9, reg + SIZE_IN_BYTES * uimm12
7967   uint64_t NumBytes = 0;
7968   if (Ty->isSized()) {
7969     uint64_t NumBits = DL.getTypeSizeInBits(Ty);
7970     NumBytes = NumBits / 8;
7971     if (!isPowerOf2_64(NumBits))
7972       NumBytes = 0;
7973   }
7974 
7975   if (!AM.Scale) {
7976     int64_t Offset = AM.BaseOffs;
7977 
7978     // 9-bit signed offset
7979     if (isInt<9>(Offset))
7980       return true;
7981 
7982     // 12-bit unsigned offset
7983     unsigned shift = Log2_64(NumBytes);
7984     if (NumBytes && Offset > 0 && (Offset / NumBytes) <= (1LL << 12) - 1 &&
7985         // Must be a multiple of NumBytes (NumBytes is a power of 2)
7986         (Offset >> shift) << shift == Offset)
7987       return true;
7988     return false;
7989   }
7990 
7991   // Check reg1 + SIZE_IN_BYTES * reg2 and reg1 + reg2
7992 
7993   return AM.Scale == 1 || (AM.Scale > 0 && (uint64_t)AM.Scale == NumBytes);
7994 }
7995 
7996 int AArch64TargetLowering::getScalingFactorCost(const DataLayout &DL,
7997                                                 const AddrMode &AM, Type *Ty,
7998                                                 unsigned AS) const {
7999   // Scaling factors are not free at all.
8000   // Operands                     | Rt Latency
8001   // -------------------------------------------
8002   // Rt, [Xn, Xm]                 | 4
8003   // -------------------------------------------
8004   // Rt, [Xn, Xm, lsl #imm]       | Rn: 4 Rm: 5
8005   // Rt, [Xn, Wm, <extend> #imm]  |
8006   if (isLegalAddressingMode(DL, AM, Ty, AS))
8007     // Scale represents reg2 * scale, thus account for 1 if
8008     // it is not equal to 0 or 1.
8009     return AM.Scale != 0 && AM.Scale != 1;
8010   return -1;
8011 }
8012 
8013 bool AArch64TargetLowering::isFMAFasterThanFMulAndFAdd(EVT VT) const {
8014   VT = VT.getScalarType();
8015 
8016   if (!VT.isSimple())
8017     return false;
8018 
8019   switch (VT.getSimpleVT().SimpleTy) {
8020   case MVT::f32:
8021   case MVT::f64:
8022     return true;
8023   default:
8024     break;
8025   }
8026 
8027   return false;
8028 }
8029 
8030 const MCPhysReg *
8031 AArch64TargetLowering::getScratchRegisters(CallingConv::ID) const {
8032   // LR is a callee-save register, but we must treat it as clobbered by any call
8033   // site. Hence we include LR in the scratch registers, which are in turn added
8034   // as implicit-defs for stackmaps and patchpoints.
8035   static const MCPhysReg ScratchRegs[] = {
8036     AArch64::X16, AArch64::X17, AArch64::LR, 0
8037   };
8038   return ScratchRegs;
8039 }
8040 
8041 bool
8042 AArch64TargetLowering::isDesirableToCommuteWithShift(const SDNode *N) const {
8043   EVT VT = N->getValueType(0);
8044     // If N is unsigned bit extraction: ((x >> C) & mask), then do not combine
8045     // it with shift to let it be lowered to UBFX.
8046   if (N->getOpcode() == ISD::AND && (VT == MVT::i32 || VT == MVT::i64) &&
8047       isa<ConstantSDNode>(N->getOperand(1))) {
8048     uint64_t TruncMask = N->getConstantOperandVal(1);
8049     if (isMask_64(TruncMask) &&
8050       N->getOperand(0).getOpcode() == ISD::SRL &&
8051       isa<ConstantSDNode>(N->getOperand(0)->getOperand(1)))
8052       return false;
8053   }
8054   return true;
8055 }
8056 
8057 bool AArch64TargetLowering::shouldConvertConstantLoadToIntImm(const APInt &Imm,
8058                                                               Type *Ty) const {
8059   assert(Ty->isIntegerTy());
8060 
8061   unsigned BitSize = Ty->getPrimitiveSizeInBits();
8062   if (BitSize == 0)
8063     return false;
8064 
8065   int64_t Val = Imm.getSExtValue();
8066   if (Val == 0 || AArch64_AM::isLogicalImmediate(Val, BitSize))
8067     return true;
8068 
8069   if ((int64_t)Val < 0)
8070     Val = ~Val;
8071   if (BitSize == 32)
8072     Val &= (1LL << 32) - 1;
8073 
8074   unsigned LZ = countLeadingZeros((uint64_t)Val);
8075   unsigned Shift = (63 - LZ) / 16;
8076   // MOVZ is free so return true for one or fewer MOVK.
8077   return Shift < 3;
8078 }
8079 
8080 /// Turn vector tests of the signbit in the form of:
8081 ///   xor (sra X, elt_size(X)-1), -1
8082 /// into:
8083 ///   cmge X, X, #0
8084 static SDValue foldVectorXorShiftIntoCmp(SDNode *N, SelectionDAG &DAG,
8085                                          const AArch64Subtarget *Subtarget) {
8086   EVT VT = N->getValueType(0);
8087   if (!Subtarget->hasNEON() || !VT.isVector())
8088     return SDValue();
8089 
8090   // There must be a shift right algebraic before the xor, and the xor must be a
8091   // 'not' operation.
8092   SDValue Shift = N->getOperand(0);
8093   SDValue Ones = N->getOperand(1);
8094   if (Shift.getOpcode() != AArch64ISD::VASHR || !Shift.hasOneUse() ||
8095       !ISD::isBuildVectorAllOnes(Ones.getNode()))
8096     return SDValue();
8097 
8098   // The shift should be smearing the sign bit across each vector element.
8099   auto *ShiftAmt = dyn_cast<ConstantSDNode>(Shift.getOperand(1));
8100   EVT ShiftEltTy = Shift.getValueType().getVectorElementType();
8101   if (!ShiftAmt || ShiftAmt->getZExtValue() != ShiftEltTy.getSizeInBits() - 1)
8102     return SDValue();
8103 
8104   return DAG.getNode(AArch64ISD::CMGEz, SDLoc(N), VT, Shift.getOperand(0));
8105 }
8106 
8107 // Generate SUBS and CSEL for integer abs.
8108 static SDValue performIntegerAbsCombine(SDNode *N, SelectionDAG &DAG) {
8109   EVT VT = N->getValueType(0);
8110 
8111   SDValue N0 = N->getOperand(0);
8112   SDValue N1 = N->getOperand(1);
8113   SDLoc DL(N);
8114 
8115   // Check pattern of XOR(ADD(X,Y), Y) where Y is SRA(X, size(X)-1)
8116   // and change it to SUB and CSEL.
8117   if (VT.isInteger() && N->getOpcode() == ISD::XOR &&
8118       N0.getOpcode() == ISD::ADD && N0.getOperand(1) == N1 &&
8119       N1.getOpcode() == ISD::SRA && N1.getOperand(0) == N0.getOperand(0))
8120     if (ConstantSDNode *Y1C = dyn_cast<ConstantSDNode>(N1.getOperand(1)))
8121       if (Y1C->getAPIntValue() == VT.getSizeInBits() - 1) {
8122         SDValue Neg = DAG.getNode(ISD::SUB, DL, VT, DAG.getConstant(0, DL, VT),
8123                                   N0.getOperand(0));
8124         // Generate SUBS & CSEL.
8125         SDValue Cmp =
8126             DAG.getNode(AArch64ISD::SUBS, DL, DAG.getVTList(VT, MVT::i32),
8127                         N0.getOperand(0), DAG.getConstant(0, DL, VT));
8128         return DAG.getNode(AArch64ISD::CSEL, DL, VT, N0.getOperand(0), Neg,
8129                            DAG.getConstant(AArch64CC::PL, DL, MVT::i32),
8130                            SDValue(Cmp.getNode(), 1));
8131       }
8132   return SDValue();
8133 }
8134 
8135 static SDValue performXorCombine(SDNode *N, SelectionDAG &DAG,
8136                                  TargetLowering::DAGCombinerInfo &DCI,
8137                                  const AArch64Subtarget *Subtarget) {
8138   if (DCI.isBeforeLegalizeOps())
8139     return SDValue();
8140 
8141   if (SDValue Cmp = foldVectorXorShiftIntoCmp(N, DAG, Subtarget))
8142     return Cmp;
8143 
8144   return performIntegerAbsCombine(N, DAG);
8145 }
8146 
8147 SDValue
8148 AArch64TargetLowering::BuildSDIVPow2(SDNode *N, const APInt &Divisor,
8149                                      SelectionDAG &DAG,
8150                                      std::vector<SDNode *> *Created) const {
8151   AttributeList Attr = DAG.getMachineFunction().getFunction()->getAttributes();
8152   if (isIntDivCheap(N->getValueType(0), Attr))
8153     return SDValue(N,0); // Lower SDIV as SDIV
8154 
8155   // fold (sdiv X, pow2)
8156   EVT VT = N->getValueType(0);
8157   if ((VT != MVT::i32 && VT != MVT::i64) ||
8158       !(Divisor.isPowerOf2() || (-Divisor).isPowerOf2()))
8159     return SDValue();
8160 
8161   SDLoc DL(N);
8162   SDValue N0 = N->getOperand(0);
8163   unsigned Lg2 = Divisor.countTrailingZeros();
8164   SDValue Zero = DAG.getConstant(0, DL, VT);
8165   SDValue Pow2MinusOne = DAG.getConstant((1ULL << Lg2) - 1, DL, VT);
8166 
8167   // Add (N0 < 0) ? Pow2 - 1 : 0;
8168   SDValue CCVal;
8169   SDValue Cmp = getAArch64Cmp(N0, Zero, ISD::SETLT, CCVal, DAG, DL);
8170   SDValue Add = DAG.getNode(ISD::ADD, DL, VT, N0, Pow2MinusOne);
8171   SDValue CSel = DAG.getNode(AArch64ISD::CSEL, DL, VT, Add, N0, CCVal, Cmp);
8172 
8173   if (Created) {
8174     Created->push_back(Cmp.getNode());
8175     Created->push_back(Add.getNode());
8176     Created->push_back(CSel.getNode());
8177   }
8178 
8179   // Divide by pow2.
8180   SDValue SRA =
8181       DAG.getNode(ISD::SRA, DL, VT, CSel, DAG.getConstant(Lg2, DL, MVT::i64));
8182 
8183   // If we're dividing by a positive value, we're done.  Otherwise, we must
8184   // negate the result.
8185   if (Divisor.isNonNegative())
8186     return SRA;
8187 
8188   if (Created)
8189     Created->push_back(SRA.getNode());
8190   return DAG.getNode(ISD::SUB, DL, VT, DAG.getConstant(0, DL, VT), SRA);
8191 }
8192 
8193 static SDValue performMulCombine(SDNode *N, SelectionDAG &DAG,
8194                                  TargetLowering::DAGCombinerInfo &DCI,
8195                                  const AArch64Subtarget *Subtarget) {
8196   if (DCI.isBeforeLegalizeOps())
8197     return SDValue();
8198 
8199   // The below optimizations require a constant RHS.
8200   if (!isa<ConstantSDNode>(N->getOperand(1)))
8201     return SDValue();
8202 
8203   ConstantSDNode *C = cast<ConstantSDNode>(N->getOperand(1));
8204   const APInt &ConstValue = C->getAPIntValue();
8205 
8206   // Multiplication of a power of two plus/minus one can be done more
8207   // cheaply as as shift+add/sub. For now, this is true unilaterally. If
8208   // future CPUs have a cheaper MADD instruction, this may need to be
8209   // gated on a subtarget feature. For Cyclone, 32-bit MADD is 4 cycles and
8210   // 64-bit is 5 cycles, so this is always a win.
8211   // More aggressively, some multiplications N0 * C can be lowered to
8212   // shift+add+shift if the constant C = A * B where A = 2^N + 1 and B = 2^M,
8213   // e.g. 6=3*2=(2+1)*2.
8214   // TODO: consider lowering more cases, e.g. C = 14, -6, -14 or even 45
8215   // which equals to (1+2)*16-(1+2).
8216   SDValue N0 = N->getOperand(0);
8217   // TrailingZeroes is used to test if the mul can be lowered to
8218   // shift+add+shift.
8219   unsigned TrailingZeroes = ConstValue.countTrailingZeros();
8220   if (TrailingZeroes) {
8221     // Conservatively do not lower to shift+add+shift if the mul might be
8222     // folded into smul or umul.
8223     if (N0->hasOneUse() && (isSignExtended(N0.getNode(), DAG) ||
8224                             isZeroExtended(N0.getNode(), DAG)))
8225       return SDValue();
8226     // Conservatively do not lower to shift+add+shift if the mul might be
8227     // folded into madd or msub.
8228     if (N->hasOneUse() && (N->use_begin()->getOpcode() == ISD::ADD ||
8229                            N->use_begin()->getOpcode() == ISD::SUB))
8230       return SDValue();
8231   }
8232   // Use ShiftedConstValue instead of ConstValue to support both shift+add/sub
8233   // and shift+add+shift.
8234   APInt ShiftedConstValue = ConstValue.ashr(TrailingZeroes);
8235 
8236   unsigned ShiftAmt, AddSubOpc;
8237   // Is the shifted value the LHS operand of the add/sub?
8238   bool ShiftValUseIsN0 = true;
8239   // Do we need to negate the result?
8240   bool NegateResult = false;
8241 
8242   if (ConstValue.isNonNegative()) {
8243     // (mul x, 2^N + 1) => (add (shl x, N), x)
8244     // (mul x, 2^N - 1) => (sub (shl x, N), x)
8245     // (mul x, (2^N + 1) * 2^M) => (shl (add (shl x, N), x), M)
8246     APInt SCVMinus1 = ShiftedConstValue - 1;
8247     APInt CVPlus1 = ConstValue + 1;
8248     if (SCVMinus1.isPowerOf2()) {
8249       ShiftAmt = SCVMinus1.logBase2();
8250       AddSubOpc = ISD::ADD;
8251     } else if (CVPlus1.isPowerOf2()) {
8252       ShiftAmt = CVPlus1.logBase2();
8253       AddSubOpc = ISD::SUB;
8254     } else
8255       return SDValue();
8256   } else {
8257     // (mul x, -(2^N - 1)) => (sub x, (shl x, N))
8258     // (mul x, -(2^N + 1)) => - (add (shl x, N), x)
8259     APInt CVNegPlus1 = -ConstValue + 1;
8260     APInt CVNegMinus1 = -ConstValue - 1;
8261     if (CVNegPlus1.isPowerOf2()) {
8262       ShiftAmt = CVNegPlus1.logBase2();
8263       AddSubOpc = ISD::SUB;
8264       ShiftValUseIsN0 = false;
8265     } else if (CVNegMinus1.isPowerOf2()) {
8266       ShiftAmt = CVNegMinus1.logBase2();
8267       AddSubOpc = ISD::ADD;
8268       NegateResult = true;
8269     } else
8270       return SDValue();
8271   }
8272 
8273   SDLoc DL(N);
8274   EVT VT = N->getValueType(0);
8275   SDValue ShiftedVal = DAG.getNode(ISD::SHL, DL, VT, N0,
8276                                    DAG.getConstant(ShiftAmt, DL, MVT::i64));
8277 
8278   SDValue AddSubN0 = ShiftValUseIsN0 ? ShiftedVal : N0;
8279   SDValue AddSubN1 = ShiftValUseIsN0 ? N0 : ShiftedVal;
8280   SDValue Res = DAG.getNode(AddSubOpc, DL, VT, AddSubN0, AddSubN1);
8281   assert(!(NegateResult && TrailingZeroes) &&
8282          "NegateResult and TrailingZeroes cannot both be true for now.");
8283   // Negate the result.
8284   if (NegateResult)
8285     return DAG.getNode(ISD::SUB, DL, VT, DAG.getConstant(0, DL, VT), Res);
8286   // Shift the result.
8287   if (TrailingZeroes)
8288     return DAG.getNode(ISD::SHL, DL, VT, Res,
8289                        DAG.getConstant(TrailingZeroes, DL, MVT::i64));
8290   return Res;
8291 }
8292 
8293 static SDValue performVectorCompareAndMaskUnaryOpCombine(SDNode *N,
8294                                                          SelectionDAG &DAG) {
8295   // Take advantage of vector comparisons producing 0 or -1 in each lane to
8296   // optimize away operation when it's from a constant.
8297   //
8298   // The general transformation is:
8299   //    UNARYOP(AND(VECTOR_CMP(x,y), constant)) -->
8300   //       AND(VECTOR_CMP(x,y), constant2)
8301   //    constant2 = UNARYOP(constant)
8302 
8303   // Early exit if this isn't a vector operation, the operand of the
8304   // unary operation isn't a bitwise AND, or if the sizes of the operations
8305   // aren't the same.
8306   EVT VT = N->getValueType(0);
8307   if (!VT.isVector() || N->getOperand(0)->getOpcode() != ISD::AND ||
8308       N->getOperand(0)->getOperand(0)->getOpcode() != ISD::SETCC ||
8309       VT.getSizeInBits() != N->getOperand(0)->getValueType(0).getSizeInBits())
8310     return SDValue();
8311 
8312   // Now check that the other operand of the AND is a constant. We could
8313   // make the transformation for non-constant splats as well, but it's unclear
8314   // that would be a benefit as it would not eliminate any operations, just
8315   // perform one more step in scalar code before moving to the vector unit.
8316   if (BuildVectorSDNode *BV =
8317           dyn_cast<BuildVectorSDNode>(N->getOperand(0)->getOperand(1))) {
8318     // Bail out if the vector isn't a constant.
8319     if (!BV->isConstant())
8320       return SDValue();
8321 
8322     // Everything checks out. Build up the new and improved node.
8323     SDLoc DL(N);
8324     EVT IntVT = BV->getValueType(0);
8325     // Create a new constant of the appropriate type for the transformed
8326     // DAG.
8327     SDValue SourceConst = DAG.getNode(N->getOpcode(), DL, VT, SDValue(BV, 0));
8328     // The AND node needs bitcasts to/from an integer vector type around it.
8329     SDValue MaskConst = DAG.getNode(ISD::BITCAST, DL, IntVT, SourceConst);
8330     SDValue NewAnd = DAG.getNode(ISD::AND, DL, IntVT,
8331                                  N->getOperand(0)->getOperand(0), MaskConst);
8332     SDValue Res = DAG.getNode(ISD::BITCAST, DL, VT, NewAnd);
8333     return Res;
8334   }
8335 
8336   return SDValue();
8337 }
8338 
8339 static SDValue performIntToFpCombine(SDNode *N, SelectionDAG &DAG,
8340                                      const AArch64Subtarget *Subtarget) {
8341   // First try to optimize away the conversion when it's conditionally from
8342   // a constant. Vectors only.
8343   if (SDValue Res = performVectorCompareAndMaskUnaryOpCombine(N, DAG))
8344     return Res;
8345 
8346   EVT VT = N->getValueType(0);
8347   if (VT != MVT::f32 && VT != MVT::f64)
8348     return SDValue();
8349 
8350   // Only optimize when the source and destination types have the same width.
8351   if (VT.getSizeInBits() != N->getOperand(0).getValueSizeInBits())
8352     return SDValue();
8353 
8354   // If the result of an integer load is only used by an integer-to-float
8355   // conversion, use a fp load instead and a AdvSIMD scalar {S|U}CVTF instead.
8356   // This eliminates an "integer-to-vector-move" UOP and improves throughput.
8357   SDValue N0 = N->getOperand(0);
8358   if (Subtarget->hasNEON() && ISD::isNormalLoad(N0.getNode()) && N0.hasOneUse() &&
8359       // Do not change the width of a volatile load.
8360       !cast<LoadSDNode>(N0)->isVolatile()) {
8361     LoadSDNode *LN0 = cast<LoadSDNode>(N0);
8362     SDValue Load = DAG.getLoad(VT, SDLoc(N), LN0->getChain(), LN0->getBasePtr(),
8363                                LN0->getPointerInfo(), LN0->getAlignment(),
8364                                LN0->getMemOperand()->getFlags());
8365 
8366     // Make sure successors of the original load stay after it by updating them
8367     // to use the new Chain.
8368     DAG.ReplaceAllUsesOfValueWith(SDValue(LN0, 1), Load.getValue(1));
8369 
8370     unsigned Opcode =
8371         (N->getOpcode() == ISD::SINT_TO_FP) ? AArch64ISD::SITOF : AArch64ISD::UITOF;
8372     return DAG.getNode(Opcode, SDLoc(N), VT, Load);
8373   }
8374 
8375   return SDValue();
8376 }
8377 
8378 /// Fold a floating-point multiply by power of two into floating-point to
8379 /// fixed-point conversion.
8380 static SDValue performFpToIntCombine(SDNode *N, SelectionDAG &DAG,
8381                                      TargetLowering::DAGCombinerInfo &DCI,
8382                                      const AArch64Subtarget *Subtarget) {
8383   if (!Subtarget->hasNEON())
8384     return SDValue();
8385 
8386   SDValue Op = N->getOperand(0);
8387   if (!Op.getValueType().isVector() || !Op.getValueType().isSimple() ||
8388       Op.getOpcode() != ISD::FMUL)
8389     return SDValue();
8390 
8391   SDValue ConstVec = Op->getOperand(1);
8392   if (!isa<BuildVectorSDNode>(ConstVec))
8393     return SDValue();
8394 
8395   MVT FloatTy = Op.getSimpleValueType().getVectorElementType();
8396   uint32_t FloatBits = FloatTy.getSizeInBits();
8397   if (FloatBits != 32 && FloatBits != 64)
8398     return SDValue();
8399 
8400   MVT IntTy = N->getSimpleValueType(0).getVectorElementType();
8401   uint32_t IntBits = IntTy.getSizeInBits();
8402   if (IntBits != 16 && IntBits != 32 && IntBits != 64)
8403     return SDValue();
8404 
8405   // Avoid conversions where iN is larger than the float (e.g., float -> i64).
8406   if (IntBits > FloatBits)
8407     return SDValue();
8408 
8409   BitVector UndefElements;
8410   BuildVectorSDNode *BV = cast<BuildVectorSDNode>(ConstVec);
8411   int32_t Bits = IntBits == 64 ? 64 : 32;
8412   int32_t C = BV->getConstantFPSplatPow2ToLog2Int(&UndefElements, Bits + 1);
8413   if (C == -1 || C == 0 || C > Bits)
8414     return SDValue();
8415 
8416   MVT ResTy;
8417   unsigned NumLanes = Op.getValueType().getVectorNumElements();
8418   switch (NumLanes) {
8419   default:
8420     return SDValue();
8421   case 2:
8422     ResTy = FloatBits == 32 ? MVT::v2i32 : MVT::v2i64;
8423     break;
8424   case 4:
8425     ResTy = FloatBits == 32 ? MVT::v4i32 : MVT::v4i64;
8426     break;
8427   }
8428 
8429   if (ResTy == MVT::v4i64 && DCI.isBeforeLegalizeOps())
8430     return SDValue();
8431 
8432   assert((ResTy != MVT::v4i64 || DCI.isBeforeLegalizeOps()) &&
8433          "Illegal vector type after legalization");
8434 
8435   SDLoc DL(N);
8436   bool IsSigned = N->getOpcode() == ISD::FP_TO_SINT;
8437   unsigned IntrinsicOpcode = IsSigned ? Intrinsic::aarch64_neon_vcvtfp2fxs
8438                                       : Intrinsic::aarch64_neon_vcvtfp2fxu;
8439   SDValue FixConv =
8440       DAG.getNode(ISD::INTRINSIC_WO_CHAIN, DL, ResTy,
8441                   DAG.getConstant(IntrinsicOpcode, DL, MVT::i32),
8442                   Op->getOperand(0), DAG.getConstant(C, DL, MVT::i32));
8443   // We can handle smaller integers by generating an extra trunc.
8444   if (IntBits < FloatBits)
8445     FixConv = DAG.getNode(ISD::TRUNCATE, DL, N->getValueType(0), FixConv);
8446 
8447   return FixConv;
8448 }
8449 
8450 /// Fold a floating-point divide by power of two into fixed-point to
8451 /// floating-point conversion.
8452 static SDValue performFDivCombine(SDNode *N, SelectionDAG &DAG,
8453                                   TargetLowering::DAGCombinerInfo &DCI,
8454                                   const AArch64Subtarget *Subtarget) {
8455   if (!Subtarget->hasNEON())
8456     return SDValue();
8457 
8458   SDValue Op = N->getOperand(0);
8459   unsigned Opc = Op->getOpcode();
8460   if (!Op.getValueType().isVector() || !Op.getValueType().isSimple() ||
8461       !Op.getOperand(0).getValueType().isSimple() ||
8462       (Opc != ISD::SINT_TO_FP && Opc != ISD::UINT_TO_FP))
8463     return SDValue();
8464 
8465   SDValue ConstVec = N->getOperand(1);
8466   if (!isa<BuildVectorSDNode>(ConstVec))
8467     return SDValue();
8468 
8469   MVT IntTy = Op.getOperand(0).getSimpleValueType().getVectorElementType();
8470   int32_t IntBits = IntTy.getSizeInBits();
8471   if (IntBits != 16 && IntBits != 32 && IntBits != 64)
8472     return SDValue();
8473 
8474   MVT FloatTy = N->getSimpleValueType(0).getVectorElementType();
8475   int32_t FloatBits = FloatTy.getSizeInBits();
8476   if (FloatBits != 32 && FloatBits != 64)
8477     return SDValue();
8478 
8479   // Avoid conversions where iN is larger than the float (e.g., i64 -> float).
8480   if (IntBits > FloatBits)
8481     return SDValue();
8482 
8483   BitVector UndefElements;
8484   BuildVectorSDNode *BV = cast<BuildVectorSDNode>(ConstVec);
8485   int32_t C = BV->getConstantFPSplatPow2ToLog2Int(&UndefElements, FloatBits + 1);
8486   if (C == -1 || C == 0 || C > FloatBits)
8487     return SDValue();
8488 
8489   MVT ResTy;
8490   unsigned NumLanes = Op.getValueType().getVectorNumElements();
8491   switch (NumLanes) {
8492   default:
8493     return SDValue();
8494   case 2:
8495     ResTy = FloatBits == 32 ? MVT::v2i32 : MVT::v2i64;
8496     break;
8497   case 4:
8498     ResTy = FloatBits == 32 ? MVT::v4i32 : MVT::v4i64;
8499     break;
8500   }
8501 
8502   if (ResTy == MVT::v4i64 && DCI.isBeforeLegalizeOps())
8503     return SDValue();
8504 
8505   SDLoc DL(N);
8506   SDValue ConvInput = Op.getOperand(0);
8507   bool IsSigned = Opc == ISD::SINT_TO_FP;
8508   if (IntBits < FloatBits)
8509     ConvInput = DAG.getNode(IsSigned ? ISD::SIGN_EXTEND : ISD::ZERO_EXTEND, DL,
8510                             ResTy, ConvInput);
8511 
8512   unsigned IntrinsicOpcode = IsSigned ? Intrinsic::aarch64_neon_vcvtfxs2fp
8513                                       : Intrinsic::aarch64_neon_vcvtfxu2fp;
8514   return DAG.getNode(ISD::INTRINSIC_WO_CHAIN, DL, Op.getValueType(),
8515                      DAG.getConstant(IntrinsicOpcode, DL, MVT::i32), ConvInput,
8516                      DAG.getConstant(C, DL, MVT::i32));
8517 }
8518 
8519 /// An EXTR instruction is made up of two shifts, ORed together. This helper
8520 /// searches for and classifies those shifts.
8521 static bool findEXTRHalf(SDValue N, SDValue &Src, uint32_t &ShiftAmount,
8522                          bool &FromHi) {
8523   if (N.getOpcode() == ISD::SHL)
8524     FromHi = false;
8525   else if (N.getOpcode() == ISD::SRL)
8526     FromHi = true;
8527   else
8528     return false;
8529 
8530   if (!isa<ConstantSDNode>(N.getOperand(1)))
8531     return false;
8532 
8533   ShiftAmount = N->getConstantOperandVal(1);
8534   Src = N->getOperand(0);
8535   return true;
8536 }
8537 
8538 /// EXTR instruction extracts a contiguous chunk of bits from two existing
8539 /// registers viewed as a high/low pair. This function looks for the pattern:
8540 /// <tt>(or (shl VAL1, \#N), (srl VAL2, \#RegWidth-N))</tt> and replaces it
8541 /// with an EXTR. Can't quite be done in TableGen because the two immediates
8542 /// aren't independent.
8543 static SDValue tryCombineToEXTR(SDNode *N,
8544                                 TargetLowering::DAGCombinerInfo &DCI) {
8545   SelectionDAG &DAG = DCI.DAG;
8546   SDLoc DL(N);
8547   EVT VT = N->getValueType(0);
8548 
8549   assert(N->getOpcode() == ISD::OR && "Unexpected root");
8550 
8551   if (VT != MVT::i32 && VT != MVT::i64)
8552     return SDValue();
8553 
8554   SDValue LHS;
8555   uint32_t ShiftLHS = 0;
8556   bool LHSFromHi = false;
8557   if (!findEXTRHalf(N->getOperand(0), LHS, ShiftLHS, LHSFromHi))
8558     return SDValue();
8559 
8560   SDValue RHS;
8561   uint32_t ShiftRHS = 0;
8562   bool RHSFromHi = false;
8563   if (!findEXTRHalf(N->getOperand(1), RHS, ShiftRHS, RHSFromHi))
8564     return SDValue();
8565 
8566   // If they're both trying to come from the high part of the register, they're
8567   // not really an EXTR.
8568   if (LHSFromHi == RHSFromHi)
8569     return SDValue();
8570 
8571   if (ShiftLHS + ShiftRHS != VT.getSizeInBits())
8572     return SDValue();
8573 
8574   if (LHSFromHi) {
8575     std::swap(LHS, RHS);
8576     std::swap(ShiftLHS, ShiftRHS);
8577   }
8578 
8579   return DAG.getNode(AArch64ISD::EXTR, DL, VT, LHS, RHS,
8580                      DAG.getConstant(ShiftRHS, DL, MVT::i64));
8581 }
8582 
8583 static SDValue tryCombineToBSL(SDNode *N,
8584                                 TargetLowering::DAGCombinerInfo &DCI) {
8585   EVT VT = N->getValueType(0);
8586   SelectionDAG &DAG = DCI.DAG;
8587   SDLoc DL(N);
8588 
8589   if (!VT.isVector())
8590     return SDValue();
8591 
8592   SDValue N0 = N->getOperand(0);
8593   if (N0.getOpcode() != ISD::AND)
8594     return SDValue();
8595 
8596   SDValue N1 = N->getOperand(1);
8597   if (N1.getOpcode() != ISD::AND)
8598     return SDValue();
8599 
8600   // We only have to look for constant vectors here since the general, variable
8601   // case can be handled in TableGen.
8602   unsigned Bits = VT.getScalarSizeInBits();
8603   uint64_t BitMask = Bits == 64 ? -1ULL : ((1ULL << Bits) - 1);
8604   for (int i = 1; i >= 0; --i)
8605     for (int j = 1; j >= 0; --j) {
8606       BuildVectorSDNode *BVN0 = dyn_cast<BuildVectorSDNode>(N0->getOperand(i));
8607       BuildVectorSDNode *BVN1 = dyn_cast<BuildVectorSDNode>(N1->getOperand(j));
8608       if (!BVN0 || !BVN1)
8609         continue;
8610 
8611       bool FoundMatch = true;
8612       for (unsigned k = 0; k < VT.getVectorNumElements(); ++k) {
8613         ConstantSDNode *CN0 = dyn_cast<ConstantSDNode>(BVN0->getOperand(k));
8614         ConstantSDNode *CN1 = dyn_cast<ConstantSDNode>(BVN1->getOperand(k));
8615         if (!CN0 || !CN1 ||
8616             CN0->getZExtValue() != (BitMask & ~CN1->getZExtValue())) {
8617           FoundMatch = false;
8618           break;
8619         }
8620       }
8621 
8622       if (FoundMatch)
8623         return DAG.getNode(AArch64ISD::BSL, DL, VT, SDValue(BVN0, 0),
8624                            N0->getOperand(1 - i), N1->getOperand(1 - j));
8625     }
8626 
8627   return SDValue();
8628 }
8629 
8630 static SDValue performORCombine(SDNode *N, TargetLowering::DAGCombinerInfo &DCI,
8631                                 const AArch64Subtarget *Subtarget) {
8632   // Attempt to form an EXTR from (or (shl VAL1, #N), (srl VAL2, #RegWidth-N))
8633   SelectionDAG &DAG = DCI.DAG;
8634   EVT VT = N->getValueType(0);
8635 
8636   if (!DAG.getTargetLoweringInfo().isTypeLegal(VT))
8637     return SDValue();
8638 
8639   if (SDValue Res = tryCombineToEXTR(N, DCI))
8640     return Res;
8641 
8642   if (SDValue Res = tryCombineToBSL(N, DCI))
8643     return Res;
8644 
8645   return SDValue();
8646 }
8647 
8648 static SDValue performSRLCombine(SDNode *N,
8649                                  TargetLowering::DAGCombinerInfo &DCI) {
8650   SelectionDAG &DAG = DCI.DAG;
8651   EVT VT = N->getValueType(0);
8652   if (VT != MVT::i32 && VT != MVT::i64)
8653     return SDValue();
8654 
8655   // Canonicalize (srl (bswap i32 x), 16) to (rotr (bswap i32 x), 16), if the
8656   // high 16-bits of x are zero. Similarly, canonicalize (srl (bswap i64 x), 32)
8657   // to (rotr (bswap i64 x), 32), if the high 32-bits of x are zero.
8658   SDValue N0 = N->getOperand(0);
8659   if (N0.getOpcode() == ISD::BSWAP) {
8660     SDLoc DL(N);
8661     SDValue N1 = N->getOperand(1);
8662     SDValue N00 = N0.getOperand(0);
8663     if (ConstantSDNode *C = dyn_cast<ConstantSDNode>(N1)) {
8664       uint64_t ShiftAmt = C->getZExtValue();
8665       if (VT == MVT::i32 && ShiftAmt == 16 &&
8666           DAG.MaskedValueIsZero(N00, APInt::getHighBitsSet(32, 16)))
8667         return DAG.getNode(ISD::ROTR, DL, VT, N0, N1);
8668       if (VT == MVT::i64 && ShiftAmt == 32 &&
8669           DAG.MaskedValueIsZero(N00, APInt::getHighBitsSet(64, 32)))
8670         return DAG.getNode(ISD::ROTR, DL, VT, N0, N1);
8671     }
8672   }
8673   return SDValue();
8674 }
8675 
8676 static SDValue performBitcastCombine(SDNode *N,
8677                                      TargetLowering::DAGCombinerInfo &DCI,
8678                                      SelectionDAG &DAG) {
8679   // Wait 'til after everything is legalized to try this. That way we have
8680   // legal vector types and such.
8681   if (DCI.isBeforeLegalizeOps())
8682     return SDValue();
8683 
8684   // Remove extraneous bitcasts around an extract_subvector.
8685   // For example,
8686   //    (v4i16 (bitconvert
8687   //             (extract_subvector (v2i64 (bitconvert (v8i16 ...)), (i64 1)))))
8688   //  becomes
8689   //    (extract_subvector ((v8i16 ...), (i64 4)))
8690 
8691   // Only interested in 64-bit vectors as the ultimate result.
8692   EVT VT = N->getValueType(0);
8693   if (!VT.isVector())
8694     return SDValue();
8695   if (VT.getSimpleVT().getSizeInBits() != 64)
8696     return SDValue();
8697   // Is the operand an extract_subvector starting at the beginning or halfway
8698   // point of the vector? A low half may also come through as an
8699   // EXTRACT_SUBREG, so look for that, too.
8700   SDValue Op0 = N->getOperand(0);
8701   if (Op0->getOpcode() != ISD::EXTRACT_SUBVECTOR &&
8702       !(Op0->isMachineOpcode() &&
8703         Op0->getMachineOpcode() == AArch64::EXTRACT_SUBREG))
8704     return SDValue();
8705   uint64_t idx = cast<ConstantSDNode>(Op0->getOperand(1))->getZExtValue();
8706   if (Op0->getOpcode() == ISD::EXTRACT_SUBVECTOR) {
8707     if (Op0->getValueType(0).getVectorNumElements() != idx && idx != 0)
8708       return SDValue();
8709   } else if (Op0->getMachineOpcode() == AArch64::EXTRACT_SUBREG) {
8710     if (idx != AArch64::dsub)
8711       return SDValue();
8712     // The dsub reference is equivalent to a lane zero subvector reference.
8713     idx = 0;
8714   }
8715   // Look through the bitcast of the input to the extract.
8716   if (Op0->getOperand(0)->getOpcode() != ISD::BITCAST)
8717     return SDValue();
8718   SDValue Source = Op0->getOperand(0)->getOperand(0);
8719   // If the source type has twice the number of elements as our destination
8720   // type, we know this is an extract of the high or low half of the vector.
8721   EVT SVT = Source->getValueType(0);
8722   if (SVT.getVectorNumElements() != VT.getVectorNumElements() * 2)
8723     return SDValue();
8724 
8725   DEBUG(dbgs() << "aarch64-lower: bitcast extract_subvector simplification\n");
8726 
8727   // Create the simplified form to just extract the low or high half of the
8728   // vector directly rather than bothering with the bitcasts.
8729   SDLoc dl(N);
8730   unsigned NumElements = VT.getVectorNumElements();
8731   if (idx) {
8732     SDValue HalfIdx = DAG.getConstant(NumElements, dl, MVT::i64);
8733     return DAG.getNode(ISD::EXTRACT_SUBVECTOR, dl, VT, Source, HalfIdx);
8734   } else {
8735     SDValue SubReg = DAG.getTargetConstant(AArch64::dsub, dl, MVT::i32);
8736     return SDValue(DAG.getMachineNode(TargetOpcode::EXTRACT_SUBREG, dl, VT,
8737                                       Source, SubReg),
8738                    0);
8739   }
8740 }
8741 
8742 static SDValue performConcatVectorsCombine(SDNode *N,
8743                                            TargetLowering::DAGCombinerInfo &DCI,
8744                                            SelectionDAG &DAG) {
8745   SDLoc dl(N);
8746   EVT VT = N->getValueType(0);
8747   SDValue N0 = N->getOperand(0), N1 = N->getOperand(1);
8748 
8749   // Optimize concat_vectors of truncated vectors, where the intermediate
8750   // type is illegal, to avoid said illegality,  e.g.,
8751   //   (v4i16 (concat_vectors (v2i16 (truncate (v2i64))),
8752   //                          (v2i16 (truncate (v2i64)))))
8753   // ->
8754   //   (v4i16 (truncate (vector_shuffle (v4i32 (bitcast (v2i64))),
8755   //                                    (v4i32 (bitcast (v2i64))),
8756   //                                    <0, 2, 4, 6>)))
8757   // This isn't really target-specific, but ISD::TRUNCATE legality isn't keyed
8758   // on both input and result type, so we might generate worse code.
8759   // On AArch64 we know it's fine for v2i64->v4i16 and v4i32->v8i8.
8760   if (N->getNumOperands() == 2 &&
8761       N0->getOpcode() == ISD::TRUNCATE &&
8762       N1->getOpcode() == ISD::TRUNCATE) {
8763     SDValue N00 = N0->getOperand(0);
8764     SDValue N10 = N1->getOperand(0);
8765     EVT N00VT = N00.getValueType();
8766 
8767     if (N00VT == N10.getValueType() &&
8768         (N00VT == MVT::v2i64 || N00VT == MVT::v4i32) &&
8769         N00VT.getScalarSizeInBits() == 4 * VT.getScalarSizeInBits()) {
8770       MVT MidVT = (N00VT == MVT::v2i64 ? MVT::v4i32 : MVT::v8i16);
8771       SmallVector<int, 8> Mask(MidVT.getVectorNumElements());
8772       for (size_t i = 0; i < Mask.size(); ++i)
8773         Mask[i] = i * 2;
8774       return DAG.getNode(ISD::TRUNCATE, dl, VT,
8775                          DAG.getVectorShuffle(
8776                              MidVT, dl,
8777                              DAG.getNode(ISD::BITCAST, dl, MidVT, N00),
8778                              DAG.getNode(ISD::BITCAST, dl, MidVT, N10), Mask));
8779     }
8780   }
8781 
8782   // Wait 'til after everything is legalized to try this. That way we have
8783   // legal vector types and such.
8784   if (DCI.isBeforeLegalizeOps())
8785     return SDValue();
8786 
8787   // If we see a (concat_vectors (v1x64 A), (v1x64 A)) it's really a vector
8788   // splat. The indexed instructions are going to be expecting a DUPLANE64, so
8789   // canonicalise to that.
8790   if (N0 == N1 && VT.getVectorNumElements() == 2) {
8791     assert(VT.getScalarSizeInBits() == 64);
8792     return DAG.getNode(AArch64ISD::DUPLANE64, dl, VT, WidenVector(N0, DAG),
8793                        DAG.getConstant(0, dl, MVT::i64));
8794   }
8795 
8796   // Canonicalise concat_vectors so that the right-hand vector has as few
8797   // bit-casts as possible before its real operation. The primary matching
8798   // destination for these operations will be the narrowing "2" instructions,
8799   // which depend on the operation being performed on this right-hand vector.
8800   // For example,
8801   //    (concat_vectors LHS,  (v1i64 (bitconvert (v4i16 RHS))))
8802   // becomes
8803   //    (bitconvert (concat_vectors (v4i16 (bitconvert LHS)), RHS))
8804 
8805   if (N1->getOpcode() != ISD::BITCAST)
8806     return SDValue();
8807   SDValue RHS = N1->getOperand(0);
8808   MVT RHSTy = RHS.getValueType().getSimpleVT();
8809   // If the RHS is not a vector, this is not the pattern we're looking for.
8810   if (!RHSTy.isVector())
8811     return SDValue();
8812 
8813   DEBUG(dbgs() << "aarch64-lower: concat_vectors bitcast simplification\n");
8814 
8815   MVT ConcatTy = MVT::getVectorVT(RHSTy.getVectorElementType(),
8816                                   RHSTy.getVectorNumElements() * 2);
8817   return DAG.getNode(ISD::BITCAST, dl, VT,
8818                      DAG.getNode(ISD::CONCAT_VECTORS, dl, ConcatTy,
8819                                  DAG.getNode(ISD::BITCAST, dl, RHSTy, N0),
8820                                  RHS));
8821 }
8822 
8823 static SDValue tryCombineFixedPointConvert(SDNode *N,
8824                                            TargetLowering::DAGCombinerInfo &DCI,
8825                                            SelectionDAG &DAG) {
8826   // Wait 'til after everything is legalized to try this. That way we have
8827   // legal vector types and such.
8828   if (DCI.isBeforeLegalizeOps())
8829     return SDValue();
8830   // Transform a scalar conversion of a value from a lane extract into a
8831   // lane extract of a vector conversion. E.g., from foo1 to foo2:
8832   // double foo1(int64x2_t a) { return vcvtd_n_f64_s64(a[1], 9); }
8833   // double foo2(int64x2_t a) { return vcvtq_n_f64_s64(a, 9)[1]; }
8834   //
8835   // The second form interacts better with instruction selection and the
8836   // register allocator to avoid cross-class register copies that aren't
8837   // coalescable due to a lane reference.
8838 
8839   // Check the operand and see if it originates from a lane extract.
8840   SDValue Op1 = N->getOperand(1);
8841   if (Op1.getOpcode() == ISD::EXTRACT_VECTOR_ELT) {
8842     // Yep, no additional predication needed. Perform the transform.
8843     SDValue IID = N->getOperand(0);
8844     SDValue Shift = N->getOperand(2);
8845     SDValue Vec = Op1.getOperand(0);
8846     SDValue Lane = Op1.getOperand(1);
8847     EVT ResTy = N->getValueType(0);
8848     EVT VecResTy;
8849     SDLoc DL(N);
8850 
8851     // The vector width should be 128 bits by the time we get here, even
8852     // if it started as 64 bits (the extract_vector handling will have
8853     // done so).
8854     assert(Vec.getValueSizeInBits() == 128 &&
8855            "unexpected vector size on extract_vector_elt!");
8856     if (Vec.getValueType() == MVT::v4i32)
8857       VecResTy = MVT::v4f32;
8858     else if (Vec.getValueType() == MVT::v2i64)
8859       VecResTy = MVT::v2f64;
8860     else
8861       llvm_unreachable("unexpected vector type!");
8862 
8863     SDValue Convert =
8864         DAG.getNode(ISD::INTRINSIC_WO_CHAIN, DL, VecResTy, IID, Vec, Shift);
8865     return DAG.getNode(ISD::EXTRACT_VECTOR_ELT, DL, ResTy, Convert, Lane);
8866   }
8867   return SDValue();
8868 }
8869 
8870 // AArch64 high-vector "long" operations are formed by performing the non-high
8871 // version on an extract_subvector of each operand which gets the high half:
8872 //
8873 //  (longop2 LHS, RHS) == (longop (extract_high LHS), (extract_high RHS))
8874 //
8875 // However, there are cases which don't have an extract_high explicitly, but
8876 // have another operation that can be made compatible with one for free. For
8877 // example:
8878 //
8879 //  (dupv64 scalar) --> (extract_high (dup128 scalar))
8880 //
8881 // This routine does the actual conversion of such DUPs, once outer routines
8882 // have determined that everything else is in order.
8883 // It also supports immediate DUP-like nodes (MOVI/MVNi), which we can fold
8884 // similarly here.
8885 static SDValue tryExtendDUPToExtractHigh(SDValue N, SelectionDAG &DAG) {
8886   switch (N.getOpcode()) {
8887   case AArch64ISD::DUP:
8888   case AArch64ISD::DUPLANE8:
8889   case AArch64ISD::DUPLANE16:
8890   case AArch64ISD::DUPLANE32:
8891   case AArch64ISD::DUPLANE64:
8892   case AArch64ISD::MOVI:
8893   case AArch64ISD::MOVIshift:
8894   case AArch64ISD::MOVIedit:
8895   case AArch64ISD::MOVImsl:
8896   case AArch64ISD::MVNIshift:
8897   case AArch64ISD::MVNImsl:
8898     break;
8899   default:
8900     // FMOV could be supported, but isn't very useful, as it would only occur
8901     // if you passed a bitcast' floating point immediate to an eligible long
8902     // integer op (addl, smull, ...).
8903     return SDValue();
8904   }
8905 
8906   MVT NarrowTy = N.getSimpleValueType();
8907   if (!NarrowTy.is64BitVector())
8908     return SDValue();
8909 
8910   MVT ElementTy = NarrowTy.getVectorElementType();
8911   unsigned NumElems = NarrowTy.getVectorNumElements();
8912   MVT NewVT = MVT::getVectorVT(ElementTy, NumElems * 2);
8913 
8914   SDLoc dl(N);
8915   return DAG.getNode(ISD::EXTRACT_SUBVECTOR, dl, NarrowTy,
8916                      DAG.getNode(N->getOpcode(), dl, NewVT, N->ops()),
8917                      DAG.getConstant(NumElems, dl, MVT::i64));
8918 }
8919 
8920 static bool isEssentiallyExtractSubvector(SDValue N) {
8921   if (N.getOpcode() == ISD::EXTRACT_SUBVECTOR)
8922     return true;
8923 
8924   return N.getOpcode() == ISD::BITCAST &&
8925          N.getOperand(0).getOpcode() == ISD::EXTRACT_SUBVECTOR;
8926 }
8927 
8928 /// \brief Helper structure to keep track of ISD::SET_CC operands.
8929 struct GenericSetCCInfo {
8930   const SDValue *Opnd0;
8931   const SDValue *Opnd1;
8932   ISD::CondCode CC;
8933 };
8934 
8935 /// \brief Helper structure to keep track of a SET_CC lowered into AArch64 code.
8936 struct AArch64SetCCInfo {
8937   const SDValue *Cmp;
8938   AArch64CC::CondCode CC;
8939 };
8940 
8941 /// \brief Helper structure to keep track of SetCC information.
8942 union SetCCInfo {
8943   GenericSetCCInfo Generic;
8944   AArch64SetCCInfo AArch64;
8945 };
8946 
8947 /// \brief Helper structure to be able to read SetCC information.  If set to
8948 /// true, IsAArch64 field, Info is a AArch64SetCCInfo, otherwise Info is a
8949 /// GenericSetCCInfo.
8950 struct SetCCInfoAndKind {
8951   SetCCInfo Info;
8952   bool IsAArch64;
8953 };
8954 
8955 /// \brief Check whether or not \p Op is a SET_CC operation, either a generic or
8956 /// an
8957 /// AArch64 lowered one.
8958 /// \p SetCCInfo is filled accordingly.
8959 /// \post SetCCInfo is meanginfull only when this function returns true.
8960 /// \return True when Op is a kind of SET_CC operation.
8961 static bool isSetCC(SDValue Op, SetCCInfoAndKind &SetCCInfo) {
8962   // If this is a setcc, this is straight forward.
8963   if (Op.getOpcode() == ISD::SETCC) {
8964     SetCCInfo.Info.Generic.Opnd0 = &Op.getOperand(0);
8965     SetCCInfo.Info.Generic.Opnd1 = &Op.getOperand(1);
8966     SetCCInfo.Info.Generic.CC = cast<CondCodeSDNode>(Op.getOperand(2))->get();
8967     SetCCInfo.IsAArch64 = false;
8968     return true;
8969   }
8970   // Otherwise, check if this is a matching csel instruction.
8971   // In other words:
8972   // - csel 1, 0, cc
8973   // - csel 0, 1, !cc
8974   if (Op.getOpcode() != AArch64ISD::CSEL)
8975     return false;
8976   // Set the information about the operands.
8977   // TODO: we want the operands of the Cmp not the csel
8978   SetCCInfo.Info.AArch64.Cmp = &Op.getOperand(3);
8979   SetCCInfo.IsAArch64 = true;
8980   SetCCInfo.Info.AArch64.CC = static_cast<AArch64CC::CondCode>(
8981       cast<ConstantSDNode>(Op.getOperand(2))->getZExtValue());
8982 
8983   // Check that the operands matches the constraints:
8984   // (1) Both operands must be constants.
8985   // (2) One must be 1 and the other must be 0.
8986   ConstantSDNode *TValue = dyn_cast<ConstantSDNode>(Op.getOperand(0));
8987   ConstantSDNode *FValue = dyn_cast<ConstantSDNode>(Op.getOperand(1));
8988 
8989   // Check (1).
8990   if (!TValue || !FValue)
8991     return false;
8992 
8993   // Check (2).
8994   if (!TValue->isOne()) {
8995     // Update the comparison when we are interested in !cc.
8996     std::swap(TValue, FValue);
8997     SetCCInfo.Info.AArch64.CC =
8998         AArch64CC::getInvertedCondCode(SetCCInfo.Info.AArch64.CC);
8999   }
9000   return TValue->isOne() && FValue->isNullValue();
9001 }
9002 
9003 // Returns true if Op is setcc or zext of setcc.
9004 static bool isSetCCOrZExtSetCC(const SDValue& Op, SetCCInfoAndKind &Info) {
9005   if (isSetCC(Op, Info))
9006     return true;
9007   return ((Op.getOpcode() == ISD::ZERO_EXTEND) &&
9008     isSetCC(Op->getOperand(0), Info));
9009 }
9010 
9011 // The folding we want to perform is:
9012 // (add x, [zext] (setcc cc ...) )
9013 //   -->
9014 // (csel x, (add x, 1), !cc ...)
9015 //
9016 // The latter will get matched to a CSINC instruction.
9017 static SDValue performSetccAddFolding(SDNode *Op, SelectionDAG &DAG) {
9018   assert(Op && Op->getOpcode() == ISD::ADD && "Unexpected operation!");
9019   SDValue LHS = Op->getOperand(0);
9020   SDValue RHS = Op->getOperand(1);
9021   SetCCInfoAndKind InfoAndKind;
9022 
9023   // If neither operand is a SET_CC, give up.
9024   if (!isSetCCOrZExtSetCC(LHS, InfoAndKind)) {
9025     std::swap(LHS, RHS);
9026     if (!isSetCCOrZExtSetCC(LHS, InfoAndKind))
9027       return SDValue();
9028   }
9029 
9030   // FIXME: This could be generatized to work for FP comparisons.
9031   EVT CmpVT = InfoAndKind.IsAArch64
9032                   ? InfoAndKind.Info.AArch64.Cmp->getOperand(0).getValueType()
9033                   : InfoAndKind.Info.Generic.Opnd0->getValueType();
9034   if (CmpVT != MVT::i32 && CmpVT != MVT::i64)
9035     return SDValue();
9036 
9037   SDValue CCVal;
9038   SDValue Cmp;
9039   SDLoc dl(Op);
9040   if (InfoAndKind.IsAArch64) {
9041     CCVal = DAG.getConstant(
9042         AArch64CC::getInvertedCondCode(InfoAndKind.Info.AArch64.CC), dl,
9043         MVT::i32);
9044     Cmp = *InfoAndKind.Info.AArch64.Cmp;
9045   } else
9046     Cmp = getAArch64Cmp(*InfoAndKind.Info.Generic.Opnd0,
9047                       *InfoAndKind.Info.Generic.Opnd1,
9048                       ISD::getSetCCInverse(InfoAndKind.Info.Generic.CC, true),
9049                       CCVal, DAG, dl);
9050 
9051   EVT VT = Op->getValueType(0);
9052   LHS = DAG.getNode(ISD::ADD, dl, VT, RHS, DAG.getConstant(1, dl, VT));
9053   return DAG.getNode(AArch64ISD::CSEL, dl, VT, RHS, LHS, CCVal, Cmp);
9054 }
9055 
9056 // The basic add/sub long vector instructions have variants with "2" on the end
9057 // which act on the high-half of their inputs. They are normally matched by
9058 // patterns like:
9059 //
9060 // (add (zeroext (extract_high LHS)),
9061 //      (zeroext (extract_high RHS)))
9062 // -> uaddl2 vD, vN, vM
9063 //
9064 // However, if one of the extracts is something like a duplicate, this
9065 // instruction can still be used profitably. This function puts the DAG into a
9066 // more appropriate form for those patterns to trigger.
9067 static SDValue performAddSubLongCombine(SDNode *N,
9068                                         TargetLowering::DAGCombinerInfo &DCI,
9069                                         SelectionDAG &DAG) {
9070   if (DCI.isBeforeLegalizeOps())
9071     return SDValue();
9072 
9073   MVT VT = N->getSimpleValueType(0);
9074   if (!VT.is128BitVector()) {
9075     if (N->getOpcode() == ISD::ADD)
9076       return performSetccAddFolding(N, DAG);
9077     return SDValue();
9078   }
9079 
9080   // Make sure both branches are extended in the same way.
9081   SDValue LHS = N->getOperand(0);
9082   SDValue RHS = N->getOperand(1);
9083   if ((LHS.getOpcode() != ISD::ZERO_EXTEND &&
9084        LHS.getOpcode() != ISD::SIGN_EXTEND) ||
9085       LHS.getOpcode() != RHS.getOpcode())
9086     return SDValue();
9087 
9088   unsigned ExtType = LHS.getOpcode();
9089 
9090   // It's not worth doing if at least one of the inputs isn't already an
9091   // extract, but we don't know which it'll be so we have to try both.
9092   if (isEssentiallyExtractSubvector(LHS.getOperand(0))) {
9093     RHS = tryExtendDUPToExtractHigh(RHS.getOperand(0), DAG);
9094     if (!RHS.getNode())
9095       return SDValue();
9096 
9097     RHS = DAG.getNode(ExtType, SDLoc(N), VT, RHS);
9098   } else if (isEssentiallyExtractSubvector(RHS.getOperand(0))) {
9099     LHS = tryExtendDUPToExtractHigh(LHS.getOperand(0), DAG);
9100     if (!LHS.getNode())
9101       return SDValue();
9102 
9103     LHS = DAG.getNode(ExtType, SDLoc(N), VT, LHS);
9104   }
9105 
9106   return DAG.getNode(N->getOpcode(), SDLoc(N), VT, LHS, RHS);
9107 }
9108 
9109 // Massage DAGs which we can use the high-half "long" operations on into
9110 // something isel will recognize better. E.g.
9111 //
9112 // (aarch64_neon_umull (extract_high vec) (dupv64 scalar)) -->
9113 //   (aarch64_neon_umull (extract_high (v2i64 vec)))
9114 //                     (extract_high (v2i64 (dup128 scalar)))))
9115 //
9116 static SDValue tryCombineLongOpWithDup(unsigned IID, SDNode *N,
9117                                        TargetLowering::DAGCombinerInfo &DCI,
9118                                        SelectionDAG &DAG) {
9119   if (DCI.isBeforeLegalizeOps())
9120     return SDValue();
9121 
9122   SDValue LHS = N->getOperand(1);
9123   SDValue RHS = N->getOperand(2);
9124   assert(LHS.getValueType().is64BitVector() &&
9125          RHS.getValueType().is64BitVector() &&
9126          "unexpected shape for long operation");
9127 
9128   // Either node could be a DUP, but it's not worth doing both of them (you'd
9129   // just as well use the non-high version) so look for a corresponding extract
9130   // operation on the other "wing".
9131   if (isEssentiallyExtractSubvector(LHS)) {
9132     RHS = tryExtendDUPToExtractHigh(RHS, DAG);
9133     if (!RHS.getNode())
9134       return SDValue();
9135   } else if (isEssentiallyExtractSubvector(RHS)) {
9136     LHS = tryExtendDUPToExtractHigh(LHS, DAG);
9137     if (!LHS.getNode())
9138       return SDValue();
9139   }
9140 
9141   return DAG.getNode(ISD::INTRINSIC_WO_CHAIN, SDLoc(N), N->getValueType(0),
9142                      N->getOperand(0), LHS, RHS);
9143 }
9144 
9145 static SDValue tryCombineShiftImm(unsigned IID, SDNode *N, SelectionDAG &DAG) {
9146   MVT ElemTy = N->getSimpleValueType(0).getScalarType();
9147   unsigned ElemBits = ElemTy.getSizeInBits();
9148 
9149   int64_t ShiftAmount;
9150   if (BuildVectorSDNode *BVN = dyn_cast<BuildVectorSDNode>(N->getOperand(2))) {
9151     APInt SplatValue, SplatUndef;
9152     unsigned SplatBitSize;
9153     bool HasAnyUndefs;
9154     if (!BVN->isConstantSplat(SplatValue, SplatUndef, SplatBitSize,
9155                               HasAnyUndefs, ElemBits) ||
9156         SplatBitSize != ElemBits)
9157       return SDValue();
9158 
9159     ShiftAmount = SplatValue.getSExtValue();
9160   } else if (ConstantSDNode *CVN = dyn_cast<ConstantSDNode>(N->getOperand(2))) {
9161     ShiftAmount = CVN->getSExtValue();
9162   } else
9163     return SDValue();
9164 
9165   unsigned Opcode;
9166   bool IsRightShift;
9167   switch (IID) {
9168   default:
9169     llvm_unreachable("Unknown shift intrinsic");
9170   case Intrinsic::aarch64_neon_sqshl:
9171     Opcode = AArch64ISD::SQSHL_I;
9172     IsRightShift = false;
9173     break;
9174   case Intrinsic::aarch64_neon_uqshl:
9175     Opcode = AArch64ISD::UQSHL_I;
9176     IsRightShift = false;
9177     break;
9178   case Intrinsic::aarch64_neon_srshl:
9179     Opcode = AArch64ISD::SRSHR_I;
9180     IsRightShift = true;
9181     break;
9182   case Intrinsic::aarch64_neon_urshl:
9183     Opcode = AArch64ISD::URSHR_I;
9184     IsRightShift = true;
9185     break;
9186   case Intrinsic::aarch64_neon_sqshlu:
9187     Opcode = AArch64ISD::SQSHLU_I;
9188     IsRightShift = false;
9189     break;
9190   }
9191 
9192   if (IsRightShift && ShiftAmount <= -1 && ShiftAmount >= -(int)ElemBits) {
9193     SDLoc dl(N);
9194     return DAG.getNode(Opcode, dl, N->getValueType(0), N->getOperand(1),
9195                        DAG.getConstant(-ShiftAmount, dl, MVT::i32));
9196   } else if (!IsRightShift && ShiftAmount >= 0 && ShiftAmount < ElemBits) {
9197     SDLoc dl(N);
9198     return DAG.getNode(Opcode, dl, N->getValueType(0), N->getOperand(1),
9199                        DAG.getConstant(ShiftAmount, dl, MVT::i32));
9200   }
9201 
9202   return SDValue();
9203 }
9204 
9205 // The CRC32[BH] instructions ignore the high bits of their data operand. Since
9206 // the intrinsics must be legal and take an i32, this means there's almost
9207 // certainly going to be a zext in the DAG which we can eliminate.
9208 static SDValue tryCombineCRC32(unsigned Mask, SDNode *N, SelectionDAG &DAG) {
9209   SDValue AndN = N->getOperand(2);
9210   if (AndN.getOpcode() != ISD::AND)
9211     return SDValue();
9212 
9213   ConstantSDNode *CMask = dyn_cast<ConstantSDNode>(AndN.getOperand(1));
9214   if (!CMask || CMask->getZExtValue() != Mask)
9215     return SDValue();
9216 
9217   return DAG.getNode(ISD::INTRINSIC_WO_CHAIN, SDLoc(N), MVT::i32,
9218                      N->getOperand(0), N->getOperand(1), AndN.getOperand(0));
9219 }
9220 
9221 static SDValue combineAcrossLanesIntrinsic(unsigned Opc, SDNode *N,
9222                                            SelectionDAG &DAG) {
9223   SDLoc dl(N);
9224   return DAG.getNode(ISD::EXTRACT_VECTOR_ELT, dl, N->getValueType(0),
9225                      DAG.getNode(Opc, dl,
9226                                  N->getOperand(1).getSimpleValueType(),
9227                                  N->getOperand(1)),
9228                      DAG.getConstant(0, dl, MVT::i64));
9229 }
9230 
9231 static SDValue performIntrinsicCombine(SDNode *N,
9232                                        TargetLowering::DAGCombinerInfo &DCI,
9233                                        const AArch64Subtarget *Subtarget) {
9234   SelectionDAG &DAG = DCI.DAG;
9235   unsigned IID = getIntrinsicID(N);
9236   switch (IID) {
9237   default:
9238     break;
9239   case Intrinsic::aarch64_neon_vcvtfxs2fp:
9240   case Intrinsic::aarch64_neon_vcvtfxu2fp:
9241     return tryCombineFixedPointConvert(N, DCI, DAG);
9242   case Intrinsic::aarch64_neon_saddv:
9243     return combineAcrossLanesIntrinsic(AArch64ISD::SADDV, N, DAG);
9244   case Intrinsic::aarch64_neon_uaddv:
9245     return combineAcrossLanesIntrinsic(AArch64ISD::UADDV, N, DAG);
9246   case Intrinsic::aarch64_neon_sminv:
9247     return combineAcrossLanesIntrinsic(AArch64ISD::SMINV, N, DAG);
9248   case Intrinsic::aarch64_neon_uminv:
9249     return combineAcrossLanesIntrinsic(AArch64ISD::UMINV, N, DAG);
9250   case Intrinsic::aarch64_neon_smaxv:
9251     return combineAcrossLanesIntrinsic(AArch64ISD::SMAXV, N, DAG);
9252   case Intrinsic::aarch64_neon_umaxv:
9253     return combineAcrossLanesIntrinsic(AArch64ISD::UMAXV, N, DAG);
9254   case Intrinsic::aarch64_neon_fmax:
9255     return DAG.getNode(ISD::FMAXNAN, SDLoc(N), N->getValueType(0),
9256                        N->getOperand(1), N->getOperand(2));
9257   case Intrinsic::aarch64_neon_fmin:
9258     return DAG.getNode(ISD::FMINNAN, SDLoc(N), N->getValueType(0),
9259                        N->getOperand(1), N->getOperand(2));
9260   case Intrinsic::aarch64_neon_fmaxnm:
9261     return DAG.getNode(ISD::FMAXNUM, SDLoc(N), N->getValueType(0),
9262                        N->getOperand(1), N->getOperand(2));
9263   case Intrinsic::aarch64_neon_fminnm:
9264     return DAG.getNode(ISD::FMINNUM, SDLoc(N), N->getValueType(0),
9265                        N->getOperand(1), N->getOperand(2));
9266   case Intrinsic::aarch64_neon_smull:
9267   case Intrinsic::aarch64_neon_umull:
9268   case Intrinsic::aarch64_neon_pmull:
9269   case Intrinsic::aarch64_neon_sqdmull:
9270     return tryCombineLongOpWithDup(IID, N, DCI, DAG);
9271   case Intrinsic::aarch64_neon_sqshl:
9272   case Intrinsic::aarch64_neon_uqshl:
9273   case Intrinsic::aarch64_neon_sqshlu:
9274   case Intrinsic::aarch64_neon_srshl:
9275   case Intrinsic::aarch64_neon_urshl:
9276     return tryCombineShiftImm(IID, N, DAG);
9277   case Intrinsic::aarch64_crc32b:
9278   case Intrinsic::aarch64_crc32cb:
9279     return tryCombineCRC32(0xff, N, DAG);
9280   case Intrinsic::aarch64_crc32h:
9281   case Intrinsic::aarch64_crc32ch:
9282     return tryCombineCRC32(0xffff, N, DAG);
9283   }
9284   return SDValue();
9285 }
9286 
9287 static SDValue performExtendCombine(SDNode *N,
9288                                     TargetLowering::DAGCombinerInfo &DCI,
9289                                     SelectionDAG &DAG) {
9290   // If we see something like (zext (sabd (extract_high ...), (DUP ...))) then
9291   // we can convert that DUP into another extract_high (of a bigger DUP), which
9292   // helps the backend to decide that an sabdl2 would be useful, saving a real
9293   // extract_high operation.
9294   if (!DCI.isBeforeLegalizeOps() && N->getOpcode() == ISD::ZERO_EXTEND &&
9295       N->getOperand(0).getOpcode() == ISD::INTRINSIC_WO_CHAIN) {
9296     SDNode *ABDNode = N->getOperand(0).getNode();
9297     unsigned IID = getIntrinsicID(ABDNode);
9298     if (IID == Intrinsic::aarch64_neon_sabd ||
9299         IID == Intrinsic::aarch64_neon_uabd) {
9300       SDValue NewABD = tryCombineLongOpWithDup(IID, ABDNode, DCI, DAG);
9301       if (!NewABD.getNode())
9302         return SDValue();
9303 
9304       return DAG.getNode(ISD::ZERO_EXTEND, SDLoc(N), N->getValueType(0),
9305                          NewABD);
9306     }
9307   }
9308 
9309   // This is effectively a custom type legalization for AArch64.
9310   //
9311   // Type legalization will split an extend of a small, legal, type to a larger
9312   // illegal type by first splitting the destination type, often creating
9313   // illegal source types, which then get legalized in isel-confusing ways,
9314   // leading to really terrible codegen. E.g.,
9315   //   %result = v8i32 sext v8i8 %value
9316   // becomes
9317   //   %losrc = extract_subreg %value, ...
9318   //   %hisrc = extract_subreg %value, ...
9319   //   %lo = v4i32 sext v4i8 %losrc
9320   //   %hi = v4i32 sext v4i8 %hisrc
9321   // Things go rapidly downhill from there.
9322   //
9323   // For AArch64, the [sz]ext vector instructions can only go up one element
9324   // size, so we can, e.g., extend from i8 to i16, but to go from i8 to i32
9325   // take two instructions.
9326   //
9327   // This implies that the most efficient way to do the extend from v8i8
9328   // to two v4i32 values is to first extend the v8i8 to v8i16, then do
9329   // the normal splitting to happen for the v8i16->v8i32.
9330 
9331   // This is pre-legalization to catch some cases where the default
9332   // type legalization will create ill-tempered code.
9333   if (!DCI.isBeforeLegalizeOps())
9334     return SDValue();
9335 
9336   // We're only interested in cleaning things up for non-legal vector types
9337   // here. If both the source and destination are legal, things will just
9338   // work naturally without any fiddling.
9339   const TargetLowering &TLI = DAG.getTargetLoweringInfo();
9340   EVT ResVT = N->getValueType(0);
9341   if (!ResVT.isVector() || TLI.isTypeLegal(ResVT))
9342     return SDValue();
9343   // If the vector type isn't a simple VT, it's beyond the scope of what
9344   // we're  worried about here. Let legalization do its thing and hope for
9345   // the best.
9346   SDValue Src = N->getOperand(0);
9347   EVT SrcVT = Src->getValueType(0);
9348   if (!ResVT.isSimple() || !SrcVT.isSimple())
9349     return SDValue();
9350 
9351   // If the source VT is a 64-bit vector, we can play games and get the
9352   // better results we want.
9353   if (SrcVT.getSizeInBits() != 64)
9354     return SDValue();
9355 
9356   unsigned SrcEltSize = SrcVT.getScalarSizeInBits();
9357   unsigned ElementCount = SrcVT.getVectorNumElements();
9358   SrcVT = MVT::getVectorVT(MVT::getIntegerVT(SrcEltSize * 2), ElementCount);
9359   SDLoc DL(N);
9360   Src = DAG.getNode(N->getOpcode(), DL, SrcVT, Src);
9361 
9362   // Now split the rest of the operation into two halves, each with a 64
9363   // bit source.
9364   EVT LoVT, HiVT;
9365   SDValue Lo, Hi;
9366   unsigned NumElements = ResVT.getVectorNumElements();
9367   assert(!(NumElements & 1) && "Splitting vector, but not in half!");
9368   LoVT = HiVT = EVT::getVectorVT(*DAG.getContext(),
9369                                  ResVT.getVectorElementType(), NumElements / 2);
9370 
9371   EVT InNVT = EVT::getVectorVT(*DAG.getContext(), SrcVT.getVectorElementType(),
9372                                LoVT.getVectorNumElements());
9373   Lo = DAG.getNode(ISD::EXTRACT_SUBVECTOR, DL, InNVT, Src,
9374                    DAG.getConstant(0, DL, MVT::i64));
9375   Hi = DAG.getNode(ISD::EXTRACT_SUBVECTOR, DL, InNVT, Src,
9376                    DAG.getConstant(InNVT.getVectorNumElements(), DL, MVT::i64));
9377   Lo = DAG.getNode(N->getOpcode(), DL, LoVT, Lo);
9378   Hi = DAG.getNode(N->getOpcode(), DL, HiVT, Hi);
9379 
9380   // Now combine the parts back together so we still have a single result
9381   // like the combiner expects.
9382   return DAG.getNode(ISD::CONCAT_VECTORS, DL, ResVT, Lo, Hi);
9383 }
9384 
9385 static SDValue splitStoreSplat(SelectionDAG &DAG, StoreSDNode &St,
9386                                SDValue SplatVal, unsigned NumVecElts) {
9387   unsigned OrigAlignment = St.getAlignment();
9388   unsigned EltOffset = SplatVal.getValueType().getSizeInBits() / 8;
9389 
9390   // Create scalar stores. This is at least as good as the code sequence for a
9391   // split unaligned store which is a dup.s, ext.b, and two stores.
9392   // Most of the time the three stores should be replaced by store pair
9393   // instructions (stp).
9394   SDLoc DL(&St);
9395   SDValue BasePtr = St.getBasePtr();
9396   uint64_t BaseOffset = 0;
9397 
9398   const MachinePointerInfo &PtrInfo = St.getPointerInfo();
9399   SDValue NewST1 =
9400       DAG.getStore(St.getChain(), DL, SplatVal, BasePtr, PtrInfo,
9401                    OrigAlignment, St.getMemOperand()->getFlags());
9402 
9403   // As this in ISel, we will not merge this add which may degrade results.
9404   if (BasePtr->getOpcode() == ISD::ADD &&
9405       isa<ConstantSDNode>(BasePtr->getOperand(1))) {
9406     BaseOffset = cast<ConstantSDNode>(BasePtr->getOperand(1))->getSExtValue();
9407     BasePtr = BasePtr->getOperand(0);
9408   }
9409 
9410   unsigned Offset = EltOffset;
9411   while (--NumVecElts) {
9412     unsigned Alignment = MinAlign(OrigAlignment, Offset);
9413     SDValue OffsetPtr =
9414         DAG.getNode(ISD::ADD, DL, MVT::i64, BasePtr,
9415                     DAG.getConstant(BaseOffset + Offset, DL, MVT::i64));
9416     NewST1 = DAG.getStore(NewST1.getValue(0), DL, SplatVal, OffsetPtr,
9417                           PtrInfo.getWithOffset(Offset), Alignment,
9418                           St.getMemOperand()->getFlags());
9419     Offset += EltOffset;
9420   }
9421   return NewST1;
9422 }
9423 
9424 /// Replace a splat of zeros to a vector store by scalar stores of WZR/XZR.  The
9425 /// load store optimizer pass will merge them to store pair stores.  This should
9426 /// be better than a movi to create the vector zero followed by a vector store
9427 /// if the zero constant is not re-used, since one instructions and one register
9428 /// live range will be removed.
9429 ///
9430 /// For example, the final generated code should be:
9431 ///
9432 ///   stp xzr, xzr, [x0]
9433 ///
9434 /// instead of:
9435 ///
9436 ///   movi v0.2d, #0
9437 ///   str q0, [x0]
9438 ///
9439 static SDValue replaceZeroVectorStore(SelectionDAG &DAG, StoreSDNode &St) {
9440   SDValue StVal = St.getValue();
9441   EVT VT = StVal.getValueType();
9442 
9443   // It is beneficial to scalarize a zero splat store for 2 or 3 i64 elements or
9444   // 2, 3 or 4 i32 elements.
9445   int NumVecElts = VT.getVectorNumElements();
9446   if (!(((NumVecElts == 2 || NumVecElts == 3) &&
9447          VT.getVectorElementType().getSizeInBits() == 64) ||
9448         ((NumVecElts == 2 || NumVecElts == 3 || NumVecElts == 4) &&
9449          VT.getVectorElementType().getSizeInBits() == 32)))
9450     return SDValue();
9451 
9452   if (StVal.getOpcode() != ISD::BUILD_VECTOR)
9453     return SDValue();
9454 
9455   // If the zero constant has more than one use then the vector store could be
9456   // better since the constant mov will be amortized and stp q instructions
9457   // should be able to be formed.
9458   if (!StVal.hasOneUse())
9459     return SDValue();
9460 
9461   // If the immediate offset of the address operand is too large for the stp
9462   // instruction, then bail out.
9463   if (DAG.isBaseWithConstantOffset(St.getBasePtr())) {
9464     int64_t Offset = St.getBasePtr()->getConstantOperandVal(1);
9465     if (Offset < -512 || Offset > 504)
9466       return SDValue();
9467   }
9468 
9469   for (int I = 0; I < NumVecElts; ++I) {
9470     SDValue EltVal = StVal.getOperand(I);
9471     if (!isNullConstant(EltVal) && !isNullFPConstant(EltVal))
9472       return SDValue();
9473   }
9474 
9475   // Use a CopyFromReg WZR/XZR here to prevent
9476   // DAGCombiner::MergeConsecutiveStores from undoing this transformation.
9477   SDLoc DL(&St);
9478   unsigned ZeroReg;
9479   EVT ZeroVT;
9480   if (VT.getVectorElementType().getSizeInBits() == 32) {
9481     ZeroReg = AArch64::WZR;
9482     ZeroVT = MVT::i32;
9483   } else {
9484     ZeroReg = AArch64::XZR;
9485     ZeroVT = MVT::i64;
9486   }
9487   SDValue SplatVal =
9488       DAG.getCopyFromReg(DAG.getEntryNode(), DL, ZeroReg, ZeroVT);
9489   return splitStoreSplat(DAG, St, SplatVal, NumVecElts);
9490 }
9491 
9492 /// Replace a splat of a scalar to a vector store by scalar stores of the scalar
9493 /// value. The load store optimizer pass will merge them to store pair stores.
9494 /// This has better performance than a splat of the scalar followed by a split
9495 /// vector store. Even if the stores are not merged it is four stores vs a dup,
9496 /// followed by an ext.b and two stores.
9497 static SDValue replaceSplatVectorStore(SelectionDAG &DAG, StoreSDNode &St) {
9498   SDValue StVal = St.getValue();
9499   EVT VT = StVal.getValueType();
9500 
9501   // Don't replace floating point stores, they possibly won't be transformed to
9502   // stp because of the store pair suppress pass.
9503   if (VT.isFloatingPoint())
9504     return SDValue();
9505 
9506   // We can express a splat as store pair(s) for 2 or 4 elements.
9507   unsigned NumVecElts = VT.getVectorNumElements();
9508   if (NumVecElts != 4 && NumVecElts != 2)
9509     return SDValue();
9510 
9511   // Check that this is a splat.
9512   // Make sure that each of the relevant vector element locations are inserted
9513   // to, i.e. 0 and 1 for v2i64 and 0, 1, 2, 3 for v4i32.
9514   std::bitset<4> IndexNotInserted((1 << NumVecElts) - 1);
9515   SDValue SplatVal;
9516   for (unsigned I = 0; I < NumVecElts; ++I) {
9517     // Check for insert vector elements.
9518     if (StVal.getOpcode() != ISD::INSERT_VECTOR_ELT)
9519       return SDValue();
9520 
9521     // Check that same value is inserted at each vector element.
9522     if (I == 0)
9523       SplatVal = StVal.getOperand(1);
9524     else if (StVal.getOperand(1) != SplatVal)
9525       return SDValue();
9526 
9527     // Check insert element index.
9528     ConstantSDNode *CIndex = dyn_cast<ConstantSDNode>(StVal.getOperand(2));
9529     if (!CIndex)
9530       return SDValue();
9531     uint64_t IndexVal = CIndex->getZExtValue();
9532     if (IndexVal >= NumVecElts)
9533       return SDValue();
9534     IndexNotInserted.reset(IndexVal);
9535 
9536     StVal = StVal.getOperand(0);
9537   }
9538   // Check that all vector element locations were inserted to.
9539   if (IndexNotInserted.any())
9540       return SDValue();
9541 
9542   return splitStoreSplat(DAG, St, SplatVal, NumVecElts);
9543 }
9544 
9545 static SDValue splitStores(SDNode *N, TargetLowering::DAGCombinerInfo &DCI,
9546                            SelectionDAG &DAG,
9547                            const AArch64Subtarget *Subtarget) {
9548   if (!DCI.isBeforeLegalize())
9549     return SDValue();
9550 
9551   StoreSDNode *S = cast<StoreSDNode>(N);
9552   if (S->isVolatile() || S->isIndexed())
9553     return SDValue();
9554 
9555   SDValue StVal = S->getValue();
9556   EVT VT = StVal.getValueType();
9557   if (!VT.isVector())
9558     return SDValue();
9559 
9560   // If we get a splat of zeros, convert this vector store to a store of
9561   // scalars. They will be merged into store pairs of xzr thereby removing one
9562   // instruction and one register.
9563   if (SDValue ReplacedZeroSplat = replaceZeroVectorStore(DAG, *S))
9564     return ReplacedZeroSplat;
9565 
9566   // FIXME: The logic for deciding if an unaligned store should be split should
9567   // be included in TLI.allowsMisalignedMemoryAccesses(), and there should be
9568   // a call to that function here.
9569 
9570   if (!Subtarget->isMisaligned128StoreSlow())
9571     return SDValue();
9572 
9573   // Don't split at -Oz.
9574   if (DAG.getMachineFunction().getFunction()->optForMinSize())
9575     return SDValue();
9576 
9577   // Don't split v2i64 vectors. Memcpy lowering produces those and splitting
9578   // those up regresses performance on micro-benchmarks and olden/bh.
9579   if (VT.getVectorNumElements() < 2 || VT == MVT::v2i64)
9580     return SDValue();
9581 
9582   // Split unaligned 16B stores. They are terrible for performance.
9583   // Don't split stores with alignment of 1 or 2. Code that uses clang vector
9584   // extensions can use this to mark that it does not want splitting to happen
9585   // (by underspecifying alignment to be 1 or 2). Furthermore, the chance of
9586   // eliminating alignment hazards is only 1 in 8 for alignment of 2.
9587   if (VT.getSizeInBits() != 128 || S->getAlignment() >= 16 ||
9588       S->getAlignment() <= 2)
9589     return SDValue();
9590 
9591   // If we get a splat of a scalar convert this vector store to a store of
9592   // scalars. They will be merged into store pairs thereby removing two
9593   // instructions.
9594   if (SDValue ReplacedSplat = replaceSplatVectorStore(DAG, *S))
9595     return ReplacedSplat;
9596 
9597   SDLoc DL(S);
9598   unsigned NumElts = VT.getVectorNumElements() / 2;
9599   // Split VT into two.
9600   EVT HalfVT =
9601       EVT::getVectorVT(*DAG.getContext(), VT.getVectorElementType(), NumElts);
9602   SDValue SubVector0 = DAG.getNode(ISD::EXTRACT_SUBVECTOR, DL, HalfVT, StVal,
9603                                    DAG.getConstant(0, DL, MVT::i64));
9604   SDValue SubVector1 = DAG.getNode(ISD::EXTRACT_SUBVECTOR, DL, HalfVT, StVal,
9605                                    DAG.getConstant(NumElts, DL, MVT::i64));
9606   SDValue BasePtr = S->getBasePtr();
9607   SDValue NewST1 =
9608       DAG.getStore(S->getChain(), DL, SubVector0, BasePtr, S->getPointerInfo(),
9609                    S->getAlignment(), S->getMemOperand()->getFlags());
9610   SDValue OffsetPtr = DAG.getNode(ISD::ADD, DL, MVT::i64, BasePtr,
9611                                   DAG.getConstant(8, DL, MVT::i64));
9612   return DAG.getStore(NewST1.getValue(0), DL, SubVector1, OffsetPtr,
9613                       S->getPointerInfo(), S->getAlignment(),
9614                       S->getMemOperand()->getFlags());
9615 }
9616 
9617 /// Target-specific DAG combine function for post-increment LD1 (lane) and
9618 /// post-increment LD1R.
9619 static SDValue performPostLD1Combine(SDNode *N,
9620                                      TargetLowering::DAGCombinerInfo &DCI,
9621                                      bool IsLaneOp) {
9622   if (DCI.isBeforeLegalizeOps())
9623     return SDValue();
9624 
9625   SelectionDAG &DAG = DCI.DAG;
9626   EVT VT = N->getValueType(0);
9627 
9628   unsigned LoadIdx = IsLaneOp ? 1 : 0;
9629   SDNode *LD = N->getOperand(LoadIdx).getNode();
9630   // If it is not LOAD, can not do such combine.
9631   if (LD->getOpcode() != ISD::LOAD)
9632     return SDValue();
9633 
9634   LoadSDNode *LoadSDN = cast<LoadSDNode>(LD);
9635   EVT MemVT = LoadSDN->getMemoryVT();
9636   // Check if memory operand is the same type as the vector element.
9637   if (MemVT != VT.getVectorElementType())
9638     return SDValue();
9639 
9640   // Check if there are other uses. If so, do not combine as it will introduce
9641   // an extra load.
9642   for (SDNode::use_iterator UI = LD->use_begin(), UE = LD->use_end(); UI != UE;
9643        ++UI) {
9644     if (UI.getUse().getResNo() == 1) // Ignore uses of the chain result.
9645       continue;
9646     if (*UI != N)
9647       return SDValue();
9648   }
9649 
9650   SDValue Addr = LD->getOperand(1);
9651   SDValue Vector = N->getOperand(0);
9652   // Search for a use of the address operand that is an increment.
9653   for (SDNode::use_iterator UI = Addr.getNode()->use_begin(), UE =
9654        Addr.getNode()->use_end(); UI != UE; ++UI) {
9655     SDNode *User = *UI;
9656     if (User->getOpcode() != ISD::ADD
9657         || UI.getUse().getResNo() != Addr.getResNo())
9658       continue;
9659 
9660     // Check that the add is independent of the load.  Otherwise, folding it
9661     // would create a cycle.
9662     if (User->isPredecessorOf(LD) || LD->isPredecessorOf(User))
9663       continue;
9664     // Also check that add is not used in the vector operand.  This would also
9665     // create a cycle.
9666     if (User->isPredecessorOf(Vector.getNode()))
9667       continue;
9668 
9669     // If the increment is a constant, it must match the memory ref size.
9670     SDValue Inc = User->getOperand(User->getOperand(0) == Addr ? 1 : 0);
9671     if (ConstantSDNode *CInc = dyn_cast<ConstantSDNode>(Inc.getNode())) {
9672       uint32_t IncVal = CInc->getZExtValue();
9673       unsigned NumBytes = VT.getScalarSizeInBits() / 8;
9674       if (IncVal != NumBytes)
9675         continue;
9676       Inc = DAG.getRegister(AArch64::XZR, MVT::i64);
9677     }
9678 
9679     // Finally, check that the vector doesn't depend on the load.
9680     // Again, this would create a cycle.
9681     // The load depending on the vector is fine, as that's the case for the
9682     // LD1*post we'll eventually generate anyway.
9683     if (LoadSDN->isPredecessorOf(Vector.getNode()))
9684       continue;
9685 
9686     SmallVector<SDValue, 8> Ops;
9687     Ops.push_back(LD->getOperand(0));  // Chain
9688     if (IsLaneOp) {
9689       Ops.push_back(Vector);           // The vector to be inserted
9690       Ops.push_back(N->getOperand(2)); // The lane to be inserted in the vector
9691     }
9692     Ops.push_back(Addr);
9693     Ops.push_back(Inc);
9694 
9695     EVT Tys[3] = { VT, MVT::i64, MVT::Other };
9696     SDVTList SDTys = DAG.getVTList(Tys);
9697     unsigned NewOp = IsLaneOp ? AArch64ISD::LD1LANEpost : AArch64ISD::LD1DUPpost;
9698     SDValue UpdN = DAG.getMemIntrinsicNode(NewOp, SDLoc(N), SDTys, Ops,
9699                                            MemVT,
9700                                            LoadSDN->getMemOperand());
9701 
9702     // Update the uses.
9703     SDValue NewResults[] = {
9704         SDValue(LD, 0),            // The result of load
9705         SDValue(UpdN.getNode(), 2) // Chain
9706     };
9707     DCI.CombineTo(LD, NewResults);
9708     DCI.CombineTo(N, SDValue(UpdN.getNode(), 0));     // Dup/Inserted Result
9709     DCI.CombineTo(User, SDValue(UpdN.getNode(), 1));  // Write back register
9710 
9711     break;
9712   }
9713   return SDValue();
9714 }
9715 
9716 /// Simplify ``Addr`` given that the top byte of it is ignored by HW during
9717 /// address translation.
9718 static bool performTBISimplification(SDValue Addr,
9719                                      TargetLowering::DAGCombinerInfo &DCI,
9720                                      SelectionDAG &DAG) {
9721   APInt DemandedMask = APInt::getLowBitsSet(64, 56);
9722   KnownBits Known;
9723   TargetLowering::TargetLoweringOpt TLO(DAG, !DCI.isBeforeLegalize(),
9724                                         !DCI.isBeforeLegalizeOps());
9725   const TargetLowering &TLI = DAG.getTargetLoweringInfo();
9726   if (TLI.SimplifyDemandedBits(Addr, DemandedMask, Known, TLO)) {
9727     DCI.CommitTargetLoweringOpt(TLO);
9728     return true;
9729   }
9730   return false;
9731 }
9732 
9733 static SDValue performSTORECombine(SDNode *N,
9734                                    TargetLowering::DAGCombinerInfo &DCI,
9735                                    SelectionDAG &DAG,
9736                                    const AArch64Subtarget *Subtarget) {
9737   if (SDValue Split = splitStores(N, DCI, DAG, Subtarget))
9738     return Split;
9739 
9740   if (Subtarget->supportsAddressTopByteIgnored() &&
9741       performTBISimplification(N->getOperand(2), DCI, DAG))
9742     return SDValue(N, 0);
9743 
9744   return SDValue();
9745 }
9746 
9747 
9748 /// Target-specific DAG combine function for NEON load/store intrinsics
9749 /// to merge base address updates.
9750 static SDValue performNEONPostLDSTCombine(SDNode *N,
9751                                           TargetLowering::DAGCombinerInfo &DCI,
9752                                           SelectionDAG &DAG) {
9753   if (DCI.isBeforeLegalize() || DCI.isCalledByLegalizer())
9754     return SDValue();
9755 
9756   unsigned AddrOpIdx = N->getNumOperands() - 1;
9757   SDValue Addr = N->getOperand(AddrOpIdx);
9758 
9759   // Search for a use of the address operand that is an increment.
9760   for (SDNode::use_iterator UI = Addr.getNode()->use_begin(),
9761        UE = Addr.getNode()->use_end(); UI != UE; ++UI) {
9762     SDNode *User = *UI;
9763     if (User->getOpcode() != ISD::ADD ||
9764         UI.getUse().getResNo() != Addr.getResNo())
9765       continue;
9766 
9767     // Check that the add is independent of the load/store.  Otherwise, folding
9768     // it would create a cycle.
9769     if (User->isPredecessorOf(N) || N->isPredecessorOf(User))
9770       continue;
9771 
9772     // Find the new opcode for the updating load/store.
9773     bool IsStore = false;
9774     bool IsLaneOp = false;
9775     bool IsDupOp = false;
9776     unsigned NewOpc = 0;
9777     unsigned NumVecs = 0;
9778     unsigned IntNo = cast<ConstantSDNode>(N->getOperand(1))->getZExtValue();
9779     switch (IntNo) {
9780     default: llvm_unreachable("unexpected intrinsic for Neon base update");
9781     case Intrinsic::aarch64_neon_ld2:       NewOpc = AArch64ISD::LD2post;
9782       NumVecs = 2; break;
9783     case Intrinsic::aarch64_neon_ld3:       NewOpc = AArch64ISD::LD3post;
9784       NumVecs = 3; break;
9785     case Intrinsic::aarch64_neon_ld4:       NewOpc = AArch64ISD::LD4post;
9786       NumVecs = 4; break;
9787     case Intrinsic::aarch64_neon_st2:       NewOpc = AArch64ISD::ST2post;
9788       NumVecs = 2; IsStore = true; break;
9789     case Intrinsic::aarch64_neon_st3:       NewOpc = AArch64ISD::ST3post;
9790       NumVecs = 3; IsStore = true; break;
9791     case Intrinsic::aarch64_neon_st4:       NewOpc = AArch64ISD::ST4post;
9792       NumVecs = 4; IsStore = true; break;
9793     case Intrinsic::aarch64_neon_ld1x2:     NewOpc = AArch64ISD::LD1x2post;
9794       NumVecs = 2; break;
9795     case Intrinsic::aarch64_neon_ld1x3:     NewOpc = AArch64ISD::LD1x3post;
9796       NumVecs = 3; break;
9797     case Intrinsic::aarch64_neon_ld1x4:     NewOpc = AArch64ISD::LD1x4post;
9798       NumVecs = 4; break;
9799     case Intrinsic::aarch64_neon_st1x2:     NewOpc = AArch64ISD::ST1x2post;
9800       NumVecs = 2; IsStore = true; break;
9801     case Intrinsic::aarch64_neon_st1x3:     NewOpc = AArch64ISD::ST1x3post;
9802       NumVecs = 3; IsStore = true; break;
9803     case Intrinsic::aarch64_neon_st1x4:     NewOpc = AArch64ISD::ST1x4post;
9804       NumVecs = 4; IsStore = true; break;
9805     case Intrinsic::aarch64_neon_ld2r:      NewOpc = AArch64ISD::LD2DUPpost;
9806       NumVecs = 2; IsDupOp = true; break;
9807     case Intrinsic::aarch64_neon_ld3r:      NewOpc = AArch64ISD::LD3DUPpost;
9808       NumVecs = 3; IsDupOp = true; break;
9809     case Intrinsic::aarch64_neon_ld4r:      NewOpc = AArch64ISD::LD4DUPpost;
9810       NumVecs = 4; IsDupOp = true; break;
9811     case Intrinsic::aarch64_neon_ld2lane:   NewOpc = AArch64ISD::LD2LANEpost;
9812       NumVecs = 2; IsLaneOp = true; break;
9813     case Intrinsic::aarch64_neon_ld3lane:   NewOpc = AArch64ISD::LD3LANEpost;
9814       NumVecs = 3; IsLaneOp = true; break;
9815     case Intrinsic::aarch64_neon_ld4lane:   NewOpc = AArch64ISD::LD4LANEpost;
9816       NumVecs = 4; IsLaneOp = true; break;
9817     case Intrinsic::aarch64_neon_st2lane:   NewOpc = AArch64ISD::ST2LANEpost;
9818       NumVecs = 2; IsStore = true; IsLaneOp = true; break;
9819     case Intrinsic::aarch64_neon_st3lane:   NewOpc = AArch64ISD::ST3LANEpost;
9820       NumVecs = 3; IsStore = true; IsLaneOp = true; break;
9821     case Intrinsic::aarch64_neon_st4lane:   NewOpc = AArch64ISD::ST4LANEpost;
9822       NumVecs = 4; IsStore = true; IsLaneOp = true; break;
9823     }
9824 
9825     EVT VecTy;
9826     if (IsStore)
9827       VecTy = N->getOperand(2).getValueType();
9828     else
9829       VecTy = N->getValueType(0);
9830 
9831     // If the increment is a constant, it must match the memory ref size.
9832     SDValue Inc = User->getOperand(User->getOperand(0) == Addr ? 1 : 0);
9833     if (ConstantSDNode *CInc = dyn_cast<ConstantSDNode>(Inc.getNode())) {
9834       uint32_t IncVal = CInc->getZExtValue();
9835       unsigned NumBytes = NumVecs * VecTy.getSizeInBits() / 8;
9836       if (IsLaneOp || IsDupOp)
9837         NumBytes /= VecTy.getVectorNumElements();
9838       if (IncVal != NumBytes)
9839         continue;
9840       Inc = DAG.getRegister(AArch64::XZR, MVT::i64);
9841     }
9842     SmallVector<SDValue, 8> Ops;
9843     Ops.push_back(N->getOperand(0)); // Incoming chain
9844     // Load lane and store have vector list as input.
9845     if (IsLaneOp || IsStore)
9846       for (unsigned i = 2; i < AddrOpIdx; ++i)
9847         Ops.push_back(N->getOperand(i));
9848     Ops.push_back(Addr); // Base register
9849     Ops.push_back(Inc);
9850 
9851     // Return Types.
9852     EVT Tys[6];
9853     unsigned NumResultVecs = (IsStore ? 0 : NumVecs);
9854     unsigned n;
9855     for (n = 0; n < NumResultVecs; ++n)
9856       Tys[n] = VecTy;
9857     Tys[n++] = MVT::i64;  // Type of write back register
9858     Tys[n] = MVT::Other;  // Type of the chain
9859     SDVTList SDTys = DAG.getVTList(makeArrayRef(Tys, NumResultVecs + 2));
9860 
9861     MemIntrinsicSDNode *MemInt = cast<MemIntrinsicSDNode>(N);
9862     SDValue UpdN = DAG.getMemIntrinsicNode(NewOpc, SDLoc(N), SDTys, Ops,
9863                                            MemInt->getMemoryVT(),
9864                                            MemInt->getMemOperand());
9865 
9866     // Update the uses.
9867     std::vector<SDValue> NewResults;
9868     for (unsigned i = 0; i < NumResultVecs; ++i) {
9869       NewResults.push_back(SDValue(UpdN.getNode(), i));
9870     }
9871     NewResults.push_back(SDValue(UpdN.getNode(), NumResultVecs + 1));
9872     DCI.CombineTo(N, NewResults);
9873     DCI.CombineTo(User, SDValue(UpdN.getNode(), NumResultVecs));
9874 
9875     break;
9876   }
9877   return SDValue();
9878 }
9879 
9880 // Checks to see if the value is the prescribed width and returns information
9881 // about its extension mode.
9882 static
9883 bool checkValueWidth(SDValue V, unsigned width, ISD::LoadExtType &ExtType) {
9884   ExtType = ISD::NON_EXTLOAD;
9885   switch(V.getNode()->getOpcode()) {
9886   default:
9887     return false;
9888   case ISD::LOAD: {
9889     LoadSDNode *LoadNode = cast<LoadSDNode>(V.getNode());
9890     if ((LoadNode->getMemoryVT() == MVT::i8 && width == 8)
9891        || (LoadNode->getMemoryVT() == MVT::i16 && width == 16)) {
9892       ExtType = LoadNode->getExtensionType();
9893       return true;
9894     }
9895     return false;
9896   }
9897   case ISD::AssertSext: {
9898     VTSDNode *TypeNode = cast<VTSDNode>(V.getNode()->getOperand(1));
9899     if ((TypeNode->getVT() == MVT::i8 && width == 8)
9900        || (TypeNode->getVT() == MVT::i16 && width == 16)) {
9901       ExtType = ISD::SEXTLOAD;
9902       return true;
9903     }
9904     return false;
9905   }
9906   case ISD::AssertZext: {
9907     VTSDNode *TypeNode = cast<VTSDNode>(V.getNode()->getOperand(1));
9908     if ((TypeNode->getVT() == MVT::i8 && width == 8)
9909        || (TypeNode->getVT() == MVT::i16 && width == 16)) {
9910       ExtType = ISD::ZEXTLOAD;
9911       return true;
9912     }
9913     return false;
9914   }
9915   case ISD::Constant:
9916   case ISD::TargetConstant: {
9917     return std::abs(cast<ConstantSDNode>(V.getNode())->getSExtValue()) <
9918            1LL << (width - 1);
9919   }
9920   }
9921 
9922   return true;
9923 }
9924 
9925 // This function does a whole lot of voodoo to determine if the tests are
9926 // equivalent without and with a mask. Essentially what happens is that given a
9927 // DAG resembling:
9928 //
9929 //  +-------------+ +-------------+ +-------------+ +-------------+
9930 //  |    Input    | | AddConstant | | CompConstant| |     CC      |
9931 //  +-------------+ +-------------+ +-------------+ +-------------+
9932 //           |           |           |               |
9933 //           V           V           |    +----------+
9934 //          +-------------+  +----+  |    |
9935 //          |     ADD     |  |0xff|  |    |
9936 //          +-------------+  +----+  |    |
9937 //                  |           |    |    |
9938 //                  V           V    |    |
9939 //                 +-------------+   |    |
9940 //                 |     AND     |   |    |
9941 //                 +-------------+   |    |
9942 //                      |            |    |
9943 //                      +-----+      |    |
9944 //                            |      |    |
9945 //                            V      V    V
9946 //                           +-------------+
9947 //                           |     CMP     |
9948 //                           +-------------+
9949 //
9950 // The AND node may be safely removed for some combinations of inputs. In
9951 // particular we need to take into account the extension type of the Input,
9952 // the exact values of AddConstant, CompConstant, and CC, along with the nominal
9953 // width of the input (this can work for any width inputs, the above graph is
9954 // specific to 8 bits.
9955 //
9956 // The specific equations were worked out by generating output tables for each
9957 // AArch64CC value in terms of and AddConstant (w1), CompConstant(w2). The
9958 // problem was simplified by working with 4 bit inputs, which means we only
9959 // needed to reason about 24 distinct bit patterns: 8 patterns unique to zero
9960 // extension (8,15), 8 patterns unique to sign extensions (-8,-1), and 8
9961 // patterns present in both extensions (0,7). For every distinct set of
9962 // AddConstant and CompConstants bit patterns we can consider the masked and
9963 // unmasked versions to be equivalent if the result of this function is true for
9964 // all 16 distinct bit patterns of for the current extension type of Input (w0).
9965 //
9966 //   sub      w8, w0, w1
9967 //   and      w10, w8, #0x0f
9968 //   cmp      w8, w2
9969 //   cset     w9, AArch64CC
9970 //   cmp      w10, w2
9971 //   cset     w11, AArch64CC
9972 //   cmp      w9, w11
9973 //   cset     w0, eq
9974 //   ret
9975 //
9976 // Since the above function shows when the outputs are equivalent it defines
9977 // when it is safe to remove the AND. Unfortunately it only runs on AArch64 and
9978 // would be expensive to run during compiles. The equations below were written
9979 // in a test harness that confirmed they gave equivalent outputs to the above
9980 // for all inputs function, so they can be used determine if the removal is
9981 // legal instead.
9982 //
9983 // isEquivalentMaskless() is the code for testing if the AND can be removed
9984 // factored out of the DAG recognition as the DAG can take several forms.
9985 
9986 static bool isEquivalentMaskless(unsigned CC, unsigned width,
9987                                  ISD::LoadExtType ExtType, int AddConstant,
9988                                  int CompConstant) {
9989   // By being careful about our equations and only writing the in term
9990   // symbolic values and well known constants (0, 1, -1, MaxUInt) we can
9991   // make them generally applicable to all bit widths.
9992   int MaxUInt = (1 << width);
9993 
9994   // For the purposes of these comparisons sign extending the type is
9995   // equivalent to zero extending the add and displacing it by half the integer
9996   // width. Provided we are careful and make sure our equations are valid over
9997   // the whole range we can just adjust the input and avoid writing equations
9998   // for sign extended inputs.
9999   if (ExtType == ISD::SEXTLOAD)
10000     AddConstant -= (1 << (width-1));
10001 
10002   switch(CC) {
10003   case AArch64CC::LE:
10004   case AArch64CC::GT:
10005     if ((AddConstant == 0) ||
10006         (CompConstant == MaxUInt - 1 && AddConstant < 0) ||
10007         (AddConstant >= 0 && CompConstant < 0) ||
10008         (AddConstant <= 0 && CompConstant <= 0 && CompConstant < AddConstant))
10009       return true;
10010     break;
10011   case AArch64CC::LT:
10012   case AArch64CC::GE:
10013     if ((AddConstant == 0) ||
10014         (AddConstant >= 0 && CompConstant <= 0) ||
10015         (AddConstant <= 0 && CompConstant <= 0 && CompConstant <= AddConstant))
10016       return true;
10017     break;
10018   case AArch64CC::HI:
10019   case AArch64CC::LS:
10020     if ((AddConstant >= 0 && CompConstant < 0) ||
10021        (AddConstant <= 0 && CompConstant >= -1 &&
10022         CompConstant < AddConstant + MaxUInt))
10023       return true;
10024    break;
10025   case AArch64CC::PL:
10026   case AArch64CC::MI:
10027     if ((AddConstant == 0) ||
10028         (AddConstant > 0 && CompConstant <= 0) ||
10029         (AddConstant < 0 && CompConstant <= AddConstant))
10030       return true;
10031     break;
10032   case AArch64CC::LO:
10033   case AArch64CC::HS:
10034     if ((AddConstant >= 0 && CompConstant <= 0) ||
10035         (AddConstant <= 0 && CompConstant >= 0 &&
10036          CompConstant <= AddConstant + MaxUInt))
10037       return true;
10038     break;
10039   case AArch64CC::EQ:
10040   case AArch64CC::NE:
10041     if ((AddConstant > 0 && CompConstant < 0) ||
10042         (AddConstant < 0 && CompConstant >= 0 &&
10043          CompConstant < AddConstant + MaxUInt) ||
10044         (AddConstant >= 0 && CompConstant >= 0 &&
10045          CompConstant >= AddConstant) ||
10046         (AddConstant <= 0 && CompConstant < 0 && CompConstant < AddConstant))
10047       return true;
10048     break;
10049   case AArch64CC::VS:
10050   case AArch64CC::VC:
10051   case AArch64CC::AL:
10052   case AArch64CC::NV:
10053     return true;
10054   case AArch64CC::Invalid:
10055     break;
10056   }
10057 
10058   return false;
10059 }
10060 
10061 static
10062 SDValue performCONDCombine(SDNode *N,
10063                            TargetLowering::DAGCombinerInfo &DCI,
10064                            SelectionDAG &DAG, unsigned CCIndex,
10065                            unsigned CmpIndex) {
10066   unsigned CC = cast<ConstantSDNode>(N->getOperand(CCIndex))->getSExtValue();
10067   SDNode *SubsNode = N->getOperand(CmpIndex).getNode();
10068   unsigned CondOpcode = SubsNode->getOpcode();
10069 
10070   if (CondOpcode != AArch64ISD::SUBS)
10071     return SDValue();
10072 
10073   // There is a SUBS feeding this condition. Is it fed by a mask we can
10074   // use?
10075 
10076   SDNode *AndNode = SubsNode->getOperand(0).getNode();
10077   unsigned MaskBits = 0;
10078 
10079   if (AndNode->getOpcode() != ISD::AND)
10080     return SDValue();
10081 
10082   if (ConstantSDNode *CN = dyn_cast<ConstantSDNode>(AndNode->getOperand(1))) {
10083     uint32_t CNV = CN->getZExtValue();
10084     if (CNV == 255)
10085       MaskBits = 8;
10086     else if (CNV == 65535)
10087       MaskBits = 16;
10088   }
10089 
10090   if (!MaskBits)
10091     return SDValue();
10092 
10093   SDValue AddValue = AndNode->getOperand(0);
10094 
10095   if (AddValue.getOpcode() != ISD::ADD)
10096     return SDValue();
10097 
10098   // The basic dag structure is correct, grab the inputs and validate them.
10099 
10100   SDValue AddInputValue1 = AddValue.getNode()->getOperand(0);
10101   SDValue AddInputValue2 = AddValue.getNode()->getOperand(1);
10102   SDValue SubsInputValue = SubsNode->getOperand(1);
10103 
10104   // The mask is present and the provenance of all the values is a smaller type,
10105   // lets see if the mask is superfluous.
10106 
10107   if (!isa<ConstantSDNode>(AddInputValue2.getNode()) ||
10108       !isa<ConstantSDNode>(SubsInputValue.getNode()))
10109     return SDValue();
10110 
10111   ISD::LoadExtType ExtType;
10112 
10113   if (!checkValueWidth(SubsInputValue, MaskBits, ExtType) ||
10114       !checkValueWidth(AddInputValue2, MaskBits, ExtType) ||
10115       !checkValueWidth(AddInputValue1, MaskBits, ExtType) )
10116     return SDValue();
10117 
10118   if(!isEquivalentMaskless(CC, MaskBits, ExtType,
10119                 cast<ConstantSDNode>(AddInputValue2.getNode())->getSExtValue(),
10120                 cast<ConstantSDNode>(SubsInputValue.getNode())->getSExtValue()))
10121     return SDValue();
10122 
10123   // The AND is not necessary, remove it.
10124 
10125   SDVTList VTs = DAG.getVTList(SubsNode->getValueType(0),
10126                                SubsNode->getValueType(1));
10127   SDValue Ops[] = { AddValue, SubsNode->getOperand(1) };
10128 
10129   SDValue NewValue = DAG.getNode(CondOpcode, SDLoc(SubsNode), VTs, Ops);
10130   DAG.ReplaceAllUsesWith(SubsNode, NewValue.getNode());
10131 
10132   return SDValue(N, 0);
10133 }
10134 
10135 // Optimize compare with zero and branch.
10136 static SDValue performBRCONDCombine(SDNode *N,
10137                                     TargetLowering::DAGCombinerInfo &DCI,
10138                                     SelectionDAG &DAG) {
10139   if (SDValue NV = performCONDCombine(N, DCI, DAG, 2, 3))
10140     N = NV.getNode();
10141   SDValue Chain = N->getOperand(0);
10142   SDValue Dest = N->getOperand(1);
10143   SDValue CCVal = N->getOperand(2);
10144   SDValue Cmp = N->getOperand(3);
10145 
10146   assert(isa<ConstantSDNode>(CCVal) && "Expected a ConstantSDNode here!");
10147   unsigned CC = cast<ConstantSDNode>(CCVal)->getZExtValue();
10148   if (CC != AArch64CC::EQ && CC != AArch64CC::NE)
10149     return SDValue();
10150 
10151   unsigned CmpOpc = Cmp.getOpcode();
10152   if (CmpOpc != AArch64ISD::ADDS && CmpOpc != AArch64ISD::SUBS)
10153     return SDValue();
10154 
10155   // Only attempt folding if there is only one use of the flag and no use of the
10156   // value.
10157   if (!Cmp->hasNUsesOfValue(0, 0) || !Cmp->hasNUsesOfValue(1, 1))
10158     return SDValue();
10159 
10160   SDValue LHS = Cmp.getOperand(0);
10161   SDValue RHS = Cmp.getOperand(1);
10162 
10163   assert(LHS.getValueType() == RHS.getValueType() &&
10164          "Expected the value type to be the same for both operands!");
10165   if (LHS.getValueType() != MVT::i32 && LHS.getValueType() != MVT::i64)
10166     return SDValue();
10167 
10168   if (isNullConstant(LHS))
10169     std::swap(LHS, RHS);
10170 
10171   if (!isNullConstant(RHS))
10172     return SDValue();
10173 
10174   if (LHS.getOpcode() == ISD::SHL || LHS.getOpcode() == ISD::SRA ||
10175       LHS.getOpcode() == ISD::SRL)
10176     return SDValue();
10177 
10178   // Fold the compare into the branch instruction.
10179   SDValue BR;
10180   if (CC == AArch64CC::EQ)
10181     BR = DAG.getNode(AArch64ISD::CBZ, SDLoc(N), MVT::Other, Chain, LHS, Dest);
10182   else
10183     BR = DAG.getNode(AArch64ISD::CBNZ, SDLoc(N), MVT::Other, Chain, LHS, Dest);
10184 
10185   // Do not add new nodes to DAG combiner worklist.
10186   DCI.CombineTo(N, BR, false);
10187 
10188   return SDValue();
10189 }
10190 
10191 // Optimize some simple tbz/tbnz cases.  Returns the new operand and bit to test
10192 // as well as whether the test should be inverted.  This code is required to
10193 // catch these cases (as opposed to standard dag combines) because
10194 // AArch64ISD::TBZ is matched during legalization.
10195 static SDValue getTestBitOperand(SDValue Op, unsigned &Bit, bool &Invert,
10196                                  SelectionDAG &DAG) {
10197 
10198   if (!Op->hasOneUse())
10199     return Op;
10200 
10201   // We don't handle undef/constant-fold cases below, as they should have
10202   // already been taken care of (e.g. and of 0, test of undefined shifted bits,
10203   // etc.)
10204 
10205   // (tbz (trunc x), b) -> (tbz x, b)
10206   // This case is just here to enable more of the below cases to be caught.
10207   if (Op->getOpcode() == ISD::TRUNCATE &&
10208       Bit < Op->getValueType(0).getSizeInBits()) {
10209     return getTestBitOperand(Op->getOperand(0), Bit, Invert, DAG);
10210   }
10211 
10212   if (Op->getNumOperands() != 2)
10213     return Op;
10214 
10215   auto *C = dyn_cast<ConstantSDNode>(Op->getOperand(1));
10216   if (!C)
10217     return Op;
10218 
10219   switch (Op->getOpcode()) {
10220   default:
10221     return Op;
10222 
10223   // (tbz (and x, m), b) -> (tbz x, b)
10224   case ISD::AND:
10225     if ((C->getZExtValue() >> Bit) & 1)
10226       return getTestBitOperand(Op->getOperand(0), Bit, Invert, DAG);
10227     return Op;
10228 
10229   // (tbz (shl x, c), b) -> (tbz x, b-c)
10230   case ISD::SHL:
10231     if (C->getZExtValue() <= Bit &&
10232         (Bit - C->getZExtValue()) < Op->getValueType(0).getSizeInBits()) {
10233       Bit = Bit - C->getZExtValue();
10234       return getTestBitOperand(Op->getOperand(0), Bit, Invert, DAG);
10235     }
10236     return Op;
10237 
10238   // (tbz (sra x, c), b) -> (tbz x, b+c) or (tbz x, msb) if b+c is > # bits in x
10239   case ISD::SRA:
10240     Bit = Bit + C->getZExtValue();
10241     if (Bit >= Op->getValueType(0).getSizeInBits())
10242       Bit = Op->getValueType(0).getSizeInBits() - 1;
10243     return getTestBitOperand(Op->getOperand(0), Bit, Invert, DAG);
10244 
10245   // (tbz (srl x, c), b) -> (tbz x, b+c)
10246   case ISD::SRL:
10247     if ((Bit + C->getZExtValue()) < Op->getValueType(0).getSizeInBits()) {
10248       Bit = Bit + C->getZExtValue();
10249       return getTestBitOperand(Op->getOperand(0), Bit, Invert, DAG);
10250     }
10251     return Op;
10252 
10253   // (tbz (xor x, -1), b) -> (tbnz x, b)
10254   case ISD::XOR:
10255     if ((C->getZExtValue() >> Bit) & 1)
10256       Invert = !Invert;
10257     return getTestBitOperand(Op->getOperand(0), Bit, Invert, DAG);
10258   }
10259 }
10260 
10261 // Optimize test single bit zero/non-zero and branch.
10262 static SDValue performTBZCombine(SDNode *N,
10263                                  TargetLowering::DAGCombinerInfo &DCI,
10264                                  SelectionDAG &DAG) {
10265   unsigned Bit = cast<ConstantSDNode>(N->getOperand(2))->getZExtValue();
10266   bool Invert = false;
10267   SDValue TestSrc = N->getOperand(1);
10268   SDValue NewTestSrc = getTestBitOperand(TestSrc, Bit, Invert, DAG);
10269 
10270   if (TestSrc == NewTestSrc)
10271     return SDValue();
10272 
10273   unsigned NewOpc = N->getOpcode();
10274   if (Invert) {
10275     if (NewOpc == AArch64ISD::TBZ)
10276       NewOpc = AArch64ISD::TBNZ;
10277     else {
10278       assert(NewOpc == AArch64ISD::TBNZ);
10279       NewOpc = AArch64ISD::TBZ;
10280     }
10281   }
10282 
10283   SDLoc DL(N);
10284   return DAG.getNode(NewOpc, DL, MVT::Other, N->getOperand(0), NewTestSrc,
10285                      DAG.getConstant(Bit, DL, MVT::i64), N->getOperand(3));
10286 }
10287 
10288 // vselect (v1i1 setcc) ->
10289 //     vselect (v1iXX setcc)  (XX is the size of the compared operand type)
10290 // FIXME: Currently the type legalizer can't handle VSELECT having v1i1 as
10291 // condition. If it can legalize "VSELECT v1i1" correctly, no need to combine
10292 // such VSELECT.
10293 static SDValue performVSelectCombine(SDNode *N, SelectionDAG &DAG) {
10294   SDValue N0 = N->getOperand(0);
10295   EVT CCVT = N0.getValueType();
10296 
10297   if (N0.getOpcode() != ISD::SETCC || CCVT.getVectorNumElements() != 1 ||
10298       CCVT.getVectorElementType() != MVT::i1)
10299     return SDValue();
10300 
10301   EVT ResVT = N->getValueType(0);
10302   EVT CmpVT = N0.getOperand(0).getValueType();
10303   // Only combine when the result type is of the same size as the compared
10304   // operands.
10305   if (ResVT.getSizeInBits() != CmpVT.getSizeInBits())
10306     return SDValue();
10307 
10308   SDValue IfTrue = N->getOperand(1);
10309   SDValue IfFalse = N->getOperand(2);
10310   SDValue SetCC =
10311       DAG.getSetCC(SDLoc(N), CmpVT.changeVectorElementTypeToInteger(),
10312                    N0.getOperand(0), N0.getOperand(1),
10313                    cast<CondCodeSDNode>(N0.getOperand(2))->get());
10314   return DAG.getNode(ISD::VSELECT, SDLoc(N), ResVT, SetCC,
10315                      IfTrue, IfFalse);
10316 }
10317 
10318 /// A vector select: "(select vL, vR, (setcc LHS, RHS))" is best performed with
10319 /// the compare-mask instructions rather than going via NZCV, even if LHS and
10320 /// RHS are really scalar. This replaces any scalar setcc in the above pattern
10321 /// with a vector one followed by a DUP shuffle on the result.
10322 static SDValue performSelectCombine(SDNode *N,
10323                                     TargetLowering::DAGCombinerInfo &DCI) {
10324   SelectionDAG &DAG = DCI.DAG;
10325   SDValue N0 = N->getOperand(0);
10326   EVT ResVT = N->getValueType(0);
10327 
10328   if (N0.getOpcode() != ISD::SETCC)
10329     return SDValue();
10330 
10331   // Make sure the SETCC result is either i1 (initial DAG), or i32, the lowered
10332   // scalar SetCCResultType. We also don't expect vectors, because we assume
10333   // that selects fed by vector SETCCs are canonicalized to VSELECT.
10334   assert((N0.getValueType() == MVT::i1 || N0.getValueType() == MVT::i32) &&
10335          "Scalar-SETCC feeding SELECT has unexpected result type!");
10336 
10337   // If NumMaskElts == 0, the comparison is larger than select result. The
10338   // largest real NEON comparison is 64-bits per lane, which means the result is
10339   // at most 32-bits and an illegal vector. Just bail out for now.
10340   EVT SrcVT = N0.getOperand(0).getValueType();
10341 
10342   // Don't try to do this optimization when the setcc itself has i1 operands.
10343   // There are no legal vectors of i1, so this would be pointless.
10344   if (SrcVT == MVT::i1)
10345     return SDValue();
10346 
10347   int NumMaskElts = ResVT.getSizeInBits() / SrcVT.getSizeInBits();
10348   if (!ResVT.isVector() || NumMaskElts == 0)
10349     return SDValue();
10350 
10351   SrcVT = EVT::getVectorVT(*DAG.getContext(), SrcVT, NumMaskElts);
10352   EVT CCVT = SrcVT.changeVectorElementTypeToInteger();
10353 
10354   // Also bail out if the vector CCVT isn't the same size as ResVT.
10355   // This can happen if the SETCC operand size doesn't divide the ResVT size
10356   // (e.g., f64 vs v3f32).
10357   if (CCVT.getSizeInBits() != ResVT.getSizeInBits())
10358     return SDValue();
10359 
10360   // Make sure we didn't create illegal types, if we're not supposed to.
10361   assert(DCI.isBeforeLegalize() ||
10362          DAG.getTargetLoweringInfo().isTypeLegal(SrcVT));
10363 
10364   // First perform a vector comparison, where lane 0 is the one we're interested
10365   // in.
10366   SDLoc DL(N0);
10367   SDValue LHS =
10368       DAG.getNode(ISD::SCALAR_TO_VECTOR, DL, SrcVT, N0.getOperand(0));
10369   SDValue RHS =
10370       DAG.getNode(ISD::SCALAR_TO_VECTOR, DL, SrcVT, N0.getOperand(1));
10371   SDValue SetCC = DAG.getNode(ISD::SETCC, DL, CCVT, LHS, RHS, N0.getOperand(2));
10372 
10373   // Now duplicate the comparison mask we want across all other lanes.
10374   SmallVector<int, 8> DUPMask(CCVT.getVectorNumElements(), 0);
10375   SDValue Mask = DAG.getVectorShuffle(CCVT, DL, SetCC, SetCC, DUPMask);
10376   Mask = DAG.getNode(ISD::BITCAST, DL,
10377                      ResVT.changeVectorElementTypeToInteger(), Mask);
10378 
10379   return DAG.getSelect(DL, ResVT, Mask, N->getOperand(1), N->getOperand(2));
10380 }
10381 
10382 /// Get rid of unnecessary NVCASTs (that don't change the type).
10383 static SDValue performNVCASTCombine(SDNode *N) {
10384   if (N->getValueType(0) == N->getOperand(0).getValueType())
10385     return N->getOperand(0);
10386 
10387   return SDValue();
10388 }
10389 
10390 SDValue AArch64TargetLowering::PerformDAGCombine(SDNode *N,
10391                                                  DAGCombinerInfo &DCI) const {
10392   SelectionDAG &DAG = DCI.DAG;
10393   switch (N->getOpcode()) {
10394   default:
10395     DEBUG(dbgs() << "Custom combining: skipping\n");
10396     break;
10397   case ISD::ADD:
10398   case ISD::SUB:
10399     return performAddSubLongCombine(N, DCI, DAG);
10400   case ISD::XOR:
10401     return performXorCombine(N, DAG, DCI, Subtarget);
10402   case ISD::MUL:
10403     return performMulCombine(N, DAG, DCI, Subtarget);
10404   case ISD::SINT_TO_FP:
10405   case ISD::UINT_TO_FP:
10406     return performIntToFpCombine(N, DAG, Subtarget);
10407   case ISD::FP_TO_SINT:
10408   case ISD::FP_TO_UINT:
10409     return performFpToIntCombine(N, DAG, DCI, Subtarget);
10410   case ISD::FDIV:
10411     return performFDivCombine(N, DAG, DCI, Subtarget);
10412   case ISD::OR:
10413     return performORCombine(N, DCI, Subtarget);
10414   case ISD::SRL:
10415     return performSRLCombine(N, DCI);
10416   case ISD::INTRINSIC_WO_CHAIN:
10417     return performIntrinsicCombine(N, DCI, Subtarget);
10418   case ISD::ANY_EXTEND:
10419   case ISD::ZERO_EXTEND:
10420   case ISD::SIGN_EXTEND:
10421     return performExtendCombine(N, DCI, DAG);
10422   case ISD::BITCAST:
10423     return performBitcastCombine(N, DCI, DAG);
10424   case ISD::CONCAT_VECTORS:
10425     return performConcatVectorsCombine(N, DCI, DAG);
10426   case ISD::SELECT:
10427     return performSelectCombine(N, DCI);
10428   case ISD::VSELECT:
10429     return performVSelectCombine(N, DCI.DAG);
10430   case ISD::LOAD:
10431     if (performTBISimplification(N->getOperand(1), DCI, DAG))
10432       return SDValue(N, 0);
10433     break;
10434   case ISD::STORE:
10435     return performSTORECombine(N, DCI, DAG, Subtarget);
10436   case AArch64ISD::BRCOND:
10437     return performBRCONDCombine(N, DCI, DAG);
10438   case AArch64ISD::TBNZ:
10439   case AArch64ISD::TBZ:
10440     return performTBZCombine(N, DCI, DAG);
10441   case AArch64ISD::CSEL:
10442     return performCONDCombine(N, DCI, DAG, 2, 3);
10443   case AArch64ISD::DUP:
10444     return performPostLD1Combine(N, DCI, false);
10445   case AArch64ISD::NVCAST:
10446     return performNVCASTCombine(N);
10447   case ISD::INSERT_VECTOR_ELT:
10448     return performPostLD1Combine(N, DCI, true);
10449   case ISD::INTRINSIC_VOID:
10450   case ISD::INTRINSIC_W_CHAIN:
10451     switch (cast<ConstantSDNode>(N->getOperand(1))->getZExtValue()) {
10452     case Intrinsic::aarch64_neon_ld2:
10453     case Intrinsic::aarch64_neon_ld3:
10454     case Intrinsic::aarch64_neon_ld4:
10455     case Intrinsic::aarch64_neon_ld1x2:
10456     case Intrinsic::aarch64_neon_ld1x3:
10457     case Intrinsic::aarch64_neon_ld1x4:
10458     case Intrinsic::aarch64_neon_ld2lane:
10459     case Intrinsic::aarch64_neon_ld3lane:
10460     case Intrinsic::aarch64_neon_ld4lane:
10461     case Intrinsic::aarch64_neon_ld2r:
10462     case Intrinsic::aarch64_neon_ld3r:
10463     case Intrinsic::aarch64_neon_ld4r:
10464     case Intrinsic::aarch64_neon_st2:
10465     case Intrinsic::aarch64_neon_st3:
10466     case Intrinsic::aarch64_neon_st4:
10467     case Intrinsic::aarch64_neon_st1x2:
10468     case Intrinsic::aarch64_neon_st1x3:
10469     case Intrinsic::aarch64_neon_st1x4:
10470     case Intrinsic::aarch64_neon_st2lane:
10471     case Intrinsic::aarch64_neon_st3lane:
10472     case Intrinsic::aarch64_neon_st4lane:
10473       return performNEONPostLDSTCombine(N, DCI, DAG);
10474     default:
10475       break;
10476     }
10477   }
10478   return SDValue();
10479 }
10480 
10481 // Check if the return value is used as only a return value, as otherwise
10482 // we can't perform a tail-call. In particular, we need to check for
10483 // target ISD nodes that are returns and any other "odd" constructs
10484 // that the generic analysis code won't necessarily catch.
10485 bool AArch64TargetLowering::isUsedByReturnOnly(SDNode *N,
10486                                                SDValue &Chain) const {
10487   if (N->getNumValues() != 1)
10488     return false;
10489   if (!N->hasNUsesOfValue(1, 0))
10490     return false;
10491 
10492   SDValue TCChain = Chain;
10493   SDNode *Copy = *N->use_begin();
10494   if (Copy->getOpcode() == ISD::CopyToReg) {
10495     // If the copy has a glue operand, we conservatively assume it isn't safe to
10496     // perform a tail call.
10497     if (Copy->getOperand(Copy->getNumOperands() - 1).getValueType() ==
10498         MVT::Glue)
10499       return false;
10500     TCChain = Copy->getOperand(0);
10501   } else if (Copy->getOpcode() != ISD::FP_EXTEND)
10502     return false;
10503 
10504   bool HasRet = false;
10505   for (SDNode *Node : Copy->uses()) {
10506     if (Node->getOpcode() != AArch64ISD::RET_FLAG)
10507       return false;
10508     HasRet = true;
10509   }
10510 
10511   if (!HasRet)
10512     return false;
10513 
10514   Chain = TCChain;
10515   return true;
10516 }
10517 
10518 // Return whether the an instruction can potentially be optimized to a tail
10519 // call. This will cause the optimizers to attempt to move, or duplicate,
10520 // return instructions to help enable tail call optimizations for this
10521 // instruction.
10522 bool AArch64TargetLowering::mayBeEmittedAsTailCall(const CallInst *CI) const {
10523   return CI->isTailCall();
10524 }
10525 
10526 bool AArch64TargetLowering::getIndexedAddressParts(SDNode *Op, SDValue &Base,
10527                                                    SDValue &Offset,
10528                                                    ISD::MemIndexedMode &AM,
10529                                                    bool &IsInc,
10530                                                    SelectionDAG &DAG) const {
10531   if (Op->getOpcode() != ISD::ADD && Op->getOpcode() != ISD::SUB)
10532     return false;
10533 
10534   Base = Op->getOperand(0);
10535   // All of the indexed addressing mode instructions take a signed
10536   // 9 bit immediate offset.
10537   if (ConstantSDNode *RHS = dyn_cast<ConstantSDNode>(Op->getOperand(1))) {
10538     int64_t RHSC = RHS->getSExtValue();
10539     if (Op->getOpcode() == ISD::SUB)
10540       RHSC = -(uint64_t)RHSC;
10541     if (!isInt<9>(RHSC))
10542       return false;
10543     IsInc = (Op->getOpcode() == ISD::ADD);
10544     Offset = Op->getOperand(1);
10545     return true;
10546   }
10547   return false;
10548 }
10549 
10550 bool AArch64TargetLowering::getPreIndexedAddressParts(SDNode *N, SDValue &Base,
10551                                                       SDValue &Offset,
10552                                                       ISD::MemIndexedMode &AM,
10553                                                       SelectionDAG &DAG) const {
10554   EVT VT;
10555   SDValue Ptr;
10556   if (LoadSDNode *LD = dyn_cast<LoadSDNode>(N)) {
10557     VT = LD->getMemoryVT();
10558     Ptr = LD->getBasePtr();
10559   } else if (StoreSDNode *ST = dyn_cast<StoreSDNode>(N)) {
10560     VT = ST->getMemoryVT();
10561     Ptr = ST->getBasePtr();
10562   } else
10563     return false;
10564 
10565   bool IsInc;
10566   if (!getIndexedAddressParts(Ptr.getNode(), Base, Offset, AM, IsInc, DAG))
10567     return false;
10568   AM = IsInc ? ISD::PRE_INC : ISD::PRE_DEC;
10569   return true;
10570 }
10571 
10572 bool AArch64TargetLowering::getPostIndexedAddressParts(
10573     SDNode *N, SDNode *Op, SDValue &Base, SDValue &Offset,
10574     ISD::MemIndexedMode &AM, SelectionDAG &DAG) const {
10575   EVT VT;
10576   SDValue Ptr;
10577   if (LoadSDNode *LD = dyn_cast<LoadSDNode>(N)) {
10578     VT = LD->getMemoryVT();
10579     Ptr = LD->getBasePtr();
10580   } else if (StoreSDNode *ST = dyn_cast<StoreSDNode>(N)) {
10581     VT = ST->getMemoryVT();
10582     Ptr = ST->getBasePtr();
10583   } else
10584     return false;
10585 
10586   bool IsInc;
10587   if (!getIndexedAddressParts(Op, Base, Offset, AM, IsInc, DAG))
10588     return false;
10589   // Post-indexing updates the base, so it's not a valid transform
10590   // if that's not the same as the load's pointer.
10591   if (Ptr != Base)
10592     return false;
10593   AM = IsInc ? ISD::POST_INC : ISD::POST_DEC;
10594   return true;
10595 }
10596 
10597 static void ReplaceBITCASTResults(SDNode *N, SmallVectorImpl<SDValue> &Results,
10598                                   SelectionDAG &DAG) {
10599   SDLoc DL(N);
10600   SDValue Op = N->getOperand(0);
10601 
10602   if (N->getValueType(0) != MVT::i16 || Op.getValueType() != MVT::f16)
10603     return;
10604 
10605   Op = SDValue(
10606       DAG.getMachineNode(TargetOpcode::INSERT_SUBREG, DL, MVT::f32,
10607                          DAG.getUNDEF(MVT::i32), Op,
10608                          DAG.getTargetConstant(AArch64::hsub, DL, MVT::i32)),
10609       0);
10610   Op = DAG.getNode(ISD::BITCAST, DL, MVT::i32, Op);
10611   Results.push_back(DAG.getNode(ISD::TRUNCATE, DL, MVT::i16, Op));
10612 }
10613 
10614 static void ReplaceReductionResults(SDNode *N,
10615                                     SmallVectorImpl<SDValue> &Results,
10616                                     SelectionDAG &DAG, unsigned InterOp,
10617                                     unsigned AcrossOp) {
10618   EVT LoVT, HiVT;
10619   SDValue Lo, Hi;
10620   SDLoc dl(N);
10621   std::tie(LoVT, HiVT) = DAG.GetSplitDestVTs(N->getValueType(0));
10622   std::tie(Lo, Hi) = DAG.SplitVectorOperand(N, 0);
10623   SDValue InterVal = DAG.getNode(InterOp, dl, LoVT, Lo, Hi);
10624   SDValue SplitVal = DAG.getNode(AcrossOp, dl, LoVT, InterVal);
10625   Results.push_back(SplitVal);
10626 }
10627 
10628 static std::pair<SDValue, SDValue> splitInt128(SDValue N, SelectionDAG &DAG) {
10629   SDLoc DL(N);
10630   SDValue Lo = DAG.getNode(ISD::TRUNCATE, DL, MVT::i64, N);
10631   SDValue Hi = DAG.getNode(ISD::TRUNCATE, DL, MVT::i64,
10632                            DAG.getNode(ISD::SRL, DL, MVT::i128, N,
10633                                        DAG.getConstant(64, DL, MVT::i64)));
10634   return std::make_pair(Lo, Hi);
10635 }
10636 
10637 static void ReplaceCMP_SWAP_128Results(SDNode *N,
10638                                        SmallVectorImpl<SDValue> & Results,
10639                                        SelectionDAG &DAG) {
10640   assert(N->getValueType(0) == MVT::i128 &&
10641          "AtomicCmpSwap on types less than 128 should be legal");
10642   auto Desired = splitInt128(N->getOperand(2), DAG);
10643   auto New = splitInt128(N->getOperand(3), DAG);
10644   SDValue Ops[] = {N->getOperand(1), Desired.first, Desired.second,
10645                    New.first,        New.second,    N->getOperand(0)};
10646   SDNode *CmpSwap = DAG.getMachineNode(
10647       AArch64::CMP_SWAP_128, SDLoc(N),
10648       DAG.getVTList(MVT::i64, MVT::i64, MVT::i32, MVT::Other), Ops);
10649 
10650   MachineFunction &MF = DAG.getMachineFunction();
10651   MachineSDNode::mmo_iterator MemOp = MF.allocateMemRefsArray(1);
10652   MemOp[0] = cast<MemSDNode>(N)->getMemOperand();
10653   cast<MachineSDNode>(CmpSwap)->setMemRefs(MemOp, MemOp + 1);
10654 
10655   Results.push_back(SDValue(CmpSwap, 0));
10656   Results.push_back(SDValue(CmpSwap, 1));
10657   Results.push_back(SDValue(CmpSwap, 3));
10658 }
10659 
10660 void AArch64TargetLowering::ReplaceNodeResults(
10661     SDNode *N, SmallVectorImpl<SDValue> &Results, SelectionDAG &DAG) const {
10662   switch (N->getOpcode()) {
10663   default:
10664     llvm_unreachable("Don't know how to custom expand this");
10665   case ISD::BITCAST:
10666     ReplaceBITCASTResults(N, Results, DAG);
10667     return;
10668   case ISD::VECREDUCE_ADD:
10669   case ISD::VECREDUCE_SMAX:
10670   case ISD::VECREDUCE_SMIN:
10671   case ISD::VECREDUCE_UMAX:
10672   case ISD::VECREDUCE_UMIN:
10673     Results.push_back(LowerVECREDUCE(SDValue(N, 0), DAG));
10674     return;
10675 
10676   case AArch64ISD::SADDV:
10677     ReplaceReductionResults(N, Results, DAG, ISD::ADD, AArch64ISD::SADDV);
10678     return;
10679   case AArch64ISD::UADDV:
10680     ReplaceReductionResults(N, Results, DAG, ISD::ADD, AArch64ISD::UADDV);
10681     return;
10682   case AArch64ISD::SMINV:
10683     ReplaceReductionResults(N, Results, DAG, ISD::SMIN, AArch64ISD::SMINV);
10684     return;
10685   case AArch64ISD::UMINV:
10686     ReplaceReductionResults(N, Results, DAG, ISD::UMIN, AArch64ISD::UMINV);
10687     return;
10688   case AArch64ISD::SMAXV:
10689     ReplaceReductionResults(N, Results, DAG, ISD::SMAX, AArch64ISD::SMAXV);
10690     return;
10691   case AArch64ISD::UMAXV:
10692     ReplaceReductionResults(N, Results, DAG, ISD::UMAX, AArch64ISD::UMAXV);
10693     return;
10694   case ISD::FP_TO_UINT:
10695   case ISD::FP_TO_SINT:
10696     assert(N->getValueType(0) == MVT::i128 && "unexpected illegal conversion");
10697     // Let normal code take care of it by not adding anything to Results.
10698     return;
10699   case ISD::ATOMIC_CMP_SWAP:
10700     ReplaceCMP_SWAP_128Results(N, Results, DAG);
10701     return;
10702   }
10703 }
10704 
10705 bool AArch64TargetLowering::useLoadStackGuardNode() const {
10706   if (Subtarget->isTargetAndroid() || Subtarget->isTargetFuchsia())
10707     return TargetLowering::useLoadStackGuardNode();
10708   return true;
10709 }
10710 
10711 unsigned AArch64TargetLowering::combineRepeatedFPDivisors() const {
10712   // Combine multiple FDIVs with the same divisor into multiple FMULs by the
10713   // reciprocal if there are three or more FDIVs.
10714   return 3;
10715 }
10716 
10717 TargetLoweringBase::LegalizeTypeAction
10718 AArch64TargetLowering::getPreferredVectorAction(EVT VT) const {
10719   MVT SVT = VT.getSimpleVT();
10720   // During type legalization, we prefer to widen v1i8, v1i16, v1i32  to v8i8,
10721   // v4i16, v2i32 instead of to promote.
10722   if (SVT == MVT::v1i8 || SVT == MVT::v1i16 || SVT == MVT::v1i32
10723       || SVT == MVT::v1f32)
10724     return TypeWidenVector;
10725 
10726   return TargetLoweringBase::getPreferredVectorAction(VT);
10727 }
10728 
10729 // Loads and stores less than 128-bits are already atomic; ones above that
10730 // are doomed anyway, so defer to the default libcall and blame the OS when
10731 // things go wrong.
10732 bool AArch64TargetLowering::shouldExpandAtomicStoreInIR(StoreInst *SI) const {
10733   unsigned Size = SI->getValueOperand()->getType()->getPrimitiveSizeInBits();
10734   return Size == 128;
10735 }
10736 
10737 // Loads and stores less than 128-bits are already atomic; ones above that
10738 // are doomed anyway, so defer to the default libcall and blame the OS when
10739 // things go wrong.
10740 TargetLowering::AtomicExpansionKind
10741 AArch64TargetLowering::shouldExpandAtomicLoadInIR(LoadInst *LI) const {
10742   unsigned Size = LI->getType()->getPrimitiveSizeInBits();
10743   return Size == 128 ? AtomicExpansionKind::LLSC : AtomicExpansionKind::None;
10744 }
10745 
10746 // For the real atomic operations, we have ldxr/stxr up to 128 bits,
10747 TargetLowering::AtomicExpansionKind
10748 AArch64TargetLowering::shouldExpandAtomicRMWInIR(AtomicRMWInst *AI) const {
10749   unsigned Size = AI->getType()->getPrimitiveSizeInBits();
10750   if (Size > 128) return AtomicExpansionKind::None;
10751   // Nand not supported in LSE.
10752   if (AI->getOperation() == AtomicRMWInst::Nand) return AtomicExpansionKind::LLSC;
10753   // Leave 128 bits to LLSC.
10754   return (Subtarget->hasLSE() && Size < 128) ? AtomicExpansionKind::None : AtomicExpansionKind::LLSC;
10755 }
10756 
10757 bool AArch64TargetLowering::shouldExpandAtomicCmpXchgInIR(
10758     AtomicCmpXchgInst *AI) const {
10759   // If subtarget has LSE, leave cmpxchg intact for codegen.
10760   if (Subtarget->hasLSE()) return false;
10761   // At -O0, fast-regalloc cannot cope with the live vregs necessary to
10762   // implement cmpxchg without spilling. If the address being exchanged is also
10763   // on the stack and close enough to the spill slot, this can lead to a
10764   // situation where the monitor always gets cleared and the atomic operation
10765   // can never succeed. So at -O0 we need a late-expanded pseudo-inst instead.
10766   return getTargetMachine().getOptLevel() != 0;
10767 }
10768 
10769 Value *AArch64TargetLowering::emitLoadLinked(IRBuilder<> &Builder, Value *Addr,
10770                                              AtomicOrdering Ord) const {
10771   Module *M = Builder.GetInsertBlock()->getParent()->getParent();
10772   Type *ValTy = cast<PointerType>(Addr->getType())->getElementType();
10773   bool IsAcquire = isAcquireOrStronger(Ord);
10774 
10775   // Since i128 isn't legal and intrinsics don't get type-lowered, the ldrexd
10776   // intrinsic must return {i64, i64} and we have to recombine them into a
10777   // single i128 here.
10778   if (ValTy->getPrimitiveSizeInBits() == 128) {
10779     Intrinsic::ID Int =
10780         IsAcquire ? Intrinsic::aarch64_ldaxp : Intrinsic::aarch64_ldxp;
10781     Function *Ldxr = Intrinsic::getDeclaration(M, Int);
10782 
10783     Addr = Builder.CreateBitCast(Addr, Type::getInt8PtrTy(M->getContext()));
10784     Value *LoHi = Builder.CreateCall(Ldxr, Addr, "lohi");
10785 
10786     Value *Lo = Builder.CreateExtractValue(LoHi, 0, "lo");
10787     Value *Hi = Builder.CreateExtractValue(LoHi, 1, "hi");
10788     Lo = Builder.CreateZExt(Lo, ValTy, "lo64");
10789     Hi = Builder.CreateZExt(Hi, ValTy, "hi64");
10790     return Builder.CreateOr(
10791         Lo, Builder.CreateShl(Hi, ConstantInt::get(ValTy, 64)), "val64");
10792   }
10793 
10794   Type *Tys[] = { Addr->getType() };
10795   Intrinsic::ID Int =
10796       IsAcquire ? Intrinsic::aarch64_ldaxr : Intrinsic::aarch64_ldxr;
10797   Function *Ldxr = Intrinsic::getDeclaration(M, Int, Tys);
10798 
10799   return Builder.CreateTruncOrBitCast(
10800       Builder.CreateCall(Ldxr, Addr),
10801       cast<PointerType>(Addr->getType())->getElementType());
10802 }
10803 
10804 void AArch64TargetLowering::emitAtomicCmpXchgNoStoreLLBalance(
10805     IRBuilder<> &Builder) const {
10806   Module *M = Builder.GetInsertBlock()->getParent()->getParent();
10807   Builder.CreateCall(Intrinsic::getDeclaration(M, Intrinsic::aarch64_clrex));
10808 }
10809 
10810 Value *AArch64TargetLowering::emitStoreConditional(IRBuilder<> &Builder,
10811                                                    Value *Val, Value *Addr,
10812                                                    AtomicOrdering Ord) const {
10813   Module *M = Builder.GetInsertBlock()->getParent()->getParent();
10814   bool IsRelease = isReleaseOrStronger(Ord);
10815 
10816   // Since the intrinsics must have legal type, the i128 intrinsics take two
10817   // parameters: "i64, i64". We must marshal Val into the appropriate form
10818   // before the call.
10819   if (Val->getType()->getPrimitiveSizeInBits() == 128) {
10820     Intrinsic::ID Int =
10821         IsRelease ? Intrinsic::aarch64_stlxp : Intrinsic::aarch64_stxp;
10822     Function *Stxr = Intrinsic::getDeclaration(M, Int);
10823     Type *Int64Ty = Type::getInt64Ty(M->getContext());
10824 
10825     Value *Lo = Builder.CreateTrunc(Val, Int64Ty, "lo");
10826     Value *Hi = Builder.CreateTrunc(Builder.CreateLShr(Val, 64), Int64Ty, "hi");
10827     Addr = Builder.CreateBitCast(Addr, Type::getInt8PtrTy(M->getContext()));
10828     return Builder.CreateCall(Stxr, {Lo, Hi, Addr});
10829   }
10830 
10831   Intrinsic::ID Int =
10832       IsRelease ? Intrinsic::aarch64_stlxr : Intrinsic::aarch64_stxr;
10833   Type *Tys[] = { Addr->getType() };
10834   Function *Stxr = Intrinsic::getDeclaration(M, Int, Tys);
10835 
10836   return Builder.CreateCall(Stxr,
10837                             {Builder.CreateZExtOrBitCast(
10838                                  Val, Stxr->getFunctionType()->getParamType(0)),
10839                              Addr});
10840 }
10841 
10842 bool AArch64TargetLowering::functionArgumentNeedsConsecutiveRegisters(
10843     Type *Ty, CallingConv::ID CallConv, bool isVarArg) const {
10844   return Ty->isArrayTy();
10845 }
10846 
10847 bool AArch64TargetLowering::shouldNormalizeToSelectSequence(LLVMContext &,
10848                                                             EVT) const {
10849   return false;
10850 }
10851 
10852 static Value *UseTlsOffset(IRBuilder<> &IRB, unsigned Offset) {
10853   Module *M = IRB.GetInsertBlock()->getParent()->getParent();
10854   Function *ThreadPointerFunc =
10855       Intrinsic::getDeclaration(M, Intrinsic::thread_pointer);
10856   return IRB.CreatePointerCast(
10857       IRB.CreateConstGEP1_32(IRB.CreateCall(ThreadPointerFunc), Offset),
10858       Type::getInt8PtrTy(IRB.getContext())->getPointerTo(0));
10859 }
10860 
10861 Value *AArch64TargetLowering::getIRStackGuard(IRBuilder<> &IRB) const {
10862   // Android provides a fixed TLS slot for the stack cookie. See the definition
10863   // of TLS_SLOT_STACK_GUARD in
10864   // https://android.googlesource.com/platform/bionic/+/master/libc/private/bionic_tls.h
10865   if (Subtarget->isTargetAndroid())
10866     return UseTlsOffset(IRB, 0x28);
10867 
10868   // Fuchsia is similar.
10869   // <zircon/tls.h> defines ZX_TLS_STACK_GUARD_OFFSET with this value.
10870   if (Subtarget->isTargetFuchsia())
10871     return UseTlsOffset(IRB, -0x10);
10872 
10873   return TargetLowering::getIRStackGuard(IRB);
10874 }
10875 
10876 Value *AArch64TargetLowering::getSafeStackPointerLocation(IRBuilder<> &IRB) const {
10877   // Android provides a fixed TLS slot for the SafeStack pointer. See the
10878   // definition of TLS_SLOT_SAFESTACK in
10879   // https://android.googlesource.com/platform/bionic/+/master/libc/private/bionic_tls.h
10880   if (Subtarget->isTargetAndroid())
10881     return UseTlsOffset(IRB, 0x48);
10882 
10883   // Fuchsia is similar.
10884   // <zircon/tls.h> defines ZX_TLS_UNSAFE_SP_OFFSET with this value.
10885   if (Subtarget->isTargetFuchsia())
10886     return UseTlsOffset(IRB, -0x8);
10887 
10888   return TargetLowering::getSafeStackPointerLocation(IRB);
10889 }
10890 
10891 bool AArch64TargetLowering::isMaskAndCmp0FoldingBeneficial(
10892     const Instruction &AndI) const {
10893   // Only sink 'and' mask to cmp use block if it is masking a single bit, since
10894   // this is likely to be fold the and/cmp/br into a single tbz instruction.  It
10895   // may be beneficial to sink in other cases, but we would have to check that
10896   // the cmp would not get folded into the br to form a cbz for these to be
10897   // beneficial.
10898   ConstantInt* Mask = dyn_cast<ConstantInt>(AndI.getOperand(1));
10899   if (!Mask)
10900     return false;
10901   return Mask->getValue().isPowerOf2();
10902 }
10903 
10904 void AArch64TargetLowering::initializeSplitCSR(MachineBasicBlock *Entry) const {
10905   // Update IsSplitCSR in AArch64unctionInfo.
10906   AArch64FunctionInfo *AFI = Entry->getParent()->getInfo<AArch64FunctionInfo>();
10907   AFI->setIsSplitCSR(true);
10908 }
10909 
10910 void AArch64TargetLowering::insertCopiesSplitCSR(
10911     MachineBasicBlock *Entry,
10912     const SmallVectorImpl<MachineBasicBlock *> &Exits) const {
10913   const AArch64RegisterInfo *TRI = Subtarget->getRegisterInfo();
10914   const MCPhysReg *IStart = TRI->getCalleeSavedRegsViaCopy(Entry->getParent());
10915   if (!IStart)
10916     return;
10917 
10918   const TargetInstrInfo *TII = Subtarget->getInstrInfo();
10919   MachineRegisterInfo *MRI = &Entry->getParent()->getRegInfo();
10920   MachineBasicBlock::iterator MBBI = Entry->begin();
10921   for (const MCPhysReg *I = IStart; *I; ++I) {
10922     const TargetRegisterClass *RC = nullptr;
10923     if (AArch64::GPR64RegClass.contains(*I))
10924       RC = &AArch64::GPR64RegClass;
10925     else if (AArch64::FPR64RegClass.contains(*I))
10926       RC = &AArch64::FPR64RegClass;
10927     else
10928       llvm_unreachable("Unexpected register class in CSRsViaCopy!");
10929 
10930     unsigned NewVR = MRI->createVirtualRegister(RC);
10931     // Create copy from CSR to a virtual register.
10932     // FIXME: this currently does not emit CFI pseudo-instructions, it works
10933     // fine for CXX_FAST_TLS since the C++-style TLS access functions should be
10934     // nounwind. If we want to generalize this later, we may need to emit
10935     // CFI pseudo-instructions.
10936     assert(Entry->getParent()->getFunction()->hasFnAttribute(
10937                Attribute::NoUnwind) &&
10938            "Function should be nounwind in insertCopiesSplitCSR!");
10939     Entry->addLiveIn(*I);
10940     BuildMI(*Entry, MBBI, DebugLoc(), TII->get(TargetOpcode::COPY), NewVR)
10941         .addReg(*I);
10942 
10943     // Insert the copy-back instructions right before the terminator.
10944     for (auto *Exit : Exits)
10945       BuildMI(*Exit, Exit->getFirstTerminator(), DebugLoc(),
10946               TII->get(TargetOpcode::COPY), *I)
10947           .addReg(NewVR);
10948   }
10949 }
10950 
10951 bool AArch64TargetLowering::isIntDivCheap(EVT VT, AttributeList Attr) const {
10952   // Integer division on AArch64 is expensive. However, when aggressively
10953   // optimizing for code size, we prefer to use a div instruction, as it is
10954   // usually smaller than the alternative sequence.
10955   // The exception to this is vector division. Since AArch64 doesn't have vector
10956   // integer division, leaving the division as-is is a loss even in terms of
10957   // size, because it will have to be scalarized, while the alternative code
10958   // sequence can be performed in vector form.
10959   bool OptSize =
10960       Attr.hasAttribute(AttributeList::FunctionIndex, Attribute::MinSize);
10961   return OptSize && !VT.isVector();
10962 }
10963 
10964 unsigned
10965 AArch64TargetLowering::getVaListSizeInBits(const DataLayout &DL) const {
10966   if (Subtarget->isTargetDarwin() || Subtarget->isTargetWindows())
10967     return getPointerTy(DL).getSizeInBits();
10968 
10969   return 3 * getPointerTy(DL).getSizeInBits() + 2 * 32;
10970 }
10971