1 //===-- AMDGPUISelLowering.cpp - AMDGPU Common DAG lowering functions -----===//
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 /// \file
11 /// \brief This is the parent TargetLowering class for hardware code gen
12 /// targets.
13 //
14 //===----------------------------------------------------------------------===//
15 
16 #include "AMDGPUISelLowering.h"
17 #include "AMDGPU.h"
18 #include "AMDGPUCallLowering.h"
19 #include "AMDGPUFrameLowering.h"
20 #include "AMDGPUIntrinsicInfo.h"
21 #include "AMDGPURegisterInfo.h"
22 #include "AMDGPUSubtarget.h"
23 #include "R600MachineFunctionInfo.h"
24 #include "SIMachineFunctionInfo.h"
25 #include "llvm/CodeGen/CallingConvLower.h"
26 #include "llvm/CodeGen/MachineFunction.h"
27 #include "llvm/CodeGen/MachineRegisterInfo.h"
28 #include "llvm/CodeGen/SelectionDAG.h"
29 #include "llvm/CodeGen/TargetLoweringObjectFileImpl.h"
30 #include "llvm/IR/DataLayout.h"
31 #include "llvm/IR/DiagnosticInfo.h"
32 #include "SIInstrInfo.h"
33 using namespace llvm;
34 
35 static bool allocateKernArg(unsigned ValNo, MVT ValVT, MVT LocVT,
36                             CCValAssign::LocInfo LocInfo,
37                             ISD::ArgFlagsTy ArgFlags, CCState &State) {
38   MachineFunction &MF = State.getMachineFunction();
39   AMDGPUMachineFunction *MFI = MF.getInfo<AMDGPUMachineFunction>();
40 
41   uint64_t Offset = MFI->allocateKernArg(LocVT.getStoreSize(),
42                                          ArgFlags.getOrigAlign());
43   State.addLoc(CCValAssign::getCustomMem(ValNo, ValVT, Offset, LocVT, LocInfo));
44   return true;
45 }
46 
47 #include "AMDGPUGenCallingConv.inc"
48 
49 // Find a larger type to do a load / store of a vector with.
50 EVT AMDGPUTargetLowering::getEquivalentMemType(LLVMContext &Ctx, EVT VT) {
51   unsigned StoreSize = VT.getStoreSizeInBits();
52   if (StoreSize <= 32)
53     return EVT::getIntegerVT(Ctx, StoreSize);
54 
55   assert(StoreSize % 32 == 0 && "Store size not a multiple of 32");
56   return EVT::getVectorVT(Ctx, MVT::i32, StoreSize / 32);
57 }
58 
59 AMDGPUTargetLowering::AMDGPUTargetLowering(const TargetMachine &TM,
60                                            const AMDGPUSubtarget &STI)
61     : TargetLowering(TM), Subtarget(&STI) {
62   // Lower floating point store/load to integer store/load to reduce the number
63   // of patterns in tablegen.
64   setOperationAction(ISD::LOAD, MVT::f32, Promote);
65   AddPromotedToType(ISD::LOAD, MVT::f32, MVT::i32);
66 
67   setOperationAction(ISD::LOAD, MVT::v2f32, Promote);
68   AddPromotedToType(ISD::LOAD, MVT::v2f32, MVT::v2i32);
69 
70   setOperationAction(ISD::LOAD, MVT::v4f32, Promote);
71   AddPromotedToType(ISD::LOAD, MVT::v4f32, MVT::v4i32);
72 
73   setOperationAction(ISD::LOAD, MVT::v8f32, Promote);
74   AddPromotedToType(ISD::LOAD, MVT::v8f32, MVT::v8i32);
75 
76   setOperationAction(ISD::LOAD, MVT::v16f32, Promote);
77   AddPromotedToType(ISD::LOAD, MVT::v16f32, MVT::v16i32);
78 
79   setOperationAction(ISD::LOAD, MVT::i64, Promote);
80   AddPromotedToType(ISD::LOAD, MVT::i64, MVT::v2i32);
81 
82   setOperationAction(ISD::LOAD, MVT::v2i64, Promote);
83   AddPromotedToType(ISD::LOAD, MVT::v2i64, MVT::v4i32);
84 
85   setOperationAction(ISD::LOAD, MVT::f64, Promote);
86   AddPromotedToType(ISD::LOAD, MVT::f64, MVT::v2i32);
87 
88   setOperationAction(ISD::LOAD, MVT::v2f64, Promote);
89   AddPromotedToType(ISD::LOAD, MVT::v2f64, MVT::v4i32);
90 
91   // There are no 64-bit extloads. These should be done as a 32-bit extload and
92   // an extension to 64-bit.
93   for (MVT VT : MVT::integer_valuetypes()) {
94     setLoadExtAction(ISD::EXTLOAD, MVT::i64, VT, Expand);
95     setLoadExtAction(ISD::SEXTLOAD, MVT::i64, VT, Expand);
96     setLoadExtAction(ISD::ZEXTLOAD, MVT::i64, VT, Expand);
97   }
98 
99   for (MVT VT : MVT::integer_valuetypes()) {
100     if (VT == MVT::i64)
101       continue;
102 
103     setLoadExtAction(ISD::SEXTLOAD, VT, MVT::i1, Promote);
104     setLoadExtAction(ISD::SEXTLOAD, VT, MVT::i8, Legal);
105     setLoadExtAction(ISD::SEXTLOAD, VT, MVT::i16, Legal);
106     setLoadExtAction(ISD::SEXTLOAD, VT, MVT::i32, Expand);
107 
108     setLoadExtAction(ISD::ZEXTLOAD, VT, MVT::i1, Promote);
109     setLoadExtAction(ISD::ZEXTLOAD, VT, MVT::i8, Legal);
110     setLoadExtAction(ISD::ZEXTLOAD, VT, MVT::i16, Legal);
111     setLoadExtAction(ISD::ZEXTLOAD, VT, MVT::i32, Expand);
112 
113     setLoadExtAction(ISD::EXTLOAD, VT, MVT::i1, Promote);
114     setLoadExtAction(ISD::EXTLOAD, VT, MVT::i8, Legal);
115     setLoadExtAction(ISD::EXTLOAD, VT, MVT::i16, Legal);
116     setLoadExtAction(ISD::EXTLOAD, VT, MVT::i32, Expand);
117   }
118 
119   for (MVT VT : MVT::integer_vector_valuetypes()) {
120     setLoadExtAction(ISD::EXTLOAD, VT, MVT::v2i8, Expand);
121     setLoadExtAction(ISD::SEXTLOAD, VT, MVT::v2i8, Expand);
122     setLoadExtAction(ISD::ZEXTLOAD, VT, MVT::v2i8, Expand);
123     setLoadExtAction(ISD::EXTLOAD, VT, MVT::v4i8, Expand);
124     setLoadExtAction(ISD::SEXTLOAD, VT, MVT::v4i8, Expand);
125     setLoadExtAction(ISD::ZEXTLOAD, VT, MVT::v4i8, Expand);
126     setLoadExtAction(ISD::EXTLOAD, VT, MVT::v2i16, Expand);
127     setLoadExtAction(ISD::SEXTLOAD, VT, MVT::v2i16, Expand);
128     setLoadExtAction(ISD::ZEXTLOAD, VT, MVT::v2i16, Expand);
129     setLoadExtAction(ISD::EXTLOAD, VT, MVT::v4i16, Expand);
130     setLoadExtAction(ISD::SEXTLOAD, VT, MVT::v4i16, Expand);
131     setLoadExtAction(ISD::ZEXTLOAD, VT, MVT::v4i16, Expand);
132   }
133 
134   setLoadExtAction(ISD::EXTLOAD, MVT::f32, MVT::f16, Expand);
135   setLoadExtAction(ISD::EXTLOAD, MVT::v2f32, MVT::v2f16, Expand);
136   setLoadExtAction(ISD::EXTLOAD, MVT::v4f32, MVT::v4f16, Expand);
137   setLoadExtAction(ISD::EXTLOAD, MVT::v8f32, MVT::v8f16, Expand);
138 
139   setLoadExtAction(ISD::EXTLOAD, MVT::f64, MVT::f32, Expand);
140   setLoadExtAction(ISD::EXTLOAD, MVT::v2f64, MVT::v2f32, Expand);
141   setLoadExtAction(ISD::EXTLOAD, MVT::v4f64, MVT::v4f32, Expand);
142   setLoadExtAction(ISD::EXTLOAD, MVT::v8f64, MVT::v8f32, Expand);
143 
144   setLoadExtAction(ISD::EXTLOAD, MVT::f64, MVT::f16, Expand);
145   setLoadExtAction(ISD::EXTLOAD, MVT::v2f64, MVT::v2f16, Expand);
146   setLoadExtAction(ISD::EXTLOAD, MVT::v4f64, MVT::v4f16, Expand);
147   setLoadExtAction(ISD::EXTLOAD, MVT::v8f64, MVT::v8f16, Expand);
148 
149   setOperationAction(ISD::STORE, MVT::f32, Promote);
150   AddPromotedToType(ISD::STORE, MVT::f32, MVT::i32);
151 
152   setOperationAction(ISD::STORE, MVT::v2f32, Promote);
153   AddPromotedToType(ISD::STORE, MVT::v2f32, MVT::v2i32);
154 
155   setOperationAction(ISD::STORE, MVT::v4f32, Promote);
156   AddPromotedToType(ISD::STORE, MVT::v4f32, MVT::v4i32);
157 
158   setOperationAction(ISD::STORE, MVT::v8f32, Promote);
159   AddPromotedToType(ISD::STORE, MVT::v8f32, MVT::v8i32);
160 
161   setOperationAction(ISD::STORE, MVT::v16f32, Promote);
162   AddPromotedToType(ISD::STORE, MVT::v16f32, MVT::v16i32);
163 
164   setOperationAction(ISD::STORE, MVT::i64, Promote);
165   AddPromotedToType(ISD::STORE, MVT::i64, MVT::v2i32);
166 
167   setOperationAction(ISD::STORE, MVT::v2i64, Promote);
168   AddPromotedToType(ISD::STORE, MVT::v2i64, MVT::v4i32);
169 
170   setOperationAction(ISD::STORE, MVT::f64, Promote);
171   AddPromotedToType(ISD::STORE, MVT::f64, MVT::v2i32);
172 
173   setOperationAction(ISD::STORE, MVT::v2f64, Promote);
174   AddPromotedToType(ISD::STORE, MVT::v2f64, MVT::v4i32);
175 
176   setTruncStoreAction(MVT::i64, MVT::i1, Expand);
177   setTruncStoreAction(MVT::i64, MVT::i8, Expand);
178   setTruncStoreAction(MVT::i64, MVT::i16, Expand);
179   setTruncStoreAction(MVT::i64, MVT::i32, Expand);
180 
181   setTruncStoreAction(MVT::v2i64, MVT::v2i1, Expand);
182   setTruncStoreAction(MVT::v2i64, MVT::v2i8, Expand);
183   setTruncStoreAction(MVT::v2i64, MVT::v2i16, Expand);
184   setTruncStoreAction(MVT::v2i64, MVT::v2i32, Expand);
185 
186   setTruncStoreAction(MVT::f32, MVT::f16, Expand);
187   setTruncStoreAction(MVT::v2f32, MVT::v2f16, Expand);
188   setTruncStoreAction(MVT::v4f32, MVT::v4f16, Expand);
189   setTruncStoreAction(MVT::v8f32, MVT::v8f16, Expand);
190 
191   setTruncStoreAction(MVT::f64, MVT::f16, Expand);
192   setTruncStoreAction(MVT::f64, MVT::f32, Expand);
193 
194   setTruncStoreAction(MVT::v2f64, MVT::v2f32, Expand);
195   setTruncStoreAction(MVT::v2f64, MVT::v2f16, Expand);
196 
197   setTruncStoreAction(MVT::v4f64, MVT::v4f32, Expand);
198   setTruncStoreAction(MVT::v4f64, MVT::v4f16, Expand);
199 
200   setTruncStoreAction(MVT::v8f64, MVT::v8f32, Expand);
201   setTruncStoreAction(MVT::v8f64, MVT::v8f16, Expand);
202 
203 
204   setOperationAction(ISD::Constant, MVT::i32, Legal);
205   setOperationAction(ISD::Constant, MVT::i64, Legal);
206   setOperationAction(ISD::ConstantFP, MVT::f32, Legal);
207   setOperationAction(ISD::ConstantFP, MVT::f64, Legal);
208 
209   setOperationAction(ISD::BR_JT, MVT::Other, Expand);
210   setOperationAction(ISD::BRIND, MVT::Other, Expand);
211 
212   // This is totally unsupported, just custom lower to produce an error.
213   setOperationAction(ISD::DYNAMIC_STACKALLOC, MVT::i32, Custom);
214 
215   // We need to custom lower some of the intrinsics
216   setOperationAction(ISD::INTRINSIC_WO_CHAIN, MVT::Other, Custom);
217   setOperationAction(ISD::INTRINSIC_VOID, MVT::Other, Custom);
218 
219   // Library functions.  These default to Expand, but we have instructions
220   // for them.
221   setOperationAction(ISD::FCEIL,  MVT::f32, Legal);
222   setOperationAction(ISD::FEXP2,  MVT::f32, Legal);
223   setOperationAction(ISD::FPOW,   MVT::f32, Legal);
224   setOperationAction(ISD::FLOG2,  MVT::f32, Legal);
225   setOperationAction(ISD::FABS,   MVT::f32, Legal);
226   setOperationAction(ISD::FFLOOR, MVT::f32, Legal);
227   setOperationAction(ISD::FRINT,  MVT::f32, Legal);
228   setOperationAction(ISD::FTRUNC, MVT::f32, Legal);
229   setOperationAction(ISD::FMINNUM, MVT::f32, Legal);
230   setOperationAction(ISD::FMAXNUM, MVT::f32, Legal);
231 
232   setOperationAction(ISD::FROUND, MVT::f32, Custom);
233   setOperationAction(ISD::FROUND, MVT::f64, Custom);
234 
235   setOperationAction(ISD::FNEARBYINT, MVT::f32, Custom);
236   setOperationAction(ISD::FNEARBYINT, MVT::f64, Custom);
237 
238   setOperationAction(ISD::FREM, MVT::f32, Custom);
239   setOperationAction(ISD::FREM, MVT::f64, Custom);
240 
241   // v_mad_f32 does not support denormals according to some sources.
242   if (!Subtarget->hasFP32Denormals())
243     setOperationAction(ISD::FMAD, MVT::f32, Legal);
244 
245   // Expand to fneg + fadd.
246   setOperationAction(ISD::FSUB, MVT::f64, Expand);
247 
248   setOperationAction(ISD::CONCAT_VECTORS, MVT::v4i32, Custom);
249   setOperationAction(ISD::CONCAT_VECTORS, MVT::v4f32, Custom);
250   setOperationAction(ISD::CONCAT_VECTORS, MVT::v8i32, Custom);
251   setOperationAction(ISD::CONCAT_VECTORS, MVT::v8f32, Custom);
252   setOperationAction(ISD::EXTRACT_SUBVECTOR, MVT::v2f32, Custom);
253   setOperationAction(ISD::EXTRACT_SUBVECTOR, MVT::v2i32, Custom);
254   setOperationAction(ISD::EXTRACT_SUBVECTOR, MVT::v4f32, Custom);
255   setOperationAction(ISD::EXTRACT_SUBVECTOR, MVT::v4i32, Custom);
256   setOperationAction(ISD::EXTRACT_SUBVECTOR, MVT::v8f32, Custom);
257   setOperationAction(ISD::EXTRACT_SUBVECTOR, MVT::v8i32, Custom);
258 
259   if (Subtarget->getGeneration() < AMDGPUSubtarget::SEA_ISLANDS) {
260     setOperationAction(ISD::FCEIL, MVT::f64, Custom);
261     setOperationAction(ISD::FTRUNC, MVT::f64, Custom);
262     setOperationAction(ISD::FRINT, MVT::f64, Custom);
263     setOperationAction(ISD::FFLOOR, MVT::f64, Custom);
264   }
265 
266   if (!Subtarget->hasBFI()) {
267     // fcopysign can be done in a single instruction with BFI.
268     setOperationAction(ISD::FCOPYSIGN, MVT::f32, Expand);
269     setOperationAction(ISD::FCOPYSIGN, MVT::f64, Expand);
270   }
271 
272   setOperationAction(ISD::FP16_TO_FP, MVT::f64, Expand);
273   setOperationAction(ISD::FP_TO_FP16, MVT::f64, Custom);
274 
275   const MVT ScalarIntVTs[] = { MVT::i32, MVT::i64 };
276   for (MVT VT : ScalarIntVTs) {
277     // These should use [SU]DIVREM, so set them to expand
278     setOperationAction(ISD::SDIV, VT, Expand);
279     setOperationAction(ISD::UDIV, VT, Expand);
280     setOperationAction(ISD::SREM, VT, Expand);
281     setOperationAction(ISD::UREM, VT, Expand);
282 
283     // GPU does not have divrem function for signed or unsigned.
284     setOperationAction(ISD::SDIVREM, VT, Custom);
285     setOperationAction(ISD::UDIVREM, VT, Custom);
286 
287     // GPU does not have [S|U]MUL_LOHI functions as a single instruction.
288     setOperationAction(ISD::SMUL_LOHI, VT, Expand);
289     setOperationAction(ISD::UMUL_LOHI, VT, Expand);
290 
291     setOperationAction(ISD::BSWAP, VT, Expand);
292     setOperationAction(ISD::CTTZ, VT, Expand);
293     setOperationAction(ISD::CTLZ, VT, Expand);
294   }
295 
296   if (!Subtarget->hasBCNT(32))
297     setOperationAction(ISD::CTPOP, MVT::i32, Expand);
298 
299   if (!Subtarget->hasBCNT(64))
300     setOperationAction(ISD::CTPOP, MVT::i64, Expand);
301 
302   // The hardware supports 32-bit ROTR, but not ROTL.
303   setOperationAction(ISD::ROTL, MVT::i32, Expand);
304   setOperationAction(ISD::ROTL, MVT::i64, Expand);
305   setOperationAction(ISD::ROTR, MVT::i64, Expand);
306 
307   setOperationAction(ISD::MUL, MVT::i64, Expand);
308   setOperationAction(ISD::MULHU, MVT::i64, Expand);
309   setOperationAction(ISD::MULHS, MVT::i64, Expand);
310   setOperationAction(ISD::UDIV, MVT::i32, Expand);
311   setOperationAction(ISD::UREM, MVT::i32, Expand);
312   setOperationAction(ISD::UINT_TO_FP, MVT::i64, Custom);
313   setOperationAction(ISD::SINT_TO_FP, MVT::i64, Custom);
314   setOperationAction(ISD::FP_TO_SINT, MVT::i64, Custom);
315   setOperationAction(ISD::FP_TO_UINT, MVT::i64, Custom);
316   setOperationAction(ISD::SELECT_CC, MVT::i64, Expand);
317 
318   setOperationAction(ISD::SMIN, MVT::i32, Legal);
319   setOperationAction(ISD::UMIN, MVT::i32, Legal);
320   setOperationAction(ISD::SMAX, MVT::i32, Legal);
321   setOperationAction(ISD::UMAX, MVT::i32, Legal);
322 
323   if (Subtarget->hasFFBH())
324     setOperationAction(ISD::CTLZ_ZERO_UNDEF, MVT::i32, Custom);
325 
326   if (Subtarget->hasFFBL())
327     setOperationAction(ISD::CTTZ_ZERO_UNDEF, MVT::i32, Legal);
328 
329   setOperationAction(ISD::CTLZ, MVT::i64, Custom);
330   setOperationAction(ISD::CTLZ_ZERO_UNDEF, MVT::i64, Custom);
331 
332   // We only really have 32-bit BFE instructions (and 16-bit on VI).
333   //
334   // On SI+ there are 64-bit BFEs, but they are scalar only and there isn't any
335   // effort to match them now. We want this to be false for i64 cases when the
336   // extraction isn't restricted to the upper or lower half. Ideally we would
337   // have some pass reduce 64-bit extracts to 32-bit if possible. Extracts that
338   // span the midpoint are probably relatively rare, so don't worry about them
339   // for now.
340   if (Subtarget->hasBFE())
341     setHasExtractBitsInsn(true);
342 
343   static const MVT::SimpleValueType VectorIntTypes[] = {
344     MVT::v2i32, MVT::v4i32
345   };
346 
347   for (MVT VT : VectorIntTypes) {
348     // Expand the following operations for the current type by default.
349     setOperationAction(ISD::ADD,  VT, Expand);
350     setOperationAction(ISD::AND,  VT, Expand);
351     setOperationAction(ISD::FP_TO_SINT, VT, Expand);
352     setOperationAction(ISD::FP_TO_UINT, VT, Expand);
353     setOperationAction(ISD::MUL,  VT, Expand);
354     setOperationAction(ISD::MULHU, VT, Expand);
355     setOperationAction(ISD::MULHS, VT, Expand);
356     setOperationAction(ISD::OR,   VT, Expand);
357     setOperationAction(ISD::SHL,  VT, Expand);
358     setOperationAction(ISD::SRA,  VT, Expand);
359     setOperationAction(ISD::SRL,  VT, Expand);
360     setOperationAction(ISD::ROTL, VT, Expand);
361     setOperationAction(ISD::ROTR, VT, Expand);
362     setOperationAction(ISD::SUB,  VT, Expand);
363     setOperationAction(ISD::SINT_TO_FP, VT, Expand);
364     setOperationAction(ISD::UINT_TO_FP, VT, Expand);
365     setOperationAction(ISD::SDIV, VT, Expand);
366     setOperationAction(ISD::UDIV, VT, Expand);
367     setOperationAction(ISD::SREM, VT, Expand);
368     setOperationAction(ISD::UREM, VT, Expand);
369     setOperationAction(ISD::SMUL_LOHI, VT, Expand);
370     setOperationAction(ISD::UMUL_LOHI, VT, Expand);
371     setOperationAction(ISD::SDIVREM, VT, Custom);
372     setOperationAction(ISD::UDIVREM, VT, Expand);
373     setOperationAction(ISD::ADDC, VT, Expand);
374     setOperationAction(ISD::SUBC, VT, Expand);
375     setOperationAction(ISD::ADDE, VT, Expand);
376     setOperationAction(ISD::SUBE, VT, Expand);
377     setOperationAction(ISD::SELECT, VT, Expand);
378     setOperationAction(ISD::VSELECT, VT, Expand);
379     setOperationAction(ISD::SELECT_CC, VT, Expand);
380     setOperationAction(ISD::XOR,  VT, Expand);
381     setOperationAction(ISD::BSWAP, VT, Expand);
382     setOperationAction(ISD::CTPOP, VT, Expand);
383     setOperationAction(ISD::CTTZ, VT, Expand);
384     setOperationAction(ISD::CTLZ, VT, Expand);
385     setOperationAction(ISD::VECTOR_SHUFFLE, VT, Expand);
386   }
387 
388   static const MVT::SimpleValueType FloatVectorTypes[] = {
389     MVT::v2f32, MVT::v4f32
390   };
391 
392   for (MVT VT : FloatVectorTypes) {
393     setOperationAction(ISD::FABS, VT, Expand);
394     setOperationAction(ISD::FMINNUM, VT, Expand);
395     setOperationAction(ISD::FMAXNUM, VT, Expand);
396     setOperationAction(ISD::FADD, VT, Expand);
397     setOperationAction(ISD::FCEIL, VT, Expand);
398     setOperationAction(ISD::FCOS, VT, Expand);
399     setOperationAction(ISD::FDIV, VT, Expand);
400     setOperationAction(ISD::FEXP2, VT, Expand);
401     setOperationAction(ISD::FLOG2, VT, Expand);
402     setOperationAction(ISD::FREM, VT, Expand);
403     setOperationAction(ISD::FPOW, VT, Expand);
404     setOperationAction(ISD::FFLOOR, VT, Expand);
405     setOperationAction(ISD::FTRUNC, VT, Expand);
406     setOperationAction(ISD::FMUL, VT, Expand);
407     setOperationAction(ISD::FMA, VT, Expand);
408     setOperationAction(ISD::FRINT, VT, Expand);
409     setOperationAction(ISD::FNEARBYINT, VT, Expand);
410     setOperationAction(ISD::FSQRT, VT, Expand);
411     setOperationAction(ISD::FSIN, VT, Expand);
412     setOperationAction(ISD::FSUB, VT, Expand);
413     setOperationAction(ISD::FNEG, VT, Expand);
414     setOperationAction(ISD::VSELECT, VT, Expand);
415     setOperationAction(ISD::SELECT_CC, VT, Expand);
416     setOperationAction(ISD::FCOPYSIGN, VT, Expand);
417     setOperationAction(ISD::VECTOR_SHUFFLE, VT, Expand);
418   }
419 
420   // This causes using an unrolled select operation rather than expansion with
421   // bit operations. This is in general better, but the alternative using BFI
422   // instructions may be better if the select sources are SGPRs.
423   setOperationAction(ISD::SELECT, MVT::v2f32, Promote);
424   AddPromotedToType(ISD::SELECT, MVT::v2f32, MVT::v2i32);
425 
426   setOperationAction(ISD::SELECT, MVT::v4f32, Promote);
427   AddPromotedToType(ISD::SELECT, MVT::v4f32, MVT::v4i32);
428 
429   // There are no libcalls of any kind.
430   for (int I = 0; I < RTLIB::UNKNOWN_LIBCALL; ++I)
431     setLibcallName(static_cast<RTLIB::Libcall>(I), nullptr);
432 
433   setBooleanContents(ZeroOrNegativeOneBooleanContent);
434   setBooleanVectorContents(ZeroOrNegativeOneBooleanContent);
435 
436   setSchedulingPreference(Sched::RegPressure);
437   setJumpIsExpensive(true);
438 
439   // FIXME: This is only partially true. If we have to do vector compares, any
440   // SGPR pair can be a condition register. If we have a uniform condition, we
441   // are better off doing SALU operations, where there is only one SCC. For now,
442   // we don't have a way of knowing during instruction selection if a condition
443   // will be uniform and we always use vector compares. Assume we are using
444   // vector compares until that is fixed.
445   setHasMultipleConditionRegisters(true);
446 
447   // SI at least has hardware support for floating point exceptions, but no way
448   // of using or handling them is implemented. They are also optional in OpenCL
449   // (Section 7.3)
450   setHasFloatingPointExceptions(Subtarget->hasFPExceptions());
451 
452   PredictableSelectIsExpensive = false;
453 
454   // We want to find all load dependencies for long chains of stores to enable
455   // merging into very wide vectors. The problem is with vectors with > 4
456   // elements. MergeConsecutiveStores will attempt to merge these because x8/x16
457   // vectors are a legal type, even though we have to split the loads
458   // usually. When we can more precisely specify load legality per address
459   // space, we should be able to make FindBetterChain/MergeConsecutiveStores
460   // smarter so that they can figure out what to do in 2 iterations without all
461   // N > 4 stores on the same chain.
462   GatherAllAliasesMaxDepth = 16;
463 
464   // memcpy/memmove/memset are expanded in the IR, so we shouldn't need to worry
465   // about these during lowering.
466   MaxStoresPerMemcpy  = 0xffffffff;
467   MaxStoresPerMemmove = 0xffffffff;
468   MaxStoresPerMemset  = 0xffffffff;
469 
470   setTargetDAGCombine(ISD::BITCAST);
471   setTargetDAGCombine(ISD::SHL);
472   setTargetDAGCombine(ISD::SRA);
473   setTargetDAGCombine(ISD::SRL);
474   setTargetDAGCombine(ISD::MUL);
475   setTargetDAGCombine(ISD::MULHU);
476   setTargetDAGCombine(ISD::MULHS);
477   setTargetDAGCombine(ISD::SELECT);
478   setTargetDAGCombine(ISD::SELECT_CC);
479   setTargetDAGCombine(ISD::STORE);
480   setTargetDAGCombine(ISD::FADD);
481   setTargetDAGCombine(ISD::FSUB);
482   setTargetDAGCombine(ISD::FNEG);
483   setTargetDAGCombine(ISD::FABS);
484 }
485 
486 //===----------------------------------------------------------------------===//
487 // Target Information
488 //===----------------------------------------------------------------------===//
489 
490 LLVM_READNONE
491 static bool fnegFoldsIntoOp(unsigned Opc) {
492   switch (Opc) {
493   case ISD::FADD:
494   case ISD::FSUB:
495   case ISD::FMUL:
496   case ISD::FMA:
497   case ISD::FMAD:
498   case ISD::FMINNUM:
499   case ISD::FMAXNUM:
500   case ISD::FSIN:
501   case ISD::FTRUNC:
502   case ISD::FRINT:
503   case ISD::FNEARBYINT:
504   case AMDGPUISD::RCP:
505   case AMDGPUISD::RCP_LEGACY:
506   case AMDGPUISD::SIN_HW:
507   case AMDGPUISD::FMUL_LEGACY:
508   case AMDGPUISD::FMIN_LEGACY:
509   case AMDGPUISD::FMAX_LEGACY:
510     return true;
511   default:
512     return false;
513   }
514 }
515 
516 /// \p returns true if the operation will definitely need to use a 64-bit
517 /// encoding, and thus will use a VOP3 encoding regardless of the source
518 /// modifiers.
519 LLVM_READONLY
520 static bool opMustUseVOP3Encoding(const SDNode *N, MVT VT) {
521   return N->getNumOperands() > 2 || VT == MVT::f64;
522 }
523 
524 // Most FP instructions support source modifiers, but this could be refined
525 // slightly.
526 LLVM_READONLY
527 static bool hasSourceMods(const SDNode *N) {
528   if (isa<MemSDNode>(N))
529     return false;
530 
531   switch (N->getOpcode()) {
532   case ISD::CopyToReg:
533   case ISD::SELECT:
534   case ISD::FDIV:
535   case ISD::FREM:
536   case ISD::INLINEASM:
537   case AMDGPUISD::INTERP_P1:
538   case AMDGPUISD::INTERP_P2:
539   case AMDGPUISD::DIV_SCALE:
540     return false;
541   default:
542     return true;
543   }
544 }
545 
546 static bool allUsesHaveSourceMods(const SDNode *N, unsigned CostThreshold = 4) {
547   // Some users (such as 3-operand FMA/MAD) must use a VOP3 encoding, and thus
548   // it is truly free to use a source modifier in all cases. If there are
549   // multiple users but for each one will necessitate using VOP3, there will be
550   // a code size increase. Try to avoid increasing code size unless we know it
551   // will save on the instruction count.
552   unsigned NumMayIncreaseSize = 0;
553   MVT VT = N->getValueType(0).getScalarType().getSimpleVT();
554 
555   // XXX - Should this limit number of uses to check?
556   for (const SDNode *U : N->uses()) {
557     if (!hasSourceMods(U))
558       return false;
559 
560     if (!opMustUseVOP3Encoding(U, VT)) {
561       if (++NumMayIncreaseSize > CostThreshold)
562         return false;
563     }
564   }
565 
566   return true;
567 }
568 
569 MVT AMDGPUTargetLowering::getVectorIdxTy(const DataLayout &) const {
570   return MVT::i32;
571 }
572 
573 bool AMDGPUTargetLowering::isSelectSupported(SelectSupportKind SelType) const {
574   return true;
575 }
576 
577 // The backend supports 32 and 64 bit floating point immediates.
578 // FIXME: Why are we reporting vectors of FP immediates as legal?
579 bool AMDGPUTargetLowering::isFPImmLegal(const APFloat &Imm, EVT VT) const {
580   EVT ScalarVT = VT.getScalarType();
581   return (ScalarVT == MVT::f32 || ScalarVT == MVT::f64 ||
582          (ScalarVT == MVT::f16 && Subtarget->has16BitInsts()));
583 }
584 
585 // We don't want to shrink f64 / f32 constants.
586 bool AMDGPUTargetLowering::ShouldShrinkFPConstant(EVT VT) const {
587   EVT ScalarVT = VT.getScalarType();
588   return (ScalarVT != MVT::f32 && ScalarVT != MVT::f64);
589 }
590 
591 bool AMDGPUTargetLowering::shouldReduceLoadWidth(SDNode *N,
592                                                  ISD::LoadExtType,
593                                                  EVT NewVT) const {
594 
595   unsigned NewSize = NewVT.getStoreSizeInBits();
596 
597   // If we are reducing to a 32-bit load, this is always better.
598   if (NewSize == 32)
599     return true;
600 
601   EVT OldVT = N->getValueType(0);
602   unsigned OldSize = OldVT.getStoreSizeInBits();
603 
604   // Don't produce extloads from sub 32-bit types. SI doesn't have scalar
605   // extloads, so doing one requires using a buffer_load. In cases where we
606   // still couldn't use a scalar load, using the wider load shouldn't really
607   // hurt anything.
608 
609   // If the old size already had to be an extload, there's no harm in continuing
610   // to reduce the width.
611   return (OldSize < 32);
612 }
613 
614 bool AMDGPUTargetLowering::isLoadBitCastBeneficial(EVT LoadTy,
615                                                    EVT CastTy) const {
616 
617   assert(LoadTy.getSizeInBits() == CastTy.getSizeInBits());
618 
619   if (LoadTy.getScalarType() == MVT::i32)
620     return false;
621 
622   unsigned LScalarSize = LoadTy.getScalarSizeInBits();
623   unsigned CastScalarSize = CastTy.getScalarSizeInBits();
624 
625   return (LScalarSize < CastScalarSize) ||
626          (CastScalarSize >= 32);
627 }
628 
629 // SI+ has instructions for cttz / ctlz for 32-bit values. This is probably also
630 // profitable with the expansion for 64-bit since it's generally good to
631 // speculate things.
632 // FIXME: These should really have the size as a parameter.
633 bool AMDGPUTargetLowering::isCheapToSpeculateCttz() const {
634   return true;
635 }
636 
637 bool AMDGPUTargetLowering::isCheapToSpeculateCtlz() const {
638   return true;
639 }
640 
641 //===---------------------------------------------------------------------===//
642 // Target Properties
643 //===---------------------------------------------------------------------===//
644 
645 bool AMDGPUTargetLowering::isFAbsFree(EVT VT) const {
646   assert(VT.isFloatingPoint());
647   return VT == MVT::f32 || VT == MVT::f64 || (Subtarget->has16BitInsts() &&
648                                               VT == MVT::f16);
649 }
650 
651 bool AMDGPUTargetLowering::isFNegFree(EVT VT) const {
652   return isFAbsFree(VT);
653 }
654 
655 bool AMDGPUTargetLowering:: storeOfVectorConstantIsCheap(EVT MemVT,
656                                                          unsigned NumElem,
657                                                          unsigned AS) const {
658   return true;
659 }
660 
661 bool AMDGPUTargetLowering::aggressivelyPreferBuildVectorSources(EVT VecVT) const {
662   // There are few operations which truly have vector input operands. Any vector
663   // operation is going to involve operations on each component, and a
664   // build_vector will be a copy per element, so it always makes sense to use a
665   // build_vector input in place of the extracted element to avoid a copy into a
666   // super register.
667   //
668   // We should probably only do this if all users are extracts only, but this
669   // should be the common case.
670   return true;
671 }
672 
673 bool AMDGPUTargetLowering::isTruncateFree(EVT Source, EVT Dest) const {
674   // Truncate is just accessing a subregister.
675 
676   unsigned SrcSize = Source.getSizeInBits();
677   unsigned DestSize = Dest.getSizeInBits();
678 
679   return DestSize < SrcSize && DestSize % 32 == 0 ;
680 }
681 
682 bool AMDGPUTargetLowering::isTruncateFree(Type *Source, Type *Dest) const {
683   // Truncate is just accessing a subregister.
684 
685   unsigned SrcSize = Source->getScalarSizeInBits();
686   unsigned DestSize = Dest->getScalarSizeInBits();
687 
688   if (DestSize== 16 && Subtarget->has16BitInsts())
689     return SrcSize >= 32;
690 
691   return DestSize < SrcSize && DestSize % 32 == 0;
692 }
693 
694 bool AMDGPUTargetLowering::isZExtFree(Type *Src, Type *Dest) const {
695   unsigned SrcSize = Src->getScalarSizeInBits();
696   unsigned DestSize = Dest->getScalarSizeInBits();
697 
698   if (SrcSize == 16 && Subtarget->has16BitInsts())
699     return DestSize >= 32;
700 
701   return SrcSize == 32 && DestSize == 64;
702 }
703 
704 bool AMDGPUTargetLowering::isZExtFree(EVT Src, EVT Dest) const {
705   // Any register load of a 64-bit value really requires 2 32-bit moves. For all
706   // practical purposes, the extra mov 0 to load a 64-bit is free.  As used,
707   // this will enable reducing 64-bit operations the 32-bit, which is always
708   // good.
709 
710   if (Src == MVT::i16)
711     return Dest == MVT::i32 ||Dest == MVT::i64 ;
712 
713   return Src == MVT::i32 && Dest == MVT::i64;
714 }
715 
716 bool AMDGPUTargetLowering::isZExtFree(SDValue Val, EVT VT2) const {
717   return isZExtFree(Val.getValueType(), VT2);
718 }
719 
720 bool AMDGPUTargetLowering::isNarrowingProfitable(EVT SrcVT, EVT DestVT) const {
721   // There aren't really 64-bit registers, but pairs of 32-bit ones and only a
722   // limited number of native 64-bit operations. Shrinking an operation to fit
723   // in a single 32-bit register should always be helpful. As currently used,
724   // this is much less general than the name suggests, and is only used in
725   // places trying to reduce the sizes of loads. Shrinking loads to < 32-bits is
726   // not profitable, and may actually be harmful.
727   return SrcVT.getSizeInBits() > 32 && DestVT.getSizeInBits() == 32;
728 }
729 
730 //===---------------------------------------------------------------------===//
731 // TargetLowering Callbacks
732 //===---------------------------------------------------------------------===//
733 
734 CCAssignFn *AMDGPUCallLowering::CCAssignFnForCall(CallingConv::ID CC,
735                                                   bool IsVarArg) const {
736   return CC_AMDGPU;
737 }
738 
739 /// The SelectionDAGBuilder will automatically promote function arguments
740 /// with illegal types.  However, this does not work for the AMDGPU targets
741 /// since the function arguments are stored in memory as these illegal types.
742 /// In order to handle this properly we need to get the original types sizes
743 /// from the LLVM IR Function and fixup the ISD:InputArg values before
744 /// passing them to AnalyzeFormalArguments()
745 
746 /// When the SelectionDAGBuilder computes the Ins, it takes care of splitting
747 /// input values across multiple registers.  Each item in the Ins array
748 /// represents a single value that will be stored in regsters.  Ins[x].VT is
749 /// the value type of the value that will be stored in the register, so
750 /// whatever SDNode we lower the argument to needs to be this type.
751 ///
752 /// In order to correctly lower the arguments we need to know the size of each
753 /// argument.  Since Ins[x].VT gives us the size of the register that will
754 /// hold the value, we need to look at Ins[x].ArgVT to see the 'real' type
755 /// for the orignal function argument so that we can deduce the correct memory
756 /// type to use for Ins[x].  In most cases the correct memory type will be
757 /// Ins[x].ArgVT.  However, this will not always be the case.  If, for example,
758 /// we have a kernel argument of type v8i8, this argument will be split into
759 /// 8 parts and each part will be represented by its own item in the Ins array.
760 /// For each part the Ins[x].ArgVT will be the v8i8, which is the full type of
761 /// the argument before it was split.  From this, we deduce that the memory type
762 /// for each individual part is i8.  We pass the memory type as LocVT to the
763 /// calling convention analysis function and the register type (Ins[x].VT) as
764 /// the ValVT.
765 void AMDGPUTargetLowering::analyzeFormalArgumentsCompute(CCState &State,
766                              const SmallVectorImpl<ISD::InputArg> &Ins) const {
767   for (unsigned i = 0, e = Ins.size(); i != e; ++i) {
768     const ISD::InputArg &In = Ins[i];
769     EVT MemVT;
770 
771     unsigned NumRegs = getNumRegisters(State.getContext(), In.ArgVT);
772 
773     if (!Subtarget->isAmdHsaOS() &&
774         (In.ArgVT == MVT::i16 || In.ArgVT == MVT::i8 || In.ArgVT == MVT::f16)) {
775       // The ABI says the caller will extend these values to 32-bits.
776       MemVT = In.ArgVT.isInteger() ? MVT::i32 : MVT::f32;
777     } else if (NumRegs == 1) {
778       // This argument is not split, so the IR type is the memory type.
779       assert(!In.Flags.isSplit());
780       if (In.ArgVT.isExtended()) {
781         // We have an extended type, like i24, so we should just use the register type
782         MemVT = In.VT;
783       } else {
784         MemVT = In.ArgVT;
785       }
786     } else if (In.ArgVT.isVector() && In.VT.isVector() &&
787                In.ArgVT.getScalarType() == In.VT.getScalarType()) {
788       assert(In.ArgVT.getVectorNumElements() > In.VT.getVectorNumElements());
789       // We have a vector value which has been split into a vector with
790       // the same scalar type, but fewer elements.  This should handle
791       // all the floating-point vector types.
792       MemVT = In.VT;
793     } else if (In.ArgVT.isVector() &&
794                In.ArgVT.getVectorNumElements() == NumRegs) {
795       // This arg has been split so that each element is stored in a separate
796       // register.
797       MemVT = In.ArgVT.getScalarType();
798     } else if (In.ArgVT.isExtended()) {
799       // We have an extended type, like i65.
800       MemVT = In.VT;
801     } else {
802       unsigned MemoryBits = In.ArgVT.getStoreSizeInBits() / NumRegs;
803       assert(In.ArgVT.getStoreSizeInBits() % NumRegs == 0);
804       if (In.VT.isInteger()) {
805         MemVT = EVT::getIntegerVT(State.getContext(), MemoryBits);
806       } else if (In.VT.isVector()) {
807         assert(!In.VT.getScalarType().isFloatingPoint());
808         unsigned NumElements = In.VT.getVectorNumElements();
809         assert(MemoryBits % NumElements == 0);
810         // This vector type has been split into another vector type with
811         // a different elements size.
812         EVT ScalarVT = EVT::getIntegerVT(State.getContext(),
813                                          MemoryBits / NumElements);
814         MemVT = EVT::getVectorVT(State.getContext(), ScalarVT, NumElements);
815       } else {
816         llvm_unreachable("cannot deduce memory type.");
817       }
818     }
819 
820     // Convert one element vectors to scalar.
821     if (MemVT.isVector() && MemVT.getVectorNumElements() == 1)
822       MemVT = MemVT.getScalarType();
823 
824     if (MemVT.isExtended()) {
825       // This should really only happen if we have vec3 arguments
826       assert(MemVT.isVector() && MemVT.getVectorNumElements() == 3);
827       MemVT = MemVT.getPow2VectorType(State.getContext());
828     }
829 
830     assert(MemVT.isSimple());
831     allocateKernArg(i, In.VT, MemVT.getSimpleVT(), CCValAssign::Full, In.Flags,
832                     State);
833   }
834 }
835 
836 void AMDGPUTargetLowering::AnalyzeFormalArguments(CCState &State,
837                               const SmallVectorImpl<ISD::InputArg> &Ins) const {
838   State.AnalyzeFormalArguments(Ins, CC_AMDGPU);
839 }
840 
841 void AMDGPUTargetLowering::AnalyzeReturn(CCState &State,
842                            const SmallVectorImpl<ISD::OutputArg> &Outs) const {
843 
844   State.AnalyzeReturn(Outs, RetCC_SI);
845 }
846 
847 SDValue
848 AMDGPUTargetLowering::LowerReturn(SDValue Chain, CallingConv::ID CallConv,
849                                   bool isVarArg,
850                                   const SmallVectorImpl<ISD::OutputArg> &Outs,
851                                   const SmallVectorImpl<SDValue> &OutVals,
852                                   const SDLoc &DL, SelectionDAG &DAG) const {
853   return DAG.getNode(AMDGPUISD::ENDPGM, DL, MVT::Other, Chain);
854 }
855 
856 //===---------------------------------------------------------------------===//
857 // Target specific lowering
858 //===---------------------------------------------------------------------===//
859 
860 SDValue AMDGPUTargetLowering::LowerCall(CallLoweringInfo &CLI,
861                                         SmallVectorImpl<SDValue> &InVals) const {
862   SDValue Callee = CLI.Callee;
863   SelectionDAG &DAG = CLI.DAG;
864 
865   const Function &Fn = *DAG.getMachineFunction().getFunction();
866 
867   StringRef FuncName("<unknown>");
868 
869   if (const ExternalSymbolSDNode *G = dyn_cast<ExternalSymbolSDNode>(Callee))
870     FuncName = G->getSymbol();
871   else if (const GlobalAddressSDNode *G = dyn_cast<GlobalAddressSDNode>(Callee))
872     FuncName = G->getGlobal()->getName();
873 
874   DiagnosticInfoUnsupported NoCalls(
875       Fn, "unsupported call to function " + FuncName, CLI.DL.getDebugLoc());
876   DAG.getContext()->diagnose(NoCalls);
877 
878   if (!CLI.IsTailCall) {
879     for (unsigned I = 0, E = CLI.Ins.size(); I != E; ++I)
880       InVals.push_back(DAG.getUNDEF(CLI.Ins[I].VT));
881   }
882 
883   return DAG.getEntryNode();
884 }
885 
886 SDValue AMDGPUTargetLowering::LowerDYNAMIC_STACKALLOC(SDValue Op,
887                                                       SelectionDAG &DAG) const {
888   const Function &Fn = *DAG.getMachineFunction().getFunction();
889 
890   DiagnosticInfoUnsupported NoDynamicAlloca(Fn, "unsupported dynamic alloca",
891                                             SDLoc(Op).getDebugLoc());
892   DAG.getContext()->diagnose(NoDynamicAlloca);
893   auto Ops = {DAG.getConstant(0, SDLoc(), Op.getValueType()), Op.getOperand(0)};
894   return DAG.getMergeValues(Ops, SDLoc());
895 }
896 
897 SDValue AMDGPUTargetLowering::LowerOperation(SDValue Op,
898                                              SelectionDAG &DAG) const {
899   switch (Op.getOpcode()) {
900   default:
901     Op->print(errs(), &DAG);
902     llvm_unreachable("Custom lowering code for this"
903                      "instruction is not implemented yet!");
904     break;
905   case ISD::SIGN_EXTEND_INREG: return LowerSIGN_EXTEND_INREG(Op, DAG);
906   case ISD::CONCAT_VECTORS: return LowerCONCAT_VECTORS(Op, DAG);
907   case ISD::EXTRACT_SUBVECTOR: return LowerEXTRACT_SUBVECTOR(Op, DAG);
908   case ISD::INTRINSIC_WO_CHAIN: return LowerINTRINSIC_WO_CHAIN(Op, DAG);
909   case ISD::UDIVREM: return LowerUDIVREM(Op, DAG);
910   case ISD::SDIVREM: return LowerSDIVREM(Op, DAG);
911   case ISD::FREM: return LowerFREM(Op, DAG);
912   case ISD::FCEIL: return LowerFCEIL(Op, DAG);
913   case ISD::FTRUNC: return LowerFTRUNC(Op, DAG);
914   case ISD::FRINT: return LowerFRINT(Op, DAG);
915   case ISD::FNEARBYINT: return LowerFNEARBYINT(Op, DAG);
916   case ISD::FROUND: return LowerFROUND(Op, DAG);
917   case ISD::FFLOOR: return LowerFFLOOR(Op, DAG);
918   case ISD::SINT_TO_FP: return LowerSINT_TO_FP(Op, DAG);
919   case ISD::UINT_TO_FP: return LowerUINT_TO_FP(Op, DAG);
920   case ISD::FP_TO_FP16: return LowerFP_TO_FP16(Op, DAG);
921   case ISD::FP_TO_SINT: return LowerFP_TO_SINT(Op, DAG);
922   case ISD::FP_TO_UINT: return LowerFP_TO_UINT(Op, DAG);
923   case ISD::CTLZ:
924   case ISD::CTLZ_ZERO_UNDEF:
925     return LowerCTLZ(Op, DAG);
926   case ISD::DYNAMIC_STACKALLOC: return LowerDYNAMIC_STACKALLOC(Op, DAG);
927   }
928   return Op;
929 }
930 
931 void AMDGPUTargetLowering::ReplaceNodeResults(SDNode *N,
932                                               SmallVectorImpl<SDValue> &Results,
933                                               SelectionDAG &DAG) const {
934   switch (N->getOpcode()) {
935   case ISD::SIGN_EXTEND_INREG:
936     // Different parts of legalization seem to interpret which type of
937     // sign_extend_inreg is the one to check for custom lowering. The extended
938     // from type is what really matters, but some places check for custom
939     // lowering of the result type. This results in trying to use
940     // ReplaceNodeResults to sext_in_reg to an illegal type, so we'll just do
941     // nothing here and let the illegal result integer be handled normally.
942     return;
943   default:
944     return;
945   }
946 }
947 
948 static bool hasDefinedInitializer(const GlobalValue *GV) {
949   const GlobalVariable *GVar = dyn_cast<GlobalVariable>(GV);
950   if (!GVar || !GVar->hasInitializer())
951     return false;
952 
953   return !isa<UndefValue>(GVar->getInitializer());
954 }
955 
956 SDValue AMDGPUTargetLowering::LowerGlobalAddress(AMDGPUMachineFunction* MFI,
957                                                  SDValue Op,
958                                                  SelectionDAG &DAG) const {
959 
960   const DataLayout &DL = DAG.getDataLayout();
961   GlobalAddressSDNode *G = cast<GlobalAddressSDNode>(Op);
962   const GlobalValue *GV = G->getGlobal();
963 
964   switch (G->getAddressSpace()) {
965   case AMDGPUAS::LOCAL_ADDRESS: {
966     // XXX: What does the value of G->getOffset() mean?
967     assert(G->getOffset() == 0 &&
968          "Do not know what to do with an non-zero offset");
969 
970     // TODO: We could emit code to handle the initialization somewhere.
971     if (hasDefinedInitializer(GV))
972       break;
973 
974     unsigned Offset = MFI->allocateLDSGlobal(DL, *GV);
975     return DAG.getConstant(Offset, SDLoc(Op), Op.getValueType());
976   }
977   }
978 
979   const Function &Fn = *DAG.getMachineFunction().getFunction();
980   DiagnosticInfoUnsupported BadInit(
981       Fn, "unsupported initializer for address space", SDLoc(Op).getDebugLoc());
982   DAG.getContext()->diagnose(BadInit);
983   return SDValue();
984 }
985 
986 SDValue AMDGPUTargetLowering::LowerCONCAT_VECTORS(SDValue Op,
987                                                   SelectionDAG &DAG) const {
988   SmallVector<SDValue, 8> Args;
989 
990   for (const SDUse &U : Op->ops())
991     DAG.ExtractVectorElements(U.get(), Args);
992 
993   return DAG.getBuildVector(Op.getValueType(), SDLoc(Op), Args);
994 }
995 
996 SDValue AMDGPUTargetLowering::LowerEXTRACT_SUBVECTOR(SDValue Op,
997                                                      SelectionDAG &DAG) const {
998 
999   SmallVector<SDValue, 8> Args;
1000   unsigned Start = cast<ConstantSDNode>(Op.getOperand(1))->getZExtValue();
1001   EVT VT = Op.getValueType();
1002   DAG.ExtractVectorElements(Op.getOperand(0), Args, Start,
1003                             VT.getVectorNumElements());
1004 
1005   return DAG.getBuildVector(Op.getValueType(), SDLoc(Op), Args);
1006 }
1007 
1008 SDValue AMDGPUTargetLowering::LowerINTRINSIC_WO_CHAIN(SDValue Op,
1009     SelectionDAG &DAG) const {
1010   unsigned IntrinsicID = cast<ConstantSDNode>(Op.getOperand(0))->getZExtValue();
1011   SDLoc DL(Op);
1012   EVT VT = Op.getValueType();
1013 
1014   switch (IntrinsicID) {
1015     default: return Op;
1016     case AMDGPUIntrinsic::AMDGPU_clamp: // Legacy name.
1017       return DAG.getNode(AMDGPUISD::CLAMP, DL, VT,
1018                          Op.getOperand(1), Op.getOperand(2), Op.getOperand(3));
1019 
1020     case AMDGPUIntrinsic::AMDGPU_bfe_i32:
1021       return DAG.getNode(AMDGPUISD::BFE_I32, DL, VT,
1022                          Op.getOperand(1),
1023                          Op.getOperand(2),
1024                          Op.getOperand(3));
1025 
1026     case AMDGPUIntrinsic::AMDGPU_bfe_u32:
1027       return DAG.getNode(AMDGPUISD::BFE_U32, DL, VT,
1028                          Op.getOperand(1),
1029                          Op.getOperand(2),
1030                          Op.getOperand(3));
1031   }
1032 }
1033 
1034 /// \brief Generate Min/Max node
1035 SDValue AMDGPUTargetLowering::combineFMinMaxLegacy(const SDLoc &DL, EVT VT,
1036                                                    SDValue LHS, SDValue RHS,
1037                                                    SDValue True, SDValue False,
1038                                                    SDValue CC,
1039                                                    DAGCombinerInfo &DCI) const {
1040   if (!(LHS == True && RHS == False) && !(LHS == False && RHS == True))
1041     return SDValue();
1042 
1043   SelectionDAG &DAG = DCI.DAG;
1044   ISD::CondCode CCOpcode = cast<CondCodeSDNode>(CC)->get();
1045   switch (CCOpcode) {
1046   case ISD::SETOEQ:
1047   case ISD::SETONE:
1048   case ISD::SETUNE:
1049   case ISD::SETNE:
1050   case ISD::SETUEQ:
1051   case ISD::SETEQ:
1052   case ISD::SETFALSE:
1053   case ISD::SETFALSE2:
1054   case ISD::SETTRUE:
1055   case ISD::SETTRUE2:
1056   case ISD::SETUO:
1057   case ISD::SETO:
1058     break;
1059   case ISD::SETULE:
1060   case ISD::SETULT: {
1061     if (LHS == True)
1062       return DAG.getNode(AMDGPUISD::FMIN_LEGACY, DL, VT, RHS, LHS);
1063     return DAG.getNode(AMDGPUISD::FMAX_LEGACY, DL, VT, LHS, RHS);
1064   }
1065   case ISD::SETOLE:
1066   case ISD::SETOLT:
1067   case ISD::SETLE:
1068   case ISD::SETLT: {
1069     // Ordered. Assume ordered for undefined.
1070 
1071     // Only do this after legalization to avoid interfering with other combines
1072     // which might occur.
1073     if (DCI.getDAGCombineLevel() < AfterLegalizeDAG &&
1074         !DCI.isCalledByLegalizer())
1075       return SDValue();
1076 
1077     // We need to permute the operands to get the correct NaN behavior. The
1078     // selected operand is the second one based on the failing compare with NaN,
1079     // so permute it based on the compare type the hardware uses.
1080     if (LHS == True)
1081       return DAG.getNode(AMDGPUISD::FMIN_LEGACY, DL, VT, LHS, RHS);
1082     return DAG.getNode(AMDGPUISD::FMAX_LEGACY, DL, VT, RHS, LHS);
1083   }
1084   case ISD::SETUGE:
1085   case ISD::SETUGT: {
1086     if (LHS == True)
1087       return DAG.getNode(AMDGPUISD::FMAX_LEGACY, DL, VT, RHS, LHS);
1088     return DAG.getNode(AMDGPUISD::FMIN_LEGACY, DL, VT, LHS, RHS);
1089   }
1090   case ISD::SETGT:
1091   case ISD::SETGE:
1092   case ISD::SETOGE:
1093   case ISD::SETOGT: {
1094     if (DCI.getDAGCombineLevel() < AfterLegalizeDAG &&
1095         !DCI.isCalledByLegalizer())
1096       return SDValue();
1097 
1098     if (LHS == True)
1099       return DAG.getNode(AMDGPUISD::FMAX_LEGACY, DL, VT, LHS, RHS);
1100     return DAG.getNode(AMDGPUISD::FMIN_LEGACY, DL, VT, RHS, LHS);
1101   }
1102   case ISD::SETCC_INVALID:
1103     llvm_unreachable("Invalid setcc condcode!");
1104   }
1105   return SDValue();
1106 }
1107 
1108 std::pair<SDValue, SDValue>
1109 AMDGPUTargetLowering::split64BitValue(SDValue Op, SelectionDAG &DAG) const {
1110   SDLoc SL(Op);
1111 
1112   SDValue Vec = DAG.getNode(ISD::BITCAST, SL, MVT::v2i32, Op);
1113 
1114   const SDValue Zero = DAG.getConstant(0, SL, MVT::i32);
1115   const SDValue One = DAG.getConstant(1, SL, MVT::i32);
1116 
1117   SDValue Lo = DAG.getNode(ISD::EXTRACT_VECTOR_ELT, SL, MVT::i32, Vec, Zero);
1118   SDValue Hi = DAG.getNode(ISD::EXTRACT_VECTOR_ELT, SL, MVT::i32, Vec, One);
1119 
1120   return std::make_pair(Lo, Hi);
1121 }
1122 
1123 SDValue AMDGPUTargetLowering::getLoHalf64(SDValue Op, SelectionDAG &DAG) const {
1124   SDLoc SL(Op);
1125 
1126   SDValue Vec = DAG.getNode(ISD::BITCAST, SL, MVT::v2i32, Op);
1127   const SDValue Zero = DAG.getConstant(0, SL, MVT::i32);
1128   return DAG.getNode(ISD::EXTRACT_VECTOR_ELT, SL, MVT::i32, Vec, Zero);
1129 }
1130 
1131 SDValue AMDGPUTargetLowering::getHiHalf64(SDValue Op, SelectionDAG &DAG) const {
1132   SDLoc SL(Op);
1133 
1134   SDValue Vec = DAG.getNode(ISD::BITCAST, SL, MVT::v2i32, Op);
1135   const SDValue One = DAG.getConstant(1, SL, MVT::i32);
1136   return DAG.getNode(ISD::EXTRACT_VECTOR_ELT, SL, MVT::i32, Vec, One);
1137 }
1138 
1139 SDValue AMDGPUTargetLowering::SplitVectorLoad(const SDValue Op,
1140                                               SelectionDAG &DAG) const {
1141   LoadSDNode *Load = cast<LoadSDNode>(Op);
1142   EVT VT = Op.getValueType();
1143 
1144 
1145   // If this is a 2 element vector, we really want to scalarize and not create
1146   // weird 1 element vectors.
1147   if (VT.getVectorNumElements() == 2)
1148     return scalarizeVectorLoad(Load, DAG);
1149 
1150   SDValue BasePtr = Load->getBasePtr();
1151   EVT PtrVT = BasePtr.getValueType();
1152   EVT MemVT = Load->getMemoryVT();
1153   SDLoc SL(Op);
1154 
1155   const MachinePointerInfo &SrcValue = Load->getMemOperand()->getPointerInfo();
1156 
1157   EVT LoVT, HiVT;
1158   EVT LoMemVT, HiMemVT;
1159   SDValue Lo, Hi;
1160 
1161   std::tie(LoVT, HiVT) = DAG.GetSplitDestVTs(VT);
1162   std::tie(LoMemVT, HiMemVT) = DAG.GetSplitDestVTs(MemVT);
1163   std::tie(Lo, Hi) = DAG.SplitVector(Op, SL, LoVT, HiVT);
1164 
1165   unsigned Size = LoMemVT.getStoreSize();
1166   unsigned BaseAlign = Load->getAlignment();
1167   unsigned HiAlign = MinAlign(BaseAlign, Size);
1168 
1169   SDValue LoLoad = DAG.getExtLoad(Load->getExtensionType(), SL, LoVT,
1170                                   Load->getChain(), BasePtr, SrcValue, LoMemVT,
1171                                   BaseAlign, Load->getMemOperand()->getFlags());
1172   SDValue HiPtr = DAG.getNode(ISD::ADD, SL, PtrVT, BasePtr,
1173                               DAG.getConstant(Size, SL, PtrVT));
1174   SDValue HiLoad =
1175       DAG.getExtLoad(Load->getExtensionType(), SL, HiVT, Load->getChain(),
1176                      HiPtr, SrcValue.getWithOffset(LoMemVT.getStoreSize()),
1177                      HiMemVT, HiAlign, Load->getMemOperand()->getFlags());
1178 
1179   SDValue Ops[] = {
1180     DAG.getNode(ISD::CONCAT_VECTORS, SL, VT, LoLoad, HiLoad),
1181     DAG.getNode(ISD::TokenFactor, SL, MVT::Other,
1182                 LoLoad.getValue(1), HiLoad.getValue(1))
1183   };
1184 
1185   return DAG.getMergeValues(Ops, SL);
1186 }
1187 
1188 SDValue AMDGPUTargetLowering::SplitVectorStore(SDValue Op,
1189                                                SelectionDAG &DAG) const {
1190   StoreSDNode *Store = cast<StoreSDNode>(Op);
1191   SDValue Val = Store->getValue();
1192   EVT VT = Val.getValueType();
1193 
1194   // If this is a 2 element vector, we really want to scalarize and not create
1195   // weird 1 element vectors.
1196   if (VT.getVectorNumElements() == 2)
1197     return scalarizeVectorStore(Store, DAG);
1198 
1199   EVT MemVT = Store->getMemoryVT();
1200   SDValue Chain = Store->getChain();
1201   SDValue BasePtr = Store->getBasePtr();
1202   SDLoc SL(Op);
1203 
1204   EVT LoVT, HiVT;
1205   EVT LoMemVT, HiMemVT;
1206   SDValue Lo, Hi;
1207 
1208   std::tie(LoVT, HiVT) = DAG.GetSplitDestVTs(VT);
1209   std::tie(LoMemVT, HiMemVT) = DAG.GetSplitDestVTs(MemVT);
1210   std::tie(Lo, Hi) = DAG.SplitVector(Val, SL, LoVT, HiVT);
1211 
1212   EVT PtrVT = BasePtr.getValueType();
1213   SDValue HiPtr = DAG.getNode(ISD::ADD, SL, PtrVT, BasePtr,
1214                               DAG.getConstant(LoMemVT.getStoreSize(), SL,
1215                                               PtrVT));
1216 
1217   const MachinePointerInfo &SrcValue = Store->getMemOperand()->getPointerInfo();
1218   unsigned BaseAlign = Store->getAlignment();
1219   unsigned Size = LoMemVT.getStoreSize();
1220   unsigned HiAlign = MinAlign(BaseAlign, Size);
1221 
1222   SDValue LoStore =
1223       DAG.getTruncStore(Chain, SL, Lo, BasePtr, SrcValue, LoMemVT, BaseAlign,
1224                         Store->getMemOperand()->getFlags());
1225   SDValue HiStore =
1226       DAG.getTruncStore(Chain, SL, Hi, HiPtr, SrcValue.getWithOffset(Size),
1227                         HiMemVT, HiAlign, Store->getMemOperand()->getFlags());
1228 
1229   return DAG.getNode(ISD::TokenFactor, SL, MVT::Other, LoStore, HiStore);
1230 }
1231 
1232 // This is a shortcut for integer division because we have fast i32<->f32
1233 // conversions, and fast f32 reciprocal instructions. The fractional part of a
1234 // float is enough to accurately represent up to a 24-bit signed integer.
1235 SDValue AMDGPUTargetLowering::LowerDIVREM24(SDValue Op, SelectionDAG &DAG,
1236                                             bool Sign) const {
1237   SDLoc DL(Op);
1238   EVT VT = Op.getValueType();
1239   SDValue LHS = Op.getOperand(0);
1240   SDValue RHS = Op.getOperand(1);
1241   MVT IntVT = MVT::i32;
1242   MVT FltVT = MVT::f32;
1243 
1244   unsigned LHSSignBits = DAG.ComputeNumSignBits(LHS);
1245   if (LHSSignBits < 9)
1246     return SDValue();
1247 
1248   unsigned RHSSignBits = DAG.ComputeNumSignBits(RHS);
1249   if (RHSSignBits < 9)
1250     return SDValue();
1251 
1252   unsigned BitSize = VT.getSizeInBits();
1253   unsigned SignBits = std::min(LHSSignBits, RHSSignBits);
1254   unsigned DivBits = BitSize - SignBits;
1255   if (Sign)
1256     ++DivBits;
1257 
1258   ISD::NodeType ToFp = Sign ? ISD::SINT_TO_FP : ISD::UINT_TO_FP;
1259   ISD::NodeType ToInt = Sign ? ISD::FP_TO_SINT : ISD::FP_TO_UINT;
1260 
1261   SDValue jq = DAG.getConstant(1, DL, IntVT);
1262 
1263   if (Sign) {
1264     // char|short jq = ia ^ ib;
1265     jq = DAG.getNode(ISD::XOR, DL, VT, LHS, RHS);
1266 
1267     // jq = jq >> (bitsize - 2)
1268     jq = DAG.getNode(ISD::SRA, DL, VT, jq,
1269                      DAG.getConstant(BitSize - 2, DL, VT));
1270 
1271     // jq = jq | 0x1
1272     jq = DAG.getNode(ISD::OR, DL, VT, jq, DAG.getConstant(1, DL, VT));
1273   }
1274 
1275   // int ia = (int)LHS;
1276   SDValue ia = LHS;
1277 
1278   // int ib, (int)RHS;
1279   SDValue ib = RHS;
1280 
1281   // float fa = (float)ia;
1282   SDValue fa = DAG.getNode(ToFp, DL, FltVT, ia);
1283 
1284   // float fb = (float)ib;
1285   SDValue fb = DAG.getNode(ToFp, DL, FltVT, ib);
1286 
1287   SDValue fq = DAG.getNode(ISD::FMUL, DL, FltVT,
1288                            fa, DAG.getNode(AMDGPUISD::RCP, DL, FltVT, fb));
1289 
1290   // fq = trunc(fq);
1291   fq = DAG.getNode(ISD::FTRUNC, DL, FltVT, fq);
1292 
1293   // float fqneg = -fq;
1294   SDValue fqneg = DAG.getNode(ISD::FNEG, DL, FltVT, fq);
1295 
1296   // float fr = mad(fqneg, fb, fa);
1297   SDValue fr = DAG.getNode(ISD::FMAD, DL, FltVT, fqneg, fb, fa);
1298 
1299   // int iq = (int)fq;
1300   SDValue iq = DAG.getNode(ToInt, DL, IntVT, fq);
1301 
1302   // fr = fabs(fr);
1303   fr = DAG.getNode(ISD::FABS, DL, FltVT, fr);
1304 
1305   // fb = fabs(fb);
1306   fb = DAG.getNode(ISD::FABS, DL, FltVT, fb);
1307 
1308   EVT SetCCVT = getSetCCResultType(DAG.getDataLayout(), *DAG.getContext(), VT);
1309 
1310   // int cv = fr >= fb;
1311   SDValue cv = DAG.getSetCC(DL, SetCCVT, fr, fb, ISD::SETOGE);
1312 
1313   // jq = (cv ? jq : 0);
1314   jq = DAG.getNode(ISD::SELECT, DL, VT, cv, jq, DAG.getConstant(0, DL, VT));
1315 
1316   // dst = iq + jq;
1317   SDValue Div = DAG.getNode(ISD::ADD, DL, VT, iq, jq);
1318 
1319   // Rem needs compensation, it's easier to recompute it
1320   SDValue Rem = DAG.getNode(ISD::MUL, DL, VT, Div, RHS);
1321   Rem = DAG.getNode(ISD::SUB, DL, VT, LHS, Rem);
1322 
1323   // Truncate to number of bits this divide really is.
1324   if (Sign) {
1325     SDValue InRegSize
1326       = DAG.getValueType(EVT::getIntegerVT(*DAG.getContext(), DivBits));
1327     Div = DAG.getNode(ISD::SIGN_EXTEND_INREG, DL, VT, Div, InRegSize);
1328     Rem = DAG.getNode(ISD::SIGN_EXTEND_INREG, DL, VT, Rem, InRegSize);
1329   } else {
1330     SDValue TruncMask = DAG.getConstant((UINT64_C(1) << DivBits) - 1, DL, VT);
1331     Div = DAG.getNode(ISD::AND, DL, VT, Div, TruncMask);
1332     Rem = DAG.getNode(ISD::AND, DL, VT, Rem, TruncMask);
1333   }
1334 
1335   return DAG.getMergeValues({ Div, Rem }, DL);
1336 }
1337 
1338 void AMDGPUTargetLowering::LowerUDIVREM64(SDValue Op,
1339                                       SelectionDAG &DAG,
1340                                       SmallVectorImpl<SDValue> &Results) const {
1341   assert(Op.getValueType() == MVT::i64);
1342 
1343   SDLoc DL(Op);
1344   EVT VT = Op.getValueType();
1345   EVT HalfVT = VT.getHalfSizedIntegerVT(*DAG.getContext());
1346 
1347   SDValue one = DAG.getConstant(1, DL, HalfVT);
1348   SDValue zero = DAG.getConstant(0, DL, HalfVT);
1349 
1350   //HiLo split
1351   SDValue LHS = Op.getOperand(0);
1352   SDValue LHS_Lo = DAG.getNode(ISD::EXTRACT_ELEMENT, DL, HalfVT, LHS, zero);
1353   SDValue LHS_Hi = DAG.getNode(ISD::EXTRACT_ELEMENT, DL, HalfVT, LHS, one);
1354 
1355   SDValue RHS = Op.getOperand(1);
1356   SDValue RHS_Lo = DAG.getNode(ISD::EXTRACT_ELEMENT, DL, HalfVT, RHS, zero);
1357   SDValue RHS_Hi = DAG.getNode(ISD::EXTRACT_ELEMENT, DL, HalfVT, RHS, one);
1358 
1359   if (VT == MVT::i64 &&
1360     DAG.MaskedValueIsZero(RHS, APInt::getHighBitsSet(64, 32)) &&
1361     DAG.MaskedValueIsZero(LHS, APInt::getHighBitsSet(64, 32))) {
1362 
1363     SDValue Res = DAG.getNode(ISD::UDIVREM, DL, DAG.getVTList(HalfVT, HalfVT),
1364                               LHS_Lo, RHS_Lo);
1365 
1366     SDValue DIV = DAG.getBuildVector(MVT::v2i32, DL, {Res.getValue(0), zero});
1367     SDValue REM = DAG.getBuildVector(MVT::v2i32, DL, {Res.getValue(1), zero});
1368 
1369     Results.push_back(DAG.getNode(ISD::BITCAST, DL, MVT::i64, DIV));
1370     Results.push_back(DAG.getNode(ISD::BITCAST, DL, MVT::i64, REM));
1371     return;
1372   }
1373 
1374   // Get Speculative values
1375   SDValue DIV_Part = DAG.getNode(ISD::UDIV, DL, HalfVT, LHS_Hi, RHS_Lo);
1376   SDValue REM_Part = DAG.getNode(ISD::UREM, DL, HalfVT, LHS_Hi, RHS_Lo);
1377 
1378   SDValue REM_Lo = DAG.getSelectCC(DL, RHS_Hi, zero, REM_Part, LHS_Hi, ISD::SETEQ);
1379   SDValue REM = DAG.getBuildVector(MVT::v2i32, DL, {REM_Lo, zero});
1380   REM = DAG.getNode(ISD::BITCAST, DL, MVT::i64, REM);
1381 
1382   SDValue DIV_Hi = DAG.getSelectCC(DL, RHS_Hi, zero, DIV_Part, zero, ISD::SETEQ);
1383   SDValue DIV_Lo = zero;
1384 
1385   const unsigned halfBitWidth = HalfVT.getSizeInBits();
1386 
1387   for (unsigned i = 0; i < halfBitWidth; ++i) {
1388     const unsigned bitPos = halfBitWidth - i - 1;
1389     SDValue POS = DAG.getConstant(bitPos, DL, HalfVT);
1390     // Get value of high bit
1391     SDValue HBit = DAG.getNode(ISD::SRL, DL, HalfVT, LHS_Lo, POS);
1392     HBit = DAG.getNode(ISD::AND, DL, HalfVT, HBit, one);
1393     HBit = DAG.getNode(ISD::ZERO_EXTEND, DL, VT, HBit);
1394 
1395     // Shift
1396     REM = DAG.getNode(ISD::SHL, DL, VT, REM, DAG.getConstant(1, DL, VT));
1397     // Add LHS high bit
1398     REM = DAG.getNode(ISD::OR, DL, VT, REM, HBit);
1399 
1400     SDValue BIT = DAG.getConstant(1ULL << bitPos, DL, HalfVT);
1401     SDValue realBIT = DAG.getSelectCC(DL, REM, RHS, BIT, zero, ISD::SETUGE);
1402 
1403     DIV_Lo = DAG.getNode(ISD::OR, DL, HalfVT, DIV_Lo, realBIT);
1404 
1405     // Update REM
1406     SDValue REM_sub = DAG.getNode(ISD::SUB, DL, VT, REM, RHS);
1407     REM = DAG.getSelectCC(DL, REM, RHS, REM_sub, REM, ISD::SETUGE);
1408   }
1409 
1410   SDValue DIV = DAG.getBuildVector(MVT::v2i32, DL, {DIV_Lo, DIV_Hi});
1411   DIV = DAG.getNode(ISD::BITCAST, DL, MVT::i64, DIV);
1412   Results.push_back(DIV);
1413   Results.push_back(REM);
1414 }
1415 
1416 SDValue AMDGPUTargetLowering::LowerUDIVREM(SDValue Op,
1417                                            SelectionDAG &DAG) const {
1418   SDLoc DL(Op);
1419   EVT VT = Op.getValueType();
1420 
1421   if (VT == MVT::i64) {
1422     SmallVector<SDValue, 2> Results;
1423     LowerUDIVREM64(Op, DAG, Results);
1424     return DAG.getMergeValues(Results, DL);
1425   }
1426 
1427   if (VT == MVT::i32) {
1428     if (SDValue Res = LowerDIVREM24(Op, DAG, false))
1429       return Res;
1430   }
1431 
1432   SDValue Num = Op.getOperand(0);
1433   SDValue Den = Op.getOperand(1);
1434 
1435   // RCP =  URECIP(Den) = 2^32 / Den + e
1436   // e is rounding error.
1437   SDValue RCP = DAG.getNode(AMDGPUISD::URECIP, DL, VT, Den);
1438 
1439   // RCP_LO = mul(RCP, Den) */
1440   SDValue RCP_LO = DAG.getNode(ISD::MUL, DL, VT, RCP, Den);
1441 
1442   // RCP_HI = mulhu (RCP, Den) */
1443   SDValue RCP_HI = DAG.getNode(ISD::MULHU, DL, VT, RCP, Den);
1444 
1445   // NEG_RCP_LO = -RCP_LO
1446   SDValue NEG_RCP_LO = DAG.getNode(ISD::SUB, DL, VT, DAG.getConstant(0, DL, VT),
1447                                                      RCP_LO);
1448 
1449   // ABS_RCP_LO = (RCP_HI == 0 ? NEG_RCP_LO : RCP_LO)
1450   SDValue ABS_RCP_LO = DAG.getSelectCC(DL, RCP_HI, DAG.getConstant(0, DL, VT),
1451                                            NEG_RCP_LO, RCP_LO,
1452                                            ISD::SETEQ);
1453   // Calculate the rounding error from the URECIP instruction
1454   // E = mulhu(ABS_RCP_LO, RCP)
1455   SDValue E = DAG.getNode(ISD::MULHU, DL, VT, ABS_RCP_LO, RCP);
1456 
1457   // RCP_A_E = RCP + E
1458   SDValue RCP_A_E = DAG.getNode(ISD::ADD, DL, VT, RCP, E);
1459 
1460   // RCP_S_E = RCP - E
1461   SDValue RCP_S_E = DAG.getNode(ISD::SUB, DL, VT, RCP, E);
1462 
1463   // Tmp0 = (RCP_HI == 0 ? RCP_A_E : RCP_SUB_E)
1464   SDValue Tmp0 = DAG.getSelectCC(DL, RCP_HI, DAG.getConstant(0, DL, VT),
1465                                      RCP_A_E, RCP_S_E,
1466                                      ISD::SETEQ);
1467   // Quotient = mulhu(Tmp0, Num)
1468   SDValue Quotient = DAG.getNode(ISD::MULHU, DL, VT, Tmp0, Num);
1469 
1470   // Num_S_Remainder = Quotient * Den
1471   SDValue Num_S_Remainder = DAG.getNode(ISD::MUL, DL, VT, Quotient, Den);
1472 
1473   // Remainder = Num - Num_S_Remainder
1474   SDValue Remainder = DAG.getNode(ISD::SUB, DL, VT, Num, Num_S_Remainder);
1475 
1476   // Remainder_GE_Den = (Remainder >= Den ? -1 : 0)
1477   SDValue Remainder_GE_Den = DAG.getSelectCC(DL, Remainder, Den,
1478                                                  DAG.getConstant(-1, DL, VT),
1479                                                  DAG.getConstant(0, DL, VT),
1480                                                  ISD::SETUGE);
1481   // Remainder_GE_Zero = (Num >= Num_S_Remainder ? -1 : 0)
1482   SDValue Remainder_GE_Zero = DAG.getSelectCC(DL, Num,
1483                                                   Num_S_Remainder,
1484                                                   DAG.getConstant(-1, DL, VT),
1485                                                   DAG.getConstant(0, DL, VT),
1486                                                   ISD::SETUGE);
1487   // Tmp1 = Remainder_GE_Den & Remainder_GE_Zero
1488   SDValue Tmp1 = DAG.getNode(ISD::AND, DL, VT, Remainder_GE_Den,
1489                                                Remainder_GE_Zero);
1490 
1491   // Calculate Division result:
1492 
1493   // Quotient_A_One = Quotient + 1
1494   SDValue Quotient_A_One = DAG.getNode(ISD::ADD, DL, VT, Quotient,
1495                                        DAG.getConstant(1, DL, VT));
1496 
1497   // Quotient_S_One = Quotient - 1
1498   SDValue Quotient_S_One = DAG.getNode(ISD::SUB, DL, VT, Quotient,
1499                                        DAG.getConstant(1, DL, VT));
1500 
1501   // Div = (Tmp1 == 0 ? Quotient : Quotient_A_One)
1502   SDValue Div = DAG.getSelectCC(DL, Tmp1, DAG.getConstant(0, DL, VT),
1503                                      Quotient, Quotient_A_One, ISD::SETEQ);
1504 
1505   // Div = (Remainder_GE_Zero == 0 ? Quotient_S_One : Div)
1506   Div = DAG.getSelectCC(DL, Remainder_GE_Zero, DAG.getConstant(0, DL, VT),
1507                             Quotient_S_One, Div, ISD::SETEQ);
1508 
1509   // Calculate Rem result:
1510 
1511   // Remainder_S_Den = Remainder - Den
1512   SDValue Remainder_S_Den = DAG.getNode(ISD::SUB, DL, VT, Remainder, Den);
1513 
1514   // Remainder_A_Den = Remainder + Den
1515   SDValue Remainder_A_Den = DAG.getNode(ISD::ADD, DL, VT, Remainder, Den);
1516 
1517   // Rem = (Tmp1 == 0 ? Remainder : Remainder_S_Den)
1518   SDValue Rem = DAG.getSelectCC(DL, Tmp1, DAG.getConstant(0, DL, VT),
1519                                     Remainder, Remainder_S_Den, ISD::SETEQ);
1520 
1521   // Rem = (Remainder_GE_Zero == 0 ? Remainder_A_Den : Rem)
1522   Rem = DAG.getSelectCC(DL, Remainder_GE_Zero, DAG.getConstant(0, DL, VT),
1523                             Remainder_A_Den, Rem, ISD::SETEQ);
1524   SDValue Ops[2] = {
1525     Div,
1526     Rem
1527   };
1528   return DAG.getMergeValues(Ops, DL);
1529 }
1530 
1531 SDValue AMDGPUTargetLowering::LowerSDIVREM(SDValue Op,
1532                                            SelectionDAG &DAG) const {
1533   SDLoc DL(Op);
1534   EVT VT = Op.getValueType();
1535 
1536   SDValue LHS = Op.getOperand(0);
1537   SDValue RHS = Op.getOperand(1);
1538 
1539   SDValue Zero = DAG.getConstant(0, DL, VT);
1540   SDValue NegOne = DAG.getConstant(-1, DL, VT);
1541 
1542   if (VT == MVT::i32) {
1543     if (SDValue Res = LowerDIVREM24(Op, DAG, true))
1544       return Res;
1545   }
1546 
1547   if (VT == MVT::i64 &&
1548       DAG.ComputeNumSignBits(LHS) > 32 &&
1549       DAG.ComputeNumSignBits(RHS) > 32) {
1550     EVT HalfVT = VT.getHalfSizedIntegerVT(*DAG.getContext());
1551 
1552     //HiLo split
1553     SDValue LHS_Lo = DAG.getNode(ISD::EXTRACT_ELEMENT, DL, HalfVT, LHS, Zero);
1554     SDValue RHS_Lo = DAG.getNode(ISD::EXTRACT_ELEMENT, DL, HalfVT, RHS, Zero);
1555     SDValue DIVREM = DAG.getNode(ISD::SDIVREM, DL, DAG.getVTList(HalfVT, HalfVT),
1556                                  LHS_Lo, RHS_Lo);
1557     SDValue Res[2] = {
1558       DAG.getNode(ISD::SIGN_EXTEND, DL, VT, DIVREM.getValue(0)),
1559       DAG.getNode(ISD::SIGN_EXTEND, DL, VT, DIVREM.getValue(1))
1560     };
1561     return DAG.getMergeValues(Res, DL);
1562   }
1563 
1564   SDValue LHSign = DAG.getSelectCC(DL, LHS, Zero, NegOne, Zero, ISD::SETLT);
1565   SDValue RHSign = DAG.getSelectCC(DL, RHS, Zero, NegOne, Zero, ISD::SETLT);
1566   SDValue DSign = DAG.getNode(ISD::XOR, DL, VT, LHSign, RHSign);
1567   SDValue RSign = LHSign; // Remainder sign is the same as LHS
1568 
1569   LHS = DAG.getNode(ISD::ADD, DL, VT, LHS, LHSign);
1570   RHS = DAG.getNode(ISD::ADD, DL, VT, RHS, RHSign);
1571 
1572   LHS = DAG.getNode(ISD::XOR, DL, VT, LHS, LHSign);
1573   RHS = DAG.getNode(ISD::XOR, DL, VT, RHS, RHSign);
1574 
1575   SDValue Div = DAG.getNode(ISD::UDIVREM, DL, DAG.getVTList(VT, VT), LHS, RHS);
1576   SDValue Rem = Div.getValue(1);
1577 
1578   Div = DAG.getNode(ISD::XOR, DL, VT, Div, DSign);
1579   Rem = DAG.getNode(ISD::XOR, DL, VT, Rem, RSign);
1580 
1581   Div = DAG.getNode(ISD::SUB, DL, VT, Div, DSign);
1582   Rem = DAG.getNode(ISD::SUB, DL, VT, Rem, RSign);
1583 
1584   SDValue Res[2] = {
1585     Div,
1586     Rem
1587   };
1588   return DAG.getMergeValues(Res, DL);
1589 }
1590 
1591 // (frem x, y) -> (fsub x, (fmul (ftrunc (fdiv x, y)), y))
1592 SDValue AMDGPUTargetLowering::LowerFREM(SDValue Op, SelectionDAG &DAG) const {
1593   SDLoc SL(Op);
1594   EVT VT = Op.getValueType();
1595   SDValue X = Op.getOperand(0);
1596   SDValue Y = Op.getOperand(1);
1597 
1598   // TODO: Should this propagate fast-math-flags?
1599 
1600   SDValue Div = DAG.getNode(ISD::FDIV, SL, VT, X, Y);
1601   SDValue Floor = DAG.getNode(ISD::FTRUNC, SL, VT, Div);
1602   SDValue Mul = DAG.getNode(ISD::FMUL, SL, VT, Floor, Y);
1603 
1604   return DAG.getNode(ISD::FSUB, SL, VT, X, Mul);
1605 }
1606 
1607 SDValue AMDGPUTargetLowering::LowerFCEIL(SDValue Op, SelectionDAG &DAG) const {
1608   SDLoc SL(Op);
1609   SDValue Src = Op.getOperand(0);
1610 
1611   // result = trunc(src)
1612   // if (src > 0.0 && src != result)
1613   //   result += 1.0
1614 
1615   SDValue Trunc = DAG.getNode(ISD::FTRUNC, SL, MVT::f64, Src);
1616 
1617   const SDValue Zero = DAG.getConstantFP(0.0, SL, MVT::f64);
1618   const SDValue One = DAG.getConstantFP(1.0, SL, MVT::f64);
1619 
1620   EVT SetCCVT =
1621       getSetCCResultType(DAG.getDataLayout(), *DAG.getContext(), MVT::f64);
1622 
1623   SDValue Lt0 = DAG.getSetCC(SL, SetCCVT, Src, Zero, ISD::SETOGT);
1624   SDValue NeTrunc = DAG.getSetCC(SL, SetCCVT, Src, Trunc, ISD::SETONE);
1625   SDValue And = DAG.getNode(ISD::AND, SL, SetCCVT, Lt0, NeTrunc);
1626 
1627   SDValue Add = DAG.getNode(ISD::SELECT, SL, MVT::f64, And, One, Zero);
1628   // TODO: Should this propagate fast-math-flags?
1629   return DAG.getNode(ISD::FADD, SL, MVT::f64, Trunc, Add);
1630 }
1631 
1632 static SDValue extractF64Exponent(SDValue Hi, const SDLoc &SL,
1633                                   SelectionDAG &DAG) {
1634   const unsigned FractBits = 52;
1635   const unsigned ExpBits = 11;
1636 
1637   SDValue ExpPart = DAG.getNode(AMDGPUISD::BFE_U32, SL, MVT::i32,
1638                                 Hi,
1639                                 DAG.getConstant(FractBits - 32, SL, MVT::i32),
1640                                 DAG.getConstant(ExpBits, SL, MVT::i32));
1641   SDValue Exp = DAG.getNode(ISD::SUB, SL, MVT::i32, ExpPart,
1642                             DAG.getConstant(1023, SL, MVT::i32));
1643 
1644   return Exp;
1645 }
1646 
1647 SDValue AMDGPUTargetLowering::LowerFTRUNC(SDValue Op, SelectionDAG &DAG) const {
1648   SDLoc SL(Op);
1649   SDValue Src = Op.getOperand(0);
1650 
1651   assert(Op.getValueType() == MVT::f64);
1652 
1653   const SDValue Zero = DAG.getConstant(0, SL, MVT::i32);
1654   const SDValue One = DAG.getConstant(1, SL, MVT::i32);
1655 
1656   SDValue VecSrc = DAG.getNode(ISD::BITCAST, SL, MVT::v2i32, Src);
1657 
1658   // Extract the upper half, since this is where we will find the sign and
1659   // exponent.
1660   SDValue Hi = DAG.getNode(ISD::EXTRACT_VECTOR_ELT, SL, MVT::i32, VecSrc, One);
1661 
1662   SDValue Exp = extractF64Exponent(Hi, SL, DAG);
1663 
1664   const unsigned FractBits = 52;
1665 
1666   // Extract the sign bit.
1667   const SDValue SignBitMask = DAG.getConstant(UINT32_C(1) << 31, SL, MVT::i32);
1668   SDValue SignBit = DAG.getNode(ISD::AND, SL, MVT::i32, Hi, SignBitMask);
1669 
1670   // Extend back to to 64-bits.
1671   SDValue SignBit64 = DAG.getBuildVector(MVT::v2i32, SL, {Zero, SignBit});
1672   SignBit64 = DAG.getNode(ISD::BITCAST, SL, MVT::i64, SignBit64);
1673 
1674   SDValue BcInt = DAG.getNode(ISD::BITCAST, SL, MVT::i64, Src);
1675   const SDValue FractMask
1676     = DAG.getConstant((UINT64_C(1) << FractBits) - 1, SL, MVT::i64);
1677 
1678   SDValue Shr = DAG.getNode(ISD::SRA, SL, MVT::i64, FractMask, Exp);
1679   SDValue Not = DAG.getNOT(SL, Shr, MVT::i64);
1680   SDValue Tmp0 = DAG.getNode(ISD::AND, SL, MVT::i64, BcInt, Not);
1681 
1682   EVT SetCCVT =
1683       getSetCCResultType(DAG.getDataLayout(), *DAG.getContext(), MVT::i32);
1684 
1685   const SDValue FiftyOne = DAG.getConstant(FractBits - 1, SL, MVT::i32);
1686 
1687   SDValue ExpLt0 = DAG.getSetCC(SL, SetCCVT, Exp, Zero, ISD::SETLT);
1688   SDValue ExpGt51 = DAG.getSetCC(SL, SetCCVT, Exp, FiftyOne, ISD::SETGT);
1689 
1690   SDValue Tmp1 = DAG.getNode(ISD::SELECT, SL, MVT::i64, ExpLt0, SignBit64, Tmp0);
1691   SDValue Tmp2 = DAG.getNode(ISD::SELECT, SL, MVT::i64, ExpGt51, BcInt, Tmp1);
1692 
1693   return DAG.getNode(ISD::BITCAST, SL, MVT::f64, Tmp2);
1694 }
1695 
1696 SDValue AMDGPUTargetLowering::LowerFRINT(SDValue Op, SelectionDAG &DAG) const {
1697   SDLoc SL(Op);
1698   SDValue Src = Op.getOperand(0);
1699 
1700   assert(Op.getValueType() == MVT::f64);
1701 
1702   APFloat C1Val(APFloat::IEEEdouble(), "0x1.0p+52");
1703   SDValue C1 = DAG.getConstantFP(C1Val, SL, MVT::f64);
1704   SDValue CopySign = DAG.getNode(ISD::FCOPYSIGN, SL, MVT::f64, C1, Src);
1705 
1706   // TODO: Should this propagate fast-math-flags?
1707 
1708   SDValue Tmp1 = DAG.getNode(ISD::FADD, SL, MVT::f64, Src, CopySign);
1709   SDValue Tmp2 = DAG.getNode(ISD::FSUB, SL, MVT::f64, Tmp1, CopySign);
1710 
1711   SDValue Fabs = DAG.getNode(ISD::FABS, SL, MVT::f64, Src);
1712 
1713   APFloat C2Val(APFloat::IEEEdouble(), "0x1.fffffffffffffp+51");
1714   SDValue C2 = DAG.getConstantFP(C2Val, SL, MVT::f64);
1715 
1716   EVT SetCCVT =
1717       getSetCCResultType(DAG.getDataLayout(), *DAG.getContext(), MVT::f64);
1718   SDValue Cond = DAG.getSetCC(SL, SetCCVT, Fabs, C2, ISD::SETOGT);
1719 
1720   return DAG.getSelect(SL, MVT::f64, Cond, Src, Tmp2);
1721 }
1722 
1723 SDValue AMDGPUTargetLowering::LowerFNEARBYINT(SDValue Op, SelectionDAG &DAG) const {
1724   // FNEARBYINT and FRINT are the same, except in their handling of FP
1725   // exceptions. Those aren't really meaningful for us, and OpenCL only has
1726   // rint, so just treat them as equivalent.
1727   return DAG.getNode(ISD::FRINT, SDLoc(Op), Op.getValueType(), Op.getOperand(0));
1728 }
1729 
1730 // XXX - May require not supporting f32 denormals?
1731 SDValue AMDGPUTargetLowering::LowerFROUND32(SDValue Op, SelectionDAG &DAG) const {
1732   SDLoc SL(Op);
1733   SDValue X = Op.getOperand(0);
1734 
1735   SDValue T = DAG.getNode(ISD::FTRUNC, SL, MVT::f32, X);
1736 
1737   // TODO: Should this propagate fast-math-flags?
1738 
1739   SDValue Diff = DAG.getNode(ISD::FSUB, SL, MVT::f32, X, T);
1740 
1741   SDValue AbsDiff = DAG.getNode(ISD::FABS, SL, MVT::f32, Diff);
1742 
1743   const SDValue Zero = DAG.getConstantFP(0.0, SL, MVT::f32);
1744   const SDValue One = DAG.getConstantFP(1.0, SL, MVT::f32);
1745   const SDValue Half = DAG.getConstantFP(0.5, SL, MVT::f32);
1746 
1747   SDValue SignOne = DAG.getNode(ISD::FCOPYSIGN, SL, MVT::f32, One, X);
1748 
1749   EVT SetCCVT =
1750       getSetCCResultType(DAG.getDataLayout(), *DAG.getContext(), MVT::f32);
1751 
1752   SDValue Cmp = DAG.getSetCC(SL, SetCCVT, AbsDiff, Half, ISD::SETOGE);
1753 
1754   SDValue Sel = DAG.getNode(ISD::SELECT, SL, MVT::f32, Cmp, SignOne, Zero);
1755 
1756   return DAG.getNode(ISD::FADD, SL, MVT::f32, T, Sel);
1757 }
1758 
1759 SDValue AMDGPUTargetLowering::LowerFROUND64(SDValue Op, SelectionDAG &DAG) const {
1760   SDLoc SL(Op);
1761   SDValue X = Op.getOperand(0);
1762 
1763   SDValue L = DAG.getNode(ISD::BITCAST, SL, MVT::i64, X);
1764 
1765   const SDValue Zero = DAG.getConstant(0, SL, MVT::i32);
1766   const SDValue One = DAG.getConstant(1, SL, MVT::i32);
1767   const SDValue NegOne = DAG.getConstant(-1, SL, MVT::i32);
1768   const SDValue FiftyOne = DAG.getConstant(51, SL, MVT::i32);
1769   EVT SetCCVT =
1770       getSetCCResultType(DAG.getDataLayout(), *DAG.getContext(), MVT::i32);
1771 
1772   SDValue BC = DAG.getNode(ISD::BITCAST, SL, MVT::v2i32, X);
1773 
1774   SDValue Hi = DAG.getNode(ISD::EXTRACT_VECTOR_ELT, SL, MVT::i32, BC, One);
1775 
1776   SDValue Exp = extractF64Exponent(Hi, SL, DAG);
1777 
1778   const SDValue Mask = DAG.getConstant(INT64_C(0x000fffffffffffff), SL,
1779                                        MVT::i64);
1780 
1781   SDValue M = DAG.getNode(ISD::SRA, SL, MVT::i64, Mask, Exp);
1782   SDValue D = DAG.getNode(ISD::SRA, SL, MVT::i64,
1783                           DAG.getConstant(INT64_C(0x0008000000000000), SL,
1784                                           MVT::i64),
1785                           Exp);
1786 
1787   SDValue Tmp0 = DAG.getNode(ISD::AND, SL, MVT::i64, L, M);
1788   SDValue Tmp1 = DAG.getSetCC(SL, SetCCVT,
1789                               DAG.getConstant(0, SL, MVT::i64), Tmp0,
1790                               ISD::SETNE);
1791 
1792   SDValue Tmp2 = DAG.getNode(ISD::SELECT, SL, MVT::i64, Tmp1,
1793                              D, DAG.getConstant(0, SL, MVT::i64));
1794   SDValue K = DAG.getNode(ISD::ADD, SL, MVT::i64, L, Tmp2);
1795 
1796   K = DAG.getNode(ISD::AND, SL, MVT::i64, K, DAG.getNOT(SL, M, MVT::i64));
1797   K = DAG.getNode(ISD::BITCAST, SL, MVT::f64, K);
1798 
1799   SDValue ExpLt0 = DAG.getSetCC(SL, SetCCVT, Exp, Zero, ISD::SETLT);
1800   SDValue ExpGt51 = DAG.getSetCC(SL, SetCCVT, Exp, FiftyOne, ISD::SETGT);
1801   SDValue ExpEqNegOne = DAG.getSetCC(SL, SetCCVT, NegOne, Exp, ISD::SETEQ);
1802 
1803   SDValue Mag = DAG.getNode(ISD::SELECT, SL, MVT::f64,
1804                             ExpEqNegOne,
1805                             DAG.getConstantFP(1.0, SL, MVT::f64),
1806                             DAG.getConstantFP(0.0, SL, MVT::f64));
1807 
1808   SDValue S = DAG.getNode(ISD::FCOPYSIGN, SL, MVT::f64, Mag, X);
1809 
1810   K = DAG.getNode(ISD::SELECT, SL, MVT::f64, ExpLt0, S, K);
1811   K = DAG.getNode(ISD::SELECT, SL, MVT::f64, ExpGt51, X, K);
1812 
1813   return K;
1814 }
1815 
1816 SDValue AMDGPUTargetLowering::LowerFROUND(SDValue Op, SelectionDAG &DAG) const {
1817   EVT VT = Op.getValueType();
1818 
1819   if (VT == MVT::f32)
1820     return LowerFROUND32(Op, DAG);
1821 
1822   if (VT == MVT::f64)
1823     return LowerFROUND64(Op, DAG);
1824 
1825   llvm_unreachable("unhandled type");
1826 }
1827 
1828 SDValue AMDGPUTargetLowering::LowerFFLOOR(SDValue Op, SelectionDAG &DAG) const {
1829   SDLoc SL(Op);
1830   SDValue Src = Op.getOperand(0);
1831 
1832   // result = trunc(src);
1833   // if (src < 0.0 && src != result)
1834   //   result += -1.0.
1835 
1836   SDValue Trunc = DAG.getNode(ISD::FTRUNC, SL, MVT::f64, Src);
1837 
1838   const SDValue Zero = DAG.getConstantFP(0.0, SL, MVT::f64);
1839   const SDValue NegOne = DAG.getConstantFP(-1.0, SL, MVT::f64);
1840 
1841   EVT SetCCVT =
1842       getSetCCResultType(DAG.getDataLayout(), *DAG.getContext(), MVT::f64);
1843 
1844   SDValue Lt0 = DAG.getSetCC(SL, SetCCVT, Src, Zero, ISD::SETOLT);
1845   SDValue NeTrunc = DAG.getSetCC(SL, SetCCVT, Src, Trunc, ISD::SETONE);
1846   SDValue And = DAG.getNode(ISD::AND, SL, SetCCVT, Lt0, NeTrunc);
1847 
1848   SDValue Add = DAG.getNode(ISD::SELECT, SL, MVT::f64, And, NegOne, Zero);
1849   // TODO: Should this propagate fast-math-flags?
1850   return DAG.getNode(ISD::FADD, SL, MVT::f64, Trunc, Add);
1851 }
1852 
1853 SDValue AMDGPUTargetLowering::LowerCTLZ(SDValue Op, SelectionDAG &DAG) const {
1854   SDLoc SL(Op);
1855   SDValue Src = Op.getOperand(0);
1856   bool ZeroUndef = Op.getOpcode() == ISD::CTLZ_ZERO_UNDEF;
1857 
1858   if (ZeroUndef && Src.getValueType() == MVT::i32)
1859     return DAG.getNode(AMDGPUISD::FFBH_U32, SL, MVT::i32, Src);
1860 
1861   SDValue Vec = DAG.getNode(ISD::BITCAST, SL, MVT::v2i32, Src);
1862 
1863   const SDValue Zero = DAG.getConstant(0, SL, MVT::i32);
1864   const SDValue One = DAG.getConstant(1, SL, MVT::i32);
1865 
1866   SDValue Lo = DAG.getNode(ISD::EXTRACT_VECTOR_ELT, SL, MVT::i32, Vec, Zero);
1867   SDValue Hi = DAG.getNode(ISD::EXTRACT_VECTOR_ELT, SL, MVT::i32, Vec, One);
1868 
1869   EVT SetCCVT = getSetCCResultType(DAG.getDataLayout(),
1870                                    *DAG.getContext(), MVT::i32);
1871 
1872   SDValue Hi0 = DAG.getSetCC(SL, SetCCVT, Hi, Zero, ISD::SETEQ);
1873 
1874   SDValue CtlzLo = DAG.getNode(ISD::CTLZ_ZERO_UNDEF, SL, MVT::i32, Lo);
1875   SDValue CtlzHi = DAG.getNode(ISD::CTLZ_ZERO_UNDEF, SL, MVT::i32, Hi);
1876 
1877   const SDValue Bits32 = DAG.getConstant(32, SL, MVT::i32);
1878   SDValue Add = DAG.getNode(ISD::ADD, SL, MVT::i32, CtlzLo, Bits32);
1879 
1880   // ctlz(x) = hi_32(x) == 0 ? ctlz(lo_32(x)) + 32 : ctlz(hi_32(x))
1881   SDValue NewCtlz = DAG.getNode(ISD::SELECT, SL, MVT::i32, Hi0, Add, CtlzHi);
1882 
1883   if (!ZeroUndef) {
1884     // Test if the full 64-bit input is zero.
1885 
1886     // FIXME: DAG combines turn what should be an s_and_b64 into a v_or_b32,
1887     // which we probably don't want.
1888     SDValue Lo0 = DAG.getSetCC(SL, SetCCVT, Lo, Zero, ISD::SETEQ);
1889     SDValue SrcIsZero = DAG.getNode(ISD::AND, SL, SetCCVT, Lo0, Hi0);
1890 
1891     // TODO: If i64 setcc is half rate, it can result in 1 fewer instruction
1892     // with the same cycles, otherwise it is slower.
1893     // SDValue SrcIsZero = DAG.getSetCC(SL, SetCCVT, Src,
1894     // DAG.getConstant(0, SL, MVT::i64), ISD::SETEQ);
1895 
1896     const SDValue Bits32 = DAG.getConstant(64, SL, MVT::i32);
1897 
1898     // The instruction returns -1 for 0 input, but the defined intrinsic
1899     // behavior is to return the number of bits.
1900     NewCtlz = DAG.getNode(ISD::SELECT, SL, MVT::i32,
1901                           SrcIsZero, Bits32, NewCtlz);
1902   }
1903 
1904   return DAG.getNode(ISD::ZERO_EXTEND, SL, MVT::i64, NewCtlz);
1905 }
1906 
1907 SDValue AMDGPUTargetLowering::LowerINT_TO_FP32(SDValue Op, SelectionDAG &DAG,
1908                                                bool Signed) const {
1909   // Unsigned
1910   // cul2f(ulong u)
1911   //{
1912   //  uint lz = clz(u);
1913   //  uint e = (u != 0) ? 127U + 63U - lz : 0;
1914   //  u = (u << lz) & 0x7fffffffffffffffUL;
1915   //  ulong t = u & 0xffffffffffUL;
1916   //  uint v = (e << 23) | (uint)(u >> 40);
1917   //  uint r = t > 0x8000000000UL ? 1U : (t == 0x8000000000UL ? v & 1U : 0U);
1918   //  return as_float(v + r);
1919   //}
1920   // Signed
1921   // cl2f(long l)
1922   //{
1923   //  long s = l >> 63;
1924   //  float r = cul2f((l + s) ^ s);
1925   //  return s ? -r : r;
1926   //}
1927 
1928   SDLoc SL(Op);
1929   SDValue Src = Op.getOperand(0);
1930   SDValue L = Src;
1931 
1932   SDValue S;
1933   if (Signed) {
1934     const SDValue SignBit = DAG.getConstant(63, SL, MVT::i64);
1935     S = DAG.getNode(ISD::SRA, SL, MVT::i64, L, SignBit);
1936 
1937     SDValue LPlusS = DAG.getNode(ISD::ADD, SL, MVT::i64, L, S);
1938     L = DAG.getNode(ISD::XOR, SL, MVT::i64, LPlusS, S);
1939   }
1940 
1941   EVT SetCCVT = getSetCCResultType(DAG.getDataLayout(),
1942                                    *DAG.getContext(), MVT::f32);
1943 
1944 
1945   SDValue ZeroI32 = DAG.getConstant(0, SL, MVT::i32);
1946   SDValue ZeroI64 = DAG.getConstant(0, SL, MVT::i64);
1947   SDValue LZ = DAG.getNode(ISD::CTLZ_ZERO_UNDEF, SL, MVT::i64, L);
1948   LZ = DAG.getNode(ISD::TRUNCATE, SL, MVT::i32, LZ);
1949 
1950   SDValue K = DAG.getConstant(127U + 63U, SL, MVT::i32);
1951   SDValue E = DAG.getSelect(SL, MVT::i32,
1952     DAG.getSetCC(SL, SetCCVT, L, ZeroI64, ISD::SETNE),
1953     DAG.getNode(ISD::SUB, SL, MVT::i32, K, LZ),
1954     ZeroI32);
1955 
1956   SDValue U = DAG.getNode(ISD::AND, SL, MVT::i64,
1957     DAG.getNode(ISD::SHL, SL, MVT::i64, L, LZ),
1958     DAG.getConstant((-1ULL) >> 1, SL, MVT::i64));
1959 
1960   SDValue T = DAG.getNode(ISD::AND, SL, MVT::i64, U,
1961                           DAG.getConstant(0xffffffffffULL, SL, MVT::i64));
1962 
1963   SDValue UShl = DAG.getNode(ISD::SRL, SL, MVT::i64,
1964                              U, DAG.getConstant(40, SL, MVT::i64));
1965 
1966   SDValue V = DAG.getNode(ISD::OR, SL, MVT::i32,
1967     DAG.getNode(ISD::SHL, SL, MVT::i32, E, DAG.getConstant(23, SL, MVT::i32)),
1968     DAG.getNode(ISD::TRUNCATE, SL, MVT::i32,  UShl));
1969 
1970   SDValue C = DAG.getConstant(0x8000000000ULL, SL, MVT::i64);
1971   SDValue RCmp = DAG.getSetCC(SL, SetCCVT, T, C, ISD::SETUGT);
1972   SDValue TCmp = DAG.getSetCC(SL, SetCCVT, T, C, ISD::SETEQ);
1973 
1974   SDValue One = DAG.getConstant(1, SL, MVT::i32);
1975 
1976   SDValue VTrunc1 = DAG.getNode(ISD::AND, SL, MVT::i32, V, One);
1977 
1978   SDValue R = DAG.getSelect(SL, MVT::i32,
1979     RCmp,
1980     One,
1981     DAG.getSelect(SL, MVT::i32, TCmp, VTrunc1, ZeroI32));
1982   R = DAG.getNode(ISD::ADD, SL, MVT::i32, V, R);
1983   R = DAG.getNode(ISD::BITCAST, SL, MVT::f32, R);
1984 
1985   if (!Signed)
1986     return R;
1987 
1988   SDValue RNeg = DAG.getNode(ISD::FNEG, SL, MVT::f32, R);
1989   return DAG.getSelect(SL, MVT::f32, DAG.getSExtOrTrunc(S, SL, SetCCVT), RNeg, R);
1990 }
1991 
1992 SDValue AMDGPUTargetLowering::LowerINT_TO_FP64(SDValue Op, SelectionDAG &DAG,
1993                                                bool Signed) const {
1994   SDLoc SL(Op);
1995   SDValue Src = Op.getOperand(0);
1996 
1997   SDValue BC = DAG.getNode(ISD::BITCAST, SL, MVT::v2i32, Src);
1998 
1999   SDValue Lo = DAG.getNode(ISD::EXTRACT_VECTOR_ELT, SL, MVT::i32, BC,
2000                            DAG.getConstant(0, SL, MVT::i32));
2001   SDValue Hi = DAG.getNode(ISD::EXTRACT_VECTOR_ELT, SL, MVT::i32, BC,
2002                            DAG.getConstant(1, SL, MVT::i32));
2003 
2004   SDValue CvtHi = DAG.getNode(Signed ? ISD::SINT_TO_FP : ISD::UINT_TO_FP,
2005                               SL, MVT::f64, Hi);
2006 
2007   SDValue CvtLo = DAG.getNode(ISD::UINT_TO_FP, SL, MVT::f64, Lo);
2008 
2009   SDValue LdExp = DAG.getNode(AMDGPUISD::LDEXP, SL, MVT::f64, CvtHi,
2010                               DAG.getConstant(32, SL, MVT::i32));
2011   // TODO: Should this propagate fast-math-flags?
2012   return DAG.getNode(ISD::FADD, SL, MVT::f64, LdExp, CvtLo);
2013 }
2014 
2015 SDValue AMDGPUTargetLowering::LowerUINT_TO_FP(SDValue Op,
2016                                                SelectionDAG &DAG) const {
2017   assert(Op.getOperand(0).getValueType() == MVT::i64 &&
2018          "operation should be legal");
2019 
2020   // TODO: Factor out code common with LowerSINT_TO_FP.
2021 
2022   EVT DestVT = Op.getValueType();
2023   if (Subtarget->has16BitInsts() && DestVT == MVT::f16) {
2024     SDLoc DL(Op);
2025     SDValue Src = Op.getOperand(0);
2026 
2027     SDValue IntToFp32 = DAG.getNode(Op.getOpcode(), DL, MVT::f32, Src);
2028     SDValue FPRoundFlag = DAG.getIntPtrConstant(0, SDLoc(Op));
2029     SDValue FPRound =
2030         DAG.getNode(ISD::FP_ROUND, DL, MVT::f16, IntToFp32, FPRoundFlag);
2031 
2032     return FPRound;
2033   }
2034 
2035   if (DestVT == MVT::f32)
2036     return LowerINT_TO_FP32(Op, DAG, false);
2037 
2038   assert(DestVT == MVT::f64);
2039   return LowerINT_TO_FP64(Op, DAG, false);
2040 }
2041 
2042 SDValue AMDGPUTargetLowering::LowerSINT_TO_FP(SDValue Op,
2043                                               SelectionDAG &DAG) const {
2044   assert(Op.getOperand(0).getValueType() == MVT::i64 &&
2045          "operation should be legal");
2046 
2047   // TODO: Factor out code common with LowerUINT_TO_FP.
2048 
2049   EVT DestVT = Op.getValueType();
2050   if (Subtarget->has16BitInsts() && DestVT == MVT::f16) {
2051     SDLoc DL(Op);
2052     SDValue Src = Op.getOperand(0);
2053 
2054     SDValue IntToFp32 = DAG.getNode(Op.getOpcode(), DL, MVT::f32, Src);
2055     SDValue FPRoundFlag = DAG.getIntPtrConstant(0, SDLoc(Op));
2056     SDValue FPRound =
2057         DAG.getNode(ISD::FP_ROUND, DL, MVT::f16, IntToFp32, FPRoundFlag);
2058 
2059     return FPRound;
2060   }
2061 
2062   if (DestVT == MVT::f32)
2063     return LowerINT_TO_FP32(Op, DAG, true);
2064 
2065   assert(DestVT == MVT::f64);
2066   return LowerINT_TO_FP64(Op, DAG, true);
2067 }
2068 
2069 SDValue AMDGPUTargetLowering::LowerFP64_TO_INT(SDValue Op, SelectionDAG &DAG,
2070                                                bool Signed) const {
2071   SDLoc SL(Op);
2072 
2073   SDValue Src = Op.getOperand(0);
2074 
2075   SDValue Trunc = DAG.getNode(ISD::FTRUNC, SL, MVT::f64, Src);
2076 
2077   SDValue K0 = DAG.getConstantFP(BitsToDouble(UINT64_C(0x3df0000000000000)), SL,
2078                                  MVT::f64);
2079   SDValue K1 = DAG.getConstantFP(BitsToDouble(UINT64_C(0xc1f0000000000000)), SL,
2080                                  MVT::f64);
2081   // TODO: Should this propagate fast-math-flags?
2082   SDValue Mul = DAG.getNode(ISD::FMUL, SL, MVT::f64, Trunc, K0);
2083 
2084   SDValue FloorMul = DAG.getNode(ISD::FFLOOR, SL, MVT::f64, Mul);
2085 
2086 
2087   SDValue Fma = DAG.getNode(ISD::FMA, SL, MVT::f64, FloorMul, K1, Trunc);
2088 
2089   SDValue Hi = DAG.getNode(Signed ? ISD::FP_TO_SINT : ISD::FP_TO_UINT, SL,
2090                            MVT::i32, FloorMul);
2091   SDValue Lo = DAG.getNode(ISD::FP_TO_UINT, SL, MVT::i32, Fma);
2092 
2093   SDValue Result = DAG.getBuildVector(MVT::v2i32, SL, {Lo, Hi});
2094 
2095   return DAG.getNode(ISD::BITCAST, SL, MVT::i64, Result);
2096 }
2097 
2098 SDValue AMDGPUTargetLowering::LowerFP_TO_FP16(SDValue Op, SelectionDAG &DAG) const {
2099 
2100   if (getTargetMachine().Options.UnsafeFPMath) {
2101     // There is a generic expand for FP_TO_FP16 with unsafe fast math.
2102     return SDValue();
2103   }
2104 
2105   SDLoc DL(Op);
2106   SDValue N0 = Op.getOperand(0);
2107   assert (N0.getSimpleValueType() == MVT::f64);
2108 
2109   // f64 -> f16 conversion using round-to-nearest-even rounding mode.
2110   const unsigned ExpMask = 0x7ff;
2111   const unsigned ExpBiasf64 = 1023;
2112   const unsigned ExpBiasf16 = 15;
2113   SDValue Zero = DAG.getConstant(0, DL, MVT::i32);
2114   SDValue One = DAG.getConstant(1, DL, MVT::i32);
2115   SDValue U = DAG.getNode(ISD::BITCAST, DL, MVT::i64, N0);
2116   SDValue UH = DAG.getNode(ISD::SRL, DL, MVT::i64, U,
2117                            DAG.getConstant(32, DL, MVT::i64));
2118   UH = DAG.getZExtOrTrunc(UH, DL, MVT::i32);
2119   U = DAG.getZExtOrTrunc(U, DL, MVT::i32);
2120   SDValue E = DAG.getNode(ISD::SRL, DL, MVT::i32, UH,
2121                           DAG.getConstant(20, DL, MVT::i64));
2122   E = DAG.getNode(ISD::AND, DL, MVT::i32, E,
2123                   DAG.getConstant(ExpMask, DL, MVT::i32));
2124   // Subtract the fp64 exponent bias (1023) to get the real exponent and
2125   // add the f16 bias (15) to get the biased exponent for the f16 format.
2126   E = DAG.getNode(ISD::ADD, DL, MVT::i32, E,
2127                   DAG.getConstant(-ExpBiasf64 + ExpBiasf16, DL, MVT::i32));
2128 
2129   SDValue M = DAG.getNode(ISD::SRL, DL, MVT::i32, UH,
2130                           DAG.getConstant(8, DL, MVT::i32));
2131   M = DAG.getNode(ISD::AND, DL, MVT::i32, M,
2132                   DAG.getConstant(0xffe, DL, MVT::i32));
2133 
2134   SDValue MaskedSig = DAG.getNode(ISD::AND, DL, MVT::i32, UH,
2135                                   DAG.getConstant(0x1ff, DL, MVT::i32));
2136   MaskedSig = DAG.getNode(ISD::OR, DL, MVT::i32, MaskedSig, U);
2137 
2138   SDValue Lo40Set = DAG.getSelectCC(DL, MaskedSig, Zero, Zero, One, ISD::SETEQ);
2139   M = DAG.getNode(ISD::OR, DL, MVT::i32, M, Lo40Set);
2140 
2141   // (M != 0 ? 0x0200 : 0) | 0x7c00;
2142   SDValue I = DAG.getNode(ISD::OR, DL, MVT::i32,
2143       DAG.getSelectCC(DL, M, Zero, DAG.getConstant(0x0200, DL, MVT::i32),
2144                       Zero, ISD::SETNE), DAG.getConstant(0x7c00, DL, MVT::i32));
2145 
2146   // N = M | (E << 12);
2147   SDValue N = DAG.getNode(ISD::OR, DL, MVT::i32, M,
2148       DAG.getNode(ISD::SHL, DL, MVT::i32, E,
2149                   DAG.getConstant(12, DL, MVT::i32)));
2150 
2151   // B = clamp(1-E, 0, 13);
2152   SDValue OneSubExp = DAG.getNode(ISD::SUB, DL, MVT::i32,
2153                                   One, E);
2154   SDValue B = DAG.getNode(ISD::SMAX, DL, MVT::i32, OneSubExp, Zero);
2155   B = DAG.getNode(ISD::SMIN, DL, MVT::i32, B,
2156                   DAG.getConstant(13, DL, MVT::i32));
2157 
2158   SDValue SigSetHigh = DAG.getNode(ISD::OR, DL, MVT::i32, M,
2159                                    DAG.getConstant(0x1000, DL, MVT::i32));
2160 
2161   SDValue D = DAG.getNode(ISD::SRL, DL, MVT::i32, SigSetHigh, B);
2162   SDValue D0 = DAG.getNode(ISD::SHL, DL, MVT::i32, D, B);
2163   SDValue D1 = DAG.getSelectCC(DL, D0, SigSetHigh, One, Zero, ISD::SETNE);
2164   D = DAG.getNode(ISD::OR, DL, MVT::i32, D, D1);
2165 
2166   SDValue V = DAG.getSelectCC(DL, E, One, D, N, ISD::SETLT);
2167   SDValue VLow3 = DAG.getNode(ISD::AND, DL, MVT::i32, V,
2168                               DAG.getConstant(0x7, DL, MVT::i32));
2169   V = DAG.getNode(ISD::SRL, DL, MVT::i32, V,
2170                   DAG.getConstant(2, DL, MVT::i32));
2171   SDValue V0 = DAG.getSelectCC(DL, VLow3, DAG.getConstant(3, DL, MVT::i32),
2172                                One, Zero, ISD::SETEQ);
2173   SDValue V1 = DAG.getSelectCC(DL, VLow3, DAG.getConstant(5, DL, MVT::i32),
2174                                One, Zero, ISD::SETGT);
2175   V1 = DAG.getNode(ISD::OR, DL, MVT::i32, V0, V1);
2176   V = DAG.getNode(ISD::ADD, DL, MVT::i32, V, V1);
2177 
2178   V = DAG.getSelectCC(DL, E, DAG.getConstant(30, DL, MVT::i32),
2179                       DAG.getConstant(0x7c00, DL, MVT::i32), V, ISD::SETGT);
2180   V = DAG.getSelectCC(DL, E, DAG.getConstant(1039, DL, MVT::i32),
2181                       I, V, ISD::SETEQ);
2182 
2183   // Extract the sign bit.
2184   SDValue Sign = DAG.getNode(ISD::SRL, DL, MVT::i32, UH,
2185                             DAG.getConstant(16, DL, MVT::i32));
2186   Sign = DAG.getNode(ISD::AND, DL, MVT::i32, Sign,
2187                      DAG.getConstant(0x8000, DL, MVT::i32));
2188 
2189   V = DAG.getNode(ISD::OR, DL, MVT::i32, Sign, V);
2190   return DAG.getZExtOrTrunc(V, DL, Op.getValueType());
2191 }
2192 
2193 SDValue AMDGPUTargetLowering::LowerFP_TO_SINT(SDValue Op,
2194                                               SelectionDAG &DAG) const {
2195   SDValue Src = Op.getOperand(0);
2196 
2197   // TODO: Factor out code common with LowerFP_TO_UINT.
2198 
2199   EVT SrcVT = Src.getValueType();
2200   if (Subtarget->has16BitInsts() && SrcVT == MVT::f16) {
2201     SDLoc DL(Op);
2202 
2203     SDValue FPExtend = DAG.getNode(ISD::FP_EXTEND, DL, MVT::f32, Src);
2204     SDValue FpToInt32 =
2205         DAG.getNode(Op.getOpcode(), DL, MVT::i64, FPExtend);
2206 
2207     return FpToInt32;
2208   }
2209 
2210   if (Op.getValueType() == MVT::i64 && Src.getValueType() == MVT::f64)
2211     return LowerFP64_TO_INT(Op, DAG, true);
2212 
2213   return SDValue();
2214 }
2215 
2216 SDValue AMDGPUTargetLowering::LowerFP_TO_UINT(SDValue Op,
2217                                               SelectionDAG &DAG) const {
2218   SDValue Src = Op.getOperand(0);
2219 
2220   // TODO: Factor out code common with LowerFP_TO_SINT.
2221 
2222   EVT SrcVT = Src.getValueType();
2223   if (Subtarget->has16BitInsts() && SrcVT == MVT::f16) {
2224     SDLoc DL(Op);
2225 
2226     SDValue FPExtend = DAG.getNode(ISD::FP_EXTEND, DL, MVT::f32, Src);
2227     SDValue FpToInt32 =
2228         DAG.getNode(Op.getOpcode(), DL, MVT::i64, FPExtend);
2229 
2230     return FpToInt32;
2231   }
2232 
2233   if (Op.getValueType() == MVT::i64 && Src.getValueType() == MVT::f64)
2234     return LowerFP64_TO_INT(Op, DAG, false);
2235 
2236   return SDValue();
2237 }
2238 
2239 SDValue AMDGPUTargetLowering::LowerSIGN_EXTEND_INREG(SDValue Op,
2240                                                      SelectionDAG &DAG) const {
2241   EVT ExtraVT = cast<VTSDNode>(Op.getOperand(1))->getVT();
2242   MVT VT = Op.getSimpleValueType();
2243   MVT ScalarVT = VT.getScalarType();
2244 
2245   assert(VT.isVector());
2246 
2247   SDValue Src = Op.getOperand(0);
2248   SDLoc DL(Op);
2249 
2250   // TODO: Don't scalarize on Evergreen?
2251   unsigned NElts = VT.getVectorNumElements();
2252   SmallVector<SDValue, 8> Args;
2253   DAG.ExtractVectorElements(Src, Args, 0, NElts);
2254 
2255   SDValue VTOp = DAG.getValueType(ExtraVT.getScalarType());
2256   for (unsigned I = 0; I < NElts; ++I)
2257     Args[I] = DAG.getNode(ISD::SIGN_EXTEND_INREG, DL, ScalarVT, Args[I], VTOp);
2258 
2259   return DAG.getBuildVector(VT, DL, Args);
2260 }
2261 
2262 //===----------------------------------------------------------------------===//
2263 // Custom DAG optimizations
2264 //===----------------------------------------------------------------------===//
2265 
2266 static bool isU24(SDValue Op, SelectionDAG &DAG) {
2267   APInt KnownZero, KnownOne;
2268   EVT VT = Op.getValueType();
2269   DAG.computeKnownBits(Op, KnownZero, KnownOne);
2270 
2271   return (VT.getSizeInBits() - KnownZero.countLeadingOnes()) <= 24;
2272 }
2273 
2274 static bool isI24(SDValue Op, SelectionDAG &DAG) {
2275   EVT VT = Op.getValueType();
2276 
2277   // In order for this to be a signed 24-bit value, bit 23, must
2278   // be a sign bit.
2279   return VT.getSizeInBits() >= 24 && // Types less than 24-bit should be treated
2280                                      // as unsigned 24-bit values.
2281          (VT.getSizeInBits() - DAG.ComputeNumSignBits(Op)) < 24;
2282 }
2283 
2284 static bool simplifyI24(SDNode *Node24, unsigned OpIdx,
2285                         TargetLowering::DAGCombinerInfo &DCI) {
2286 
2287   SelectionDAG &DAG = DCI.DAG;
2288   SDValue Op = Node24->getOperand(OpIdx);
2289   EVT VT = Op.getValueType();
2290 
2291   APInt Demanded = APInt::getLowBitsSet(VT.getSizeInBits(), 24);
2292   APInt KnownZero, KnownOne;
2293   TargetLowering::TargetLoweringOpt TLO(DAG, true, true);
2294   if (TLO.SimplifyDemandedBits(Node24, OpIdx, Demanded, DCI))
2295     return true;
2296 
2297   return false;
2298 }
2299 
2300 template <typename IntTy>
2301 static SDValue constantFoldBFE(SelectionDAG &DAG, IntTy Src0, uint32_t Offset,
2302                                uint32_t Width, const SDLoc &DL) {
2303   if (Width + Offset < 32) {
2304     uint32_t Shl = static_cast<uint32_t>(Src0) << (32 - Offset - Width);
2305     IntTy Result = static_cast<IntTy>(Shl) >> (32 - Width);
2306     return DAG.getConstant(Result, DL, MVT::i32);
2307   }
2308 
2309   return DAG.getConstant(Src0 >> Offset, DL, MVT::i32);
2310 }
2311 
2312 static bool hasVolatileUser(SDNode *Val) {
2313   for (SDNode *U : Val->uses()) {
2314     if (MemSDNode *M = dyn_cast<MemSDNode>(U)) {
2315       if (M->isVolatile())
2316         return true;
2317     }
2318   }
2319 
2320   return false;
2321 }
2322 
2323 bool AMDGPUTargetLowering::shouldCombineMemoryType(EVT VT) const {
2324   // i32 vectors are the canonical memory type.
2325   if (VT.getScalarType() == MVT::i32 || isTypeLegal(VT))
2326     return false;
2327 
2328   if (!VT.isByteSized())
2329     return false;
2330 
2331   unsigned Size = VT.getStoreSize();
2332 
2333   if ((Size == 1 || Size == 2 || Size == 4) && !VT.isVector())
2334     return false;
2335 
2336   if (Size == 3 || (Size > 4 && (Size % 4 != 0)))
2337     return false;
2338 
2339   return true;
2340 }
2341 
2342 // Replace load of an illegal type with a store of a bitcast to a friendlier
2343 // type.
2344 SDValue AMDGPUTargetLowering::performLoadCombine(SDNode *N,
2345                                                  DAGCombinerInfo &DCI) const {
2346   if (!DCI.isBeforeLegalize())
2347     return SDValue();
2348 
2349   LoadSDNode *LN = cast<LoadSDNode>(N);
2350   if (LN->isVolatile() || !ISD::isNormalLoad(LN) || hasVolatileUser(LN))
2351     return SDValue();
2352 
2353   SDLoc SL(N);
2354   SelectionDAG &DAG = DCI.DAG;
2355   EVT VT = LN->getMemoryVT();
2356 
2357   unsigned Size = VT.getStoreSize();
2358   unsigned Align = LN->getAlignment();
2359   if (Align < Size && isTypeLegal(VT)) {
2360     bool IsFast;
2361     unsigned AS = LN->getAddressSpace();
2362 
2363     // Expand unaligned loads earlier than legalization. Due to visitation order
2364     // problems during legalization, the emitted instructions to pack and unpack
2365     // the bytes again are not eliminated in the case of an unaligned copy.
2366     if (!allowsMisalignedMemoryAccesses(VT, AS, Align, &IsFast)) {
2367       if (VT.isVector())
2368         return scalarizeVectorLoad(LN, DAG);
2369 
2370       SDValue Ops[2];
2371       std::tie(Ops[0], Ops[1]) = expandUnalignedLoad(LN, DAG);
2372       return DAG.getMergeValues(Ops, SDLoc(N));
2373     }
2374 
2375     if (!IsFast)
2376       return SDValue();
2377   }
2378 
2379   if (!shouldCombineMemoryType(VT))
2380     return SDValue();
2381 
2382   EVT NewVT = getEquivalentMemType(*DAG.getContext(), VT);
2383 
2384   SDValue NewLoad
2385     = DAG.getLoad(NewVT, SL, LN->getChain(),
2386                   LN->getBasePtr(), LN->getMemOperand());
2387 
2388   SDValue BC = DAG.getNode(ISD::BITCAST, SL, VT, NewLoad);
2389   DCI.CombineTo(N, BC, NewLoad.getValue(1));
2390   return SDValue(N, 0);
2391 }
2392 
2393 // Replace store of an illegal type with a store of a bitcast to a friendlier
2394 // type.
2395 SDValue AMDGPUTargetLowering::performStoreCombine(SDNode *N,
2396                                                   DAGCombinerInfo &DCI) const {
2397   if (!DCI.isBeforeLegalize())
2398     return SDValue();
2399 
2400   StoreSDNode *SN = cast<StoreSDNode>(N);
2401   if (SN->isVolatile() || !ISD::isNormalStore(SN))
2402     return SDValue();
2403 
2404   EVT VT = SN->getMemoryVT();
2405   unsigned Size = VT.getStoreSize();
2406 
2407   SDLoc SL(N);
2408   SelectionDAG &DAG = DCI.DAG;
2409   unsigned Align = SN->getAlignment();
2410   if (Align < Size && isTypeLegal(VT)) {
2411     bool IsFast;
2412     unsigned AS = SN->getAddressSpace();
2413 
2414     // Expand unaligned stores earlier than legalization. Due to visitation
2415     // order problems during legalization, the emitted instructions to pack and
2416     // unpack the bytes again are not eliminated in the case of an unaligned
2417     // copy.
2418     if (!allowsMisalignedMemoryAccesses(VT, AS, Align, &IsFast)) {
2419       if (VT.isVector())
2420         return scalarizeVectorStore(SN, DAG);
2421 
2422       return expandUnalignedStore(SN, DAG);
2423     }
2424 
2425     if (!IsFast)
2426       return SDValue();
2427   }
2428 
2429   if (!shouldCombineMemoryType(VT))
2430     return SDValue();
2431 
2432   EVT NewVT = getEquivalentMemType(*DAG.getContext(), VT);
2433   SDValue Val = SN->getValue();
2434 
2435   //DCI.AddToWorklist(Val.getNode());
2436 
2437   bool OtherUses = !Val.hasOneUse();
2438   SDValue CastVal = DAG.getNode(ISD::BITCAST, SL, NewVT, Val);
2439   if (OtherUses) {
2440     SDValue CastBack = DAG.getNode(ISD::BITCAST, SL, VT, CastVal);
2441     DAG.ReplaceAllUsesOfValueWith(Val, CastBack);
2442   }
2443 
2444   return DAG.getStore(SN->getChain(), SL, CastVal,
2445                       SN->getBasePtr(), SN->getMemOperand());
2446 }
2447 
2448 /// Split the 64-bit value \p LHS into two 32-bit components, and perform the
2449 /// binary operation \p Opc to it with the corresponding constant operands.
2450 SDValue AMDGPUTargetLowering::splitBinaryBitConstantOpImpl(
2451   DAGCombinerInfo &DCI, const SDLoc &SL,
2452   unsigned Opc, SDValue LHS,
2453   uint32_t ValLo, uint32_t ValHi) const {
2454   SelectionDAG &DAG = DCI.DAG;
2455   SDValue Lo, Hi;
2456   std::tie(Lo, Hi) = split64BitValue(LHS, DAG);
2457 
2458   SDValue LoRHS = DAG.getConstant(ValLo, SL, MVT::i32);
2459   SDValue HiRHS = DAG.getConstant(ValHi, SL, MVT::i32);
2460 
2461   SDValue LoAnd = DAG.getNode(Opc, SL, MVT::i32, Lo, LoRHS);
2462   SDValue HiAnd = DAG.getNode(Opc, SL, MVT::i32, Hi, HiRHS);
2463 
2464   // Re-visit the ands. It's possible we eliminated one of them and it could
2465   // simplify the vector.
2466   DCI.AddToWorklist(Lo.getNode());
2467   DCI.AddToWorklist(Hi.getNode());
2468 
2469   SDValue Vec = DAG.getBuildVector(MVT::v2i32, SL, {LoAnd, HiAnd});
2470   return DAG.getNode(ISD::BITCAST, SL, MVT::i64, Vec);
2471 }
2472 
2473 SDValue AMDGPUTargetLowering::performShlCombine(SDNode *N,
2474                                                 DAGCombinerInfo &DCI) const {
2475   if (N->getValueType(0) != MVT::i64)
2476     return SDValue();
2477 
2478   // i64 (shl x, C) -> (build_pair 0, (shl x, C -32))
2479 
2480   // On some subtargets, 64-bit shift is a quarter rate instruction. In the
2481   // common case, splitting this into a move and a 32-bit shift is faster and
2482   // the same code size.
2483   const ConstantSDNode *RHS = dyn_cast<ConstantSDNode>(N->getOperand(1));
2484   if (!RHS)
2485     return SDValue();
2486 
2487   unsigned RHSVal = RHS->getZExtValue();
2488   if (RHSVal < 32)
2489     return SDValue();
2490 
2491   SDValue LHS = N->getOperand(0);
2492 
2493   SDLoc SL(N);
2494   SelectionDAG &DAG = DCI.DAG;
2495 
2496   SDValue ShiftAmt = DAG.getConstant(RHSVal - 32, SL, MVT::i32);
2497 
2498   SDValue Lo = DAG.getNode(ISD::TRUNCATE, SL, MVT::i32, LHS);
2499   SDValue NewShift = DAG.getNode(ISD::SHL, SL, MVT::i32, Lo, ShiftAmt);
2500 
2501   const SDValue Zero = DAG.getConstant(0, SL, MVT::i32);
2502 
2503   SDValue Vec = DAG.getBuildVector(MVT::v2i32, SL, {Zero, NewShift});
2504   return DAG.getNode(ISD::BITCAST, SL, MVT::i64, Vec);
2505 }
2506 
2507 SDValue AMDGPUTargetLowering::performSraCombine(SDNode *N,
2508                                                 DAGCombinerInfo &DCI) const {
2509   if (N->getValueType(0) != MVT::i64)
2510     return SDValue();
2511 
2512   const ConstantSDNode *RHS = dyn_cast<ConstantSDNode>(N->getOperand(1));
2513   if (!RHS)
2514     return SDValue();
2515 
2516   SelectionDAG &DAG = DCI.DAG;
2517   SDLoc SL(N);
2518   unsigned RHSVal = RHS->getZExtValue();
2519 
2520   // (sra i64:x, 32) -> build_pair x, (sra hi_32(x), 31)
2521   if (RHSVal == 32) {
2522     SDValue Hi = getHiHalf64(N->getOperand(0), DAG);
2523     SDValue NewShift = DAG.getNode(ISD::SRA, SL, MVT::i32, Hi,
2524                                    DAG.getConstant(31, SL, MVT::i32));
2525 
2526     SDValue BuildVec = DAG.getBuildVector(MVT::v2i32, SL, {Hi, NewShift});
2527     return DAG.getNode(ISD::BITCAST, SL, MVT::i64, BuildVec);
2528   }
2529 
2530   // (sra i64:x, 63) -> build_pair (sra hi_32(x), 31), (sra hi_32(x), 31)
2531   if (RHSVal == 63) {
2532     SDValue Hi = getHiHalf64(N->getOperand(0), DAG);
2533     SDValue NewShift = DAG.getNode(ISD::SRA, SL, MVT::i32, Hi,
2534                                    DAG.getConstant(31, SL, MVT::i32));
2535     SDValue BuildVec = DAG.getBuildVector(MVT::v2i32, SL, {NewShift, NewShift});
2536     return DAG.getNode(ISD::BITCAST, SL, MVT::i64, BuildVec);
2537   }
2538 
2539   return SDValue();
2540 }
2541 
2542 SDValue AMDGPUTargetLowering::performSrlCombine(SDNode *N,
2543                                                 DAGCombinerInfo &DCI) const {
2544   if (N->getValueType(0) != MVT::i64)
2545     return SDValue();
2546 
2547   const ConstantSDNode *RHS = dyn_cast<ConstantSDNode>(N->getOperand(1));
2548   if (!RHS)
2549     return SDValue();
2550 
2551   unsigned ShiftAmt = RHS->getZExtValue();
2552   if (ShiftAmt < 32)
2553     return SDValue();
2554 
2555   // srl i64:x, C for C >= 32
2556   // =>
2557   //   build_pair (srl hi_32(x), C - 32), 0
2558 
2559   SelectionDAG &DAG = DCI.DAG;
2560   SDLoc SL(N);
2561 
2562   SDValue One = DAG.getConstant(1, SL, MVT::i32);
2563   SDValue Zero = DAG.getConstant(0, SL, MVT::i32);
2564 
2565   SDValue VecOp = DAG.getNode(ISD::BITCAST, SL, MVT::v2i32, N->getOperand(0));
2566   SDValue Hi = DAG.getNode(ISD::EXTRACT_VECTOR_ELT, SL, MVT::i32,
2567                            VecOp, One);
2568 
2569   SDValue NewConst = DAG.getConstant(ShiftAmt - 32, SL, MVT::i32);
2570   SDValue NewShift = DAG.getNode(ISD::SRL, SL, MVT::i32, Hi, NewConst);
2571 
2572   SDValue BuildPair = DAG.getBuildVector(MVT::v2i32, SL, {NewShift, Zero});
2573 
2574   return DAG.getNode(ISD::BITCAST, SL, MVT::i64, BuildPair);
2575 }
2576 
2577 // We need to specifically handle i64 mul here to avoid unnecessary conversion
2578 // instructions. If we only match on the legalized i64 mul expansion,
2579 // SimplifyDemandedBits will be unable to remove them because there will be
2580 // multiple uses due to the separate mul + mulh[su].
2581 static SDValue getMul24(SelectionDAG &DAG, const SDLoc &SL,
2582                         SDValue N0, SDValue N1, unsigned Size, bool Signed) {
2583   if (Size <= 32) {
2584     unsigned MulOpc = Signed ? AMDGPUISD::MUL_I24 : AMDGPUISD::MUL_U24;
2585     return DAG.getNode(MulOpc, SL, MVT::i32, N0, N1);
2586   }
2587 
2588   // Because we want to eliminate extension instructions before the
2589   // operation, we need to create a single user here (i.e. not the separate
2590   // mul_lo + mul_hi) so that SimplifyDemandedBits will deal with it.
2591 
2592   unsigned MulOpc = Signed ? AMDGPUISD::MUL_LOHI_I24 : AMDGPUISD::MUL_LOHI_U24;
2593 
2594   SDValue Mul = DAG.getNode(MulOpc, SL,
2595                             DAG.getVTList(MVT::i32, MVT::i32), N0, N1);
2596 
2597   return DAG.getNode(ISD::BUILD_PAIR, SL, MVT::i64,
2598                      Mul.getValue(0), Mul.getValue(1));
2599 }
2600 
2601 SDValue AMDGPUTargetLowering::performMulCombine(SDNode *N,
2602                                                 DAGCombinerInfo &DCI) const {
2603   EVT VT = N->getValueType(0);
2604 
2605   unsigned Size = VT.getSizeInBits();
2606   if (VT.isVector() || Size > 64)
2607     return SDValue();
2608 
2609   // There are i16 integer mul/mad.
2610   if (Subtarget->has16BitInsts() && VT.getScalarType().bitsLE(MVT::i16))
2611     return SDValue();
2612 
2613   SelectionDAG &DAG = DCI.DAG;
2614   SDLoc DL(N);
2615 
2616   SDValue N0 = N->getOperand(0);
2617   SDValue N1 = N->getOperand(1);
2618   SDValue Mul;
2619 
2620   if (Subtarget->hasMulU24() && isU24(N0, DAG) && isU24(N1, DAG)) {
2621     N0 = DAG.getZExtOrTrunc(N0, DL, MVT::i32);
2622     N1 = DAG.getZExtOrTrunc(N1, DL, MVT::i32);
2623     Mul = getMul24(DAG, DL, N0, N1, Size, false);
2624   } else if (Subtarget->hasMulI24() && isI24(N0, DAG) && isI24(N1, DAG)) {
2625     N0 = DAG.getSExtOrTrunc(N0, DL, MVT::i32);
2626     N1 = DAG.getSExtOrTrunc(N1, DL, MVT::i32);
2627     Mul = getMul24(DAG, DL, N0, N1, Size, true);
2628   } else {
2629     return SDValue();
2630   }
2631 
2632   // We need to use sext even for MUL_U24, because MUL_U24 is used
2633   // for signed multiply of 8 and 16-bit types.
2634   return DAG.getSExtOrTrunc(Mul, DL, VT);
2635 }
2636 
2637 SDValue AMDGPUTargetLowering::performMulhsCombine(SDNode *N,
2638                                                   DAGCombinerInfo &DCI) const {
2639   EVT VT = N->getValueType(0);
2640 
2641   if (!Subtarget->hasMulI24() || VT.isVector())
2642     return SDValue();
2643 
2644   SelectionDAG &DAG = DCI.DAG;
2645   SDLoc DL(N);
2646 
2647   SDValue N0 = N->getOperand(0);
2648   SDValue N1 = N->getOperand(1);
2649 
2650   if (!isI24(N0, DAG) || !isI24(N1, DAG))
2651     return SDValue();
2652 
2653   N0 = DAG.getSExtOrTrunc(N0, DL, MVT::i32);
2654   N1 = DAG.getSExtOrTrunc(N1, DL, MVT::i32);
2655 
2656   SDValue Mulhi = DAG.getNode(AMDGPUISD::MULHI_I24, DL, MVT::i32, N0, N1);
2657   DCI.AddToWorklist(Mulhi.getNode());
2658   return DAG.getSExtOrTrunc(Mulhi, DL, VT);
2659 }
2660 
2661 SDValue AMDGPUTargetLowering::performMulhuCombine(SDNode *N,
2662                                                   DAGCombinerInfo &DCI) const {
2663   EVT VT = N->getValueType(0);
2664 
2665   if (!Subtarget->hasMulU24() || VT.isVector() || VT.getSizeInBits() > 32)
2666     return SDValue();
2667 
2668   SelectionDAG &DAG = DCI.DAG;
2669   SDLoc DL(N);
2670 
2671   SDValue N0 = N->getOperand(0);
2672   SDValue N1 = N->getOperand(1);
2673 
2674   if (!isU24(N0, DAG) || !isU24(N1, DAG))
2675     return SDValue();
2676 
2677   N0 = DAG.getZExtOrTrunc(N0, DL, MVT::i32);
2678   N1 = DAG.getZExtOrTrunc(N1, DL, MVT::i32);
2679 
2680   SDValue Mulhi = DAG.getNode(AMDGPUISD::MULHI_U24, DL, MVT::i32, N0, N1);
2681   DCI.AddToWorklist(Mulhi.getNode());
2682   return DAG.getZExtOrTrunc(Mulhi, DL, VT);
2683 }
2684 
2685 SDValue AMDGPUTargetLowering::performMulLoHi24Combine(
2686   SDNode *N, DAGCombinerInfo &DCI) const {
2687   SelectionDAG &DAG = DCI.DAG;
2688 
2689   // Simplify demanded bits before splitting into multiple users.
2690   if (simplifyI24(N, 0, DCI) || simplifyI24(N, 1, DCI))
2691     return SDValue();
2692 
2693   SDValue N0 = N->getOperand(0);
2694   SDValue N1 = N->getOperand(1);
2695 
2696   bool Signed = (N->getOpcode() == AMDGPUISD::MUL_LOHI_I24);
2697 
2698   unsigned MulLoOpc = Signed ? AMDGPUISD::MUL_I24 : AMDGPUISD::MUL_U24;
2699   unsigned MulHiOpc = Signed ? AMDGPUISD::MULHI_I24 : AMDGPUISD::MULHI_U24;
2700 
2701   SDLoc SL(N);
2702 
2703   SDValue MulLo = DAG.getNode(MulLoOpc, SL, MVT::i32, N0, N1);
2704   SDValue MulHi = DAG.getNode(MulHiOpc, SL, MVT::i32, N0, N1);
2705   return DAG.getMergeValues({ MulLo, MulHi }, SL);
2706 }
2707 
2708 static bool isNegativeOne(SDValue Val) {
2709   if (ConstantSDNode *C = dyn_cast<ConstantSDNode>(Val))
2710     return C->isAllOnesValue();
2711   return false;
2712 }
2713 
2714 static bool isCtlzOpc(unsigned Opc) {
2715   return Opc == ISD::CTLZ || Opc == ISD::CTLZ_ZERO_UNDEF;
2716 }
2717 
2718 SDValue AMDGPUTargetLowering::getFFBH_U32(SelectionDAG &DAG,
2719                                           SDValue Op,
2720                                           const SDLoc &DL) const {
2721   EVT VT = Op.getValueType();
2722   EVT LegalVT = getTypeToTransformTo(*DAG.getContext(), VT);
2723   if (LegalVT != MVT::i32 && (Subtarget->has16BitInsts() &&
2724                               LegalVT != MVT::i16))
2725     return SDValue();
2726 
2727   if (VT != MVT::i32)
2728     Op = DAG.getNode(ISD::ZERO_EXTEND, DL, MVT::i32, Op);
2729 
2730   SDValue FFBH = DAG.getNode(AMDGPUISD::FFBH_U32, DL, MVT::i32, Op);
2731   if (VT != MVT::i32)
2732     FFBH = DAG.getNode(ISD::TRUNCATE, DL, VT, FFBH);
2733 
2734   return FFBH;
2735 }
2736 
2737 // The native instructions return -1 on 0 input. Optimize out a select that
2738 // produces -1 on 0.
2739 //
2740 // TODO: If zero is not undef, we could also do this if the output is compared
2741 // against the bitwidth.
2742 //
2743 // TODO: Should probably combine against FFBH_U32 instead of ctlz directly.
2744 SDValue AMDGPUTargetLowering::performCtlzCombine(const SDLoc &SL, SDValue Cond,
2745                                                  SDValue LHS, SDValue RHS,
2746                                                  DAGCombinerInfo &DCI) const {
2747   ConstantSDNode *CmpRhs = dyn_cast<ConstantSDNode>(Cond.getOperand(1));
2748   if (!CmpRhs || !CmpRhs->isNullValue())
2749     return SDValue();
2750 
2751   SelectionDAG &DAG = DCI.DAG;
2752   ISD::CondCode CCOpcode = cast<CondCodeSDNode>(Cond.getOperand(2))->get();
2753   SDValue CmpLHS = Cond.getOperand(0);
2754 
2755   // select (setcc x, 0, eq), -1, (ctlz_zero_undef x) -> ffbh_u32 x
2756   if (CCOpcode == ISD::SETEQ &&
2757       isCtlzOpc(RHS.getOpcode()) &&
2758       RHS.getOperand(0) == CmpLHS &&
2759       isNegativeOne(LHS)) {
2760     return getFFBH_U32(DAG, CmpLHS, SL);
2761   }
2762 
2763   // select (setcc x, 0, ne), (ctlz_zero_undef x), -1 -> ffbh_u32 x
2764   if (CCOpcode == ISD::SETNE &&
2765       isCtlzOpc(LHS.getOpcode()) &&
2766       LHS.getOperand(0) == CmpLHS &&
2767       isNegativeOne(RHS)) {
2768     return getFFBH_U32(DAG, CmpLHS, SL);
2769   }
2770 
2771   return SDValue();
2772 }
2773 
2774 static SDValue distributeOpThroughSelect(TargetLowering::DAGCombinerInfo &DCI,
2775                                          unsigned Op,
2776                                          const SDLoc &SL,
2777                                          SDValue Cond,
2778                                          SDValue N1,
2779                                          SDValue N2) {
2780   SelectionDAG &DAG = DCI.DAG;
2781   EVT VT = N1.getValueType();
2782 
2783   SDValue NewSelect = DAG.getNode(ISD::SELECT, SL, VT, Cond,
2784                                   N1.getOperand(0), N2.getOperand(0));
2785   DCI.AddToWorklist(NewSelect.getNode());
2786   return DAG.getNode(Op, SL, VT, NewSelect);
2787 }
2788 
2789 // Pull a free FP operation out of a select so it may fold into uses.
2790 //
2791 // select c, (fneg x), (fneg y) -> fneg (select c, x, y)
2792 // select c, (fneg x), k -> fneg (select c, x, (fneg k))
2793 //
2794 // select c, (fabs x), (fabs y) -> fabs (select c, x, y)
2795 // select c, (fabs x), +k -> fabs (select c, x, k)
2796 static SDValue foldFreeOpFromSelect(TargetLowering::DAGCombinerInfo &DCI,
2797                                     SDValue N) {
2798   SelectionDAG &DAG = DCI.DAG;
2799   SDValue Cond = N.getOperand(0);
2800   SDValue LHS = N.getOperand(1);
2801   SDValue RHS = N.getOperand(2);
2802 
2803   EVT VT = N.getValueType();
2804   if ((LHS.getOpcode() == ISD::FABS && RHS.getOpcode() == ISD::FABS) ||
2805       (LHS.getOpcode() == ISD::FNEG && RHS.getOpcode() == ISD::FNEG)) {
2806     return distributeOpThroughSelect(DCI, LHS.getOpcode(),
2807                                      SDLoc(N), Cond, LHS, RHS);
2808   }
2809 
2810   bool Inv = false;
2811   if (RHS.getOpcode() == ISD::FABS || RHS.getOpcode() == ISD::FNEG) {
2812     std::swap(LHS, RHS);
2813     Inv = true;
2814   }
2815 
2816   // TODO: Support vector constants.
2817   ConstantFPSDNode *CRHS = dyn_cast<ConstantFPSDNode>(RHS);
2818   if ((LHS.getOpcode() == ISD::FNEG || LHS.getOpcode() == ISD::FABS) && CRHS) {
2819     SDLoc SL(N);
2820     // If one side is an fneg/fabs and the other is a constant, we can push the
2821     // fneg/fabs down. If it's an fabs, the constant needs to be non-negative.
2822     SDValue NewLHS = LHS.getOperand(0);
2823     SDValue NewRHS = RHS;
2824 
2825     // Careful: if the neg can be folded up, don't try to pull it back down.
2826     bool ShouldFoldNeg = true;
2827 
2828     if (NewLHS.hasOneUse()) {
2829       unsigned Opc = NewLHS.getOpcode();
2830       if (LHS.getOpcode() == ISD::FNEG && fnegFoldsIntoOp(Opc))
2831         ShouldFoldNeg = false;
2832       if (LHS.getOpcode() == ISD::FABS && Opc == ISD::FMUL)
2833         ShouldFoldNeg = false;
2834     }
2835 
2836     if (ShouldFoldNeg) {
2837       if (LHS.getOpcode() == ISD::FNEG)
2838         NewRHS = DAG.getNode(ISD::FNEG, SL, VT, RHS);
2839       else if (CRHS->isNegative())
2840         return SDValue();
2841 
2842       if (Inv)
2843         std::swap(NewLHS, NewRHS);
2844 
2845       SDValue NewSelect = DAG.getNode(ISD::SELECT, SL, VT,
2846                                       Cond, NewLHS, NewRHS);
2847       DCI.AddToWorklist(NewSelect.getNode());
2848       return DAG.getNode(LHS.getOpcode(), SL, VT, NewSelect);
2849     }
2850   }
2851 
2852   return SDValue();
2853 }
2854 
2855 
2856 SDValue AMDGPUTargetLowering::performSelectCombine(SDNode *N,
2857                                                    DAGCombinerInfo &DCI) const {
2858   if (SDValue Folded = foldFreeOpFromSelect(DCI, SDValue(N, 0)))
2859     return Folded;
2860 
2861   SDValue Cond = N->getOperand(0);
2862   if (Cond.getOpcode() != ISD::SETCC)
2863     return SDValue();
2864 
2865   EVT VT = N->getValueType(0);
2866   SDValue LHS = Cond.getOperand(0);
2867   SDValue RHS = Cond.getOperand(1);
2868   SDValue CC = Cond.getOperand(2);
2869 
2870   SDValue True = N->getOperand(1);
2871   SDValue False = N->getOperand(2);
2872 
2873   if (Cond.hasOneUse()) { // TODO: Look for multiple select uses.
2874     SelectionDAG &DAG = DCI.DAG;
2875     if ((DAG.isConstantValueOfAnyType(True) ||
2876          DAG.isConstantValueOfAnyType(True)) &&
2877         (!DAG.isConstantValueOfAnyType(False) &&
2878          !DAG.isConstantValueOfAnyType(False))) {
2879       // Swap cmp + select pair to move constant to false input.
2880       // This will allow using VOPC cndmasks more often.
2881       // select (setcc x, y), k, x -> select (setcc y, x) x, x
2882 
2883       SDLoc SL(N);
2884       ISD::CondCode NewCC = getSetCCInverse(cast<CondCodeSDNode>(CC)->get(),
2885                                             LHS.getValueType().isInteger());
2886 
2887       SDValue NewCond = DAG.getSetCC(SL, Cond.getValueType(), LHS, RHS, NewCC);
2888       return DAG.getNode(ISD::SELECT, SL, VT, NewCond, False, True);
2889     }
2890 
2891     if (VT == MVT::f32 && Subtarget->hasFminFmaxLegacy()) {
2892       SDValue MinMax
2893         = combineFMinMaxLegacy(SDLoc(N), VT, LHS, RHS, True, False, CC, DCI);
2894       // Revisit this node so we can catch min3/max3/med3 patterns.
2895       //DCI.AddToWorklist(MinMax.getNode());
2896       return MinMax;
2897     }
2898   }
2899 
2900   // There's no reason to not do this if the condition has other uses.
2901   return performCtlzCombine(SDLoc(N), Cond, True, False, DCI);
2902 }
2903 
2904 static bool isConstantFPZero(SDValue N) {
2905   if (const ConstantFPSDNode *C = isConstOrConstSplatFP(N))
2906     return C->isZero() && !C->isNegative();
2907   return false;
2908 }
2909 
2910 static unsigned inverseMinMax(unsigned Opc) {
2911   switch (Opc) {
2912   case ISD::FMAXNUM:
2913     return ISD::FMINNUM;
2914   case ISD::FMINNUM:
2915     return ISD::FMAXNUM;
2916   case AMDGPUISD::FMAX_LEGACY:
2917     return AMDGPUISD::FMIN_LEGACY;
2918   case AMDGPUISD::FMIN_LEGACY:
2919     return  AMDGPUISD::FMAX_LEGACY;
2920   default:
2921     llvm_unreachable("invalid min/max opcode");
2922   }
2923 }
2924 
2925 SDValue AMDGPUTargetLowering::performFNegCombine(SDNode *N,
2926                                                  DAGCombinerInfo &DCI) const {
2927   SelectionDAG &DAG = DCI.DAG;
2928   SDValue N0 = N->getOperand(0);
2929   EVT VT = N->getValueType(0);
2930 
2931   unsigned Opc = N0.getOpcode();
2932 
2933   // If the input has multiple uses and we can either fold the negate down, or
2934   // the other uses cannot, give up. This both prevents unprofitable
2935   // transformations and infinite loops: we won't repeatedly try to fold around
2936   // a negate that has no 'good' form.
2937   if (N0.hasOneUse()) {
2938     // This may be able to fold into the source, but at a code size cost. Don't
2939     // fold if the fold into the user is free.
2940     if (allUsesHaveSourceMods(N, 0))
2941       return SDValue();
2942   } else {
2943     if (fnegFoldsIntoOp(Opc) &&
2944         (allUsesHaveSourceMods(N) || !allUsesHaveSourceMods(N0.getNode())))
2945       return SDValue();
2946   }
2947 
2948   SDLoc SL(N);
2949   switch (Opc) {
2950   case ISD::FADD: {
2951     if (!mayIgnoreSignedZero(N0))
2952       return SDValue();
2953 
2954     // (fneg (fadd x, y)) -> (fadd (fneg x), (fneg y))
2955     SDValue LHS = N0.getOperand(0);
2956     SDValue RHS = N0.getOperand(1);
2957 
2958     if (LHS.getOpcode() != ISD::FNEG)
2959       LHS = DAG.getNode(ISD::FNEG, SL, VT, LHS);
2960     else
2961       LHS = LHS.getOperand(0);
2962 
2963     if (RHS.getOpcode() != ISD::FNEG)
2964       RHS = DAG.getNode(ISD::FNEG, SL, VT, RHS);
2965     else
2966       RHS = RHS.getOperand(0);
2967 
2968     SDValue Res = DAG.getNode(ISD::FADD, SL, VT, LHS, RHS, N0->getFlags());
2969     if (!N0.hasOneUse())
2970       DAG.ReplaceAllUsesWith(N0, DAG.getNode(ISD::FNEG, SL, VT, Res));
2971     return Res;
2972   }
2973   case ISD::FMUL:
2974   case AMDGPUISD::FMUL_LEGACY: {
2975     // (fneg (fmul x, y)) -> (fmul x, (fneg y))
2976     // (fneg (fmul_legacy x, y)) -> (fmul_legacy x, (fneg y))
2977     SDValue LHS = N0.getOperand(0);
2978     SDValue RHS = N0.getOperand(1);
2979 
2980     if (LHS.getOpcode() == ISD::FNEG)
2981       LHS = LHS.getOperand(0);
2982     else if (RHS.getOpcode() == ISD::FNEG)
2983       RHS = RHS.getOperand(0);
2984     else
2985       RHS = DAG.getNode(ISD::FNEG, SL, VT, RHS);
2986 
2987     SDValue Res = DAG.getNode(Opc, SL, VT, LHS, RHS, N0->getFlags());
2988     if (!N0.hasOneUse())
2989       DAG.ReplaceAllUsesWith(N0, DAG.getNode(ISD::FNEG, SL, VT, Res));
2990     return Res;
2991   }
2992   case ISD::FMA:
2993   case ISD::FMAD: {
2994     if (!mayIgnoreSignedZero(N0))
2995       return SDValue();
2996 
2997     // (fneg (fma x, y, z)) -> (fma x, (fneg y), (fneg z))
2998     SDValue LHS = N0.getOperand(0);
2999     SDValue MHS = N0.getOperand(1);
3000     SDValue RHS = N0.getOperand(2);
3001 
3002     if (LHS.getOpcode() == ISD::FNEG)
3003       LHS = LHS.getOperand(0);
3004     else if (MHS.getOpcode() == ISD::FNEG)
3005       MHS = MHS.getOperand(0);
3006     else
3007       MHS = DAG.getNode(ISD::FNEG, SL, VT, MHS);
3008 
3009     if (RHS.getOpcode() != ISD::FNEG)
3010       RHS = DAG.getNode(ISD::FNEG, SL, VT, RHS);
3011     else
3012       RHS = RHS.getOperand(0);
3013 
3014     SDValue Res = DAG.getNode(Opc, SL, VT, LHS, MHS, RHS);
3015     if (!N0.hasOneUse())
3016       DAG.ReplaceAllUsesWith(N0, DAG.getNode(ISD::FNEG, SL, VT, Res));
3017     return Res;
3018   }
3019   case ISD::FMAXNUM:
3020   case ISD::FMINNUM:
3021   case AMDGPUISD::FMAX_LEGACY:
3022   case AMDGPUISD::FMIN_LEGACY: {
3023     // fneg (fmaxnum x, y) -> fminnum (fneg x), (fneg y)
3024     // fneg (fminnum x, y) -> fmaxnum (fneg x), (fneg y)
3025     // fneg (fmax_legacy x, y) -> fmin_legacy (fneg x), (fneg y)
3026     // fneg (fmin_legacy x, y) -> fmax_legacy (fneg x), (fneg y)
3027 
3028     SDValue LHS = N0.getOperand(0);
3029     SDValue RHS = N0.getOperand(1);
3030 
3031     // 0 doesn't have a negated inline immediate.
3032     // TODO: Shouldn't fold 1/2pi either, and should be generalized to other
3033     // operations.
3034     if (isConstantFPZero(RHS))
3035       return SDValue();
3036 
3037     SDValue NegLHS = DAG.getNode(ISD::FNEG, SL, VT, LHS);
3038     SDValue NegRHS = DAG.getNode(ISD::FNEG, SL, VT, RHS);
3039     unsigned Opposite = inverseMinMax(Opc);
3040 
3041     SDValue Res = DAG.getNode(Opposite, SL, VT, NegLHS, NegRHS, N0->getFlags());
3042     if (!N0.hasOneUse())
3043       DAG.ReplaceAllUsesWith(N0, DAG.getNode(ISD::FNEG, SL, VT, Res));
3044     return Res;
3045   }
3046   case ISD::FP_EXTEND:
3047   case ISD::FTRUNC:
3048   case ISD::FRINT:
3049   case ISD::FNEARBYINT: // XXX - Should fround be handled?
3050   case ISD::FSIN:
3051   case AMDGPUISD::RCP:
3052   case AMDGPUISD::RCP_LEGACY:
3053   case AMDGPUISD::SIN_HW: {
3054     SDValue CvtSrc = N0.getOperand(0);
3055     if (CvtSrc.getOpcode() == ISD::FNEG) {
3056       // (fneg (fp_extend (fneg x))) -> (fp_extend x)
3057       // (fneg (rcp (fneg x))) -> (rcp x)
3058       return DAG.getNode(Opc, SL, VT, CvtSrc.getOperand(0));
3059     }
3060 
3061     if (!N0.hasOneUse())
3062       return SDValue();
3063 
3064     // (fneg (fp_extend x)) -> (fp_extend (fneg x))
3065     // (fneg (rcp x)) -> (rcp (fneg x))
3066     SDValue Neg = DAG.getNode(ISD::FNEG, SL, CvtSrc.getValueType(), CvtSrc);
3067     return DAG.getNode(Opc, SL, VT, Neg, N0->getFlags());
3068   }
3069   case ISD::FP_ROUND: {
3070     SDValue CvtSrc = N0.getOperand(0);
3071 
3072     if (CvtSrc.getOpcode() == ISD::FNEG) {
3073       // (fneg (fp_round (fneg x))) -> (fp_round x)
3074       return DAG.getNode(ISD::FP_ROUND, SL, VT,
3075                          CvtSrc.getOperand(0), N0.getOperand(1));
3076     }
3077 
3078     if (!N0.hasOneUse())
3079       return SDValue();
3080 
3081     // (fneg (fp_round x)) -> (fp_round (fneg x))
3082     SDValue Neg = DAG.getNode(ISD::FNEG, SL, CvtSrc.getValueType(), CvtSrc);
3083     return DAG.getNode(ISD::FP_ROUND, SL, VT, Neg, N0.getOperand(1));
3084   }
3085   case ISD::FP16_TO_FP: {
3086     // v_cvt_f32_f16 supports source modifiers on pre-VI targets without legal
3087     // f16, but legalization of f16 fneg ends up pulling it out of the source.
3088     // Put the fneg back as a legal source operation that can be matched later.
3089     SDLoc SL(N);
3090 
3091     SDValue Src = N0.getOperand(0);
3092     EVT SrcVT = Src.getValueType();
3093 
3094     // fneg (fp16_to_fp x) -> fp16_to_fp (xor x, 0x8000)
3095     SDValue IntFNeg = DAG.getNode(ISD::XOR, SL, SrcVT, Src,
3096                                   DAG.getConstant(0x8000, SL, SrcVT));
3097     return DAG.getNode(ISD::FP16_TO_FP, SL, N->getValueType(0), IntFNeg);
3098   }
3099   default:
3100     return SDValue();
3101   }
3102 }
3103 
3104 SDValue AMDGPUTargetLowering::performFAbsCombine(SDNode *N,
3105                                                  DAGCombinerInfo &DCI) const {
3106   SelectionDAG &DAG = DCI.DAG;
3107   SDValue N0 = N->getOperand(0);
3108 
3109   if (!N0.hasOneUse())
3110     return SDValue();
3111 
3112   switch (N0.getOpcode()) {
3113   case ISD::FP16_TO_FP: {
3114     assert(!Subtarget->has16BitInsts() && "should only see if f16 is illegal");
3115     SDLoc SL(N);
3116     SDValue Src = N0.getOperand(0);
3117     EVT SrcVT = Src.getValueType();
3118 
3119     // fabs (fp16_to_fp x) -> fp16_to_fp (and x, 0x7fff)
3120     SDValue IntFAbs = DAG.getNode(ISD::AND, SL, SrcVT, Src,
3121                                   DAG.getConstant(0x7fff, SL, SrcVT));
3122     return DAG.getNode(ISD::FP16_TO_FP, SL, N->getValueType(0), IntFAbs);
3123   }
3124   default:
3125     return SDValue();
3126   }
3127 }
3128 
3129 SDValue AMDGPUTargetLowering::PerformDAGCombine(SDNode *N,
3130                                                 DAGCombinerInfo &DCI) const {
3131   SelectionDAG &DAG = DCI.DAG;
3132   SDLoc DL(N);
3133 
3134   switch(N->getOpcode()) {
3135   default:
3136     break;
3137   case ISD::BITCAST: {
3138     EVT DestVT = N->getValueType(0);
3139 
3140     // Push casts through vector builds. This helps avoid emitting a large
3141     // number of copies when materializing floating point vector constants.
3142     //
3143     // vNt1 bitcast (vNt0 (build_vector t0:x, t0:y)) =>
3144     //   vnt1 = build_vector (t1 (bitcast t0:x)), (t1 (bitcast t0:y))
3145     if (DestVT.isVector()) {
3146       SDValue Src = N->getOperand(0);
3147       if (Src.getOpcode() == ISD::BUILD_VECTOR) {
3148         EVT SrcVT = Src.getValueType();
3149         unsigned NElts = DestVT.getVectorNumElements();
3150 
3151         if (SrcVT.getVectorNumElements() == NElts) {
3152           EVT DestEltVT = DestVT.getVectorElementType();
3153 
3154           SmallVector<SDValue, 8> CastedElts;
3155           SDLoc SL(N);
3156           for (unsigned I = 0, E = SrcVT.getVectorNumElements(); I != E; ++I) {
3157             SDValue Elt = Src.getOperand(I);
3158             CastedElts.push_back(DAG.getNode(ISD::BITCAST, DL, DestEltVT, Elt));
3159           }
3160 
3161           return DAG.getBuildVector(DestVT, SL, CastedElts);
3162         }
3163       }
3164     }
3165 
3166     if (DestVT.getSizeInBits() != 64 && !DestVT.isVector())
3167       break;
3168 
3169     // Fold bitcasts of constants.
3170     //
3171     // v2i32 (bitcast i64:k) -> build_vector lo_32(k), hi_32(k)
3172     // TODO: Generalize and move to DAGCombiner
3173     SDValue Src = N->getOperand(0);
3174     if (ConstantSDNode *C = dyn_cast<ConstantSDNode>(Src)) {
3175       assert(Src.getValueType() == MVT::i64);
3176       SDLoc SL(N);
3177       uint64_t CVal = C->getZExtValue();
3178       return DAG.getNode(ISD::BUILD_VECTOR, SL, DestVT,
3179                          DAG.getConstant(Lo_32(CVal), SL, MVT::i32),
3180                          DAG.getConstant(Hi_32(CVal), SL, MVT::i32));
3181     }
3182 
3183     if (ConstantFPSDNode *C = dyn_cast<ConstantFPSDNode>(Src)) {
3184       const APInt &Val = C->getValueAPF().bitcastToAPInt();
3185       SDLoc SL(N);
3186       uint64_t CVal = Val.getZExtValue();
3187       SDValue Vec = DAG.getNode(ISD::BUILD_VECTOR, SL, MVT::v2i32,
3188                                 DAG.getConstant(Lo_32(CVal), SL, MVT::i32),
3189                                 DAG.getConstant(Hi_32(CVal), SL, MVT::i32));
3190 
3191       return DAG.getNode(ISD::BITCAST, SL, DestVT, Vec);
3192     }
3193 
3194     break;
3195   }
3196   case ISD::SHL: {
3197     if (DCI.getDAGCombineLevel() < AfterLegalizeDAG)
3198       break;
3199 
3200     return performShlCombine(N, DCI);
3201   }
3202   case ISD::SRL: {
3203     if (DCI.getDAGCombineLevel() < AfterLegalizeDAG)
3204       break;
3205 
3206     return performSrlCombine(N, DCI);
3207   }
3208   case ISD::SRA: {
3209     if (DCI.getDAGCombineLevel() < AfterLegalizeDAG)
3210       break;
3211 
3212     return performSraCombine(N, DCI);
3213   }
3214   case ISD::MUL:
3215     return performMulCombine(N, DCI);
3216   case ISD::MULHS:
3217     return performMulhsCombine(N, DCI);
3218   case ISD::MULHU:
3219     return performMulhuCombine(N, DCI);
3220   case AMDGPUISD::MUL_I24:
3221   case AMDGPUISD::MUL_U24:
3222   case AMDGPUISD::MULHI_I24:
3223   case AMDGPUISD::MULHI_U24: {
3224     // If the first call to simplify is successfull, then N may end up being
3225     // deleted, so we shouldn't call simplifyI24 again.
3226     simplifyI24(N, 0, DCI) || simplifyI24(N, 1, DCI);
3227     return SDValue();
3228   }
3229   case AMDGPUISD::MUL_LOHI_I24:
3230   case AMDGPUISD::MUL_LOHI_U24:
3231     return performMulLoHi24Combine(N, DCI);
3232   case ISD::SELECT:
3233     return performSelectCombine(N, DCI);
3234   case ISD::FNEG:
3235     return performFNegCombine(N, DCI);
3236   case ISD::FABS:
3237     return performFAbsCombine(N, DCI);
3238   case AMDGPUISD::BFE_I32:
3239   case AMDGPUISD::BFE_U32: {
3240     assert(!N->getValueType(0).isVector() &&
3241            "Vector handling of BFE not implemented");
3242     ConstantSDNode *Width = dyn_cast<ConstantSDNode>(N->getOperand(2));
3243     if (!Width)
3244       break;
3245 
3246     uint32_t WidthVal = Width->getZExtValue() & 0x1f;
3247     if (WidthVal == 0)
3248       return DAG.getConstant(0, DL, MVT::i32);
3249 
3250     ConstantSDNode *Offset = dyn_cast<ConstantSDNode>(N->getOperand(1));
3251     if (!Offset)
3252       break;
3253 
3254     SDValue BitsFrom = N->getOperand(0);
3255     uint32_t OffsetVal = Offset->getZExtValue() & 0x1f;
3256 
3257     bool Signed = N->getOpcode() == AMDGPUISD::BFE_I32;
3258 
3259     if (OffsetVal == 0) {
3260       // This is already sign / zero extended, so try to fold away extra BFEs.
3261       unsigned SignBits =  Signed ? (32 - WidthVal + 1) : (32 - WidthVal);
3262 
3263       unsigned OpSignBits = DAG.ComputeNumSignBits(BitsFrom);
3264       if (OpSignBits >= SignBits)
3265         return BitsFrom;
3266 
3267       EVT SmallVT = EVT::getIntegerVT(*DAG.getContext(), WidthVal);
3268       if (Signed) {
3269         // This is a sign_extend_inreg. Replace it to take advantage of existing
3270         // DAG Combines. If not eliminated, we will match back to BFE during
3271         // selection.
3272 
3273         // TODO: The sext_inreg of extended types ends, although we can could
3274         // handle them in a single BFE.
3275         return DAG.getNode(ISD::SIGN_EXTEND_INREG, DL, MVT::i32, BitsFrom,
3276                            DAG.getValueType(SmallVT));
3277       }
3278 
3279       return DAG.getZeroExtendInReg(BitsFrom, DL, SmallVT);
3280     }
3281 
3282     if (ConstantSDNode *CVal = dyn_cast<ConstantSDNode>(BitsFrom)) {
3283       if (Signed) {
3284         return constantFoldBFE<int32_t>(DAG,
3285                                         CVal->getSExtValue(),
3286                                         OffsetVal,
3287                                         WidthVal,
3288                                         DL);
3289       }
3290 
3291       return constantFoldBFE<uint32_t>(DAG,
3292                                        CVal->getZExtValue(),
3293                                        OffsetVal,
3294                                        WidthVal,
3295                                        DL);
3296     }
3297 
3298     if ((OffsetVal + WidthVal) >= 32) {
3299       SDValue ShiftVal = DAG.getConstant(OffsetVal, DL, MVT::i32);
3300       return DAG.getNode(Signed ? ISD::SRA : ISD::SRL, DL, MVT::i32,
3301                          BitsFrom, ShiftVal);
3302     }
3303 
3304     if (BitsFrom.hasOneUse()) {
3305       APInt Demanded = APInt::getBitsSet(32,
3306                                          OffsetVal,
3307                                          OffsetVal + WidthVal);
3308 
3309       APInt KnownZero, KnownOne;
3310       TargetLowering::TargetLoweringOpt TLO(DAG, !DCI.isBeforeLegalize(),
3311                                             !DCI.isBeforeLegalizeOps());
3312       const TargetLowering &TLI = DAG.getTargetLoweringInfo();
3313       if (TLO.ShrinkDemandedConstant(BitsFrom, Demanded) ||
3314           TLI.SimplifyDemandedBits(BitsFrom, Demanded,
3315                                    KnownZero, KnownOne, TLO)) {
3316         DCI.CommitTargetLoweringOpt(TLO);
3317       }
3318     }
3319 
3320     break;
3321   }
3322   case ISD::LOAD:
3323     return performLoadCombine(N, DCI);
3324   case ISD::STORE:
3325     return performStoreCombine(N, DCI);
3326   }
3327   return SDValue();
3328 }
3329 
3330 //===----------------------------------------------------------------------===//
3331 // Helper functions
3332 //===----------------------------------------------------------------------===//
3333 
3334 SDValue AMDGPUTargetLowering::CreateLiveInRegister(SelectionDAG &DAG,
3335                                                   const TargetRegisterClass *RC,
3336                                                    unsigned Reg, EVT VT) const {
3337   MachineFunction &MF = DAG.getMachineFunction();
3338   MachineRegisterInfo &MRI = MF.getRegInfo();
3339   unsigned VirtualRegister;
3340   if (!MRI.isLiveIn(Reg)) {
3341     VirtualRegister = MRI.createVirtualRegister(RC);
3342     MRI.addLiveIn(Reg, VirtualRegister);
3343   } else {
3344     VirtualRegister = MRI.getLiveInVirtReg(Reg);
3345   }
3346   return DAG.getRegister(VirtualRegister, VT);
3347 }
3348 
3349 uint32_t AMDGPUTargetLowering::getImplicitParameterOffset(
3350     const AMDGPUMachineFunction *MFI, const ImplicitParameter Param) const {
3351   unsigned Alignment = Subtarget->getAlignmentForImplicitArgPtr();
3352   uint64_t ArgOffset = alignTo(MFI->getABIArgOffset(), Alignment);
3353   switch (Param) {
3354   case GRID_DIM:
3355     return ArgOffset;
3356   case GRID_OFFSET:
3357     return ArgOffset + 4;
3358   }
3359   llvm_unreachable("unexpected implicit parameter type");
3360 }
3361 
3362 #define NODE_NAME_CASE(node) case AMDGPUISD::node: return #node;
3363 
3364 const char* AMDGPUTargetLowering::getTargetNodeName(unsigned Opcode) const {
3365   switch ((AMDGPUISD::NodeType)Opcode) {
3366   case AMDGPUISD::FIRST_NUMBER: break;
3367   // AMDIL DAG nodes
3368   NODE_NAME_CASE(CALL);
3369   NODE_NAME_CASE(UMUL);
3370   NODE_NAME_CASE(BRANCH_COND);
3371 
3372   // AMDGPU DAG nodes
3373   NODE_NAME_CASE(ENDPGM)
3374   NODE_NAME_CASE(RETURN)
3375   NODE_NAME_CASE(DWORDADDR)
3376   NODE_NAME_CASE(FRACT)
3377   NODE_NAME_CASE(SETCC)
3378   NODE_NAME_CASE(SETREG)
3379   NODE_NAME_CASE(FMA_W_CHAIN)
3380   NODE_NAME_CASE(FMUL_W_CHAIN)
3381   NODE_NAME_CASE(CLAMP)
3382   NODE_NAME_CASE(COS_HW)
3383   NODE_NAME_CASE(SIN_HW)
3384   NODE_NAME_CASE(FMAX_LEGACY)
3385   NODE_NAME_CASE(FMIN_LEGACY)
3386   NODE_NAME_CASE(FMAX3)
3387   NODE_NAME_CASE(SMAX3)
3388   NODE_NAME_CASE(UMAX3)
3389   NODE_NAME_CASE(FMIN3)
3390   NODE_NAME_CASE(SMIN3)
3391   NODE_NAME_CASE(UMIN3)
3392   NODE_NAME_CASE(FMED3)
3393   NODE_NAME_CASE(SMED3)
3394   NODE_NAME_CASE(UMED3)
3395   NODE_NAME_CASE(URECIP)
3396   NODE_NAME_CASE(DIV_SCALE)
3397   NODE_NAME_CASE(DIV_FMAS)
3398   NODE_NAME_CASE(DIV_FIXUP)
3399   NODE_NAME_CASE(TRIG_PREOP)
3400   NODE_NAME_CASE(RCP)
3401   NODE_NAME_CASE(RSQ)
3402   NODE_NAME_CASE(RCP_LEGACY)
3403   NODE_NAME_CASE(RSQ_LEGACY)
3404   NODE_NAME_CASE(FMUL_LEGACY)
3405   NODE_NAME_CASE(RSQ_CLAMP)
3406   NODE_NAME_CASE(LDEXP)
3407   NODE_NAME_CASE(FP_CLASS)
3408   NODE_NAME_CASE(DOT4)
3409   NODE_NAME_CASE(CARRY)
3410   NODE_NAME_CASE(BORROW)
3411   NODE_NAME_CASE(BFE_U32)
3412   NODE_NAME_CASE(BFE_I32)
3413   NODE_NAME_CASE(BFI)
3414   NODE_NAME_CASE(BFM)
3415   NODE_NAME_CASE(FFBH_U32)
3416   NODE_NAME_CASE(FFBH_I32)
3417   NODE_NAME_CASE(MUL_U24)
3418   NODE_NAME_CASE(MUL_I24)
3419   NODE_NAME_CASE(MULHI_U24)
3420   NODE_NAME_CASE(MULHI_I24)
3421   NODE_NAME_CASE(MUL_LOHI_U24)
3422   NODE_NAME_CASE(MUL_LOHI_I24)
3423   NODE_NAME_CASE(MAD_U24)
3424   NODE_NAME_CASE(MAD_I24)
3425   NODE_NAME_CASE(TEXTURE_FETCH)
3426   NODE_NAME_CASE(EXPORT)
3427   NODE_NAME_CASE(EXPORT_DONE)
3428   NODE_NAME_CASE(R600_EXPORT)
3429   NODE_NAME_CASE(CONST_ADDRESS)
3430   NODE_NAME_CASE(REGISTER_LOAD)
3431   NODE_NAME_CASE(REGISTER_STORE)
3432   NODE_NAME_CASE(LOAD_INPUT)
3433   NODE_NAME_CASE(SAMPLE)
3434   NODE_NAME_CASE(SAMPLEB)
3435   NODE_NAME_CASE(SAMPLED)
3436   NODE_NAME_CASE(SAMPLEL)
3437   NODE_NAME_CASE(CVT_F32_UBYTE0)
3438   NODE_NAME_CASE(CVT_F32_UBYTE1)
3439   NODE_NAME_CASE(CVT_F32_UBYTE2)
3440   NODE_NAME_CASE(CVT_F32_UBYTE3)
3441   NODE_NAME_CASE(BUILD_VERTICAL_VECTOR)
3442   NODE_NAME_CASE(CONST_DATA_PTR)
3443   NODE_NAME_CASE(PC_ADD_REL_OFFSET)
3444   NODE_NAME_CASE(KILL)
3445   NODE_NAME_CASE(DUMMY_CHAIN)
3446   case AMDGPUISD::FIRST_MEM_OPCODE_NUMBER: break;
3447   NODE_NAME_CASE(SENDMSG)
3448   NODE_NAME_CASE(SENDMSGHALT)
3449   NODE_NAME_CASE(INTERP_MOV)
3450   NODE_NAME_CASE(INTERP_P1)
3451   NODE_NAME_CASE(INTERP_P2)
3452   NODE_NAME_CASE(STORE_MSKOR)
3453   NODE_NAME_CASE(LOAD_CONSTANT)
3454   NODE_NAME_CASE(TBUFFER_STORE_FORMAT)
3455   NODE_NAME_CASE(ATOMIC_CMP_SWAP)
3456   NODE_NAME_CASE(ATOMIC_INC)
3457   NODE_NAME_CASE(ATOMIC_DEC)
3458   NODE_NAME_CASE(BUFFER_LOAD)
3459   NODE_NAME_CASE(BUFFER_LOAD_FORMAT)
3460   case AMDGPUISD::LAST_AMDGPU_ISD_NUMBER: break;
3461   }
3462   return nullptr;
3463 }
3464 
3465 SDValue AMDGPUTargetLowering::getSqrtEstimate(SDValue Operand,
3466                                               SelectionDAG &DAG, int Enabled,
3467                                               int &RefinementSteps,
3468                                               bool &UseOneConstNR,
3469                                               bool Reciprocal) const {
3470   EVT VT = Operand.getValueType();
3471 
3472   if (VT == MVT::f32) {
3473     RefinementSteps = 0;
3474     return DAG.getNode(AMDGPUISD::RSQ, SDLoc(Operand), VT, Operand);
3475   }
3476 
3477   // TODO: There is also f64 rsq instruction, but the documentation is less
3478   // clear on its precision.
3479 
3480   return SDValue();
3481 }
3482 
3483 SDValue AMDGPUTargetLowering::getRecipEstimate(SDValue Operand,
3484                                                SelectionDAG &DAG, int Enabled,
3485                                                int &RefinementSteps) const {
3486   EVT VT = Operand.getValueType();
3487 
3488   if (VT == MVT::f32) {
3489     // Reciprocal, < 1 ulp error.
3490     //
3491     // This reciprocal approximation converges to < 0.5 ulp error with one
3492     // newton rhapson performed with two fused multiple adds (FMAs).
3493 
3494     RefinementSteps = 0;
3495     return DAG.getNode(AMDGPUISD::RCP, SDLoc(Operand), VT, Operand);
3496   }
3497 
3498   // TODO: There is also f64 rcp instruction, but the documentation is less
3499   // clear on its precision.
3500 
3501   return SDValue();
3502 }
3503 
3504 void AMDGPUTargetLowering::computeKnownBitsForTargetNode(
3505   const SDValue Op,
3506   APInt &KnownZero,
3507   APInt &KnownOne,
3508   const SelectionDAG &DAG,
3509   unsigned Depth) const {
3510 
3511   KnownZero = KnownOne = APInt(KnownOne.getBitWidth(), 0); // Don't know anything.
3512 
3513   APInt KnownZero2;
3514   APInt KnownOne2;
3515   unsigned Opc = Op.getOpcode();
3516 
3517   switch (Opc) {
3518   default:
3519     break;
3520   case AMDGPUISD::CARRY:
3521   case AMDGPUISD::BORROW: {
3522     KnownZero = APInt::getHighBitsSet(32, 31);
3523     break;
3524   }
3525 
3526   case AMDGPUISD::BFE_I32:
3527   case AMDGPUISD::BFE_U32: {
3528     ConstantSDNode *CWidth = dyn_cast<ConstantSDNode>(Op.getOperand(2));
3529     if (!CWidth)
3530       return;
3531 
3532     unsigned BitWidth = 32;
3533     uint32_t Width = CWidth->getZExtValue() & 0x1f;
3534 
3535     if (Opc == AMDGPUISD::BFE_U32)
3536       KnownZero = APInt::getHighBitsSet(BitWidth, BitWidth - Width);
3537 
3538     break;
3539   }
3540   }
3541 }
3542 
3543 unsigned AMDGPUTargetLowering::ComputeNumSignBitsForTargetNode(
3544   SDValue Op,
3545   const SelectionDAG &DAG,
3546   unsigned Depth) const {
3547   switch (Op.getOpcode()) {
3548   case AMDGPUISD::BFE_I32: {
3549     ConstantSDNode *Width = dyn_cast<ConstantSDNode>(Op.getOperand(2));
3550     if (!Width)
3551       return 1;
3552 
3553     unsigned SignBits = 32 - Width->getZExtValue() + 1;
3554     if (!isNullConstant(Op.getOperand(1)))
3555       return SignBits;
3556 
3557     // TODO: Could probably figure something out with non-0 offsets.
3558     unsigned Op0SignBits = DAG.ComputeNumSignBits(Op.getOperand(0), Depth + 1);
3559     return std::max(SignBits, Op0SignBits);
3560   }
3561 
3562   case AMDGPUISD::BFE_U32: {
3563     ConstantSDNode *Width = dyn_cast<ConstantSDNode>(Op.getOperand(2));
3564     return Width ? 32 - (Width->getZExtValue() & 0x1f) : 1;
3565   }
3566 
3567   case AMDGPUISD::CARRY:
3568   case AMDGPUISD::BORROW:
3569     return 31;
3570 
3571   default:
3572     return 1;
3573   }
3574 }
3575