]> CyberLeo.Net >> Repos - FreeBSD/FreeBSD.git/blob - contrib/llvm/lib/Target/AArch64/AArch64ISelLowering.cpp
Merge llvm, clang, lld, lldb, compiler-rt and libc++ release_60 r321788,
[FreeBSD/FreeBSD.git] / contrib / llvm / lib / Target / AArch64 / AArch64ISelLowering.cpp
1 //===-- AArch64ISelLowering.cpp - AArch64 DAG Lowering Implementation  ----===//
2 //
3 //                     The LLVM Compiler Infrastructure
4 //
5 // This file is distributed under the University of Illinois Open Source
6 // License. See LICENSE.TXT for details.
7 //
8 //===----------------------------------------------------------------------===//
9 //
10 // This file implements the AArch64TargetLowering class.
11 //
12 //===----------------------------------------------------------------------===//
13
14 #include "AArch64ISelLowering.h"
15 #include "AArch64CallingConvention.h"
16 #include "AArch64MachineFunctionInfo.h"
17 #include "AArch64PerfectShuffle.h"
18 #include "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/TargetCallingConv.h"
46 #include "llvm/CodeGen/TargetInstrInfo.h"
47 #include "llvm/CodeGen/ValueTypes.h"
48 #include "llvm/IR/Attributes.h"
49 #include "llvm/IR/Constants.h"
50 #include "llvm/IR/DataLayout.h"
51 #include "llvm/IR/DebugLoc.h"
52 #include "llvm/IR/DerivedTypes.h"
53 #include "llvm/IR/Function.h"
54 #include "llvm/IR/GetElementPtrTypeIterator.h"
55 #include "llvm/IR/GlobalValue.h"
56 #include "llvm/IR/IRBuilder.h"
57 #include "llvm/IR/Instruction.h"
58 #include "llvm/IR/Instructions.h"
59 #include "llvm/IR/Intrinsics.h"
60 #include "llvm/IR/Module.h"
61 #include "llvm/IR/OperandTraits.h"
62 #include "llvm/IR/Type.h"
63 #include "llvm/IR/Use.h"
64 #include "llvm/IR/Value.h"
65 #include "llvm/MC/MCRegisterInfo.h"
66 #include "llvm/Support/Casting.h"
67 #include "llvm/Support/CodeGen.h"
68 #include "llvm/Support/CommandLine.h"
69 #include "llvm/Support/Compiler.h"
70 #include "llvm/Support/Debug.h"
71 #include "llvm/Support/ErrorHandling.h"
72 #include "llvm/Support/KnownBits.h"
73 #include "llvm/Support/MathExtras.h"
74 #include "llvm/Support/raw_ostream.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 (getLibcallName(RTLIB::SINCOS_STRET_F32) != nullptr &&
474       getLibcallName(RTLIB::SINCOS_STRET_F64) != nullptr) {
475     // Issue __sincos_stret if available.
476     setOperationAction(ISD::FSINCOS, MVT::f64, Custom);
477     setOperationAction(ISD::FSINCOS, MVT::f32, Custom);
478   } else {
479     setOperationAction(ISD::FSINCOS, MVT::f64, Expand);
480     setOperationAction(ISD::FSINCOS, MVT::f32, Expand);
481   }
482
483   // Make floating-point constants legal for the large code model, so they don't
484   // become loads from the constant pool.
485   if (Subtarget->isTargetMachO() && TM.getCodeModel() == CodeModel::Large) {
486     setOperationAction(ISD::ConstantFP, MVT::f32, Legal);
487     setOperationAction(ISD::ConstantFP, MVT::f64, Legal);
488   }
489
490   // AArch64 does not have floating-point extending loads, i1 sign-extending
491   // load, floating-point truncating stores, or v2i32->v2i16 truncating store.
492   for (MVT VT : MVT::fp_valuetypes()) {
493     setLoadExtAction(ISD::EXTLOAD, VT, MVT::f16, Expand);
494     setLoadExtAction(ISD::EXTLOAD, VT, MVT::f32, Expand);
495     setLoadExtAction(ISD::EXTLOAD, VT, MVT::f64, Expand);
496     setLoadExtAction(ISD::EXTLOAD, VT, MVT::f80, Expand);
497   }
498   for (MVT VT : MVT::integer_valuetypes())
499     setLoadExtAction(ISD::SEXTLOAD, VT, MVT::i1, Expand);
500
501   setTruncStoreAction(MVT::f32, MVT::f16, Expand);
502   setTruncStoreAction(MVT::f64, MVT::f32, Expand);
503   setTruncStoreAction(MVT::f64, MVT::f16, Expand);
504   setTruncStoreAction(MVT::f128, MVT::f80, Expand);
505   setTruncStoreAction(MVT::f128, MVT::f64, Expand);
506   setTruncStoreAction(MVT::f128, MVT::f32, Expand);
507   setTruncStoreAction(MVT::f128, MVT::f16, Expand);
508
509   setOperationAction(ISD::BITCAST, MVT::i16, Custom);
510   setOperationAction(ISD::BITCAST, MVT::f16, Custom);
511
512   // Indexed loads and stores are supported.
513   for (unsigned im = (unsigned)ISD::PRE_INC;
514        im != (unsigned)ISD::LAST_INDEXED_MODE; ++im) {
515     setIndexedLoadAction(im, MVT::i8, Legal);
516     setIndexedLoadAction(im, MVT::i16, Legal);
517     setIndexedLoadAction(im, MVT::i32, Legal);
518     setIndexedLoadAction(im, MVT::i64, Legal);
519     setIndexedLoadAction(im, MVT::f64, Legal);
520     setIndexedLoadAction(im, MVT::f32, Legal);
521     setIndexedLoadAction(im, MVT::f16, Legal);
522     setIndexedStoreAction(im, MVT::i8, Legal);
523     setIndexedStoreAction(im, MVT::i16, Legal);
524     setIndexedStoreAction(im, MVT::i32, Legal);
525     setIndexedStoreAction(im, MVT::i64, Legal);
526     setIndexedStoreAction(im, MVT::f64, Legal);
527     setIndexedStoreAction(im, MVT::f32, Legal);
528     setIndexedStoreAction(im, MVT::f16, Legal);
529   }
530
531   // Trap.
532   setOperationAction(ISD::TRAP, MVT::Other, Legal);
533
534   // We combine OR nodes for bitfield operations.
535   setTargetDAGCombine(ISD::OR);
536
537   // Vector add and sub nodes may conceal a high-half opportunity.
538   // Also, try to fold ADD into CSINC/CSINV..
539   setTargetDAGCombine(ISD::ADD);
540   setTargetDAGCombine(ISD::SUB);
541   setTargetDAGCombine(ISD::SRL);
542   setTargetDAGCombine(ISD::XOR);
543   setTargetDAGCombine(ISD::SINT_TO_FP);
544   setTargetDAGCombine(ISD::UINT_TO_FP);
545
546   setTargetDAGCombine(ISD::FP_TO_SINT);
547   setTargetDAGCombine(ISD::FP_TO_UINT);
548   setTargetDAGCombine(ISD::FDIV);
549
550   setTargetDAGCombine(ISD::INTRINSIC_WO_CHAIN);
551
552   setTargetDAGCombine(ISD::ANY_EXTEND);
553   setTargetDAGCombine(ISD::ZERO_EXTEND);
554   setTargetDAGCombine(ISD::SIGN_EXTEND);
555   setTargetDAGCombine(ISD::BITCAST);
556   setTargetDAGCombine(ISD::CONCAT_VECTORS);
557   setTargetDAGCombine(ISD::STORE);
558   if (Subtarget->supportsAddressTopByteIgnored())
559     setTargetDAGCombine(ISD::LOAD);
560
561   setTargetDAGCombine(ISD::MUL);
562
563   setTargetDAGCombine(ISD::SELECT);
564   setTargetDAGCombine(ISD::VSELECT);
565
566   setTargetDAGCombine(ISD::INTRINSIC_VOID);
567   setTargetDAGCombine(ISD::INTRINSIC_W_CHAIN);
568   setTargetDAGCombine(ISD::INSERT_VECTOR_ELT);
569
570   MaxStoresPerMemset = MaxStoresPerMemsetOptSize = 8;
571   MaxStoresPerMemcpy = MaxStoresPerMemcpyOptSize = 4;
572   MaxStoresPerMemmove = MaxStoresPerMemmoveOptSize = 4;
573
574   setStackPointerRegisterToSaveRestore(AArch64::SP);
575
576   setSchedulingPreference(Sched::Hybrid);
577
578   EnableExtLdPromotion = true;
579
580   // Set required alignment.
581   setMinFunctionAlignment(2);
582   // Set preferred alignments.
583   setPrefFunctionAlignment(STI.getPrefFunctionAlignment());
584   setPrefLoopAlignment(STI.getPrefLoopAlignment());
585
586   // Only change the limit for entries in a jump table if specified by
587   // the subtarget, but not at the command line.
588   unsigned MaxJT = STI.getMaximumJumpTableSize();
589   if (MaxJT && getMaximumJumpTableSize() == 0)
590     setMaximumJumpTableSize(MaxJT);
591
592   setHasExtractBitsInsn(true);
593
594   setOperationAction(ISD::INTRINSIC_WO_CHAIN, MVT::Other, Custom);
595
596   if (Subtarget->hasNEON()) {
597     // FIXME: v1f64 shouldn't be legal if we can avoid it, because it leads to
598     // silliness like this:
599     setOperationAction(ISD::FABS, MVT::v1f64, Expand);
600     setOperationAction(ISD::FADD, MVT::v1f64, Expand);
601     setOperationAction(ISD::FCEIL, MVT::v1f64, Expand);
602     setOperationAction(ISD::FCOPYSIGN, MVT::v1f64, Expand);
603     setOperationAction(ISD::FCOS, MVT::v1f64, Expand);
604     setOperationAction(ISD::FDIV, MVT::v1f64, Expand);
605     setOperationAction(ISD::FFLOOR, MVT::v1f64, Expand);
606     setOperationAction(ISD::FMA, MVT::v1f64, Expand);
607     setOperationAction(ISD::FMUL, MVT::v1f64, Expand);
608     setOperationAction(ISD::FNEARBYINT, MVT::v1f64, Expand);
609     setOperationAction(ISD::FNEG, MVT::v1f64, Expand);
610     setOperationAction(ISD::FPOW, MVT::v1f64, Expand);
611     setOperationAction(ISD::FREM, MVT::v1f64, Expand);
612     setOperationAction(ISD::FROUND, MVT::v1f64, Expand);
613     setOperationAction(ISD::FRINT, MVT::v1f64, Expand);
614     setOperationAction(ISD::FSIN, MVT::v1f64, Expand);
615     setOperationAction(ISD::FSINCOS, MVT::v1f64, Expand);
616     setOperationAction(ISD::FSQRT, MVT::v1f64, Expand);
617     setOperationAction(ISD::FSUB, MVT::v1f64, Expand);
618     setOperationAction(ISD::FTRUNC, MVT::v1f64, Expand);
619     setOperationAction(ISD::SETCC, MVT::v1f64, Expand);
620     setOperationAction(ISD::BR_CC, MVT::v1f64, Expand);
621     setOperationAction(ISD::SELECT, MVT::v1f64, Expand);
622     setOperationAction(ISD::SELECT_CC, MVT::v1f64, Expand);
623     setOperationAction(ISD::FP_EXTEND, MVT::v1f64, Expand);
624
625     setOperationAction(ISD::FP_TO_SINT, MVT::v1i64, Expand);
626     setOperationAction(ISD::FP_TO_UINT, MVT::v1i64, Expand);
627     setOperationAction(ISD::SINT_TO_FP, MVT::v1i64, Expand);
628     setOperationAction(ISD::UINT_TO_FP, MVT::v1i64, Expand);
629     setOperationAction(ISD::FP_ROUND, MVT::v1f64, Expand);
630
631     setOperationAction(ISD::MUL, MVT::v1i64, Expand);
632
633     // AArch64 doesn't have a direct vector ->f32 conversion instructions for
634     // elements smaller than i32, so promote the input to i32 first.
635     setOperationPromotedToType(ISD::UINT_TO_FP, MVT::v4i8, MVT::v4i32);
636     setOperationPromotedToType(ISD::SINT_TO_FP, MVT::v4i8, MVT::v4i32);
637     setOperationPromotedToType(ISD::UINT_TO_FP, MVT::v4i16, MVT::v4i32);
638     setOperationPromotedToType(ISD::SINT_TO_FP, MVT::v4i16, MVT::v4i32);
639     // i8 and i16 vector elements also need promotion to i32 for v8i8 or v8i16
640     // -> v8f16 conversions.
641     setOperationPromotedToType(ISD::SINT_TO_FP, MVT::v8i8, MVT::v8i32);
642     setOperationPromotedToType(ISD::UINT_TO_FP, MVT::v8i8, MVT::v8i32);
643     setOperationPromotedToType(ISD::SINT_TO_FP, MVT::v8i16, MVT::v8i32);
644     setOperationPromotedToType(ISD::UINT_TO_FP, MVT::v8i16, MVT::v8i32);
645     // Similarly, there is no direct i32 -> f64 vector conversion instruction.
646     setOperationAction(ISD::SINT_TO_FP, MVT::v2i32, Custom);
647     setOperationAction(ISD::UINT_TO_FP, MVT::v2i32, Custom);
648     setOperationAction(ISD::SINT_TO_FP, MVT::v2i64, Custom);
649     setOperationAction(ISD::UINT_TO_FP, MVT::v2i64, Custom);
650     // Or, direct i32 -> f16 vector conversion.  Set it so custom, so the
651     // conversion happens in two steps: v4i32 -> v4f32 -> v4f16
652     setOperationAction(ISD::SINT_TO_FP, MVT::v4i32, Custom);
653     setOperationAction(ISD::UINT_TO_FP, MVT::v4i32, Custom);
654
655     setOperationAction(ISD::CTLZ,       MVT::v1i64, Expand);
656     setOperationAction(ISD::CTLZ,       MVT::v2i64, Expand);
657
658     setOperationAction(ISD::CTTZ,       MVT::v2i8,  Expand);
659     setOperationAction(ISD::CTTZ,       MVT::v4i16, Expand);
660     setOperationAction(ISD::CTTZ,       MVT::v2i32, Expand);
661     setOperationAction(ISD::CTTZ,       MVT::v1i64, Expand);
662     setOperationAction(ISD::CTTZ,       MVT::v16i8, Expand);
663     setOperationAction(ISD::CTTZ,       MVT::v8i16, Expand);
664     setOperationAction(ISD::CTTZ,       MVT::v4i32, Expand);
665     setOperationAction(ISD::CTTZ,       MVT::v2i64, Expand);
666
667     // AArch64 doesn't have MUL.2d:
668     setOperationAction(ISD::MUL, MVT::v2i64, Expand);
669     // Custom handling for some quad-vector types to detect MULL.
670     setOperationAction(ISD::MUL, MVT::v8i16, Custom);
671     setOperationAction(ISD::MUL, MVT::v4i32, Custom);
672     setOperationAction(ISD::MUL, MVT::v2i64, Custom);
673
674     // Vector reductions
675     for (MVT VT : MVT::integer_valuetypes()) {
676       setOperationAction(ISD::VECREDUCE_ADD, VT, Custom);
677       setOperationAction(ISD::VECREDUCE_SMAX, VT, Custom);
678       setOperationAction(ISD::VECREDUCE_SMIN, VT, Custom);
679       setOperationAction(ISD::VECREDUCE_UMAX, VT, Custom);
680       setOperationAction(ISD::VECREDUCE_UMIN, VT, Custom);
681     }
682     for (MVT VT : MVT::fp_valuetypes()) {
683       setOperationAction(ISD::VECREDUCE_FMAX, VT, Custom);
684       setOperationAction(ISD::VECREDUCE_FMIN, VT, Custom);
685     }
686
687     setOperationAction(ISD::ANY_EXTEND, MVT::v4i32, Legal);
688     setTruncStoreAction(MVT::v2i32, MVT::v2i16, Expand);
689     // Likewise, narrowing and extending vector loads/stores aren't handled
690     // directly.
691     for (MVT VT : MVT::vector_valuetypes()) {
692       setOperationAction(ISD::SIGN_EXTEND_INREG, VT, Expand);
693
694       setOperationAction(ISD::MULHS, VT, Expand);
695       setOperationAction(ISD::SMUL_LOHI, VT, Expand);
696       setOperationAction(ISD::MULHU, VT, Expand);
697       setOperationAction(ISD::UMUL_LOHI, VT, Expand);
698
699       setOperationAction(ISD::BSWAP, VT, Expand);
700
701       for (MVT InnerVT : MVT::vector_valuetypes()) {
702         setTruncStoreAction(VT, InnerVT, Expand);
703         setLoadExtAction(ISD::SEXTLOAD, VT, InnerVT, Expand);
704         setLoadExtAction(ISD::ZEXTLOAD, VT, InnerVT, Expand);
705         setLoadExtAction(ISD::EXTLOAD, VT, InnerVT, Expand);
706       }
707     }
708
709     // AArch64 has implementations of a lot of rounding-like FP operations.
710     for (MVT Ty : {MVT::v2f32, MVT::v4f32, MVT::v2f64}) {
711       setOperationAction(ISD::FFLOOR, Ty, Legal);
712       setOperationAction(ISD::FNEARBYINT, Ty, Legal);
713       setOperationAction(ISD::FCEIL, Ty, Legal);
714       setOperationAction(ISD::FRINT, Ty, Legal);
715       setOperationAction(ISD::FTRUNC, Ty, Legal);
716       setOperationAction(ISD::FROUND, Ty, Legal);
717     }
718   }
719
720   PredictableSelectIsExpensive = Subtarget->predictableSelectIsExpensive();
721 }
722
723 void AArch64TargetLowering::addTypeForNEON(MVT VT, MVT PromotedBitwiseVT) {
724   if (VT == MVT::v2f32 || VT == MVT::v4f16) {
725     setOperationAction(ISD::LOAD, VT, Promote);
726     AddPromotedToType(ISD::LOAD, VT, MVT::v2i32);
727
728     setOperationAction(ISD::STORE, VT, Promote);
729     AddPromotedToType(ISD::STORE, VT, MVT::v2i32);
730   } else if (VT == MVT::v2f64 || VT == MVT::v4f32 || VT == MVT::v8f16) {
731     setOperationAction(ISD::LOAD, VT, Promote);
732     AddPromotedToType(ISD::LOAD, VT, MVT::v2i64);
733
734     setOperationAction(ISD::STORE, VT, Promote);
735     AddPromotedToType(ISD::STORE, VT, MVT::v2i64);
736   }
737
738   // Mark vector float intrinsics as expand.
739   if (VT == MVT::v2f32 || VT == MVT::v4f32 || VT == MVT::v2f64) {
740     setOperationAction(ISD::FSIN, VT, Expand);
741     setOperationAction(ISD::FCOS, VT, Expand);
742     setOperationAction(ISD::FPOW, VT, Expand);
743     setOperationAction(ISD::FLOG, VT, Expand);
744     setOperationAction(ISD::FLOG2, VT, Expand);
745     setOperationAction(ISD::FLOG10, VT, Expand);
746     setOperationAction(ISD::FEXP, VT, Expand);
747     setOperationAction(ISD::FEXP2, VT, Expand);
748
749     // But we do support custom-lowering for FCOPYSIGN.
750     setOperationAction(ISD::FCOPYSIGN, VT, Custom);
751   }
752
753   setOperationAction(ISD::EXTRACT_VECTOR_ELT, VT, Custom);
754   setOperationAction(ISD::INSERT_VECTOR_ELT, VT, Custom);
755   setOperationAction(ISD::BUILD_VECTOR, VT, Custom);
756   setOperationAction(ISD::VECTOR_SHUFFLE, VT, Custom);
757   setOperationAction(ISD::EXTRACT_SUBVECTOR, VT, Custom);
758   setOperationAction(ISD::SRA, VT, Custom);
759   setOperationAction(ISD::SRL, VT, Custom);
760   setOperationAction(ISD::SHL, VT, Custom);
761   setOperationAction(ISD::AND, VT, Custom);
762   setOperationAction(ISD::OR, VT, Custom);
763   setOperationAction(ISD::SETCC, VT, Custom);
764   setOperationAction(ISD::CONCAT_VECTORS, VT, Legal);
765
766   setOperationAction(ISD::SELECT, VT, Expand);
767   setOperationAction(ISD::SELECT_CC, VT, Expand);
768   setOperationAction(ISD::VSELECT, VT, Expand);
769   for (MVT InnerVT : MVT::all_valuetypes())
770     setLoadExtAction(ISD::EXTLOAD, InnerVT, VT, Expand);
771
772   // CNT supports only B element sizes.
773   if (VT != MVT::v8i8 && VT != MVT::v16i8)
774     setOperationAction(ISD::CTPOP, VT, Expand);
775
776   setOperationAction(ISD::UDIV, VT, Expand);
777   setOperationAction(ISD::SDIV, VT, Expand);
778   setOperationAction(ISD::UREM, VT, Expand);
779   setOperationAction(ISD::SREM, VT, Expand);
780   setOperationAction(ISD::FREM, VT, Expand);
781
782   setOperationAction(ISD::FP_TO_SINT, VT, Custom);
783   setOperationAction(ISD::FP_TO_UINT, VT, Custom);
784
785   if (!VT.isFloatingPoint())
786     setOperationAction(ISD::ABS, VT, Legal);
787
788   // [SU][MIN|MAX] are available for all NEON types apart from i64.
789   if (!VT.isFloatingPoint() && VT != MVT::v2i64 && VT != MVT::v1i64)
790     for (unsigned Opcode : {ISD::SMIN, ISD::SMAX, ISD::UMIN, ISD::UMAX})
791       setOperationAction(Opcode, VT, Legal);
792
793   // F[MIN|MAX][NUM|NAN] are available for all FP NEON types.
794   if (VT.isFloatingPoint() &&
795       (VT.getVectorElementType() != MVT::f16 || Subtarget->hasFullFP16()))
796     for (unsigned Opcode : {ISD::FMINNAN, ISD::FMAXNAN,
797                             ISD::FMINNUM, ISD::FMAXNUM})
798       setOperationAction(Opcode, VT, Legal);
799
800   if (Subtarget->isLittleEndian()) {
801     for (unsigned im = (unsigned)ISD::PRE_INC;
802          im != (unsigned)ISD::LAST_INDEXED_MODE; ++im) {
803       setIndexedLoadAction(im, VT, Legal);
804       setIndexedStoreAction(im, VT, Legal);
805     }
806   }
807 }
808
809 void AArch64TargetLowering::addDRTypeForNEON(MVT VT) {
810   addRegisterClass(VT, &AArch64::FPR64RegClass);
811   addTypeForNEON(VT, MVT::v2i32);
812 }
813
814 void AArch64TargetLowering::addQRTypeForNEON(MVT VT) {
815   addRegisterClass(VT, &AArch64::FPR128RegClass);
816   addTypeForNEON(VT, MVT::v4i32);
817 }
818
819 EVT AArch64TargetLowering::getSetCCResultType(const DataLayout &, LLVMContext &,
820                                               EVT VT) const {
821   if (!VT.isVector())
822     return MVT::i32;
823   return VT.changeVectorElementTypeToInteger();
824 }
825
826 static bool optimizeLogicalImm(SDValue Op, unsigned Size, uint64_t Imm,
827                                const APInt &Demanded,
828                                TargetLowering::TargetLoweringOpt &TLO,
829                                unsigned NewOpc) {
830   uint64_t OldImm = Imm, NewImm, Enc;
831   uint64_t Mask = ((uint64_t)(-1LL) >> (64 - Size)), OrigMask = Mask;
832
833   // Return if the immediate is already all zeros, all ones, a bimm32 or a
834   // bimm64.
835   if (Imm == 0 || Imm == Mask ||
836       AArch64_AM::isLogicalImmediate(Imm & Mask, Size))
837     return false;
838
839   unsigned EltSize = Size;
840   uint64_t DemandedBits = Demanded.getZExtValue();
841
842   // Clear bits that are not demanded.
843   Imm &= DemandedBits;
844
845   while (true) {
846     // The goal here is to set the non-demanded bits in a way that minimizes
847     // the number of switching between 0 and 1. In order to achieve this goal,
848     // we set the non-demanded bits to the value of the preceding demanded bits.
849     // For example, if we have an immediate 0bx10xx0x1 ('x' indicates a
850     // non-demanded bit), we copy bit0 (1) to the least significant 'x',
851     // bit2 (0) to 'xx', and bit6 (1) to the most significant 'x'.
852     // The final result is 0b11000011.
853     uint64_t NonDemandedBits = ~DemandedBits;
854     uint64_t InvertedImm = ~Imm & DemandedBits;
855     uint64_t RotatedImm =
856         ((InvertedImm << 1) | (InvertedImm >> (EltSize - 1) & 1)) &
857         NonDemandedBits;
858     uint64_t Sum = RotatedImm + NonDemandedBits;
859     bool Carry = NonDemandedBits & ~Sum & (1ULL << (EltSize - 1));
860     uint64_t Ones = (Sum + Carry) & NonDemandedBits;
861     NewImm = (Imm | Ones) & Mask;
862
863     // If NewImm or its bitwise NOT is a shifted mask, it is a bitmask immediate
864     // or all-ones or all-zeros, in which case we can stop searching. Otherwise,
865     // we halve the element size and continue the search.
866     if (isShiftedMask_64(NewImm) || isShiftedMask_64(~(NewImm | ~Mask)))
867       break;
868
869     // We cannot shrink the element size any further if it is 2-bits.
870     if (EltSize == 2)
871       return false;
872
873     EltSize /= 2;
874     Mask >>= EltSize;
875     uint64_t Hi = Imm >> EltSize, DemandedBitsHi = DemandedBits >> EltSize;
876
877     // Return if there is mismatch in any of the demanded bits of Imm and Hi.
878     if (((Imm ^ Hi) & (DemandedBits & DemandedBitsHi) & Mask) != 0)
879       return false;
880
881     // Merge the upper and lower halves of Imm and DemandedBits.
882     Imm |= Hi;
883     DemandedBits |= DemandedBitsHi;
884   }
885
886   ++NumOptimizedImms;
887
888   // Replicate the element across the register width.
889   while (EltSize < Size) {
890     NewImm |= NewImm << EltSize;
891     EltSize *= 2;
892   }
893
894   (void)OldImm;
895   assert(((OldImm ^ NewImm) & Demanded.getZExtValue()) == 0 &&
896          "demanded bits should never be altered");
897   assert(OldImm != NewImm && "the new imm shouldn't be equal to the old imm");
898
899   // Create the new constant immediate node.
900   EVT VT = Op.getValueType();
901   SDLoc DL(Op);
902   SDValue New;
903
904   // If the new constant immediate is all-zeros or all-ones, let the target
905   // independent DAG combine optimize this node.
906   if (NewImm == 0 || NewImm == OrigMask) {
907     New = TLO.DAG.getNode(Op.getOpcode(), DL, VT, Op.getOperand(0),
908                           TLO.DAG.getConstant(NewImm, DL, VT));
909   // Otherwise, create a machine node so that target independent DAG combine
910   // doesn't undo this optimization.
911   } else {
912     Enc = AArch64_AM::encodeLogicalImmediate(NewImm, Size);
913     SDValue EncConst = TLO.DAG.getTargetConstant(Enc, DL, VT);
914     New = SDValue(
915         TLO.DAG.getMachineNode(NewOpc, DL, VT, Op.getOperand(0), EncConst), 0);
916   }
917
918   return TLO.CombineTo(Op, New);
919 }
920
921 bool AArch64TargetLowering::targetShrinkDemandedConstant(
922     SDValue Op, const APInt &Demanded, TargetLoweringOpt &TLO) const {
923   // Delay this optimization to as late as possible.
924   if (!TLO.LegalOps)
925     return false;
926
927   if (!EnableOptimizeLogicalImm)
928     return false;
929
930   EVT VT = Op.getValueType();
931   if (VT.isVector())
932     return false;
933
934   unsigned Size = VT.getSizeInBits();
935   assert((Size == 32 || Size == 64) &&
936          "i32 or i64 is expected after legalization.");
937
938   // Exit early if we demand all bits.
939   if (Demanded.countPopulation() == Size)
940     return false;
941
942   unsigned NewOpc;
943   switch (Op.getOpcode()) {
944   default:
945     return false;
946   case ISD::AND:
947     NewOpc = Size == 32 ? AArch64::ANDWri : AArch64::ANDXri;
948     break;
949   case ISD::OR:
950     NewOpc = Size == 32 ? AArch64::ORRWri : AArch64::ORRXri;
951     break;
952   case ISD::XOR:
953     NewOpc = Size == 32 ? AArch64::EORWri : AArch64::EORXri;
954     break;
955   }
956   ConstantSDNode *C = dyn_cast<ConstantSDNode>(Op.getOperand(1));
957   if (!C)
958     return false;
959   uint64_t Imm = C->getZExtValue();
960   return optimizeLogicalImm(Op, Size, Imm, Demanded, TLO, NewOpc);
961 }
962
963 /// computeKnownBitsForTargetNode - Determine which of the bits specified in
964 /// Mask are known to be either zero or one and return them Known.
965 void AArch64TargetLowering::computeKnownBitsForTargetNode(
966     const SDValue Op, KnownBits &Known,
967     const APInt &DemandedElts, const SelectionDAG &DAG, unsigned Depth) const {
968   switch (Op.getOpcode()) {
969   default:
970     break;
971   case AArch64ISD::CSEL: {
972     KnownBits Known2;
973     DAG.computeKnownBits(Op->getOperand(0), Known, Depth + 1);
974     DAG.computeKnownBits(Op->getOperand(1), Known2, Depth + 1);
975     Known.Zero &= Known2.Zero;
976     Known.One &= Known2.One;
977     break;
978   }
979   case ISD::INTRINSIC_W_CHAIN: {
980     ConstantSDNode *CN = cast<ConstantSDNode>(Op->getOperand(1));
981     Intrinsic::ID IntID = static_cast<Intrinsic::ID>(CN->getZExtValue());
982     switch (IntID) {
983     default: return;
984     case Intrinsic::aarch64_ldaxr:
985     case Intrinsic::aarch64_ldxr: {
986       unsigned BitWidth = Known.getBitWidth();
987       EVT VT = cast<MemIntrinsicSDNode>(Op)->getMemoryVT();
988       unsigned MemBits = VT.getScalarSizeInBits();
989       Known.Zero |= APInt::getHighBitsSet(BitWidth, BitWidth - MemBits);
990       return;
991     }
992     }
993     break;
994   }
995   case ISD::INTRINSIC_WO_CHAIN:
996   case ISD::INTRINSIC_VOID: {
997     unsigned IntNo = cast<ConstantSDNode>(Op.getOperand(0))->getZExtValue();
998     switch (IntNo) {
999     default:
1000       break;
1001     case Intrinsic::aarch64_neon_umaxv:
1002     case Intrinsic::aarch64_neon_uminv: {
1003       // Figure out the datatype of the vector operand. The UMINV instruction
1004       // will zero extend the result, so we can mark as known zero all the
1005       // bits larger than the element datatype. 32-bit or larget doesn't need
1006       // this as those are legal types and will be handled by isel directly.
1007       MVT VT = Op.getOperand(1).getValueType().getSimpleVT();
1008       unsigned BitWidth = Known.getBitWidth();
1009       if (VT == MVT::v8i8 || VT == MVT::v16i8) {
1010         assert(BitWidth >= 8 && "Unexpected width!");
1011         APInt Mask = APInt::getHighBitsSet(BitWidth, BitWidth - 8);
1012         Known.Zero |= Mask;
1013       } else if (VT == MVT::v4i16 || VT == MVT::v8i16) {
1014         assert(BitWidth >= 16 && "Unexpected width!");
1015         APInt Mask = APInt::getHighBitsSet(BitWidth, BitWidth - 16);
1016         Known.Zero |= Mask;
1017       }
1018       break;
1019     } break;
1020     }
1021   }
1022   }
1023 }
1024
1025 MVT AArch64TargetLowering::getScalarShiftAmountTy(const DataLayout &DL,
1026                                                   EVT) const {
1027   return MVT::i64;
1028 }
1029
1030 bool AArch64TargetLowering::allowsMisalignedMemoryAccesses(EVT VT,
1031                                                            unsigned AddrSpace,
1032                                                            unsigned Align,
1033                                                            bool *Fast) const {
1034   if (Subtarget->requiresStrictAlign())
1035     return false;
1036
1037   if (Fast) {
1038     // Some CPUs are fine with unaligned stores except for 128-bit ones.
1039     *Fast = !Subtarget->isMisaligned128StoreSlow() || VT.getStoreSize() != 16 ||
1040             // See comments in performSTORECombine() for more details about
1041             // these conditions.
1042
1043             // Code that uses clang vector extensions can mark that it
1044             // wants unaligned accesses to be treated as fast by
1045             // underspecifying alignment to be 1 or 2.
1046             Align <= 2 ||
1047
1048             // Disregard v2i64. Memcpy lowering produces those and splitting
1049             // them regresses performance on micro-benchmarks and olden/bh.
1050             VT == MVT::v2i64;
1051   }
1052   return true;
1053 }
1054
1055 FastISel *
1056 AArch64TargetLowering::createFastISel(FunctionLoweringInfo &funcInfo,
1057                                       const TargetLibraryInfo *libInfo) const {
1058   return AArch64::createFastISel(funcInfo, libInfo);
1059 }
1060
1061 const char *AArch64TargetLowering::getTargetNodeName(unsigned Opcode) const {
1062   switch ((AArch64ISD::NodeType)Opcode) {
1063   case AArch64ISD::FIRST_NUMBER:      break;
1064   case AArch64ISD::CALL:              return "AArch64ISD::CALL";
1065   case AArch64ISD::ADRP:              return "AArch64ISD::ADRP";
1066   case AArch64ISD::ADDlow:            return "AArch64ISD::ADDlow";
1067   case AArch64ISD::LOADgot:           return "AArch64ISD::LOADgot";
1068   case AArch64ISD::RET_FLAG:          return "AArch64ISD::RET_FLAG";
1069   case AArch64ISD::BRCOND:            return "AArch64ISD::BRCOND";
1070   case AArch64ISD::CSEL:              return "AArch64ISD::CSEL";
1071   case AArch64ISD::FCSEL:             return "AArch64ISD::FCSEL";
1072   case AArch64ISD::CSINV:             return "AArch64ISD::CSINV";
1073   case AArch64ISD::CSNEG:             return "AArch64ISD::CSNEG";
1074   case AArch64ISD::CSINC:             return "AArch64ISD::CSINC";
1075   case AArch64ISD::THREAD_POINTER:    return "AArch64ISD::THREAD_POINTER";
1076   case AArch64ISD::TLSDESC_CALLSEQ:   return "AArch64ISD::TLSDESC_CALLSEQ";
1077   case AArch64ISD::ADC:               return "AArch64ISD::ADC";
1078   case AArch64ISD::SBC:               return "AArch64ISD::SBC";
1079   case AArch64ISD::ADDS:              return "AArch64ISD::ADDS";
1080   case AArch64ISD::SUBS:              return "AArch64ISD::SUBS";
1081   case AArch64ISD::ADCS:              return "AArch64ISD::ADCS";
1082   case AArch64ISD::SBCS:              return "AArch64ISD::SBCS";
1083   case AArch64ISD::ANDS:              return "AArch64ISD::ANDS";
1084   case AArch64ISD::CCMP:              return "AArch64ISD::CCMP";
1085   case AArch64ISD::CCMN:              return "AArch64ISD::CCMN";
1086   case AArch64ISD::FCCMP:             return "AArch64ISD::FCCMP";
1087   case AArch64ISD::FCMP:              return "AArch64ISD::FCMP";
1088   case AArch64ISD::DUP:               return "AArch64ISD::DUP";
1089   case AArch64ISD::DUPLANE8:          return "AArch64ISD::DUPLANE8";
1090   case AArch64ISD::DUPLANE16:         return "AArch64ISD::DUPLANE16";
1091   case AArch64ISD::DUPLANE32:         return "AArch64ISD::DUPLANE32";
1092   case AArch64ISD::DUPLANE64:         return "AArch64ISD::DUPLANE64";
1093   case AArch64ISD::MOVI:              return "AArch64ISD::MOVI";
1094   case AArch64ISD::MOVIshift:         return "AArch64ISD::MOVIshift";
1095   case AArch64ISD::MOVIedit:          return "AArch64ISD::MOVIedit";
1096   case AArch64ISD::MOVImsl:           return "AArch64ISD::MOVImsl";
1097   case AArch64ISD::FMOV:              return "AArch64ISD::FMOV";
1098   case AArch64ISD::MVNIshift:         return "AArch64ISD::MVNIshift";
1099   case AArch64ISD::MVNImsl:           return "AArch64ISD::MVNImsl";
1100   case AArch64ISD::BICi:              return "AArch64ISD::BICi";
1101   case AArch64ISD::ORRi:              return "AArch64ISD::ORRi";
1102   case AArch64ISD::BSL:               return "AArch64ISD::BSL";
1103   case AArch64ISD::NEG:               return "AArch64ISD::NEG";
1104   case AArch64ISD::EXTR:              return "AArch64ISD::EXTR";
1105   case AArch64ISD::ZIP1:              return "AArch64ISD::ZIP1";
1106   case AArch64ISD::ZIP2:              return "AArch64ISD::ZIP2";
1107   case AArch64ISD::UZP1:              return "AArch64ISD::UZP1";
1108   case AArch64ISD::UZP2:              return "AArch64ISD::UZP2";
1109   case AArch64ISD::TRN1:              return "AArch64ISD::TRN1";
1110   case AArch64ISD::TRN2:              return "AArch64ISD::TRN2";
1111   case AArch64ISD::REV16:             return "AArch64ISD::REV16";
1112   case AArch64ISD::REV32:             return "AArch64ISD::REV32";
1113   case AArch64ISD::REV64:             return "AArch64ISD::REV64";
1114   case AArch64ISD::EXT:               return "AArch64ISD::EXT";
1115   case AArch64ISD::VSHL:              return "AArch64ISD::VSHL";
1116   case AArch64ISD::VLSHR:             return "AArch64ISD::VLSHR";
1117   case AArch64ISD::VASHR:             return "AArch64ISD::VASHR";
1118   case AArch64ISD::CMEQ:              return "AArch64ISD::CMEQ";
1119   case AArch64ISD::CMGE:              return "AArch64ISD::CMGE";
1120   case AArch64ISD::CMGT:              return "AArch64ISD::CMGT";
1121   case AArch64ISD::CMHI:              return "AArch64ISD::CMHI";
1122   case AArch64ISD::CMHS:              return "AArch64ISD::CMHS";
1123   case AArch64ISD::FCMEQ:             return "AArch64ISD::FCMEQ";
1124   case AArch64ISD::FCMGE:             return "AArch64ISD::FCMGE";
1125   case AArch64ISD::FCMGT:             return "AArch64ISD::FCMGT";
1126   case AArch64ISD::CMEQz:             return "AArch64ISD::CMEQz";
1127   case AArch64ISD::CMGEz:             return "AArch64ISD::CMGEz";
1128   case AArch64ISD::CMGTz:             return "AArch64ISD::CMGTz";
1129   case AArch64ISD::CMLEz:             return "AArch64ISD::CMLEz";
1130   case AArch64ISD::CMLTz:             return "AArch64ISD::CMLTz";
1131   case AArch64ISD::FCMEQz:            return "AArch64ISD::FCMEQz";
1132   case AArch64ISD::FCMGEz:            return "AArch64ISD::FCMGEz";
1133   case AArch64ISD::FCMGTz:            return "AArch64ISD::FCMGTz";
1134   case AArch64ISD::FCMLEz:            return "AArch64ISD::FCMLEz";
1135   case AArch64ISD::FCMLTz:            return "AArch64ISD::FCMLTz";
1136   case AArch64ISD::SADDV:             return "AArch64ISD::SADDV";
1137   case AArch64ISD::UADDV:             return "AArch64ISD::UADDV";
1138   case AArch64ISD::SMINV:             return "AArch64ISD::SMINV";
1139   case AArch64ISD::UMINV:             return "AArch64ISD::UMINV";
1140   case AArch64ISD::SMAXV:             return "AArch64ISD::SMAXV";
1141   case AArch64ISD::UMAXV:             return "AArch64ISD::UMAXV";
1142   case AArch64ISD::NOT:               return "AArch64ISD::NOT";
1143   case AArch64ISD::BIT:               return "AArch64ISD::BIT";
1144   case AArch64ISD::CBZ:               return "AArch64ISD::CBZ";
1145   case AArch64ISD::CBNZ:              return "AArch64ISD::CBNZ";
1146   case AArch64ISD::TBZ:               return "AArch64ISD::TBZ";
1147   case AArch64ISD::TBNZ:              return "AArch64ISD::TBNZ";
1148   case AArch64ISD::TC_RETURN:         return "AArch64ISD::TC_RETURN";
1149   case AArch64ISD::PREFETCH:          return "AArch64ISD::PREFETCH";
1150   case AArch64ISD::SITOF:             return "AArch64ISD::SITOF";
1151   case AArch64ISD::UITOF:             return "AArch64ISD::UITOF";
1152   case AArch64ISD::NVCAST:            return "AArch64ISD::NVCAST";
1153   case AArch64ISD::SQSHL_I:           return "AArch64ISD::SQSHL_I";
1154   case AArch64ISD::UQSHL_I:           return "AArch64ISD::UQSHL_I";
1155   case AArch64ISD::SRSHR_I:           return "AArch64ISD::SRSHR_I";
1156   case AArch64ISD::URSHR_I:           return "AArch64ISD::URSHR_I";
1157   case AArch64ISD::SQSHLU_I:          return "AArch64ISD::SQSHLU_I";
1158   case AArch64ISD::WrapperLarge:      return "AArch64ISD::WrapperLarge";
1159   case AArch64ISD::LD2post:           return "AArch64ISD::LD2post";
1160   case AArch64ISD::LD3post:           return "AArch64ISD::LD3post";
1161   case AArch64ISD::LD4post:           return "AArch64ISD::LD4post";
1162   case AArch64ISD::ST2post:           return "AArch64ISD::ST2post";
1163   case AArch64ISD::ST3post:           return "AArch64ISD::ST3post";
1164   case AArch64ISD::ST4post:           return "AArch64ISD::ST4post";
1165   case AArch64ISD::LD1x2post:         return "AArch64ISD::LD1x2post";
1166   case AArch64ISD::LD1x3post:         return "AArch64ISD::LD1x3post";
1167   case AArch64ISD::LD1x4post:         return "AArch64ISD::LD1x4post";
1168   case AArch64ISD::ST1x2post:         return "AArch64ISD::ST1x2post";
1169   case AArch64ISD::ST1x3post:         return "AArch64ISD::ST1x3post";
1170   case AArch64ISD::ST1x4post:         return "AArch64ISD::ST1x4post";
1171   case AArch64ISD::LD1DUPpost:        return "AArch64ISD::LD1DUPpost";
1172   case AArch64ISD::LD2DUPpost:        return "AArch64ISD::LD2DUPpost";
1173   case AArch64ISD::LD3DUPpost:        return "AArch64ISD::LD3DUPpost";
1174   case AArch64ISD::LD4DUPpost:        return "AArch64ISD::LD4DUPpost";
1175   case AArch64ISD::LD1LANEpost:       return "AArch64ISD::LD1LANEpost";
1176   case AArch64ISD::LD2LANEpost:       return "AArch64ISD::LD2LANEpost";
1177   case AArch64ISD::LD3LANEpost:       return "AArch64ISD::LD3LANEpost";
1178   case AArch64ISD::LD4LANEpost:       return "AArch64ISD::LD4LANEpost";
1179   case AArch64ISD::ST2LANEpost:       return "AArch64ISD::ST2LANEpost";
1180   case AArch64ISD::ST3LANEpost:       return "AArch64ISD::ST3LANEpost";
1181   case AArch64ISD::ST4LANEpost:       return "AArch64ISD::ST4LANEpost";
1182   case AArch64ISD::SMULL:             return "AArch64ISD::SMULL";
1183   case AArch64ISD::UMULL:             return "AArch64ISD::UMULL";
1184   case AArch64ISD::FRECPE:            return "AArch64ISD::FRECPE";
1185   case AArch64ISD::FRECPS:            return "AArch64ISD::FRECPS";
1186   case AArch64ISD::FRSQRTE:           return "AArch64ISD::FRSQRTE";
1187   case AArch64ISD::FRSQRTS:           return "AArch64ISD::FRSQRTS";
1188   }
1189   return nullptr;
1190 }
1191
1192 MachineBasicBlock *
1193 AArch64TargetLowering::EmitF128CSEL(MachineInstr &MI,
1194                                     MachineBasicBlock *MBB) const {
1195   // We materialise the F128CSEL pseudo-instruction as some control flow and a
1196   // phi node:
1197
1198   // OrigBB:
1199   //     [... previous instrs leading to comparison ...]
1200   //     b.ne TrueBB
1201   //     b EndBB
1202   // TrueBB:
1203   //     ; Fallthrough
1204   // EndBB:
1205   //     Dest = PHI [IfTrue, TrueBB], [IfFalse, OrigBB]
1206
1207   MachineFunction *MF = MBB->getParent();
1208   const TargetInstrInfo *TII = Subtarget->getInstrInfo();
1209   const BasicBlock *LLVM_BB = MBB->getBasicBlock();
1210   DebugLoc DL = MI.getDebugLoc();
1211   MachineFunction::iterator It = ++MBB->getIterator();
1212
1213   unsigned DestReg = MI.getOperand(0).getReg();
1214   unsigned IfTrueReg = MI.getOperand(1).getReg();
1215   unsigned IfFalseReg = MI.getOperand(2).getReg();
1216   unsigned CondCode = MI.getOperand(3).getImm();
1217   bool NZCVKilled = MI.getOperand(4).isKill();
1218
1219   MachineBasicBlock *TrueBB = MF->CreateMachineBasicBlock(LLVM_BB);
1220   MachineBasicBlock *EndBB = MF->CreateMachineBasicBlock(LLVM_BB);
1221   MF->insert(It, TrueBB);
1222   MF->insert(It, EndBB);
1223
1224   // Transfer rest of current basic-block to EndBB
1225   EndBB->splice(EndBB->begin(), MBB, std::next(MachineBasicBlock::iterator(MI)),
1226                 MBB->end());
1227   EndBB->transferSuccessorsAndUpdatePHIs(MBB);
1228
1229   BuildMI(MBB, DL, TII->get(AArch64::Bcc)).addImm(CondCode).addMBB(TrueBB);
1230   BuildMI(MBB, DL, TII->get(AArch64::B)).addMBB(EndBB);
1231   MBB->addSuccessor(TrueBB);
1232   MBB->addSuccessor(EndBB);
1233
1234   // TrueBB falls through to the end.
1235   TrueBB->addSuccessor(EndBB);
1236
1237   if (!NZCVKilled) {
1238     TrueBB->addLiveIn(AArch64::NZCV);
1239     EndBB->addLiveIn(AArch64::NZCV);
1240   }
1241
1242   BuildMI(*EndBB, EndBB->begin(), DL, TII->get(AArch64::PHI), DestReg)
1243       .addReg(IfTrueReg)
1244       .addMBB(TrueBB)
1245       .addReg(IfFalseReg)
1246       .addMBB(MBB);
1247
1248   MI.eraseFromParent();
1249   return EndBB;
1250 }
1251
1252 MachineBasicBlock *AArch64TargetLowering::EmitInstrWithCustomInserter(
1253     MachineInstr &MI, MachineBasicBlock *BB) const {
1254   switch (MI.getOpcode()) {
1255   default:
1256 #ifndef NDEBUG
1257     MI.dump();
1258 #endif
1259     llvm_unreachable("Unexpected instruction for custom inserter!");
1260
1261   case AArch64::F128CSEL:
1262     return EmitF128CSEL(MI, BB);
1263
1264   case TargetOpcode::STACKMAP:
1265   case TargetOpcode::PATCHPOINT:
1266     return emitPatchPoint(MI, BB);
1267   }
1268 }
1269
1270 //===----------------------------------------------------------------------===//
1271 // AArch64 Lowering private implementation.
1272 //===----------------------------------------------------------------------===//
1273
1274 //===----------------------------------------------------------------------===//
1275 // Lowering Code
1276 //===----------------------------------------------------------------------===//
1277
1278 /// changeIntCCToAArch64CC - Convert a DAG integer condition code to an AArch64
1279 /// CC
1280 static AArch64CC::CondCode changeIntCCToAArch64CC(ISD::CondCode CC) {
1281   switch (CC) {
1282   default:
1283     llvm_unreachable("Unknown condition code!");
1284   case ISD::SETNE:
1285     return AArch64CC::NE;
1286   case ISD::SETEQ:
1287     return AArch64CC::EQ;
1288   case ISD::SETGT:
1289     return AArch64CC::GT;
1290   case ISD::SETGE:
1291     return AArch64CC::GE;
1292   case ISD::SETLT:
1293     return AArch64CC::LT;
1294   case ISD::SETLE:
1295     return AArch64CC::LE;
1296   case ISD::SETUGT:
1297     return AArch64CC::HI;
1298   case ISD::SETUGE:
1299     return AArch64CC::HS;
1300   case ISD::SETULT:
1301     return AArch64CC::LO;
1302   case ISD::SETULE:
1303     return AArch64CC::LS;
1304   }
1305 }
1306
1307 /// changeFPCCToAArch64CC - Convert a DAG fp condition code to an AArch64 CC.
1308 static void changeFPCCToAArch64CC(ISD::CondCode CC,
1309                                   AArch64CC::CondCode &CondCode,
1310                                   AArch64CC::CondCode &CondCode2) {
1311   CondCode2 = AArch64CC::AL;
1312   switch (CC) {
1313   default:
1314     llvm_unreachable("Unknown FP condition!");
1315   case ISD::SETEQ:
1316   case ISD::SETOEQ:
1317     CondCode = AArch64CC::EQ;
1318     break;
1319   case ISD::SETGT:
1320   case ISD::SETOGT:
1321     CondCode = AArch64CC::GT;
1322     break;
1323   case ISD::SETGE:
1324   case ISD::SETOGE:
1325     CondCode = AArch64CC::GE;
1326     break;
1327   case ISD::SETOLT:
1328     CondCode = AArch64CC::MI;
1329     break;
1330   case ISD::SETOLE:
1331     CondCode = AArch64CC::LS;
1332     break;
1333   case ISD::SETONE:
1334     CondCode = AArch64CC::MI;
1335     CondCode2 = AArch64CC::GT;
1336     break;
1337   case ISD::SETO:
1338     CondCode = AArch64CC::VC;
1339     break;
1340   case ISD::SETUO:
1341     CondCode = AArch64CC::VS;
1342     break;
1343   case ISD::SETUEQ:
1344     CondCode = AArch64CC::EQ;
1345     CondCode2 = AArch64CC::VS;
1346     break;
1347   case ISD::SETUGT:
1348     CondCode = AArch64CC::HI;
1349     break;
1350   case ISD::SETUGE:
1351     CondCode = AArch64CC::PL;
1352     break;
1353   case ISD::SETLT:
1354   case ISD::SETULT:
1355     CondCode = AArch64CC::LT;
1356     break;
1357   case ISD::SETLE:
1358   case ISD::SETULE:
1359     CondCode = AArch64CC::LE;
1360     break;
1361   case ISD::SETNE:
1362   case ISD::SETUNE:
1363     CondCode = AArch64CC::NE;
1364     break;
1365   }
1366 }
1367
1368 /// Convert a DAG fp condition code to an AArch64 CC.
1369 /// This differs from changeFPCCToAArch64CC in that it returns cond codes that
1370 /// should be AND'ed instead of OR'ed.
1371 static void changeFPCCToANDAArch64CC(ISD::CondCode CC,
1372                                      AArch64CC::CondCode &CondCode,
1373                                      AArch64CC::CondCode &CondCode2) {
1374   CondCode2 = AArch64CC::AL;
1375   switch (CC) {
1376   default:
1377     changeFPCCToAArch64CC(CC, CondCode, CondCode2);
1378     assert(CondCode2 == AArch64CC::AL);
1379     break;
1380   case ISD::SETONE:
1381     // (a one b)
1382     // == ((a olt b) || (a ogt b))
1383     // == ((a ord b) && (a une b))
1384     CondCode = AArch64CC::VC;
1385     CondCode2 = AArch64CC::NE;
1386     break;
1387   case ISD::SETUEQ:
1388     // (a ueq b)
1389     // == ((a uno b) || (a oeq b))
1390     // == ((a ule b) && (a uge b))
1391     CondCode = AArch64CC::PL;
1392     CondCode2 = AArch64CC::LE;
1393     break;
1394   }
1395 }
1396
1397 /// changeVectorFPCCToAArch64CC - Convert a DAG fp condition code to an AArch64
1398 /// CC usable with the vector instructions. Fewer operations are available
1399 /// without a real NZCV register, so we have to use less efficient combinations
1400 /// to get the same effect.
1401 static void changeVectorFPCCToAArch64CC(ISD::CondCode CC,
1402                                         AArch64CC::CondCode &CondCode,
1403                                         AArch64CC::CondCode &CondCode2,
1404                                         bool &Invert) {
1405   Invert = false;
1406   switch (CC) {
1407   default:
1408     // Mostly the scalar mappings work fine.
1409     changeFPCCToAArch64CC(CC, CondCode, CondCode2);
1410     break;
1411   case ISD::SETUO:
1412     Invert = true;
1413     LLVM_FALLTHROUGH;
1414   case ISD::SETO:
1415     CondCode = AArch64CC::MI;
1416     CondCode2 = AArch64CC::GE;
1417     break;
1418   case ISD::SETUEQ:
1419   case ISD::SETULT:
1420   case ISD::SETULE:
1421   case ISD::SETUGT:
1422   case ISD::SETUGE:
1423     // All of the compare-mask comparisons are ordered, but we can switch
1424     // between the two by a double inversion. E.g. ULE == !OGT.
1425     Invert = true;
1426     changeFPCCToAArch64CC(getSetCCInverse(CC, false), CondCode, CondCode2);
1427     break;
1428   }
1429 }
1430
1431 static bool isLegalArithImmed(uint64_t C) {
1432   // Matches AArch64DAGToDAGISel::SelectArithImmed().
1433   bool IsLegal = (C >> 12 == 0) || ((C & 0xFFFULL) == 0 && C >> 24 == 0);
1434   DEBUG(dbgs() << "Is imm " << C << " legal: " << (IsLegal ? "yes\n" : "no\n"));
1435   return IsLegal;
1436 }
1437
1438 static SDValue emitComparison(SDValue LHS, SDValue RHS, ISD::CondCode CC,
1439                               const SDLoc &dl, SelectionDAG &DAG) {
1440   EVT VT = LHS.getValueType();
1441   const bool FullFP16 =
1442     static_cast<const AArch64Subtarget &>(DAG.getSubtarget()).hasFullFP16();
1443
1444   if (VT.isFloatingPoint()) {
1445     assert(VT != MVT::f128);
1446     if (VT == MVT::f16 && !FullFP16) {
1447       LHS = DAG.getNode(ISD::FP_EXTEND, dl, MVT::f32, LHS);
1448       RHS = DAG.getNode(ISD::FP_EXTEND, dl, MVT::f32, RHS);
1449       VT = MVT::f32;
1450     }
1451     return DAG.getNode(AArch64ISD::FCMP, dl, VT, LHS, RHS);
1452   }
1453
1454   // The CMP instruction is just an alias for SUBS, and representing it as
1455   // SUBS means that it's possible to get CSE with subtract operations.
1456   // A later phase can perform the optimization of setting the destination
1457   // register to WZR/XZR if it ends up being unused.
1458   unsigned Opcode = AArch64ISD::SUBS;
1459
1460   if (RHS.getOpcode() == ISD::SUB && isNullConstant(RHS.getOperand(0)) &&
1461       (CC == ISD::SETEQ || CC == ISD::SETNE)) {
1462     // We'd like to combine a (CMP op1, (sub 0, op2) into a CMN instruction on
1463     // the grounds that "op1 - (-op2) == op1 + op2". However, the C and V flags
1464     // can be set differently by this operation. It comes down to whether
1465     // "SInt(~op2)+1 == SInt(~op2+1)" (and the same for UInt). If they are then
1466     // everything is fine. If not then the optimization is wrong. Thus general
1467     // comparisons are only valid if op2 != 0.
1468
1469     // So, finally, the only LLVM-native comparisons that don't mention C and V
1470     // are SETEQ and SETNE. They're the only ones we can safely use CMN for in
1471     // the absence of information about op2.
1472     Opcode = AArch64ISD::ADDS;
1473     RHS = RHS.getOperand(1);
1474   } else if (LHS.getOpcode() == ISD::AND && isNullConstant(RHS) &&
1475              !isUnsignedIntSetCC(CC)) {
1476     // Similarly, (CMP (and X, Y), 0) can be implemented with a TST
1477     // (a.k.a. ANDS) except that the flags are only guaranteed to work for one
1478     // of the signed comparisons.
1479     Opcode = AArch64ISD::ANDS;
1480     RHS = LHS.getOperand(1);
1481     LHS = LHS.getOperand(0);
1482   }
1483
1484   return DAG.getNode(Opcode, dl, DAG.getVTList(VT, MVT_CC), LHS, RHS)
1485       .getValue(1);
1486 }
1487
1488 /// \defgroup AArch64CCMP CMP;CCMP matching
1489 ///
1490 /// These functions deal with the formation of CMP;CCMP;... sequences.
1491 /// The CCMP/CCMN/FCCMP/FCCMPE instructions allow the conditional execution of
1492 /// a comparison. They set the NZCV flags to a predefined value if their
1493 /// predicate is false. This allows to express arbitrary conjunctions, for
1494 /// example "cmp 0 (and (setCA (cmp A)) (setCB (cmp B))))"
1495 /// expressed as:
1496 ///   cmp A
1497 ///   ccmp B, inv(CB), CA
1498 ///   check for CB flags
1499 ///
1500 /// In general we can create code for arbitrary "... (and (and A B) C)"
1501 /// sequences. We can also implement some "or" expressions, because "(or A B)"
1502 /// is equivalent to "not (and (not A) (not B))" and we can implement some
1503 /// negation operations:
1504 /// We can negate the results of a single comparison by inverting the flags
1505 /// used when the predicate fails and inverting the flags tested in the next
1506 /// instruction; We can also negate the results of the whole previous
1507 /// conditional compare sequence by inverting the flags tested in the next
1508 /// instruction. However there is no way to negate the result of a partial
1509 /// sequence.
1510 ///
1511 /// Therefore on encountering an "or" expression we can negate the subtree on
1512 /// one side and have to be able to push the negate to the leafs of the subtree
1513 /// on the other side (see also the comments in code). As complete example:
1514 /// "or (or (setCA (cmp A)) (setCB (cmp B)))
1515 ///     (and (setCC (cmp C)) (setCD (cmp D)))"
1516 /// is transformed to
1517 /// "not (and (not (and (setCC (cmp C)) (setCC (cmp D))))
1518 ///           (and (not (setCA (cmp A)) (not (setCB (cmp B))))))"
1519 /// and implemented as:
1520 ///   cmp C
1521 ///   ccmp D, inv(CD), CC
1522 ///   ccmp A, CA, inv(CD)
1523 ///   ccmp B, CB, inv(CA)
1524 ///   check for CB flags
1525 /// A counterexample is "or (and A B) (and C D)" which cannot be implemented
1526 /// by conditional compare sequences.
1527 /// @{
1528
1529 /// Create a conditional comparison; Use CCMP, CCMN or FCCMP as appropriate.
1530 static SDValue emitConditionalComparison(SDValue LHS, SDValue RHS,
1531                                          ISD::CondCode CC, SDValue CCOp,
1532                                          AArch64CC::CondCode Predicate,
1533                                          AArch64CC::CondCode OutCC,
1534                                          const SDLoc &DL, SelectionDAG &DAG) {
1535   unsigned Opcode = 0;
1536   const bool FullFP16 =
1537     static_cast<const AArch64Subtarget &>(DAG.getSubtarget()).hasFullFP16();
1538
1539   if (LHS.getValueType().isFloatingPoint()) {
1540     assert(LHS.getValueType() != MVT::f128);
1541     if (LHS.getValueType() == MVT::f16 && !FullFP16) {
1542       LHS = DAG.getNode(ISD::FP_EXTEND, DL, MVT::f32, LHS);
1543       RHS = DAG.getNode(ISD::FP_EXTEND, DL, MVT::f32, RHS);
1544     }
1545     Opcode = AArch64ISD::FCCMP;
1546   } else if (RHS.getOpcode() == ISD::SUB) {
1547     SDValue SubOp0 = RHS.getOperand(0);
1548     if (isNullConstant(SubOp0) && (CC == ISD::SETEQ || CC == ISD::SETNE)) {
1549       // See emitComparison() on why we can only do this for SETEQ and SETNE.
1550       Opcode = AArch64ISD::CCMN;
1551       RHS = RHS.getOperand(1);
1552     }
1553   }
1554   if (Opcode == 0)
1555     Opcode = AArch64ISD::CCMP;
1556
1557   SDValue Condition = DAG.getConstant(Predicate, DL, MVT_CC);
1558   AArch64CC::CondCode InvOutCC = AArch64CC::getInvertedCondCode(OutCC);
1559   unsigned NZCV = AArch64CC::getNZCVToSatisfyCondCode(InvOutCC);
1560   SDValue NZCVOp = DAG.getConstant(NZCV, DL, MVT::i32);
1561   return DAG.getNode(Opcode, DL, MVT_CC, LHS, RHS, NZCVOp, Condition, CCOp);
1562 }
1563
1564 /// Returns true if @p Val is a tree of AND/OR/SETCC operations.
1565 /// CanPushNegate is set to true if we can push a negate operation through
1566 /// the tree in a was that we are left with AND operations and negate operations
1567 /// at the leafs only. i.e. "not (or (or x y) z)" can be changed to
1568 /// "and (and (not x) (not y)) (not z)"; "not (or (and x y) z)" cannot be
1569 /// brought into such a form.
1570 static bool isConjunctionDisjunctionTree(const SDValue Val, bool &CanNegate,
1571                                          unsigned Depth = 0) {
1572   if (!Val.hasOneUse())
1573     return false;
1574   unsigned Opcode = Val->getOpcode();
1575   if (Opcode == ISD::SETCC) {
1576     if (Val->getOperand(0).getValueType() == MVT::f128)
1577       return false;
1578     CanNegate = true;
1579     return true;
1580   }
1581   // Protect against exponential runtime and stack overflow.
1582   if (Depth > 6)
1583     return false;
1584   if (Opcode == ISD::AND || Opcode == ISD::OR) {
1585     SDValue O0 = Val->getOperand(0);
1586     SDValue O1 = Val->getOperand(1);
1587     bool CanNegateL;
1588     if (!isConjunctionDisjunctionTree(O0, CanNegateL, Depth+1))
1589       return false;
1590     bool CanNegateR;
1591     if (!isConjunctionDisjunctionTree(O1, CanNegateR, Depth+1))
1592       return false;
1593
1594     if (Opcode == ISD::OR) {
1595       // For an OR expression we need to be able to negate at least one side or
1596       // we cannot do the transformation at all.
1597       if (!CanNegateL && !CanNegateR)
1598         return false;
1599       // We can however change a (not (or x y)) to (and (not x) (not y)) if we
1600       // can negate the x and y subtrees.
1601       CanNegate = CanNegateL && CanNegateR;
1602     } else {
1603       // If the operands are OR expressions then we finally need to negate their
1604       // outputs, we can only do that for the operand with emitted last by
1605       // negating OutCC, not for both operands.
1606       bool NeedsNegOutL = O0->getOpcode() == ISD::OR;
1607       bool NeedsNegOutR = O1->getOpcode() == ISD::OR;
1608       if (NeedsNegOutL && NeedsNegOutR)
1609         return false;
1610       // We cannot negate an AND operation (it would become an OR),
1611       CanNegate = false;
1612     }
1613     return true;
1614   }
1615   return false;
1616 }
1617
1618 /// Emit conjunction or disjunction tree with the CMP/FCMP followed by a chain
1619 /// of CCMP/CFCMP ops. See @ref AArch64CCMP.
1620 /// Tries to transform the given i1 producing node @p Val to a series compare
1621 /// and conditional compare operations. @returns an NZCV flags producing node
1622 /// and sets @p OutCC to the flags that should be tested or returns SDValue() if
1623 /// transformation was not possible.
1624 /// On recursive invocations @p PushNegate may be set to true to have negation
1625 /// effects pushed to the tree leafs; @p Predicate is an NZCV flag predicate
1626 /// for the comparisons in the current subtree; @p Depth limits the search
1627 /// depth to avoid stack overflow.
1628 static SDValue emitConjunctionDisjunctionTreeRec(SelectionDAG &DAG, SDValue Val,
1629     AArch64CC::CondCode &OutCC, bool Negate, SDValue CCOp,
1630     AArch64CC::CondCode Predicate) {
1631   // We're at a tree leaf, produce a conditional comparison operation.
1632   unsigned Opcode = Val->getOpcode();
1633   if (Opcode == ISD::SETCC) {
1634     SDValue LHS = Val->getOperand(0);
1635     SDValue RHS = Val->getOperand(1);
1636     ISD::CondCode CC = cast<CondCodeSDNode>(Val->getOperand(2))->get();
1637     bool isInteger = LHS.getValueType().isInteger();
1638     if (Negate)
1639       CC = getSetCCInverse(CC, isInteger);
1640     SDLoc DL(Val);
1641     // Determine OutCC and handle FP special case.
1642     if (isInteger) {
1643       OutCC = changeIntCCToAArch64CC(CC);
1644     } else {
1645       assert(LHS.getValueType().isFloatingPoint());
1646       AArch64CC::CondCode ExtraCC;
1647       changeFPCCToANDAArch64CC(CC, OutCC, ExtraCC);
1648       // Some floating point conditions can't be tested with a single condition
1649       // code. Construct an additional comparison in this case.
1650       if (ExtraCC != AArch64CC::AL) {
1651         SDValue ExtraCmp;
1652         if (!CCOp.getNode())
1653           ExtraCmp = emitComparison(LHS, RHS, CC, DL, DAG);
1654         else
1655           ExtraCmp = emitConditionalComparison(LHS, RHS, CC, CCOp, Predicate,
1656                                                ExtraCC, DL, DAG);
1657         CCOp = ExtraCmp;
1658         Predicate = ExtraCC;
1659       }
1660     }
1661
1662     // Produce a normal comparison if we are first in the chain
1663     if (!CCOp)
1664       return emitComparison(LHS, RHS, CC, DL, DAG);
1665     // Otherwise produce a ccmp.
1666     return emitConditionalComparison(LHS, RHS, CC, CCOp, Predicate, OutCC, DL,
1667                                      DAG);
1668   }
1669   assert((Opcode == ISD::AND || (Opcode == ISD::OR && Val->hasOneUse())) &&
1670          "Valid conjunction/disjunction tree");
1671
1672   // Check if both sides can be transformed.
1673   SDValue LHS = Val->getOperand(0);
1674   SDValue RHS = Val->getOperand(1);
1675
1676   // In case of an OR we need to negate our operands and the result.
1677   // (A v B) <=> not(not(A) ^ not(B))
1678   bool NegateOpsAndResult = Opcode == ISD::OR;
1679   // We can negate the results of all previous operations by inverting the
1680   // predicate flags giving us a free negation for one side. The other side
1681   // must be negatable by itself.
1682   if (NegateOpsAndResult) {
1683     // See which side we can negate.
1684     bool CanNegateL;
1685     bool isValidL = isConjunctionDisjunctionTree(LHS, CanNegateL);
1686     assert(isValidL && "Valid conjunction/disjunction tree");
1687     (void)isValidL;
1688
1689 #ifndef NDEBUG
1690     bool CanNegateR;
1691     bool isValidR = isConjunctionDisjunctionTree(RHS, CanNegateR);
1692     assert(isValidR && "Valid conjunction/disjunction tree");
1693     assert((CanNegateL || CanNegateR) && "Valid conjunction/disjunction tree");
1694 #endif
1695
1696     // Order the side which we cannot negate to RHS so we can emit it first.
1697     if (!CanNegateL)
1698       std::swap(LHS, RHS);
1699   } else {
1700     bool NeedsNegOutL = LHS->getOpcode() == ISD::OR;
1701     assert((!NeedsNegOutL || RHS->getOpcode() != ISD::OR) &&
1702            "Valid conjunction/disjunction tree");
1703     // Order the side where we need to negate the output flags to RHS so it
1704     // gets emitted first.
1705     if (NeedsNegOutL)
1706       std::swap(LHS, RHS);
1707   }
1708
1709   // Emit RHS. If we want to negate the tree we only need to push a negate
1710   // through if we are already in a PushNegate case, otherwise we can negate
1711   // the "flags to test" afterwards.
1712   AArch64CC::CondCode RHSCC;
1713   SDValue CmpR = emitConjunctionDisjunctionTreeRec(DAG, RHS, RHSCC, Negate,
1714                                                    CCOp, Predicate);
1715   if (NegateOpsAndResult && !Negate)
1716     RHSCC = AArch64CC::getInvertedCondCode(RHSCC);
1717   // Emit LHS. We may need to negate it.
1718   SDValue CmpL = emitConjunctionDisjunctionTreeRec(DAG, LHS, OutCC,
1719                                                    NegateOpsAndResult, CmpR,
1720                                                    RHSCC);
1721   // If we transformed an OR to and AND then we have to negate the result
1722   // (or absorb the Negate parameter).
1723   if (NegateOpsAndResult && !Negate)
1724     OutCC = AArch64CC::getInvertedCondCode(OutCC);
1725   return CmpL;
1726 }
1727
1728 /// Emit conjunction or disjunction tree with the CMP/FCMP followed by a chain
1729 /// of CCMP/CFCMP ops. See @ref AArch64CCMP.
1730 /// \see emitConjunctionDisjunctionTreeRec().
1731 static SDValue emitConjunctionDisjunctionTree(SelectionDAG &DAG, SDValue Val,
1732                                               AArch64CC::CondCode &OutCC) {
1733   bool CanNegate;
1734   if (!isConjunctionDisjunctionTree(Val, CanNegate))
1735     return SDValue();
1736
1737   return emitConjunctionDisjunctionTreeRec(DAG, Val, OutCC, false, SDValue(),
1738                                            AArch64CC::AL);
1739 }
1740
1741 /// @}
1742
1743 static SDValue getAArch64Cmp(SDValue LHS, SDValue RHS, ISD::CondCode CC,
1744                              SDValue &AArch64cc, SelectionDAG &DAG,
1745                              const SDLoc &dl) {
1746   if (ConstantSDNode *RHSC = dyn_cast<ConstantSDNode>(RHS.getNode())) {
1747     EVT VT = RHS.getValueType();
1748     uint64_t C = RHSC->getZExtValue();
1749     if (!isLegalArithImmed(C)) {
1750       // Constant does not fit, try adjusting it by one?
1751       switch (CC) {
1752       default:
1753         break;
1754       case ISD::SETLT:
1755       case ISD::SETGE:
1756         if ((VT == MVT::i32 && C != 0x80000000 &&
1757              isLegalArithImmed((uint32_t)(C - 1))) ||
1758             (VT == MVT::i64 && C != 0x80000000ULL &&
1759              isLegalArithImmed(C - 1ULL))) {
1760           CC = (CC == ISD::SETLT) ? ISD::SETLE : ISD::SETGT;
1761           C = (VT == MVT::i32) ? (uint32_t)(C - 1) : C - 1;
1762           RHS = DAG.getConstant(C, dl, VT);
1763         }
1764         break;
1765       case ISD::SETULT:
1766       case ISD::SETUGE:
1767         if ((VT == MVT::i32 && C != 0 &&
1768              isLegalArithImmed((uint32_t)(C - 1))) ||
1769             (VT == MVT::i64 && C != 0ULL && isLegalArithImmed(C - 1ULL))) {
1770           CC = (CC == ISD::SETULT) ? ISD::SETULE : ISD::SETUGT;
1771           C = (VT == MVT::i32) ? (uint32_t)(C - 1) : C - 1;
1772           RHS = DAG.getConstant(C, dl, VT);
1773         }
1774         break;
1775       case ISD::SETLE:
1776       case ISD::SETGT:
1777         if ((VT == MVT::i32 && C != INT32_MAX &&
1778              isLegalArithImmed((uint32_t)(C + 1))) ||
1779             (VT == MVT::i64 && C != INT64_MAX &&
1780              isLegalArithImmed(C + 1ULL))) {
1781           CC = (CC == ISD::SETLE) ? ISD::SETLT : ISD::SETGE;
1782           C = (VT == MVT::i32) ? (uint32_t)(C + 1) : C + 1;
1783           RHS = DAG.getConstant(C, dl, VT);
1784         }
1785         break;
1786       case ISD::SETULE:
1787       case ISD::SETUGT:
1788         if ((VT == MVT::i32 && C != UINT32_MAX &&
1789              isLegalArithImmed((uint32_t)(C + 1))) ||
1790             (VT == MVT::i64 && C != UINT64_MAX &&
1791              isLegalArithImmed(C + 1ULL))) {
1792           CC = (CC == ISD::SETULE) ? ISD::SETULT : ISD::SETUGE;
1793           C = (VT == MVT::i32) ? (uint32_t)(C + 1) : C + 1;
1794           RHS = DAG.getConstant(C, dl, VT);
1795         }
1796         break;
1797       }
1798     }
1799   }
1800   SDValue Cmp;
1801   AArch64CC::CondCode AArch64CC;
1802   if ((CC == ISD::SETEQ || CC == ISD::SETNE) && isa<ConstantSDNode>(RHS)) {
1803     const ConstantSDNode *RHSC = cast<ConstantSDNode>(RHS);
1804
1805     // The imm operand of ADDS is an unsigned immediate, in the range 0 to 4095.
1806     // For the i8 operand, the largest immediate is 255, so this can be easily
1807     // encoded in the compare instruction. For the i16 operand, however, the
1808     // largest immediate cannot be encoded in the compare.
1809     // Therefore, use a sign extending load and cmn to avoid materializing the
1810     // -1 constant. For example,
1811     // movz w1, #65535
1812     // ldrh w0, [x0, #0]
1813     // cmp w0, w1
1814     // >
1815     // ldrsh w0, [x0, #0]
1816     // cmn w0, #1
1817     // Fundamental, we're relying on the property that (zext LHS) == (zext RHS)
1818     // if and only if (sext LHS) == (sext RHS). The checks are in place to
1819     // ensure both the LHS and RHS are truly zero extended and to make sure the
1820     // transformation is profitable.
1821     if ((RHSC->getZExtValue() >> 16 == 0) && isa<LoadSDNode>(LHS) &&
1822         cast<LoadSDNode>(LHS)->getExtensionType() == ISD::ZEXTLOAD &&
1823         cast<LoadSDNode>(LHS)->getMemoryVT() == MVT::i16 &&
1824         LHS.getNode()->hasNUsesOfValue(1, 0)) {
1825       int16_t ValueofRHS = cast<ConstantSDNode>(RHS)->getZExtValue();
1826       if (ValueofRHS < 0 && isLegalArithImmed(-ValueofRHS)) {
1827         SDValue SExt =
1828             DAG.getNode(ISD::SIGN_EXTEND_INREG, dl, LHS.getValueType(), LHS,
1829                         DAG.getValueType(MVT::i16));
1830         Cmp = emitComparison(SExt, DAG.getConstant(ValueofRHS, dl,
1831                                                    RHS.getValueType()),
1832                              CC, dl, DAG);
1833         AArch64CC = changeIntCCToAArch64CC(CC);
1834       }
1835     }
1836
1837     if (!Cmp && (RHSC->isNullValue() || RHSC->isOne())) {
1838       if ((Cmp = emitConjunctionDisjunctionTree(DAG, LHS, AArch64CC))) {
1839         if ((CC == ISD::SETNE) ^ RHSC->isNullValue())
1840           AArch64CC = AArch64CC::getInvertedCondCode(AArch64CC);
1841       }
1842     }
1843   }
1844
1845   if (!Cmp) {
1846     Cmp = emitComparison(LHS, RHS, CC, dl, DAG);
1847     AArch64CC = changeIntCCToAArch64CC(CC);
1848   }
1849   AArch64cc = DAG.getConstant(AArch64CC, dl, MVT_CC);
1850   return Cmp;
1851 }
1852
1853 static std::pair<SDValue, SDValue>
1854 getAArch64XALUOOp(AArch64CC::CondCode &CC, SDValue Op, SelectionDAG &DAG) {
1855   assert((Op.getValueType() == MVT::i32 || Op.getValueType() == MVT::i64) &&
1856          "Unsupported value type");
1857   SDValue Value, Overflow;
1858   SDLoc DL(Op);
1859   SDValue LHS = Op.getOperand(0);
1860   SDValue RHS = Op.getOperand(1);
1861   unsigned Opc = 0;
1862   switch (Op.getOpcode()) {
1863   default:
1864     llvm_unreachable("Unknown overflow instruction!");
1865   case ISD::SADDO:
1866     Opc = AArch64ISD::ADDS;
1867     CC = AArch64CC::VS;
1868     break;
1869   case ISD::UADDO:
1870     Opc = AArch64ISD::ADDS;
1871     CC = AArch64CC::HS;
1872     break;
1873   case ISD::SSUBO:
1874     Opc = AArch64ISD::SUBS;
1875     CC = AArch64CC::VS;
1876     break;
1877   case ISD::USUBO:
1878     Opc = AArch64ISD::SUBS;
1879     CC = AArch64CC::LO;
1880     break;
1881   // Multiply needs a little bit extra work.
1882   case ISD::SMULO:
1883   case ISD::UMULO: {
1884     CC = AArch64CC::NE;
1885     bool IsSigned = Op.getOpcode() == ISD::SMULO;
1886     if (Op.getValueType() == MVT::i32) {
1887       unsigned ExtendOpc = IsSigned ? ISD::SIGN_EXTEND : ISD::ZERO_EXTEND;
1888       // For a 32 bit multiply with overflow check we want the instruction
1889       // selector to generate a widening multiply (SMADDL/UMADDL). For that we
1890       // need to generate the following pattern:
1891       // (i64 add 0, (i64 mul (i64 sext|zext i32 %a), (i64 sext|zext i32 %b))
1892       LHS = DAG.getNode(ExtendOpc, DL, MVT::i64, LHS);
1893       RHS = DAG.getNode(ExtendOpc, DL, MVT::i64, RHS);
1894       SDValue Mul = DAG.getNode(ISD::MUL, DL, MVT::i64, LHS, RHS);
1895       SDValue Add = DAG.getNode(ISD::ADD, DL, MVT::i64, Mul,
1896                                 DAG.getConstant(0, DL, MVT::i64));
1897       // On AArch64 the upper 32 bits are always zero extended for a 32 bit
1898       // operation. We need to clear out the upper 32 bits, because we used a
1899       // widening multiply that wrote all 64 bits. In the end this should be a
1900       // noop.
1901       Value = DAG.getNode(ISD::TRUNCATE, DL, MVT::i32, Add);
1902       if (IsSigned) {
1903         // The signed overflow check requires more than just a simple check for
1904         // any bit set in the upper 32 bits of the result. These bits could be
1905         // just the sign bits of a negative number. To perform the overflow
1906         // check we have to arithmetic shift right the 32nd bit of the result by
1907         // 31 bits. Then we compare the result to the upper 32 bits.
1908         SDValue UpperBits = DAG.getNode(ISD::SRL, DL, MVT::i64, Add,
1909                                         DAG.getConstant(32, DL, MVT::i64));
1910         UpperBits = DAG.getNode(ISD::TRUNCATE, DL, MVT::i32, UpperBits);
1911         SDValue LowerBits = DAG.getNode(ISD::SRA, DL, MVT::i32, Value,
1912                                         DAG.getConstant(31, DL, MVT::i64));
1913         // It is important that LowerBits is last, otherwise the arithmetic
1914         // shift will not be folded into the compare (SUBS).
1915         SDVTList VTs = DAG.getVTList(MVT::i32, MVT::i32);
1916         Overflow = DAG.getNode(AArch64ISD::SUBS, DL, VTs, UpperBits, LowerBits)
1917                        .getValue(1);
1918       } else {
1919         // The overflow check for unsigned multiply is easy. We only need to
1920         // check if any of the upper 32 bits are set. This can be done with a
1921         // CMP (shifted register). For that we need to generate the following
1922         // pattern:
1923         // (i64 AArch64ISD::SUBS i64 0, (i64 srl i64 %Mul, i64 32)
1924         SDValue UpperBits = DAG.getNode(ISD::SRL, DL, MVT::i64, Mul,
1925                                         DAG.getConstant(32, DL, MVT::i64));
1926         SDVTList VTs = DAG.getVTList(MVT::i64, MVT::i32);
1927         Overflow =
1928             DAG.getNode(AArch64ISD::SUBS, DL, VTs,
1929                         DAG.getConstant(0, DL, MVT::i64),
1930                         UpperBits).getValue(1);
1931       }
1932       break;
1933     }
1934     assert(Op.getValueType() == MVT::i64 && "Expected an i64 value type");
1935     // For the 64 bit multiply
1936     Value = DAG.getNode(ISD::MUL, DL, MVT::i64, LHS, RHS);
1937     if (IsSigned) {
1938       SDValue UpperBits = DAG.getNode(ISD::MULHS, DL, MVT::i64, LHS, RHS);
1939       SDValue LowerBits = DAG.getNode(ISD::SRA, DL, MVT::i64, Value,
1940                                       DAG.getConstant(63, DL, MVT::i64));
1941       // It is important that LowerBits is last, otherwise the arithmetic
1942       // shift will not be folded into the compare (SUBS).
1943       SDVTList VTs = DAG.getVTList(MVT::i64, MVT::i32);
1944       Overflow = DAG.getNode(AArch64ISD::SUBS, DL, VTs, UpperBits, LowerBits)
1945                      .getValue(1);
1946     } else {
1947       SDValue UpperBits = DAG.getNode(ISD::MULHU, DL, MVT::i64, LHS, RHS);
1948       SDVTList VTs = DAG.getVTList(MVT::i64, MVT::i32);
1949       Overflow =
1950           DAG.getNode(AArch64ISD::SUBS, DL, VTs,
1951                       DAG.getConstant(0, DL, MVT::i64),
1952                       UpperBits).getValue(1);
1953     }
1954     break;
1955   }
1956   } // switch (...)
1957
1958   if (Opc) {
1959     SDVTList VTs = DAG.getVTList(Op->getValueType(0), MVT::i32);
1960
1961     // Emit the AArch64 operation with overflow check.
1962     Value = DAG.getNode(Opc, DL, VTs, LHS, RHS);
1963     Overflow = Value.getValue(1);
1964   }
1965   return std::make_pair(Value, Overflow);
1966 }
1967
1968 SDValue AArch64TargetLowering::LowerF128Call(SDValue Op, SelectionDAG &DAG,
1969                                              RTLIB::Libcall Call) const {
1970   SmallVector<SDValue, 2> Ops(Op->op_begin(), Op->op_end());
1971   return makeLibCall(DAG, Call, MVT::f128, Ops, false, SDLoc(Op)).first;
1972 }
1973
1974 // Returns true if the given Op is the overflow flag result of an overflow
1975 // intrinsic operation.
1976 static bool isOverflowIntrOpRes(SDValue Op) {
1977   unsigned Opc = Op.getOpcode();
1978   return (Op.getResNo() == 1 &&
1979           (Opc == ISD::SADDO || Opc == ISD::UADDO || Opc == ISD::SSUBO ||
1980            Opc == ISD::USUBO || Opc == ISD::SMULO || Opc == ISD::UMULO));
1981 }
1982
1983 static SDValue LowerXOR(SDValue Op, SelectionDAG &DAG) {
1984   SDValue Sel = Op.getOperand(0);
1985   SDValue Other = Op.getOperand(1);
1986   SDLoc dl(Sel);
1987
1988   // If the operand is an overflow checking operation, invert the condition
1989   // code and kill the Not operation. I.e., transform:
1990   // (xor (overflow_op_bool, 1))
1991   //   -->
1992   // (csel 1, 0, invert(cc), overflow_op_bool)
1993   // ... which later gets transformed to just a cset instruction with an
1994   // inverted condition code, rather than a cset + eor sequence.
1995   if (isOneConstant(Other) && isOverflowIntrOpRes(Sel)) {
1996     // Only lower legal XALUO ops.
1997     if (!DAG.getTargetLoweringInfo().isTypeLegal(Sel->getValueType(0)))
1998       return SDValue();
1999
2000     SDValue TVal = DAG.getConstant(1, dl, MVT::i32);
2001     SDValue FVal = DAG.getConstant(0, dl, MVT::i32);
2002     AArch64CC::CondCode CC;
2003     SDValue Value, Overflow;
2004     std::tie(Value, Overflow) = getAArch64XALUOOp(CC, Sel.getValue(0), DAG);
2005     SDValue CCVal = DAG.getConstant(getInvertedCondCode(CC), dl, MVT::i32);
2006     return DAG.getNode(AArch64ISD::CSEL, dl, Op.getValueType(), TVal, FVal,
2007                        CCVal, Overflow);
2008   }
2009   // If neither operand is a SELECT_CC, give up.
2010   if (Sel.getOpcode() != ISD::SELECT_CC)
2011     std::swap(Sel, Other);
2012   if (Sel.getOpcode() != ISD::SELECT_CC)
2013     return Op;
2014
2015   // The folding we want to perform is:
2016   // (xor x, (select_cc a, b, cc, 0, -1) )
2017   //   -->
2018   // (csel x, (xor x, -1), cc ...)
2019   //
2020   // The latter will get matched to a CSINV instruction.
2021
2022   ISD::CondCode CC = cast<CondCodeSDNode>(Sel.getOperand(4))->get();
2023   SDValue LHS = Sel.getOperand(0);
2024   SDValue RHS = Sel.getOperand(1);
2025   SDValue TVal = Sel.getOperand(2);
2026   SDValue FVal = Sel.getOperand(3);
2027
2028   // FIXME: This could be generalized to non-integer comparisons.
2029   if (LHS.getValueType() != MVT::i32 && LHS.getValueType() != MVT::i64)
2030     return Op;
2031
2032   ConstantSDNode *CFVal = dyn_cast<ConstantSDNode>(FVal);
2033   ConstantSDNode *CTVal = dyn_cast<ConstantSDNode>(TVal);
2034
2035   // The values aren't constants, this isn't the pattern we're looking for.
2036   if (!CFVal || !CTVal)
2037     return Op;
2038
2039   // We can commute the SELECT_CC by inverting the condition.  This
2040   // might be needed to make this fit into a CSINV pattern.
2041   if (CTVal->isAllOnesValue() && CFVal->isNullValue()) {
2042     std::swap(TVal, FVal);
2043     std::swap(CTVal, CFVal);
2044     CC = ISD::getSetCCInverse(CC, true);
2045   }
2046
2047   // If the constants line up, perform the transform!
2048   if (CTVal->isNullValue() && CFVal->isAllOnesValue()) {
2049     SDValue CCVal;
2050     SDValue Cmp = getAArch64Cmp(LHS, RHS, CC, CCVal, DAG, dl);
2051
2052     FVal = Other;
2053     TVal = DAG.getNode(ISD::XOR, dl, Other.getValueType(), Other,
2054                        DAG.getConstant(-1ULL, dl, Other.getValueType()));
2055
2056     return DAG.getNode(AArch64ISD::CSEL, dl, Sel.getValueType(), FVal, TVal,
2057                        CCVal, Cmp);
2058   }
2059
2060   return Op;
2061 }
2062
2063 static SDValue LowerADDC_ADDE_SUBC_SUBE(SDValue Op, SelectionDAG &DAG) {
2064   EVT VT = Op.getValueType();
2065
2066   // Let legalize expand this if it isn't a legal type yet.
2067   if (!DAG.getTargetLoweringInfo().isTypeLegal(VT))
2068     return SDValue();
2069
2070   SDVTList VTs = DAG.getVTList(VT, MVT::i32);
2071
2072   unsigned Opc;
2073   bool ExtraOp = false;
2074   switch (Op.getOpcode()) {
2075   default:
2076     llvm_unreachable("Invalid code");
2077   case ISD::ADDC:
2078     Opc = AArch64ISD::ADDS;
2079     break;
2080   case ISD::SUBC:
2081     Opc = AArch64ISD::SUBS;
2082     break;
2083   case ISD::ADDE:
2084     Opc = AArch64ISD::ADCS;
2085     ExtraOp = true;
2086     break;
2087   case ISD::SUBE:
2088     Opc = AArch64ISD::SBCS;
2089     ExtraOp = true;
2090     break;
2091   }
2092
2093   if (!ExtraOp)
2094     return DAG.getNode(Opc, SDLoc(Op), VTs, Op.getOperand(0), Op.getOperand(1));
2095   return DAG.getNode(Opc, SDLoc(Op), VTs, Op.getOperand(0), Op.getOperand(1),
2096                      Op.getOperand(2));
2097 }
2098
2099 static SDValue LowerXALUO(SDValue Op, SelectionDAG &DAG) {
2100   // Let legalize expand this if it isn't a legal type yet.
2101   if (!DAG.getTargetLoweringInfo().isTypeLegal(Op.getValueType()))
2102     return SDValue();
2103
2104   SDLoc dl(Op);
2105   AArch64CC::CondCode CC;
2106   // The actual operation that sets the overflow or carry flag.
2107   SDValue Value, Overflow;
2108   std::tie(Value, Overflow) = getAArch64XALUOOp(CC, Op, DAG);
2109
2110   // We use 0 and 1 as false and true values.
2111   SDValue TVal = DAG.getConstant(1, dl, MVT::i32);
2112   SDValue FVal = DAG.getConstant(0, dl, MVT::i32);
2113
2114   // We use an inverted condition, because the conditional select is inverted
2115   // too. This will allow it to be selected to a single instruction:
2116   // CSINC Wd, WZR, WZR, invert(cond).
2117   SDValue CCVal = DAG.getConstant(getInvertedCondCode(CC), dl, MVT::i32);
2118   Overflow = DAG.getNode(AArch64ISD::CSEL, dl, MVT::i32, FVal, TVal,
2119                          CCVal, Overflow);
2120
2121   SDVTList VTs = DAG.getVTList(Op.getValueType(), MVT::i32);
2122   return DAG.getNode(ISD::MERGE_VALUES, dl, VTs, Value, Overflow);
2123 }
2124
2125 // Prefetch operands are:
2126 // 1: Address to prefetch
2127 // 2: bool isWrite
2128 // 3: int locality (0 = no locality ... 3 = extreme locality)
2129 // 4: bool isDataCache
2130 static SDValue LowerPREFETCH(SDValue Op, SelectionDAG &DAG) {
2131   SDLoc DL(Op);
2132   unsigned IsWrite = cast<ConstantSDNode>(Op.getOperand(2))->getZExtValue();
2133   unsigned Locality = cast<ConstantSDNode>(Op.getOperand(3))->getZExtValue();
2134   unsigned IsData = cast<ConstantSDNode>(Op.getOperand(4))->getZExtValue();
2135
2136   bool IsStream = !Locality;
2137   // When the locality number is set
2138   if (Locality) {
2139     // The front-end should have filtered out the out-of-range values
2140     assert(Locality <= 3 && "Prefetch locality out-of-range");
2141     // The locality degree is the opposite of the cache speed.
2142     // Put the number the other way around.
2143     // The encoding starts at 0 for level 1
2144     Locality = 3 - Locality;
2145   }
2146
2147   // built the mask value encoding the expected behavior.
2148   unsigned PrfOp = (IsWrite << 4) |     // Load/Store bit
2149                    (!IsData << 3) |     // IsDataCache bit
2150                    (Locality << 1) |    // Cache level bits
2151                    (unsigned)IsStream;  // Stream bit
2152   return DAG.getNode(AArch64ISD::PREFETCH, DL, MVT::Other, Op.getOperand(0),
2153                      DAG.getConstant(PrfOp, DL, MVT::i32), Op.getOperand(1));
2154 }
2155
2156 SDValue AArch64TargetLowering::LowerFP_EXTEND(SDValue Op,
2157                                               SelectionDAG &DAG) const {
2158   assert(Op.getValueType() == MVT::f128 && "Unexpected lowering");
2159
2160   RTLIB::Libcall LC;
2161   LC = RTLIB::getFPEXT(Op.getOperand(0).getValueType(), Op.getValueType());
2162
2163   return LowerF128Call(Op, DAG, LC);
2164 }
2165
2166 SDValue AArch64TargetLowering::LowerFP_ROUND(SDValue Op,
2167                                              SelectionDAG &DAG) const {
2168   if (Op.getOperand(0).getValueType() != MVT::f128) {
2169     // It's legal except when f128 is involved
2170     return Op;
2171   }
2172
2173   RTLIB::Libcall LC;
2174   LC = RTLIB::getFPROUND(Op.getOperand(0).getValueType(), Op.getValueType());
2175
2176   // FP_ROUND node has a second operand indicating whether it is known to be
2177   // precise. That doesn't take part in the LibCall so we can't directly use
2178   // LowerF128Call.
2179   SDValue SrcVal = Op.getOperand(0);
2180   return makeLibCall(DAG, LC, Op.getValueType(), SrcVal, /*isSigned*/ false,
2181                      SDLoc(Op)).first;
2182 }
2183
2184 static SDValue LowerVectorFP_TO_INT(SDValue Op, SelectionDAG &DAG) {
2185   // Warning: We maintain cost tables in AArch64TargetTransformInfo.cpp.
2186   // Any additional optimization in this function should be recorded
2187   // in the cost tables.
2188   EVT InVT = Op.getOperand(0).getValueType();
2189   EVT VT = Op.getValueType();
2190   unsigned NumElts = InVT.getVectorNumElements();
2191
2192   // f16 vectors are promoted to f32 before a conversion.
2193   if (InVT.getVectorElementType() == MVT::f16) {
2194     MVT NewVT = MVT::getVectorVT(MVT::f32, NumElts);
2195     SDLoc dl(Op);
2196     return DAG.getNode(
2197         Op.getOpcode(), dl, Op.getValueType(),
2198         DAG.getNode(ISD::FP_EXTEND, dl, NewVT, Op.getOperand(0)));
2199   }
2200
2201   if (VT.getSizeInBits() < InVT.getSizeInBits()) {
2202     SDLoc dl(Op);
2203     SDValue Cv =
2204         DAG.getNode(Op.getOpcode(), dl, InVT.changeVectorElementTypeToInteger(),
2205                     Op.getOperand(0));
2206     return DAG.getNode(ISD::TRUNCATE, dl, VT, Cv);
2207   }
2208
2209   if (VT.getSizeInBits() > InVT.getSizeInBits()) {
2210     SDLoc dl(Op);
2211     MVT ExtVT =
2212         MVT::getVectorVT(MVT::getFloatingPointVT(VT.getScalarSizeInBits()),
2213                          VT.getVectorNumElements());
2214     SDValue Ext = DAG.getNode(ISD::FP_EXTEND, dl, ExtVT, Op.getOperand(0));
2215     return DAG.getNode(Op.getOpcode(), dl, VT, Ext);
2216   }
2217
2218   // Type changing conversions are illegal.
2219   return Op;
2220 }
2221
2222 SDValue AArch64TargetLowering::LowerFP_TO_INT(SDValue Op,
2223                                               SelectionDAG &DAG) const {
2224   if (Op.getOperand(0).getValueType().isVector())
2225     return LowerVectorFP_TO_INT(Op, DAG);
2226
2227   // f16 conversions are promoted to f32 when full fp16 is not supported.
2228   if (Op.getOperand(0).getValueType() == MVT::f16 &&
2229       !Subtarget->hasFullFP16()) {
2230     SDLoc dl(Op);
2231     return DAG.getNode(
2232         Op.getOpcode(), dl, Op.getValueType(),
2233         DAG.getNode(ISD::FP_EXTEND, dl, MVT::f32, Op.getOperand(0)));
2234   }
2235
2236   if (Op.getOperand(0).getValueType() != MVT::f128) {
2237     // It's legal except when f128 is involved
2238     return Op;
2239   }
2240
2241   RTLIB::Libcall LC;
2242   if (Op.getOpcode() == ISD::FP_TO_SINT)
2243     LC = RTLIB::getFPTOSINT(Op.getOperand(0).getValueType(), Op.getValueType());
2244   else
2245     LC = RTLIB::getFPTOUINT(Op.getOperand(0).getValueType(), Op.getValueType());
2246
2247   SmallVector<SDValue, 2> Ops(Op->op_begin(), Op->op_end());
2248   return makeLibCall(DAG, LC, Op.getValueType(), Ops, false, SDLoc(Op)).first;
2249 }
2250
2251 static SDValue LowerVectorINT_TO_FP(SDValue Op, SelectionDAG &DAG) {
2252   // Warning: We maintain cost tables in AArch64TargetTransformInfo.cpp.
2253   // Any additional optimization in this function should be recorded
2254   // in the cost tables.
2255   EVT VT = Op.getValueType();
2256   SDLoc dl(Op);
2257   SDValue In = Op.getOperand(0);
2258   EVT InVT = In.getValueType();
2259
2260   if (VT.getSizeInBits() < InVT.getSizeInBits()) {
2261     MVT CastVT =
2262         MVT::getVectorVT(MVT::getFloatingPointVT(InVT.getScalarSizeInBits()),
2263                          InVT.getVectorNumElements());
2264     In = DAG.getNode(Op.getOpcode(), dl, CastVT, In);
2265     return DAG.getNode(ISD::FP_ROUND, dl, VT, In, DAG.getIntPtrConstant(0, dl));
2266   }
2267
2268   if (VT.getSizeInBits() > InVT.getSizeInBits()) {
2269     unsigned CastOpc =
2270         Op.getOpcode() == ISD::SINT_TO_FP ? ISD::SIGN_EXTEND : ISD::ZERO_EXTEND;
2271     EVT CastVT = VT.changeVectorElementTypeToInteger();
2272     In = DAG.getNode(CastOpc, dl, CastVT, In);
2273     return DAG.getNode(Op.getOpcode(), dl, VT, In);
2274   }
2275
2276   return Op;
2277 }
2278
2279 SDValue AArch64TargetLowering::LowerINT_TO_FP(SDValue Op,
2280                                             SelectionDAG &DAG) const {
2281   if (Op.getValueType().isVector())
2282     return LowerVectorINT_TO_FP(Op, DAG);
2283
2284   // f16 conversions are promoted to f32 when full fp16 is not supported.
2285   if (Op.getValueType() == MVT::f16 &&
2286       !Subtarget->hasFullFP16()) {
2287     SDLoc dl(Op);
2288     return DAG.getNode(
2289         ISD::FP_ROUND, dl, MVT::f16,
2290         DAG.getNode(Op.getOpcode(), dl, MVT::f32, Op.getOperand(0)),
2291         DAG.getIntPtrConstant(0, dl));
2292   }
2293
2294   // i128 conversions are libcalls.
2295   if (Op.getOperand(0).getValueType() == MVT::i128)
2296     return SDValue();
2297
2298   // Other conversions are legal, unless it's to the completely software-based
2299   // fp128.
2300   if (Op.getValueType() != MVT::f128)
2301     return Op;
2302
2303   RTLIB::Libcall LC;
2304   if (Op.getOpcode() == ISD::SINT_TO_FP)
2305     LC = RTLIB::getSINTTOFP(Op.getOperand(0).getValueType(), Op.getValueType());
2306   else
2307     LC = RTLIB::getUINTTOFP(Op.getOperand(0).getValueType(), Op.getValueType());
2308
2309   return LowerF128Call(Op, DAG, LC);
2310 }
2311
2312 SDValue AArch64TargetLowering::LowerFSINCOS(SDValue Op,
2313                                             SelectionDAG &DAG) const {
2314   // For iOS, we want to call an alternative entry point: __sincos_stret,
2315   // which returns the values in two S / D registers.
2316   SDLoc dl(Op);
2317   SDValue Arg = Op.getOperand(0);
2318   EVT ArgVT = Arg.getValueType();
2319   Type *ArgTy = ArgVT.getTypeForEVT(*DAG.getContext());
2320
2321   ArgListTy Args;
2322   ArgListEntry Entry;
2323
2324   Entry.Node = Arg;
2325   Entry.Ty = ArgTy;
2326   Entry.IsSExt = false;
2327   Entry.IsZExt = false;
2328   Args.push_back(Entry);
2329
2330   RTLIB::Libcall LC = ArgVT == MVT::f64 ? RTLIB::SINCOS_STRET_F64
2331                                         : RTLIB::SINCOS_STRET_F32;
2332   const char *LibcallName = getLibcallName(LC);
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 if (Subtarget->isTargetCOFF() && GV->hasDLLImportStorageClass()) {
3491       assert(Subtarget->isTargetWindows() &&
3492              "Windows is the only supported COFF target");
3493       Callee = getGOT(G, DAG, AArch64II::MO_DLLIMPORT);
3494     } else {
3495       const GlobalValue *GV = G->getGlobal();
3496       Callee = DAG.getTargetGlobalAddress(GV, DL, PtrVT, 0, 0);
3497     }
3498   } else if (auto *S = dyn_cast<ExternalSymbolSDNode>(Callee)) {
3499     if (getTargetMachine().getCodeModel() == CodeModel::Large &&
3500         Subtarget->isTargetMachO()) {
3501       const char *Sym = S->getSymbol();
3502       Callee = DAG.getTargetExternalSymbol(Sym, PtrVT, AArch64II::MO_GOT);
3503       Callee = DAG.getNode(AArch64ISD::LOADgot, DL, PtrVT, Callee);
3504     } else {
3505       const char *Sym = S->getSymbol();
3506       Callee = DAG.getTargetExternalSymbol(Sym, PtrVT, 0);
3507     }
3508   }
3509
3510   // We don't usually want to end the call-sequence here because we would tidy
3511   // the frame up *after* the call, however in the ABI-changing tail-call case
3512   // we've carefully laid out the parameters so that when sp is reset they'll be
3513   // in the correct location.
3514   if (IsTailCall && !IsSibCall) {
3515     Chain = DAG.getCALLSEQ_END(Chain, DAG.getIntPtrConstant(NumBytes, DL, true),
3516                                DAG.getIntPtrConstant(0, DL, true), InFlag, DL);
3517     InFlag = Chain.getValue(1);
3518   }
3519
3520   std::vector<SDValue> Ops;
3521   Ops.push_back(Chain);
3522   Ops.push_back(Callee);
3523
3524   if (IsTailCall) {
3525     // Each tail call may have to adjust the stack by a different amount, so
3526     // this information must travel along with the operation for eventual
3527     // consumption by emitEpilogue.
3528     Ops.push_back(DAG.getTargetConstant(FPDiff, DL, MVT::i32));
3529   }
3530
3531   // Add argument registers to the end of the list so that they are known live
3532   // into the call.
3533   for (auto &RegToPass : RegsToPass)
3534     Ops.push_back(DAG.getRegister(RegToPass.first,
3535                                   RegToPass.second.getValueType()));
3536
3537   // Add a register mask operand representing the call-preserved registers.
3538   const uint32_t *Mask;
3539   const AArch64RegisterInfo *TRI = Subtarget->getRegisterInfo();
3540   if (IsThisReturn) {
3541     // For 'this' returns, use the X0-preserving mask if applicable
3542     Mask = TRI->getThisReturnPreservedMask(MF, CallConv);
3543     if (!Mask) {
3544       IsThisReturn = false;
3545       Mask = TRI->getCallPreservedMask(MF, CallConv);
3546     }
3547   } else
3548     Mask = TRI->getCallPreservedMask(MF, CallConv);
3549
3550   assert(Mask && "Missing call preserved mask for calling convention");
3551   Ops.push_back(DAG.getRegisterMask(Mask));
3552
3553   if (InFlag.getNode())
3554     Ops.push_back(InFlag);
3555
3556   SDVTList NodeTys = DAG.getVTList(MVT::Other, MVT::Glue);
3557
3558   // If we're doing a tall call, use a TC_RETURN here rather than an
3559   // actual call instruction.
3560   if (IsTailCall) {
3561     MF.getFrameInfo().setHasTailCall();
3562     return DAG.getNode(AArch64ISD::TC_RETURN, DL, NodeTys, Ops);
3563   }
3564
3565   // Returns a chain and a flag for retval copy to use.
3566   Chain = DAG.getNode(AArch64ISD::CALL, DL, NodeTys, Ops);
3567   InFlag = Chain.getValue(1);
3568
3569   uint64_t CalleePopBytes =
3570       DoesCalleeRestoreStack(CallConv, TailCallOpt) ? alignTo(NumBytes, 16) : 0;
3571
3572   Chain = DAG.getCALLSEQ_END(Chain, DAG.getIntPtrConstant(NumBytes, DL, true),
3573                              DAG.getIntPtrConstant(CalleePopBytes, DL, true),
3574                              InFlag, DL);
3575   if (!Ins.empty())
3576     InFlag = Chain.getValue(1);
3577
3578   // Handle result values, copying them out of physregs into vregs that we
3579   // return.
3580   return LowerCallResult(Chain, InFlag, CallConv, IsVarArg, Ins, DL, DAG,
3581                          InVals, IsThisReturn,
3582                          IsThisReturn ? OutVals[0] : SDValue());
3583 }
3584
3585 bool AArch64TargetLowering::CanLowerReturn(
3586     CallingConv::ID CallConv, MachineFunction &MF, bool isVarArg,
3587     const SmallVectorImpl<ISD::OutputArg> &Outs, LLVMContext &Context) const {
3588   CCAssignFn *RetCC = CallConv == CallingConv::WebKit_JS
3589                           ? RetCC_AArch64_WebKit_JS
3590                           : RetCC_AArch64_AAPCS;
3591   SmallVector<CCValAssign, 16> RVLocs;
3592   CCState CCInfo(CallConv, isVarArg, MF, RVLocs, Context);
3593   return CCInfo.CheckReturn(Outs, RetCC);
3594 }
3595
3596 SDValue
3597 AArch64TargetLowering::LowerReturn(SDValue Chain, CallingConv::ID CallConv,
3598                                    bool isVarArg,
3599                                    const SmallVectorImpl<ISD::OutputArg> &Outs,
3600                                    const SmallVectorImpl<SDValue> &OutVals,
3601                                    const SDLoc &DL, SelectionDAG &DAG) const {
3602   CCAssignFn *RetCC = CallConv == CallingConv::WebKit_JS
3603                           ? RetCC_AArch64_WebKit_JS
3604                           : RetCC_AArch64_AAPCS;
3605   SmallVector<CCValAssign, 16> RVLocs;
3606   CCState CCInfo(CallConv, isVarArg, DAG.getMachineFunction(), RVLocs,
3607                  *DAG.getContext());
3608   CCInfo.AnalyzeReturn(Outs, RetCC);
3609
3610   // Copy the result values into the output registers.
3611   SDValue Flag;
3612   SmallVector<SDValue, 4> RetOps(1, Chain);
3613   for (unsigned i = 0, realRVLocIdx = 0; i != RVLocs.size();
3614        ++i, ++realRVLocIdx) {
3615     CCValAssign &VA = RVLocs[i];
3616     assert(VA.isRegLoc() && "Can only return in registers!");
3617     SDValue Arg = OutVals[realRVLocIdx];
3618
3619     switch (VA.getLocInfo()) {
3620     default:
3621       llvm_unreachable("Unknown loc info!");
3622     case CCValAssign::Full:
3623       if (Outs[i].ArgVT == MVT::i1) {
3624         // AAPCS requires i1 to be zero-extended to i8 by the producer of the
3625         // value. This is strictly redundant on Darwin (which uses "zeroext
3626         // i1"), but will be optimised out before ISel.
3627         Arg = DAG.getNode(ISD::TRUNCATE, DL, MVT::i1, Arg);
3628         Arg = DAG.getNode(ISD::ZERO_EXTEND, DL, VA.getLocVT(), Arg);
3629       }
3630       break;
3631     case CCValAssign::BCvt:
3632       Arg = DAG.getNode(ISD::BITCAST, DL, VA.getLocVT(), Arg);
3633       break;
3634     }
3635
3636     Chain = DAG.getCopyToReg(Chain, DL, VA.getLocReg(), Arg, Flag);
3637     Flag = Chain.getValue(1);
3638     RetOps.push_back(DAG.getRegister(VA.getLocReg(), VA.getLocVT()));
3639   }
3640   const AArch64RegisterInfo *TRI = Subtarget->getRegisterInfo();
3641   const MCPhysReg *I =
3642       TRI->getCalleeSavedRegsViaCopy(&DAG.getMachineFunction());
3643   if (I) {
3644     for (; *I; ++I) {
3645       if (AArch64::GPR64RegClass.contains(*I))
3646         RetOps.push_back(DAG.getRegister(*I, MVT::i64));
3647       else if (AArch64::FPR64RegClass.contains(*I))
3648         RetOps.push_back(DAG.getRegister(*I, MVT::getFloatingPointVT(64)));
3649       else
3650         llvm_unreachable("Unexpected register class in CSRsViaCopy!");
3651     }
3652   }
3653
3654   RetOps[0] = Chain; // Update chain.
3655
3656   // Add the flag if we have it.
3657   if (Flag.getNode())
3658     RetOps.push_back(Flag);
3659
3660   return DAG.getNode(AArch64ISD::RET_FLAG, DL, MVT::Other, RetOps);
3661 }
3662
3663 //===----------------------------------------------------------------------===//
3664 //  Other Lowering Code
3665 //===----------------------------------------------------------------------===//
3666
3667 SDValue AArch64TargetLowering::getTargetNode(GlobalAddressSDNode *N, EVT Ty,
3668                                              SelectionDAG &DAG,
3669                                              unsigned Flag) const {
3670   return DAG.getTargetGlobalAddress(N->getGlobal(), SDLoc(N), Ty, 0, Flag);
3671 }
3672
3673 SDValue AArch64TargetLowering::getTargetNode(JumpTableSDNode *N, EVT Ty,
3674                                              SelectionDAG &DAG,
3675                                              unsigned Flag) const {
3676   return DAG.getTargetJumpTable(N->getIndex(), Ty, Flag);
3677 }
3678
3679 SDValue AArch64TargetLowering::getTargetNode(ConstantPoolSDNode *N, EVT Ty,
3680                                              SelectionDAG &DAG,
3681                                              unsigned Flag) const {
3682   return DAG.getTargetConstantPool(N->getConstVal(), Ty, N->getAlignment(),
3683                                    N->getOffset(), Flag);
3684 }
3685
3686 SDValue AArch64TargetLowering::getTargetNode(BlockAddressSDNode* N, EVT Ty,
3687                                              SelectionDAG &DAG,
3688                                              unsigned Flag) const {
3689   return DAG.getTargetBlockAddress(N->getBlockAddress(), Ty, 0, Flag);
3690 }
3691
3692 // (loadGOT sym)
3693 template <class NodeTy>
3694 SDValue AArch64TargetLowering::getGOT(NodeTy *N, SelectionDAG &DAG,
3695                                       unsigned Flags) const {
3696   DEBUG(dbgs() << "AArch64TargetLowering::getGOT\n");
3697   SDLoc DL(N);
3698   EVT Ty = getPointerTy(DAG.getDataLayout());
3699   SDValue GotAddr = getTargetNode(N, Ty, DAG, AArch64II::MO_GOT | Flags);
3700   // FIXME: Once remat is capable of dealing with instructions with register
3701   // operands, expand this into two nodes instead of using a wrapper node.
3702   return DAG.getNode(AArch64ISD::LOADgot, DL, Ty, GotAddr);
3703 }
3704
3705 // (wrapper %highest(sym), %higher(sym), %hi(sym), %lo(sym))
3706 template <class NodeTy>
3707 SDValue AArch64TargetLowering::getAddrLarge(NodeTy *N, SelectionDAG &DAG,
3708                                             unsigned Flags) const {
3709   DEBUG(dbgs() << "AArch64TargetLowering::getAddrLarge\n");
3710   SDLoc DL(N);
3711   EVT Ty = getPointerTy(DAG.getDataLayout());
3712   const unsigned char MO_NC = AArch64II::MO_NC;
3713   return DAG.getNode(
3714       AArch64ISD::WrapperLarge, DL, Ty,
3715       getTargetNode(N, Ty, DAG, AArch64II::MO_G3 | Flags),
3716       getTargetNode(N, Ty, DAG, AArch64II::MO_G2 | MO_NC | Flags),
3717       getTargetNode(N, Ty, DAG, AArch64II::MO_G1 | MO_NC | Flags),
3718       getTargetNode(N, Ty, DAG, AArch64II::MO_G0 | MO_NC | Flags));
3719 }
3720
3721 // (addlow (adrp %hi(sym)) %lo(sym))
3722 template <class NodeTy>
3723 SDValue AArch64TargetLowering::getAddr(NodeTy *N, SelectionDAG &DAG,
3724                                        unsigned Flags) const {
3725   DEBUG(dbgs() << "AArch64TargetLowering::getAddr\n");
3726   SDLoc DL(N);
3727   EVT Ty = getPointerTy(DAG.getDataLayout());
3728   SDValue Hi = getTargetNode(N, Ty, DAG, AArch64II::MO_PAGE | Flags);
3729   SDValue Lo = getTargetNode(N, Ty, DAG,
3730                              AArch64II::MO_PAGEOFF | AArch64II::MO_NC | Flags);
3731   SDValue ADRP = DAG.getNode(AArch64ISD::ADRP, DL, Ty, Hi);
3732   return DAG.getNode(AArch64ISD::ADDlow, DL, Ty, ADRP, Lo);
3733 }
3734
3735 SDValue AArch64TargetLowering::LowerGlobalAddress(SDValue Op,
3736                                                   SelectionDAG &DAG) const {
3737   GlobalAddressSDNode *GN = cast<GlobalAddressSDNode>(Op);
3738   const GlobalValue *GV = GN->getGlobal();
3739   const AArch64II::TOF TargetFlags =
3740       (GV->hasDLLImportStorageClass() ? AArch64II::MO_DLLIMPORT
3741                                       : AArch64II::MO_NO_FLAG);
3742   unsigned char OpFlags =
3743       Subtarget->ClassifyGlobalReference(GV, getTargetMachine());
3744
3745   assert(cast<GlobalAddressSDNode>(Op)->getOffset() == 0 &&
3746          "unexpected offset in global node");
3747
3748   // This also catches the large code model case for Darwin.
3749   if ((OpFlags & AArch64II::MO_GOT) != 0) {
3750     return getGOT(GN, DAG, TargetFlags);
3751   }
3752
3753   SDValue Result;
3754   if (getTargetMachine().getCodeModel() == CodeModel::Large) {
3755     Result = getAddrLarge(GN, DAG, TargetFlags);
3756   } else {
3757     Result = getAddr(GN, DAG, TargetFlags);
3758   }
3759   EVT PtrVT = getPointerTy(DAG.getDataLayout());
3760   SDLoc DL(GN);
3761   if (GV->hasDLLImportStorageClass())
3762     Result = DAG.getLoad(PtrVT, DL, DAG.getEntryNode(), Result,
3763                          MachinePointerInfo::getGOT(DAG.getMachineFunction()));
3764   return Result;
3765 }
3766
3767 /// \brief Convert a TLS address reference into the correct sequence of loads
3768 /// and calls to compute the variable's address (for Darwin, currently) and
3769 /// return an SDValue containing the final node.
3770
3771 /// Darwin only has one TLS scheme which must be capable of dealing with the
3772 /// fully general situation, in the worst case. This means:
3773 ///     + "extern __thread" declaration.
3774 ///     + Defined in a possibly unknown dynamic library.
3775 ///
3776 /// The general system is that each __thread variable has a [3 x i64] descriptor
3777 /// which contains information used by the runtime to calculate the address. The
3778 /// only part of this the compiler needs to know about is the first xword, which
3779 /// contains a function pointer that must be called with the address of the
3780 /// entire descriptor in "x0".
3781 ///
3782 /// Since this descriptor may be in a different unit, in general even the
3783 /// descriptor must be accessed via an indirect load. The "ideal" code sequence
3784 /// is:
3785 ///     adrp x0, _var@TLVPPAGE
3786 ///     ldr x0, [x0, _var@TLVPPAGEOFF]   ; x0 now contains address of descriptor
3787 ///     ldr x1, [x0]                     ; x1 contains 1st entry of descriptor,
3788 ///                                      ; the function pointer
3789 ///     blr x1                           ; Uses descriptor address in x0
3790 ///     ; Address of _var is now in x0.
3791 ///
3792 /// If the address of _var's descriptor *is* known to the linker, then it can
3793 /// change the first "ldr" instruction to an appropriate "add x0, x0, #imm" for
3794 /// a slight efficiency gain.
3795 SDValue
3796 AArch64TargetLowering::LowerDarwinGlobalTLSAddress(SDValue Op,
3797                                                    SelectionDAG &DAG) const {
3798   assert(Subtarget->isTargetDarwin() &&
3799          "This function expects a Darwin target");
3800
3801   SDLoc DL(Op);
3802   MVT PtrVT = getPointerTy(DAG.getDataLayout());
3803   const GlobalValue *GV = cast<GlobalAddressSDNode>(Op)->getGlobal();
3804
3805   SDValue TLVPAddr =
3806       DAG.getTargetGlobalAddress(GV, DL, PtrVT, 0, AArch64II::MO_TLS);
3807   SDValue DescAddr = DAG.getNode(AArch64ISD::LOADgot, DL, PtrVT, TLVPAddr);
3808
3809   // The first entry in the descriptor is a function pointer that we must call
3810   // to obtain the address of the variable.
3811   SDValue Chain = DAG.getEntryNode();
3812   SDValue FuncTLVGet = DAG.getLoad(
3813       MVT::i64, DL, Chain, DescAddr,
3814       MachinePointerInfo::getGOT(DAG.getMachineFunction()),
3815       /* Alignment = */ 8,
3816       MachineMemOperand::MONonTemporal | MachineMemOperand::MOInvariant |
3817           MachineMemOperand::MODereferenceable);
3818   Chain = FuncTLVGet.getValue(1);
3819
3820   MachineFrameInfo &MFI = DAG.getMachineFunction().getFrameInfo();
3821   MFI.setAdjustsStack(true);
3822
3823   // TLS calls preserve all registers except those that absolutely must be
3824   // trashed: X0 (it takes an argument), LR (it's a call) and NZCV (let's not be
3825   // silly).
3826   const uint32_t *Mask =
3827       Subtarget->getRegisterInfo()->getTLSCallPreservedMask();
3828
3829   // Finally, we can make the call. This is just a degenerate version of a
3830   // normal AArch64 call node: x0 takes the address of the descriptor, and
3831   // returns the address of the variable in this thread.
3832   Chain = DAG.getCopyToReg(Chain, DL, AArch64::X0, DescAddr, SDValue());
3833   Chain =
3834       DAG.getNode(AArch64ISD::CALL, DL, DAG.getVTList(MVT::Other, MVT::Glue),
3835                   Chain, FuncTLVGet, DAG.getRegister(AArch64::X0, MVT::i64),
3836                   DAG.getRegisterMask(Mask), Chain.getValue(1));
3837   return DAG.getCopyFromReg(Chain, DL, AArch64::X0, PtrVT, Chain.getValue(1));
3838 }
3839
3840 /// When accessing thread-local variables under either the general-dynamic or
3841 /// local-dynamic system, we make a "TLS-descriptor" call. The variable will
3842 /// have a descriptor, accessible via a PC-relative ADRP, and whose first entry
3843 /// is a function pointer to carry out the resolution.
3844 ///
3845 /// The sequence is:
3846 ///    adrp  x0, :tlsdesc:var
3847 ///    ldr   x1, [x0, #:tlsdesc_lo12:var]
3848 ///    add   x0, x0, #:tlsdesc_lo12:var
3849 ///    .tlsdesccall var
3850 ///    blr   x1
3851 ///    (TPIDR_EL0 offset now in x0)
3852 ///
3853 ///  The above sequence must be produced unscheduled, to enable the linker to
3854 ///  optimize/relax this sequence.
3855 ///  Therefore, a pseudo-instruction (TLSDESC_CALLSEQ) is used to represent the
3856 ///  above sequence, and expanded really late in the compilation flow, to ensure
3857 ///  the sequence is produced as per above.
3858 SDValue AArch64TargetLowering::LowerELFTLSDescCallSeq(SDValue SymAddr,
3859                                                       const SDLoc &DL,
3860                                                       SelectionDAG &DAG) const {
3861   EVT PtrVT = getPointerTy(DAG.getDataLayout());
3862
3863   SDValue Chain = DAG.getEntryNode();
3864   SDVTList NodeTys = DAG.getVTList(MVT::Other, MVT::Glue);
3865
3866   Chain =
3867       DAG.getNode(AArch64ISD::TLSDESC_CALLSEQ, DL, NodeTys, {Chain, SymAddr});
3868   SDValue Glue = Chain.getValue(1);
3869
3870   return DAG.getCopyFromReg(Chain, DL, AArch64::X0, PtrVT, Glue);
3871 }
3872
3873 SDValue
3874 AArch64TargetLowering::LowerELFGlobalTLSAddress(SDValue Op,
3875                                                 SelectionDAG &DAG) const {
3876   assert(Subtarget->isTargetELF() && "This function expects an ELF target");
3877   assert(Subtarget->useSmallAddressing() &&
3878          "ELF TLS only supported in small memory model");
3879   // Different choices can be made for the maximum size of the TLS area for a
3880   // module. For the small address model, the default TLS size is 16MiB and the
3881   // maximum TLS size is 4GiB.
3882   // FIXME: add -mtls-size command line option and make it control the 16MiB
3883   // vs. 4GiB code sequence generation.
3884   const GlobalAddressSDNode *GA = cast<GlobalAddressSDNode>(Op);
3885
3886   TLSModel::Model Model = getTargetMachine().getTLSModel(GA->getGlobal());
3887
3888   if (!EnableAArch64ELFLocalDynamicTLSGeneration) {
3889     if (Model == TLSModel::LocalDynamic)
3890       Model = TLSModel::GeneralDynamic;
3891   }
3892
3893   SDValue TPOff;
3894   EVT PtrVT = getPointerTy(DAG.getDataLayout());
3895   SDLoc DL(Op);
3896   const GlobalValue *GV = GA->getGlobal();
3897
3898   SDValue ThreadBase = DAG.getNode(AArch64ISD::THREAD_POINTER, DL, PtrVT);
3899
3900   if (Model == TLSModel::LocalExec) {
3901     SDValue HiVar = DAG.getTargetGlobalAddress(
3902         GV, DL, PtrVT, 0, AArch64II::MO_TLS | AArch64II::MO_HI12);
3903     SDValue LoVar = DAG.getTargetGlobalAddress(
3904         GV, DL, PtrVT, 0,
3905         AArch64II::MO_TLS | AArch64II::MO_PAGEOFF | AArch64II::MO_NC);
3906
3907     SDValue TPWithOff_lo =
3908         SDValue(DAG.getMachineNode(AArch64::ADDXri, DL, PtrVT, ThreadBase,
3909                                    HiVar,
3910                                    DAG.getTargetConstant(0, DL, MVT::i32)),
3911                 0);
3912     SDValue TPWithOff =
3913         SDValue(DAG.getMachineNode(AArch64::ADDXri, DL, PtrVT, TPWithOff_lo,
3914                                    LoVar,
3915                                    DAG.getTargetConstant(0, DL, MVT::i32)),
3916                 0);
3917     return TPWithOff;
3918   } else if (Model == TLSModel::InitialExec) {
3919     TPOff = DAG.getTargetGlobalAddress(GV, DL, PtrVT, 0, AArch64II::MO_TLS);
3920     TPOff = DAG.getNode(AArch64ISD::LOADgot, DL, PtrVT, TPOff);
3921   } else if (Model == TLSModel::LocalDynamic) {
3922     // Local-dynamic accesses proceed in two phases. A general-dynamic TLS
3923     // descriptor call against the special symbol _TLS_MODULE_BASE_ to calculate
3924     // the beginning of the module's TLS region, followed by a DTPREL offset
3925     // calculation.
3926
3927     // These accesses will need deduplicating if there's more than one.
3928     AArch64FunctionInfo *MFI =
3929         DAG.getMachineFunction().getInfo<AArch64FunctionInfo>();
3930     MFI->incNumLocalDynamicTLSAccesses();
3931
3932     // The call needs a relocation too for linker relaxation. It doesn't make
3933     // sense to call it MO_PAGE or MO_PAGEOFF though so we need another copy of
3934     // the address.
3935     SDValue SymAddr = DAG.getTargetExternalSymbol("_TLS_MODULE_BASE_", PtrVT,
3936                                                   AArch64II::MO_TLS);
3937
3938     // Now we can calculate the offset from TPIDR_EL0 to this module's
3939     // thread-local area.
3940     TPOff = LowerELFTLSDescCallSeq(SymAddr, DL, DAG);
3941
3942     // Now use :dtprel_whatever: operations to calculate this variable's offset
3943     // in its thread-storage area.
3944     SDValue HiVar = DAG.getTargetGlobalAddress(
3945         GV, DL, MVT::i64, 0, AArch64II::MO_TLS | AArch64II::MO_HI12);
3946     SDValue LoVar = DAG.getTargetGlobalAddress(
3947         GV, DL, MVT::i64, 0,
3948         AArch64II::MO_TLS | AArch64II::MO_PAGEOFF | AArch64II::MO_NC);
3949
3950     TPOff = SDValue(DAG.getMachineNode(AArch64::ADDXri, DL, PtrVT, TPOff, HiVar,
3951                                        DAG.getTargetConstant(0, DL, MVT::i32)),
3952                     0);
3953     TPOff = SDValue(DAG.getMachineNode(AArch64::ADDXri, DL, PtrVT, TPOff, LoVar,
3954                                        DAG.getTargetConstant(0, DL, MVT::i32)),
3955                     0);
3956   } else if (Model == TLSModel::GeneralDynamic) {
3957     // The call needs a relocation too for linker relaxation. It doesn't make
3958     // sense to call it MO_PAGE or MO_PAGEOFF though so we need another copy of
3959     // the address.
3960     SDValue SymAddr =
3961         DAG.getTargetGlobalAddress(GV, DL, PtrVT, 0, AArch64II::MO_TLS);
3962
3963     // Finally we can make a call to calculate the offset from tpidr_el0.
3964     TPOff = LowerELFTLSDescCallSeq(SymAddr, DL, DAG);
3965   } else
3966     llvm_unreachable("Unsupported ELF TLS access model");
3967
3968   return DAG.getNode(ISD::ADD, DL, PtrVT, ThreadBase, TPOff);
3969 }
3970
3971 SDValue AArch64TargetLowering::LowerGlobalTLSAddress(SDValue Op,
3972                                                      SelectionDAG &DAG) const {
3973   const GlobalAddressSDNode *GA = cast<GlobalAddressSDNode>(Op);
3974   if (DAG.getTarget().Options.EmulatedTLS)
3975     return LowerToTLSEmulatedModel(GA, DAG);
3976
3977   if (Subtarget->isTargetDarwin())
3978     return LowerDarwinGlobalTLSAddress(Op, DAG);
3979   if (Subtarget->isTargetELF())
3980     return LowerELFGlobalTLSAddress(Op, DAG);
3981
3982   llvm_unreachable("Unexpected platform trying to use TLS");
3983 }
3984
3985 SDValue AArch64TargetLowering::LowerBR_CC(SDValue Op, SelectionDAG &DAG) const {
3986   SDValue Chain = Op.getOperand(0);
3987   ISD::CondCode CC = cast<CondCodeSDNode>(Op.getOperand(1))->get();
3988   SDValue LHS = Op.getOperand(2);
3989   SDValue RHS = Op.getOperand(3);
3990   SDValue Dest = Op.getOperand(4);
3991   SDLoc dl(Op);
3992
3993   // Handle f128 first, since lowering it will result in comparing the return
3994   // value of a libcall against zero, which is just what the rest of LowerBR_CC
3995   // is expecting to deal with.
3996   if (LHS.getValueType() == MVT::f128) {
3997     softenSetCCOperands(DAG, MVT::f128, LHS, RHS, CC, dl);
3998
3999     // If softenSetCCOperands returned a scalar, we need to compare the result
4000     // against zero to select between true and false values.
4001     if (!RHS.getNode()) {
4002       RHS = DAG.getConstant(0, dl, LHS.getValueType());
4003       CC = ISD::SETNE;
4004     }
4005   }
4006
4007   // Optimize {s|u}{add|sub|mul}.with.overflow feeding into a branch
4008   // instruction.
4009   if (isOverflowIntrOpRes(LHS) && isOneConstant(RHS) &&
4010       (CC == ISD::SETEQ || CC == ISD::SETNE)) {
4011     // Only lower legal XALUO ops.
4012     if (!DAG.getTargetLoweringInfo().isTypeLegal(LHS->getValueType(0)))
4013       return SDValue();
4014
4015     // The actual operation with overflow check.
4016     AArch64CC::CondCode OFCC;
4017     SDValue Value, Overflow;
4018     std::tie(Value, Overflow) = getAArch64XALUOOp(OFCC, LHS.getValue(0), DAG);
4019
4020     if (CC == ISD::SETNE)
4021       OFCC = getInvertedCondCode(OFCC);
4022     SDValue CCVal = DAG.getConstant(OFCC, dl, MVT::i32);
4023
4024     return DAG.getNode(AArch64ISD::BRCOND, dl, MVT::Other, Chain, Dest, CCVal,
4025                        Overflow);
4026   }
4027
4028   if (LHS.getValueType().isInteger()) {
4029     assert((LHS.getValueType() == RHS.getValueType()) &&
4030            (LHS.getValueType() == MVT::i32 || LHS.getValueType() == MVT::i64));
4031
4032     // If the RHS of the comparison is zero, we can potentially fold this
4033     // to a specialized branch.
4034     const ConstantSDNode *RHSC = dyn_cast<ConstantSDNode>(RHS);
4035     if (RHSC && RHSC->getZExtValue() == 0) {
4036       if (CC == ISD::SETEQ) {
4037         // See if we can use a TBZ to fold in an AND as well.
4038         // TBZ has a smaller branch displacement than CBZ.  If the offset is
4039         // out of bounds, a late MI-layer pass rewrites branches.
4040         // 403.gcc is an example that hits this case.
4041         if (LHS.getOpcode() == ISD::AND &&
4042             isa<ConstantSDNode>(LHS.getOperand(1)) &&
4043             isPowerOf2_64(LHS.getConstantOperandVal(1))) {
4044           SDValue Test = LHS.getOperand(0);
4045           uint64_t Mask = LHS.getConstantOperandVal(1);
4046           return DAG.getNode(AArch64ISD::TBZ, dl, MVT::Other, Chain, Test,
4047                              DAG.getConstant(Log2_64(Mask), dl, MVT::i64),
4048                              Dest);
4049         }
4050
4051         return DAG.getNode(AArch64ISD::CBZ, dl, MVT::Other, Chain, LHS, Dest);
4052       } else if (CC == ISD::SETNE) {
4053         // See if we can use a TBZ to fold in an AND as well.
4054         // TBZ has a smaller branch displacement than CBZ.  If the offset is
4055         // out of bounds, a late MI-layer pass rewrites branches.
4056         // 403.gcc is an example that hits this case.
4057         if (LHS.getOpcode() == ISD::AND &&
4058             isa<ConstantSDNode>(LHS.getOperand(1)) &&
4059             isPowerOf2_64(LHS.getConstantOperandVal(1))) {
4060           SDValue Test = LHS.getOperand(0);
4061           uint64_t Mask = LHS.getConstantOperandVal(1);
4062           return DAG.getNode(AArch64ISD::TBNZ, dl, MVT::Other, Chain, Test,
4063                              DAG.getConstant(Log2_64(Mask), dl, MVT::i64),
4064                              Dest);
4065         }
4066
4067         return DAG.getNode(AArch64ISD::CBNZ, dl, MVT::Other, Chain, LHS, Dest);
4068       } else if (CC == ISD::SETLT && LHS.getOpcode() != ISD::AND) {
4069         // Don't combine AND since emitComparison converts the AND to an ANDS
4070         // (a.k.a. TST) and the test in the test bit and branch instruction
4071         // becomes redundant.  This would also increase register pressure.
4072         uint64_t Mask = LHS.getValueSizeInBits() - 1;
4073         return DAG.getNode(AArch64ISD::TBNZ, dl, MVT::Other, Chain, LHS,
4074                            DAG.getConstant(Mask, dl, MVT::i64), Dest);
4075       }
4076     }
4077     if (RHSC && RHSC->getSExtValue() == -1 && CC == ISD::SETGT &&
4078         LHS.getOpcode() != ISD::AND) {
4079       // Don't combine AND since emitComparison converts the AND to an ANDS
4080       // (a.k.a. TST) and the test in the test bit and branch instruction
4081       // becomes redundant.  This would also increase register pressure.
4082       uint64_t Mask = LHS.getValueSizeInBits() - 1;
4083       return DAG.getNode(AArch64ISD::TBZ, dl, MVT::Other, Chain, LHS,
4084                          DAG.getConstant(Mask, dl, MVT::i64), Dest);
4085     }
4086
4087     SDValue CCVal;
4088     SDValue Cmp = getAArch64Cmp(LHS, RHS, CC, CCVal, DAG, dl);
4089     return DAG.getNode(AArch64ISD::BRCOND, dl, MVT::Other, Chain, Dest, CCVal,
4090                        Cmp);
4091   }
4092
4093   assert(LHS.getValueType() == MVT::f16 || LHS.getValueType() == MVT::f32 ||
4094          LHS.getValueType() == MVT::f64);
4095
4096   // Unfortunately, the mapping of LLVM FP CC's onto AArch64 CC's isn't totally
4097   // clean.  Some of them require two branches to implement.
4098   SDValue Cmp = emitComparison(LHS, RHS, CC, dl, DAG);
4099   AArch64CC::CondCode CC1, CC2;
4100   changeFPCCToAArch64CC(CC, CC1, CC2);
4101   SDValue CC1Val = DAG.getConstant(CC1, dl, MVT::i32);
4102   SDValue BR1 =
4103       DAG.getNode(AArch64ISD::BRCOND, dl, MVT::Other, Chain, Dest, CC1Val, Cmp);
4104   if (CC2 != AArch64CC::AL) {
4105     SDValue CC2Val = DAG.getConstant(CC2, dl, MVT::i32);
4106     return DAG.getNode(AArch64ISD::BRCOND, dl, MVT::Other, BR1, Dest, CC2Val,
4107                        Cmp);
4108   }
4109
4110   return BR1;
4111 }
4112
4113 SDValue AArch64TargetLowering::LowerFCOPYSIGN(SDValue Op,
4114                                               SelectionDAG &DAG) const {
4115   EVT VT = Op.getValueType();
4116   SDLoc DL(Op);
4117
4118   SDValue In1 = Op.getOperand(0);
4119   SDValue In2 = Op.getOperand(1);
4120   EVT SrcVT = In2.getValueType();
4121
4122   if (SrcVT.bitsLT(VT))
4123     In2 = DAG.getNode(ISD::FP_EXTEND, DL, VT, In2);
4124   else if (SrcVT.bitsGT(VT))
4125     In2 = DAG.getNode(ISD::FP_ROUND, DL, VT, In2, DAG.getIntPtrConstant(0, DL));
4126
4127   EVT VecVT;
4128   uint64_t EltMask;
4129   SDValue VecVal1, VecVal2;
4130
4131   auto setVecVal = [&] (int Idx) {
4132     if (!VT.isVector()) {
4133       VecVal1 = DAG.getTargetInsertSubreg(Idx, DL, VecVT,
4134                                           DAG.getUNDEF(VecVT), In1);
4135       VecVal2 = DAG.getTargetInsertSubreg(Idx, DL, VecVT,
4136                                           DAG.getUNDEF(VecVT), In2);
4137     } else {
4138       VecVal1 = DAG.getNode(ISD::BITCAST, DL, VecVT, In1);
4139       VecVal2 = DAG.getNode(ISD::BITCAST, DL, VecVT, In2);
4140     }
4141   };
4142
4143   if (VT == MVT::f32 || VT == MVT::v2f32 || VT == MVT::v4f32) {
4144     VecVT = (VT == MVT::v2f32 ? MVT::v2i32 : MVT::v4i32);
4145     EltMask = 0x80000000ULL;
4146     setVecVal(AArch64::ssub);
4147   } else if (VT == MVT::f64 || VT == MVT::v2f64) {
4148     VecVT = MVT::v2i64;
4149
4150     // We want to materialize a mask with the high bit set, but the AdvSIMD
4151     // immediate moves cannot materialize that in a single instruction for
4152     // 64-bit elements. Instead, materialize zero and then negate it.
4153     EltMask = 0;
4154
4155     setVecVal(AArch64::dsub);
4156   } else if (VT == MVT::f16 || VT == MVT::v4f16 || VT == MVT::v8f16) {
4157     VecVT = (VT == MVT::v4f16 ? MVT::v4i16 : MVT::v8i16);
4158     EltMask = 0x8000ULL;
4159     setVecVal(AArch64::hsub);
4160   } else {
4161     llvm_unreachable("Invalid type for copysign!");
4162   }
4163
4164   SDValue BuildVec = DAG.getConstant(EltMask, DL, VecVT);
4165
4166   // If we couldn't materialize the mask above, then the mask vector will be
4167   // the zero vector, and we need to negate it here.
4168   if (VT == MVT::f64 || VT == MVT::v2f64) {
4169     BuildVec = DAG.getNode(ISD::BITCAST, DL, MVT::v2f64, BuildVec);
4170     BuildVec = DAG.getNode(ISD::FNEG, DL, MVT::v2f64, BuildVec);
4171     BuildVec = DAG.getNode(ISD::BITCAST, DL, MVT::v2i64, BuildVec);
4172   }
4173
4174   SDValue Sel =
4175       DAG.getNode(AArch64ISD::BIT, DL, VecVT, VecVal1, VecVal2, BuildVec);
4176
4177   if (VT == MVT::f16)
4178     return DAG.getTargetExtractSubreg(AArch64::hsub, DL, VT, Sel);
4179   if (VT == MVT::f32)
4180     return DAG.getTargetExtractSubreg(AArch64::ssub, DL, VT, Sel);
4181   else if (VT == MVT::f64)
4182     return DAG.getTargetExtractSubreg(AArch64::dsub, DL, VT, Sel);
4183   else
4184     return DAG.getNode(ISD::BITCAST, DL, VT, Sel);
4185 }
4186
4187 SDValue AArch64TargetLowering::LowerCTPOP(SDValue Op, SelectionDAG &DAG) const {
4188   if (DAG.getMachineFunction().getFunction().hasFnAttribute(
4189           Attribute::NoImplicitFloat))
4190     return SDValue();
4191
4192   if (!Subtarget->hasNEON())
4193     return SDValue();
4194
4195   // While there is no integer popcount instruction, it can
4196   // be more efficiently lowered to the following sequence that uses
4197   // AdvSIMD registers/instructions as long as the copies to/from
4198   // the AdvSIMD registers are cheap.
4199   //  FMOV    D0, X0        // copy 64-bit int to vector, high bits zero'd
4200   //  CNT     V0.8B, V0.8B  // 8xbyte pop-counts
4201   //  ADDV    B0, V0.8B     // sum 8xbyte pop-counts
4202   //  UMOV    X0, V0.B[0]   // copy byte result back to integer reg
4203   SDValue Val = Op.getOperand(0);
4204   SDLoc DL(Op);
4205   EVT VT = Op.getValueType();
4206
4207   if (VT == MVT::i32)
4208     Val = DAG.getNode(ISD::ZERO_EXTEND, DL, MVT::i64, Val);
4209   Val = DAG.getNode(ISD::BITCAST, DL, MVT::v8i8, Val);
4210
4211   SDValue CtPop = DAG.getNode(ISD::CTPOP, DL, MVT::v8i8, Val);
4212   SDValue UaddLV = DAG.getNode(
4213       ISD::INTRINSIC_WO_CHAIN, DL, MVT::i32,
4214       DAG.getConstant(Intrinsic::aarch64_neon_uaddlv, DL, MVT::i32), CtPop);
4215
4216   if (VT == MVT::i64)
4217     UaddLV = DAG.getNode(ISD::ZERO_EXTEND, DL, MVT::i64, UaddLV);
4218   return UaddLV;
4219 }
4220
4221 SDValue AArch64TargetLowering::LowerSETCC(SDValue Op, SelectionDAG &DAG) const {
4222
4223   if (Op.getValueType().isVector())
4224     return LowerVSETCC(Op, DAG);
4225
4226   SDValue LHS = Op.getOperand(0);
4227   SDValue RHS = Op.getOperand(1);
4228   ISD::CondCode CC = cast<CondCodeSDNode>(Op.getOperand(2))->get();
4229   SDLoc dl(Op);
4230
4231   // We chose ZeroOrOneBooleanContents, so use zero and one.
4232   EVT VT = Op.getValueType();
4233   SDValue TVal = DAG.getConstant(1, dl, VT);
4234   SDValue FVal = DAG.getConstant(0, dl, VT);
4235
4236   // Handle f128 first, since one possible outcome is a normal integer
4237   // comparison which gets picked up by the next if statement.
4238   if (LHS.getValueType() == MVT::f128) {
4239     softenSetCCOperands(DAG, MVT::f128, LHS, RHS, CC, dl);
4240
4241     // If softenSetCCOperands returned a scalar, use it.
4242     if (!RHS.getNode()) {
4243       assert(LHS.getValueType() == Op.getValueType() &&
4244              "Unexpected setcc expansion!");
4245       return LHS;
4246     }
4247   }
4248
4249   if (LHS.getValueType().isInteger()) {
4250     SDValue CCVal;
4251     SDValue Cmp =
4252         getAArch64Cmp(LHS, RHS, ISD::getSetCCInverse(CC, true), CCVal, DAG, dl);
4253
4254     // Note that we inverted the condition above, so we reverse the order of
4255     // the true and false operands here.  This will allow the setcc to be
4256     // matched to a single CSINC instruction.
4257     return DAG.getNode(AArch64ISD::CSEL, dl, VT, FVal, TVal, CCVal, Cmp);
4258   }
4259
4260   // Now we know we're dealing with FP values.
4261   assert(LHS.getValueType() == MVT::f16 || LHS.getValueType() == MVT::f32 ||
4262          LHS.getValueType() == MVT::f64);
4263
4264   // If that fails, we'll need to perform an FCMP + CSEL sequence.  Go ahead
4265   // and do the comparison.
4266   SDValue Cmp = emitComparison(LHS, RHS, CC, dl, DAG);
4267
4268   AArch64CC::CondCode CC1, CC2;
4269   changeFPCCToAArch64CC(CC, CC1, CC2);
4270   if (CC2 == AArch64CC::AL) {
4271     changeFPCCToAArch64CC(ISD::getSetCCInverse(CC, false), CC1, CC2);
4272     SDValue CC1Val = DAG.getConstant(CC1, dl, MVT::i32);
4273
4274     // Note that we inverted the condition above, so we reverse the order of
4275     // the true and false operands here.  This will allow the setcc to be
4276     // matched to a single CSINC instruction.
4277     return DAG.getNode(AArch64ISD::CSEL, dl, VT, FVal, TVal, CC1Val, Cmp);
4278   } else {
4279     // Unfortunately, the mapping of LLVM FP CC's onto AArch64 CC's isn't
4280     // totally clean.  Some of them require two CSELs to implement.  As is in
4281     // this case, we emit the first CSEL and then emit a second using the output
4282     // of the first as the RHS.  We're effectively OR'ing the two CC's together.
4283
4284     // FIXME: It would be nice if we could match the two CSELs to two CSINCs.
4285     SDValue CC1Val = DAG.getConstant(CC1, dl, MVT::i32);
4286     SDValue CS1 =
4287         DAG.getNode(AArch64ISD::CSEL, dl, VT, TVal, FVal, CC1Val, Cmp);
4288
4289     SDValue CC2Val = DAG.getConstant(CC2, dl, MVT::i32);
4290     return DAG.getNode(AArch64ISD::CSEL, dl, VT, TVal, CS1, CC2Val, Cmp);
4291   }
4292 }
4293
4294 SDValue AArch64TargetLowering::LowerSELECT_CC(ISD::CondCode CC, SDValue LHS,
4295                                               SDValue RHS, SDValue TVal,
4296                                               SDValue FVal, const SDLoc &dl,
4297                                               SelectionDAG &DAG) const {
4298   // Handle f128 first, because it will result in a comparison of some RTLIB
4299   // call result against zero.
4300   if (LHS.getValueType() == MVT::f128) {
4301     softenSetCCOperands(DAG, MVT::f128, LHS, RHS, CC, dl);
4302
4303     // If softenSetCCOperands returned a scalar, we need to compare the result
4304     // against zero to select between true and false values.
4305     if (!RHS.getNode()) {
4306       RHS = DAG.getConstant(0, dl, LHS.getValueType());
4307       CC = ISD::SETNE;
4308     }
4309   }
4310
4311   // Also handle f16, for which we need to do a f32 comparison.
4312   if (LHS.getValueType() == MVT::f16 && !Subtarget->hasFullFP16()) {
4313     LHS = DAG.getNode(ISD::FP_EXTEND, dl, MVT::f32, LHS);
4314     RHS = DAG.getNode(ISD::FP_EXTEND, dl, MVT::f32, RHS);
4315   }
4316
4317   // Next, handle integers.
4318   if (LHS.getValueType().isInteger()) {
4319     assert((LHS.getValueType() == RHS.getValueType()) &&
4320            (LHS.getValueType() == MVT::i32 || LHS.getValueType() == MVT::i64));
4321
4322     unsigned Opcode = AArch64ISD::CSEL;
4323
4324     // If both the TVal and the FVal are constants, see if we can swap them in
4325     // order to for a CSINV or CSINC out of them.
4326     ConstantSDNode *CFVal = dyn_cast<ConstantSDNode>(FVal);
4327     ConstantSDNode *CTVal = dyn_cast<ConstantSDNode>(TVal);
4328
4329     if (CTVal && CFVal && CTVal->isAllOnesValue() && CFVal->isNullValue()) {
4330       std::swap(TVal, FVal);
4331       std::swap(CTVal, CFVal);
4332       CC = ISD::getSetCCInverse(CC, true);
4333     } else if (CTVal && CFVal && CTVal->isOne() && CFVal->isNullValue()) {
4334       std::swap(TVal, FVal);
4335       std::swap(CTVal, CFVal);
4336       CC = ISD::getSetCCInverse(CC, true);
4337     } else if (TVal.getOpcode() == ISD::XOR) {
4338       // If TVal is a NOT we want to swap TVal and FVal so that we can match
4339       // with a CSINV rather than a CSEL.
4340       if (isAllOnesConstant(TVal.getOperand(1))) {
4341         std::swap(TVal, FVal);
4342         std::swap(CTVal, CFVal);
4343         CC = ISD::getSetCCInverse(CC, true);
4344       }
4345     } else if (TVal.getOpcode() == ISD::SUB) {
4346       // If TVal is a negation (SUB from 0) we want to swap TVal and FVal so
4347       // that we can match with a CSNEG rather than a CSEL.
4348       if (isNullConstant(TVal.getOperand(0))) {
4349         std::swap(TVal, FVal);
4350         std::swap(CTVal, CFVal);
4351         CC = ISD::getSetCCInverse(CC, true);
4352       }
4353     } else if (CTVal && CFVal) {
4354       const int64_t TrueVal = CTVal->getSExtValue();
4355       const int64_t FalseVal = CFVal->getSExtValue();
4356       bool Swap = false;
4357
4358       // If both TVal and FVal are constants, see if FVal is the
4359       // inverse/negation/increment of TVal and generate a CSINV/CSNEG/CSINC
4360       // instead of a CSEL in that case.
4361       if (TrueVal == ~FalseVal) {
4362         Opcode = AArch64ISD::CSINV;
4363       } else if (TrueVal == -FalseVal) {
4364         Opcode = AArch64ISD::CSNEG;
4365       } else if (TVal.getValueType() == MVT::i32) {
4366         // If our operands are only 32-bit wide, make sure we use 32-bit
4367         // arithmetic for the check whether we can use CSINC. This ensures that
4368         // the addition in the check will wrap around properly in case there is
4369         // an overflow (which would not be the case if we do the check with
4370         // 64-bit arithmetic).
4371         const uint32_t TrueVal32 = CTVal->getZExtValue();
4372         const uint32_t FalseVal32 = CFVal->getZExtValue();
4373
4374         if ((TrueVal32 == FalseVal32 + 1) || (TrueVal32 + 1 == FalseVal32)) {
4375           Opcode = AArch64ISD::CSINC;
4376
4377           if (TrueVal32 > FalseVal32) {
4378             Swap = true;
4379           }
4380         }
4381         // 64-bit check whether we can use CSINC.
4382       } else if ((TrueVal == FalseVal + 1) || (TrueVal + 1 == FalseVal)) {
4383         Opcode = AArch64ISD::CSINC;
4384
4385         if (TrueVal > FalseVal) {
4386           Swap = true;
4387         }
4388       }
4389
4390       // Swap TVal and FVal if necessary.
4391       if (Swap) {
4392         std::swap(TVal, FVal);
4393         std::swap(CTVal, CFVal);
4394         CC = ISD::getSetCCInverse(CC, true);
4395       }
4396
4397       if (Opcode != AArch64ISD::CSEL) {
4398         // Drop FVal since we can get its value by simply inverting/negating
4399         // TVal.
4400         FVal = TVal;
4401       }
4402     }
4403
4404     // Avoid materializing a constant when possible by reusing a known value in
4405     // a register.  However, don't perform this optimization if the known value
4406     // is one, zero or negative one in the case of a CSEL.  We can always
4407     // materialize these values using CSINC, CSEL and CSINV with wzr/xzr as the
4408     // FVal, respectively.
4409     ConstantSDNode *RHSVal = dyn_cast<ConstantSDNode>(RHS);
4410     if (Opcode == AArch64ISD::CSEL && RHSVal && !RHSVal->isOne() &&
4411         !RHSVal->isNullValue() && !RHSVal->isAllOnesValue()) {
4412       AArch64CC::CondCode AArch64CC = changeIntCCToAArch64CC(CC);
4413       // Transform "a == C ? C : x" to "a == C ? a : x" and "a != C ? x : C" to
4414       // "a != C ? x : a" to avoid materializing C.
4415       if (CTVal && CTVal == RHSVal && AArch64CC == AArch64CC::EQ)
4416         TVal = LHS;
4417       else if (CFVal && CFVal == RHSVal && AArch64CC == AArch64CC::NE)
4418         FVal = LHS;
4419     } else if (Opcode == AArch64ISD::CSNEG && RHSVal && RHSVal->isOne()) {
4420       assert (CTVal && CFVal && "Expected constant operands for CSNEG.");
4421       // Use a CSINV to transform "a == C ? 1 : -1" to "a == C ? a : -1" to
4422       // avoid materializing C.
4423       AArch64CC::CondCode AArch64CC = changeIntCCToAArch64CC(CC);
4424       if (CTVal == RHSVal && AArch64CC == AArch64CC::EQ) {
4425         Opcode = AArch64ISD::CSINV;
4426         TVal = LHS;
4427         FVal = DAG.getConstant(0, dl, FVal.getValueType());
4428       }
4429     }
4430
4431     SDValue CCVal;
4432     SDValue Cmp = getAArch64Cmp(LHS, RHS, CC, CCVal, DAG, dl);
4433     EVT VT = TVal.getValueType();
4434     return DAG.getNode(Opcode, dl, VT, TVal, FVal, CCVal, Cmp);
4435   }
4436
4437   // Now we know we're dealing with FP values.
4438   assert(LHS.getValueType() == MVT::f16 || LHS.getValueType() == MVT::f32 ||
4439          LHS.getValueType() == MVT::f64);
4440   assert(LHS.getValueType() == RHS.getValueType());
4441   EVT VT = TVal.getValueType();
4442   SDValue Cmp = emitComparison(LHS, RHS, CC, dl, DAG);
4443
4444   // Unfortunately, the mapping of LLVM FP CC's onto AArch64 CC's isn't totally
4445   // clean.  Some of them require two CSELs to implement.
4446   AArch64CC::CondCode CC1, CC2;
4447   changeFPCCToAArch64CC(CC, CC1, CC2);
4448
4449   if (DAG.getTarget().Options.UnsafeFPMath) {
4450     // Transform "a == 0.0 ? 0.0 : x" to "a == 0.0 ? a : x" and
4451     // "a != 0.0 ? x : 0.0" to "a != 0.0 ? x : a" to avoid materializing 0.0.
4452     ConstantFPSDNode *RHSVal = dyn_cast<ConstantFPSDNode>(RHS);
4453     if (RHSVal && RHSVal->isZero()) {
4454       ConstantFPSDNode *CFVal = dyn_cast<ConstantFPSDNode>(FVal);
4455       ConstantFPSDNode *CTVal = dyn_cast<ConstantFPSDNode>(TVal);
4456
4457       if ((CC == ISD::SETEQ || CC == ISD::SETOEQ || CC == ISD::SETUEQ) &&
4458           CTVal && CTVal->isZero() && TVal.getValueType() == LHS.getValueType())
4459         TVal = LHS;
4460       else if ((CC == ISD::SETNE || CC == ISD::SETONE || CC == ISD::SETUNE) &&
4461                CFVal && CFVal->isZero() &&
4462                FVal.getValueType() == LHS.getValueType())
4463         FVal = LHS;
4464     }
4465   }
4466
4467   // Emit first, and possibly only, CSEL.
4468   SDValue CC1Val = DAG.getConstant(CC1, dl, MVT::i32);
4469   SDValue CS1 = DAG.getNode(AArch64ISD::CSEL, dl, VT, TVal, FVal, CC1Val, Cmp);
4470
4471   // If we need a second CSEL, emit it, using the output of the first as the
4472   // RHS.  We're effectively OR'ing the two CC's together.
4473   if (CC2 != AArch64CC::AL) {
4474     SDValue CC2Val = DAG.getConstant(CC2, dl, MVT::i32);
4475     return DAG.getNode(AArch64ISD::CSEL, dl, VT, TVal, CS1, CC2Val, Cmp);
4476   }
4477
4478   // Otherwise, return the output of the first CSEL.
4479   return CS1;
4480 }
4481
4482 SDValue AArch64TargetLowering::LowerSELECT_CC(SDValue Op,
4483                                               SelectionDAG &DAG) const {
4484   ISD::CondCode CC = cast<CondCodeSDNode>(Op.getOperand(4))->get();
4485   SDValue LHS = Op.getOperand(0);
4486   SDValue RHS = Op.getOperand(1);
4487   SDValue TVal = Op.getOperand(2);
4488   SDValue FVal = Op.getOperand(3);
4489   SDLoc DL(Op);
4490   return LowerSELECT_CC(CC, LHS, RHS, TVal, FVal, DL, DAG);
4491 }
4492
4493 SDValue AArch64TargetLowering::LowerSELECT(SDValue Op,
4494                                            SelectionDAG &DAG) const {
4495   SDValue CCVal = Op->getOperand(0);
4496   SDValue TVal = Op->getOperand(1);
4497   SDValue FVal = Op->getOperand(2);
4498   SDLoc DL(Op);
4499
4500   // Optimize {s|u}{add|sub|mul}.with.overflow feeding into a select
4501   // instruction.
4502   if (isOverflowIntrOpRes(CCVal)) {
4503     // Only lower legal XALUO ops.
4504     if (!DAG.getTargetLoweringInfo().isTypeLegal(CCVal->getValueType(0)))
4505       return SDValue();
4506
4507     AArch64CC::CondCode OFCC;
4508     SDValue Value, Overflow;
4509     std::tie(Value, Overflow) = getAArch64XALUOOp(OFCC, CCVal.getValue(0), DAG);
4510     SDValue CCVal = DAG.getConstant(OFCC, DL, MVT::i32);
4511
4512     return DAG.getNode(AArch64ISD::CSEL, DL, Op.getValueType(), TVal, FVal,
4513                        CCVal, Overflow);
4514   }
4515
4516   // Lower it the same way as we would lower a SELECT_CC node.
4517   ISD::CondCode CC;
4518   SDValue LHS, RHS;
4519   if (CCVal.getOpcode() == ISD::SETCC) {
4520     LHS = CCVal.getOperand(0);
4521     RHS = CCVal.getOperand(1);
4522     CC = cast<CondCodeSDNode>(CCVal->getOperand(2))->get();
4523   } else {
4524     LHS = CCVal;
4525     RHS = DAG.getConstant(0, DL, CCVal.getValueType());
4526     CC = ISD::SETNE;
4527   }
4528   return LowerSELECT_CC(CC, LHS, RHS, TVal, FVal, DL, DAG);
4529 }
4530
4531 SDValue AArch64TargetLowering::LowerJumpTable(SDValue Op,
4532                                               SelectionDAG &DAG) const {
4533   // Jump table entries as PC relative offsets. No additional tweaking
4534   // is necessary here. Just get the address of the jump table.
4535   JumpTableSDNode *JT = cast<JumpTableSDNode>(Op);
4536
4537   if (getTargetMachine().getCodeModel() == CodeModel::Large &&
4538       !Subtarget->isTargetMachO()) {
4539     return getAddrLarge(JT, DAG);
4540   }
4541   return getAddr(JT, DAG);
4542 }
4543
4544 SDValue AArch64TargetLowering::LowerConstantPool(SDValue Op,
4545                                                  SelectionDAG &DAG) const {
4546   ConstantPoolSDNode *CP = cast<ConstantPoolSDNode>(Op);
4547
4548   if (getTargetMachine().getCodeModel() == CodeModel::Large) {
4549     // Use the GOT for the large code model on iOS.
4550     if (Subtarget->isTargetMachO()) {
4551       return getGOT(CP, DAG);
4552     }
4553     return getAddrLarge(CP, DAG);
4554   } else {
4555     return getAddr(CP, DAG);
4556   }
4557 }
4558
4559 SDValue AArch64TargetLowering::LowerBlockAddress(SDValue Op,
4560                                                SelectionDAG &DAG) const {
4561   BlockAddressSDNode *BA = cast<BlockAddressSDNode>(Op);
4562   if (getTargetMachine().getCodeModel() == CodeModel::Large &&
4563       !Subtarget->isTargetMachO()) {
4564     return getAddrLarge(BA, DAG);
4565   } else {
4566     return getAddr(BA, DAG);
4567   }
4568 }
4569
4570 SDValue AArch64TargetLowering::LowerDarwin_VASTART(SDValue Op,
4571                                                  SelectionDAG &DAG) const {
4572   AArch64FunctionInfo *FuncInfo =
4573       DAG.getMachineFunction().getInfo<AArch64FunctionInfo>();
4574
4575   SDLoc DL(Op);
4576   SDValue FR = DAG.getFrameIndex(FuncInfo->getVarArgsStackIndex(),
4577                                  getPointerTy(DAG.getDataLayout()));
4578   const Value *SV = cast<SrcValueSDNode>(Op.getOperand(2))->getValue();
4579   return DAG.getStore(Op.getOperand(0), DL, FR, Op.getOperand(1),
4580                       MachinePointerInfo(SV));
4581 }
4582
4583 SDValue AArch64TargetLowering::LowerWin64_VASTART(SDValue Op,
4584                                                   SelectionDAG &DAG) const {
4585   AArch64FunctionInfo *FuncInfo =
4586       DAG.getMachineFunction().getInfo<AArch64FunctionInfo>();
4587
4588   SDLoc DL(Op);
4589   SDValue FR = DAG.getFrameIndex(FuncInfo->getVarArgsGPRSize() > 0
4590                                      ? FuncInfo->getVarArgsGPRIndex()
4591                                      : FuncInfo->getVarArgsStackIndex(),
4592                                  getPointerTy(DAG.getDataLayout()));
4593   const Value *SV = cast<SrcValueSDNode>(Op.getOperand(2))->getValue();
4594   return DAG.getStore(Op.getOperand(0), DL, FR, Op.getOperand(1),
4595                       MachinePointerInfo(SV));
4596 }
4597
4598 SDValue AArch64TargetLowering::LowerAAPCS_VASTART(SDValue Op,
4599                                                 SelectionDAG &DAG) const {
4600   // The layout of the va_list struct is specified in the AArch64 Procedure Call
4601   // Standard, section B.3.
4602   MachineFunction &MF = DAG.getMachineFunction();
4603   AArch64FunctionInfo *FuncInfo = MF.getInfo<AArch64FunctionInfo>();
4604   auto PtrVT = getPointerTy(DAG.getDataLayout());
4605   SDLoc DL(Op);
4606
4607   SDValue Chain = Op.getOperand(0);
4608   SDValue VAList = Op.getOperand(1);
4609   const Value *SV = cast<SrcValueSDNode>(Op.getOperand(2))->getValue();
4610   SmallVector<SDValue, 4> MemOps;
4611
4612   // void *__stack at offset 0
4613   SDValue Stack = DAG.getFrameIndex(FuncInfo->getVarArgsStackIndex(), PtrVT);
4614   MemOps.push_back(DAG.getStore(Chain, DL, Stack, VAList,
4615                                 MachinePointerInfo(SV), /* Alignment = */ 8));
4616
4617   // void *__gr_top at offset 8
4618   int GPRSize = FuncInfo->getVarArgsGPRSize();
4619   if (GPRSize > 0) {
4620     SDValue GRTop, GRTopAddr;
4621
4622     GRTopAddr =
4623         DAG.getNode(ISD::ADD, DL, PtrVT, VAList, DAG.getConstant(8, DL, PtrVT));
4624
4625     GRTop = DAG.getFrameIndex(FuncInfo->getVarArgsGPRIndex(), PtrVT);
4626     GRTop = DAG.getNode(ISD::ADD, DL, PtrVT, GRTop,
4627                         DAG.getConstant(GPRSize, DL, PtrVT));
4628
4629     MemOps.push_back(DAG.getStore(Chain, DL, GRTop, GRTopAddr,
4630                                   MachinePointerInfo(SV, 8),
4631                                   /* Alignment = */ 8));
4632   }
4633
4634   // void *__vr_top at offset 16
4635   int FPRSize = FuncInfo->getVarArgsFPRSize();
4636   if (FPRSize > 0) {
4637     SDValue VRTop, VRTopAddr;
4638     VRTopAddr = DAG.getNode(ISD::ADD, DL, PtrVT, VAList,
4639                             DAG.getConstant(16, DL, PtrVT));
4640
4641     VRTop = DAG.getFrameIndex(FuncInfo->getVarArgsFPRIndex(), PtrVT);
4642     VRTop = DAG.getNode(ISD::ADD, DL, PtrVT, VRTop,
4643                         DAG.getConstant(FPRSize, DL, PtrVT));
4644
4645     MemOps.push_back(DAG.getStore(Chain, DL, VRTop, VRTopAddr,
4646                                   MachinePointerInfo(SV, 16),
4647                                   /* Alignment = */ 8));
4648   }
4649
4650   // int __gr_offs at offset 24
4651   SDValue GROffsAddr =
4652       DAG.getNode(ISD::ADD, DL, PtrVT, VAList, DAG.getConstant(24, DL, PtrVT));
4653   MemOps.push_back(DAG.getStore(
4654       Chain, DL, DAG.getConstant(-GPRSize, DL, MVT::i32), GROffsAddr,
4655       MachinePointerInfo(SV, 24), /* Alignment = */ 4));
4656
4657   // int __vr_offs at offset 28
4658   SDValue VROffsAddr =
4659       DAG.getNode(ISD::ADD, DL, PtrVT, VAList, DAG.getConstant(28, DL, PtrVT));
4660   MemOps.push_back(DAG.getStore(
4661       Chain, DL, DAG.getConstant(-FPRSize, DL, MVT::i32), VROffsAddr,
4662       MachinePointerInfo(SV, 28), /* Alignment = */ 4));
4663
4664   return DAG.getNode(ISD::TokenFactor, DL, MVT::Other, MemOps);
4665 }
4666
4667 SDValue AArch64TargetLowering::LowerVASTART(SDValue Op,
4668                                             SelectionDAG &DAG) const {
4669   MachineFunction &MF = DAG.getMachineFunction();
4670
4671   if (Subtarget->isCallingConvWin64(MF.getFunction().getCallingConv()))
4672     return LowerWin64_VASTART(Op, DAG);
4673   else if (Subtarget->isTargetDarwin())
4674     return LowerDarwin_VASTART(Op, DAG);
4675   else
4676     return LowerAAPCS_VASTART(Op, DAG);
4677 }
4678
4679 SDValue AArch64TargetLowering::LowerVACOPY(SDValue Op,
4680                                            SelectionDAG &DAG) const {
4681   // AAPCS has three pointers and two ints (= 32 bytes), Darwin has single
4682   // pointer.
4683   SDLoc DL(Op);
4684   unsigned VaListSize =
4685       Subtarget->isTargetDarwin() || Subtarget->isTargetWindows() ? 8 : 32;
4686   const Value *DestSV = cast<SrcValueSDNode>(Op.getOperand(3))->getValue();
4687   const Value *SrcSV = cast<SrcValueSDNode>(Op.getOperand(4))->getValue();
4688
4689   return DAG.getMemcpy(Op.getOperand(0), DL, Op.getOperand(1),
4690                        Op.getOperand(2),
4691                        DAG.getConstant(VaListSize, DL, MVT::i32),
4692                        8, false, false, false, MachinePointerInfo(DestSV),
4693                        MachinePointerInfo(SrcSV));
4694 }
4695
4696 SDValue AArch64TargetLowering::LowerVAARG(SDValue Op, SelectionDAG &DAG) const {
4697   assert(Subtarget->isTargetDarwin() &&
4698          "automatic va_arg instruction only works on Darwin");
4699
4700   const Value *V = cast<SrcValueSDNode>(Op.getOperand(2))->getValue();
4701   EVT VT = Op.getValueType();
4702   SDLoc DL(Op);
4703   SDValue Chain = Op.getOperand(0);
4704   SDValue Addr = Op.getOperand(1);
4705   unsigned Align = Op.getConstantOperandVal(3);
4706   auto PtrVT = getPointerTy(DAG.getDataLayout());
4707
4708   SDValue VAList = DAG.getLoad(PtrVT, DL, Chain, Addr, MachinePointerInfo(V));
4709   Chain = VAList.getValue(1);
4710
4711   if (Align > 8) {
4712     assert(((Align & (Align - 1)) == 0) && "Expected Align to be a power of 2");
4713     VAList = DAG.getNode(ISD::ADD, DL, PtrVT, VAList,
4714                          DAG.getConstant(Align - 1, DL, PtrVT));
4715     VAList = DAG.getNode(ISD::AND, DL, PtrVT, VAList,
4716                          DAG.getConstant(-(int64_t)Align, DL, PtrVT));
4717   }
4718
4719   Type *ArgTy = VT.getTypeForEVT(*DAG.getContext());
4720   uint64_t ArgSize = DAG.getDataLayout().getTypeAllocSize(ArgTy);
4721
4722   // Scalar integer and FP values smaller than 64 bits are implicitly extended
4723   // up to 64 bits.  At the very least, we have to increase the striding of the
4724   // vaargs list to match this, and for FP values we need to introduce
4725   // FP_ROUND nodes as well.
4726   if (VT.isInteger() && !VT.isVector())
4727     ArgSize = 8;
4728   bool NeedFPTrunc = false;
4729   if (VT.isFloatingPoint() && !VT.isVector() && VT != MVT::f64) {
4730     ArgSize = 8;
4731     NeedFPTrunc = true;
4732   }
4733
4734   // Increment the pointer, VAList, to the next vaarg
4735   SDValue VANext = DAG.getNode(ISD::ADD, DL, PtrVT, VAList,
4736                                DAG.getConstant(ArgSize, DL, PtrVT));
4737   // Store the incremented VAList to the legalized pointer
4738   SDValue APStore =
4739       DAG.getStore(Chain, DL, VANext, Addr, MachinePointerInfo(V));
4740
4741   // Load the actual argument out of the pointer VAList
4742   if (NeedFPTrunc) {
4743     // Load the value as an f64.
4744     SDValue WideFP =
4745         DAG.getLoad(MVT::f64, DL, APStore, VAList, MachinePointerInfo());
4746     // Round the value down to an f32.
4747     SDValue NarrowFP = DAG.getNode(ISD::FP_ROUND, DL, VT, WideFP.getValue(0),
4748                                    DAG.getIntPtrConstant(1, DL));
4749     SDValue Ops[] = { NarrowFP, WideFP.getValue(1) };
4750     // Merge the rounded value with the chain output of the load.
4751     return DAG.getMergeValues(Ops, DL);
4752   }
4753
4754   return DAG.getLoad(VT, DL, APStore, VAList, MachinePointerInfo());
4755 }
4756
4757 SDValue AArch64TargetLowering::LowerFRAMEADDR(SDValue Op,
4758                                               SelectionDAG &DAG) const {
4759   MachineFrameInfo &MFI = DAG.getMachineFunction().getFrameInfo();
4760   MFI.setFrameAddressIsTaken(true);
4761
4762   EVT VT = Op.getValueType();
4763   SDLoc DL(Op);
4764   unsigned Depth = cast<ConstantSDNode>(Op.getOperand(0))->getZExtValue();
4765   SDValue FrameAddr =
4766       DAG.getCopyFromReg(DAG.getEntryNode(), DL, AArch64::FP, VT);
4767   while (Depth--)
4768     FrameAddr = DAG.getLoad(VT, DL, DAG.getEntryNode(), FrameAddr,
4769                             MachinePointerInfo());
4770   return FrameAddr;
4771 }
4772
4773 // FIXME? Maybe this could be a TableGen attribute on some registers and
4774 // this table could be generated automatically from RegInfo.
4775 unsigned AArch64TargetLowering::getRegisterByName(const char* RegName, EVT VT,
4776                                                   SelectionDAG &DAG) const {
4777   unsigned Reg = StringSwitch<unsigned>(RegName)
4778                        .Case("sp", AArch64::SP)
4779                        .Case("x18", AArch64::X18)
4780                        .Case("w18", AArch64::W18)
4781                        .Default(0);
4782   if ((Reg == AArch64::X18 || Reg == AArch64::W18) &&
4783       !Subtarget->isX18Reserved())
4784     Reg = 0;
4785   if (Reg)
4786     return Reg;
4787   report_fatal_error(Twine("Invalid register name \""
4788                               + StringRef(RegName)  + "\"."));
4789 }
4790
4791 SDValue AArch64TargetLowering::LowerRETURNADDR(SDValue Op,
4792                                                SelectionDAG &DAG) const {
4793   MachineFunction &MF = DAG.getMachineFunction();
4794   MachineFrameInfo &MFI = MF.getFrameInfo();
4795   MFI.setReturnAddressIsTaken(true);
4796
4797   EVT VT = Op.getValueType();
4798   SDLoc DL(Op);
4799   unsigned Depth = cast<ConstantSDNode>(Op.getOperand(0))->getZExtValue();
4800   if (Depth) {
4801     SDValue FrameAddr = LowerFRAMEADDR(Op, DAG);
4802     SDValue Offset = DAG.getConstant(8, DL, getPointerTy(DAG.getDataLayout()));
4803     return DAG.getLoad(VT, DL, DAG.getEntryNode(),
4804                        DAG.getNode(ISD::ADD, DL, VT, FrameAddr, Offset),
4805                        MachinePointerInfo());
4806   }
4807
4808   // Return LR, which contains the return address. Mark it an implicit live-in.
4809   unsigned Reg = MF.addLiveIn(AArch64::LR, &AArch64::GPR64RegClass);
4810   return DAG.getCopyFromReg(DAG.getEntryNode(), DL, Reg, VT);
4811 }
4812
4813 /// LowerShiftRightParts - Lower SRA_PARTS, which returns two
4814 /// i64 values and take a 2 x i64 value to shift plus a shift amount.
4815 SDValue AArch64TargetLowering::LowerShiftRightParts(SDValue Op,
4816                                                     SelectionDAG &DAG) const {
4817   assert(Op.getNumOperands() == 3 && "Not a double-shift!");
4818   EVT VT = Op.getValueType();
4819   unsigned VTBits = VT.getSizeInBits();
4820   SDLoc dl(Op);
4821   SDValue ShOpLo = Op.getOperand(0);
4822   SDValue ShOpHi = Op.getOperand(1);
4823   SDValue ShAmt = Op.getOperand(2);
4824   unsigned Opc = (Op.getOpcode() == ISD::SRA_PARTS) ? ISD::SRA : ISD::SRL;
4825
4826   assert(Op.getOpcode() == ISD::SRA_PARTS || Op.getOpcode() == ISD::SRL_PARTS);
4827
4828   SDValue RevShAmt = DAG.getNode(ISD::SUB, dl, MVT::i64,
4829                                  DAG.getConstant(VTBits, dl, MVT::i64), ShAmt);
4830   SDValue HiBitsForLo = DAG.getNode(ISD::SHL, dl, VT, ShOpHi, RevShAmt);
4831
4832   // Unfortunately, if ShAmt == 0, we just calculated "(SHL ShOpHi, 64)" which
4833   // is "undef". We wanted 0, so CSEL it directly.
4834   SDValue Cmp = emitComparison(ShAmt, DAG.getConstant(0, dl, MVT::i64),
4835                                ISD::SETEQ, dl, DAG);
4836   SDValue CCVal = DAG.getConstant(AArch64CC::EQ, dl, MVT::i32);
4837   HiBitsForLo =
4838       DAG.getNode(AArch64ISD::CSEL, dl, VT, DAG.getConstant(0, dl, MVT::i64),
4839                   HiBitsForLo, CCVal, Cmp);
4840
4841   SDValue ExtraShAmt = DAG.getNode(ISD::SUB, dl, MVT::i64, ShAmt,
4842                                    DAG.getConstant(VTBits, dl, MVT::i64));
4843
4844   SDValue LoBitsForLo = DAG.getNode(ISD::SRL, dl, VT, ShOpLo, ShAmt);
4845   SDValue LoForNormalShift =
4846       DAG.getNode(ISD::OR, dl, VT, LoBitsForLo, HiBitsForLo);
4847
4848   Cmp = emitComparison(ExtraShAmt, DAG.getConstant(0, dl, MVT::i64), ISD::SETGE,
4849                        dl, DAG);
4850   CCVal = DAG.getConstant(AArch64CC::GE, dl, MVT::i32);
4851   SDValue LoForBigShift = DAG.getNode(Opc, dl, VT, ShOpHi, ExtraShAmt);
4852   SDValue Lo = DAG.getNode(AArch64ISD::CSEL, dl, VT, LoForBigShift,
4853                            LoForNormalShift, CCVal, Cmp);
4854
4855   // AArch64 shifts larger than the register width are wrapped rather than
4856   // clamped, so we can't just emit "hi >> x".
4857   SDValue HiForNormalShift = DAG.getNode(Opc, dl, VT, ShOpHi, ShAmt);
4858   SDValue HiForBigShift =
4859       Opc == ISD::SRA
4860           ? DAG.getNode(Opc, dl, VT, ShOpHi,
4861                         DAG.getConstant(VTBits - 1, dl, MVT::i64))
4862           : DAG.getConstant(0, dl, VT);
4863   SDValue Hi = DAG.getNode(AArch64ISD::CSEL, dl, VT, HiForBigShift,
4864                            HiForNormalShift, CCVal, Cmp);
4865
4866   SDValue Ops[2] = { Lo, Hi };
4867   return DAG.getMergeValues(Ops, dl);
4868 }
4869
4870 /// LowerShiftLeftParts - Lower SHL_PARTS, which returns two
4871 /// i64 values and take a 2 x i64 value to shift plus a shift amount.
4872 SDValue AArch64TargetLowering::LowerShiftLeftParts(SDValue Op,
4873                                                    SelectionDAG &DAG) const {
4874   assert(Op.getNumOperands() == 3 && "Not a double-shift!");
4875   EVT VT = Op.getValueType();
4876   unsigned VTBits = VT.getSizeInBits();
4877   SDLoc dl(Op);
4878   SDValue ShOpLo = Op.getOperand(0);
4879   SDValue ShOpHi = Op.getOperand(1);
4880   SDValue ShAmt = Op.getOperand(2);
4881
4882   assert(Op.getOpcode() == ISD::SHL_PARTS);
4883   SDValue RevShAmt = DAG.getNode(ISD::SUB, dl, MVT::i64,
4884                                  DAG.getConstant(VTBits, dl, MVT::i64), ShAmt);
4885   SDValue LoBitsForHi = DAG.getNode(ISD::SRL, dl, VT, ShOpLo, RevShAmt);
4886
4887   // Unfortunately, if ShAmt == 0, we just calculated "(SRL ShOpLo, 64)" which
4888   // is "undef". We wanted 0, so CSEL it directly.
4889   SDValue Cmp = emitComparison(ShAmt, DAG.getConstant(0, dl, MVT::i64),
4890                                ISD::SETEQ, dl, DAG);
4891   SDValue CCVal = DAG.getConstant(AArch64CC::EQ, dl, MVT::i32);
4892   LoBitsForHi =
4893       DAG.getNode(AArch64ISD::CSEL, dl, VT, DAG.getConstant(0, dl, MVT::i64),
4894                   LoBitsForHi, CCVal, Cmp);
4895
4896   SDValue ExtraShAmt = DAG.getNode(ISD::SUB, dl, MVT::i64, ShAmt,
4897                                    DAG.getConstant(VTBits, dl, MVT::i64));
4898   SDValue HiBitsForHi = DAG.getNode(ISD::SHL, dl, VT, ShOpHi, ShAmt);
4899   SDValue HiForNormalShift =
4900       DAG.getNode(ISD::OR, dl, VT, LoBitsForHi, HiBitsForHi);
4901
4902   SDValue HiForBigShift = DAG.getNode(ISD::SHL, dl, VT, ShOpLo, ExtraShAmt);
4903
4904   Cmp = emitComparison(ExtraShAmt, DAG.getConstant(0, dl, MVT::i64), ISD::SETGE,
4905                        dl, DAG);
4906   CCVal = DAG.getConstant(AArch64CC::GE, dl, MVT::i32);
4907   SDValue Hi = DAG.getNode(AArch64ISD::CSEL, dl, VT, HiForBigShift,
4908                            HiForNormalShift, CCVal, Cmp);
4909
4910   // AArch64 shifts of larger than register sizes are wrapped rather than
4911   // clamped, so we can't just emit "lo << a" if a is too big.
4912   SDValue LoForBigShift = DAG.getConstant(0, dl, VT);
4913   SDValue LoForNormalShift = DAG.getNode(ISD::SHL, dl, VT, ShOpLo, ShAmt);
4914   SDValue Lo = DAG.getNode(AArch64ISD::CSEL, dl, VT, LoForBigShift,
4915                            LoForNormalShift, CCVal, Cmp);
4916
4917   SDValue Ops[2] = { Lo, Hi };
4918   return DAG.getMergeValues(Ops, dl);
4919 }
4920
4921 bool AArch64TargetLowering::isOffsetFoldingLegal(
4922     const GlobalAddressSDNode *GA) const {
4923   DEBUG(dbgs() << "Skipping offset folding global address: ");
4924   DEBUG(GA->dump());
4925   DEBUG(dbgs() << "AArch64 doesn't support folding offsets into global "
4926         "addresses\n");
4927   return false;
4928 }
4929
4930 bool AArch64TargetLowering::isFPImmLegal(const APFloat &Imm, EVT VT) const {
4931   // We can materialize #0.0 as fmov $Rd, XZR for 64-bit and 32-bit cases.
4932   // FIXME: We should be able to handle f128 as well with a clever lowering.
4933   if (Imm.isPosZero() && (VT == MVT::f16 || VT == MVT::f64 || VT == MVT::f32)) {
4934     DEBUG(dbgs() << "Legal fp imm: materialize 0 using the zero register\n");
4935     return true;
4936   }
4937
4938   StringRef FPType;
4939   bool IsLegal = false;
4940   SmallString<128> ImmStrVal;
4941   Imm.toString(ImmStrVal);
4942
4943   if (VT == MVT::f64) {
4944     FPType = "f64";
4945     IsLegal = AArch64_AM::getFP64Imm(Imm) != -1;
4946   } else if (VT == MVT::f32) {
4947     FPType = "f32";
4948     IsLegal = AArch64_AM::getFP32Imm(Imm) != -1;
4949   } else if (VT == MVT::f16 && Subtarget->hasFullFP16()) {
4950     FPType = "f16";
4951     IsLegal = AArch64_AM::getFP16Imm(Imm) != -1;
4952   }
4953
4954   if (IsLegal) {
4955     DEBUG(dbgs() << "Legal " << FPType << " imm value: " << ImmStrVal << "\n");
4956     return true;
4957   }
4958
4959   if (!FPType.empty())
4960     DEBUG(dbgs() << "Illegal " << FPType << " imm value: " << ImmStrVal << "\n");
4961   else
4962     DEBUG(dbgs() << "Illegal fp imm " << ImmStrVal << ": unsupported fp type\n");
4963
4964   return false;
4965 }
4966
4967 //===----------------------------------------------------------------------===//
4968 //                          AArch64 Optimization Hooks
4969 //===----------------------------------------------------------------------===//
4970
4971 static SDValue getEstimate(const AArch64Subtarget *ST, unsigned Opcode,
4972                            SDValue Operand, SelectionDAG &DAG,
4973                            int &ExtraSteps) {
4974   EVT VT = Operand.getValueType();
4975   if (ST->hasNEON() &&
4976       (VT == MVT::f64 || VT == MVT::v1f64 || VT == MVT::v2f64 ||
4977        VT == MVT::f32 || VT == MVT::v1f32 ||
4978        VT == MVT::v2f32 || VT == MVT::v4f32)) {
4979     if (ExtraSteps == TargetLoweringBase::ReciprocalEstimate::Unspecified)
4980       // For the reciprocal estimates, convergence is quadratic, so the number
4981       // of digits is doubled after each iteration.  In ARMv8, the accuracy of
4982       // the initial estimate is 2^-8.  Thus the number of extra steps to refine
4983       // the result for float (23 mantissa bits) is 2 and for double (52
4984       // mantissa bits) is 3.
4985       ExtraSteps = VT.getScalarType() == MVT::f64 ? 3 : 2;
4986
4987     return DAG.getNode(Opcode, SDLoc(Operand), VT, Operand);
4988   }
4989
4990   return SDValue();
4991 }
4992
4993 SDValue AArch64TargetLowering::getSqrtEstimate(SDValue Operand,
4994                                                SelectionDAG &DAG, int Enabled,
4995                                                int &ExtraSteps,
4996                                                bool &UseOneConst,
4997                                                bool Reciprocal) const {
4998   if (Enabled == ReciprocalEstimate::Enabled ||
4999       (Enabled == ReciprocalEstimate::Unspecified && Subtarget->useRSqrt()))
5000     if (SDValue Estimate = getEstimate(Subtarget, AArch64ISD::FRSQRTE, Operand,
5001                                        DAG, ExtraSteps)) {
5002       SDLoc DL(Operand);
5003       EVT VT = Operand.getValueType();
5004
5005       SDNodeFlags Flags;
5006       Flags.setUnsafeAlgebra(true);
5007
5008       // Newton reciprocal square root iteration: E * 0.5 * (3 - X * E^2)
5009       // AArch64 reciprocal square root iteration instruction: 0.5 * (3 - M * N)
5010       for (int i = ExtraSteps; i > 0; --i) {
5011         SDValue Step = DAG.getNode(ISD::FMUL, DL, VT, Estimate, Estimate,
5012                                    Flags);
5013         Step = DAG.getNode(AArch64ISD::FRSQRTS, DL, VT, Operand, Step, Flags);
5014         Estimate = DAG.getNode(ISD::FMUL, DL, VT, Estimate, Step, Flags);
5015       }
5016
5017       if (!Reciprocal) {
5018         EVT CCVT = getSetCCResultType(DAG.getDataLayout(), *DAG.getContext(),
5019                                       VT);
5020         SDValue FPZero = DAG.getConstantFP(0.0, DL, VT);
5021         SDValue Eq = DAG.getSetCC(DL, CCVT, Operand, FPZero, ISD::SETEQ);
5022
5023         Estimate = DAG.getNode(ISD::FMUL, DL, VT, Operand, Estimate, Flags);
5024         // Correct the result if the operand is 0.0.
5025         Estimate = DAG.getNode(VT.isVector() ? ISD::VSELECT : ISD::SELECT, DL,
5026                                VT, Eq, Operand, Estimate);
5027       }
5028
5029       ExtraSteps = 0;
5030       return Estimate;
5031     }
5032
5033   return SDValue();
5034 }
5035
5036 SDValue AArch64TargetLowering::getRecipEstimate(SDValue Operand,
5037                                                 SelectionDAG &DAG, int Enabled,
5038                                                 int &ExtraSteps) const {
5039   if (Enabled == ReciprocalEstimate::Enabled)
5040     if (SDValue Estimate = getEstimate(Subtarget, AArch64ISD::FRECPE, Operand,
5041                                        DAG, ExtraSteps)) {
5042       SDLoc DL(Operand);
5043       EVT VT = Operand.getValueType();
5044
5045       SDNodeFlags Flags;
5046       Flags.setUnsafeAlgebra(true);
5047
5048       // Newton reciprocal iteration: E * (2 - X * E)
5049       // AArch64 reciprocal iteration instruction: (2 - M * N)
5050       for (int i = ExtraSteps; i > 0; --i) {
5051         SDValue Step = DAG.getNode(AArch64ISD::FRECPS, DL, VT, Operand,
5052                                    Estimate, Flags);
5053         Estimate = DAG.getNode(ISD::FMUL, DL, VT, Estimate, Step, Flags);
5054       }
5055
5056       ExtraSteps = 0;
5057       return Estimate;
5058     }
5059
5060   return SDValue();
5061 }
5062
5063 //===----------------------------------------------------------------------===//
5064 //                          AArch64 Inline Assembly Support
5065 //===----------------------------------------------------------------------===//
5066
5067 // Table of Constraints
5068 // TODO: This is the current set of constraints supported by ARM for the
5069 // compiler, not all of them may make sense, e.g. S may be difficult to support.
5070 //
5071 // r - A general register
5072 // w - An FP/SIMD register of some size in the range v0-v31
5073 // x - An FP/SIMD register of some size in the range v0-v15
5074 // I - Constant that can be used with an ADD instruction
5075 // J - Constant that can be used with a SUB instruction
5076 // K - Constant that can be used with a 32-bit logical instruction
5077 // L - Constant that can be used with a 64-bit logical instruction
5078 // M - Constant that can be used as a 32-bit MOV immediate
5079 // N - Constant that can be used as a 64-bit MOV immediate
5080 // Q - A memory reference with base register and no offset
5081 // S - A symbolic address
5082 // Y - Floating point constant zero
5083 // Z - Integer constant zero
5084 //
5085 //   Note that general register operands will be output using their 64-bit x
5086 // register name, whatever the size of the variable, unless the asm operand
5087 // is prefixed by the %w modifier. Floating-point and SIMD register operands
5088 // will be output with the v prefix unless prefixed by the %b, %h, %s, %d or
5089 // %q modifier.
5090 const char *AArch64TargetLowering::LowerXConstraint(EVT ConstraintVT) const {
5091   // At this point, we have to lower this constraint to something else, so we
5092   // lower it to an "r" or "w". However, by doing this we will force the result
5093   // to be in register, while the X constraint is much more permissive.
5094   //
5095   // Although we are correct (we are free to emit anything, without
5096   // constraints), we might break use cases that would expect us to be more
5097   // efficient and emit something else.
5098   if (!Subtarget->hasFPARMv8())
5099     return "r";
5100
5101   if (ConstraintVT.isFloatingPoint())
5102     return "w";
5103
5104   if (ConstraintVT.isVector() &&
5105      (ConstraintVT.getSizeInBits() == 64 ||
5106       ConstraintVT.getSizeInBits() == 128))
5107     return "w";
5108
5109   return "r";
5110 }
5111
5112 /// getConstraintType - Given a constraint letter, return the type of
5113 /// constraint it is for this target.
5114 AArch64TargetLowering::ConstraintType
5115 AArch64TargetLowering::getConstraintType(StringRef Constraint) const {
5116   if (Constraint.size() == 1) {
5117     switch (Constraint[0]) {
5118     default:
5119       break;
5120     case 'z':
5121       return C_Other;
5122     case 'x':
5123     case 'w':
5124       return C_RegisterClass;
5125     // An address with a single base register. Due to the way we
5126     // currently handle addresses it is the same as 'r'.
5127     case 'Q':
5128       return C_Memory;
5129     }
5130   }
5131   return TargetLowering::getConstraintType(Constraint);
5132 }
5133
5134 /// Examine constraint type and operand type and determine a weight value.
5135 /// This object must already have been set up with the operand type
5136 /// and the current alternative constraint selected.
5137 TargetLowering::ConstraintWeight
5138 AArch64TargetLowering::getSingleConstraintMatchWeight(
5139     AsmOperandInfo &info, const char *constraint) const {
5140   ConstraintWeight weight = CW_Invalid;
5141   Value *CallOperandVal = info.CallOperandVal;
5142   // If we don't have a value, we can't do a match,
5143   // but allow it at the lowest weight.
5144   if (!CallOperandVal)
5145     return CW_Default;
5146   Type *type = CallOperandVal->getType();
5147   // Look at the constraint type.
5148   switch (*constraint) {
5149   default:
5150     weight = TargetLowering::getSingleConstraintMatchWeight(info, constraint);
5151     break;
5152   case 'x':
5153   case 'w':
5154     if (type->isFloatingPointTy() || type->isVectorTy())
5155       weight = CW_Register;
5156     break;
5157   case 'z':
5158     weight = CW_Constant;
5159     break;
5160   }
5161   return weight;
5162 }
5163
5164 std::pair<unsigned, const TargetRegisterClass *>
5165 AArch64TargetLowering::getRegForInlineAsmConstraint(
5166     const TargetRegisterInfo *TRI, StringRef Constraint, MVT VT) const {
5167   if (Constraint.size() == 1) {
5168     switch (Constraint[0]) {
5169     case 'r':
5170       if (VT.getSizeInBits() == 64)
5171         return std::make_pair(0U, &AArch64::GPR64commonRegClass);
5172       return std::make_pair(0U, &AArch64::GPR32commonRegClass);
5173     case 'w':
5174       if (VT.getSizeInBits() == 16)
5175         return std::make_pair(0U, &AArch64::FPR16RegClass);
5176       if (VT.getSizeInBits() == 32)
5177         return std::make_pair(0U, &AArch64::FPR32RegClass);
5178       if (VT.getSizeInBits() == 64)
5179         return std::make_pair(0U, &AArch64::FPR64RegClass);
5180       if (VT.getSizeInBits() == 128)
5181         return std::make_pair(0U, &AArch64::FPR128RegClass);
5182       break;
5183     // The instructions that this constraint is designed for can
5184     // only take 128-bit registers so just use that regclass.
5185     case 'x':
5186       if (VT.getSizeInBits() == 128)
5187         return std::make_pair(0U, &AArch64::FPR128_loRegClass);
5188       break;
5189     }
5190   }
5191   if (StringRef("{cc}").equals_lower(Constraint))
5192     return std::make_pair(unsigned(AArch64::NZCV), &AArch64::CCRRegClass);
5193
5194   // Use the default implementation in TargetLowering to convert the register
5195   // constraint into a member of a register class.
5196   std::pair<unsigned, const TargetRegisterClass *> Res;
5197   Res = TargetLowering::getRegForInlineAsmConstraint(TRI, Constraint, VT);
5198
5199   // Not found as a standard register?
5200   if (!Res.second) {
5201     unsigned Size = Constraint.size();
5202     if ((Size == 4 || Size == 5) && Constraint[0] == '{' &&
5203         tolower(Constraint[1]) == 'v' && Constraint[Size - 1] == '}') {
5204       int RegNo;
5205       bool Failed = Constraint.slice(2, Size - 1).getAsInteger(10, RegNo);
5206       if (!Failed && RegNo >= 0 && RegNo <= 31) {
5207         // v0 - v31 are aliases of q0 - q31 or d0 - d31 depending on size.
5208         // By default we'll emit v0-v31 for this unless there's a modifier where
5209         // we'll emit the correct register as well.
5210         if (VT != MVT::Other && VT.getSizeInBits() == 64) {
5211           Res.first = AArch64::FPR64RegClass.getRegister(RegNo);
5212           Res.second = &AArch64::FPR64RegClass;
5213         } else {
5214           Res.first = AArch64::FPR128RegClass.getRegister(RegNo);
5215           Res.second = &AArch64::FPR128RegClass;
5216         }
5217       }
5218     }
5219   }
5220
5221   return Res;
5222 }
5223
5224 /// LowerAsmOperandForConstraint - Lower the specified operand into the Ops
5225 /// vector.  If it is invalid, don't add anything to Ops.
5226 void AArch64TargetLowering::LowerAsmOperandForConstraint(
5227     SDValue Op, std::string &Constraint, std::vector<SDValue> &Ops,
5228     SelectionDAG &DAG) const {
5229   SDValue Result;
5230
5231   // Currently only support length 1 constraints.
5232   if (Constraint.length() != 1)
5233     return;
5234
5235   char ConstraintLetter = Constraint[0];
5236   switch (ConstraintLetter) {
5237   default:
5238     break;
5239
5240   // This set of constraints deal with valid constants for various instructions.
5241   // Validate and return a target constant for them if we can.
5242   case 'z': {
5243     // 'z' maps to xzr or wzr so it needs an input of 0.
5244     if (!isNullConstant(Op))
5245       return;
5246
5247     if (Op.getValueType() == MVT::i64)
5248       Result = DAG.getRegister(AArch64::XZR, MVT::i64);
5249     else
5250       Result = DAG.getRegister(AArch64::WZR, MVT::i32);
5251     break;
5252   }
5253
5254   case 'I':
5255   case 'J':
5256   case 'K':
5257   case 'L':
5258   case 'M':
5259   case 'N':
5260     ConstantSDNode *C = dyn_cast<ConstantSDNode>(Op);
5261     if (!C)
5262       return;
5263
5264     // Grab the value and do some validation.
5265     uint64_t CVal = C->getZExtValue();
5266     switch (ConstraintLetter) {
5267     // The I constraint applies only to simple ADD or SUB immediate operands:
5268     // i.e. 0 to 4095 with optional shift by 12
5269     // The J constraint applies only to ADD or SUB immediates that would be
5270     // valid when negated, i.e. if [an add pattern] were to be output as a SUB
5271     // instruction [or vice versa], in other words -1 to -4095 with optional
5272     // left shift by 12.
5273     case 'I':
5274       if (isUInt<12>(CVal) || isShiftedUInt<12, 12>(CVal))
5275         break;
5276       return;
5277     case 'J': {
5278       uint64_t NVal = -C->getSExtValue();
5279       if (isUInt<12>(NVal) || isShiftedUInt<12, 12>(NVal)) {
5280         CVal = C->getSExtValue();
5281         break;
5282       }
5283       return;
5284     }
5285     // The K and L constraints apply *only* to logical immediates, including
5286     // what used to be the MOVI alias for ORR (though the MOVI alias has now
5287     // been removed and MOV should be used). So these constraints have to
5288     // distinguish between bit patterns that are valid 32-bit or 64-bit
5289     // "bitmask immediates": for example 0xaaaaaaaa is a valid bimm32 (K), but
5290     // not a valid bimm64 (L) where 0xaaaaaaaaaaaaaaaa would be valid, and vice
5291     // versa.
5292     case 'K':
5293       if (AArch64_AM::isLogicalImmediate(CVal, 32))
5294         break;
5295       return;
5296     case 'L':
5297       if (AArch64_AM::isLogicalImmediate(CVal, 64))
5298         break;
5299       return;
5300     // The M and N constraints are a superset of K and L respectively, for use
5301     // with the MOV (immediate) alias. As well as the logical immediates they
5302     // also match 32 or 64-bit immediates that can be loaded either using a
5303     // *single* MOVZ or MOVN , such as 32-bit 0x12340000, 0x00001234, 0xffffedca
5304     // (M) or 64-bit 0x1234000000000000 (N) etc.
5305     // As a note some of this code is liberally stolen from the asm parser.
5306     case 'M': {
5307       if (!isUInt<32>(CVal))
5308         return;
5309       if (AArch64_AM::isLogicalImmediate(CVal, 32))
5310         break;
5311       if ((CVal & 0xFFFF) == CVal)
5312         break;
5313       if ((CVal & 0xFFFF0000ULL) == CVal)
5314         break;
5315       uint64_t NCVal = ~(uint32_t)CVal;
5316       if ((NCVal & 0xFFFFULL) == NCVal)
5317         break;
5318       if ((NCVal & 0xFFFF0000ULL) == NCVal)
5319         break;
5320       return;
5321     }
5322     case 'N': {
5323       if (AArch64_AM::isLogicalImmediate(CVal, 64))
5324         break;
5325       if ((CVal & 0xFFFFULL) == CVal)
5326         break;
5327       if ((CVal & 0xFFFF0000ULL) == CVal)
5328         break;
5329       if ((CVal & 0xFFFF00000000ULL) == CVal)
5330         break;
5331       if ((CVal & 0xFFFF000000000000ULL) == CVal)
5332         break;
5333       uint64_t NCVal = ~CVal;
5334       if ((NCVal & 0xFFFFULL) == NCVal)
5335         break;
5336       if ((NCVal & 0xFFFF0000ULL) == NCVal)
5337         break;
5338       if ((NCVal & 0xFFFF00000000ULL) == NCVal)
5339         break;
5340       if ((NCVal & 0xFFFF000000000000ULL) == NCVal)
5341         break;
5342       return;
5343     }
5344     default:
5345       return;
5346     }
5347
5348     // All assembler immediates are 64-bit integers.
5349     Result = DAG.getTargetConstant(CVal, SDLoc(Op), MVT::i64);
5350     break;
5351   }
5352
5353   if (Result.getNode()) {
5354     Ops.push_back(Result);
5355     return;
5356   }
5357
5358   return TargetLowering::LowerAsmOperandForConstraint(Op, Constraint, Ops, DAG);
5359 }
5360
5361 //===----------------------------------------------------------------------===//
5362 //                     AArch64 Advanced SIMD Support
5363 //===----------------------------------------------------------------------===//
5364
5365 /// WidenVector - Given a value in the V64 register class, produce the
5366 /// equivalent value in the V128 register class.
5367 static SDValue WidenVector(SDValue V64Reg, SelectionDAG &DAG) {
5368   EVT VT = V64Reg.getValueType();
5369   unsigned NarrowSize = VT.getVectorNumElements();
5370   MVT EltTy = VT.getVectorElementType().getSimpleVT();
5371   MVT WideTy = MVT::getVectorVT(EltTy, 2 * NarrowSize);
5372   SDLoc DL(V64Reg);
5373
5374   return DAG.getNode(ISD::INSERT_SUBVECTOR, DL, WideTy, DAG.getUNDEF(WideTy),
5375                      V64Reg, DAG.getConstant(0, DL, MVT::i32));
5376 }
5377
5378 /// getExtFactor - Determine the adjustment factor for the position when
5379 /// generating an "extract from vector registers" instruction.
5380 static unsigned getExtFactor(SDValue &V) {
5381   EVT EltType = V.getValueType().getVectorElementType();
5382   return EltType.getSizeInBits() / 8;
5383 }
5384
5385 /// NarrowVector - Given a value in the V128 register class, produce the
5386 /// equivalent value in the V64 register class.
5387 static SDValue NarrowVector(SDValue V128Reg, SelectionDAG &DAG) {
5388   EVT VT = V128Reg.getValueType();
5389   unsigned WideSize = VT.getVectorNumElements();
5390   MVT EltTy = VT.getVectorElementType().getSimpleVT();
5391   MVT NarrowTy = MVT::getVectorVT(EltTy, WideSize / 2);
5392   SDLoc DL(V128Reg);
5393
5394   return DAG.getTargetExtractSubreg(AArch64::dsub, DL, NarrowTy, V128Reg);
5395 }
5396
5397 // Gather data to see if the operation can be modelled as a
5398 // shuffle in combination with VEXTs.
5399 SDValue AArch64TargetLowering::ReconstructShuffle(SDValue Op,
5400                                                   SelectionDAG &DAG) const {
5401   assert(Op.getOpcode() == ISD::BUILD_VECTOR && "Unknown opcode!");
5402   DEBUG(dbgs() << "AArch64TargetLowering::ReconstructShuffle\n");
5403   SDLoc dl(Op);
5404   EVT VT = Op.getValueType();
5405   unsigned NumElts = VT.getVectorNumElements();
5406
5407   struct ShuffleSourceInfo {
5408     SDValue Vec;
5409     unsigned MinElt;
5410     unsigned MaxElt;
5411
5412     // We may insert some combination of BITCASTs and VEXT nodes to force Vec to
5413     // be compatible with the shuffle we intend to construct. As a result
5414     // ShuffleVec will be some sliding window into the original Vec.
5415     SDValue ShuffleVec;
5416
5417     // Code should guarantee that element i in Vec starts at element "WindowBase
5418     // + i * WindowScale in ShuffleVec".
5419     int WindowBase;
5420     int WindowScale;
5421
5422     ShuffleSourceInfo(SDValue Vec)
5423       : Vec(Vec), MinElt(std::numeric_limits<unsigned>::max()), MaxElt(0),
5424           ShuffleVec(Vec), WindowBase(0), WindowScale(1) {}
5425
5426     bool operator ==(SDValue OtherVec) { return Vec == OtherVec; }
5427   };
5428
5429   // First gather all vectors used as an immediate source for this BUILD_VECTOR
5430   // node.
5431   SmallVector<ShuffleSourceInfo, 2> Sources;
5432   for (unsigned i = 0; i < NumElts; ++i) {
5433     SDValue V = Op.getOperand(i);
5434     if (V.isUndef())
5435       continue;
5436     else if (V.getOpcode() != ISD::EXTRACT_VECTOR_ELT ||
5437              !isa<ConstantSDNode>(V.getOperand(1))) {
5438       DEBUG(dbgs() << "Reshuffle failed: "
5439                       "a shuffle can only come from building a vector from "
5440                       "various elements of other vectors, provided their "
5441                       "indices are constant\n");
5442       return SDValue();
5443     }
5444
5445     // Add this element source to the list if it's not already there.
5446     SDValue SourceVec = V.getOperand(0);
5447     auto Source = find(Sources, SourceVec);
5448     if (Source == Sources.end())
5449       Source = Sources.insert(Sources.end(), ShuffleSourceInfo(SourceVec));
5450
5451     // Update the minimum and maximum lane number seen.
5452     unsigned EltNo = cast<ConstantSDNode>(V.getOperand(1))->getZExtValue();
5453     Source->MinElt = std::min(Source->MinElt, EltNo);
5454     Source->MaxElt = std::max(Source->MaxElt, EltNo);
5455   }
5456
5457   if (Sources.size() > 2) {
5458     DEBUG(dbgs() << "Reshuffle failed: currently only do something sane when at "
5459                     "most two source vectors are involved\n");
5460     return SDValue();
5461   }
5462
5463   // Find out the smallest element size among result and two sources, and use
5464   // it as element size to build the shuffle_vector.
5465   EVT SmallestEltTy = VT.getVectorElementType();
5466   for (auto &Source : Sources) {
5467     EVT SrcEltTy = Source.Vec.getValueType().getVectorElementType();
5468     if (SrcEltTy.bitsLT(SmallestEltTy)) {
5469       SmallestEltTy = SrcEltTy;
5470     }
5471   }
5472   unsigned ResMultiplier =
5473       VT.getScalarSizeInBits() / SmallestEltTy.getSizeInBits();
5474   NumElts = VT.getSizeInBits() / SmallestEltTy.getSizeInBits();
5475   EVT ShuffleVT = EVT::getVectorVT(*DAG.getContext(), SmallestEltTy, NumElts);
5476
5477   // If the source vector is too wide or too narrow, we may nevertheless be able
5478   // to construct a compatible shuffle either by concatenating it with UNDEF or
5479   // extracting a suitable range of elements.
5480   for (auto &Src : Sources) {
5481     EVT SrcVT = Src.ShuffleVec.getValueType();
5482
5483     if (SrcVT.getSizeInBits() == VT.getSizeInBits())
5484       continue;
5485
5486     // This stage of the search produces a source with the same element type as
5487     // the original, but with a total width matching the BUILD_VECTOR output.
5488     EVT EltVT = SrcVT.getVectorElementType();
5489     unsigned NumSrcElts = VT.getSizeInBits() / EltVT.getSizeInBits();
5490     EVT DestVT = EVT::getVectorVT(*DAG.getContext(), EltVT, NumSrcElts);
5491
5492     if (SrcVT.getSizeInBits() < VT.getSizeInBits()) {
5493       assert(2 * SrcVT.getSizeInBits() == VT.getSizeInBits());
5494       // We can pad out the smaller vector for free, so if it's part of a
5495       // shuffle...
5496       Src.ShuffleVec =
5497           DAG.getNode(ISD::CONCAT_VECTORS, dl, DestVT, Src.ShuffleVec,
5498                       DAG.getUNDEF(Src.ShuffleVec.getValueType()));
5499       continue;
5500     }
5501
5502     assert(SrcVT.getSizeInBits() == 2 * VT.getSizeInBits());
5503
5504     if (Src.MaxElt - Src.MinElt >= NumSrcElts) {
5505       DEBUG(dbgs() << "Reshuffle failed: span too large for a VEXT to cope\n");
5506       return SDValue();
5507     }
5508
5509     if (Src.MinElt >= NumSrcElts) {
5510       // The extraction can just take the second half
5511       Src.ShuffleVec =
5512           DAG.getNode(ISD::EXTRACT_SUBVECTOR, dl, DestVT, Src.ShuffleVec,
5513                       DAG.getConstant(NumSrcElts, dl, MVT::i64));
5514       Src.WindowBase = -NumSrcElts;
5515     } else if (Src.MaxElt < NumSrcElts) {
5516       // The extraction can just take the first half
5517       Src.ShuffleVec =
5518           DAG.getNode(ISD::EXTRACT_SUBVECTOR, dl, DestVT, Src.ShuffleVec,
5519                       DAG.getConstant(0, dl, MVT::i64));
5520     } else {
5521       // An actual VEXT is needed
5522       SDValue VEXTSrc1 =
5523           DAG.getNode(ISD::EXTRACT_SUBVECTOR, dl, DestVT, Src.ShuffleVec,
5524                       DAG.getConstant(0, dl, MVT::i64));
5525       SDValue VEXTSrc2 =
5526           DAG.getNode(ISD::EXTRACT_SUBVECTOR, dl, DestVT, Src.ShuffleVec,
5527                       DAG.getConstant(NumSrcElts, dl, MVT::i64));
5528       unsigned Imm = Src.MinElt * getExtFactor(VEXTSrc1);
5529
5530       Src.ShuffleVec = DAG.getNode(AArch64ISD::EXT, dl, DestVT, VEXTSrc1,
5531                                    VEXTSrc2,
5532                                    DAG.getConstant(Imm, dl, MVT::i32));
5533       Src.WindowBase = -Src.MinElt;
5534     }
5535   }
5536
5537   // Another possible incompatibility occurs from the vector element types. We
5538   // can fix this by bitcasting the source vectors to the same type we intend
5539   // for the shuffle.
5540   for (auto &Src : Sources) {
5541     EVT SrcEltTy = Src.ShuffleVec.getValueType().getVectorElementType();
5542     if (SrcEltTy == SmallestEltTy)
5543       continue;
5544     assert(ShuffleVT.getVectorElementType() == SmallestEltTy);
5545     Src.ShuffleVec = DAG.getNode(ISD::BITCAST, dl, ShuffleVT, Src.ShuffleVec);
5546     Src.WindowScale = SrcEltTy.getSizeInBits() / SmallestEltTy.getSizeInBits();
5547     Src.WindowBase *= Src.WindowScale;
5548   }
5549
5550   // Final sanity check before we try to actually produce a shuffle.
5551   DEBUG(
5552     for (auto Src : Sources)
5553       assert(Src.ShuffleVec.getValueType() == ShuffleVT);
5554   );
5555
5556   // The stars all align, our next step is to produce the mask for the shuffle.
5557   SmallVector<int, 8> Mask(ShuffleVT.getVectorNumElements(), -1);
5558   int BitsPerShuffleLane = ShuffleVT.getScalarSizeInBits();
5559   for (unsigned i = 0; i < VT.getVectorNumElements(); ++i) {
5560     SDValue Entry = Op.getOperand(i);
5561     if (Entry.isUndef())
5562       continue;
5563
5564     auto Src = find(Sources, Entry.getOperand(0));
5565     int EltNo = cast<ConstantSDNode>(Entry.getOperand(1))->getSExtValue();
5566
5567     // EXTRACT_VECTOR_ELT performs an implicit any_ext; BUILD_VECTOR an implicit
5568     // trunc. So only std::min(SrcBits, DestBits) actually get defined in this
5569     // segment.
5570     EVT OrigEltTy = Entry.getOperand(0).getValueType().getVectorElementType();
5571     int BitsDefined =
5572         std::min(OrigEltTy.getSizeInBits(), VT.getScalarSizeInBits());
5573     int LanesDefined = BitsDefined / BitsPerShuffleLane;
5574
5575     // This source is expected to fill ResMultiplier lanes of the final shuffle,
5576     // starting at the appropriate offset.
5577     int *LaneMask = &Mask[i * ResMultiplier];
5578
5579     int ExtractBase = EltNo * Src->WindowScale + Src->WindowBase;
5580     ExtractBase += NumElts * (Src - Sources.begin());
5581     for (int j = 0; j < LanesDefined; ++j)
5582       LaneMask[j] = ExtractBase + j;
5583   }
5584
5585   // Final check before we try to produce nonsense...
5586   if (!isShuffleMaskLegal(Mask, ShuffleVT)) {
5587     DEBUG(dbgs() << "Reshuffle failed: illegal shuffle mask\n");
5588     return SDValue();
5589   }
5590
5591   SDValue ShuffleOps[] = { DAG.getUNDEF(ShuffleVT), DAG.getUNDEF(ShuffleVT) };
5592   for (unsigned i = 0; i < Sources.size(); ++i)
5593     ShuffleOps[i] = Sources[i].ShuffleVec;
5594
5595   SDValue Shuffle = DAG.getVectorShuffle(ShuffleVT, dl, ShuffleOps[0],
5596                                          ShuffleOps[1], Mask);
5597   SDValue V = DAG.getNode(ISD::BITCAST, dl, VT, Shuffle);
5598
5599   DEBUG(
5600     dbgs() << "Reshuffle, creating node: ";
5601     Shuffle.dump();
5602     dbgs() << "Reshuffle, creating node: ";
5603     V.dump();
5604   );
5605
5606   return V;
5607 }
5608
5609 // check if an EXT instruction can handle the shuffle mask when the
5610 // vector sources of the shuffle are the same.
5611 static bool isSingletonEXTMask(ArrayRef<int> M, EVT VT, unsigned &Imm) {
5612   unsigned NumElts = VT.getVectorNumElements();
5613
5614   // Assume that the first shuffle index is not UNDEF.  Fail if it is.
5615   if (M[0] < 0)
5616     return false;
5617
5618   Imm = M[0];
5619
5620   // If this is a VEXT shuffle, the immediate value is the index of the first
5621   // element.  The other shuffle indices must be the successive elements after
5622   // the first one.
5623   unsigned ExpectedElt = Imm;
5624   for (unsigned i = 1; i < NumElts; ++i) {
5625     // Increment the expected index.  If it wraps around, just follow it
5626     // back to index zero and keep going.
5627     ++ExpectedElt;
5628     if (ExpectedElt == NumElts)
5629       ExpectedElt = 0;
5630
5631     if (M[i] < 0)
5632       continue; // ignore UNDEF indices
5633     if (ExpectedElt != static_cast<unsigned>(M[i]))
5634       return false;
5635   }
5636
5637   return true;
5638 }
5639
5640 // check if an EXT instruction can handle the shuffle mask when the
5641 // vector sources of the shuffle are different.
5642 static bool isEXTMask(ArrayRef<int> M, EVT VT, bool &ReverseEXT,
5643                       unsigned &Imm) {
5644   // Look for the first non-undef element.
5645   const int *FirstRealElt = find_if(M, [](int Elt) { return Elt >= 0; });
5646
5647   // Benefit form APInt to handle overflow when calculating expected element.
5648   unsigned NumElts = VT.getVectorNumElements();
5649   unsigned MaskBits = APInt(32, NumElts * 2).logBase2();
5650   APInt ExpectedElt = APInt(MaskBits, *FirstRealElt + 1);
5651   // The following shuffle indices must be the successive elements after the
5652   // first real element.
5653   const int *FirstWrongElt = std::find_if(FirstRealElt + 1, M.end(),
5654       [&](int Elt) {return Elt != ExpectedElt++ && Elt != -1;});
5655   if (FirstWrongElt != M.end())
5656     return false;
5657
5658   // The index of an EXT is the first element if it is not UNDEF.
5659   // Watch out for the beginning UNDEFs. The EXT index should be the expected
5660   // value of the first element.  E.g.
5661   // <-1, -1, 3, ...> is treated as <1, 2, 3, ...>.
5662   // <-1, -1, 0, 1, ...> is treated as <2*NumElts-2, 2*NumElts-1, 0, 1, ...>.
5663   // ExpectedElt is the last mask index plus 1.
5664   Imm = ExpectedElt.getZExtValue();
5665
5666   // There are two difference cases requiring to reverse input vectors.
5667   // For example, for vector <4 x i32> we have the following cases,
5668   // Case 1: shufflevector(<4 x i32>,<4 x i32>,<-1, -1, -1, 0>)
5669   // Case 2: shufflevector(<4 x i32>,<4 x i32>,<-1, -1, 7, 0>)
5670   // For both cases, we finally use mask <5, 6, 7, 0>, which requires
5671   // to reverse two input vectors.
5672   if (Imm < NumElts)
5673     ReverseEXT = true;
5674   else
5675     Imm -= NumElts;
5676
5677   return true;
5678 }
5679
5680 /// isREVMask - Check if a vector shuffle corresponds to a REV
5681 /// instruction with the specified blocksize.  (The order of the elements
5682 /// within each block of the vector is reversed.)
5683 static bool isREVMask(ArrayRef<int> M, EVT VT, unsigned BlockSize) {
5684   assert((BlockSize == 16 || BlockSize == 32 || BlockSize == 64) &&
5685          "Only possible block sizes for REV are: 16, 32, 64");
5686
5687   unsigned EltSz = VT.getScalarSizeInBits();
5688   if (EltSz == 64)
5689     return false;
5690
5691   unsigned NumElts = VT.getVectorNumElements();
5692   unsigned BlockElts = M[0] + 1;
5693   // If the first shuffle index is UNDEF, be optimistic.
5694   if (M[0] < 0)
5695     BlockElts = BlockSize / EltSz;
5696
5697   if (BlockSize <= EltSz || BlockSize != BlockElts * EltSz)
5698     return false;
5699
5700   for (unsigned i = 0; i < NumElts; ++i) {
5701     if (M[i] < 0)
5702       continue; // ignore UNDEF indices
5703     if ((unsigned)M[i] != (i - i % BlockElts) + (BlockElts - 1 - i % BlockElts))
5704       return false;
5705   }
5706
5707   return true;
5708 }
5709
5710 static bool isZIPMask(ArrayRef<int> M, EVT VT, unsigned &WhichResult) {
5711   unsigned NumElts = VT.getVectorNumElements();
5712   WhichResult = (M[0] == 0 ? 0 : 1);
5713   unsigned Idx = WhichResult * NumElts / 2;
5714   for (unsigned i = 0; i != NumElts; i += 2) {
5715     if ((M[i] >= 0 && (unsigned)M[i] != Idx) ||
5716         (M[i + 1] >= 0 && (unsigned)M[i + 1] != Idx + NumElts))
5717       return false;
5718     Idx += 1;
5719   }
5720
5721   return true;
5722 }
5723
5724 static bool isUZPMask(ArrayRef<int> M, EVT VT, unsigned &WhichResult) {
5725   unsigned NumElts = VT.getVectorNumElements();
5726   WhichResult = (M[0] == 0 ? 0 : 1);
5727   for (unsigned i = 0; i != NumElts; ++i) {
5728     if (M[i] < 0)
5729       continue; // ignore UNDEF indices
5730     if ((unsigned)M[i] != 2 * i + WhichResult)
5731       return false;
5732   }
5733
5734   return true;
5735 }
5736
5737 static bool isTRNMask(ArrayRef<int> M, EVT VT, unsigned &WhichResult) {
5738   unsigned NumElts = VT.getVectorNumElements();
5739   WhichResult = (M[0] == 0 ? 0 : 1);
5740   for (unsigned i = 0; i < NumElts; i += 2) {
5741     if ((M[i] >= 0 && (unsigned)M[i] != i + WhichResult) ||
5742         (M[i + 1] >= 0 && (unsigned)M[i + 1] != i + NumElts + WhichResult))
5743       return false;
5744   }
5745   return true;
5746 }
5747
5748 /// isZIP_v_undef_Mask - Special case of isZIPMask for canonical form of
5749 /// "vector_shuffle v, v", i.e., "vector_shuffle v, undef".
5750 /// Mask is e.g., <0, 0, 1, 1> instead of <0, 4, 1, 5>.
5751 static bool isZIP_v_undef_Mask(ArrayRef<int> M, EVT VT, unsigned &WhichResult) {
5752   unsigned NumElts = VT.getVectorNumElements();
5753   WhichResult = (M[0] == 0 ? 0 : 1);
5754   unsigned Idx = WhichResult * NumElts / 2;
5755   for (unsigned i = 0; i != NumElts; i += 2) {
5756     if ((M[i] >= 0 && (unsigned)M[i] != Idx) ||
5757         (M[i + 1] >= 0 && (unsigned)M[i + 1] != Idx))
5758       return false;
5759     Idx += 1;
5760   }
5761
5762   return true;
5763 }
5764
5765 /// isUZP_v_undef_Mask - Special case of isUZPMask for canonical form of
5766 /// "vector_shuffle v, v", i.e., "vector_shuffle v, undef".
5767 /// Mask is e.g., <0, 2, 0, 2> instead of <0, 2, 4, 6>,
5768 static bool isUZP_v_undef_Mask(ArrayRef<int> M, EVT VT, unsigned &WhichResult) {
5769   unsigned Half = VT.getVectorNumElements() / 2;
5770   WhichResult = (M[0] == 0 ? 0 : 1);
5771   for (unsigned j = 0; j != 2; ++j) {
5772     unsigned Idx = WhichResult;
5773     for (unsigned i = 0; i != Half; ++i) {
5774       int MIdx = M[i + j * Half];
5775       if (MIdx >= 0 && (unsigned)MIdx != Idx)
5776         return false;
5777       Idx += 2;
5778     }
5779   }
5780
5781   return true;
5782 }
5783
5784 /// isTRN_v_undef_Mask - Special case of isTRNMask for canonical form of
5785 /// "vector_shuffle v, v", i.e., "vector_shuffle v, undef".
5786 /// Mask is e.g., <0, 0, 2, 2> instead of <0, 4, 2, 6>.
5787 static bool isTRN_v_undef_Mask(ArrayRef<int> M, EVT VT, unsigned &WhichResult) {
5788   unsigned NumElts = VT.getVectorNumElements();
5789   WhichResult = (M[0] == 0 ? 0 : 1);
5790   for (unsigned i = 0; i < NumElts; i += 2) {
5791     if ((M[i] >= 0 && (unsigned)M[i] != i + WhichResult) ||
5792         (M[i + 1] >= 0 && (unsigned)M[i + 1] != i + WhichResult))
5793       return false;
5794   }
5795   return true;
5796 }
5797
5798 static bool isINSMask(ArrayRef<int> M, int NumInputElements,
5799                       bool &DstIsLeft, int &Anomaly) {
5800   if (M.size() != static_cast<size_t>(NumInputElements))
5801     return false;
5802
5803   int NumLHSMatch = 0, NumRHSMatch = 0;
5804   int LastLHSMismatch = -1, LastRHSMismatch = -1;
5805
5806   for (int i = 0; i < NumInputElements; ++i) {
5807     if (M[i] == -1) {
5808       ++NumLHSMatch;
5809       ++NumRHSMatch;
5810       continue;
5811     }
5812
5813     if (M[i] == i)
5814       ++NumLHSMatch;
5815     else
5816       LastLHSMismatch = i;
5817
5818     if (M[i] == i + NumInputElements)
5819       ++NumRHSMatch;
5820     else
5821       LastRHSMismatch = i;
5822   }
5823
5824   if (NumLHSMatch == NumInputElements - 1) {
5825     DstIsLeft = true;
5826     Anomaly = LastLHSMismatch;
5827     return true;
5828   } else if (NumRHSMatch == NumInputElements - 1) {
5829     DstIsLeft = false;
5830     Anomaly = LastRHSMismatch;
5831     return true;
5832   }
5833
5834   return false;
5835 }
5836
5837 static bool isConcatMask(ArrayRef<int> Mask, EVT VT, bool SplitLHS) {
5838   if (VT.getSizeInBits() != 128)
5839     return false;
5840
5841   unsigned NumElts = VT.getVectorNumElements();
5842
5843   for (int I = 0, E = NumElts / 2; I != E; I++) {
5844     if (Mask[I] != I)
5845       return false;
5846   }
5847
5848   int Offset = NumElts / 2;
5849   for (int I = NumElts / 2, E = NumElts; I != E; I++) {
5850     if (Mask[I] != I + SplitLHS * Offset)
5851       return false;
5852   }
5853
5854   return true;
5855 }
5856
5857 static SDValue tryFormConcatFromShuffle(SDValue Op, SelectionDAG &DAG) {
5858   SDLoc DL(Op);
5859   EVT VT = Op.getValueType();
5860   SDValue V0 = Op.getOperand(0);
5861   SDValue V1 = Op.getOperand(1);
5862   ArrayRef<int> Mask = cast<ShuffleVectorSDNode>(Op)->getMask();
5863
5864   if (VT.getVectorElementType() != V0.getValueType().getVectorElementType() ||
5865       VT.getVectorElementType() != V1.getValueType().getVectorElementType())
5866     return SDValue();
5867
5868   bool SplitV0 = V0.getValueSizeInBits() == 128;
5869
5870   if (!isConcatMask(Mask, VT, SplitV0))
5871     return SDValue();
5872
5873   EVT CastVT = EVT::getVectorVT(*DAG.getContext(), VT.getVectorElementType(),
5874                                 VT.getVectorNumElements() / 2);
5875   if (SplitV0) {
5876     V0 = DAG.getNode(ISD::EXTRACT_SUBVECTOR, DL, CastVT, V0,
5877                      DAG.getConstant(0, DL, MVT::i64));
5878   }
5879   if (V1.getValueSizeInBits() == 128) {
5880     V1 = DAG.getNode(ISD::EXTRACT_SUBVECTOR, DL, CastVT, V1,
5881                      DAG.getConstant(0, DL, MVT::i64));
5882   }
5883   return DAG.getNode(ISD::CONCAT_VECTORS, DL, VT, V0, V1);
5884 }
5885
5886 /// GeneratePerfectShuffle - Given an entry in the perfect-shuffle table, emit
5887 /// the specified operations to build the shuffle.
5888 static SDValue GeneratePerfectShuffle(unsigned PFEntry, SDValue LHS,
5889                                       SDValue RHS, SelectionDAG &DAG,
5890                                       const SDLoc &dl) {
5891   unsigned OpNum = (PFEntry >> 26) & 0x0F;
5892   unsigned LHSID = (PFEntry >> 13) & ((1 << 13) - 1);
5893   unsigned RHSID = (PFEntry >> 0) & ((1 << 13) - 1);
5894
5895   enum {
5896     OP_COPY = 0, // Copy, used for things like <u,u,u,3> to say it is <0,1,2,3>
5897     OP_VREV,
5898     OP_VDUP0,
5899     OP_VDUP1,
5900     OP_VDUP2,
5901     OP_VDUP3,
5902     OP_VEXT1,
5903     OP_VEXT2,
5904     OP_VEXT3,
5905     OP_VUZPL, // VUZP, left result
5906     OP_VUZPR, // VUZP, right result
5907     OP_VZIPL, // VZIP, left result
5908     OP_VZIPR, // VZIP, right result
5909     OP_VTRNL, // VTRN, left result
5910     OP_VTRNR  // VTRN, right result
5911   };
5912
5913   if (OpNum == OP_COPY) {
5914     if (LHSID == (1 * 9 + 2) * 9 + 3)
5915       return LHS;
5916     assert(LHSID == ((4 * 9 + 5) * 9 + 6) * 9 + 7 && "Illegal OP_COPY!");
5917     return RHS;
5918   }
5919
5920   SDValue OpLHS, OpRHS;
5921   OpLHS = GeneratePerfectShuffle(PerfectShuffleTable[LHSID], LHS, RHS, DAG, dl);
5922   OpRHS = GeneratePerfectShuffle(PerfectShuffleTable[RHSID], LHS, RHS, DAG, dl);
5923   EVT VT = OpLHS.getValueType();
5924
5925   switch (OpNum) {
5926   default:
5927     llvm_unreachable("Unknown shuffle opcode!");
5928   case OP_VREV:
5929     // VREV divides the vector in half and swaps within the half.
5930     if (VT.getVectorElementType() == MVT::i32 ||
5931         VT.getVectorElementType() == MVT::f32)
5932       return DAG.getNode(AArch64ISD::REV64, dl, VT, OpLHS);
5933     // vrev <4 x i16> -> REV32
5934     if (VT.getVectorElementType() == MVT::i16 ||
5935         VT.getVectorElementType() == MVT::f16)
5936       return DAG.getNode(AArch64ISD::REV32, dl, VT, OpLHS);
5937     // vrev <4 x i8> -> REV16
5938     assert(VT.getVectorElementType() == MVT::i8);
5939     return DAG.getNode(AArch64ISD::REV16, dl, VT, OpLHS);
5940   case OP_VDUP0:
5941   case OP_VDUP1:
5942   case OP_VDUP2:
5943   case OP_VDUP3: {
5944     EVT EltTy = VT.getVectorElementType();
5945     unsigned Opcode;
5946     if (EltTy == MVT::i8)
5947       Opcode = AArch64ISD::DUPLANE8;
5948     else if (EltTy == MVT::i16 || EltTy == MVT::f16)
5949       Opcode = AArch64ISD::DUPLANE16;
5950     else if (EltTy == MVT::i32 || EltTy == MVT::f32)
5951       Opcode = AArch64ISD::DUPLANE32;
5952     else if (EltTy == MVT::i64 || EltTy == MVT::f64)
5953       Opcode = AArch64ISD::DUPLANE64;
5954     else
5955       llvm_unreachable("Invalid vector element type?");
5956
5957     if (VT.getSizeInBits() == 64)
5958       OpLHS = WidenVector(OpLHS, DAG);
5959     SDValue Lane = DAG.getConstant(OpNum - OP_VDUP0, dl, MVT::i64);
5960     return DAG.getNode(Opcode, dl, VT, OpLHS, Lane);
5961   }
5962   case OP_VEXT1:
5963   case OP_VEXT2:
5964   case OP_VEXT3: {
5965     unsigned Imm = (OpNum - OP_VEXT1 + 1) * getExtFactor(OpLHS);
5966     return DAG.getNode(AArch64ISD::EXT, dl, VT, OpLHS, OpRHS,
5967                        DAG.getConstant(Imm, dl, MVT::i32));
5968   }
5969   case OP_VUZPL:
5970     return DAG.getNode(AArch64ISD::UZP1, dl, DAG.getVTList(VT, VT), OpLHS,
5971                        OpRHS);
5972   case OP_VUZPR:
5973     return DAG.getNode(AArch64ISD::UZP2, dl, DAG.getVTList(VT, VT), OpLHS,
5974                        OpRHS);
5975   case OP_VZIPL:
5976     return DAG.getNode(AArch64ISD::ZIP1, dl, DAG.getVTList(VT, VT), OpLHS,
5977                        OpRHS);
5978   case OP_VZIPR:
5979     return DAG.getNode(AArch64ISD::ZIP2, dl, DAG.getVTList(VT, VT), OpLHS,
5980                        OpRHS);
5981   case OP_VTRNL:
5982     return DAG.getNode(AArch64ISD::TRN1, dl, DAG.getVTList(VT, VT), OpLHS,
5983                        OpRHS);
5984   case OP_VTRNR:
5985     return DAG.getNode(AArch64ISD::TRN2, dl, DAG.getVTList(VT, VT), OpLHS,
5986                        OpRHS);
5987   }
5988 }
5989
5990 static SDValue GenerateTBL(SDValue Op, ArrayRef<int> ShuffleMask,
5991                            SelectionDAG &DAG) {
5992   // Check to see if we can use the TBL instruction.
5993   SDValue V1 = Op.getOperand(0);
5994   SDValue V2 = Op.getOperand(1);
5995   SDLoc DL(Op);
5996
5997   EVT EltVT = Op.getValueType().getVectorElementType();
5998   unsigned BytesPerElt = EltVT.getSizeInBits() / 8;
5999
6000   SmallVector<SDValue, 8> TBLMask;
6001   for (int Val : ShuffleMask) {
6002     for (unsigned Byte = 0; Byte < BytesPerElt; ++Byte) {
6003       unsigned Offset = Byte + Val * BytesPerElt;
6004       TBLMask.push_back(DAG.getConstant(Offset, DL, MVT::i32));
6005     }
6006   }
6007
6008   MVT IndexVT = MVT::v8i8;
6009   unsigned IndexLen = 8;
6010   if (Op.getValueSizeInBits() == 128) {
6011     IndexVT = MVT::v16i8;
6012     IndexLen = 16;
6013   }
6014
6015   SDValue V1Cst = DAG.getNode(ISD::BITCAST, DL, IndexVT, V1);
6016   SDValue V2Cst = DAG.getNode(ISD::BITCAST, DL, IndexVT, V2);
6017
6018   SDValue Shuffle;
6019   if (V2.getNode()->isUndef()) {
6020     if (IndexLen == 8)
6021       V1Cst = DAG.getNode(ISD::CONCAT_VECTORS, DL, MVT::v16i8, V1Cst, V1Cst);
6022     Shuffle = DAG.getNode(
6023         ISD::INTRINSIC_WO_CHAIN, DL, IndexVT,
6024         DAG.getConstant(Intrinsic::aarch64_neon_tbl1, DL, MVT::i32), V1Cst,
6025         DAG.getBuildVector(IndexVT, DL,
6026                            makeArrayRef(TBLMask.data(), IndexLen)));
6027   } else {
6028     if (IndexLen == 8) {
6029       V1Cst = DAG.getNode(ISD::CONCAT_VECTORS, DL, MVT::v16i8, V1Cst, V2Cst);
6030       Shuffle = DAG.getNode(
6031           ISD::INTRINSIC_WO_CHAIN, DL, IndexVT,
6032           DAG.getConstant(Intrinsic::aarch64_neon_tbl1, DL, MVT::i32), V1Cst,
6033           DAG.getBuildVector(IndexVT, DL,
6034                              makeArrayRef(TBLMask.data(), IndexLen)));
6035     } else {
6036       // FIXME: We cannot, for the moment, emit a TBL2 instruction because we
6037       // cannot currently represent the register constraints on the input
6038       // table registers.
6039       //  Shuffle = DAG.getNode(AArch64ISD::TBL2, DL, IndexVT, V1Cst, V2Cst,
6040       //                   DAG.getBuildVector(IndexVT, DL, &TBLMask[0],
6041       //                   IndexLen));
6042       Shuffle = DAG.getNode(
6043           ISD::INTRINSIC_WO_CHAIN, DL, IndexVT,
6044           DAG.getConstant(Intrinsic::aarch64_neon_tbl2, DL, MVT::i32), V1Cst,
6045           V2Cst, DAG.getBuildVector(IndexVT, DL,
6046                                     makeArrayRef(TBLMask.data(), IndexLen)));
6047     }
6048   }
6049   return DAG.getNode(ISD::BITCAST, DL, Op.getValueType(), Shuffle);
6050 }
6051
6052 static unsigned getDUPLANEOp(EVT EltType) {
6053   if (EltType == MVT::i8)
6054     return AArch64ISD::DUPLANE8;
6055   if (EltType == MVT::i16 || EltType == MVT::f16)
6056     return AArch64ISD::DUPLANE16;
6057   if (EltType == MVT::i32 || EltType == MVT::f32)
6058     return AArch64ISD::DUPLANE32;
6059   if (EltType == MVT::i64 || EltType == MVT::f64)
6060     return AArch64ISD::DUPLANE64;
6061
6062   llvm_unreachable("Invalid vector element type?");
6063 }
6064
6065 SDValue AArch64TargetLowering::LowerVECTOR_SHUFFLE(SDValue Op,
6066                                                    SelectionDAG &DAG) const {
6067   SDLoc dl(Op);
6068   EVT VT = Op.getValueType();
6069
6070   ShuffleVectorSDNode *SVN = cast<ShuffleVectorSDNode>(Op.getNode());
6071
6072   // Convert shuffles that are directly supported on NEON to target-specific
6073   // DAG nodes, instead of keeping them as shuffles and matching them again
6074   // during code selection.  This is more efficient and avoids the possibility
6075   // of inconsistencies between legalization and selection.
6076   ArrayRef<int> ShuffleMask = SVN->getMask();
6077
6078   SDValue V1 = Op.getOperand(0);
6079   SDValue V2 = Op.getOperand(1);
6080
6081   if (SVN->isSplat()) {
6082     int Lane = SVN->getSplatIndex();
6083     // If this is undef splat, generate it via "just" vdup, if possible.
6084     if (Lane == -1)
6085       Lane = 0;
6086
6087     if (Lane == 0 && V1.getOpcode() == ISD::SCALAR_TO_VECTOR)
6088       return DAG.getNode(AArch64ISD::DUP, dl, V1.getValueType(),
6089                          V1.getOperand(0));
6090     // Test if V1 is a BUILD_VECTOR and the lane being referenced is a non-
6091     // constant. If so, we can just reference the lane's definition directly.
6092     if (V1.getOpcode() == ISD::BUILD_VECTOR &&
6093         !isa<ConstantSDNode>(V1.getOperand(Lane)))
6094       return DAG.getNode(AArch64ISD::DUP, dl, VT, V1.getOperand(Lane));
6095
6096     // Otherwise, duplicate from the lane of the input vector.
6097     unsigned Opcode = getDUPLANEOp(V1.getValueType().getVectorElementType());
6098
6099     // SelectionDAGBuilder may have "helpfully" already extracted or conatenated
6100     // to make a vector of the same size as this SHUFFLE. We can ignore the
6101     // extract entirely, and canonicalise the concat using WidenVector.
6102     if (V1.getOpcode() == ISD::EXTRACT_SUBVECTOR) {
6103       Lane += cast<ConstantSDNode>(V1.getOperand(1))->getZExtValue();
6104       V1 = V1.getOperand(0);
6105     } else if (V1.getOpcode() == ISD::CONCAT_VECTORS) {
6106       unsigned Idx = Lane >= (int)VT.getVectorNumElements() / 2;
6107       Lane -= Idx * VT.getVectorNumElements() / 2;
6108       V1 = WidenVector(V1.getOperand(Idx), DAG);
6109     } else if (VT.getSizeInBits() == 64)
6110       V1 = WidenVector(V1, DAG);
6111
6112     return DAG.getNode(Opcode, dl, VT, V1, DAG.getConstant(Lane, dl, MVT::i64));
6113   }
6114
6115   if (isREVMask(ShuffleMask, VT, 64))
6116     return DAG.getNode(AArch64ISD::REV64, dl, V1.getValueType(), V1, V2);
6117   if (isREVMask(ShuffleMask, VT, 32))
6118     return DAG.getNode(AArch64ISD::REV32, dl, V1.getValueType(), V1, V2);
6119   if (isREVMask(ShuffleMask, VT, 16))
6120     return DAG.getNode(AArch64ISD::REV16, dl, V1.getValueType(), V1, V2);
6121
6122   bool ReverseEXT = false;
6123   unsigned Imm;
6124   if (isEXTMask(ShuffleMask, VT, ReverseEXT, Imm)) {
6125     if (ReverseEXT)
6126       std::swap(V1, V2);
6127     Imm *= getExtFactor(V1);
6128     return DAG.getNode(AArch64ISD::EXT, dl, V1.getValueType(), V1, V2,
6129                        DAG.getConstant(Imm, dl, MVT::i32));
6130   } else if (V2->isUndef() && isSingletonEXTMask(ShuffleMask, VT, Imm)) {
6131     Imm *= getExtFactor(V1);
6132     return DAG.getNode(AArch64ISD::EXT, dl, V1.getValueType(), V1, V1,
6133                        DAG.getConstant(Imm, dl, MVT::i32));
6134   }
6135
6136   unsigned WhichResult;
6137   if (isZIPMask(ShuffleMask, VT, WhichResult)) {
6138     unsigned Opc = (WhichResult == 0) ? AArch64ISD::ZIP1 : AArch64ISD::ZIP2;
6139     return DAG.getNode(Opc, dl, V1.getValueType(), V1, V2);
6140   }
6141   if (isUZPMask(ShuffleMask, VT, WhichResult)) {
6142     unsigned Opc = (WhichResult == 0) ? AArch64ISD::UZP1 : AArch64ISD::UZP2;
6143     return DAG.getNode(Opc, dl, V1.getValueType(), V1, V2);
6144   }
6145   if (isTRNMask(ShuffleMask, VT, WhichResult)) {
6146     unsigned Opc = (WhichResult == 0) ? AArch64ISD::TRN1 : AArch64ISD::TRN2;
6147     return DAG.getNode(Opc, dl, V1.getValueType(), V1, V2);
6148   }
6149
6150   if (isZIP_v_undef_Mask(ShuffleMask, VT, WhichResult)) {
6151     unsigned Opc = (WhichResult == 0) ? AArch64ISD::ZIP1 : AArch64ISD::ZIP2;
6152     return DAG.getNode(Opc, dl, V1.getValueType(), V1, V1);
6153   }
6154   if (isUZP_v_undef_Mask(ShuffleMask, VT, WhichResult)) {
6155     unsigned Opc = (WhichResult == 0) ? AArch64ISD::UZP1 : AArch64ISD::UZP2;
6156     return DAG.getNode(Opc, dl, V1.getValueType(), V1, V1);
6157   }
6158   if (isTRN_v_undef_Mask(ShuffleMask, VT, WhichResult)) {
6159     unsigned Opc = (WhichResult == 0) ? AArch64ISD::TRN1 : AArch64ISD::TRN2;
6160     return DAG.getNode(Opc, dl, V1.getValueType(), V1, V1);
6161   }
6162
6163   if (SDValue Concat = tryFormConcatFromShuffle(Op, DAG))
6164     return Concat;
6165
6166   bool DstIsLeft;
6167   int Anomaly;
6168   int NumInputElements = V1.getValueType().getVectorNumElements();
6169   if (isINSMask(ShuffleMask, NumInputElements, DstIsLeft, Anomaly)) {
6170     SDValue DstVec = DstIsLeft ? V1 : V2;
6171     SDValue DstLaneV = DAG.getConstant(Anomaly, dl, MVT::i64);
6172
6173     SDValue SrcVec = V1;
6174     int SrcLane = ShuffleMask[Anomaly];
6175     if (SrcLane >= NumInputElements) {
6176       SrcVec = V2;
6177       SrcLane -= VT.getVectorNumElements();
6178     }
6179     SDValue SrcLaneV = DAG.getConstant(SrcLane, dl, MVT::i64);
6180
6181     EVT ScalarVT = VT.getVectorElementType();
6182
6183     if (ScalarVT.getSizeInBits() < 32 && ScalarVT.isInteger())
6184       ScalarVT = MVT::i32;
6185
6186     return DAG.getNode(
6187         ISD::INSERT_VECTOR_ELT, dl, VT, DstVec,
6188         DAG.getNode(ISD::EXTRACT_VECTOR_ELT, dl, ScalarVT, SrcVec, SrcLaneV),
6189         DstLaneV);
6190   }
6191
6192   // If the shuffle is not directly supported and it has 4 elements, use
6193   // the PerfectShuffle-generated table to synthesize it from other shuffles.
6194   unsigned NumElts = VT.getVectorNumElements();
6195   if (NumElts == 4) {
6196     unsigned PFIndexes[4];
6197     for (unsigned i = 0; i != 4; ++i) {
6198       if (ShuffleMask[i] < 0)
6199         PFIndexes[i] = 8;
6200       else
6201         PFIndexes[i] = ShuffleMask[i];
6202     }
6203
6204     // Compute the index in the perfect shuffle table.
6205     unsigned PFTableIndex = PFIndexes[0] * 9 * 9 * 9 + PFIndexes[1] * 9 * 9 +
6206                             PFIndexes[2] * 9 + PFIndexes[3];
6207     unsigned PFEntry = PerfectShuffleTable[PFTableIndex];
6208     unsigned Cost = (PFEntry >> 30);
6209
6210     if (Cost <= 4)
6211       return GeneratePerfectShuffle(PFEntry, V1, V2, DAG, dl);
6212   }
6213
6214   return GenerateTBL(Op, ShuffleMask, DAG);
6215 }
6216
6217 static bool resolveBuildVector(BuildVectorSDNode *BVN, APInt &CnstBits,
6218                                APInt &UndefBits) {
6219   EVT VT = BVN->getValueType(0);
6220   APInt SplatBits, SplatUndef;
6221   unsigned SplatBitSize;
6222   bool HasAnyUndefs;
6223   if (BVN->isConstantSplat(SplatBits, SplatUndef, SplatBitSize, HasAnyUndefs)) {
6224     unsigned NumSplats = VT.getSizeInBits() / SplatBitSize;
6225
6226     for (unsigned i = 0; i < NumSplats; ++i) {
6227       CnstBits <<= SplatBitSize;
6228       UndefBits <<= SplatBitSize;
6229       CnstBits |= SplatBits.zextOrTrunc(VT.getSizeInBits());
6230       UndefBits |= (SplatBits ^ SplatUndef).zextOrTrunc(VT.getSizeInBits());
6231     }
6232
6233     return true;
6234   }
6235
6236   return false;
6237 }
6238
6239 SDValue AArch64TargetLowering::LowerVectorAND(SDValue Op,
6240                                               SelectionDAG &DAG) const {
6241   BuildVectorSDNode *BVN =
6242       dyn_cast<BuildVectorSDNode>(Op.getOperand(1).getNode());
6243   SDValue LHS = Op.getOperand(0);
6244   SDLoc dl(Op);
6245   EVT VT = Op.getValueType();
6246
6247   if (!BVN)
6248     return Op;
6249
6250   APInt CnstBits(VT.getSizeInBits(), 0);
6251   APInt UndefBits(VT.getSizeInBits(), 0);
6252   if (resolveBuildVector(BVN, CnstBits, UndefBits)) {
6253     // We only have BIC vector immediate instruction, which is and-not.
6254     CnstBits = ~CnstBits;
6255
6256     // We make use of a little bit of goto ickiness in order to avoid having to
6257     // duplicate the immediate matching logic for the undef toggled case.
6258     bool SecondTry = false;
6259   AttemptModImm:
6260
6261     if (CnstBits.getHiBits(64) == CnstBits.getLoBits(64)) {
6262       CnstBits = CnstBits.zextOrTrunc(64);
6263       uint64_t CnstVal = CnstBits.getZExtValue();
6264
6265       if (AArch64_AM::isAdvSIMDModImmType1(CnstVal)) {
6266         CnstVal = AArch64_AM::encodeAdvSIMDModImmType1(CnstVal);
6267         MVT MovTy = (VT.getSizeInBits() == 128) ? MVT::v4i32 : MVT::v2i32;
6268         SDValue Mov = DAG.getNode(AArch64ISD::BICi, dl, MovTy, LHS,
6269                                   DAG.getConstant(CnstVal, dl, MVT::i32),
6270                                   DAG.getConstant(0, dl, MVT::i32));
6271         return DAG.getNode(AArch64ISD::NVCAST, dl, VT, Mov);
6272       }
6273
6274       if (AArch64_AM::isAdvSIMDModImmType2(CnstVal)) {
6275         CnstVal = AArch64_AM::encodeAdvSIMDModImmType2(CnstVal);
6276         MVT MovTy = (VT.getSizeInBits() == 128) ? MVT::v4i32 : MVT::v2i32;
6277         SDValue Mov = DAG.getNode(AArch64ISD::BICi, dl, MovTy, LHS,
6278                                   DAG.getConstant(CnstVal, dl, MVT::i32),
6279                                   DAG.getConstant(8, dl, MVT::i32));
6280         return DAG.getNode(AArch64ISD::NVCAST, dl, VT, Mov);
6281       }
6282
6283       if (AArch64_AM::isAdvSIMDModImmType3(CnstVal)) {
6284         CnstVal = AArch64_AM::encodeAdvSIMDModImmType3(CnstVal);
6285         MVT MovTy = (VT.getSizeInBits() == 128) ? MVT::v4i32 : MVT::v2i32;
6286         SDValue Mov = DAG.getNode(AArch64ISD::BICi, dl, MovTy, LHS,
6287                                   DAG.getConstant(CnstVal, dl, MVT::i32),
6288                                   DAG.getConstant(16, dl, MVT::i32));
6289         return DAG.getNode(AArch64ISD::NVCAST, dl, VT, Mov);
6290       }
6291
6292       if (AArch64_AM::isAdvSIMDModImmType4(CnstVal)) {
6293         CnstVal = AArch64_AM::encodeAdvSIMDModImmType4(CnstVal);
6294         MVT MovTy = (VT.getSizeInBits() == 128) ? MVT::v4i32 : MVT::v2i32;
6295         SDValue Mov = DAG.getNode(AArch64ISD::BICi, dl, MovTy, LHS,
6296                                   DAG.getConstant(CnstVal, dl, MVT::i32),
6297                                   DAG.getConstant(24, dl, MVT::i32));
6298         return DAG.getNode(AArch64ISD::NVCAST, dl, VT, Mov);
6299       }
6300
6301       if (AArch64_AM::isAdvSIMDModImmType5(CnstVal)) {
6302         CnstVal = AArch64_AM::encodeAdvSIMDModImmType5(CnstVal);
6303         MVT MovTy = (VT.getSizeInBits() == 128) ? MVT::v8i16 : MVT::v4i16;
6304         SDValue Mov = DAG.getNode(AArch64ISD::BICi, dl, MovTy, LHS,
6305                                   DAG.getConstant(CnstVal, dl, MVT::i32),
6306                                   DAG.getConstant(0, dl, MVT::i32));
6307         return DAG.getNode(AArch64ISD::NVCAST, dl, VT, Mov);
6308       }
6309
6310       if (AArch64_AM::isAdvSIMDModImmType6(CnstVal)) {
6311         CnstVal = AArch64_AM::encodeAdvSIMDModImmType6(CnstVal);
6312         MVT MovTy = (VT.getSizeInBits() == 128) ? MVT::v8i16 : MVT::v4i16;
6313         SDValue Mov = DAG.getNode(AArch64ISD::BICi, dl, MovTy, LHS,
6314                                   DAG.getConstant(CnstVal, dl, MVT::i32),
6315                                   DAG.getConstant(8, dl, MVT::i32));
6316         return DAG.getNode(AArch64ISD::NVCAST, dl, VT, Mov);
6317       }
6318     }
6319
6320     if (SecondTry)
6321       goto FailedModImm;
6322     SecondTry = true;
6323     CnstBits = ~UndefBits;
6324     goto AttemptModImm;
6325   }
6326
6327 // We can always fall back to a non-immediate AND.
6328 FailedModImm:
6329   return Op;
6330 }
6331
6332 // Specialized code to quickly find if PotentialBVec is a BuildVector that
6333 // consists of only the same constant int value, returned in reference arg
6334 // ConstVal
6335 static bool isAllConstantBuildVector(const SDValue &PotentialBVec,
6336                                      uint64_t &ConstVal) {
6337   BuildVectorSDNode *Bvec = dyn_cast<BuildVectorSDNode>(PotentialBVec);
6338   if (!Bvec)
6339     return false;
6340   ConstantSDNode *FirstElt = dyn_cast<ConstantSDNode>(Bvec->getOperand(0));
6341   if (!FirstElt)
6342     return false;
6343   EVT VT = Bvec->getValueType(0);
6344   unsigned NumElts = VT.getVectorNumElements();
6345   for (unsigned i = 1; i < NumElts; ++i)
6346     if (dyn_cast<ConstantSDNode>(Bvec->getOperand(i)) != FirstElt)
6347       return false;
6348   ConstVal = FirstElt->getZExtValue();
6349   return true;
6350 }
6351
6352 static unsigned getIntrinsicID(const SDNode *N) {
6353   unsigned Opcode = N->getOpcode();
6354   switch (Opcode) {
6355   default:
6356     return Intrinsic::not_intrinsic;
6357   case ISD::INTRINSIC_WO_CHAIN: {
6358     unsigned IID = cast<ConstantSDNode>(N->getOperand(0))->getZExtValue();
6359     if (IID < Intrinsic::num_intrinsics)
6360       return IID;
6361     return Intrinsic::not_intrinsic;
6362   }
6363   }
6364 }
6365
6366 // Attempt to form a vector S[LR]I from (or (and X, BvecC1), (lsl Y, C2)),
6367 // to (SLI X, Y, C2), where X and Y have matching vector types, BvecC1 is a
6368 // BUILD_VECTORs with constant element C1, C2 is a constant, and C1 == ~C2.
6369 // Also, logical shift right -> sri, with the same structure.
6370 static SDValue tryLowerToSLI(SDNode *N, SelectionDAG &DAG) {
6371   EVT VT = N->getValueType(0);
6372
6373   if (!VT.isVector())
6374     return SDValue();
6375
6376   SDLoc DL(N);
6377
6378   // Is the first op an AND?
6379   const SDValue And = N->getOperand(0);
6380   if (And.getOpcode() != ISD::AND)
6381     return SDValue();
6382
6383   // Is the second op an shl or lshr?
6384   SDValue Shift = N->getOperand(1);
6385   // This will have been turned into: AArch64ISD::VSHL vector, #shift
6386   // or AArch64ISD::VLSHR vector, #shift
6387   unsigned ShiftOpc = Shift.getOpcode();
6388   if ((ShiftOpc != AArch64ISD::VSHL && ShiftOpc != AArch64ISD::VLSHR))
6389     return SDValue();
6390   bool IsShiftRight = ShiftOpc == AArch64ISD::VLSHR;
6391
6392   // Is the shift amount constant?
6393   ConstantSDNode *C2node = dyn_cast<ConstantSDNode>(Shift.getOperand(1));
6394   if (!C2node)
6395     return SDValue();
6396
6397   // Is the and mask vector all constant?
6398   uint64_t C1;
6399   if (!isAllConstantBuildVector(And.getOperand(1), C1))
6400     return SDValue();
6401
6402   // Is C1 == ~C2, taking into account how much one can shift elements of a
6403   // particular size?
6404   uint64_t C2 = C2node->getZExtValue();
6405   unsigned ElemSizeInBits = VT.getScalarSizeInBits();
6406   if (C2 > ElemSizeInBits)
6407     return SDValue();
6408   unsigned ElemMask = (1 << ElemSizeInBits) - 1;
6409   if ((C1 & ElemMask) != (~C2 & ElemMask))
6410     return SDValue();
6411
6412   SDValue X = And.getOperand(0);
6413   SDValue Y = Shift.getOperand(0);
6414
6415   unsigned Intrin =
6416       IsShiftRight ? Intrinsic::aarch64_neon_vsri : Intrinsic::aarch64_neon_vsli;
6417   SDValue ResultSLI =
6418       DAG.getNode(ISD::INTRINSIC_WO_CHAIN, DL, VT,
6419                   DAG.getConstant(Intrin, DL, MVT::i32), X, Y,
6420                   Shift.getOperand(1));
6421
6422   DEBUG(dbgs() << "aarch64-lower: transformed: \n");
6423   DEBUG(N->dump(&DAG));
6424   DEBUG(dbgs() << "into: \n");
6425   DEBUG(ResultSLI->dump(&DAG));
6426
6427   ++NumShiftInserts;
6428   return ResultSLI;
6429 }
6430
6431 SDValue AArch64TargetLowering::LowerVectorOR(SDValue Op,
6432                                              SelectionDAG &DAG) const {
6433   // Attempt to form a vector S[LR]I from (or (and X, C1), (lsl Y, C2))
6434   if (EnableAArch64SlrGeneration) {
6435     if (SDValue Res = tryLowerToSLI(Op.getNode(), DAG))
6436       return Res;
6437   }
6438
6439   BuildVectorSDNode *BVN =
6440       dyn_cast<BuildVectorSDNode>(Op.getOperand(0).getNode());
6441   SDValue LHS = Op.getOperand(1);
6442   SDLoc dl(Op);
6443   EVT VT = Op.getValueType();
6444
6445   // OR commutes, so try swapping the operands.
6446   if (!BVN) {
6447     LHS = Op.getOperand(0);
6448     BVN = dyn_cast<BuildVectorSDNode>(Op.getOperand(1).getNode());
6449   }
6450   if (!BVN)
6451     return Op;
6452
6453   APInt CnstBits(VT.getSizeInBits(), 0);
6454   APInt UndefBits(VT.getSizeInBits(), 0);
6455   if (resolveBuildVector(BVN, CnstBits, UndefBits)) {
6456     // We make use of a little bit of goto ickiness in order to avoid having to
6457     // duplicate the immediate matching logic for the undef toggled case.
6458     bool SecondTry = false;
6459   AttemptModImm:
6460
6461     if (CnstBits.getHiBits(64) == CnstBits.getLoBits(64)) {
6462       CnstBits = CnstBits.zextOrTrunc(64);
6463       uint64_t CnstVal = CnstBits.getZExtValue();
6464
6465       if (AArch64_AM::isAdvSIMDModImmType1(CnstVal)) {
6466         CnstVal = AArch64_AM::encodeAdvSIMDModImmType1(CnstVal);
6467         MVT MovTy = (VT.getSizeInBits() == 128) ? MVT::v4i32 : MVT::v2i32;
6468         SDValue Mov = DAG.getNode(AArch64ISD::ORRi, dl, MovTy, LHS,
6469                                   DAG.getConstant(CnstVal, dl, MVT::i32),
6470                                   DAG.getConstant(0, dl, MVT::i32));
6471         return DAG.getNode(AArch64ISD::NVCAST, dl, VT, Mov);
6472       }
6473
6474       if (AArch64_AM::isAdvSIMDModImmType2(CnstVal)) {
6475         CnstVal = AArch64_AM::encodeAdvSIMDModImmType2(CnstVal);
6476         MVT MovTy = (VT.getSizeInBits() == 128) ? MVT::v4i32 : MVT::v2i32;
6477         SDValue Mov = DAG.getNode(AArch64ISD::ORRi, dl, MovTy, LHS,
6478                                   DAG.getConstant(CnstVal, dl, MVT::i32),
6479                                   DAG.getConstant(8, dl, MVT::i32));
6480         return DAG.getNode(AArch64ISD::NVCAST, dl, VT, Mov);
6481       }
6482
6483       if (AArch64_AM::isAdvSIMDModImmType3(CnstVal)) {
6484         CnstVal = AArch64_AM::encodeAdvSIMDModImmType3(CnstVal);
6485         MVT MovTy = (VT.getSizeInBits() == 128) ? MVT::v4i32 : MVT::v2i32;
6486         SDValue Mov = DAG.getNode(AArch64ISD::ORRi, dl, MovTy, LHS,
6487                                   DAG.getConstant(CnstVal, dl, MVT::i32),
6488                                   DAG.getConstant(16, dl, MVT::i32));
6489         return DAG.getNode(AArch64ISD::NVCAST, dl, VT, Mov);
6490       }
6491
6492       if (AArch64_AM::isAdvSIMDModImmType4(CnstVal)) {
6493         CnstVal = AArch64_AM::encodeAdvSIMDModImmType4(CnstVal);
6494         MVT MovTy = (VT.getSizeInBits() == 128) ? MVT::v4i32 : MVT::v2i32;
6495         SDValue Mov = DAG.getNode(AArch64ISD::ORRi, dl, MovTy, LHS,
6496                                   DAG.getConstant(CnstVal, dl, MVT::i32),
6497                                   DAG.getConstant(24, dl, MVT::i32));
6498         return DAG.getNode(AArch64ISD::NVCAST, dl, VT, Mov);
6499       }
6500
6501       if (AArch64_AM::isAdvSIMDModImmType5(CnstVal)) {
6502         CnstVal = AArch64_AM::encodeAdvSIMDModImmType5(CnstVal);
6503         MVT MovTy = (VT.getSizeInBits() == 128) ? MVT::v8i16 : MVT::v4i16;
6504         SDValue Mov = DAG.getNode(AArch64ISD::ORRi, dl, MovTy, LHS,
6505                                   DAG.getConstant(CnstVal, dl, MVT::i32),
6506                                   DAG.getConstant(0, dl, MVT::i32));
6507         return DAG.getNode(AArch64ISD::NVCAST, dl, VT, Mov);
6508       }
6509
6510       if (AArch64_AM::isAdvSIMDModImmType6(CnstVal)) {
6511         CnstVal = AArch64_AM::encodeAdvSIMDModImmType6(CnstVal);
6512         MVT MovTy = (VT.getSizeInBits() == 128) ? MVT::v8i16 : MVT::v4i16;
6513         SDValue Mov = DAG.getNode(AArch64ISD::ORRi, dl, MovTy, LHS,
6514                                   DAG.getConstant(CnstVal, dl, MVT::i32),
6515                                   DAG.getConstant(8, dl, MVT::i32));
6516         return DAG.getNode(AArch64ISD::NVCAST, dl, VT, Mov);
6517       }
6518     }
6519
6520     if (SecondTry)
6521       goto FailedModImm;
6522     SecondTry = true;
6523     CnstBits = UndefBits;
6524     goto AttemptModImm;
6525   }
6526
6527 // We can always fall back to a non-immediate OR.
6528 FailedModImm:
6529   return Op;
6530 }
6531
6532 // Normalize the operands of BUILD_VECTOR. The value of constant operands will
6533 // be truncated to fit element width.
6534 static SDValue NormalizeBuildVector(SDValue Op,
6535                                     SelectionDAG &DAG) {
6536   assert(Op.getOpcode() == ISD::BUILD_VECTOR && "Unknown opcode!");
6537   SDLoc dl(Op);
6538   EVT VT = Op.getValueType();
6539   EVT EltTy= VT.getVectorElementType();
6540
6541   if (EltTy.isFloatingPoint() || EltTy.getSizeInBits() > 16)
6542     return Op;
6543
6544   SmallVector<SDValue, 16> Ops;
6545   for (SDValue Lane : Op->ops()) {
6546     if (auto *CstLane = dyn_cast<ConstantSDNode>(Lane)) {
6547       APInt LowBits(EltTy.getSizeInBits(),
6548                     CstLane->getZExtValue());
6549       Lane = DAG.getConstant(LowBits.getZExtValue(), dl, MVT::i32);
6550     }
6551     Ops.push_back(Lane);
6552   }
6553   return DAG.getBuildVector(VT, dl, Ops);
6554 }
6555
6556 SDValue AArch64TargetLowering::LowerBUILD_VECTOR(SDValue Op,
6557                                                  SelectionDAG &DAG) const {
6558   SDLoc dl(Op);
6559   EVT VT = Op.getValueType();
6560   Op = NormalizeBuildVector(Op, DAG);
6561   BuildVectorSDNode *BVN = cast<BuildVectorSDNode>(Op.getNode());
6562
6563   APInt CnstBits(VT.getSizeInBits(), 0);
6564   APInt UndefBits(VT.getSizeInBits(), 0);
6565   if (resolveBuildVector(BVN, CnstBits, UndefBits)) {
6566     // We make use of a little bit of goto ickiness in order to avoid having to
6567     // duplicate the immediate matching logic for the undef toggled case.
6568     bool SecondTry = false;
6569   AttemptModImm:
6570
6571     if (CnstBits.getHiBits(64) == CnstBits.getLoBits(64)) {
6572       CnstBits = CnstBits.zextOrTrunc(64);
6573       uint64_t CnstVal = CnstBits.getZExtValue();
6574
6575       // Certain magic vector constants (used to express things like NOT
6576       // and NEG) are passed through unmodified.  This allows codegen patterns
6577       // for these operations to match.  Special-purpose patterns will lower
6578       // these immediates to MOVIs if it proves necessary.
6579       if (VT.isInteger() && (CnstVal == 0 || CnstVal == ~0ULL))
6580         return Op;
6581
6582       // The many faces of MOVI...
6583       if (AArch64_AM::isAdvSIMDModImmType10(CnstVal)) {
6584         CnstVal = AArch64_AM::encodeAdvSIMDModImmType10(CnstVal);
6585         if (VT.getSizeInBits() == 128) {
6586           SDValue Mov = DAG.getNode(AArch64ISD::MOVIedit, dl, MVT::v2i64,
6587                                     DAG.getConstant(CnstVal, dl, MVT::i32));
6588           return DAG.getNode(AArch64ISD::NVCAST, dl, VT, Mov);
6589         }
6590
6591         // Support the V64 version via subregister insertion.
6592         SDValue Mov = DAG.getNode(AArch64ISD::MOVIedit, dl, MVT::f64,
6593                                   DAG.getConstant(CnstVal, dl, MVT::i32));
6594         return DAG.getNode(AArch64ISD::NVCAST, dl, VT, Mov);
6595       }
6596
6597       if (AArch64_AM::isAdvSIMDModImmType1(CnstVal)) {
6598         CnstVal = AArch64_AM::encodeAdvSIMDModImmType1(CnstVal);
6599         MVT MovTy = (VT.getSizeInBits() == 128) ? MVT::v4i32 : MVT::v2i32;
6600         SDValue Mov = DAG.getNode(AArch64ISD::MOVIshift, dl, MovTy,
6601                                   DAG.getConstant(CnstVal, dl, MVT::i32),
6602                                   DAG.getConstant(0, dl, MVT::i32));
6603         return DAG.getNode(AArch64ISD::NVCAST, dl, VT, Mov);
6604       }
6605
6606       if (AArch64_AM::isAdvSIMDModImmType2(CnstVal)) {
6607         CnstVal = AArch64_AM::encodeAdvSIMDModImmType2(CnstVal);
6608         MVT MovTy = (VT.getSizeInBits() == 128) ? MVT::v4i32 : MVT::v2i32;
6609         SDValue Mov = DAG.getNode(AArch64ISD::MOVIshift, dl, MovTy,
6610                                   DAG.getConstant(CnstVal, dl, MVT::i32),
6611                                   DAG.getConstant(8, dl, MVT::i32));
6612         return DAG.getNode(AArch64ISD::NVCAST, dl, VT, Mov);
6613       }
6614
6615       if (AArch64_AM::isAdvSIMDModImmType3(CnstVal)) {
6616         CnstVal = AArch64_AM::encodeAdvSIMDModImmType3(CnstVal);
6617         MVT MovTy = (VT.getSizeInBits() == 128) ? MVT::v4i32 : MVT::v2i32;
6618         SDValue Mov = DAG.getNode(AArch64ISD::MOVIshift, dl, MovTy,
6619                                   DAG.getConstant(CnstVal, dl, MVT::i32),
6620                                   DAG.getConstant(16, dl, MVT::i32));
6621         return DAG.getNode(AArch64ISD::NVCAST, dl, VT, Mov);
6622       }
6623
6624       if (AArch64_AM::isAdvSIMDModImmType4(CnstVal)) {
6625         CnstVal = AArch64_AM::encodeAdvSIMDModImmType4(CnstVal);
6626         MVT MovTy = (VT.getSizeInBits() == 128) ? MVT::v4i32 : MVT::v2i32;
6627         SDValue Mov = DAG.getNode(AArch64ISD::MOVIshift, dl, MovTy,
6628                                   DAG.getConstant(CnstVal, dl, MVT::i32),
6629                                   DAG.getConstant(24, dl, MVT::i32));
6630         return DAG.getNode(AArch64ISD::NVCAST, dl, VT, Mov);
6631       }
6632
6633       if (AArch64_AM::isAdvSIMDModImmType5(CnstVal)) {
6634         CnstVal = AArch64_AM::encodeAdvSIMDModImmType5(CnstVal);
6635         MVT MovTy = (VT.getSizeInBits() == 128) ? MVT::v8i16 : MVT::v4i16;
6636         SDValue Mov = DAG.getNode(AArch64ISD::MOVIshift, dl, MovTy,
6637                                   DAG.getConstant(CnstVal, dl, MVT::i32),
6638                                   DAG.getConstant(0, dl, MVT::i32));
6639         return DAG.getNode(AArch64ISD::NVCAST, dl, VT, Mov);
6640       }
6641
6642       if (AArch64_AM::isAdvSIMDModImmType6(CnstVal)) {
6643         CnstVal = AArch64_AM::encodeAdvSIMDModImmType6(CnstVal);
6644         MVT MovTy = (VT.getSizeInBits() == 128) ? MVT::v8i16 : MVT::v4i16;
6645         SDValue Mov = DAG.getNode(AArch64ISD::MOVIshift, dl, MovTy,
6646                                   DAG.getConstant(CnstVal, dl, MVT::i32),
6647                                   DAG.getConstant(8, dl, MVT::i32));
6648         return DAG.getNode(AArch64ISD::NVCAST, dl, VT, Mov);
6649       }
6650
6651       if (AArch64_AM::isAdvSIMDModImmType7(CnstVal)) {
6652         CnstVal = AArch64_AM::encodeAdvSIMDModImmType7(CnstVal);
6653         MVT MovTy = (VT.getSizeInBits() == 128) ? MVT::v4i32 : MVT::v2i32;
6654         SDValue Mov = DAG.getNode(AArch64ISD::MOVImsl, dl, MovTy,
6655                                   DAG.getConstant(CnstVal, dl, MVT::i32),
6656                                   DAG.getConstant(264, dl, MVT::i32));
6657         return DAG.getNode(AArch64ISD::NVCAST, dl, VT, Mov);
6658       }
6659
6660       if (AArch64_AM::isAdvSIMDModImmType8(CnstVal)) {
6661         CnstVal = AArch64_AM::encodeAdvSIMDModImmType8(CnstVal);
6662         MVT MovTy = (VT.getSizeInBits() == 128) ? MVT::v4i32 : MVT::v2i32;
6663         SDValue Mov = DAG.getNode(AArch64ISD::MOVImsl, dl, MovTy,
6664                                   DAG.getConstant(CnstVal, dl, MVT::i32),
6665                                   DAG.getConstant(272, dl, MVT::i32));
6666         return DAG.getNode(AArch64ISD::NVCAST, dl, VT, Mov);
6667       }
6668
6669       if (AArch64_AM::isAdvSIMDModImmType9(CnstVal)) {
6670         CnstVal = AArch64_AM::encodeAdvSIMDModImmType9(CnstVal);
6671         MVT MovTy = (VT.getSizeInBits() == 128) ? MVT::v16i8 : MVT::v8i8;
6672         SDValue Mov = DAG.getNode(AArch64ISD::MOVI, dl, MovTy,
6673                                   DAG.getConstant(CnstVal, dl, MVT::i32));
6674         return DAG.getNode(AArch64ISD::NVCAST, dl, VT, Mov);
6675       }
6676
6677       // The few faces of FMOV...
6678       if (AArch64_AM::isAdvSIMDModImmType11(CnstVal)) {
6679         CnstVal = AArch64_AM::encodeAdvSIMDModImmType11(CnstVal);
6680         MVT MovTy = (VT.getSizeInBits() == 128) ? MVT::v4f32 : MVT::v2f32;
6681         SDValue Mov = DAG.getNode(AArch64ISD::FMOV, dl, MovTy,
6682                                   DAG.getConstant(CnstVal, dl, MVT::i32));
6683         return DAG.getNode(AArch64ISD::NVCAST, dl, VT, Mov);
6684       }
6685
6686       if (AArch64_AM::isAdvSIMDModImmType12(CnstVal) &&
6687           VT.getSizeInBits() == 128) {
6688         CnstVal = AArch64_AM::encodeAdvSIMDModImmType12(CnstVal);
6689         SDValue Mov = DAG.getNode(AArch64ISD::FMOV, dl, MVT::v2f64,
6690                                   DAG.getConstant(CnstVal, dl, MVT::i32));
6691         return DAG.getNode(AArch64ISD::NVCAST, dl, VT, Mov);
6692       }
6693
6694       // The many faces of MVNI...
6695       CnstVal = ~CnstVal;
6696       if (AArch64_AM::isAdvSIMDModImmType1(CnstVal)) {
6697         CnstVal = AArch64_AM::encodeAdvSIMDModImmType1(CnstVal);
6698         MVT MovTy = (VT.getSizeInBits() == 128) ? MVT::v4i32 : MVT::v2i32;
6699         SDValue Mov = DAG.getNode(AArch64ISD::MVNIshift, dl, MovTy,
6700                                   DAG.getConstant(CnstVal, dl, MVT::i32),
6701                                   DAG.getConstant(0, dl, MVT::i32));
6702         return DAG.getNode(AArch64ISD::NVCAST, dl, VT, Mov);
6703       }
6704
6705       if (AArch64_AM::isAdvSIMDModImmType2(CnstVal)) {
6706         CnstVal = AArch64_AM::encodeAdvSIMDModImmType2(CnstVal);
6707         MVT MovTy = (VT.getSizeInBits() == 128) ? MVT::v4i32 : MVT::v2i32;
6708         SDValue Mov = DAG.getNode(AArch64ISD::MVNIshift, dl, MovTy,
6709                                   DAG.getConstant(CnstVal, dl, MVT::i32),
6710                                   DAG.getConstant(8, dl, MVT::i32));
6711         return DAG.getNode(AArch64ISD::NVCAST, dl, VT, Mov);
6712       }
6713
6714       if (AArch64_AM::isAdvSIMDModImmType3(CnstVal)) {
6715         CnstVal = AArch64_AM::encodeAdvSIMDModImmType3(CnstVal);
6716         MVT MovTy = (VT.getSizeInBits() == 128) ? MVT::v4i32 : MVT::v2i32;
6717         SDValue Mov = DAG.getNode(AArch64ISD::MVNIshift, dl, MovTy,
6718                                   DAG.getConstant(CnstVal, dl, MVT::i32),
6719                                   DAG.getConstant(16, dl, MVT::i32));
6720         return DAG.getNode(AArch64ISD::NVCAST, dl, VT, Mov);
6721       }
6722
6723       if (AArch64_AM::isAdvSIMDModImmType4(CnstVal)) {
6724         CnstVal = AArch64_AM::encodeAdvSIMDModImmType4(CnstVal);
6725         MVT MovTy = (VT.getSizeInBits() == 128) ? MVT::v4i32 : MVT::v2i32;
6726         SDValue Mov = DAG.getNode(AArch64ISD::MVNIshift, dl, MovTy,
6727                                   DAG.getConstant(CnstVal, dl, MVT::i32),
6728                                   DAG.getConstant(24, dl, MVT::i32));
6729         return DAG.getNode(AArch64ISD::NVCAST, dl, VT, Mov);
6730       }
6731
6732       if (AArch64_AM::isAdvSIMDModImmType5(CnstVal)) {
6733         CnstVal = AArch64_AM::encodeAdvSIMDModImmType5(CnstVal);
6734         MVT MovTy = (VT.getSizeInBits() == 128) ? MVT::v8i16 : MVT::v4i16;
6735         SDValue Mov = DAG.getNode(AArch64ISD::MVNIshift, dl, MovTy,
6736                                   DAG.getConstant(CnstVal, dl, MVT::i32),
6737                                   DAG.getConstant(0, dl, MVT::i32));
6738         return DAG.getNode(AArch64ISD::NVCAST, dl, VT, Mov);
6739       }
6740
6741       if (AArch64_AM::isAdvSIMDModImmType6(CnstVal)) {
6742         CnstVal = AArch64_AM::encodeAdvSIMDModImmType6(CnstVal);
6743         MVT MovTy = (VT.getSizeInBits() == 128) ? MVT::v8i16 : MVT::v4i16;
6744         SDValue Mov = DAG.getNode(AArch64ISD::MVNIshift, dl, MovTy,
6745                                   DAG.getConstant(CnstVal, dl, MVT::i32),
6746                                   DAG.getConstant(8, dl, MVT::i32));
6747         return DAG.getNode(AArch64ISD::NVCAST, dl, VT, Mov);
6748       }
6749
6750       if (AArch64_AM::isAdvSIMDModImmType7(CnstVal)) {
6751         CnstVal = AArch64_AM::encodeAdvSIMDModImmType7(CnstVal);
6752         MVT MovTy = (VT.getSizeInBits() == 128) ? MVT::v4i32 : MVT::v2i32;
6753         SDValue Mov = DAG.getNode(AArch64ISD::MVNImsl, dl, MovTy,
6754                                   DAG.getConstant(CnstVal, dl, MVT::i32),
6755                                   DAG.getConstant(264, dl, MVT::i32));
6756         return DAG.getNode(AArch64ISD::NVCAST, dl, VT, Mov);
6757       }
6758
6759       if (AArch64_AM::isAdvSIMDModImmType8(CnstVal)) {
6760         CnstVal = AArch64_AM::encodeAdvSIMDModImmType8(CnstVal);
6761         MVT MovTy = (VT.getSizeInBits() == 128) ? MVT::v4i32 : MVT::v2i32;
6762         SDValue Mov = DAG.getNode(AArch64ISD::MVNImsl, dl, MovTy,
6763                                   DAG.getConstant(CnstVal, dl, MVT::i32),
6764                                   DAG.getConstant(272, dl, MVT::i32));
6765         return DAG.getNode(AArch64ISD::NVCAST, dl, VT, Mov);
6766       }
6767     }
6768
6769     if (SecondTry)
6770       goto FailedModImm;
6771     SecondTry = true;
6772     CnstBits = UndefBits;
6773     goto AttemptModImm;
6774   }
6775 FailedModImm:
6776
6777   // Scan through the operands to find some interesting properties we can
6778   // exploit:
6779   //   1) If only one value is used, we can use a DUP, or
6780   //   2) if only the low element is not undef, we can just insert that, or
6781   //   3) if only one constant value is used (w/ some non-constant lanes),
6782   //      we can splat the constant value into the whole vector then fill
6783   //      in the non-constant lanes.
6784   //   4) FIXME: If different constant values are used, but we can intelligently
6785   //             select the values we'll be overwriting for the non-constant
6786   //             lanes such that we can directly materialize the vector
6787   //             some other way (MOVI, e.g.), we can be sneaky.
6788   unsigned NumElts = VT.getVectorNumElements();
6789   bool isOnlyLowElement = true;
6790   bool usesOnlyOneValue = true;
6791   bool usesOnlyOneConstantValue = true;
6792   bool isConstant = true;
6793   unsigned NumConstantLanes = 0;
6794   SDValue Value;
6795   SDValue ConstantValue;
6796   for (unsigned i = 0; i < NumElts; ++i) {
6797     SDValue V = Op.getOperand(i);
6798     if (V.isUndef())
6799       continue;
6800     if (i > 0)
6801       isOnlyLowElement = false;
6802     if (!isa<ConstantFPSDNode>(V) && !isa<ConstantSDNode>(V))
6803       isConstant = false;
6804
6805     if (isa<ConstantSDNode>(V) || isa<ConstantFPSDNode>(V)) {
6806       ++NumConstantLanes;
6807       if (!ConstantValue.getNode())
6808         ConstantValue = V;
6809       else if (ConstantValue != V)
6810         usesOnlyOneConstantValue = false;
6811     }
6812
6813     if (!Value.getNode())
6814       Value = V;
6815     else if (V != Value)
6816       usesOnlyOneValue = false;
6817   }
6818
6819   if (!Value.getNode()) {
6820     DEBUG(dbgs() << "LowerBUILD_VECTOR: value undefined, creating undef node\n");
6821     return DAG.getUNDEF(VT);
6822   }
6823
6824   if (isOnlyLowElement) {
6825     DEBUG(dbgs() << "LowerBUILD_VECTOR: only low element used, creating 1 "
6826                     "SCALAR_TO_VECTOR node\n");
6827     return DAG.getNode(ISD::SCALAR_TO_VECTOR, dl, VT, Value);
6828   }
6829
6830   // Use DUP for non-constant splats. For f32 constant splats, reduce to
6831   // i32 and try again.
6832   if (usesOnlyOneValue) {
6833     if (!isConstant) {
6834       if (Value.getOpcode() != ISD::EXTRACT_VECTOR_ELT ||
6835           Value.getValueType() != VT) {
6836         DEBUG(dbgs() << "LowerBUILD_VECTOR: use DUP for non-constant splats\n");
6837         return DAG.getNode(AArch64ISD::DUP, dl, VT, Value);
6838       }
6839
6840       // This is actually a DUPLANExx operation, which keeps everything vectory.
6841
6842       SDValue Lane = Value.getOperand(1);
6843       Value = Value.getOperand(0);
6844       if (Value.getValueSizeInBits() == 64) {
6845         DEBUG(dbgs() << "LowerBUILD_VECTOR: DUPLANE works on 128-bit vectors, "
6846                         "widening it\n");
6847         Value = WidenVector(Value, DAG);
6848       }
6849
6850       unsigned Opcode = getDUPLANEOp(VT.getVectorElementType());
6851       return DAG.getNode(Opcode, dl, VT, Value, Lane);
6852     }
6853
6854     if (VT.getVectorElementType().isFloatingPoint()) {
6855       SmallVector<SDValue, 8> Ops;
6856       EVT EltTy = VT.getVectorElementType();
6857       assert ((EltTy == MVT::f16 || EltTy == MVT::f32 || EltTy == MVT::f64) &&
6858               "Unsupported floating-point vector type");
6859       DEBUG(dbgs() << "LowerBUILD_VECTOR: float constant splats, creating int "
6860                       "BITCASTS, and try again\n");
6861       MVT NewType = MVT::getIntegerVT(EltTy.getSizeInBits());
6862       for (unsigned i = 0; i < NumElts; ++i)
6863         Ops.push_back(DAG.getNode(ISD::BITCAST, dl, NewType, Op.getOperand(i)));
6864       EVT VecVT = EVT::getVectorVT(*DAG.getContext(), NewType, NumElts);
6865       SDValue Val = DAG.getBuildVector(VecVT, dl, Ops);
6866       DEBUG(
6867         dbgs() << "LowerBUILD_VECTOR: trying to lower new vector: ";
6868         Val.dump();
6869       );
6870       Val = LowerBUILD_VECTOR(Val, DAG);
6871       if (Val.getNode())
6872         return DAG.getNode(ISD::BITCAST, dl, VT, Val);
6873     }
6874   }
6875
6876   // If there was only one constant value used and for more than one lane,
6877   // start by splatting that value, then replace the non-constant lanes. This
6878   // is better than the default, which will perform a separate initialization
6879   // for each lane.
6880   if (NumConstantLanes > 0 && usesOnlyOneConstantValue) {
6881     SDValue Val = DAG.getNode(AArch64ISD::DUP, dl, VT, ConstantValue);
6882     // Now insert the non-constant lanes.
6883     for (unsigned i = 0; i < NumElts; ++i) {
6884       SDValue V = Op.getOperand(i);
6885       SDValue LaneIdx = DAG.getConstant(i, dl, MVT::i64);
6886       if (!isa<ConstantSDNode>(V) && !isa<ConstantFPSDNode>(V)) {
6887         // Note that type legalization likely mucked about with the VT of the
6888         // source operand, so we may have to convert it here before inserting.
6889         Val = DAG.getNode(ISD::INSERT_VECTOR_ELT, dl, VT, Val, V, LaneIdx);
6890       }
6891     }
6892     return Val;
6893   }
6894
6895   // This will generate a load from the constant pool.
6896   if (isConstant) {
6897     DEBUG(dbgs() << "LowerBUILD_VECTOR: all elements are constant, use default "
6898                     "expansion\n");
6899     return SDValue();
6900   }
6901
6902   // Empirical tests suggest this is rarely worth it for vectors of length <= 2.
6903   if (NumElts >= 4) {
6904     if (SDValue shuffle = ReconstructShuffle(Op, DAG))
6905       return shuffle;
6906   }
6907
6908   // If all else fails, just use a sequence of INSERT_VECTOR_ELT when we
6909   // know the default expansion would otherwise fall back on something even
6910   // worse. For a vector with one or two non-undef values, that's
6911   // scalar_to_vector for the elements followed by a shuffle (provided the
6912   // shuffle is valid for the target) and materialization element by element
6913   // on the stack followed by a load for everything else.
6914   if (!isConstant && !usesOnlyOneValue) {
6915     DEBUG(dbgs() << "LowerBUILD_VECTOR: alternatives failed, creating sequence "
6916                     "of INSERT_VECTOR_ELT\n");
6917
6918     SDValue Vec = DAG.getUNDEF(VT);
6919     SDValue Op0 = Op.getOperand(0);
6920     unsigned i = 0;
6921
6922     // Use SCALAR_TO_VECTOR for lane zero to
6923     // a) Avoid a RMW dependency on the full vector register, and
6924     // b) Allow the register coalescer to fold away the copy if the
6925     //    value is already in an S or D register, and we're forced to emit an
6926     //    INSERT_SUBREG that we can't fold anywhere.
6927     //
6928     // We also allow types like i8 and i16 which are illegal scalar but legal
6929     // vector element types. After type-legalization the inserted value is
6930     // extended (i32) and it is safe to cast them to the vector type by ignoring
6931     // the upper bits of the lowest lane (e.g. v8i8, v4i16).
6932     if (!Op0.isUndef()) {
6933       DEBUG(dbgs() << "Creating node for op0, it is not undefined:\n");
6934       Vec = DAG.getNode(ISD::SCALAR_TO_VECTOR, dl, VT, Op0);
6935       ++i;
6936     }
6937     DEBUG(
6938       if (i < NumElts)
6939         dbgs() << "Creating nodes for the other vector elements:\n";
6940     );
6941     for (; i < NumElts; ++i) {
6942       SDValue V = Op.getOperand(i);
6943       if (V.isUndef())
6944         continue;
6945       SDValue LaneIdx = DAG.getConstant(i, dl, MVT::i64);
6946       Vec = DAG.getNode(ISD::INSERT_VECTOR_ELT, dl, VT, Vec, V, LaneIdx);
6947     }
6948     return Vec;
6949   }
6950
6951   DEBUG(dbgs() << "LowerBUILD_VECTOR: use default expansion, failed to find "
6952                   "better alternative\n");
6953   return SDValue();
6954 }
6955
6956 SDValue AArch64TargetLowering::LowerINSERT_VECTOR_ELT(SDValue Op,
6957                                                       SelectionDAG &DAG) const {
6958   assert(Op.getOpcode() == ISD::INSERT_VECTOR_ELT && "Unknown opcode!");
6959
6960   // Check for non-constant or out of range lane.
6961   EVT VT = Op.getOperand(0).getValueType();
6962   ConstantSDNode *CI = dyn_cast<ConstantSDNode>(Op.getOperand(2));
6963   if (!CI || CI->getZExtValue() >= VT.getVectorNumElements())
6964     return SDValue();
6965
6966
6967   // Insertion/extraction are legal for V128 types.
6968   if (VT == MVT::v16i8 || VT == MVT::v8i16 || VT == MVT::v4i32 ||
6969       VT == MVT::v2i64 || VT == MVT::v4f32 || VT == MVT::v2f64 ||
6970       VT == MVT::v8f16)
6971     return Op;
6972
6973   if (VT != MVT::v8i8 && VT != MVT::v4i16 && VT != MVT::v2i32 &&
6974       VT != MVT::v1i64 && VT != MVT::v2f32 && VT != MVT::v4f16)
6975     return SDValue();
6976
6977   // For V64 types, we perform insertion by expanding the value
6978   // to a V128 type and perform the insertion on that.
6979   SDLoc DL(Op);
6980   SDValue WideVec = WidenVector(Op.getOperand(0), DAG);
6981   EVT WideTy = WideVec.getValueType();
6982
6983   SDValue Node = DAG.getNode(ISD::INSERT_VECTOR_ELT, DL, WideTy, WideVec,
6984                              Op.getOperand(1), Op.getOperand(2));
6985   // Re-narrow the resultant vector.
6986   return NarrowVector(Node, DAG);
6987 }
6988
6989 SDValue
6990 AArch64TargetLowering::LowerEXTRACT_VECTOR_ELT(SDValue Op,
6991                                                SelectionDAG &DAG) const {
6992   assert(Op.getOpcode() == ISD::EXTRACT_VECTOR_ELT && "Unknown opcode!");
6993
6994   // Check for non-constant or out of range lane.
6995   EVT VT = Op.getOperand(0).getValueType();
6996   ConstantSDNode *CI = dyn_cast<ConstantSDNode>(Op.getOperand(1));
6997   if (!CI || CI->getZExtValue() >= VT.getVectorNumElements())
6998     return SDValue();
6999
7000
7001   // Insertion/extraction are legal for V128 types.
7002   if (VT == MVT::v16i8 || VT == MVT::v8i16 || VT == MVT::v4i32 ||
7003       VT == MVT::v2i64 || VT == MVT::v4f32 || VT == MVT::v2f64 ||
7004       VT == MVT::v8f16)
7005     return Op;
7006
7007   if (VT != MVT::v8i8 && VT != MVT::v4i16 && VT != MVT::v2i32 &&
7008       VT != MVT::v1i64 && VT != MVT::v2f32 && VT != MVT::v4f16)
7009     return SDValue();
7010
7011   // For V64 types, we perform extraction by expanding the value
7012   // to a V128 type and perform the extraction on that.
7013   SDLoc DL(Op);
7014   SDValue WideVec = WidenVector(Op.getOperand(0), DAG);
7015   EVT WideTy = WideVec.getValueType();
7016
7017   EVT ExtrTy = WideTy.getVectorElementType();
7018   if (ExtrTy == MVT::i16 || ExtrTy == MVT::i8)
7019     ExtrTy = MVT::i32;
7020
7021   // For extractions, we just return the result directly.
7022   return DAG.getNode(ISD::EXTRACT_VECTOR_ELT, DL, ExtrTy, WideVec,
7023                      Op.getOperand(1));
7024 }
7025
7026 SDValue AArch64TargetLowering::LowerEXTRACT_SUBVECTOR(SDValue Op,
7027                                                       SelectionDAG &DAG) const {
7028   EVT VT = Op.getOperand(0).getValueType();
7029   SDLoc dl(Op);
7030   // Just in case...
7031   if (!VT.isVector())
7032     return SDValue();
7033
7034   ConstantSDNode *Cst = dyn_cast<ConstantSDNode>(Op.getOperand(1));
7035   if (!Cst)
7036     return SDValue();
7037   unsigned Val = Cst->getZExtValue();
7038
7039   unsigned Size = Op.getValueSizeInBits();
7040
7041   // This will get lowered to an appropriate EXTRACT_SUBREG in ISel.
7042   if (Val == 0)
7043     return Op;
7044
7045   // If this is extracting the upper 64-bits of a 128-bit vector, we match
7046   // that directly.
7047   if (Size == 64 && Val * VT.getScalarSizeInBits() == 64)
7048     return Op;
7049
7050   return SDValue();
7051 }
7052
7053 bool AArch64TargetLowering::isShuffleMaskLegal(ArrayRef<int> M, EVT VT) const {
7054   if (VT.getVectorNumElements() == 4 &&
7055       (VT.is128BitVector() || VT.is64BitVector())) {
7056     unsigned PFIndexes[4];
7057     for (unsigned i = 0; i != 4; ++i) {
7058       if (M[i] < 0)
7059         PFIndexes[i] = 8;
7060       else
7061         PFIndexes[i] = M[i];
7062     }
7063
7064     // Compute the index in the perfect shuffle table.
7065     unsigned PFTableIndex = PFIndexes[0] * 9 * 9 * 9 + PFIndexes[1] * 9 * 9 +
7066                             PFIndexes[2] * 9 + PFIndexes[3];
7067     unsigned PFEntry = PerfectShuffleTable[PFTableIndex];
7068     unsigned Cost = (PFEntry >> 30);
7069
7070     if (Cost <= 4)
7071       return true;
7072   }
7073
7074   bool DummyBool;
7075   int DummyInt;
7076   unsigned DummyUnsigned;
7077
7078   return (ShuffleVectorSDNode::isSplatMask(&M[0], VT) || isREVMask(M, VT, 64) ||
7079           isREVMask(M, VT, 32) || isREVMask(M, VT, 16) ||
7080           isEXTMask(M, VT, DummyBool, DummyUnsigned) ||
7081           // isTBLMask(M, VT) || // FIXME: Port TBL support from ARM.
7082           isTRNMask(M, VT, DummyUnsigned) || isUZPMask(M, VT, DummyUnsigned) ||
7083           isZIPMask(M, VT, DummyUnsigned) ||
7084           isTRN_v_undef_Mask(M, VT, DummyUnsigned) ||
7085           isUZP_v_undef_Mask(M, VT, DummyUnsigned) ||
7086           isZIP_v_undef_Mask(M, VT, DummyUnsigned) ||
7087           isINSMask(M, VT.getVectorNumElements(), DummyBool, DummyInt) ||
7088           isConcatMask(M, VT, VT.getSizeInBits() == 128));
7089 }
7090
7091 /// getVShiftImm - Check if this is a valid build_vector for the immediate
7092 /// operand of a vector shift operation, where all the elements of the
7093 /// build_vector must have the same constant integer value.
7094 static bool getVShiftImm(SDValue Op, unsigned ElementBits, int64_t &Cnt) {
7095   // Ignore bit_converts.
7096   while (Op.getOpcode() == ISD::BITCAST)
7097     Op = Op.getOperand(0);
7098   BuildVectorSDNode *BVN = dyn_cast<BuildVectorSDNode>(Op.getNode());
7099   APInt SplatBits, SplatUndef;
7100   unsigned SplatBitSize;
7101   bool HasAnyUndefs;
7102   if (!BVN || !BVN->isConstantSplat(SplatBits, SplatUndef, SplatBitSize,
7103                                     HasAnyUndefs, ElementBits) ||
7104       SplatBitSize > ElementBits)
7105     return false;
7106   Cnt = SplatBits.getSExtValue();
7107   return true;
7108 }
7109
7110 /// isVShiftLImm - Check if this is a valid build_vector for the immediate
7111 /// operand of a vector shift left operation.  That value must be in the range:
7112 ///   0 <= Value < ElementBits for a left shift; or
7113 ///   0 <= Value <= ElementBits for a long left shift.
7114 static bool isVShiftLImm(SDValue Op, EVT VT, bool isLong, int64_t &Cnt) {
7115   assert(VT.isVector() && "vector shift count is not a vector type");
7116   int64_t ElementBits = VT.getScalarSizeInBits();
7117   if (!getVShiftImm(Op, ElementBits, Cnt))
7118     return false;
7119   return (Cnt >= 0 && (isLong ? Cnt - 1 : Cnt) < ElementBits);
7120 }
7121
7122 /// isVShiftRImm - Check if this is a valid build_vector for the immediate
7123 /// operand of a vector shift right operation. The value must be in the range:
7124 ///   1 <= Value <= ElementBits for a right shift; or
7125 static bool isVShiftRImm(SDValue Op, EVT VT, bool isNarrow, int64_t &Cnt) {
7126   assert(VT.isVector() && "vector shift count is not a vector type");
7127   int64_t ElementBits = VT.getScalarSizeInBits();
7128   if (!getVShiftImm(Op, ElementBits, Cnt))
7129     return false;
7130   return (Cnt >= 1 && Cnt <= (isNarrow ? ElementBits / 2 : ElementBits));
7131 }
7132
7133 SDValue AArch64TargetLowering::LowerVectorSRA_SRL_SHL(SDValue Op,
7134                                                       SelectionDAG &DAG) const {
7135   EVT VT = Op.getValueType();
7136   SDLoc DL(Op);
7137   int64_t Cnt;
7138
7139   if (!Op.getOperand(1).getValueType().isVector())
7140     return Op;
7141   unsigned EltSize = VT.getScalarSizeInBits();
7142
7143   switch (Op.getOpcode()) {
7144   default:
7145     llvm_unreachable("unexpected shift opcode");
7146
7147   case ISD::SHL:
7148     if (isVShiftLImm(Op.getOperand(1), VT, false, Cnt) && Cnt < EltSize)
7149       return DAG.getNode(AArch64ISD::VSHL, DL, VT, Op.getOperand(0),
7150                          DAG.getConstant(Cnt, DL, MVT::i32));
7151     return DAG.getNode(ISD::INTRINSIC_WO_CHAIN, DL, VT,
7152                        DAG.getConstant(Intrinsic::aarch64_neon_ushl, DL,
7153                                        MVT::i32),
7154                        Op.getOperand(0), Op.getOperand(1));
7155   case ISD::SRA:
7156   case ISD::SRL:
7157     // Right shift immediate
7158     if (isVShiftRImm(Op.getOperand(1), VT, false, Cnt) && Cnt < EltSize) {
7159       unsigned Opc =
7160           (Op.getOpcode() == ISD::SRA) ? AArch64ISD::VASHR : AArch64ISD::VLSHR;
7161       return DAG.getNode(Opc, DL, VT, Op.getOperand(0),
7162                          DAG.getConstant(Cnt, DL, MVT::i32));
7163     }
7164
7165     // Right shift register.  Note, there is not a shift right register
7166     // instruction, but the shift left register instruction takes a signed
7167     // value, where negative numbers specify a right shift.
7168     unsigned Opc = (Op.getOpcode() == ISD::SRA) ? Intrinsic::aarch64_neon_sshl
7169                                                 : Intrinsic::aarch64_neon_ushl;
7170     // negate the shift amount
7171     SDValue NegShift = DAG.getNode(AArch64ISD::NEG, DL, VT, Op.getOperand(1));
7172     SDValue NegShiftLeft =
7173         DAG.getNode(ISD::INTRINSIC_WO_CHAIN, DL, VT,
7174                     DAG.getConstant(Opc, DL, MVT::i32), Op.getOperand(0),
7175                     NegShift);
7176     return NegShiftLeft;
7177   }
7178
7179   return SDValue();
7180 }
7181
7182 static SDValue EmitVectorComparison(SDValue LHS, SDValue RHS,
7183                                     AArch64CC::CondCode CC, bool NoNans, EVT VT,
7184                                     const SDLoc &dl, SelectionDAG &DAG) {
7185   EVT SrcVT = LHS.getValueType();
7186   assert(VT.getSizeInBits() == SrcVT.getSizeInBits() &&
7187          "function only supposed to emit natural comparisons");
7188
7189   BuildVectorSDNode *BVN = dyn_cast<BuildVectorSDNode>(RHS.getNode());
7190   APInt CnstBits(VT.getSizeInBits(), 0);
7191   APInt UndefBits(VT.getSizeInBits(), 0);
7192   bool IsCnst = BVN && resolveBuildVector(BVN, CnstBits, UndefBits);
7193   bool IsZero = IsCnst && (CnstBits == 0);
7194
7195   if (SrcVT.getVectorElementType().isFloatingPoint()) {
7196     switch (CC) {
7197     default:
7198       return SDValue();
7199     case AArch64CC::NE: {
7200       SDValue Fcmeq;
7201       if (IsZero)
7202         Fcmeq = DAG.getNode(AArch64ISD::FCMEQz, dl, VT, LHS);
7203       else
7204         Fcmeq = DAG.getNode(AArch64ISD::FCMEQ, dl, VT, LHS, RHS);
7205       return DAG.getNode(AArch64ISD::NOT, dl, VT, Fcmeq);
7206     }
7207     case AArch64CC::EQ:
7208       if (IsZero)
7209         return DAG.getNode(AArch64ISD::FCMEQz, dl, VT, LHS);
7210       return DAG.getNode(AArch64ISD::FCMEQ, dl, VT, LHS, RHS);
7211     case AArch64CC::GE:
7212       if (IsZero)
7213         return DAG.getNode(AArch64ISD::FCMGEz, dl, VT, LHS);
7214       return DAG.getNode(AArch64ISD::FCMGE, dl, VT, LHS, RHS);
7215     case AArch64CC::GT:
7216       if (IsZero)
7217         return DAG.getNode(AArch64ISD::FCMGTz, dl, VT, LHS);
7218       return DAG.getNode(AArch64ISD::FCMGT, dl, VT, LHS, RHS);
7219     case AArch64CC::LS:
7220       if (IsZero)
7221         return DAG.getNode(AArch64ISD::FCMLEz, dl, VT, LHS);
7222       return DAG.getNode(AArch64ISD::FCMGE, dl, VT, RHS, LHS);
7223     case AArch64CC::LT:
7224       if (!NoNans)
7225         return SDValue();
7226       // If we ignore NaNs then we can use to the MI implementation.
7227       LLVM_FALLTHROUGH;
7228     case AArch64CC::MI:
7229       if (IsZero)
7230         return DAG.getNode(AArch64ISD::FCMLTz, dl, VT, LHS);
7231       return DAG.getNode(AArch64ISD::FCMGT, dl, VT, RHS, LHS);
7232     }
7233   }
7234
7235   switch (CC) {
7236   default:
7237     return SDValue();
7238   case AArch64CC::NE: {
7239     SDValue Cmeq;
7240     if (IsZero)
7241       Cmeq = DAG.getNode(AArch64ISD::CMEQz, dl, VT, LHS);
7242     else
7243       Cmeq = DAG.getNode(AArch64ISD::CMEQ, dl, VT, LHS, RHS);
7244     return DAG.getNode(AArch64ISD::NOT, dl, VT, Cmeq);
7245   }
7246   case AArch64CC::EQ:
7247     if (IsZero)
7248       return DAG.getNode(AArch64ISD::CMEQz, dl, VT, LHS);
7249     return DAG.getNode(AArch64ISD::CMEQ, dl, VT, LHS, RHS);
7250   case AArch64CC::GE:
7251     if (IsZero)
7252       return DAG.getNode(AArch64ISD::CMGEz, dl, VT, LHS);
7253     return DAG.getNode(AArch64ISD::CMGE, dl, VT, LHS, RHS);
7254   case AArch64CC::GT:
7255     if (IsZero)
7256       return DAG.getNode(AArch64ISD::CMGTz, dl, VT, LHS);
7257     return DAG.getNode(AArch64ISD::CMGT, dl, VT, LHS, RHS);
7258   case AArch64CC::LE:
7259     if (IsZero)
7260       return DAG.getNode(AArch64ISD::CMLEz, dl, VT, LHS);
7261     return DAG.getNode(AArch64ISD::CMGE, dl, VT, RHS, LHS);
7262   case AArch64CC::LS:
7263     return DAG.getNode(AArch64ISD::CMHS, dl, VT, RHS, LHS);
7264   case AArch64CC::LO:
7265     return DAG.getNode(AArch64ISD::CMHI, dl, VT, RHS, LHS);
7266   case AArch64CC::LT:
7267     if (IsZero)
7268       return DAG.getNode(AArch64ISD::CMLTz, dl, VT, LHS);
7269     return DAG.getNode(AArch64ISD::CMGT, dl, VT, RHS, LHS);
7270   case AArch64CC::HI:
7271     return DAG.getNode(AArch64ISD::CMHI, dl, VT, LHS, RHS);
7272   case AArch64CC::HS:
7273     return DAG.getNode(AArch64ISD::CMHS, dl, VT, LHS, RHS);
7274   }
7275 }
7276
7277 SDValue AArch64TargetLowering::LowerVSETCC(SDValue Op,
7278                                            SelectionDAG &DAG) const {
7279   ISD::CondCode CC = cast<CondCodeSDNode>(Op.getOperand(2))->get();
7280   SDValue LHS = Op.getOperand(0);
7281   SDValue RHS = Op.getOperand(1);
7282   EVT CmpVT = LHS.getValueType().changeVectorElementTypeToInteger();
7283   SDLoc dl(Op);
7284
7285   if (LHS.getValueType().getVectorElementType().isInteger()) {
7286     assert(LHS.getValueType() == RHS.getValueType());
7287     AArch64CC::CondCode AArch64CC = changeIntCCToAArch64CC(CC);
7288     SDValue Cmp =
7289         EmitVectorComparison(LHS, RHS, AArch64CC, false, CmpVT, dl, DAG);
7290     return DAG.getSExtOrTrunc(Cmp, dl, Op.getValueType());
7291   }
7292
7293   if (LHS.getValueType().getVectorElementType() == MVT::f16)
7294     return SDValue();
7295
7296   assert(LHS.getValueType().getVectorElementType() == MVT::f32 ||
7297          LHS.getValueType().getVectorElementType() == MVT::f64);
7298
7299   // Unfortunately, the mapping of LLVM FP CC's onto AArch64 CC's isn't totally
7300   // clean.  Some of them require two branches to implement.
7301   AArch64CC::CondCode CC1, CC2;
7302   bool ShouldInvert;
7303   changeVectorFPCCToAArch64CC(CC, CC1, CC2, ShouldInvert);
7304
7305   bool NoNaNs = getTargetMachine().Options.NoNaNsFPMath;
7306   SDValue Cmp =
7307       EmitVectorComparison(LHS, RHS, CC1, NoNaNs, CmpVT, dl, DAG);
7308   if (!Cmp.getNode())
7309     return SDValue();
7310
7311   if (CC2 != AArch64CC::AL) {
7312     SDValue Cmp2 =
7313         EmitVectorComparison(LHS, RHS, CC2, NoNaNs, CmpVT, dl, DAG);
7314     if (!Cmp2.getNode())
7315       return SDValue();
7316
7317     Cmp = DAG.getNode(ISD::OR, dl, CmpVT, Cmp, Cmp2);
7318   }
7319
7320   Cmp = DAG.getSExtOrTrunc(Cmp, dl, Op.getValueType());
7321
7322   if (ShouldInvert)
7323     return Cmp = DAG.getNOT(dl, Cmp, Cmp.getValueType());
7324
7325   return Cmp;
7326 }
7327
7328 static SDValue getReductionSDNode(unsigned Op, SDLoc DL, SDValue ScalarOp,
7329                                   SelectionDAG &DAG) {
7330   SDValue VecOp = ScalarOp.getOperand(0);
7331   auto Rdx = DAG.getNode(Op, DL, VecOp.getSimpleValueType(), VecOp);
7332   return DAG.getNode(ISD::EXTRACT_VECTOR_ELT, DL, ScalarOp.getValueType(), Rdx,
7333                      DAG.getConstant(0, DL, MVT::i64));
7334 }
7335
7336 SDValue AArch64TargetLowering::LowerVECREDUCE(SDValue Op,
7337                                               SelectionDAG &DAG) const {
7338   SDLoc dl(Op);
7339   switch (Op.getOpcode()) {
7340   case ISD::VECREDUCE_ADD:
7341     return getReductionSDNode(AArch64ISD::UADDV, dl, Op, DAG);
7342   case ISD::VECREDUCE_SMAX:
7343     return getReductionSDNode(AArch64ISD::SMAXV, dl, Op, DAG);
7344   case ISD::VECREDUCE_SMIN:
7345     return getReductionSDNode(AArch64ISD::SMINV, dl, Op, DAG);
7346   case ISD::VECREDUCE_UMAX:
7347     return getReductionSDNode(AArch64ISD::UMAXV, dl, Op, DAG);
7348   case ISD::VECREDUCE_UMIN:
7349     return getReductionSDNode(AArch64ISD::UMINV, dl, Op, DAG);
7350   case ISD::VECREDUCE_FMAX: {
7351     assert(Op->getFlags().hasNoNaNs() && "fmax vector reduction needs NoNaN flag");
7352     return DAG.getNode(
7353         ISD::INTRINSIC_WO_CHAIN, dl, Op.getValueType(),
7354         DAG.getConstant(Intrinsic::aarch64_neon_fmaxnmv, dl, MVT::i32),
7355         Op.getOperand(0));
7356   }
7357   case ISD::VECREDUCE_FMIN: {
7358     assert(Op->getFlags().hasNoNaNs() && "fmin vector reduction needs NoNaN flag");
7359     return DAG.getNode(
7360         ISD::INTRINSIC_WO_CHAIN, dl, Op.getValueType(),
7361         DAG.getConstant(Intrinsic::aarch64_neon_fminnmv, dl, MVT::i32),
7362         Op.getOperand(0));
7363   }
7364   default:
7365     llvm_unreachable("Unhandled reduction");
7366   }
7367 }
7368
7369 /// getTgtMemIntrinsic - Represent NEON load and store intrinsics as
7370 /// MemIntrinsicNodes.  The associated MachineMemOperands record the alignment
7371 /// specified in the intrinsic calls.
7372 bool AArch64TargetLowering::getTgtMemIntrinsic(IntrinsicInfo &Info,
7373                                                const CallInst &I,
7374                                                MachineFunction &MF,
7375                                                unsigned Intrinsic) const {
7376   auto &DL = I.getModule()->getDataLayout();
7377   switch (Intrinsic) {
7378   case Intrinsic::aarch64_neon_ld2:
7379   case Intrinsic::aarch64_neon_ld3:
7380   case Intrinsic::aarch64_neon_ld4:
7381   case Intrinsic::aarch64_neon_ld1x2:
7382   case Intrinsic::aarch64_neon_ld1x3:
7383   case Intrinsic::aarch64_neon_ld1x4:
7384   case Intrinsic::aarch64_neon_ld2lane:
7385   case Intrinsic::aarch64_neon_ld3lane:
7386   case Intrinsic::aarch64_neon_ld4lane:
7387   case Intrinsic::aarch64_neon_ld2r:
7388   case Intrinsic::aarch64_neon_ld3r:
7389   case Intrinsic::aarch64_neon_ld4r: {
7390     Info.opc = ISD::INTRINSIC_W_CHAIN;
7391     // Conservatively set memVT to the entire set of vectors loaded.
7392     uint64_t NumElts = DL.getTypeSizeInBits(I.getType()) / 64;
7393     Info.memVT = EVT::getVectorVT(I.getType()->getContext(), MVT::i64, NumElts);
7394     Info.ptrVal = I.getArgOperand(I.getNumArgOperands() - 1);
7395     Info.offset = 0;
7396     Info.align = 0;
7397     // volatile loads with NEON intrinsics not supported
7398     Info.flags = MachineMemOperand::MOLoad;
7399     return true;
7400   }
7401   case Intrinsic::aarch64_neon_st2:
7402   case Intrinsic::aarch64_neon_st3:
7403   case Intrinsic::aarch64_neon_st4:
7404   case Intrinsic::aarch64_neon_st1x2:
7405   case Intrinsic::aarch64_neon_st1x3:
7406   case Intrinsic::aarch64_neon_st1x4:
7407   case Intrinsic::aarch64_neon_st2lane:
7408   case Intrinsic::aarch64_neon_st3lane:
7409   case Intrinsic::aarch64_neon_st4lane: {
7410     Info.opc = ISD::INTRINSIC_VOID;
7411     // Conservatively set memVT to the entire set of vectors stored.
7412     unsigned NumElts = 0;
7413     for (unsigned ArgI = 1, ArgE = I.getNumArgOperands(); ArgI < ArgE; ++ArgI) {
7414       Type *ArgTy = I.getArgOperand(ArgI)->getType();
7415       if (!ArgTy->isVectorTy())
7416         break;
7417       NumElts += DL.getTypeSizeInBits(ArgTy) / 64;
7418     }
7419     Info.memVT = EVT::getVectorVT(I.getType()->getContext(), MVT::i64, NumElts);
7420     Info.ptrVal = I.getArgOperand(I.getNumArgOperands() - 1);
7421     Info.offset = 0;
7422     Info.align = 0;
7423     // volatile stores with NEON intrinsics not supported
7424     Info.flags = MachineMemOperand::MOStore;
7425     return true;
7426   }
7427   case Intrinsic::aarch64_ldaxr:
7428   case Intrinsic::aarch64_ldxr: {
7429     PointerType *PtrTy = cast<PointerType>(I.getArgOperand(0)->getType());
7430     Info.opc = ISD::INTRINSIC_W_CHAIN;
7431     Info.memVT = MVT::getVT(PtrTy->getElementType());
7432     Info.ptrVal = I.getArgOperand(0);
7433     Info.offset = 0;
7434     Info.align = DL.getABITypeAlignment(PtrTy->getElementType());
7435     Info.flags = MachineMemOperand::MOLoad | MachineMemOperand::MOVolatile;
7436     return true;
7437   }
7438   case Intrinsic::aarch64_stlxr:
7439   case Intrinsic::aarch64_stxr: {
7440     PointerType *PtrTy = cast<PointerType>(I.getArgOperand(1)->getType());
7441     Info.opc = ISD::INTRINSIC_W_CHAIN;
7442     Info.memVT = MVT::getVT(PtrTy->getElementType());
7443     Info.ptrVal = I.getArgOperand(1);
7444     Info.offset = 0;
7445     Info.align = DL.getABITypeAlignment(PtrTy->getElementType());
7446     Info.flags = MachineMemOperand::MOStore | MachineMemOperand::MOVolatile;
7447     return true;
7448   }
7449   case Intrinsic::aarch64_ldaxp:
7450   case Intrinsic::aarch64_ldxp:
7451     Info.opc = ISD::INTRINSIC_W_CHAIN;
7452     Info.memVT = MVT::i128;
7453     Info.ptrVal = I.getArgOperand(0);
7454     Info.offset = 0;
7455     Info.align = 16;
7456     Info.flags = MachineMemOperand::MOLoad | MachineMemOperand::MOVolatile;
7457     return true;
7458   case Intrinsic::aarch64_stlxp:
7459   case Intrinsic::aarch64_stxp:
7460     Info.opc = ISD::INTRINSIC_W_CHAIN;
7461     Info.memVT = MVT::i128;
7462     Info.ptrVal = I.getArgOperand(2);
7463     Info.offset = 0;
7464     Info.align = 16;
7465     Info.flags = MachineMemOperand::MOStore | MachineMemOperand::MOVolatile;
7466     return true;
7467   default:
7468     break;
7469   }
7470
7471   return false;
7472 }
7473
7474 // Truncations from 64-bit GPR to 32-bit GPR is free.
7475 bool AArch64TargetLowering::isTruncateFree(Type *Ty1, Type *Ty2) const {
7476   if (!Ty1->isIntegerTy() || !Ty2->isIntegerTy())
7477     return false;
7478   unsigned NumBits1 = Ty1->getPrimitiveSizeInBits();
7479   unsigned NumBits2 = Ty2->getPrimitiveSizeInBits();
7480   return NumBits1 > NumBits2;
7481 }
7482 bool AArch64TargetLowering::isTruncateFree(EVT VT1, EVT VT2) const {
7483   if (VT1.isVector() || VT2.isVector() || !VT1.isInteger() || !VT2.isInteger())
7484     return false;
7485   unsigned NumBits1 = VT1.getSizeInBits();
7486   unsigned NumBits2 = VT2.getSizeInBits();
7487   return NumBits1 > NumBits2;
7488 }
7489
7490 /// Check if it is profitable to hoist instruction in then/else to if.
7491 /// Not profitable if I and it's user can form a FMA instruction
7492 /// because we prefer FMSUB/FMADD.
7493 bool AArch64TargetLowering::isProfitableToHoist(Instruction *I) const {
7494   if (I->getOpcode() != Instruction::FMul)
7495     return true;
7496
7497   if (!I->hasOneUse())
7498     return true;
7499
7500   Instruction *User = I->user_back();
7501
7502   if (User &&
7503       !(User->getOpcode() == Instruction::FSub ||
7504         User->getOpcode() == Instruction::FAdd))
7505     return true;
7506
7507   const TargetOptions &Options = getTargetMachine().Options;
7508   const DataLayout &DL = I->getModule()->getDataLayout();
7509   EVT VT = getValueType(DL, User->getOperand(0)->getType());
7510
7511   return !(isFMAFasterThanFMulAndFAdd(VT) &&
7512            isOperationLegalOrCustom(ISD::FMA, VT) &&
7513            (Options.AllowFPOpFusion == FPOpFusion::Fast ||
7514             Options.UnsafeFPMath));
7515 }
7516
7517 // All 32-bit GPR operations implicitly zero the high-half of the corresponding
7518 // 64-bit GPR.
7519 bool AArch64TargetLowering::isZExtFree(Type *Ty1, Type *Ty2) const {
7520   if (!Ty1->isIntegerTy() || !Ty2->isIntegerTy())
7521     return false;
7522   unsigned NumBits1 = Ty1->getPrimitiveSizeInBits();
7523   unsigned NumBits2 = Ty2->getPrimitiveSizeInBits();
7524   return NumBits1 == 32 && NumBits2 == 64;
7525 }
7526 bool AArch64TargetLowering::isZExtFree(EVT VT1, EVT VT2) const {
7527   if (VT1.isVector() || VT2.isVector() || !VT1.isInteger() || !VT2.isInteger())
7528     return false;
7529   unsigned NumBits1 = VT1.getSizeInBits();
7530   unsigned NumBits2 = VT2.getSizeInBits();
7531   return NumBits1 == 32 && NumBits2 == 64;
7532 }
7533
7534 bool AArch64TargetLowering::isZExtFree(SDValue Val, EVT VT2) const {
7535   EVT VT1 = Val.getValueType();
7536   if (isZExtFree(VT1, VT2)) {
7537     return true;
7538   }
7539
7540   if (Val.getOpcode() != ISD::LOAD)
7541     return false;
7542
7543   // 8-, 16-, and 32-bit integer loads all implicitly zero-extend.
7544   return (VT1.isSimple() && !VT1.isVector() && VT1.isInteger() &&
7545           VT2.isSimple() && !VT2.isVector() && VT2.isInteger() &&
7546           VT1.getSizeInBits() <= 32);
7547 }
7548
7549 bool AArch64TargetLowering::isExtFreeImpl(const Instruction *Ext) const {
7550   if (isa<FPExtInst>(Ext))
7551     return false;
7552
7553   // Vector types are not free.
7554   if (Ext->getType()->isVectorTy())
7555     return false;
7556
7557   for (const Use &U : Ext->uses()) {
7558     // The extension is free if we can fold it with a left shift in an
7559     // addressing mode or an arithmetic operation: add, sub, and cmp.
7560
7561     // Is there a shift?
7562     const Instruction *Instr = cast<Instruction>(U.getUser());
7563
7564     // Is this a constant shift?
7565     switch (Instr->getOpcode()) {
7566     case Instruction::Shl:
7567       if (!isa<ConstantInt>(Instr->getOperand(1)))
7568         return false;
7569       break;
7570     case Instruction::GetElementPtr: {
7571       gep_type_iterator GTI = gep_type_begin(Instr);
7572       auto &DL = Ext->getModule()->getDataLayout();
7573       std::advance(GTI, U.getOperandNo()-1);
7574       Type *IdxTy = GTI.getIndexedType();
7575       // This extension will end up with a shift because of the scaling factor.
7576       // 8-bit sized types have a scaling factor of 1, thus a shift amount of 0.
7577       // Get the shift amount based on the scaling factor:
7578       // log2(sizeof(IdxTy)) - log2(8).
7579       uint64_t ShiftAmt =
7580           countTrailingZeros(DL.getTypeStoreSizeInBits(IdxTy)) - 3;
7581       // Is the constant foldable in the shift of the addressing mode?
7582       // I.e., shift amount is between 1 and 4 inclusive.
7583       if (ShiftAmt == 0 || ShiftAmt > 4)
7584         return false;
7585       break;
7586     }
7587     case Instruction::Trunc:
7588       // Check if this is a noop.
7589       // trunc(sext ty1 to ty2) to ty1.
7590       if (Instr->getType() == Ext->getOperand(0)->getType())
7591         continue;
7592       LLVM_FALLTHROUGH;
7593     default:
7594       return false;
7595     }
7596
7597     // At this point we can use the bfm family, so this extension is free
7598     // for that use.
7599   }
7600   return true;
7601 }
7602
7603 bool AArch64TargetLowering::hasPairedLoad(EVT LoadedType,
7604                                           unsigned &RequiredAligment) const {
7605   if (!LoadedType.isSimple() ||
7606       (!LoadedType.isInteger() && !LoadedType.isFloatingPoint()))
7607     return false;
7608   // Cyclone supports unaligned accesses.
7609   RequiredAligment = 0;
7610   unsigned NumBits = LoadedType.getSizeInBits();
7611   return NumBits == 32 || NumBits == 64;
7612 }
7613
7614 /// A helper function for determining the number of interleaved accesses we
7615 /// will generate when lowering accesses of the given type.
7616 unsigned
7617 AArch64TargetLowering::getNumInterleavedAccesses(VectorType *VecTy,
7618                                                  const DataLayout &DL) const {
7619   return (DL.getTypeSizeInBits(VecTy) + 127) / 128;
7620 }
7621
7622 MachineMemOperand::Flags
7623 AArch64TargetLowering::getMMOFlags(const Instruction &I) const {
7624   if (Subtarget->getProcFamily() == AArch64Subtarget::Falkor &&
7625       I.getMetadata(FALKOR_STRIDED_ACCESS_MD) != nullptr)
7626     return MOStridedAccess;
7627   return MachineMemOperand::MONone;
7628 }
7629
7630 bool AArch64TargetLowering::isLegalInterleavedAccessType(
7631     VectorType *VecTy, const DataLayout &DL) const {
7632
7633   unsigned VecSize = DL.getTypeSizeInBits(VecTy);
7634   unsigned ElSize = DL.getTypeSizeInBits(VecTy->getElementType());
7635
7636   // Ensure the number of vector elements is greater than 1.
7637   if (VecTy->getNumElements() < 2)
7638     return false;
7639
7640   // Ensure the element type is legal.
7641   if (ElSize != 8 && ElSize != 16 && ElSize != 32 && ElSize != 64)
7642     return false;
7643
7644   // Ensure the total vector size is 64 or a multiple of 128. Types larger than
7645   // 128 will be split into multiple interleaved accesses.
7646   return VecSize == 64 || VecSize % 128 == 0;
7647 }
7648
7649 /// \brief Lower an interleaved load into a ldN intrinsic.
7650 ///
7651 /// E.g. Lower an interleaved load (Factor = 2):
7652 ///        %wide.vec = load <8 x i32>, <8 x i32>* %ptr
7653 ///        %v0 = shuffle %wide.vec, undef, <0, 2, 4, 6>  ; Extract even elements
7654 ///        %v1 = shuffle %wide.vec, undef, <1, 3, 5, 7>  ; Extract odd elements
7655 ///
7656 ///      Into:
7657 ///        %ld2 = { <4 x i32>, <4 x i32> } call llvm.aarch64.neon.ld2(%ptr)
7658 ///        %vec0 = extractelement { <4 x i32>, <4 x i32> } %ld2, i32 0
7659 ///        %vec1 = extractelement { <4 x i32>, <4 x i32> } %ld2, i32 1
7660 bool AArch64TargetLowering::lowerInterleavedLoad(
7661     LoadInst *LI, ArrayRef<ShuffleVectorInst *> Shuffles,
7662     ArrayRef<unsigned> Indices, unsigned Factor) const {
7663   assert(Factor >= 2 && Factor <= getMaxSupportedInterleaveFactor() &&
7664          "Invalid interleave factor");
7665   assert(!Shuffles.empty() && "Empty shufflevector input");
7666   assert(Shuffles.size() == Indices.size() &&
7667          "Unmatched number of shufflevectors and indices");
7668
7669   const DataLayout &DL = LI->getModule()->getDataLayout();
7670
7671   VectorType *VecTy = Shuffles[0]->getType();
7672
7673   // Skip if we do not have NEON and skip illegal vector types. We can
7674   // "legalize" wide vector types into multiple interleaved accesses as long as
7675   // the vector types are divisible by 128.
7676   if (!Subtarget->hasNEON() || !isLegalInterleavedAccessType(VecTy, DL))
7677     return false;
7678
7679   unsigned NumLoads = getNumInterleavedAccesses(VecTy, DL);
7680
7681   // A pointer vector can not be the return type of the ldN intrinsics. Need to
7682   // load integer vectors first and then convert to pointer vectors.
7683   Type *EltTy = VecTy->getVectorElementType();
7684   if (EltTy->isPointerTy())
7685     VecTy =
7686         VectorType::get(DL.getIntPtrType(EltTy), VecTy->getVectorNumElements());
7687
7688   IRBuilder<> Builder(LI);
7689
7690   // The base address of the load.
7691   Value *BaseAddr = LI->getPointerOperand();
7692
7693   if (NumLoads > 1) {
7694     // If we're going to generate more than one load, reset the sub-vector type
7695     // to something legal.
7696     VecTy = VectorType::get(VecTy->getVectorElementType(),
7697                             VecTy->getVectorNumElements() / NumLoads);
7698
7699     // We will compute the pointer operand of each load from the original base
7700     // address using GEPs. Cast the base address to a pointer to the scalar
7701     // element type.
7702     BaseAddr = Builder.CreateBitCast(
7703         BaseAddr, VecTy->getVectorElementType()->getPointerTo(
7704                       LI->getPointerAddressSpace()));
7705   }
7706
7707   Type *PtrTy = VecTy->getPointerTo(LI->getPointerAddressSpace());
7708   Type *Tys[2] = {VecTy, PtrTy};
7709   static const Intrinsic::ID LoadInts[3] = {Intrinsic::aarch64_neon_ld2,
7710                                             Intrinsic::aarch64_neon_ld3,
7711                                             Intrinsic::aarch64_neon_ld4};
7712   Function *LdNFunc =
7713       Intrinsic::getDeclaration(LI->getModule(), LoadInts[Factor - 2], Tys);
7714
7715   // Holds sub-vectors extracted from the load intrinsic return values. The
7716   // sub-vectors are associated with the shufflevector instructions they will
7717   // replace.
7718   DenseMap<ShuffleVectorInst *, SmallVector<Value *, 4>> SubVecs;
7719
7720   for (unsigned LoadCount = 0; LoadCount < NumLoads; ++LoadCount) {
7721
7722     // If we're generating more than one load, compute the base address of
7723     // subsequent loads as an offset from the previous.
7724     if (LoadCount > 0)
7725       BaseAddr = Builder.CreateConstGEP1_32(
7726           BaseAddr, VecTy->getVectorNumElements() * Factor);
7727
7728     CallInst *LdN = Builder.CreateCall(
7729         LdNFunc, Builder.CreateBitCast(BaseAddr, PtrTy), "ldN");
7730
7731     // Extract and store the sub-vectors returned by the load intrinsic.
7732     for (unsigned i = 0; i < Shuffles.size(); i++) {
7733       ShuffleVectorInst *SVI = Shuffles[i];
7734       unsigned Index = Indices[i];
7735
7736       Value *SubVec = Builder.CreateExtractValue(LdN, Index);
7737
7738       // Convert the integer vector to pointer vector if the element is pointer.
7739       if (EltTy->isPointerTy())
7740         SubVec = Builder.CreateIntToPtr(
7741             SubVec, VectorType::get(SVI->getType()->getVectorElementType(),
7742                                     VecTy->getVectorNumElements()));
7743       SubVecs[SVI].push_back(SubVec);
7744     }
7745   }
7746
7747   // Replace uses of the shufflevector instructions with the sub-vectors
7748   // returned by the load intrinsic. If a shufflevector instruction is
7749   // associated with more than one sub-vector, those sub-vectors will be
7750   // concatenated into a single wide vector.
7751   for (ShuffleVectorInst *SVI : Shuffles) {
7752     auto &SubVec = SubVecs[SVI];
7753     auto *WideVec =
7754         SubVec.size() > 1 ? concatenateVectors(Builder, SubVec) : SubVec[0];
7755     SVI->replaceAllUsesWith(WideVec);
7756   }
7757
7758   return true;
7759 }
7760
7761 /// \brief Lower an interleaved store into a stN intrinsic.
7762 ///
7763 /// E.g. Lower an interleaved store (Factor = 3):
7764 ///        %i.vec = shuffle <8 x i32> %v0, <8 x i32> %v1,
7765 ///                 <0, 4, 8, 1, 5, 9, 2, 6, 10, 3, 7, 11>
7766 ///        store <12 x i32> %i.vec, <12 x i32>* %ptr
7767 ///
7768 ///      Into:
7769 ///        %sub.v0 = shuffle <8 x i32> %v0, <8 x i32> v1, <0, 1, 2, 3>
7770 ///        %sub.v1 = shuffle <8 x i32> %v0, <8 x i32> v1, <4, 5, 6, 7>
7771 ///        %sub.v2 = shuffle <8 x i32> %v0, <8 x i32> v1, <8, 9, 10, 11>
7772 ///        call void llvm.aarch64.neon.st3(%sub.v0, %sub.v1, %sub.v2, %ptr)
7773 ///
7774 /// Note that the new shufflevectors will be removed and we'll only generate one
7775 /// st3 instruction in CodeGen.
7776 ///
7777 /// Example for a more general valid mask (Factor 3). Lower:
7778 ///        %i.vec = shuffle <32 x i32> %v0, <32 x i32> %v1,
7779 ///                 <4, 32, 16, 5, 33, 17, 6, 34, 18, 7, 35, 19>
7780 ///        store <12 x i32> %i.vec, <12 x i32>* %ptr
7781 ///
7782 ///      Into:
7783 ///        %sub.v0 = shuffle <32 x i32> %v0, <32 x i32> v1, <4, 5, 6, 7>
7784 ///        %sub.v1 = shuffle <32 x i32> %v0, <32 x i32> v1, <32, 33, 34, 35>
7785 ///        %sub.v2 = shuffle <32 x i32> %v0, <32 x i32> v1, <16, 17, 18, 19>
7786 ///        call void llvm.aarch64.neon.st3(%sub.v0, %sub.v1, %sub.v2, %ptr)
7787 bool AArch64TargetLowering::lowerInterleavedStore(StoreInst *SI,
7788                                                   ShuffleVectorInst *SVI,
7789                                                   unsigned Factor) const {
7790   assert(Factor >= 2 && Factor <= getMaxSupportedInterleaveFactor() &&
7791          "Invalid interleave factor");
7792
7793   VectorType *VecTy = SVI->getType();
7794   assert(VecTy->getVectorNumElements() % Factor == 0 &&
7795          "Invalid interleaved store");
7796
7797   unsigned LaneLen = VecTy->getVectorNumElements() / Factor;
7798   Type *EltTy = VecTy->getVectorElementType();
7799   VectorType *SubVecTy = VectorType::get(EltTy, LaneLen);
7800
7801   const DataLayout &DL = SI->getModule()->getDataLayout();
7802
7803   // Skip if we do not have NEON and skip illegal vector types. We can
7804   // "legalize" wide vector types into multiple interleaved accesses as long as
7805   // the vector types are divisible by 128.
7806   if (!Subtarget->hasNEON() || !isLegalInterleavedAccessType(SubVecTy, DL))
7807     return false;
7808
7809   unsigned NumStores = getNumInterleavedAccesses(SubVecTy, DL);
7810
7811   Value *Op0 = SVI->getOperand(0);
7812   Value *Op1 = SVI->getOperand(1);
7813   IRBuilder<> Builder(SI);
7814
7815   // StN intrinsics don't support pointer vectors as arguments. Convert pointer
7816   // vectors to integer vectors.
7817   if (EltTy->isPointerTy()) {
7818     Type *IntTy = DL.getIntPtrType(EltTy);
7819     unsigned NumOpElts =
7820         dyn_cast<VectorType>(Op0->getType())->getVectorNumElements();
7821
7822     // Convert to the corresponding integer vector.
7823     Type *IntVecTy = VectorType::get(IntTy, NumOpElts);
7824     Op0 = Builder.CreatePtrToInt(Op0, IntVecTy);
7825     Op1 = Builder.CreatePtrToInt(Op1, IntVecTy);
7826
7827     SubVecTy = VectorType::get(IntTy, LaneLen);
7828   }
7829
7830   // The base address of the store.
7831   Value *BaseAddr = SI->getPointerOperand();
7832
7833   if (NumStores > 1) {
7834     // If we're going to generate more than one store, reset the lane length
7835     // and sub-vector type to something legal.
7836     LaneLen /= NumStores;
7837     SubVecTy = VectorType::get(SubVecTy->getVectorElementType(), LaneLen);
7838
7839     // We will compute the pointer operand of each store from the original base
7840     // address using GEPs. Cast the base address to a pointer to the scalar
7841     // element type.
7842     BaseAddr = Builder.CreateBitCast(
7843         BaseAddr, SubVecTy->getVectorElementType()->getPointerTo(
7844                       SI->getPointerAddressSpace()));
7845   }
7846
7847   auto Mask = SVI->getShuffleMask();
7848
7849   Type *PtrTy = SubVecTy->getPointerTo(SI->getPointerAddressSpace());
7850   Type *Tys[2] = {SubVecTy, PtrTy};
7851   static const Intrinsic::ID StoreInts[3] = {Intrinsic::aarch64_neon_st2,
7852                                              Intrinsic::aarch64_neon_st3,
7853                                              Intrinsic::aarch64_neon_st4};
7854   Function *StNFunc =
7855       Intrinsic::getDeclaration(SI->getModule(), StoreInts[Factor - 2], Tys);
7856
7857   for (unsigned StoreCount = 0; StoreCount < NumStores; ++StoreCount) {
7858
7859     SmallVector<Value *, 5> Ops;
7860
7861     // Split the shufflevector operands into sub vectors for the new stN call.
7862     for (unsigned i = 0; i < Factor; i++) {
7863       unsigned IdxI = StoreCount * LaneLen * Factor + i;
7864       if (Mask[IdxI] >= 0) {
7865         Ops.push_back(Builder.CreateShuffleVector(
7866             Op0, Op1, createSequentialMask(Builder, Mask[IdxI], LaneLen, 0)));
7867       } else {
7868         unsigned StartMask = 0;
7869         for (unsigned j = 1; j < LaneLen; j++) {
7870           unsigned IdxJ = StoreCount * LaneLen * Factor + j;
7871           if (Mask[IdxJ * Factor + IdxI] >= 0) {
7872             StartMask = Mask[IdxJ * Factor + IdxI] - IdxJ;
7873             break;
7874           }
7875         }
7876         // Note: Filling undef gaps with random elements is ok, since
7877         // those elements were being written anyway (with undefs).
7878         // In the case of all undefs we're defaulting to using elems from 0
7879         // Note: StartMask cannot be negative, it's checked in
7880         // isReInterleaveMask
7881         Ops.push_back(Builder.CreateShuffleVector(
7882             Op0, Op1, createSequentialMask(Builder, StartMask, LaneLen, 0)));
7883       }
7884     }
7885
7886     // If we generating more than one store, we compute the base address of
7887     // subsequent stores as an offset from the previous.
7888     if (StoreCount > 0)
7889       BaseAddr = Builder.CreateConstGEP1_32(BaseAddr, LaneLen * Factor);
7890
7891     Ops.push_back(Builder.CreateBitCast(BaseAddr, PtrTy));
7892     Builder.CreateCall(StNFunc, Ops);
7893   }
7894   return true;
7895 }
7896
7897 static bool memOpAlign(unsigned DstAlign, unsigned SrcAlign,
7898                        unsigned AlignCheck) {
7899   return ((SrcAlign == 0 || SrcAlign % AlignCheck == 0) &&
7900           (DstAlign == 0 || DstAlign % AlignCheck == 0));
7901 }
7902
7903 EVT AArch64TargetLowering::getOptimalMemOpType(uint64_t Size, unsigned DstAlign,
7904                                                unsigned SrcAlign, bool IsMemset,
7905                                                bool ZeroMemset,
7906                                                bool MemcpyStrSrc,
7907                                                MachineFunction &MF) const {
7908   // Don't use AdvSIMD to implement 16-byte memset. It would have taken one
7909   // instruction to materialize the v2i64 zero and one store (with restrictive
7910   // addressing mode). Just do two i64 store of zero-registers.
7911   bool Fast;
7912   const Function &F = MF.getFunction();
7913   if (Subtarget->hasFPARMv8() && !IsMemset && Size >= 16 &&
7914       !F.hasFnAttribute(Attribute::NoImplicitFloat) &&
7915       (memOpAlign(SrcAlign, DstAlign, 16) ||
7916        (allowsMisalignedMemoryAccesses(MVT::f128, 0, 1, &Fast) && Fast)))
7917     return MVT::f128;
7918
7919   if (Size >= 8 &&
7920       (memOpAlign(SrcAlign, DstAlign, 8) ||
7921        (allowsMisalignedMemoryAccesses(MVT::i64, 0, 1, &Fast) && Fast)))
7922     return MVT::i64;
7923
7924   if (Size >= 4 &&
7925       (memOpAlign(SrcAlign, DstAlign, 4) ||
7926        (allowsMisalignedMemoryAccesses(MVT::i32, 0, 1, &Fast) && Fast)))
7927     return MVT::i32;
7928
7929   return MVT::Other;
7930 }
7931
7932 // 12-bit optionally shifted immediates are legal for adds.
7933 bool AArch64TargetLowering::isLegalAddImmediate(int64_t Immed) const {
7934   if (Immed == std::numeric_limits<int64_t>::min()) {
7935     DEBUG(dbgs() << "Illegal add imm " << Immed << ": avoid UB for INT64_MIN\n");
7936     return false;
7937   }
7938   // Same encoding for add/sub, just flip the sign.
7939   Immed = std::abs(Immed);
7940   bool IsLegal = ((Immed >> 12) == 0 ||
7941                   ((Immed & 0xfff) == 0 && Immed >> 24 == 0));
7942   DEBUG(dbgs() << "Is " << Immed << " legal add imm: " <<
7943         (IsLegal ? "yes" : "no") << "\n");
7944   return IsLegal;
7945 }
7946
7947 // Integer comparisons are implemented with ADDS/SUBS, so the range of valid
7948 // immediates is the same as for an add or a sub.
7949 bool AArch64TargetLowering::isLegalICmpImmediate(int64_t Immed) const {
7950   return isLegalAddImmediate(Immed);
7951 }
7952
7953 /// isLegalAddressingMode - Return true if the addressing mode represented
7954 /// by AM is legal for this target, for a load/store of the specified type.
7955 bool AArch64TargetLowering::isLegalAddressingMode(const DataLayout &DL,
7956                                                   const AddrMode &AM, Type *Ty,
7957                                                   unsigned AS, Instruction *I) const {
7958   // AArch64 has five basic addressing modes:
7959   //  reg
7960   //  reg + 9-bit signed offset
7961   //  reg + SIZE_IN_BYTES * 12-bit unsigned offset
7962   //  reg1 + reg2
7963   //  reg + SIZE_IN_BYTES * reg
7964
7965   // No global is ever allowed as a base.
7966   if (AM.BaseGV)
7967     return false;
7968
7969   // No reg+reg+imm addressing.
7970   if (AM.HasBaseReg && AM.BaseOffs && AM.Scale)
7971     return false;
7972
7973   // check reg + imm case:
7974   // i.e., reg + 0, reg + imm9, reg + SIZE_IN_BYTES * uimm12
7975   uint64_t NumBytes = 0;
7976   if (Ty->isSized()) {
7977     uint64_t NumBits = DL.getTypeSizeInBits(Ty);
7978     NumBytes = NumBits / 8;
7979     if (!isPowerOf2_64(NumBits))
7980       NumBytes = 0;
7981   }
7982
7983   if (!AM.Scale) {
7984     int64_t Offset = AM.BaseOffs;
7985
7986     // 9-bit signed offset
7987     if (isInt<9>(Offset))
7988       return true;
7989
7990     // 12-bit unsigned offset
7991     unsigned shift = Log2_64(NumBytes);
7992     if (NumBytes && Offset > 0 && (Offset / NumBytes) <= (1LL << 12) - 1 &&
7993         // Must be a multiple of NumBytes (NumBytes is a power of 2)
7994         (Offset >> shift) << shift == Offset)
7995       return true;
7996     return false;
7997   }
7998
7999   // Check reg1 + SIZE_IN_BYTES * reg2 and reg1 + reg2
8000
8001   return AM.Scale == 1 || (AM.Scale > 0 && (uint64_t)AM.Scale == NumBytes);
8002 }
8003
8004 int AArch64TargetLowering::getScalingFactorCost(const DataLayout &DL,
8005                                                 const AddrMode &AM, Type *Ty,
8006                                                 unsigned AS) const {
8007   // Scaling factors are not free at all.
8008   // Operands                     | Rt Latency
8009   // -------------------------------------------
8010   // Rt, [Xn, Xm]                 | 4
8011   // -------------------------------------------
8012   // Rt, [Xn, Xm, lsl #imm]       | Rn: 4 Rm: 5
8013   // Rt, [Xn, Wm, <extend> #imm]  |
8014   if (isLegalAddressingMode(DL, AM, Ty, AS))
8015     // Scale represents reg2 * scale, thus account for 1 if
8016     // it is not equal to 0 or 1.
8017     return AM.Scale != 0 && AM.Scale != 1;
8018   return -1;
8019 }
8020
8021 bool AArch64TargetLowering::isFMAFasterThanFMulAndFAdd(EVT VT) const {
8022   VT = VT.getScalarType();
8023
8024   if (!VT.isSimple())
8025     return false;
8026
8027   switch (VT.getSimpleVT().SimpleTy) {
8028   case MVT::f32:
8029   case MVT::f64:
8030     return true;
8031   default:
8032     break;
8033   }
8034
8035   return false;
8036 }
8037
8038 const MCPhysReg *
8039 AArch64TargetLowering::getScratchRegisters(CallingConv::ID) const {
8040   // LR is a callee-save register, but we must treat it as clobbered by any call
8041   // site. Hence we include LR in the scratch registers, which are in turn added
8042   // as implicit-defs for stackmaps and patchpoints.
8043   static const MCPhysReg ScratchRegs[] = {
8044     AArch64::X16, AArch64::X17, AArch64::LR, 0
8045   };
8046   return ScratchRegs;
8047 }
8048
8049 bool
8050 AArch64TargetLowering::isDesirableToCommuteWithShift(const SDNode *N) const {
8051   EVT VT = N->getValueType(0);
8052     // If N is unsigned bit extraction: ((x >> C) & mask), then do not combine
8053     // it with shift to let it be lowered to UBFX.
8054   if (N->getOpcode() == ISD::AND && (VT == MVT::i32 || VT == MVT::i64) &&
8055       isa<ConstantSDNode>(N->getOperand(1))) {
8056     uint64_t TruncMask = N->getConstantOperandVal(1);
8057     if (isMask_64(TruncMask) &&
8058       N->getOperand(0).getOpcode() == ISD::SRL &&
8059       isa<ConstantSDNode>(N->getOperand(0)->getOperand(1)))
8060       return false;
8061   }
8062   return true;
8063 }
8064
8065 bool AArch64TargetLowering::shouldConvertConstantLoadToIntImm(const APInt &Imm,
8066                                                               Type *Ty) const {
8067   assert(Ty->isIntegerTy());
8068
8069   unsigned BitSize = Ty->getPrimitiveSizeInBits();
8070   if (BitSize == 0)
8071     return false;
8072
8073   int64_t Val = Imm.getSExtValue();
8074   if (Val == 0 || AArch64_AM::isLogicalImmediate(Val, BitSize))
8075     return true;
8076
8077   if ((int64_t)Val < 0)
8078     Val = ~Val;
8079   if (BitSize == 32)
8080     Val &= (1LL << 32) - 1;
8081
8082   unsigned LZ = countLeadingZeros((uint64_t)Val);
8083   unsigned Shift = (63 - LZ) / 16;
8084   // MOVZ is free so return true for one or fewer MOVK.
8085   return Shift < 3;
8086 }
8087
8088 /// Turn vector tests of the signbit in the form of:
8089 ///   xor (sra X, elt_size(X)-1), -1
8090 /// into:
8091 ///   cmge X, X, #0
8092 static SDValue foldVectorXorShiftIntoCmp(SDNode *N, SelectionDAG &DAG,
8093                                          const AArch64Subtarget *Subtarget) {
8094   EVT VT = N->getValueType(0);
8095   if (!Subtarget->hasNEON() || !VT.isVector())
8096     return SDValue();
8097
8098   // There must be a shift right algebraic before the xor, and the xor must be a
8099   // 'not' operation.
8100   SDValue Shift = N->getOperand(0);
8101   SDValue Ones = N->getOperand(1);
8102   if (Shift.getOpcode() != AArch64ISD::VASHR || !Shift.hasOneUse() ||
8103       !ISD::isBuildVectorAllOnes(Ones.getNode()))
8104     return SDValue();
8105
8106   // The shift should be smearing the sign bit across each vector element.
8107   auto *ShiftAmt = dyn_cast<ConstantSDNode>(Shift.getOperand(1));
8108   EVT ShiftEltTy = Shift.getValueType().getVectorElementType();
8109   if (!ShiftAmt || ShiftAmt->getZExtValue() != ShiftEltTy.getSizeInBits() - 1)
8110     return SDValue();
8111
8112   return DAG.getNode(AArch64ISD::CMGEz, SDLoc(N), VT, Shift.getOperand(0));
8113 }
8114
8115 // Generate SUBS and CSEL for integer abs.
8116 static SDValue performIntegerAbsCombine(SDNode *N, SelectionDAG &DAG) {
8117   EVT VT = N->getValueType(0);
8118
8119   SDValue N0 = N->getOperand(0);
8120   SDValue N1 = N->getOperand(1);
8121   SDLoc DL(N);
8122
8123   // Check pattern of XOR(ADD(X,Y), Y) where Y is SRA(X, size(X)-1)
8124   // and change it to SUB and CSEL.
8125   if (VT.isInteger() && N->getOpcode() == ISD::XOR &&
8126       N0.getOpcode() == ISD::ADD && N0.getOperand(1) == N1 &&
8127       N1.getOpcode() == ISD::SRA && N1.getOperand(0) == N0.getOperand(0))
8128     if (ConstantSDNode *Y1C = dyn_cast<ConstantSDNode>(N1.getOperand(1)))
8129       if (Y1C->getAPIntValue() == VT.getSizeInBits() - 1) {
8130         SDValue Neg = DAG.getNode(ISD::SUB, DL, VT, DAG.getConstant(0, DL, VT),
8131                                   N0.getOperand(0));
8132         // Generate SUBS & CSEL.
8133         SDValue Cmp =
8134             DAG.getNode(AArch64ISD::SUBS, DL, DAG.getVTList(VT, MVT::i32),
8135                         N0.getOperand(0), DAG.getConstant(0, DL, VT));
8136         return DAG.getNode(AArch64ISD::CSEL, DL, VT, N0.getOperand(0), Neg,
8137                            DAG.getConstant(AArch64CC::PL, DL, MVT::i32),
8138                            SDValue(Cmp.getNode(), 1));
8139       }
8140   return SDValue();
8141 }
8142
8143 static SDValue performXorCombine(SDNode *N, SelectionDAG &DAG,
8144                                  TargetLowering::DAGCombinerInfo &DCI,
8145                                  const AArch64Subtarget *Subtarget) {
8146   if (DCI.isBeforeLegalizeOps())
8147     return SDValue();
8148
8149   if (SDValue Cmp = foldVectorXorShiftIntoCmp(N, DAG, Subtarget))
8150     return Cmp;
8151
8152   return performIntegerAbsCombine(N, DAG);
8153 }
8154
8155 SDValue
8156 AArch64TargetLowering::BuildSDIVPow2(SDNode *N, const APInt &Divisor,
8157                                      SelectionDAG &DAG,
8158                                      std::vector<SDNode *> *Created) const {
8159   AttributeList Attr = DAG.getMachineFunction().getFunction().getAttributes();
8160   if (isIntDivCheap(N->getValueType(0), Attr))
8161     return SDValue(N,0); // Lower SDIV as SDIV
8162
8163   // fold (sdiv X, pow2)
8164   EVT VT = N->getValueType(0);
8165   if ((VT != MVT::i32 && VT != MVT::i64) ||
8166       !(Divisor.isPowerOf2() || (-Divisor).isPowerOf2()))
8167     return SDValue();
8168
8169   SDLoc DL(N);
8170   SDValue N0 = N->getOperand(0);
8171   unsigned Lg2 = Divisor.countTrailingZeros();
8172   SDValue Zero = DAG.getConstant(0, DL, VT);
8173   SDValue Pow2MinusOne = DAG.getConstant((1ULL << Lg2) - 1, DL, VT);
8174
8175   // Add (N0 < 0) ? Pow2 - 1 : 0;
8176   SDValue CCVal;
8177   SDValue Cmp = getAArch64Cmp(N0, Zero, ISD::SETLT, CCVal, DAG, DL);
8178   SDValue Add = DAG.getNode(ISD::ADD, DL, VT, N0, Pow2MinusOne);
8179   SDValue CSel = DAG.getNode(AArch64ISD::CSEL, DL, VT, Add, N0, CCVal, Cmp);
8180
8181   if (Created) {
8182     Created->push_back(Cmp.getNode());
8183     Created->push_back(Add.getNode());
8184     Created->push_back(CSel.getNode());
8185   }
8186
8187   // Divide by pow2.
8188   SDValue SRA =
8189       DAG.getNode(ISD::SRA, DL, VT, CSel, DAG.getConstant(Lg2, DL, MVT::i64));
8190
8191   // If we're dividing by a positive value, we're done.  Otherwise, we must
8192   // negate the result.
8193   if (Divisor.isNonNegative())
8194     return SRA;
8195
8196   if (Created)
8197     Created->push_back(SRA.getNode());
8198   return DAG.getNode(ISD::SUB, DL, VT, DAG.getConstant(0, DL, VT), SRA);
8199 }
8200
8201 static SDValue performMulCombine(SDNode *N, SelectionDAG &DAG,
8202                                  TargetLowering::DAGCombinerInfo &DCI,
8203                                  const AArch64Subtarget *Subtarget) {
8204   if (DCI.isBeforeLegalizeOps())
8205     return SDValue();
8206
8207   // The below optimizations require a constant RHS.
8208   if (!isa<ConstantSDNode>(N->getOperand(1)))
8209     return SDValue();
8210
8211   ConstantSDNode *C = cast<ConstantSDNode>(N->getOperand(1));
8212   const APInt &ConstValue = C->getAPIntValue();
8213
8214   // Multiplication of a power of two plus/minus one can be done more
8215   // cheaply as as shift+add/sub. For now, this is true unilaterally. If
8216   // future CPUs have a cheaper MADD instruction, this may need to be
8217   // gated on a subtarget feature. For Cyclone, 32-bit MADD is 4 cycles and
8218   // 64-bit is 5 cycles, so this is always a win.
8219   // More aggressively, some multiplications N0 * C can be lowered to
8220   // shift+add+shift if the constant C = A * B where A = 2^N + 1 and B = 2^M,
8221   // e.g. 6=3*2=(2+1)*2.
8222   // TODO: consider lowering more cases, e.g. C = 14, -6, -14 or even 45
8223   // which equals to (1+2)*16-(1+2).
8224   SDValue N0 = N->getOperand(0);
8225   // TrailingZeroes is used to test if the mul can be lowered to
8226   // shift+add+shift.
8227   unsigned TrailingZeroes = ConstValue.countTrailingZeros();
8228   if (TrailingZeroes) {
8229     // Conservatively do not lower to shift+add+shift if the mul might be
8230     // folded into smul or umul.
8231     if (N0->hasOneUse() && (isSignExtended(N0.getNode(), DAG) ||
8232                             isZeroExtended(N0.getNode(), DAG)))
8233       return SDValue();
8234     // Conservatively do not lower to shift+add+shift if the mul might be
8235     // folded into madd or msub.
8236     if (N->hasOneUse() && (N->use_begin()->getOpcode() == ISD::ADD ||
8237                            N->use_begin()->getOpcode() == ISD::SUB))
8238       return SDValue();
8239   }
8240   // Use ShiftedConstValue instead of ConstValue to support both shift+add/sub
8241   // and shift+add+shift.
8242   APInt ShiftedConstValue = ConstValue.ashr(TrailingZeroes);
8243
8244   unsigned ShiftAmt, AddSubOpc;
8245   // Is the shifted value the LHS operand of the add/sub?
8246   bool ShiftValUseIsN0 = true;
8247   // Do we need to negate the result?
8248   bool NegateResult = false;
8249
8250   if (ConstValue.isNonNegative()) {
8251     // (mul x, 2^N + 1) => (add (shl x, N), x)
8252     // (mul x, 2^N - 1) => (sub (shl x, N), x)
8253     // (mul x, (2^N + 1) * 2^M) => (shl (add (shl x, N), x), M)
8254     APInt SCVMinus1 = ShiftedConstValue - 1;
8255     APInt CVPlus1 = ConstValue + 1;
8256     if (SCVMinus1.isPowerOf2()) {
8257       ShiftAmt = SCVMinus1.logBase2();
8258       AddSubOpc = ISD::ADD;
8259     } else if (CVPlus1.isPowerOf2()) {
8260       ShiftAmt = CVPlus1.logBase2();
8261       AddSubOpc = ISD::SUB;
8262     } else
8263       return SDValue();
8264   } else {
8265     // (mul x, -(2^N - 1)) => (sub x, (shl x, N))
8266     // (mul x, -(2^N + 1)) => - (add (shl x, N), x)
8267     APInt CVNegPlus1 = -ConstValue + 1;
8268     APInt CVNegMinus1 = -ConstValue - 1;
8269     if (CVNegPlus1.isPowerOf2()) {
8270       ShiftAmt = CVNegPlus1.logBase2();
8271       AddSubOpc = ISD::SUB;
8272       ShiftValUseIsN0 = false;
8273     } else if (CVNegMinus1.isPowerOf2()) {
8274       ShiftAmt = CVNegMinus1.logBase2();
8275       AddSubOpc = ISD::ADD;
8276       NegateResult = true;
8277     } else
8278       return SDValue();
8279   }
8280
8281   SDLoc DL(N);
8282   EVT VT = N->getValueType(0);
8283   SDValue ShiftedVal = DAG.getNode(ISD::SHL, DL, VT, N0,
8284                                    DAG.getConstant(ShiftAmt, DL, MVT::i64));
8285
8286   SDValue AddSubN0 = ShiftValUseIsN0 ? ShiftedVal : N0;
8287   SDValue AddSubN1 = ShiftValUseIsN0 ? N0 : ShiftedVal;
8288   SDValue Res = DAG.getNode(AddSubOpc, DL, VT, AddSubN0, AddSubN1);
8289   assert(!(NegateResult && TrailingZeroes) &&
8290          "NegateResult and TrailingZeroes cannot both be true for now.");
8291   // Negate the result.
8292   if (NegateResult)
8293     return DAG.getNode(ISD::SUB, DL, VT, DAG.getConstant(0, DL, VT), Res);
8294   // Shift the result.
8295   if (TrailingZeroes)
8296     return DAG.getNode(ISD::SHL, DL, VT, Res,
8297                        DAG.getConstant(TrailingZeroes, DL, MVT::i64));
8298   return Res;
8299 }
8300
8301 static SDValue performVectorCompareAndMaskUnaryOpCombine(SDNode *N,
8302                                                          SelectionDAG &DAG) {
8303   // Take advantage of vector comparisons producing 0 or -1 in each lane to
8304   // optimize away operation when it's from a constant.
8305   //
8306   // The general transformation is:
8307   //    UNARYOP(AND(VECTOR_CMP(x,y), constant)) -->
8308   //       AND(VECTOR_CMP(x,y), constant2)
8309   //    constant2 = UNARYOP(constant)
8310
8311   // Early exit if this isn't a vector operation, the operand of the
8312   // unary operation isn't a bitwise AND, or if the sizes of the operations
8313   // aren't the same.
8314   EVT VT = N->getValueType(0);
8315   if (!VT.isVector() || N->getOperand(0)->getOpcode() != ISD::AND ||
8316       N->getOperand(0)->getOperand(0)->getOpcode() != ISD::SETCC ||
8317       VT.getSizeInBits() != N->getOperand(0)->getValueType(0).getSizeInBits())
8318     return SDValue();
8319
8320   // Now check that the other operand of the AND is a constant. We could
8321   // make the transformation for non-constant splats as well, but it's unclear
8322   // that would be a benefit as it would not eliminate any operations, just
8323   // perform one more step in scalar code before moving to the vector unit.
8324   if (BuildVectorSDNode *BV =
8325           dyn_cast<BuildVectorSDNode>(N->getOperand(0)->getOperand(1))) {
8326     // Bail out if the vector isn't a constant.
8327     if (!BV->isConstant())
8328       return SDValue();
8329
8330     // Everything checks out. Build up the new and improved node.
8331     SDLoc DL(N);
8332     EVT IntVT = BV->getValueType(0);
8333     // Create a new constant of the appropriate type for the transformed
8334     // DAG.
8335     SDValue SourceConst = DAG.getNode(N->getOpcode(), DL, VT, SDValue(BV, 0));
8336     // The AND node needs bitcasts to/from an integer vector type around it.
8337     SDValue MaskConst = DAG.getNode(ISD::BITCAST, DL, IntVT, SourceConst);
8338     SDValue NewAnd = DAG.getNode(ISD::AND, DL, IntVT,
8339                                  N->getOperand(0)->getOperand(0), MaskConst);
8340     SDValue Res = DAG.getNode(ISD::BITCAST, DL, VT, NewAnd);
8341     return Res;
8342   }
8343
8344   return SDValue();
8345 }
8346
8347 static SDValue performIntToFpCombine(SDNode *N, SelectionDAG &DAG,
8348                                      const AArch64Subtarget *Subtarget) {
8349   // First try to optimize away the conversion when it's conditionally from
8350   // a constant. Vectors only.
8351   if (SDValue Res = performVectorCompareAndMaskUnaryOpCombine(N, DAG))
8352     return Res;
8353
8354   EVT VT = N->getValueType(0);
8355   if (VT != MVT::f32 && VT != MVT::f64)
8356     return SDValue();
8357
8358   // Only optimize when the source and destination types have the same width.
8359   if (VT.getSizeInBits() != N->getOperand(0).getValueSizeInBits())
8360     return SDValue();
8361
8362   // If the result of an integer load is only used by an integer-to-float
8363   // conversion, use a fp load instead and a AdvSIMD scalar {S|U}CVTF instead.
8364   // This eliminates an "integer-to-vector-move" UOP and improves throughput.
8365   SDValue N0 = N->getOperand(0);
8366   if (Subtarget->hasNEON() && ISD::isNormalLoad(N0.getNode()) && N0.hasOneUse() &&
8367       // Do not change the width of a volatile load.
8368       !cast<LoadSDNode>(N0)->isVolatile()) {
8369     LoadSDNode *LN0 = cast<LoadSDNode>(N0);
8370     SDValue Load = DAG.getLoad(VT, SDLoc(N), LN0->getChain(), LN0->getBasePtr(),
8371                                LN0->getPointerInfo(), LN0->getAlignment(),
8372                                LN0->getMemOperand()->getFlags());
8373
8374     // Make sure successors of the original load stay after it by updating them
8375     // to use the new Chain.
8376     DAG.ReplaceAllUsesOfValueWith(SDValue(LN0, 1), Load.getValue(1));
8377
8378     unsigned Opcode =
8379         (N->getOpcode() == ISD::SINT_TO_FP) ? AArch64ISD::SITOF : AArch64ISD::UITOF;
8380     return DAG.getNode(Opcode, SDLoc(N), VT, Load);
8381   }
8382
8383   return SDValue();
8384 }
8385
8386 /// Fold a floating-point multiply by power of two into floating-point to
8387 /// fixed-point conversion.
8388 static SDValue performFpToIntCombine(SDNode *N, SelectionDAG &DAG,
8389                                      TargetLowering::DAGCombinerInfo &DCI,
8390                                      const AArch64Subtarget *Subtarget) {
8391   if (!Subtarget->hasNEON())
8392     return SDValue();
8393
8394   SDValue Op = N->getOperand(0);
8395   if (!Op.getValueType().isVector() || !Op.getValueType().isSimple() ||
8396       Op.getOpcode() != ISD::FMUL)
8397     return SDValue();
8398
8399   SDValue ConstVec = Op->getOperand(1);
8400   if (!isa<BuildVectorSDNode>(ConstVec))
8401     return SDValue();
8402
8403   MVT FloatTy = Op.getSimpleValueType().getVectorElementType();
8404   uint32_t FloatBits = FloatTy.getSizeInBits();
8405   if (FloatBits != 32 && FloatBits != 64)
8406     return SDValue();
8407
8408   MVT IntTy = N->getSimpleValueType(0).getVectorElementType();
8409   uint32_t IntBits = IntTy.getSizeInBits();
8410   if (IntBits != 16 && IntBits != 32 && IntBits != 64)
8411     return SDValue();
8412
8413   // Avoid conversions where iN is larger than the float (e.g., float -> i64).
8414   if (IntBits > FloatBits)
8415     return SDValue();
8416
8417   BitVector UndefElements;
8418   BuildVectorSDNode *BV = cast<BuildVectorSDNode>(ConstVec);
8419   int32_t Bits = IntBits == 64 ? 64 : 32;
8420   int32_t C = BV->getConstantFPSplatPow2ToLog2Int(&UndefElements, Bits + 1);
8421   if (C == -1 || C == 0 || C > Bits)
8422     return SDValue();
8423
8424   MVT ResTy;
8425   unsigned NumLanes = Op.getValueType().getVectorNumElements();
8426   switch (NumLanes) {
8427   default:
8428     return SDValue();
8429   case 2:
8430     ResTy = FloatBits == 32 ? MVT::v2i32 : MVT::v2i64;
8431     break;
8432   case 4:
8433     ResTy = FloatBits == 32 ? MVT::v4i32 : MVT::v4i64;
8434     break;
8435   }
8436
8437   if (ResTy == MVT::v4i64 && DCI.isBeforeLegalizeOps())
8438     return SDValue();
8439
8440   assert((ResTy != MVT::v4i64 || DCI.isBeforeLegalizeOps()) &&
8441          "Illegal vector type after legalization");
8442
8443   SDLoc DL(N);
8444   bool IsSigned = N->getOpcode() == ISD::FP_TO_SINT;
8445   unsigned IntrinsicOpcode = IsSigned ? Intrinsic::aarch64_neon_vcvtfp2fxs
8446                                       : Intrinsic::aarch64_neon_vcvtfp2fxu;
8447   SDValue FixConv =
8448       DAG.getNode(ISD::INTRINSIC_WO_CHAIN, DL, ResTy,
8449                   DAG.getConstant(IntrinsicOpcode, DL, MVT::i32),
8450                   Op->getOperand(0), DAG.getConstant(C, DL, MVT::i32));
8451   // We can handle smaller integers by generating an extra trunc.
8452   if (IntBits < FloatBits)
8453     FixConv = DAG.getNode(ISD::TRUNCATE, DL, N->getValueType(0), FixConv);
8454
8455   return FixConv;
8456 }
8457
8458 /// Fold a floating-point divide by power of two into fixed-point to
8459 /// floating-point conversion.
8460 static SDValue performFDivCombine(SDNode *N, SelectionDAG &DAG,
8461                                   TargetLowering::DAGCombinerInfo &DCI,
8462                                   const AArch64Subtarget *Subtarget) {
8463   if (!Subtarget->hasNEON())
8464     return SDValue();
8465
8466   SDValue Op = N->getOperand(0);
8467   unsigned Opc = Op->getOpcode();
8468   if (!Op.getValueType().isVector() || !Op.getValueType().isSimple() ||
8469       !Op.getOperand(0).getValueType().isSimple() ||
8470       (Opc != ISD::SINT_TO_FP && Opc != ISD::UINT_TO_FP))
8471     return SDValue();
8472
8473   SDValue ConstVec = N->getOperand(1);
8474   if (!isa<BuildVectorSDNode>(ConstVec))
8475     return SDValue();
8476
8477   MVT IntTy = Op.getOperand(0).getSimpleValueType().getVectorElementType();
8478   int32_t IntBits = IntTy.getSizeInBits();
8479   if (IntBits != 16 && IntBits != 32 && IntBits != 64)
8480     return SDValue();
8481
8482   MVT FloatTy = N->getSimpleValueType(0).getVectorElementType();
8483   int32_t FloatBits = FloatTy.getSizeInBits();
8484   if (FloatBits != 32 && FloatBits != 64)
8485     return SDValue();
8486
8487   // Avoid conversions where iN is larger than the float (e.g., i64 -> float).
8488   if (IntBits > FloatBits)
8489     return SDValue();
8490
8491   BitVector UndefElements;
8492   BuildVectorSDNode *BV = cast<BuildVectorSDNode>(ConstVec);
8493   int32_t C = BV->getConstantFPSplatPow2ToLog2Int(&UndefElements, FloatBits + 1);
8494   if (C == -1 || C == 0 || C > FloatBits)
8495     return SDValue();
8496
8497   MVT ResTy;
8498   unsigned NumLanes = Op.getValueType().getVectorNumElements();
8499   switch (NumLanes) {
8500   default:
8501     return SDValue();
8502   case 2:
8503     ResTy = FloatBits == 32 ? MVT::v2i32 : MVT::v2i64;
8504     break;
8505   case 4:
8506     ResTy = FloatBits == 32 ? MVT::v4i32 : MVT::v4i64;
8507     break;
8508   }
8509
8510   if (ResTy == MVT::v4i64 && DCI.isBeforeLegalizeOps())
8511     return SDValue();
8512
8513   SDLoc DL(N);
8514   SDValue ConvInput = Op.getOperand(0);
8515   bool IsSigned = Opc == ISD::SINT_TO_FP;
8516   if (IntBits < FloatBits)
8517     ConvInput = DAG.getNode(IsSigned ? ISD::SIGN_EXTEND : ISD::ZERO_EXTEND, DL,
8518                             ResTy, ConvInput);
8519
8520   unsigned IntrinsicOpcode = IsSigned ? Intrinsic::aarch64_neon_vcvtfxs2fp
8521                                       : Intrinsic::aarch64_neon_vcvtfxu2fp;
8522   return DAG.getNode(ISD::INTRINSIC_WO_CHAIN, DL, Op.getValueType(),
8523                      DAG.getConstant(IntrinsicOpcode, DL, MVT::i32), ConvInput,
8524                      DAG.getConstant(C, DL, MVT::i32));
8525 }
8526
8527 /// An EXTR instruction is made up of two shifts, ORed together. This helper
8528 /// searches for and classifies those shifts.
8529 static bool findEXTRHalf(SDValue N, SDValue &Src, uint32_t &ShiftAmount,
8530                          bool &FromHi) {
8531   if (N.getOpcode() == ISD::SHL)
8532     FromHi = false;
8533   else if (N.getOpcode() == ISD::SRL)
8534     FromHi = true;
8535   else
8536     return false;
8537
8538   if (!isa<ConstantSDNode>(N.getOperand(1)))
8539     return false;
8540
8541   ShiftAmount = N->getConstantOperandVal(1);
8542   Src = N->getOperand(0);
8543   return true;
8544 }
8545
8546 /// EXTR instruction extracts a contiguous chunk of bits from two existing
8547 /// registers viewed as a high/low pair. This function looks for the pattern:
8548 /// <tt>(or (shl VAL1, \#N), (srl VAL2, \#RegWidth-N))</tt> and replaces it
8549 /// with an EXTR. Can't quite be done in TableGen because the two immediates
8550 /// aren't independent.
8551 static SDValue tryCombineToEXTR(SDNode *N,
8552                                 TargetLowering::DAGCombinerInfo &DCI) {
8553   SelectionDAG &DAG = DCI.DAG;
8554   SDLoc DL(N);
8555   EVT VT = N->getValueType(0);
8556
8557   assert(N->getOpcode() == ISD::OR && "Unexpected root");
8558
8559   if (VT != MVT::i32 && VT != MVT::i64)
8560     return SDValue();
8561
8562   SDValue LHS;
8563   uint32_t ShiftLHS = 0;
8564   bool LHSFromHi = false;
8565   if (!findEXTRHalf(N->getOperand(0), LHS, ShiftLHS, LHSFromHi))
8566     return SDValue();
8567
8568   SDValue RHS;
8569   uint32_t ShiftRHS = 0;
8570   bool RHSFromHi = false;
8571   if (!findEXTRHalf(N->getOperand(1), RHS, ShiftRHS, RHSFromHi))
8572     return SDValue();
8573
8574   // If they're both trying to come from the high part of the register, they're
8575   // not really an EXTR.
8576   if (LHSFromHi == RHSFromHi)
8577     return SDValue();
8578
8579   if (ShiftLHS + ShiftRHS != VT.getSizeInBits())
8580     return SDValue();
8581
8582   if (LHSFromHi) {
8583     std::swap(LHS, RHS);
8584     std::swap(ShiftLHS, ShiftRHS);
8585   }
8586
8587   return DAG.getNode(AArch64ISD::EXTR, DL, VT, LHS, RHS,
8588                      DAG.getConstant(ShiftRHS, DL, MVT::i64));
8589 }
8590
8591 static SDValue tryCombineToBSL(SDNode *N,
8592                                 TargetLowering::DAGCombinerInfo &DCI) {
8593   EVT VT = N->getValueType(0);
8594   SelectionDAG &DAG = DCI.DAG;
8595   SDLoc DL(N);
8596
8597   if (!VT.isVector())
8598     return SDValue();
8599
8600   SDValue N0 = N->getOperand(0);
8601   if (N0.getOpcode() != ISD::AND)
8602     return SDValue();
8603
8604   SDValue N1 = N->getOperand(1);
8605   if (N1.getOpcode() != ISD::AND)
8606     return SDValue();
8607
8608   // We only have to look for constant vectors here since the general, variable
8609   // case can be handled in TableGen.
8610   unsigned Bits = VT.getScalarSizeInBits();
8611   uint64_t BitMask = Bits == 64 ? -1ULL : ((1ULL << Bits) - 1);
8612   for (int i = 1; i >= 0; --i)
8613     for (int j = 1; j >= 0; --j) {
8614       BuildVectorSDNode *BVN0 = dyn_cast<BuildVectorSDNode>(N0->getOperand(i));
8615       BuildVectorSDNode *BVN1 = dyn_cast<BuildVectorSDNode>(N1->getOperand(j));
8616       if (!BVN0 || !BVN1)
8617         continue;
8618
8619       bool FoundMatch = true;
8620       for (unsigned k = 0; k < VT.getVectorNumElements(); ++k) {
8621         ConstantSDNode *CN0 = dyn_cast<ConstantSDNode>(BVN0->getOperand(k));
8622         ConstantSDNode *CN1 = dyn_cast<ConstantSDNode>(BVN1->getOperand(k));
8623         if (!CN0 || !CN1 ||
8624             CN0->getZExtValue() != (BitMask & ~CN1->getZExtValue())) {
8625           FoundMatch = false;
8626           break;
8627         }
8628       }
8629
8630       if (FoundMatch)
8631         return DAG.getNode(AArch64ISD::BSL, DL, VT, SDValue(BVN0, 0),
8632                            N0->getOperand(1 - i), N1->getOperand(1 - j));
8633     }
8634
8635   return SDValue();
8636 }
8637
8638 static SDValue performORCombine(SDNode *N, TargetLowering::DAGCombinerInfo &DCI,
8639                                 const AArch64Subtarget *Subtarget) {
8640   // Attempt to form an EXTR from (or (shl VAL1, #N), (srl VAL2, #RegWidth-N))
8641   SelectionDAG &DAG = DCI.DAG;
8642   EVT VT = N->getValueType(0);
8643
8644   if (!DAG.getTargetLoweringInfo().isTypeLegal(VT))
8645     return SDValue();
8646
8647   if (SDValue Res = tryCombineToEXTR(N, DCI))
8648     return Res;
8649
8650   if (SDValue Res = tryCombineToBSL(N, DCI))
8651     return Res;
8652
8653   return SDValue();
8654 }
8655
8656 static SDValue performSRLCombine(SDNode *N,
8657                                  TargetLowering::DAGCombinerInfo &DCI) {
8658   SelectionDAG &DAG = DCI.DAG;
8659   EVT VT = N->getValueType(0);
8660   if (VT != MVT::i32 && VT != MVT::i64)
8661     return SDValue();
8662
8663   // Canonicalize (srl (bswap i32 x), 16) to (rotr (bswap i32 x), 16), if the
8664   // high 16-bits of x are zero. Similarly, canonicalize (srl (bswap i64 x), 32)
8665   // to (rotr (bswap i64 x), 32), if the high 32-bits of x are zero.
8666   SDValue N0 = N->getOperand(0);
8667   if (N0.getOpcode() == ISD::BSWAP) {
8668     SDLoc DL(N);
8669     SDValue N1 = N->getOperand(1);
8670     SDValue N00 = N0.getOperand(0);
8671     if (ConstantSDNode *C = dyn_cast<ConstantSDNode>(N1)) {
8672       uint64_t ShiftAmt = C->getZExtValue();
8673       if (VT == MVT::i32 && ShiftAmt == 16 &&
8674           DAG.MaskedValueIsZero(N00, APInt::getHighBitsSet(32, 16)))
8675         return DAG.getNode(ISD::ROTR, DL, VT, N0, N1);
8676       if (VT == MVT::i64 && ShiftAmt == 32 &&
8677           DAG.MaskedValueIsZero(N00, APInt::getHighBitsSet(64, 32)))
8678         return DAG.getNode(ISD::ROTR, DL, VT, N0, N1);
8679     }
8680   }
8681   return SDValue();
8682 }
8683
8684 static SDValue performBitcastCombine(SDNode *N,
8685                                      TargetLowering::DAGCombinerInfo &DCI,
8686                                      SelectionDAG &DAG) {
8687   // Wait 'til after everything is legalized to try this. That way we have
8688   // legal vector types and such.
8689   if (DCI.isBeforeLegalizeOps())
8690     return SDValue();
8691
8692   // Remove extraneous bitcasts around an extract_subvector.
8693   // For example,
8694   //    (v4i16 (bitconvert
8695   //             (extract_subvector (v2i64 (bitconvert (v8i16 ...)), (i64 1)))))
8696   //  becomes
8697   //    (extract_subvector ((v8i16 ...), (i64 4)))
8698
8699   // Only interested in 64-bit vectors as the ultimate result.
8700   EVT VT = N->getValueType(0);
8701   if (!VT.isVector())
8702     return SDValue();
8703   if (VT.getSimpleVT().getSizeInBits() != 64)
8704     return SDValue();
8705   // Is the operand an extract_subvector starting at the beginning or halfway
8706   // point of the vector? A low half may also come through as an
8707   // EXTRACT_SUBREG, so look for that, too.
8708   SDValue Op0 = N->getOperand(0);
8709   if (Op0->getOpcode() != ISD::EXTRACT_SUBVECTOR &&
8710       !(Op0->isMachineOpcode() &&
8711         Op0->getMachineOpcode() == AArch64::EXTRACT_SUBREG))
8712     return SDValue();
8713   uint64_t idx = cast<ConstantSDNode>(Op0->getOperand(1))->getZExtValue();
8714   if (Op0->getOpcode() == ISD::EXTRACT_SUBVECTOR) {
8715     if (Op0->getValueType(0).getVectorNumElements() != idx && idx != 0)
8716       return SDValue();
8717   } else if (Op0->getMachineOpcode() == AArch64::EXTRACT_SUBREG) {
8718     if (idx != AArch64::dsub)
8719       return SDValue();
8720     // The dsub reference is equivalent to a lane zero subvector reference.
8721     idx = 0;
8722   }
8723   // Look through the bitcast of the input to the extract.
8724   if (Op0->getOperand(0)->getOpcode() != ISD::BITCAST)
8725     return SDValue();
8726   SDValue Source = Op0->getOperand(0)->getOperand(0);
8727   // If the source type has twice the number of elements as our destination
8728   // type, we know this is an extract of the high or low half of the vector.
8729   EVT SVT = Source->getValueType(0);
8730   if (SVT.getVectorNumElements() != VT.getVectorNumElements() * 2)
8731     return SDValue();
8732
8733   DEBUG(dbgs() << "aarch64-lower: bitcast extract_subvector simplification\n");
8734
8735   // Create the simplified form to just extract the low or high half of the
8736   // vector directly rather than bothering with the bitcasts.
8737   SDLoc dl(N);
8738   unsigned NumElements = VT.getVectorNumElements();
8739   if (idx) {
8740     SDValue HalfIdx = DAG.getConstant(NumElements, dl, MVT::i64);
8741     return DAG.getNode(ISD::EXTRACT_SUBVECTOR, dl, VT, Source, HalfIdx);
8742   } else {
8743     SDValue SubReg = DAG.getTargetConstant(AArch64::dsub, dl, MVT::i32);
8744     return SDValue(DAG.getMachineNode(TargetOpcode::EXTRACT_SUBREG, dl, VT,
8745                                       Source, SubReg),
8746                    0);
8747   }
8748 }
8749
8750 static SDValue performConcatVectorsCombine(SDNode *N,
8751                                            TargetLowering::DAGCombinerInfo &DCI,
8752                                            SelectionDAG &DAG) {
8753   SDLoc dl(N);
8754   EVT VT = N->getValueType(0);
8755   SDValue N0 = N->getOperand(0), N1 = N->getOperand(1);
8756
8757   // Optimize concat_vectors of truncated vectors, where the intermediate
8758   // type is illegal, to avoid said illegality,  e.g.,
8759   //   (v4i16 (concat_vectors (v2i16 (truncate (v2i64))),
8760   //                          (v2i16 (truncate (v2i64)))))
8761   // ->
8762   //   (v4i16 (truncate (vector_shuffle (v4i32 (bitcast (v2i64))),
8763   //                                    (v4i32 (bitcast (v2i64))),
8764   //                                    <0, 2, 4, 6>)))
8765   // This isn't really target-specific, but ISD::TRUNCATE legality isn't keyed
8766   // on both input and result type, so we might generate worse code.
8767   // On AArch64 we know it's fine for v2i64->v4i16 and v4i32->v8i8.
8768   if (N->getNumOperands() == 2 &&
8769       N0->getOpcode() == ISD::TRUNCATE &&
8770       N1->getOpcode() == ISD::TRUNCATE) {
8771     SDValue N00 = N0->getOperand(0);
8772     SDValue N10 = N1->getOperand(0);
8773     EVT N00VT = N00.getValueType();
8774
8775     if (N00VT == N10.getValueType() &&
8776         (N00VT == MVT::v2i64 || N00VT == MVT::v4i32) &&
8777         N00VT.getScalarSizeInBits() == 4 * VT.getScalarSizeInBits()) {
8778       MVT MidVT = (N00VT == MVT::v2i64 ? MVT::v4i32 : MVT::v8i16);
8779       SmallVector<int, 8> Mask(MidVT.getVectorNumElements());
8780       for (size_t i = 0; i < Mask.size(); ++i)
8781         Mask[i] = i * 2;
8782       return DAG.getNode(ISD::TRUNCATE, dl, VT,
8783                          DAG.getVectorShuffle(
8784                              MidVT, dl,
8785                              DAG.getNode(ISD::BITCAST, dl, MidVT, N00),
8786                              DAG.getNode(ISD::BITCAST, dl, MidVT, N10), Mask));
8787     }
8788   }
8789
8790   // Wait 'til after everything is legalized to try this. That way we have
8791   // legal vector types and such.
8792   if (DCI.isBeforeLegalizeOps())
8793     return SDValue();
8794
8795   // If we see a (concat_vectors (v1x64 A), (v1x64 A)) it's really a vector
8796   // splat. The indexed instructions are going to be expecting a DUPLANE64, so
8797   // canonicalise to that.
8798   if (N0 == N1 && VT.getVectorNumElements() == 2) {
8799     assert(VT.getScalarSizeInBits() == 64);
8800     return DAG.getNode(AArch64ISD::DUPLANE64, dl, VT, WidenVector(N0, DAG),
8801                        DAG.getConstant(0, dl, MVT::i64));
8802   }
8803
8804   // Canonicalise concat_vectors so that the right-hand vector has as few
8805   // bit-casts as possible before its real operation. The primary matching
8806   // destination for these operations will be the narrowing "2" instructions,
8807   // which depend on the operation being performed on this right-hand vector.
8808   // For example,
8809   //    (concat_vectors LHS,  (v1i64 (bitconvert (v4i16 RHS))))
8810   // becomes
8811   //    (bitconvert (concat_vectors (v4i16 (bitconvert LHS)), RHS))
8812
8813   if (N1->getOpcode() != ISD::BITCAST)
8814     return SDValue();
8815   SDValue RHS = N1->getOperand(0);
8816   MVT RHSTy = RHS.getValueType().getSimpleVT();
8817   // If the RHS is not a vector, this is not the pattern we're looking for.
8818   if (!RHSTy.isVector())
8819     return SDValue();
8820
8821   DEBUG(dbgs() << "aarch64-lower: concat_vectors bitcast simplification\n");
8822
8823   MVT ConcatTy = MVT::getVectorVT(RHSTy.getVectorElementType(),
8824                                   RHSTy.getVectorNumElements() * 2);
8825   return DAG.getNode(ISD::BITCAST, dl, VT,
8826                      DAG.getNode(ISD::CONCAT_VECTORS, dl, ConcatTy,
8827                                  DAG.getNode(ISD::BITCAST, dl, RHSTy, N0),
8828                                  RHS));
8829 }
8830
8831 static SDValue tryCombineFixedPointConvert(SDNode *N,
8832                                            TargetLowering::DAGCombinerInfo &DCI,
8833                                            SelectionDAG &DAG) {
8834   // Wait 'til after everything is legalized to try this. That way we have
8835   // legal vector types and such.
8836   if (DCI.isBeforeLegalizeOps())
8837     return SDValue();
8838   // Transform a scalar conversion of a value from a lane extract into a
8839   // lane extract of a vector conversion. E.g., from foo1 to foo2:
8840   // double foo1(int64x2_t a) { return vcvtd_n_f64_s64(a[1], 9); }
8841   // double foo2(int64x2_t a) { return vcvtq_n_f64_s64(a, 9)[1]; }
8842   //
8843   // The second form interacts better with instruction selection and the
8844   // register allocator to avoid cross-class register copies that aren't
8845   // coalescable due to a lane reference.
8846
8847   // Check the operand and see if it originates from a lane extract.
8848   SDValue Op1 = N->getOperand(1);
8849   if (Op1.getOpcode() == ISD::EXTRACT_VECTOR_ELT) {
8850     // Yep, no additional predication needed. Perform the transform.
8851     SDValue IID = N->getOperand(0);
8852     SDValue Shift = N->getOperand(2);
8853     SDValue Vec = Op1.getOperand(0);
8854     SDValue Lane = Op1.getOperand(1);
8855     EVT ResTy = N->getValueType(0);
8856     EVT VecResTy;
8857     SDLoc DL(N);
8858
8859     // The vector width should be 128 bits by the time we get here, even
8860     // if it started as 64 bits (the extract_vector handling will have
8861     // done so).
8862     assert(Vec.getValueSizeInBits() == 128 &&
8863            "unexpected vector size on extract_vector_elt!");
8864     if (Vec.getValueType() == MVT::v4i32)
8865       VecResTy = MVT::v4f32;
8866     else if (Vec.getValueType() == MVT::v2i64)
8867       VecResTy = MVT::v2f64;
8868     else
8869       llvm_unreachable("unexpected vector type!");
8870
8871     SDValue Convert =
8872         DAG.getNode(ISD::INTRINSIC_WO_CHAIN, DL, VecResTy, IID, Vec, Shift);
8873     return DAG.getNode(ISD::EXTRACT_VECTOR_ELT, DL, ResTy, Convert, Lane);
8874   }
8875   return SDValue();
8876 }
8877
8878 // AArch64 high-vector "long" operations are formed by performing the non-high
8879 // version on an extract_subvector of each operand which gets the high half:
8880 //
8881 //  (longop2 LHS, RHS) == (longop (extract_high LHS), (extract_high RHS))
8882 //
8883 // However, there are cases which don't have an extract_high explicitly, but
8884 // have another operation that can be made compatible with one for free. For
8885 // example:
8886 //
8887 //  (dupv64 scalar) --> (extract_high (dup128 scalar))
8888 //
8889 // This routine does the actual conversion of such DUPs, once outer routines
8890 // have determined that everything else is in order.
8891 // It also supports immediate DUP-like nodes (MOVI/MVNi), which we can fold
8892 // similarly here.
8893 static SDValue tryExtendDUPToExtractHigh(SDValue N, SelectionDAG &DAG) {
8894   switch (N.getOpcode()) {
8895   case AArch64ISD::DUP:
8896   case AArch64ISD::DUPLANE8:
8897   case AArch64ISD::DUPLANE16:
8898   case AArch64ISD::DUPLANE32:
8899   case AArch64ISD::DUPLANE64:
8900   case AArch64ISD::MOVI:
8901   case AArch64ISD::MOVIshift:
8902   case AArch64ISD::MOVIedit:
8903   case AArch64ISD::MOVImsl:
8904   case AArch64ISD::MVNIshift:
8905   case AArch64ISD::MVNImsl:
8906     break;
8907   default:
8908     // FMOV could be supported, but isn't very useful, as it would only occur
8909     // if you passed a bitcast' floating point immediate to an eligible long
8910     // integer op (addl, smull, ...).
8911     return SDValue();
8912   }
8913
8914   MVT NarrowTy = N.getSimpleValueType();
8915   if (!NarrowTy.is64BitVector())
8916     return SDValue();
8917
8918   MVT ElementTy = NarrowTy.getVectorElementType();
8919   unsigned NumElems = NarrowTy.getVectorNumElements();
8920   MVT NewVT = MVT::getVectorVT(ElementTy, NumElems * 2);
8921
8922   SDLoc dl(N);
8923   return DAG.getNode(ISD::EXTRACT_SUBVECTOR, dl, NarrowTy,
8924                      DAG.getNode(N->getOpcode(), dl, NewVT, N->ops()),
8925                      DAG.getConstant(NumElems, dl, MVT::i64));
8926 }
8927
8928 static bool isEssentiallyExtractSubvector(SDValue N) {
8929   if (N.getOpcode() == ISD::EXTRACT_SUBVECTOR)
8930     return true;
8931
8932   return N.getOpcode() == ISD::BITCAST &&
8933          N.getOperand(0).getOpcode() == ISD::EXTRACT_SUBVECTOR;
8934 }
8935
8936 /// \brief Helper structure to keep track of ISD::SET_CC operands.
8937 struct GenericSetCCInfo {
8938   const SDValue *Opnd0;
8939   const SDValue *Opnd1;
8940   ISD::CondCode CC;
8941 };
8942
8943 /// \brief Helper structure to keep track of a SET_CC lowered into AArch64 code.
8944 struct AArch64SetCCInfo {
8945   const SDValue *Cmp;
8946   AArch64CC::CondCode CC;
8947 };
8948
8949 /// \brief Helper structure to keep track of SetCC information.
8950 union SetCCInfo {
8951   GenericSetCCInfo Generic;
8952   AArch64SetCCInfo AArch64;
8953 };
8954
8955 /// \brief Helper structure to be able to read SetCC information.  If set to
8956 /// true, IsAArch64 field, Info is a AArch64SetCCInfo, otherwise Info is a
8957 /// GenericSetCCInfo.
8958 struct SetCCInfoAndKind {
8959   SetCCInfo Info;
8960   bool IsAArch64;
8961 };
8962
8963 /// \brief Check whether or not \p Op is a SET_CC operation, either a generic or
8964 /// an
8965 /// AArch64 lowered one.
8966 /// \p SetCCInfo is filled accordingly.
8967 /// \post SetCCInfo is meanginfull only when this function returns true.
8968 /// \return True when Op is a kind of SET_CC operation.
8969 static bool isSetCC(SDValue Op, SetCCInfoAndKind &SetCCInfo) {
8970   // If this is a setcc, this is straight forward.
8971   if (Op.getOpcode() == ISD::SETCC) {
8972     SetCCInfo.Info.Generic.Opnd0 = &Op.getOperand(0);
8973     SetCCInfo.Info.Generic.Opnd1 = &Op.getOperand(1);
8974     SetCCInfo.Info.Generic.CC = cast<CondCodeSDNode>(Op.getOperand(2))->get();
8975     SetCCInfo.IsAArch64 = false;
8976     return true;
8977   }
8978   // Otherwise, check if this is a matching csel instruction.
8979   // In other words:
8980   // - csel 1, 0, cc
8981   // - csel 0, 1, !cc
8982   if (Op.getOpcode() != AArch64ISD::CSEL)
8983     return false;
8984   // Set the information about the operands.
8985   // TODO: we want the operands of the Cmp not the csel
8986   SetCCInfo.Info.AArch64.Cmp = &Op.getOperand(3);
8987   SetCCInfo.IsAArch64 = true;
8988   SetCCInfo.Info.AArch64.CC = static_cast<AArch64CC::CondCode>(
8989       cast<ConstantSDNode>(Op.getOperand(2))->getZExtValue());
8990
8991   // Check that the operands matches the constraints:
8992   // (1) Both operands must be constants.
8993   // (2) One must be 1 and the other must be 0.
8994   ConstantSDNode *TValue = dyn_cast<ConstantSDNode>(Op.getOperand(0));
8995   ConstantSDNode *FValue = dyn_cast<ConstantSDNode>(Op.getOperand(1));
8996
8997   // Check (1).
8998   if (!TValue || !FValue)
8999     return false;
9000
9001   // Check (2).
9002   if (!TValue->isOne()) {
9003     // Update the comparison when we are interested in !cc.
9004     std::swap(TValue, FValue);
9005     SetCCInfo.Info.AArch64.CC =
9006         AArch64CC::getInvertedCondCode(SetCCInfo.Info.AArch64.CC);
9007   }
9008   return TValue->isOne() && FValue->isNullValue();
9009 }
9010
9011 // Returns true if Op is setcc or zext of setcc.
9012 static bool isSetCCOrZExtSetCC(const SDValue& Op, SetCCInfoAndKind &Info) {
9013   if (isSetCC(Op, Info))
9014     return true;
9015   return ((Op.getOpcode() == ISD::ZERO_EXTEND) &&
9016     isSetCC(Op->getOperand(0), Info));
9017 }
9018
9019 // The folding we want to perform is:
9020 // (add x, [zext] (setcc cc ...) )
9021 //   -->
9022 // (csel x, (add x, 1), !cc ...)
9023 //
9024 // The latter will get matched to a CSINC instruction.
9025 static SDValue performSetccAddFolding(SDNode *Op, SelectionDAG &DAG) {
9026   assert(Op && Op->getOpcode() == ISD::ADD && "Unexpected operation!");
9027   SDValue LHS = Op->getOperand(0);
9028   SDValue RHS = Op->getOperand(1);
9029   SetCCInfoAndKind InfoAndKind;
9030
9031   // If neither operand is a SET_CC, give up.
9032   if (!isSetCCOrZExtSetCC(LHS, InfoAndKind)) {
9033     std::swap(LHS, RHS);
9034     if (!isSetCCOrZExtSetCC(LHS, InfoAndKind))
9035       return SDValue();
9036   }
9037
9038   // FIXME: This could be generatized to work for FP comparisons.
9039   EVT CmpVT = InfoAndKind.IsAArch64
9040                   ? InfoAndKind.Info.AArch64.Cmp->getOperand(0).getValueType()
9041                   : InfoAndKind.Info.Generic.Opnd0->getValueType();
9042   if (CmpVT != MVT::i32 && CmpVT != MVT::i64)
9043     return SDValue();
9044
9045   SDValue CCVal;
9046   SDValue Cmp;
9047   SDLoc dl(Op);
9048   if (InfoAndKind.IsAArch64) {
9049     CCVal = DAG.getConstant(
9050         AArch64CC::getInvertedCondCode(InfoAndKind.Info.AArch64.CC), dl,
9051         MVT::i32);
9052     Cmp = *InfoAndKind.Info.AArch64.Cmp;
9053   } else
9054     Cmp = getAArch64Cmp(*InfoAndKind.Info.Generic.Opnd0,
9055                       *InfoAndKind.Info.Generic.Opnd1,
9056                       ISD::getSetCCInverse(InfoAndKind.Info.Generic.CC, true),
9057                       CCVal, DAG, dl);
9058
9059   EVT VT = Op->getValueType(0);
9060   LHS = DAG.getNode(ISD::ADD, dl, VT, RHS, DAG.getConstant(1, dl, VT));
9061   return DAG.getNode(AArch64ISD::CSEL, dl, VT, RHS, LHS, CCVal, Cmp);
9062 }
9063
9064 // The basic add/sub long vector instructions have variants with "2" on the end
9065 // which act on the high-half of their inputs. They are normally matched by
9066 // patterns like:
9067 //
9068 // (add (zeroext (extract_high LHS)),
9069 //      (zeroext (extract_high RHS)))
9070 // -> uaddl2 vD, vN, vM
9071 //
9072 // However, if one of the extracts is something like a duplicate, this
9073 // instruction can still be used profitably. This function puts the DAG into a
9074 // more appropriate form for those patterns to trigger.
9075 static SDValue performAddSubLongCombine(SDNode *N,
9076                                         TargetLowering::DAGCombinerInfo &DCI,
9077                                         SelectionDAG &DAG) {
9078   if (DCI.isBeforeLegalizeOps())
9079     return SDValue();
9080
9081   MVT VT = N->getSimpleValueType(0);
9082   if (!VT.is128BitVector()) {
9083     if (N->getOpcode() == ISD::ADD)
9084       return performSetccAddFolding(N, DAG);
9085     return SDValue();
9086   }
9087
9088   // Make sure both branches are extended in the same way.
9089   SDValue LHS = N->getOperand(0);
9090   SDValue RHS = N->getOperand(1);
9091   if ((LHS.getOpcode() != ISD::ZERO_EXTEND &&
9092        LHS.getOpcode() != ISD::SIGN_EXTEND) ||
9093       LHS.getOpcode() != RHS.getOpcode())
9094     return SDValue();
9095
9096   unsigned ExtType = LHS.getOpcode();
9097
9098   // It's not worth doing if at least one of the inputs isn't already an
9099   // extract, but we don't know which it'll be so we have to try both.
9100   if (isEssentiallyExtractSubvector(LHS.getOperand(0))) {
9101     RHS = tryExtendDUPToExtractHigh(RHS.getOperand(0), DAG);
9102     if (!RHS.getNode())
9103       return SDValue();
9104
9105     RHS = DAG.getNode(ExtType, SDLoc(N), VT, RHS);
9106   } else if (isEssentiallyExtractSubvector(RHS.getOperand(0))) {
9107     LHS = tryExtendDUPToExtractHigh(LHS.getOperand(0), DAG);
9108     if (!LHS.getNode())
9109       return SDValue();
9110
9111     LHS = DAG.getNode(ExtType, SDLoc(N), VT, LHS);
9112   }
9113
9114   return DAG.getNode(N->getOpcode(), SDLoc(N), VT, LHS, RHS);
9115 }
9116
9117 // Massage DAGs which we can use the high-half "long" operations on into
9118 // something isel will recognize better. E.g.
9119 //
9120 // (aarch64_neon_umull (extract_high vec) (dupv64 scalar)) -->
9121 //   (aarch64_neon_umull (extract_high (v2i64 vec)))
9122 //                     (extract_high (v2i64 (dup128 scalar)))))
9123 //
9124 static SDValue tryCombineLongOpWithDup(unsigned IID, SDNode *N,
9125                                        TargetLowering::DAGCombinerInfo &DCI,
9126                                        SelectionDAG &DAG) {
9127   if (DCI.isBeforeLegalizeOps())
9128     return SDValue();
9129
9130   SDValue LHS = N->getOperand(1);
9131   SDValue RHS = N->getOperand(2);
9132   assert(LHS.getValueType().is64BitVector() &&
9133          RHS.getValueType().is64BitVector() &&
9134          "unexpected shape for long operation");
9135
9136   // Either node could be a DUP, but it's not worth doing both of them (you'd
9137   // just as well use the non-high version) so look for a corresponding extract
9138   // operation on the other "wing".
9139   if (isEssentiallyExtractSubvector(LHS)) {
9140     RHS = tryExtendDUPToExtractHigh(RHS, DAG);
9141     if (!RHS.getNode())
9142       return SDValue();
9143   } else if (isEssentiallyExtractSubvector(RHS)) {
9144     LHS = tryExtendDUPToExtractHigh(LHS, DAG);
9145     if (!LHS.getNode())
9146       return SDValue();
9147   }
9148
9149   return DAG.getNode(ISD::INTRINSIC_WO_CHAIN, SDLoc(N), N->getValueType(0),
9150                      N->getOperand(0), LHS, RHS);
9151 }
9152
9153 static SDValue tryCombineShiftImm(unsigned IID, SDNode *N, SelectionDAG &DAG) {
9154   MVT ElemTy = N->getSimpleValueType(0).getScalarType();
9155   unsigned ElemBits = ElemTy.getSizeInBits();
9156
9157   int64_t ShiftAmount;
9158   if (BuildVectorSDNode *BVN = dyn_cast<BuildVectorSDNode>(N->getOperand(2))) {
9159     APInt SplatValue, SplatUndef;
9160     unsigned SplatBitSize;
9161     bool HasAnyUndefs;
9162     if (!BVN->isConstantSplat(SplatValue, SplatUndef, SplatBitSize,
9163                               HasAnyUndefs, ElemBits) ||
9164         SplatBitSize != ElemBits)
9165       return SDValue();
9166
9167     ShiftAmount = SplatValue.getSExtValue();
9168   } else if (ConstantSDNode *CVN = dyn_cast<ConstantSDNode>(N->getOperand(2))) {
9169     ShiftAmount = CVN->getSExtValue();
9170   } else
9171     return SDValue();
9172
9173   unsigned Opcode;
9174   bool IsRightShift;
9175   switch (IID) {
9176   default:
9177     llvm_unreachable("Unknown shift intrinsic");
9178   case Intrinsic::aarch64_neon_sqshl:
9179     Opcode = AArch64ISD::SQSHL_I;
9180     IsRightShift = false;
9181     break;
9182   case Intrinsic::aarch64_neon_uqshl:
9183     Opcode = AArch64ISD::UQSHL_I;
9184     IsRightShift = false;
9185     break;
9186   case Intrinsic::aarch64_neon_srshl:
9187     Opcode = AArch64ISD::SRSHR_I;
9188     IsRightShift = true;
9189     break;
9190   case Intrinsic::aarch64_neon_urshl:
9191     Opcode = AArch64ISD::URSHR_I;
9192     IsRightShift = true;
9193     break;
9194   case Intrinsic::aarch64_neon_sqshlu:
9195     Opcode = AArch64ISD::SQSHLU_I;
9196     IsRightShift = false;
9197     break;
9198   }
9199
9200   if (IsRightShift && ShiftAmount <= -1 && ShiftAmount >= -(int)ElemBits) {
9201     SDLoc dl(N);
9202     return DAG.getNode(Opcode, dl, N->getValueType(0), N->getOperand(1),
9203                        DAG.getConstant(-ShiftAmount, dl, MVT::i32));
9204   } else if (!IsRightShift && ShiftAmount >= 0 && ShiftAmount < ElemBits) {
9205     SDLoc dl(N);
9206     return DAG.getNode(Opcode, dl, N->getValueType(0), N->getOperand(1),
9207                        DAG.getConstant(ShiftAmount, dl, MVT::i32));
9208   }
9209
9210   return SDValue();
9211 }
9212
9213 // The CRC32[BH] instructions ignore the high bits of their data operand. Since
9214 // the intrinsics must be legal and take an i32, this means there's almost
9215 // certainly going to be a zext in the DAG which we can eliminate.
9216 static SDValue tryCombineCRC32(unsigned Mask, SDNode *N, SelectionDAG &DAG) {
9217   SDValue AndN = N->getOperand(2);
9218   if (AndN.getOpcode() != ISD::AND)
9219     return SDValue();
9220
9221   ConstantSDNode *CMask = dyn_cast<ConstantSDNode>(AndN.getOperand(1));
9222   if (!CMask || CMask->getZExtValue() != Mask)
9223     return SDValue();
9224
9225   return DAG.getNode(ISD::INTRINSIC_WO_CHAIN, SDLoc(N), MVT::i32,
9226                      N->getOperand(0), N->getOperand(1), AndN.getOperand(0));
9227 }
9228
9229 static SDValue combineAcrossLanesIntrinsic(unsigned Opc, SDNode *N,
9230                                            SelectionDAG &DAG) {
9231   SDLoc dl(N);
9232   return DAG.getNode(ISD::EXTRACT_VECTOR_ELT, dl, N->getValueType(0),
9233                      DAG.getNode(Opc, dl,
9234                                  N->getOperand(1).getSimpleValueType(),
9235                                  N->getOperand(1)),
9236                      DAG.getConstant(0, dl, MVT::i64));
9237 }
9238
9239 static SDValue performIntrinsicCombine(SDNode *N,
9240                                        TargetLowering::DAGCombinerInfo &DCI,
9241                                        const AArch64Subtarget *Subtarget) {
9242   SelectionDAG &DAG = DCI.DAG;
9243   unsigned IID = getIntrinsicID(N);
9244   switch (IID) {
9245   default:
9246     break;
9247   case Intrinsic::aarch64_neon_vcvtfxs2fp:
9248   case Intrinsic::aarch64_neon_vcvtfxu2fp:
9249     return tryCombineFixedPointConvert(N, DCI, DAG);
9250   case Intrinsic::aarch64_neon_saddv:
9251     return combineAcrossLanesIntrinsic(AArch64ISD::SADDV, N, DAG);
9252   case Intrinsic::aarch64_neon_uaddv:
9253     return combineAcrossLanesIntrinsic(AArch64ISD::UADDV, N, DAG);
9254   case Intrinsic::aarch64_neon_sminv:
9255     return combineAcrossLanesIntrinsic(AArch64ISD::SMINV, N, DAG);
9256   case Intrinsic::aarch64_neon_uminv:
9257     return combineAcrossLanesIntrinsic(AArch64ISD::UMINV, N, DAG);
9258   case Intrinsic::aarch64_neon_smaxv:
9259     return combineAcrossLanesIntrinsic(AArch64ISD::SMAXV, N, DAG);
9260   case Intrinsic::aarch64_neon_umaxv:
9261     return combineAcrossLanesIntrinsic(AArch64ISD::UMAXV, N, DAG);
9262   case Intrinsic::aarch64_neon_fmax:
9263     return DAG.getNode(ISD::FMAXNAN, SDLoc(N), N->getValueType(0),
9264                        N->getOperand(1), N->getOperand(2));
9265   case Intrinsic::aarch64_neon_fmin:
9266     return DAG.getNode(ISD::FMINNAN, SDLoc(N), N->getValueType(0),
9267                        N->getOperand(1), N->getOperand(2));
9268   case Intrinsic::aarch64_neon_fmaxnm:
9269     return DAG.getNode(ISD::FMAXNUM, SDLoc(N), N->getValueType(0),
9270                        N->getOperand(1), N->getOperand(2));
9271   case Intrinsic::aarch64_neon_fminnm:
9272     return DAG.getNode(ISD::FMINNUM, SDLoc(N), N->getValueType(0),
9273                        N->getOperand(1), N->getOperand(2));
9274   case Intrinsic::aarch64_neon_smull:
9275   case Intrinsic::aarch64_neon_umull:
9276   case Intrinsic::aarch64_neon_pmull:
9277   case Intrinsic::aarch64_neon_sqdmull:
9278     return tryCombineLongOpWithDup(IID, N, DCI, DAG);
9279   case Intrinsic::aarch64_neon_sqshl:
9280   case Intrinsic::aarch64_neon_uqshl:
9281   case Intrinsic::aarch64_neon_sqshlu:
9282   case Intrinsic::aarch64_neon_srshl:
9283   case Intrinsic::aarch64_neon_urshl:
9284     return tryCombineShiftImm(IID, N, DAG);
9285   case Intrinsic::aarch64_crc32b:
9286   case Intrinsic::aarch64_crc32cb:
9287     return tryCombineCRC32(0xff, N, DAG);
9288   case Intrinsic::aarch64_crc32h:
9289   case Intrinsic::aarch64_crc32ch:
9290     return tryCombineCRC32(0xffff, N, DAG);
9291   }
9292   return SDValue();
9293 }
9294
9295 static SDValue performExtendCombine(SDNode *N,
9296                                     TargetLowering::DAGCombinerInfo &DCI,
9297                                     SelectionDAG &DAG) {
9298   // If we see something like (zext (sabd (extract_high ...), (DUP ...))) then
9299   // we can convert that DUP into another extract_high (of a bigger DUP), which
9300   // helps the backend to decide that an sabdl2 would be useful, saving a real
9301   // extract_high operation.
9302   if (!DCI.isBeforeLegalizeOps() && N->getOpcode() == ISD::ZERO_EXTEND &&
9303       N->getOperand(0).getOpcode() == ISD::INTRINSIC_WO_CHAIN) {
9304     SDNode *ABDNode = N->getOperand(0).getNode();
9305     unsigned IID = getIntrinsicID(ABDNode);
9306     if (IID == Intrinsic::aarch64_neon_sabd ||
9307         IID == Intrinsic::aarch64_neon_uabd) {
9308       SDValue NewABD = tryCombineLongOpWithDup(IID, ABDNode, DCI, DAG);
9309       if (!NewABD.getNode())
9310         return SDValue();
9311
9312       return DAG.getNode(ISD::ZERO_EXTEND, SDLoc(N), N->getValueType(0),
9313                          NewABD);
9314     }
9315   }
9316
9317   // This is effectively a custom type legalization for AArch64.
9318   //
9319   // Type legalization will split an extend of a small, legal, type to a larger
9320   // illegal type by first splitting the destination type, often creating
9321   // illegal source types, which then get legalized in isel-confusing ways,
9322   // leading to really terrible codegen. E.g.,
9323   //   %result = v8i32 sext v8i8 %value
9324   // becomes
9325   //   %losrc = extract_subreg %value, ...
9326   //   %hisrc = extract_subreg %value, ...
9327   //   %lo = v4i32 sext v4i8 %losrc
9328   //   %hi = v4i32 sext v4i8 %hisrc
9329   // Things go rapidly downhill from there.
9330   //
9331   // For AArch64, the [sz]ext vector instructions can only go up one element
9332   // size, so we can, e.g., extend from i8 to i16, but to go from i8 to i32
9333   // take two instructions.
9334   //
9335   // This implies that the most efficient way to do the extend from v8i8
9336   // to two v4i32 values is to first extend the v8i8 to v8i16, then do
9337   // the normal splitting to happen for the v8i16->v8i32.
9338
9339   // This is pre-legalization to catch some cases where the default
9340   // type legalization will create ill-tempered code.
9341   if (!DCI.isBeforeLegalizeOps())
9342     return SDValue();
9343
9344   // We're only interested in cleaning things up for non-legal vector types
9345   // here. If both the source and destination are legal, things will just
9346   // work naturally without any fiddling.
9347   const TargetLowering &TLI = DAG.getTargetLoweringInfo();
9348   EVT ResVT = N->getValueType(0);
9349   if (!ResVT.isVector() || TLI.isTypeLegal(ResVT))
9350     return SDValue();
9351   // If the vector type isn't a simple VT, it's beyond the scope of what
9352   // we're  worried about here. Let legalization do its thing and hope for
9353   // the best.
9354   SDValue Src = N->getOperand(0);
9355   EVT SrcVT = Src->getValueType(0);
9356   if (!ResVT.isSimple() || !SrcVT.isSimple())
9357     return SDValue();
9358
9359   // If the source VT is a 64-bit vector, we can play games and get the
9360   // better results we want.
9361   if (SrcVT.getSizeInBits() != 64)
9362     return SDValue();
9363
9364   unsigned SrcEltSize = SrcVT.getScalarSizeInBits();
9365   unsigned ElementCount = SrcVT.getVectorNumElements();
9366   SrcVT = MVT::getVectorVT(MVT::getIntegerVT(SrcEltSize * 2), ElementCount);
9367   SDLoc DL(N);
9368   Src = DAG.getNode(N->getOpcode(), DL, SrcVT, Src);
9369
9370   // Now split the rest of the operation into two halves, each with a 64
9371   // bit source.
9372   EVT LoVT, HiVT;
9373   SDValue Lo, Hi;
9374   unsigned NumElements = ResVT.getVectorNumElements();
9375   assert(!(NumElements & 1) && "Splitting vector, but not in half!");
9376   LoVT = HiVT = EVT::getVectorVT(*DAG.getContext(),
9377                                  ResVT.getVectorElementType(), NumElements / 2);
9378
9379   EVT InNVT = EVT::getVectorVT(*DAG.getContext(), SrcVT.getVectorElementType(),
9380                                LoVT.getVectorNumElements());
9381   Lo = DAG.getNode(ISD::EXTRACT_SUBVECTOR, DL, InNVT, Src,
9382                    DAG.getConstant(0, DL, MVT::i64));
9383   Hi = DAG.getNode(ISD::EXTRACT_SUBVECTOR, DL, InNVT, Src,
9384                    DAG.getConstant(InNVT.getVectorNumElements(), DL, MVT::i64));
9385   Lo = DAG.getNode(N->getOpcode(), DL, LoVT, Lo);
9386   Hi = DAG.getNode(N->getOpcode(), DL, HiVT, Hi);
9387
9388   // Now combine the parts back together so we still have a single result
9389   // like the combiner expects.
9390   return DAG.getNode(ISD::CONCAT_VECTORS, DL, ResVT, Lo, Hi);
9391 }
9392
9393 static SDValue splitStoreSplat(SelectionDAG &DAG, StoreSDNode &St,
9394                                SDValue SplatVal, unsigned NumVecElts) {
9395   unsigned OrigAlignment = St.getAlignment();
9396   unsigned EltOffset = SplatVal.getValueType().getSizeInBits() / 8;
9397
9398   // Create scalar stores. This is at least as good as the code sequence for a
9399   // split unaligned store which is a dup.s, ext.b, and two stores.
9400   // Most of the time the three stores should be replaced by store pair
9401   // instructions (stp).
9402   SDLoc DL(&St);
9403   SDValue BasePtr = St.getBasePtr();
9404   uint64_t BaseOffset = 0;
9405
9406   const MachinePointerInfo &PtrInfo = St.getPointerInfo();
9407   SDValue NewST1 =
9408       DAG.getStore(St.getChain(), DL, SplatVal, BasePtr, PtrInfo,
9409                    OrigAlignment, St.getMemOperand()->getFlags());
9410
9411   // As this in ISel, we will not merge this add which may degrade results.
9412   if (BasePtr->getOpcode() == ISD::ADD &&
9413       isa<ConstantSDNode>(BasePtr->getOperand(1))) {
9414     BaseOffset = cast<ConstantSDNode>(BasePtr->getOperand(1))->getSExtValue();
9415     BasePtr = BasePtr->getOperand(0);
9416   }
9417
9418   unsigned Offset = EltOffset;
9419   while (--NumVecElts) {
9420     unsigned Alignment = MinAlign(OrigAlignment, Offset);
9421     SDValue OffsetPtr =
9422         DAG.getNode(ISD::ADD, DL, MVT::i64, BasePtr,
9423                     DAG.getConstant(BaseOffset + Offset, DL, MVT::i64));
9424     NewST1 = DAG.getStore(NewST1.getValue(0), DL, SplatVal, OffsetPtr,
9425                           PtrInfo.getWithOffset(Offset), Alignment,
9426                           St.getMemOperand()->getFlags());
9427     Offset += EltOffset;
9428   }
9429   return NewST1;
9430 }
9431
9432 /// Replace a splat of zeros to a vector store by scalar stores of WZR/XZR.  The
9433 /// load store optimizer pass will merge them to store pair stores.  This should
9434 /// be better than a movi to create the vector zero followed by a vector store
9435 /// if the zero constant is not re-used, since one instructions and one register
9436 /// live range will be removed.
9437 ///
9438 /// For example, the final generated code should be:
9439 ///
9440 ///   stp xzr, xzr, [x0]
9441 ///
9442 /// instead of:
9443 ///
9444 ///   movi v0.2d, #0
9445 ///   str q0, [x0]
9446 ///
9447 static SDValue replaceZeroVectorStore(SelectionDAG &DAG, StoreSDNode &St) {
9448   SDValue StVal = St.getValue();
9449   EVT VT = StVal.getValueType();
9450
9451   // It is beneficial to scalarize a zero splat store for 2 or 3 i64 elements or
9452   // 2, 3 or 4 i32 elements.
9453   int NumVecElts = VT.getVectorNumElements();
9454   if (!(((NumVecElts == 2 || NumVecElts == 3) &&
9455          VT.getVectorElementType().getSizeInBits() == 64) ||
9456         ((NumVecElts == 2 || NumVecElts == 3 || NumVecElts == 4) &&
9457          VT.getVectorElementType().getSizeInBits() == 32)))
9458     return SDValue();
9459
9460   if (StVal.getOpcode() != ISD::BUILD_VECTOR)
9461     return SDValue();
9462
9463   // If the zero constant has more than one use then the vector store could be
9464   // better since the constant mov will be amortized and stp q instructions
9465   // should be able to be formed.
9466   if (!StVal.hasOneUse())
9467     return SDValue();
9468
9469   // If the immediate offset of the address operand is too large for the stp
9470   // instruction, then bail out.
9471   if (DAG.isBaseWithConstantOffset(St.getBasePtr())) {
9472     int64_t Offset = St.getBasePtr()->getConstantOperandVal(1);
9473     if (Offset < -512 || Offset > 504)
9474       return SDValue();
9475   }
9476
9477   for (int I = 0; I < NumVecElts; ++I) {
9478     SDValue EltVal = StVal.getOperand(I);
9479     if (!isNullConstant(EltVal) && !isNullFPConstant(EltVal))
9480       return SDValue();
9481   }
9482
9483   // Use a CopyFromReg WZR/XZR here to prevent
9484   // DAGCombiner::MergeConsecutiveStores from undoing this transformation.
9485   SDLoc DL(&St);
9486   unsigned ZeroReg;
9487   EVT ZeroVT;
9488   if (VT.getVectorElementType().getSizeInBits() == 32) {
9489     ZeroReg = AArch64::WZR;
9490     ZeroVT = MVT::i32;
9491   } else {
9492     ZeroReg = AArch64::XZR;
9493     ZeroVT = MVT::i64;
9494   }
9495   SDValue SplatVal =
9496       DAG.getCopyFromReg(DAG.getEntryNode(), DL, ZeroReg, ZeroVT);
9497   return splitStoreSplat(DAG, St, SplatVal, NumVecElts);
9498 }
9499
9500 /// Replace a splat of a scalar to a vector store by scalar stores of the scalar
9501 /// value. The load store optimizer pass will merge them to store pair stores.
9502 /// This has better performance than a splat of the scalar followed by a split
9503 /// vector store. Even if the stores are not merged it is four stores vs a dup,
9504 /// followed by an ext.b and two stores.
9505 static SDValue replaceSplatVectorStore(SelectionDAG &DAG, StoreSDNode &St) {
9506   SDValue StVal = St.getValue();
9507   EVT VT = StVal.getValueType();
9508
9509   // Don't replace floating point stores, they possibly won't be transformed to
9510   // stp because of the store pair suppress pass.
9511   if (VT.isFloatingPoint())
9512     return SDValue();
9513
9514   // We can express a splat as store pair(s) for 2 or 4 elements.
9515   unsigned NumVecElts = VT.getVectorNumElements();
9516   if (NumVecElts != 4 && NumVecElts != 2)
9517     return SDValue();
9518
9519   // Check that this is a splat.
9520   // Make sure that each of the relevant vector element locations are inserted
9521   // to, i.e. 0 and 1 for v2i64 and 0, 1, 2, 3 for v4i32.
9522   std::bitset<4> IndexNotInserted((1 << NumVecElts) - 1);
9523   SDValue SplatVal;
9524   for (unsigned I = 0; I < NumVecElts; ++I) {
9525     // Check for insert vector elements.
9526     if (StVal.getOpcode() != ISD::INSERT_VECTOR_ELT)
9527       return SDValue();
9528
9529     // Check that same value is inserted at each vector element.
9530     if (I == 0)
9531       SplatVal = StVal.getOperand(1);
9532     else if (StVal.getOperand(1) != SplatVal)
9533       return SDValue();
9534
9535     // Check insert element index.
9536     ConstantSDNode *CIndex = dyn_cast<ConstantSDNode>(StVal.getOperand(2));
9537     if (!CIndex)
9538       return SDValue();
9539     uint64_t IndexVal = CIndex->getZExtValue();
9540     if (IndexVal >= NumVecElts)
9541       return SDValue();
9542     IndexNotInserted.reset(IndexVal);
9543
9544     StVal = StVal.getOperand(0);
9545   }
9546   // Check that all vector element locations were inserted to.
9547   if (IndexNotInserted.any())
9548       return SDValue();
9549
9550   return splitStoreSplat(DAG, St, SplatVal, NumVecElts);
9551 }
9552
9553 static SDValue splitStores(SDNode *N, TargetLowering::DAGCombinerInfo &DCI,
9554                            SelectionDAG &DAG,
9555                            const AArch64Subtarget *Subtarget) {
9556
9557   StoreSDNode *S = cast<StoreSDNode>(N);
9558   if (S->isVolatile() || S->isIndexed())
9559     return SDValue();
9560
9561   SDValue StVal = S->getValue();
9562   EVT VT = StVal.getValueType();
9563   if (!VT.isVector())
9564     return SDValue();
9565
9566   // If we get a splat of zeros, convert this vector store to a store of
9567   // scalars. They will be merged into store pairs of xzr thereby removing one
9568   // instruction and one register.
9569   if (SDValue ReplacedZeroSplat = replaceZeroVectorStore(DAG, *S))
9570     return ReplacedZeroSplat;
9571
9572   // FIXME: The logic for deciding if an unaligned store should be split should
9573   // be included in TLI.allowsMisalignedMemoryAccesses(), and there should be
9574   // a call to that function here.
9575
9576   if (!Subtarget->isMisaligned128StoreSlow())
9577     return SDValue();
9578
9579   // Don't split at -Oz.
9580   if (DAG.getMachineFunction().getFunction().optForMinSize())
9581     return SDValue();
9582
9583   // Don't split v2i64 vectors. Memcpy lowering produces those and splitting
9584   // those up regresses performance on micro-benchmarks and olden/bh.
9585   if (VT.getVectorNumElements() < 2 || VT == MVT::v2i64)
9586     return SDValue();
9587
9588   // Split unaligned 16B stores. They are terrible for performance.
9589   // Don't split stores with alignment of 1 or 2. Code that uses clang vector
9590   // extensions can use this to mark that it does not want splitting to happen
9591   // (by underspecifying alignment to be 1 or 2). Furthermore, the chance of
9592   // eliminating alignment hazards is only 1 in 8 for alignment of 2.
9593   if (VT.getSizeInBits() != 128 || S->getAlignment() >= 16 ||
9594       S->getAlignment() <= 2)
9595     return SDValue();
9596
9597   // If we get a splat of a scalar convert this vector store to a store of
9598   // scalars. They will be merged into store pairs thereby removing two
9599   // instructions.
9600   if (SDValue ReplacedSplat = replaceSplatVectorStore(DAG, *S))
9601     return ReplacedSplat;
9602
9603   SDLoc DL(S);
9604   unsigned NumElts = VT.getVectorNumElements() / 2;
9605   // Split VT into two.
9606   EVT HalfVT =
9607       EVT::getVectorVT(*DAG.getContext(), VT.getVectorElementType(), NumElts);
9608   SDValue SubVector0 = DAG.getNode(ISD::EXTRACT_SUBVECTOR, DL, HalfVT, StVal,
9609                                    DAG.getConstant(0, DL, MVT::i64));
9610   SDValue SubVector1 = DAG.getNode(ISD::EXTRACT_SUBVECTOR, DL, HalfVT, StVal,
9611                                    DAG.getConstant(NumElts, DL, MVT::i64));
9612   SDValue BasePtr = S->getBasePtr();
9613   SDValue NewST1 =
9614       DAG.getStore(S->getChain(), DL, SubVector0, BasePtr, S->getPointerInfo(),
9615                    S->getAlignment(), S->getMemOperand()->getFlags());
9616   SDValue OffsetPtr = DAG.getNode(ISD::ADD, DL, MVT::i64, BasePtr,
9617                                   DAG.getConstant(8, DL, MVT::i64));
9618   return DAG.getStore(NewST1.getValue(0), DL, SubVector1, OffsetPtr,
9619                       S->getPointerInfo(), S->getAlignment(),
9620                       S->getMemOperand()->getFlags());
9621 }
9622
9623 /// Target-specific DAG combine function for post-increment LD1 (lane) and
9624 /// post-increment LD1R.
9625 static SDValue performPostLD1Combine(SDNode *N,
9626                                      TargetLowering::DAGCombinerInfo &DCI,
9627                                      bool IsLaneOp) {
9628   if (DCI.isBeforeLegalizeOps())
9629     return SDValue();
9630
9631   SelectionDAG &DAG = DCI.DAG;
9632   EVT VT = N->getValueType(0);
9633
9634   unsigned LoadIdx = IsLaneOp ? 1 : 0;
9635   SDNode *LD = N->getOperand(LoadIdx).getNode();
9636   // If it is not LOAD, can not do such combine.
9637   if (LD->getOpcode() != ISD::LOAD)
9638     return SDValue();
9639
9640   LoadSDNode *LoadSDN = cast<LoadSDNode>(LD);
9641   EVT MemVT = LoadSDN->getMemoryVT();
9642   // Check if memory operand is the same type as the vector element.
9643   if (MemVT != VT.getVectorElementType())
9644     return SDValue();
9645
9646   // Check if there are other uses. If so, do not combine as it will introduce
9647   // an extra load.
9648   for (SDNode::use_iterator UI = LD->use_begin(), UE = LD->use_end(); UI != UE;
9649        ++UI) {
9650     if (UI.getUse().getResNo() == 1) // Ignore uses of the chain result.
9651       continue;
9652     if (*UI != N)
9653       return SDValue();
9654   }
9655
9656   SDValue Addr = LD->getOperand(1);
9657   SDValue Vector = N->getOperand(0);
9658   // Search for a use of the address operand that is an increment.
9659   for (SDNode::use_iterator UI = Addr.getNode()->use_begin(), UE =
9660        Addr.getNode()->use_end(); UI != UE; ++UI) {
9661     SDNode *User = *UI;
9662     if (User->getOpcode() != ISD::ADD
9663         || UI.getUse().getResNo() != Addr.getResNo())
9664       continue;
9665
9666     // Check that the add is independent of the load.  Otherwise, folding it
9667     // would create a cycle.
9668     if (User->isPredecessorOf(LD) || LD->isPredecessorOf(User))
9669       continue;
9670     // Also check that add is not used in the vector operand.  This would also
9671     // create a cycle.
9672     if (User->isPredecessorOf(Vector.getNode()))
9673       continue;
9674
9675     // If the increment is a constant, it must match the memory ref size.
9676     SDValue Inc = User->getOperand(User->getOperand(0) == Addr ? 1 : 0);
9677     if (ConstantSDNode *CInc = dyn_cast<ConstantSDNode>(Inc.getNode())) {
9678       uint32_t IncVal = CInc->getZExtValue();
9679       unsigned NumBytes = VT.getScalarSizeInBits() / 8;
9680       if (IncVal != NumBytes)
9681         continue;
9682       Inc = DAG.getRegister(AArch64::XZR, MVT::i64);
9683     }
9684
9685     // Finally, check that the vector doesn't depend on the load.
9686     // Again, this would create a cycle.
9687     // The load depending on the vector is fine, as that's the case for the
9688     // LD1*post we'll eventually generate anyway.
9689     if (LoadSDN->isPredecessorOf(Vector.getNode()))
9690       continue;
9691
9692     SmallVector<SDValue, 8> Ops;
9693     Ops.push_back(LD->getOperand(0));  // Chain
9694     if (IsLaneOp) {
9695       Ops.push_back(Vector);           // The vector to be inserted
9696       Ops.push_back(N->getOperand(2)); // The lane to be inserted in the vector
9697     }
9698     Ops.push_back(Addr);
9699     Ops.push_back(Inc);
9700
9701     EVT Tys[3] = { VT, MVT::i64, MVT::Other };
9702     SDVTList SDTys = DAG.getVTList(Tys);
9703     unsigned NewOp = IsLaneOp ? AArch64ISD::LD1LANEpost : AArch64ISD::LD1DUPpost;
9704     SDValue UpdN = DAG.getMemIntrinsicNode(NewOp, SDLoc(N), SDTys, Ops,
9705                                            MemVT,
9706                                            LoadSDN->getMemOperand());
9707
9708     // Update the uses.
9709     SDValue NewResults[] = {
9710         SDValue(LD, 0),            // The result of load
9711         SDValue(UpdN.getNode(), 2) // Chain
9712     };
9713     DCI.CombineTo(LD, NewResults);
9714     DCI.CombineTo(N, SDValue(UpdN.getNode(), 0));     // Dup/Inserted Result
9715     DCI.CombineTo(User, SDValue(UpdN.getNode(), 1));  // Write back register
9716
9717     break;
9718   }
9719   return SDValue();
9720 }
9721
9722 /// Simplify ``Addr`` given that the top byte of it is ignored by HW during
9723 /// address translation.
9724 static bool performTBISimplification(SDValue Addr,
9725                                      TargetLowering::DAGCombinerInfo &DCI,
9726                                      SelectionDAG &DAG) {
9727   APInt DemandedMask = APInt::getLowBitsSet(64, 56);
9728   KnownBits Known;
9729   TargetLowering::TargetLoweringOpt TLO(DAG, !DCI.isBeforeLegalize(),
9730                                         !DCI.isBeforeLegalizeOps());
9731   const TargetLowering &TLI = DAG.getTargetLoweringInfo();
9732   if (TLI.SimplifyDemandedBits(Addr, DemandedMask, Known, TLO)) {
9733     DCI.CommitTargetLoweringOpt(TLO);
9734     return true;
9735   }
9736   return false;
9737 }
9738
9739 static SDValue performSTORECombine(SDNode *N,
9740                                    TargetLowering::DAGCombinerInfo &DCI,
9741                                    SelectionDAG &DAG,
9742                                    const AArch64Subtarget *Subtarget) {
9743   if (SDValue Split = splitStores(N, DCI, DAG, Subtarget))
9744     return Split;
9745
9746   if (Subtarget->supportsAddressTopByteIgnored() &&
9747       performTBISimplification(N->getOperand(2), DCI, DAG))
9748     return SDValue(N, 0);
9749
9750   return SDValue();
9751 }
9752
9753
9754 /// Target-specific DAG combine function for NEON load/store intrinsics
9755 /// to merge base address updates.
9756 static SDValue performNEONPostLDSTCombine(SDNode *N,
9757                                           TargetLowering::DAGCombinerInfo &DCI,
9758                                           SelectionDAG &DAG) {
9759   if (DCI.isBeforeLegalize() || DCI.isCalledByLegalizer())
9760     return SDValue();
9761
9762   unsigned AddrOpIdx = N->getNumOperands() - 1;
9763   SDValue Addr = N->getOperand(AddrOpIdx);
9764
9765   // Search for a use of the address operand that is an increment.
9766   for (SDNode::use_iterator UI = Addr.getNode()->use_begin(),
9767        UE = Addr.getNode()->use_end(); UI != UE; ++UI) {
9768     SDNode *User = *UI;
9769     if (User->getOpcode() != ISD::ADD ||
9770         UI.getUse().getResNo() != Addr.getResNo())
9771       continue;
9772
9773     // Check that the add is independent of the load/store.  Otherwise, folding
9774     // it would create a cycle.
9775     if (User->isPredecessorOf(N) || N->isPredecessorOf(User))
9776       continue;
9777
9778     // Find the new opcode for the updating load/store.
9779     bool IsStore = false;
9780     bool IsLaneOp = false;
9781     bool IsDupOp = false;
9782     unsigned NewOpc = 0;
9783     unsigned NumVecs = 0;
9784     unsigned IntNo = cast<ConstantSDNode>(N->getOperand(1))->getZExtValue();
9785     switch (IntNo) {
9786     default: llvm_unreachable("unexpected intrinsic for Neon base update");
9787     case Intrinsic::aarch64_neon_ld2:       NewOpc = AArch64ISD::LD2post;
9788       NumVecs = 2; break;
9789     case Intrinsic::aarch64_neon_ld3:       NewOpc = AArch64ISD::LD3post;
9790       NumVecs = 3; break;
9791     case Intrinsic::aarch64_neon_ld4:       NewOpc = AArch64ISD::LD4post;
9792       NumVecs = 4; break;
9793     case Intrinsic::aarch64_neon_st2:       NewOpc = AArch64ISD::ST2post;
9794       NumVecs = 2; IsStore = true; break;
9795     case Intrinsic::aarch64_neon_st3:       NewOpc = AArch64ISD::ST3post;
9796       NumVecs = 3; IsStore = true; break;
9797     case Intrinsic::aarch64_neon_st4:       NewOpc = AArch64ISD::ST4post;
9798       NumVecs = 4; IsStore = true; break;
9799     case Intrinsic::aarch64_neon_ld1x2:     NewOpc = AArch64ISD::LD1x2post;
9800       NumVecs = 2; break;
9801     case Intrinsic::aarch64_neon_ld1x3:     NewOpc = AArch64ISD::LD1x3post;
9802       NumVecs = 3; break;
9803     case Intrinsic::aarch64_neon_ld1x4:     NewOpc = AArch64ISD::LD1x4post;
9804       NumVecs = 4; break;
9805     case Intrinsic::aarch64_neon_st1x2:     NewOpc = AArch64ISD::ST1x2post;
9806       NumVecs = 2; IsStore = true; break;
9807     case Intrinsic::aarch64_neon_st1x3:     NewOpc = AArch64ISD::ST1x3post;
9808       NumVecs = 3; IsStore = true; break;
9809     case Intrinsic::aarch64_neon_st1x4:     NewOpc = AArch64ISD::ST1x4post;
9810       NumVecs = 4; IsStore = true; break;
9811     case Intrinsic::aarch64_neon_ld2r:      NewOpc = AArch64ISD::LD2DUPpost;
9812       NumVecs = 2; IsDupOp = true; break;
9813     case Intrinsic::aarch64_neon_ld3r:      NewOpc = AArch64ISD::LD3DUPpost;
9814       NumVecs = 3; IsDupOp = true; break;
9815     case Intrinsic::aarch64_neon_ld4r:      NewOpc = AArch64ISD::LD4DUPpost;
9816       NumVecs = 4; IsDupOp = true; break;
9817     case Intrinsic::aarch64_neon_ld2lane:   NewOpc = AArch64ISD::LD2LANEpost;
9818       NumVecs = 2; IsLaneOp = true; break;
9819     case Intrinsic::aarch64_neon_ld3lane:   NewOpc = AArch64ISD::LD3LANEpost;
9820       NumVecs = 3; IsLaneOp = true; break;
9821     case Intrinsic::aarch64_neon_ld4lane:   NewOpc = AArch64ISD::LD4LANEpost;
9822       NumVecs = 4; IsLaneOp = true; break;
9823     case Intrinsic::aarch64_neon_st2lane:   NewOpc = AArch64ISD::ST2LANEpost;
9824       NumVecs = 2; IsStore = true; IsLaneOp = true; break;
9825     case Intrinsic::aarch64_neon_st3lane:   NewOpc = AArch64ISD::ST3LANEpost;
9826       NumVecs = 3; IsStore = true; IsLaneOp = true; break;
9827     case Intrinsic::aarch64_neon_st4lane:   NewOpc = AArch64ISD::ST4LANEpost;
9828       NumVecs = 4; IsStore = true; IsLaneOp = true; break;
9829     }
9830
9831     EVT VecTy;
9832     if (IsStore)
9833       VecTy = N->getOperand(2).getValueType();
9834     else
9835       VecTy = N->getValueType(0);
9836
9837     // If the increment is a constant, it must match the memory ref size.
9838     SDValue Inc = User->getOperand(User->getOperand(0) == Addr ? 1 : 0);
9839     if (ConstantSDNode *CInc = dyn_cast<ConstantSDNode>(Inc.getNode())) {
9840       uint32_t IncVal = CInc->getZExtValue();
9841       unsigned NumBytes = NumVecs * VecTy.getSizeInBits() / 8;
9842       if (IsLaneOp || IsDupOp)
9843         NumBytes /= VecTy.getVectorNumElements();
9844       if (IncVal != NumBytes)
9845         continue;
9846       Inc = DAG.getRegister(AArch64::XZR, MVT::i64);
9847     }
9848     SmallVector<SDValue, 8> Ops;
9849     Ops.push_back(N->getOperand(0)); // Incoming chain
9850     // Load lane and store have vector list as input.
9851     if (IsLaneOp || IsStore)
9852       for (unsigned i = 2; i < AddrOpIdx; ++i)
9853         Ops.push_back(N->getOperand(i));
9854     Ops.push_back(Addr); // Base register
9855     Ops.push_back(Inc);
9856
9857     // Return Types.
9858     EVT Tys[6];
9859     unsigned NumResultVecs = (IsStore ? 0 : NumVecs);
9860     unsigned n;
9861     for (n = 0; n < NumResultVecs; ++n)
9862       Tys[n] = VecTy;
9863     Tys[n++] = MVT::i64;  // Type of write back register
9864     Tys[n] = MVT::Other;  // Type of the chain
9865     SDVTList SDTys = DAG.getVTList(makeArrayRef(Tys, NumResultVecs + 2));
9866
9867     MemIntrinsicSDNode *MemInt = cast<MemIntrinsicSDNode>(N);
9868     SDValue UpdN = DAG.getMemIntrinsicNode(NewOpc, SDLoc(N), SDTys, Ops,
9869                                            MemInt->getMemoryVT(),
9870                                            MemInt->getMemOperand());
9871
9872     // Update the uses.
9873     std::vector<SDValue> NewResults;
9874     for (unsigned i = 0; i < NumResultVecs; ++i) {
9875       NewResults.push_back(SDValue(UpdN.getNode(), i));
9876     }
9877     NewResults.push_back(SDValue(UpdN.getNode(), NumResultVecs + 1));
9878     DCI.CombineTo(N, NewResults);
9879     DCI.CombineTo(User, SDValue(UpdN.getNode(), NumResultVecs));
9880
9881     break;
9882   }
9883   return SDValue();
9884 }
9885
9886 // Checks to see if the value is the prescribed width and returns information
9887 // about its extension mode.
9888 static
9889 bool checkValueWidth(SDValue V, unsigned width, ISD::LoadExtType &ExtType) {
9890   ExtType = ISD::NON_EXTLOAD;
9891   switch(V.getNode()->getOpcode()) {
9892   default:
9893     return false;
9894   case ISD::LOAD: {
9895     LoadSDNode *LoadNode = cast<LoadSDNode>(V.getNode());
9896     if ((LoadNode->getMemoryVT() == MVT::i8 && width == 8)
9897        || (LoadNode->getMemoryVT() == MVT::i16 && width == 16)) {
9898       ExtType = LoadNode->getExtensionType();
9899       return true;
9900     }
9901     return false;
9902   }
9903   case ISD::AssertSext: {
9904     VTSDNode *TypeNode = cast<VTSDNode>(V.getNode()->getOperand(1));
9905     if ((TypeNode->getVT() == MVT::i8 && width == 8)
9906        || (TypeNode->getVT() == MVT::i16 && width == 16)) {
9907       ExtType = ISD::SEXTLOAD;
9908       return true;
9909     }
9910     return false;
9911   }
9912   case ISD::AssertZext: {
9913     VTSDNode *TypeNode = cast<VTSDNode>(V.getNode()->getOperand(1));
9914     if ((TypeNode->getVT() == MVT::i8 && width == 8)
9915        || (TypeNode->getVT() == MVT::i16 && width == 16)) {
9916       ExtType = ISD::ZEXTLOAD;
9917       return true;
9918     }
9919     return false;
9920   }
9921   case ISD::Constant:
9922   case ISD::TargetConstant: {
9923     return std::abs(cast<ConstantSDNode>(V.getNode())->getSExtValue()) <
9924            1LL << (width - 1);
9925   }
9926   }
9927
9928   return true;
9929 }
9930
9931 // This function does a whole lot of voodoo to determine if the tests are
9932 // equivalent without and with a mask. Essentially what happens is that given a
9933 // DAG resembling:
9934 //
9935 //  +-------------+ +-------------+ +-------------+ +-------------+
9936 //  |    Input    | | AddConstant | | CompConstant| |     CC      |
9937 //  +-------------+ +-------------+ +-------------+ +-------------+
9938 //           |           |           |               |
9939 //           V           V           |    +----------+
9940 //          +-------------+  +----+  |    |
9941 //          |     ADD     |  |0xff|  |    |
9942 //          +-------------+  +----+  |    |
9943 //                  |           |    |    |
9944 //                  V           V    |    |
9945 //                 +-------------+   |    |
9946 //                 |     AND     |   |    |
9947 //                 +-------------+   |    |
9948 //                      |            |    |
9949 //                      +-----+      |    |
9950 //                            |      |    |
9951 //                            V      V    V
9952 //                           +-------------+
9953 //                           |     CMP     |
9954 //                           +-------------+
9955 //
9956 // The AND node may be safely removed for some combinations of inputs. In
9957 // particular we need to take into account the extension type of the Input,
9958 // the exact values of AddConstant, CompConstant, and CC, along with the nominal
9959 // width of the input (this can work for any width inputs, the above graph is
9960 // specific to 8 bits.
9961 //
9962 // The specific equations were worked out by generating output tables for each
9963 // AArch64CC value in terms of and AddConstant (w1), CompConstant(w2). The
9964 // problem was simplified by working with 4 bit inputs, which means we only
9965 // needed to reason about 24 distinct bit patterns: 8 patterns unique to zero
9966 // extension (8,15), 8 patterns unique to sign extensions (-8,-1), and 8
9967 // patterns present in both extensions (0,7). For every distinct set of
9968 // AddConstant and CompConstants bit patterns we can consider the masked and
9969 // unmasked versions to be equivalent if the result of this function is true for
9970 // all 16 distinct bit patterns of for the current extension type of Input (w0).
9971 //
9972 //   sub      w8, w0, w1
9973 //   and      w10, w8, #0x0f
9974 //   cmp      w8, w2
9975 //   cset     w9, AArch64CC
9976 //   cmp      w10, w2
9977 //   cset     w11, AArch64CC
9978 //   cmp      w9, w11
9979 //   cset     w0, eq
9980 //   ret
9981 //
9982 // Since the above function shows when the outputs are equivalent it defines
9983 // when it is safe to remove the AND. Unfortunately it only runs on AArch64 and
9984 // would be expensive to run during compiles. The equations below were written
9985 // in a test harness that confirmed they gave equivalent outputs to the above
9986 // for all inputs function, so they can be used determine if the removal is
9987 // legal instead.
9988 //
9989 // isEquivalentMaskless() is the code for testing if the AND can be removed
9990 // factored out of the DAG recognition as the DAG can take several forms.
9991
9992 static bool isEquivalentMaskless(unsigned CC, unsigned width,
9993                                  ISD::LoadExtType ExtType, int AddConstant,
9994                                  int CompConstant) {
9995   // By being careful about our equations and only writing the in term
9996   // symbolic values and well known constants (0, 1, -1, MaxUInt) we can
9997   // make them generally applicable to all bit widths.
9998   int MaxUInt = (1 << width);
9999
10000   // For the purposes of these comparisons sign extending the type is
10001   // equivalent to zero extending the add and displacing it by half the integer
10002   // width. Provided we are careful and make sure our equations are valid over
10003   // the whole range we can just adjust the input and avoid writing equations
10004   // for sign extended inputs.
10005   if (ExtType == ISD::SEXTLOAD)
10006     AddConstant -= (1 << (width-1));
10007
10008   switch(CC) {
10009   case AArch64CC::LE:
10010   case AArch64CC::GT:
10011     if ((AddConstant == 0) ||
10012         (CompConstant == MaxUInt - 1 && AddConstant < 0) ||
10013         (AddConstant >= 0 && CompConstant < 0) ||
10014         (AddConstant <= 0 && CompConstant <= 0 && CompConstant < AddConstant))
10015       return true;
10016     break;
10017   case AArch64CC::LT:
10018   case AArch64CC::GE:
10019     if ((AddConstant == 0) ||
10020         (AddConstant >= 0 && CompConstant <= 0) ||
10021         (AddConstant <= 0 && CompConstant <= 0 && CompConstant <= AddConstant))
10022       return true;
10023     break;
10024   case AArch64CC::HI:
10025   case AArch64CC::LS:
10026     if ((AddConstant >= 0 && CompConstant < 0) ||
10027        (AddConstant <= 0 && CompConstant >= -1 &&
10028         CompConstant < AddConstant + MaxUInt))
10029       return true;
10030    break;
10031   case AArch64CC::PL:
10032   case AArch64CC::MI:
10033     if ((AddConstant == 0) ||
10034         (AddConstant > 0 && CompConstant <= 0) ||
10035         (AddConstant < 0 && CompConstant <= AddConstant))
10036       return true;
10037     break;
10038   case AArch64CC::LO:
10039   case AArch64CC::HS:
10040     if ((AddConstant >= 0 && CompConstant <= 0) ||
10041         (AddConstant <= 0 && CompConstant >= 0 &&
10042          CompConstant <= AddConstant + MaxUInt))
10043       return true;
10044     break;
10045   case AArch64CC::EQ:
10046   case AArch64CC::NE:
10047     if ((AddConstant > 0 && CompConstant < 0) ||
10048         (AddConstant < 0 && CompConstant >= 0 &&
10049          CompConstant < AddConstant + MaxUInt) ||
10050         (AddConstant >= 0 && CompConstant >= 0 &&
10051          CompConstant >= AddConstant) ||
10052         (AddConstant <= 0 && CompConstant < 0 && CompConstant < AddConstant))
10053       return true;
10054     break;
10055   case AArch64CC::VS:
10056   case AArch64CC::VC:
10057   case AArch64CC::AL:
10058   case AArch64CC::NV:
10059     return true;
10060   case AArch64CC::Invalid:
10061     break;
10062   }
10063
10064   return false;
10065 }
10066
10067 static
10068 SDValue performCONDCombine(SDNode *N,
10069                            TargetLowering::DAGCombinerInfo &DCI,
10070                            SelectionDAG &DAG, unsigned CCIndex,
10071                            unsigned CmpIndex) {
10072   unsigned CC = cast<ConstantSDNode>(N->getOperand(CCIndex))->getSExtValue();
10073   SDNode *SubsNode = N->getOperand(CmpIndex).getNode();
10074   unsigned CondOpcode = SubsNode->getOpcode();
10075
10076   if (CondOpcode != AArch64ISD::SUBS)
10077     return SDValue();
10078
10079   // There is a SUBS feeding this condition. Is it fed by a mask we can
10080   // use?
10081
10082   SDNode *AndNode = SubsNode->getOperand(0).getNode();
10083   unsigned MaskBits = 0;
10084
10085   if (AndNode->getOpcode() != ISD::AND)
10086     return SDValue();
10087
10088   if (ConstantSDNode *CN = dyn_cast<ConstantSDNode>(AndNode->getOperand(1))) {
10089     uint32_t CNV = CN->getZExtValue();
10090     if (CNV == 255)
10091       MaskBits = 8;
10092     else if (CNV == 65535)
10093       MaskBits = 16;
10094   }
10095
10096   if (!MaskBits)
10097     return SDValue();
10098
10099   SDValue AddValue = AndNode->getOperand(0);
10100
10101   if (AddValue.getOpcode() != ISD::ADD)
10102     return SDValue();
10103
10104   // The basic dag structure is correct, grab the inputs and validate them.
10105
10106   SDValue AddInputValue1 = AddValue.getNode()->getOperand(0);
10107   SDValue AddInputValue2 = AddValue.getNode()->getOperand(1);
10108   SDValue SubsInputValue = SubsNode->getOperand(1);
10109
10110   // The mask is present and the provenance of all the values is a smaller type,
10111   // lets see if the mask is superfluous.
10112
10113   if (!isa<ConstantSDNode>(AddInputValue2.getNode()) ||
10114       !isa<ConstantSDNode>(SubsInputValue.getNode()))
10115     return SDValue();
10116
10117   ISD::LoadExtType ExtType;
10118
10119   if (!checkValueWidth(SubsInputValue, MaskBits, ExtType) ||
10120       !checkValueWidth(AddInputValue2, MaskBits, ExtType) ||
10121       !checkValueWidth(AddInputValue1, MaskBits, ExtType) )
10122     return SDValue();
10123
10124   if(!isEquivalentMaskless(CC, MaskBits, ExtType,
10125                 cast<ConstantSDNode>(AddInputValue2.getNode())->getSExtValue(),
10126                 cast<ConstantSDNode>(SubsInputValue.getNode())->getSExtValue()))
10127     return SDValue();
10128
10129   // The AND is not necessary, remove it.
10130
10131   SDVTList VTs = DAG.getVTList(SubsNode->getValueType(0),
10132                                SubsNode->getValueType(1));
10133   SDValue Ops[] = { AddValue, SubsNode->getOperand(1) };
10134
10135   SDValue NewValue = DAG.getNode(CondOpcode, SDLoc(SubsNode), VTs, Ops);
10136   DAG.ReplaceAllUsesWith(SubsNode, NewValue.getNode());
10137
10138   return SDValue(N, 0);
10139 }
10140
10141 // Optimize compare with zero and branch.
10142 static SDValue performBRCONDCombine(SDNode *N,
10143                                     TargetLowering::DAGCombinerInfo &DCI,
10144                                     SelectionDAG &DAG) {
10145   if (SDValue NV = performCONDCombine(N, DCI, DAG, 2, 3))
10146     N = NV.getNode();
10147   SDValue Chain = N->getOperand(0);
10148   SDValue Dest = N->getOperand(1);
10149   SDValue CCVal = N->getOperand(2);
10150   SDValue Cmp = N->getOperand(3);
10151
10152   assert(isa<ConstantSDNode>(CCVal) && "Expected a ConstantSDNode here!");
10153   unsigned CC = cast<ConstantSDNode>(CCVal)->getZExtValue();
10154   if (CC != AArch64CC::EQ && CC != AArch64CC::NE)
10155     return SDValue();
10156
10157   unsigned CmpOpc = Cmp.getOpcode();
10158   if (CmpOpc != AArch64ISD::ADDS && CmpOpc != AArch64ISD::SUBS)
10159     return SDValue();
10160
10161   // Only attempt folding if there is only one use of the flag and no use of the
10162   // value.
10163   if (!Cmp->hasNUsesOfValue(0, 0) || !Cmp->hasNUsesOfValue(1, 1))
10164     return SDValue();
10165
10166   SDValue LHS = Cmp.getOperand(0);
10167   SDValue RHS = Cmp.getOperand(1);
10168
10169   assert(LHS.getValueType() == RHS.getValueType() &&
10170          "Expected the value type to be the same for both operands!");
10171   if (LHS.getValueType() != MVT::i32 && LHS.getValueType() != MVT::i64)
10172     return SDValue();
10173
10174   if (isNullConstant(LHS))
10175     std::swap(LHS, RHS);
10176
10177   if (!isNullConstant(RHS))
10178     return SDValue();
10179
10180   if (LHS.getOpcode() == ISD::SHL || LHS.getOpcode() == ISD::SRA ||
10181       LHS.getOpcode() == ISD::SRL)
10182     return SDValue();
10183
10184   // Fold the compare into the branch instruction.
10185   SDValue BR;
10186   if (CC == AArch64CC::EQ)
10187     BR = DAG.getNode(AArch64ISD::CBZ, SDLoc(N), MVT::Other, Chain, LHS, Dest);
10188   else
10189     BR = DAG.getNode(AArch64ISD::CBNZ, SDLoc(N), MVT::Other, Chain, LHS, Dest);
10190
10191   // Do not add new nodes to DAG combiner worklist.
10192   DCI.CombineTo(N, BR, false);
10193
10194   return SDValue();
10195 }
10196
10197 // Optimize some simple tbz/tbnz cases.  Returns the new operand and bit to test
10198 // as well as whether the test should be inverted.  This code is required to
10199 // catch these cases (as opposed to standard dag combines) because
10200 // AArch64ISD::TBZ is matched during legalization.
10201 static SDValue getTestBitOperand(SDValue Op, unsigned &Bit, bool &Invert,
10202                                  SelectionDAG &DAG) {
10203
10204   if (!Op->hasOneUse())
10205     return Op;
10206
10207   // We don't handle undef/constant-fold cases below, as they should have
10208   // already been taken care of (e.g. and of 0, test of undefined shifted bits,
10209   // etc.)
10210
10211   // (tbz (trunc x), b) -> (tbz x, b)
10212   // This case is just here to enable more of the below cases to be caught.
10213   if (Op->getOpcode() == ISD::TRUNCATE &&
10214       Bit < Op->getValueType(0).getSizeInBits()) {
10215     return getTestBitOperand(Op->getOperand(0), Bit, Invert, DAG);
10216   }
10217
10218   if (Op->getNumOperands() != 2)
10219     return Op;
10220
10221   auto *C = dyn_cast<ConstantSDNode>(Op->getOperand(1));
10222   if (!C)
10223     return Op;
10224
10225   switch (Op->getOpcode()) {
10226   default:
10227     return Op;
10228
10229   // (tbz (and x, m), b) -> (tbz x, b)
10230   case ISD::AND:
10231     if ((C->getZExtValue() >> Bit) & 1)
10232       return getTestBitOperand(Op->getOperand(0), Bit, Invert, DAG);
10233     return Op;
10234
10235   // (tbz (shl x, c), b) -> (tbz x, b-c)
10236   case ISD::SHL:
10237     if (C->getZExtValue() <= Bit &&
10238         (Bit - C->getZExtValue()) < Op->getValueType(0).getSizeInBits()) {
10239       Bit = Bit - C->getZExtValue();
10240       return getTestBitOperand(Op->getOperand(0), Bit, Invert, DAG);
10241     }
10242     return Op;
10243
10244   // (tbz (sra x, c), b) -> (tbz x, b+c) or (tbz x, msb) if b+c is > # bits in x
10245   case ISD::SRA:
10246     Bit = Bit + C->getZExtValue();
10247     if (Bit >= Op->getValueType(0).getSizeInBits())
10248       Bit = Op->getValueType(0).getSizeInBits() - 1;
10249     return getTestBitOperand(Op->getOperand(0), Bit, Invert, DAG);
10250
10251   // (tbz (srl x, c), b) -> (tbz x, b+c)
10252   case ISD::SRL:
10253     if ((Bit + C->getZExtValue()) < Op->getValueType(0).getSizeInBits()) {
10254       Bit = Bit + C->getZExtValue();
10255       return getTestBitOperand(Op->getOperand(0), Bit, Invert, DAG);
10256     }
10257     return Op;
10258
10259   // (tbz (xor x, -1), b) -> (tbnz x, b)
10260   case ISD::XOR:
10261     if ((C->getZExtValue() >> Bit) & 1)
10262       Invert = !Invert;
10263     return getTestBitOperand(Op->getOperand(0), Bit, Invert, DAG);
10264   }
10265 }
10266
10267 // Optimize test single bit zero/non-zero and branch.
10268 static SDValue performTBZCombine(SDNode *N,
10269                                  TargetLowering::DAGCombinerInfo &DCI,
10270                                  SelectionDAG &DAG) {
10271   unsigned Bit = cast<ConstantSDNode>(N->getOperand(2))->getZExtValue();
10272   bool Invert = false;
10273   SDValue TestSrc = N->getOperand(1);
10274   SDValue NewTestSrc = getTestBitOperand(TestSrc, Bit, Invert, DAG);
10275
10276   if (TestSrc == NewTestSrc)
10277     return SDValue();
10278
10279   unsigned NewOpc = N->getOpcode();
10280   if (Invert) {
10281     if (NewOpc == AArch64ISD::TBZ)
10282       NewOpc = AArch64ISD::TBNZ;
10283     else {
10284       assert(NewOpc == AArch64ISD::TBNZ);
10285       NewOpc = AArch64ISD::TBZ;
10286     }
10287   }
10288
10289   SDLoc DL(N);
10290   return DAG.getNode(NewOpc, DL, MVT::Other, N->getOperand(0), NewTestSrc,
10291                      DAG.getConstant(Bit, DL, MVT::i64), N->getOperand(3));
10292 }
10293
10294 // vselect (v1i1 setcc) ->
10295 //     vselect (v1iXX setcc)  (XX is the size of the compared operand type)
10296 // FIXME: Currently the type legalizer can't handle VSELECT having v1i1 as
10297 // condition. If it can legalize "VSELECT v1i1" correctly, no need to combine
10298 // such VSELECT.
10299 static SDValue performVSelectCombine(SDNode *N, SelectionDAG &DAG) {
10300   SDValue N0 = N->getOperand(0);
10301   EVT CCVT = N0.getValueType();
10302
10303   if (N0.getOpcode() != ISD::SETCC || CCVT.getVectorNumElements() != 1 ||
10304       CCVT.getVectorElementType() != MVT::i1)
10305     return SDValue();
10306
10307   EVT ResVT = N->getValueType(0);
10308   EVT CmpVT = N0.getOperand(0).getValueType();
10309   // Only combine when the result type is of the same size as the compared
10310   // operands.
10311   if (ResVT.getSizeInBits() != CmpVT.getSizeInBits())
10312     return SDValue();
10313
10314   SDValue IfTrue = N->getOperand(1);
10315   SDValue IfFalse = N->getOperand(2);
10316   SDValue SetCC =
10317       DAG.getSetCC(SDLoc(N), CmpVT.changeVectorElementTypeToInteger(),
10318                    N0.getOperand(0), N0.getOperand(1),
10319                    cast<CondCodeSDNode>(N0.getOperand(2))->get());
10320   return DAG.getNode(ISD::VSELECT, SDLoc(N), ResVT, SetCC,
10321                      IfTrue, IfFalse);
10322 }
10323
10324 /// A vector select: "(select vL, vR, (setcc LHS, RHS))" is best performed with
10325 /// the compare-mask instructions rather than going via NZCV, even if LHS and
10326 /// RHS are really scalar. This replaces any scalar setcc in the above pattern
10327 /// with a vector one followed by a DUP shuffle on the result.
10328 static SDValue performSelectCombine(SDNode *N,
10329                                     TargetLowering::DAGCombinerInfo &DCI) {
10330   SelectionDAG &DAG = DCI.DAG;
10331   SDValue N0 = N->getOperand(0);
10332   EVT ResVT = N->getValueType(0);
10333
10334   if (N0.getOpcode() != ISD::SETCC)
10335     return SDValue();
10336
10337   // Make sure the SETCC result is either i1 (initial DAG), or i32, the lowered
10338   // scalar SetCCResultType. We also don't expect vectors, because we assume
10339   // that selects fed by vector SETCCs are canonicalized to VSELECT.
10340   assert((N0.getValueType() == MVT::i1 || N0.getValueType() == MVT::i32) &&
10341          "Scalar-SETCC feeding SELECT has unexpected result type!");
10342
10343   // If NumMaskElts == 0, the comparison is larger than select result. The
10344   // largest real NEON comparison is 64-bits per lane, which means the result is
10345   // at most 32-bits and an illegal vector. Just bail out for now.
10346   EVT SrcVT = N0.getOperand(0).getValueType();
10347
10348   // Don't try to do this optimization when the setcc itself has i1 operands.
10349   // There are no legal vectors of i1, so this would be pointless.
10350   if (SrcVT == MVT::i1)
10351     return SDValue();
10352
10353   int NumMaskElts = ResVT.getSizeInBits() / SrcVT.getSizeInBits();
10354   if (!ResVT.isVector() || NumMaskElts == 0)
10355     return SDValue();
10356
10357   SrcVT = EVT::getVectorVT(*DAG.getContext(), SrcVT, NumMaskElts);
10358   EVT CCVT = SrcVT.changeVectorElementTypeToInteger();
10359
10360   // Also bail out if the vector CCVT isn't the same size as ResVT.
10361   // This can happen if the SETCC operand size doesn't divide the ResVT size
10362   // (e.g., f64 vs v3f32).
10363   if (CCVT.getSizeInBits() != ResVT.getSizeInBits())
10364     return SDValue();
10365
10366   // Make sure we didn't create illegal types, if we're not supposed to.
10367   assert(DCI.isBeforeLegalize() ||
10368          DAG.getTargetLoweringInfo().isTypeLegal(SrcVT));
10369
10370   // First perform a vector comparison, where lane 0 is the one we're interested
10371   // in.
10372   SDLoc DL(N0);
10373   SDValue LHS =
10374       DAG.getNode(ISD::SCALAR_TO_VECTOR, DL, SrcVT, N0.getOperand(0));
10375   SDValue RHS =
10376       DAG.getNode(ISD::SCALAR_TO_VECTOR, DL, SrcVT, N0.getOperand(1));
10377   SDValue SetCC = DAG.getNode(ISD::SETCC, DL, CCVT, LHS, RHS, N0.getOperand(2));
10378
10379   // Now duplicate the comparison mask we want across all other lanes.
10380   SmallVector<int, 8> DUPMask(CCVT.getVectorNumElements(), 0);
10381   SDValue Mask = DAG.getVectorShuffle(CCVT, DL, SetCC, SetCC, DUPMask);
10382   Mask = DAG.getNode(ISD::BITCAST, DL,
10383                      ResVT.changeVectorElementTypeToInteger(), Mask);
10384
10385   return DAG.getSelect(DL, ResVT, Mask, N->getOperand(1), N->getOperand(2));
10386 }
10387
10388 /// Get rid of unnecessary NVCASTs (that don't change the type).
10389 static SDValue performNVCASTCombine(SDNode *N) {
10390   if (N->getValueType(0) == N->getOperand(0).getValueType())
10391     return N->getOperand(0);
10392
10393   return SDValue();
10394 }
10395
10396 SDValue AArch64TargetLowering::PerformDAGCombine(SDNode *N,
10397                                                  DAGCombinerInfo &DCI) const {
10398   SelectionDAG &DAG = DCI.DAG;
10399   switch (N->getOpcode()) {
10400   default:
10401     DEBUG(dbgs() << "Custom combining: skipping\n");
10402     break;
10403   case ISD::ADD:
10404   case ISD::SUB:
10405     return performAddSubLongCombine(N, DCI, DAG);
10406   case ISD::XOR:
10407     return performXorCombine(N, DAG, DCI, Subtarget);
10408   case ISD::MUL:
10409     return performMulCombine(N, DAG, DCI, Subtarget);
10410   case ISD::SINT_TO_FP:
10411   case ISD::UINT_TO_FP:
10412     return performIntToFpCombine(N, DAG, Subtarget);
10413   case ISD::FP_TO_SINT:
10414   case ISD::FP_TO_UINT:
10415     return performFpToIntCombine(N, DAG, DCI, Subtarget);
10416   case ISD::FDIV:
10417     return performFDivCombine(N, DAG, DCI, Subtarget);
10418   case ISD::OR:
10419     return performORCombine(N, DCI, Subtarget);
10420   case ISD::SRL:
10421     return performSRLCombine(N, DCI);
10422   case ISD::INTRINSIC_WO_CHAIN:
10423     return performIntrinsicCombine(N, DCI, Subtarget);
10424   case ISD::ANY_EXTEND:
10425   case ISD::ZERO_EXTEND:
10426   case ISD::SIGN_EXTEND:
10427     return performExtendCombine(N, DCI, DAG);
10428   case ISD::BITCAST:
10429     return performBitcastCombine(N, DCI, DAG);
10430   case ISD::CONCAT_VECTORS:
10431     return performConcatVectorsCombine(N, DCI, DAG);
10432   case ISD::SELECT:
10433     return performSelectCombine(N, DCI);
10434   case ISD::VSELECT:
10435     return performVSelectCombine(N, DCI.DAG);
10436   case ISD::LOAD:
10437     if (performTBISimplification(N->getOperand(1), DCI, DAG))
10438       return SDValue(N, 0);
10439     break;
10440   case ISD::STORE:
10441     return performSTORECombine(N, DCI, DAG, Subtarget);
10442   case AArch64ISD::BRCOND:
10443     return performBRCONDCombine(N, DCI, DAG);
10444   case AArch64ISD::TBNZ:
10445   case AArch64ISD::TBZ:
10446     return performTBZCombine(N, DCI, DAG);
10447   case AArch64ISD::CSEL:
10448     return performCONDCombine(N, DCI, DAG, 2, 3);
10449   case AArch64ISD::DUP:
10450     return performPostLD1Combine(N, DCI, false);
10451   case AArch64ISD::NVCAST:
10452     return performNVCASTCombine(N);
10453   case ISD::INSERT_VECTOR_ELT:
10454     return performPostLD1Combine(N, DCI, true);
10455   case ISD::INTRINSIC_VOID:
10456   case ISD::INTRINSIC_W_CHAIN:
10457     switch (cast<ConstantSDNode>(N->getOperand(1))->getZExtValue()) {
10458     case Intrinsic::aarch64_neon_ld2:
10459     case Intrinsic::aarch64_neon_ld3:
10460     case Intrinsic::aarch64_neon_ld4:
10461     case Intrinsic::aarch64_neon_ld1x2:
10462     case Intrinsic::aarch64_neon_ld1x3:
10463     case Intrinsic::aarch64_neon_ld1x4:
10464     case Intrinsic::aarch64_neon_ld2lane:
10465     case Intrinsic::aarch64_neon_ld3lane:
10466     case Intrinsic::aarch64_neon_ld4lane:
10467     case Intrinsic::aarch64_neon_ld2r:
10468     case Intrinsic::aarch64_neon_ld3r:
10469     case Intrinsic::aarch64_neon_ld4r:
10470     case Intrinsic::aarch64_neon_st2:
10471     case Intrinsic::aarch64_neon_st3:
10472     case Intrinsic::aarch64_neon_st4:
10473     case Intrinsic::aarch64_neon_st1x2:
10474     case Intrinsic::aarch64_neon_st1x3:
10475     case Intrinsic::aarch64_neon_st1x4:
10476     case Intrinsic::aarch64_neon_st2lane:
10477     case Intrinsic::aarch64_neon_st3lane:
10478     case Intrinsic::aarch64_neon_st4lane:
10479       return performNEONPostLDSTCombine(N, DCI, DAG);
10480     default:
10481       break;
10482     }
10483   }
10484   return SDValue();
10485 }
10486
10487 // Check if the return value is used as only a return value, as otherwise
10488 // we can't perform a tail-call. In particular, we need to check for
10489 // target ISD nodes that are returns and any other "odd" constructs
10490 // that the generic analysis code won't necessarily catch.
10491 bool AArch64TargetLowering::isUsedByReturnOnly(SDNode *N,
10492                                                SDValue &Chain) const {
10493   if (N->getNumValues() != 1)
10494     return false;
10495   if (!N->hasNUsesOfValue(1, 0))
10496     return false;
10497
10498   SDValue TCChain = Chain;
10499   SDNode *Copy = *N->use_begin();
10500   if (Copy->getOpcode() == ISD::CopyToReg) {
10501     // If the copy has a glue operand, we conservatively assume it isn't safe to
10502     // perform a tail call.
10503     if (Copy->getOperand(Copy->getNumOperands() - 1).getValueType() ==
10504         MVT::Glue)
10505       return false;
10506     TCChain = Copy->getOperand(0);
10507   } else if (Copy->getOpcode() != ISD::FP_EXTEND)
10508     return false;
10509
10510   bool HasRet = false;
10511   for (SDNode *Node : Copy->uses()) {
10512     if (Node->getOpcode() != AArch64ISD::RET_FLAG)
10513       return false;
10514     HasRet = true;
10515   }
10516
10517   if (!HasRet)
10518     return false;
10519
10520   Chain = TCChain;
10521   return true;
10522 }
10523
10524 // Return whether the an instruction can potentially be optimized to a tail
10525 // call. This will cause the optimizers to attempt to move, or duplicate,
10526 // return instructions to help enable tail call optimizations for this
10527 // instruction.
10528 bool AArch64TargetLowering::mayBeEmittedAsTailCall(const CallInst *CI) const {
10529   return CI->isTailCall();
10530 }
10531
10532 bool AArch64TargetLowering::getIndexedAddressParts(SDNode *Op, SDValue &Base,
10533                                                    SDValue &Offset,
10534                                                    ISD::MemIndexedMode &AM,
10535                                                    bool &IsInc,
10536                                                    SelectionDAG &DAG) const {
10537   if (Op->getOpcode() != ISD::ADD && Op->getOpcode() != ISD::SUB)
10538     return false;
10539
10540   Base = Op->getOperand(0);
10541   // All of the indexed addressing mode instructions take a signed
10542   // 9 bit immediate offset.
10543   if (ConstantSDNode *RHS = dyn_cast<ConstantSDNode>(Op->getOperand(1))) {
10544     int64_t RHSC = RHS->getSExtValue();
10545     if (Op->getOpcode() == ISD::SUB)
10546       RHSC = -(uint64_t)RHSC;
10547     if (!isInt<9>(RHSC))
10548       return false;
10549     IsInc = (Op->getOpcode() == ISD::ADD);
10550     Offset = Op->getOperand(1);
10551     return true;
10552   }
10553   return false;
10554 }
10555
10556 bool AArch64TargetLowering::getPreIndexedAddressParts(SDNode *N, SDValue &Base,
10557                                                       SDValue &Offset,
10558                                                       ISD::MemIndexedMode &AM,
10559                                                       SelectionDAG &DAG) const {
10560   EVT VT;
10561   SDValue Ptr;
10562   if (LoadSDNode *LD = dyn_cast<LoadSDNode>(N)) {
10563     VT = LD->getMemoryVT();
10564     Ptr = LD->getBasePtr();
10565   } else if (StoreSDNode *ST = dyn_cast<StoreSDNode>(N)) {
10566     VT = ST->getMemoryVT();
10567     Ptr = ST->getBasePtr();
10568   } else
10569     return false;
10570
10571   bool IsInc;
10572   if (!getIndexedAddressParts(Ptr.getNode(), Base, Offset, AM, IsInc, DAG))
10573     return false;
10574   AM = IsInc ? ISD::PRE_INC : ISD::PRE_DEC;
10575   return true;
10576 }
10577
10578 bool AArch64TargetLowering::getPostIndexedAddressParts(
10579     SDNode *N, SDNode *Op, SDValue &Base, SDValue &Offset,
10580     ISD::MemIndexedMode &AM, SelectionDAG &DAG) const {
10581   EVT VT;
10582   SDValue Ptr;
10583   if (LoadSDNode *LD = dyn_cast<LoadSDNode>(N)) {
10584     VT = LD->getMemoryVT();
10585     Ptr = LD->getBasePtr();
10586   } else if (StoreSDNode *ST = dyn_cast<StoreSDNode>(N)) {
10587     VT = ST->getMemoryVT();
10588     Ptr = ST->getBasePtr();
10589   } else
10590     return false;
10591
10592   bool IsInc;
10593   if (!getIndexedAddressParts(Op, Base, Offset, AM, IsInc, DAG))
10594     return false;
10595   // Post-indexing updates the base, so it's not a valid transform
10596   // if that's not the same as the load's pointer.
10597   if (Ptr != Base)
10598     return false;
10599   AM = IsInc ? ISD::POST_INC : ISD::POST_DEC;
10600   return true;
10601 }
10602
10603 static void ReplaceBITCASTResults(SDNode *N, SmallVectorImpl<SDValue> &Results,
10604                                   SelectionDAG &DAG) {
10605   SDLoc DL(N);
10606   SDValue Op = N->getOperand(0);
10607
10608   if (N->getValueType(0) != MVT::i16 || Op.getValueType() != MVT::f16)
10609     return;
10610
10611   Op = SDValue(
10612       DAG.getMachineNode(TargetOpcode::INSERT_SUBREG, DL, MVT::f32,
10613                          DAG.getUNDEF(MVT::i32), Op,
10614                          DAG.getTargetConstant(AArch64::hsub, DL, MVT::i32)),
10615       0);
10616   Op = DAG.getNode(ISD::BITCAST, DL, MVT::i32, Op);
10617   Results.push_back(DAG.getNode(ISD::TRUNCATE, DL, MVT::i16, Op));
10618 }
10619
10620 static void ReplaceReductionResults(SDNode *N,
10621                                     SmallVectorImpl<SDValue> &Results,
10622                                     SelectionDAG &DAG, unsigned InterOp,
10623                                     unsigned AcrossOp) {
10624   EVT LoVT, HiVT;
10625   SDValue Lo, Hi;
10626   SDLoc dl(N);
10627   std::tie(LoVT, HiVT) = DAG.GetSplitDestVTs(N->getValueType(0));
10628   std::tie(Lo, Hi) = DAG.SplitVectorOperand(N, 0);
10629   SDValue InterVal = DAG.getNode(InterOp, dl, LoVT, Lo, Hi);
10630   SDValue SplitVal = DAG.getNode(AcrossOp, dl, LoVT, InterVal);
10631   Results.push_back(SplitVal);
10632 }
10633
10634 static std::pair<SDValue, SDValue> splitInt128(SDValue N, SelectionDAG &DAG) {
10635   SDLoc DL(N);
10636   SDValue Lo = DAG.getNode(ISD::TRUNCATE, DL, MVT::i64, N);
10637   SDValue Hi = DAG.getNode(ISD::TRUNCATE, DL, MVT::i64,
10638                            DAG.getNode(ISD::SRL, DL, MVT::i128, N,
10639                                        DAG.getConstant(64, DL, MVT::i64)));
10640   return std::make_pair(Lo, Hi);
10641 }
10642
10643 static void ReplaceCMP_SWAP_128Results(SDNode *N,
10644                                        SmallVectorImpl<SDValue> & Results,
10645                                        SelectionDAG &DAG) {
10646   assert(N->getValueType(0) == MVT::i128 &&
10647          "AtomicCmpSwap on types less than 128 should be legal");
10648   auto Desired = splitInt128(N->getOperand(2), DAG);
10649   auto New = splitInt128(N->getOperand(3), DAG);
10650   SDValue Ops[] = {N->getOperand(1), Desired.first, Desired.second,
10651                    New.first,        New.second,    N->getOperand(0)};
10652   SDNode *CmpSwap = DAG.getMachineNode(
10653       AArch64::CMP_SWAP_128, SDLoc(N),
10654       DAG.getVTList(MVT::i64, MVT::i64, MVT::i32, MVT::Other), Ops);
10655
10656   MachineFunction &MF = DAG.getMachineFunction();
10657   MachineSDNode::mmo_iterator MemOp = MF.allocateMemRefsArray(1);
10658   MemOp[0] = cast<MemSDNode>(N)->getMemOperand();
10659   cast<MachineSDNode>(CmpSwap)->setMemRefs(MemOp, MemOp + 1);
10660
10661   Results.push_back(SDValue(CmpSwap, 0));
10662   Results.push_back(SDValue(CmpSwap, 1));
10663   Results.push_back(SDValue(CmpSwap, 3));
10664 }
10665
10666 void AArch64TargetLowering::ReplaceNodeResults(
10667     SDNode *N, SmallVectorImpl<SDValue> &Results, SelectionDAG &DAG) const {
10668   switch (N->getOpcode()) {
10669   default:
10670     llvm_unreachable("Don't know how to custom expand this");
10671   case ISD::BITCAST:
10672     ReplaceBITCASTResults(N, Results, DAG);
10673     return;
10674   case ISD::VECREDUCE_ADD:
10675   case ISD::VECREDUCE_SMAX:
10676   case ISD::VECREDUCE_SMIN:
10677   case ISD::VECREDUCE_UMAX:
10678   case ISD::VECREDUCE_UMIN:
10679     Results.push_back(LowerVECREDUCE(SDValue(N, 0), DAG));
10680     return;
10681
10682   case AArch64ISD::SADDV:
10683     ReplaceReductionResults(N, Results, DAG, ISD::ADD, AArch64ISD::SADDV);
10684     return;
10685   case AArch64ISD::UADDV:
10686     ReplaceReductionResults(N, Results, DAG, ISD::ADD, AArch64ISD::UADDV);
10687     return;
10688   case AArch64ISD::SMINV:
10689     ReplaceReductionResults(N, Results, DAG, ISD::SMIN, AArch64ISD::SMINV);
10690     return;
10691   case AArch64ISD::UMINV:
10692     ReplaceReductionResults(N, Results, DAG, ISD::UMIN, AArch64ISD::UMINV);
10693     return;
10694   case AArch64ISD::SMAXV:
10695     ReplaceReductionResults(N, Results, DAG, ISD::SMAX, AArch64ISD::SMAXV);
10696     return;
10697   case AArch64ISD::UMAXV:
10698     ReplaceReductionResults(N, Results, DAG, ISD::UMAX, AArch64ISD::UMAXV);
10699     return;
10700   case ISD::FP_TO_UINT:
10701   case ISD::FP_TO_SINT:
10702     assert(N->getValueType(0) == MVT::i128 && "unexpected illegal conversion");
10703     // Let normal code take care of it by not adding anything to Results.
10704     return;
10705   case ISD::ATOMIC_CMP_SWAP:
10706     ReplaceCMP_SWAP_128Results(N, Results, DAG);
10707     return;
10708   }
10709 }
10710
10711 bool AArch64TargetLowering::useLoadStackGuardNode() const {
10712   if (Subtarget->isTargetAndroid() || Subtarget->isTargetFuchsia())
10713     return TargetLowering::useLoadStackGuardNode();
10714   return true;
10715 }
10716
10717 unsigned AArch64TargetLowering::combineRepeatedFPDivisors() const {
10718   // Combine multiple FDIVs with the same divisor into multiple FMULs by the
10719   // reciprocal if there are three or more FDIVs.
10720   return 3;
10721 }
10722
10723 TargetLoweringBase::LegalizeTypeAction
10724 AArch64TargetLowering::getPreferredVectorAction(EVT VT) const {
10725   MVT SVT = VT.getSimpleVT();
10726   // During type legalization, we prefer to widen v1i8, v1i16, v1i32  to v8i8,
10727   // v4i16, v2i32 instead of to promote.
10728   if (SVT == MVT::v1i8 || SVT == MVT::v1i16 || SVT == MVT::v1i32
10729       || SVT == MVT::v1f32)
10730     return TypeWidenVector;
10731
10732   return TargetLoweringBase::getPreferredVectorAction(VT);
10733 }
10734
10735 // Loads and stores less than 128-bits are already atomic; ones above that
10736 // are doomed anyway, so defer to the default libcall and blame the OS when
10737 // things go wrong.
10738 bool AArch64TargetLowering::shouldExpandAtomicStoreInIR(StoreInst *SI) const {
10739   unsigned Size = SI->getValueOperand()->getType()->getPrimitiveSizeInBits();
10740   return Size == 128;
10741 }
10742
10743 // Loads and stores less than 128-bits are already atomic; ones above that
10744 // are doomed anyway, so defer to the default libcall and blame the OS when
10745 // things go wrong.
10746 TargetLowering::AtomicExpansionKind
10747 AArch64TargetLowering::shouldExpandAtomicLoadInIR(LoadInst *LI) const {
10748   unsigned Size = LI->getType()->getPrimitiveSizeInBits();
10749   return Size == 128 ? AtomicExpansionKind::LLSC : AtomicExpansionKind::None;
10750 }
10751
10752 // For the real atomic operations, we have ldxr/stxr up to 128 bits,
10753 TargetLowering::AtomicExpansionKind
10754 AArch64TargetLowering::shouldExpandAtomicRMWInIR(AtomicRMWInst *AI) const {
10755   unsigned Size = AI->getType()->getPrimitiveSizeInBits();
10756   if (Size > 128) return AtomicExpansionKind::None;
10757   // Nand not supported in LSE.
10758   if (AI->getOperation() == AtomicRMWInst::Nand) return AtomicExpansionKind::LLSC;
10759   // Leave 128 bits to LLSC.
10760   return (Subtarget->hasLSE() && Size < 128) ? AtomicExpansionKind::None : AtomicExpansionKind::LLSC;
10761 }
10762
10763 bool AArch64TargetLowering::shouldExpandAtomicCmpXchgInIR(
10764     AtomicCmpXchgInst *AI) const {
10765   // If subtarget has LSE, leave cmpxchg intact for codegen.
10766   if (Subtarget->hasLSE()) return false;
10767   // At -O0, fast-regalloc cannot cope with the live vregs necessary to
10768   // implement cmpxchg without spilling. If the address being exchanged is also
10769   // on the stack and close enough to the spill slot, this can lead to a
10770   // situation where the monitor always gets cleared and the atomic operation
10771   // can never succeed. So at -O0 we need a late-expanded pseudo-inst instead.
10772   return getTargetMachine().getOptLevel() != 0;
10773 }
10774
10775 Value *AArch64TargetLowering::emitLoadLinked(IRBuilder<> &Builder, Value *Addr,
10776                                              AtomicOrdering Ord) const {
10777   Module *M = Builder.GetInsertBlock()->getParent()->getParent();
10778   Type *ValTy = cast<PointerType>(Addr->getType())->getElementType();
10779   bool IsAcquire = isAcquireOrStronger(Ord);
10780
10781   // Since i128 isn't legal and intrinsics don't get type-lowered, the ldrexd
10782   // intrinsic must return {i64, i64} and we have to recombine them into a
10783   // single i128 here.
10784   if (ValTy->getPrimitiveSizeInBits() == 128) {
10785     Intrinsic::ID Int =
10786         IsAcquire ? Intrinsic::aarch64_ldaxp : Intrinsic::aarch64_ldxp;
10787     Function *Ldxr = Intrinsic::getDeclaration(M, Int);
10788
10789     Addr = Builder.CreateBitCast(Addr, Type::getInt8PtrTy(M->getContext()));
10790     Value *LoHi = Builder.CreateCall(Ldxr, Addr, "lohi");
10791
10792     Value *Lo = Builder.CreateExtractValue(LoHi, 0, "lo");
10793     Value *Hi = Builder.CreateExtractValue(LoHi, 1, "hi");
10794     Lo = Builder.CreateZExt(Lo, ValTy, "lo64");
10795     Hi = Builder.CreateZExt(Hi, ValTy, "hi64");
10796     return Builder.CreateOr(
10797         Lo, Builder.CreateShl(Hi, ConstantInt::get(ValTy, 64)), "val64");
10798   }
10799
10800   Type *Tys[] = { Addr->getType() };
10801   Intrinsic::ID Int =
10802       IsAcquire ? Intrinsic::aarch64_ldaxr : Intrinsic::aarch64_ldxr;
10803   Function *Ldxr = Intrinsic::getDeclaration(M, Int, Tys);
10804
10805   return Builder.CreateTruncOrBitCast(
10806       Builder.CreateCall(Ldxr, Addr),
10807       cast<PointerType>(Addr->getType())->getElementType());
10808 }
10809
10810 void AArch64TargetLowering::emitAtomicCmpXchgNoStoreLLBalance(
10811     IRBuilder<> &Builder) const {
10812   Module *M = Builder.GetInsertBlock()->getParent()->getParent();
10813   Builder.CreateCall(Intrinsic::getDeclaration(M, Intrinsic::aarch64_clrex));
10814 }
10815
10816 Value *AArch64TargetLowering::emitStoreConditional(IRBuilder<> &Builder,
10817                                                    Value *Val, Value *Addr,
10818                                                    AtomicOrdering Ord) const {
10819   Module *M = Builder.GetInsertBlock()->getParent()->getParent();
10820   bool IsRelease = isReleaseOrStronger(Ord);
10821
10822   // Since the intrinsics must have legal type, the i128 intrinsics take two
10823   // parameters: "i64, i64". We must marshal Val into the appropriate form
10824   // before the call.
10825   if (Val->getType()->getPrimitiveSizeInBits() == 128) {
10826     Intrinsic::ID Int =
10827         IsRelease ? Intrinsic::aarch64_stlxp : Intrinsic::aarch64_stxp;
10828     Function *Stxr = Intrinsic::getDeclaration(M, Int);
10829     Type *Int64Ty = Type::getInt64Ty(M->getContext());
10830
10831     Value *Lo = Builder.CreateTrunc(Val, Int64Ty, "lo");
10832     Value *Hi = Builder.CreateTrunc(Builder.CreateLShr(Val, 64), Int64Ty, "hi");
10833     Addr = Builder.CreateBitCast(Addr, Type::getInt8PtrTy(M->getContext()));
10834     return Builder.CreateCall(Stxr, {Lo, Hi, Addr});
10835   }
10836
10837   Intrinsic::ID Int =
10838       IsRelease ? Intrinsic::aarch64_stlxr : Intrinsic::aarch64_stxr;
10839   Type *Tys[] = { Addr->getType() };
10840   Function *Stxr = Intrinsic::getDeclaration(M, Int, Tys);
10841
10842   return Builder.CreateCall(Stxr,
10843                             {Builder.CreateZExtOrBitCast(
10844                                  Val, Stxr->getFunctionType()->getParamType(0)),
10845                              Addr});
10846 }
10847
10848 bool AArch64TargetLowering::functionArgumentNeedsConsecutiveRegisters(
10849     Type *Ty, CallingConv::ID CallConv, bool isVarArg) const {
10850   return Ty->isArrayTy();
10851 }
10852
10853 bool AArch64TargetLowering::shouldNormalizeToSelectSequence(LLVMContext &,
10854                                                             EVT) const {
10855   return false;
10856 }
10857
10858 static Value *UseTlsOffset(IRBuilder<> &IRB, unsigned Offset) {
10859   Module *M = IRB.GetInsertBlock()->getParent()->getParent();
10860   Function *ThreadPointerFunc =
10861       Intrinsic::getDeclaration(M, Intrinsic::thread_pointer);
10862   return IRB.CreatePointerCast(
10863       IRB.CreateConstGEP1_32(IRB.CreateCall(ThreadPointerFunc), Offset),
10864       Type::getInt8PtrTy(IRB.getContext())->getPointerTo(0));
10865 }
10866
10867 Value *AArch64TargetLowering::getIRStackGuard(IRBuilder<> &IRB) const {
10868   // Android provides a fixed TLS slot for the stack cookie. See the definition
10869   // of TLS_SLOT_STACK_GUARD in
10870   // https://android.googlesource.com/platform/bionic/+/master/libc/private/bionic_tls.h
10871   if (Subtarget->isTargetAndroid())
10872     return UseTlsOffset(IRB, 0x28);
10873
10874   // Fuchsia is similar.
10875   // <zircon/tls.h> defines ZX_TLS_STACK_GUARD_OFFSET with this value.
10876   if (Subtarget->isTargetFuchsia())
10877     return UseTlsOffset(IRB, -0x10);
10878
10879   return TargetLowering::getIRStackGuard(IRB);
10880 }
10881
10882 Value *AArch64TargetLowering::getSafeStackPointerLocation(IRBuilder<> &IRB) const {
10883   // Android provides a fixed TLS slot for the SafeStack pointer. See the
10884   // definition of TLS_SLOT_SAFESTACK in
10885   // https://android.googlesource.com/platform/bionic/+/master/libc/private/bionic_tls.h
10886   if (Subtarget->isTargetAndroid())
10887     return UseTlsOffset(IRB, 0x48);
10888
10889   // Fuchsia is similar.
10890   // <zircon/tls.h> defines ZX_TLS_UNSAFE_SP_OFFSET with this value.
10891   if (Subtarget->isTargetFuchsia())
10892     return UseTlsOffset(IRB, -0x8);
10893
10894   return TargetLowering::getSafeStackPointerLocation(IRB);
10895 }
10896
10897 bool AArch64TargetLowering::isMaskAndCmp0FoldingBeneficial(
10898     const Instruction &AndI) const {
10899   // Only sink 'and' mask to cmp use block if it is masking a single bit, since
10900   // this is likely to be fold the and/cmp/br into a single tbz instruction.  It
10901   // may be beneficial to sink in other cases, but we would have to check that
10902   // the cmp would not get folded into the br to form a cbz for these to be
10903   // beneficial.
10904   ConstantInt* Mask = dyn_cast<ConstantInt>(AndI.getOperand(1));
10905   if (!Mask)
10906     return false;
10907   return Mask->getValue().isPowerOf2();
10908 }
10909
10910 void AArch64TargetLowering::initializeSplitCSR(MachineBasicBlock *Entry) const {
10911   // Update IsSplitCSR in AArch64unctionInfo.
10912   AArch64FunctionInfo *AFI = Entry->getParent()->getInfo<AArch64FunctionInfo>();
10913   AFI->setIsSplitCSR(true);
10914 }
10915
10916 void AArch64TargetLowering::insertCopiesSplitCSR(
10917     MachineBasicBlock *Entry,
10918     const SmallVectorImpl<MachineBasicBlock *> &Exits) const {
10919   const AArch64RegisterInfo *TRI = Subtarget->getRegisterInfo();
10920   const MCPhysReg *IStart = TRI->getCalleeSavedRegsViaCopy(Entry->getParent());
10921   if (!IStart)
10922     return;
10923
10924   const TargetInstrInfo *TII = Subtarget->getInstrInfo();
10925   MachineRegisterInfo *MRI = &Entry->getParent()->getRegInfo();
10926   MachineBasicBlock::iterator MBBI = Entry->begin();
10927   for (const MCPhysReg *I = IStart; *I; ++I) {
10928     const TargetRegisterClass *RC = nullptr;
10929     if (AArch64::GPR64RegClass.contains(*I))
10930       RC = &AArch64::GPR64RegClass;
10931     else if (AArch64::FPR64RegClass.contains(*I))
10932       RC = &AArch64::FPR64RegClass;
10933     else
10934       llvm_unreachable("Unexpected register class in CSRsViaCopy!");
10935
10936     unsigned NewVR = MRI->createVirtualRegister(RC);
10937     // Create copy from CSR to a virtual register.
10938     // FIXME: this currently does not emit CFI pseudo-instructions, it works
10939     // fine for CXX_FAST_TLS since the C++-style TLS access functions should be
10940     // nounwind. If we want to generalize this later, we may need to emit
10941     // CFI pseudo-instructions.
10942     assert(Entry->getParent()->getFunction().hasFnAttribute(
10943                Attribute::NoUnwind) &&
10944            "Function should be nounwind in insertCopiesSplitCSR!");
10945     Entry->addLiveIn(*I);
10946     BuildMI(*Entry, MBBI, DebugLoc(), TII->get(TargetOpcode::COPY), NewVR)
10947         .addReg(*I);
10948
10949     // Insert the copy-back instructions right before the terminator.
10950     for (auto *Exit : Exits)
10951       BuildMI(*Exit, Exit->getFirstTerminator(), DebugLoc(),
10952               TII->get(TargetOpcode::COPY), *I)
10953           .addReg(NewVR);
10954   }
10955 }
10956
10957 bool AArch64TargetLowering::isIntDivCheap(EVT VT, AttributeList Attr) const {
10958   // Integer division on AArch64 is expensive. However, when aggressively
10959   // optimizing for code size, we prefer to use a div instruction, as it is
10960   // usually smaller than the alternative sequence.
10961   // The exception to this is vector division. Since AArch64 doesn't have vector
10962   // integer division, leaving the division as-is is a loss even in terms of
10963   // size, because it will have to be scalarized, while the alternative code
10964   // sequence can be performed in vector form.
10965   bool OptSize =
10966       Attr.hasAttribute(AttributeList::FunctionIndex, Attribute::MinSize);
10967   return OptSize && !VT.isVector();
10968 }
10969
10970 unsigned
10971 AArch64TargetLowering::getVaListSizeInBits(const DataLayout &DL) const {
10972   if (Subtarget->isTargetDarwin() || Subtarget->isTargetWindows())
10973     return getPointerTy(DL).getSizeInBits();
10974
10975   return 3 * getPointerTy(DL).getSizeInBits() + 2 * 32;
10976 }