Reuse a bunch of cached subtargets and remove getSubtarget calls
[oota-llvm.git] / lib / Target / R600 / AMDGPUISelLowering.cpp
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 "AMDGPUFrameLowering.h"
19 #include "AMDGPUIntrinsicInfo.h"
20 #include "AMDGPURegisterInfo.h"
21 #include "AMDGPUSubtarget.h"
22 #include "R600MachineFunctionInfo.h"
23 #include "SIMachineFunctionInfo.h"
24 #include "llvm/CodeGen/CallingConvLower.h"
25 #include "llvm/CodeGen/MachineFunction.h"
26 #include "llvm/CodeGen/MachineRegisterInfo.h"
27 #include "llvm/CodeGen/SelectionDAG.h"
28 #include "llvm/CodeGen/TargetLoweringObjectFileImpl.h"
29 #include "llvm/IR/DataLayout.h"
30 #include "llvm/IR/DiagnosticInfo.h"
31 #include "llvm/IR/DiagnosticPrinter.h"
32
33 using namespace llvm;
34
35 namespace {
36
37 /// Diagnostic information for unimplemented or unsupported feature reporting.
38 class DiagnosticInfoUnsupported : public DiagnosticInfo {
39 private:
40   const Twine &Description;
41   const Function &Fn;
42
43   static int KindID;
44
45   static int getKindID() {
46     if (KindID == 0)
47       KindID = llvm::getNextAvailablePluginDiagnosticKind();
48     return KindID;
49   }
50
51 public:
52   DiagnosticInfoUnsupported(const Function &Fn, const Twine &Desc,
53                           DiagnosticSeverity Severity = DS_Error)
54     : DiagnosticInfo(getKindID(), Severity),
55       Description(Desc),
56       Fn(Fn) { }
57
58   const Function &getFunction() const { return Fn; }
59   const Twine &getDescription() const { return Description; }
60
61   void print(DiagnosticPrinter &DP) const override {
62     DP << "unsupported " << getDescription() << " in " << Fn.getName();
63   }
64
65   static bool classof(const DiagnosticInfo *DI) {
66     return DI->getKind() == getKindID();
67   }
68 };
69
70 int DiagnosticInfoUnsupported::KindID = 0;
71 }
72
73
74 static bool allocateStack(unsigned ValNo, MVT ValVT, MVT LocVT,
75                       CCValAssign::LocInfo LocInfo,
76                       ISD::ArgFlagsTy ArgFlags, CCState &State) {
77   unsigned Offset = State.AllocateStack(ValVT.getStoreSize(),
78                                         ArgFlags.getOrigAlign());
79   State.addLoc(CCValAssign::getMem(ValNo, ValVT, Offset, LocVT, LocInfo));
80
81   return true;
82 }
83
84 #include "AMDGPUGenCallingConv.inc"
85
86 // Find a larger type to do a load / store of a vector with.
87 EVT AMDGPUTargetLowering::getEquivalentMemType(LLVMContext &Ctx, EVT VT) {
88   unsigned StoreSize = VT.getStoreSizeInBits();
89   if (StoreSize <= 32)
90     return EVT::getIntegerVT(Ctx, StoreSize);
91
92   assert(StoreSize % 32 == 0 && "Store size not a multiple of 32");
93   return EVT::getVectorVT(Ctx, MVT::i32, StoreSize / 32);
94 }
95
96 // Type for a vector that will be loaded to.
97 EVT AMDGPUTargetLowering::getEquivalentLoadRegType(LLVMContext &Ctx, EVT VT) {
98   unsigned StoreSize = VT.getStoreSizeInBits();
99   if (StoreSize <= 32)
100     return EVT::getIntegerVT(Ctx, 32);
101
102   return EVT::getVectorVT(Ctx, MVT::i32, StoreSize / 32);
103 }
104
105 AMDGPUTargetLowering::AMDGPUTargetLowering(TargetMachine &TM,
106                                            const AMDGPUSubtarget &STI)
107     : TargetLowering(TM), Subtarget(&STI) {
108   setOperationAction(ISD::Constant, MVT::i32, Legal);
109   setOperationAction(ISD::Constant, MVT::i64, Legal);
110   setOperationAction(ISD::ConstantFP, MVT::f32, Legal);
111   setOperationAction(ISD::ConstantFP, MVT::f64, Legal);
112
113   setOperationAction(ISD::BR_JT, MVT::Other, Expand);
114   setOperationAction(ISD::BRIND, MVT::Other, Expand);
115
116   // We need to custom lower some of the intrinsics
117   setOperationAction(ISD::INTRINSIC_WO_CHAIN, MVT::Other, Custom);
118
119   // Library functions.  These default to Expand, but we have instructions
120   // for them.
121   setOperationAction(ISD::FCEIL,  MVT::f32, Legal);
122   setOperationAction(ISD::FEXP2,  MVT::f32, Legal);
123   setOperationAction(ISD::FPOW,   MVT::f32, Legal);
124   setOperationAction(ISD::FLOG2,  MVT::f32, Legal);
125   setOperationAction(ISD::FABS,   MVT::f32, Legal);
126   setOperationAction(ISD::FFLOOR, MVT::f32, Legal);
127   setOperationAction(ISD::FRINT,  MVT::f32, Legal);
128   setOperationAction(ISD::FTRUNC, MVT::f32, Legal);
129
130   setOperationAction(ISD::FROUND, MVT::f32, Custom);
131   setOperationAction(ISD::FROUND, MVT::f64, Custom);
132
133   setOperationAction(ISD::FREM, MVT::f32, Custom);
134   setOperationAction(ISD::FREM, MVT::f64, Custom);
135
136   // Lower floating point store/load to integer store/load to reduce the number
137   // of patterns in tablegen.
138   setOperationAction(ISD::STORE, MVT::f32, Promote);
139   AddPromotedToType(ISD::STORE, MVT::f32, MVT::i32);
140
141   setOperationAction(ISD::STORE, MVT::v2f32, Promote);
142   AddPromotedToType(ISD::STORE, MVT::v2f32, MVT::v2i32);
143
144   setOperationAction(ISD::STORE, MVT::i64, Promote);
145   AddPromotedToType(ISD::STORE, MVT::i64, MVT::v2i32);
146
147   setOperationAction(ISD::STORE, MVT::v4f32, Promote);
148   AddPromotedToType(ISD::STORE, MVT::v4f32, MVT::v4i32);
149
150   setOperationAction(ISD::STORE, MVT::v8f32, Promote);
151   AddPromotedToType(ISD::STORE, MVT::v8f32, MVT::v8i32);
152
153   setOperationAction(ISD::STORE, MVT::v16f32, Promote);
154   AddPromotedToType(ISD::STORE, MVT::v16f32, MVT::v16i32);
155
156   setOperationAction(ISD::STORE, MVT::f64, Promote);
157   AddPromotedToType(ISD::STORE, MVT::f64, MVT::i64);
158
159   setOperationAction(ISD::STORE, MVT::v2f64, Promote);
160   AddPromotedToType(ISD::STORE, MVT::v2f64, MVT::v2i64);
161
162   // Custom lowering of vector stores is required for local address space
163   // stores.
164   setOperationAction(ISD::STORE, MVT::v4i32, Custom);
165   // XXX: Native v2i32 local address space stores are possible, but not
166   // currently implemented.
167   setOperationAction(ISD::STORE, MVT::v2i32, Custom);
168
169   setTruncStoreAction(MVT::v2i32, MVT::v2i16, Custom);
170   setTruncStoreAction(MVT::v2i32, MVT::v2i8, Custom);
171   setTruncStoreAction(MVT::v4i32, MVT::v4i8, Custom);
172
173   // XXX: This can be change to Custom, once ExpandVectorStores can
174   // handle 64-bit stores.
175   setTruncStoreAction(MVT::v4i32, MVT::v4i16, Expand);
176
177   setTruncStoreAction(MVT::i64, MVT::i16, Expand);
178   setTruncStoreAction(MVT::i64, MVT::i8, Expand);
179   setTruncStoreAction(MVT::i64, MVT::i1, Expand);
180   setTruncStoreAction(MVT::v2i64, MVT::v2i1, Expand);
181   setTruncStoreAction(MVT::v4i64, MVT::v4i1, Expand);
182
183
184   setOperationAction(ISD::LOAD, MVT::f32, Promote);
185   AddPromotedToType(ISD::LOAD, MVT::f32, MVT::i32);
186
187   setOperationAction(ISD::LOAD, MVT::v2f32, Promote);
188   AddPromotedToType(ISD::LOAD, MVT::v2f32, MVT::v2i32);
189
190   setOperationAction(ISD::LOAD, MVT::v4f32, Promote);
191   AddPromotedToType(ISD::LOAD, MVT::v4f32, MVT::v4i32);
192
193   setOperationAction(ISD::LOAD, MVT::v8f32, Promote);
194   AddPromotedToType(ISD::LOAD, MVT::v8f32, MVT::v8i32);
195
196   setOperationAction(ISD::LOAD, MVT::v16f32, Promote);
197   AddPromotedToType(ISD::LOAD, MVT::v16f32, MVT::v16i32);
198
199   setOperationAction(ISD::LOAD, MVT::f64, Promote);
200   AddPromotedToType(ISD::LOAD, MVT::f64, MVT::i64);
201
202   setOperationAction(ISD::LOAD, MVT::v2f64, Promote);
203   AddPromotedToType(ISD::LOAD, MVT::v2f64, MVT::v2i64);
204
205   setOperationAction(ISD::CONCAT_VECTORS, MVT::v4i32, Custom);
206   setOperationAction(ISD::CONCAT_VECTORS, MVT::v4f32, Custom);
207   setOperationAction(ISD::CONCAT_VECTORS, MVT::v8i32, Custom);
208   setOperationAction(ISD::CONCAT_VECTORS, MVT::v8f32, Custom);
209   setOperationAction(ISD::EXTRACT_SUBVECTOR, MVT::v2f32, Custom);
210   setOperationAction(ISD::EXTRACT_SUBVECTOR, MVT::v2i32, Custom);
211   setOperationAction(ISD::EXTRACT_SUBVECTOR, MVT::v4f32, Custom);
212   setOperationAction(ISD::EXTRACT_SUBVECTOR, MVT::v4i32, Custom);
213   setOperationAction(ISD::EXTRACT_SUBVECTOR, MVT::v8f32, Custom);
214   setOperationAction(ISD::EXTRACT_SUBVECTOR, MVT::v8i32, Custom);
215
216   // There are no 64-bit extloads. These should be done as a 32-bit extload and
217   // an extension to 64-bit.
218   for (MVT VT : MVT::integer_valuetypes()) {
219     setLoadExtAction(ISD::EXTLOAD, MVT::i64, VT, Expand);
220     setLoadExtAction(ISD::SEXTLOAD, MVT::i64, VT, Expand);
221     setLoadExtAction(ISD::ZEXTLOAD, MVT::i64, VT, Expand);
222   }
223
224   for (MVT VT : MVT::integer_vector_valuetypes()) {
225     setLoadExtAction(ISD::EXTLOAD, VT, MVT::v2i8, Expand);
226     setLoadExtAction(ISD::SEXTLOAD, VT, MVT::v2i8, Expand);
227     setLoadExtAction(ISD::ZEXTLOAD, VT, MVT::v2i8, Expand);
228     setLoadExtAction(ISD::EXTLOAD, VT, MVT::v4i8, Expand);
229     setLoadExtAction(ISD::SEXTLOAD, VT, MVT::v4i8, Expand);
230     setLoadExtAction(ISD::ZEXTLOAD, VT, MVT::v4i8, Expand);
231     setLoadExtAction(ISD::EXTLOAD, VT, MVT::v2i16, Expand);
232     setLoadExtAction(ISD::SEXTLOAD, VT, MVT::v2i16, Expand);
233     setLoadExtAction(ISD::ZEXTLOAD, VT, MVT::v2i16, Expand);
234     setLoadExtAction(ISD::EXTLOAD, VT, MVT::v4i16, Expand);
235     setLoadExtAction(ISD::SEXTLOAD, VT, MVT::v4i16, Expand);
236     setLoadExtAction(ISD::ZEXTLOAD, VT, MVT::v4i16, Expand);
237   }
238
239   setOperationAction(ISD::BR_CC, MVT::i1, Expand);
240
241   if (Subtarget->getGeneration() < AMDGPUSubtarget::SEA_ISLANDS) {
242     setOperationAction(ISD::FCEIL, MVT::f64, Custom);
243     setOperationAction(ISD::FTRUNC, MVT::f64, Custom);
244     setOperationAction(ISD::FRINT, MVT::f64, Custom);
245     setOperationAction(ISD::FFLOOR, MVT::f64, Custom);
246   }
247
248   if (!Subtarget->hasBFI()) {
249     // fcopysign can be done in a single instruction with BFI.
250     setOperationAction(ISD::FCOPYSIGN, MVT::f32, Expand);
251     setOperationAction(ISD::FCOPYSIGN, MVT::f64, Expand);
252   }
253
254   setOperationAction(ISD::FP16_TO_FP, MVT::f64, Expand);
255
256   setLoadExtAction(ISD::EXTLOAD, MVT::f32, MVT::f16, Expand);
257   setLoadExtAction(ISD::EXTLOAD, MVT::f64, MVT::f16, Expand);
258   setTruncStoreAction(MVT::f32, MVT::f16, Expand);
259   setTruncStoreAction(MVT::f64, MVT::f16, Expand);
260
261   const MVT ScalarIntVTs[] = { MVT::i32, MVT::i64 };
262   for (MVT VT : ScalarIntVTs) {
263     setOperationAction(ISD::SREM, VT, Expand);
264     setOperationAction(ISD::SDIV, VT, Expand);
265
266     // GPU does not have divrem function for signed or unsigned.
267     setOperationAction(ISD::SDIVREM, VT, Custom);
268     setOperationAction(ISD::UDIVREM, VT, Custom);
269
270     // GPU does not have [S|U]MUL_LOHI functions as a single instruction.
271     setOperationAction(ISD::SMUL_LOHI, VT, Expand);
272     setOperationAction(ISD::UMUL_LOHI, VT, Expand);
273
274     setOperationAction(ISD::BSWAP, VT, Expand);
275     setOperationAction(ISD::CTTZ, VT, Expand);
276     setOperationAction(ISD::CTLZ, VT, Expand);
277   }
278
279   if (!Subtarget->hasBCNT(32))
280     setOperationAction(ISD::CTPOP, MVT::i32, Expand);
281
282   if (!Subtarget->hasBCNT(64))
283     setOperationAction(ISD::CTPOP, MVT::i64, Expand);
284
285   // The hardware supports 32-bit ROTR, but not ROTL.
286   setOperationAction(ISD::ROTL, MVT::i32, Expand);
287   setOperationAction(ISD::ROTL, MVT::i64, Expand);
288   setOperationAction(ISD::ROTR, MVT::i64, Expand);
289
290   setOperationAction(ISD::MUL, MVT::i64, Expand);
291   setOperationAction(ISD::MULHU, MVT::i64, Expand);
292   setOperationAction(ISD::MULHS, MVT::i64, Expand);
293   setOperationAction(ISD::UDIV, MVT::i32, Expand);
294   setOperationAction(ISD::UREM, MVT::i32, Expand);
295   setOperationAction(ISD::UINT_TO_FP, MVT::i64, Custom);
296   setOperationAction(ISD::SINT_TO_FP, MVT::i64, Custom);
297   setOperationAction(ISD::FP_TO_SINT, MVT::i64, Custom);
298   setOperationAction(ISD::FP_TO_UINT, MVT::i64, Custom);
299   setOperationAction(ISD::SELECT_CC, MVT::i64, Expand);
300
301   if (!Subtarget->hasFFBH())
302     setOperationAction(ISD::CTLZ_ZERO_UNDEF, MVT::i32, Expand);
303
304   if (!Subtarget->hasFFBL())
305     setOperationAction(ISD::CTTZ_ZERO_UNDEF, MVT::i32, Expand);
306
307   static const MVT::SimpleValueType VectorIntTypes[] = {
308     MVT::v2i32, MVT::v4i32
309   };
310
311   for (MVT VT : VectorIntTypes) {
312     // Expand the following operations for the current type by default.
313     setOperationAction(ISD::ADD,  VT, Expand);
314     setOperationAction(ISD::AND,  VT, Expand);
315     setOperationAction(ISD::FP_TO_SINT, VT, Expand);
316     setOperationAction(ISD::FP_TO_UINT, VT, Expand);
317     setOperationAction(ISD::MUL,  VT, Expand);
318     setOperationAction(ISD::OR,   VT, Expand);
319     setOperationAction(ISD::SHL,  VT, Expand);
320     setOperationAction(ISD::SRA,  VT, Expand);
321     setOperationAction(ISD::SRL,  VT, Expand);
322     setOperationAction(ISD::ROTL, VT, Expand);
323     setOperationAction(ISD::ROTR, VT, Expand);
324     setOperationAction(ISD::SUB,  VT, Expand);
325     setOperationAction(ISD::SINT_TO_FP, VT, Expand);
326     setOperationAction(ISD::UINT_TO_FP, VT, Expand);
327     setOperationAction(ISD::SDIV, VT, Expand);
328     setOperationAction(ISD::UDIV, VT, Expand);
329     setOperationAction(ISD::SREM, VT, Expand);
330     setOperationAction(ISD::UREM, VT, Expand);
331     setOperationAction(ISD::SMUL_LOHI, VT, Expand);
332     setOperationAction(ISD::UMUL_LOHI, VT, Expand);
333     setOperationAction(ISD::SDIVREM, VT, Custom);
334     setOperationAction(ISD::UDIVREM, VT, Custom);
335     setOperationAction(ISD::ADDC, VT, Expand);
336     setOperationAction(ISD::SUBC, VT, Expand);
337     setOperationAction(ISD::ADDE, VT, Expand);
338     setOperationAction(ISD::SUBE, VT, Expand);
339     setOperationAction(ISD::SELECT, VT, Expand);
340     setOperationAction(ISD::VSELECT, VT, Expand);
341     setOperationAction(ISD::SELECT_CC, VT, Expand);
342     setOperationAction(ISD::XOR,  VT, Expand);
343     setOperationAction(ISD::BSWAP, VT, Expand);
344     setOperationAction(ISD::CTPOP, VT, Expand);
345     setOperationAction(ISD::CTTZ, VT, Expand);
346     setOperationAction(ISD::CTTZ_ZERO_UNDEF, VT, Expand);
347     setOperationAction(ISD::CTLZ, VT, Expand);
348     setOperationAction(ISD::CTLZ_ZERO_UNDEF, VT, Expand);
349     setOperationAction(ISD::VECTOR_SHUFFLE, VT, Expand);
350   }
351
352   static const MVT::SimpleValueType FloatVectorTypes[] = {
353     MVT::v2f32, MVT::v4f32
354   };
355
356   for (MVT VT : FloatVectorTypes) {
357     setOperationAction(ISD::FABS, VT, Expand);
358     setOperationAction(ISD::FMINNUM, VT, Expand);
359     setOperationAction(ISD::FMAXNUM, VT, Expand);
360     setOperationAction(ISD::FADD, VT, Expand);
361     setOperationAction(ISD::FCEIL, VT, Expand);
362     setOperationAction(ISD::FCOS, VT, Expand);
363     setOperationAction(ISD::FDIV, VT, Expand);
364     setOperationAction(ISD::FEXP2, VT, Expand);
365     setOperationAction(ISD::FLOG2, VT, Expand);
366     setOperationAction(ISD::FREM, VT, Expand);
367     setOperationAction(ISD::FPOW, VT, Expand);
368     setOperationAction(ISD::FFLOOR, VT, Expand);
369     setOperationAction(ISD::FTRUNC, VT, Expand);
370     setOperationAction(ISD::FMUL, VT, Expand);
371     setOperationAction(ISD::FMA, VT, Expand);
372     setOperationAction(ISD::FRINT, VT, Expand);
373     setOperationAction(ISD::FNEARBYINT, VT, Expand);
374     setOperationAction(ISD::FSQRT, VT, Expand);
375     setOperationAction(ISD::FSIN, VT, Expand);
376     setOperationAction(ISD::FSUB, VT, Expand);
377     setOperationAction(ISD::FNEG, VT, Expand);
378     setOperationAction(ISD::SELECT, VT, Expand);
379     setOperationAction(ISD::VSELECT, VT, Expand);
380     setOperationAction(ISD::SELECT_CC, VT, Expand);
381     setOperationAction(ISD::FCOPYSIGN, VT, Expand);
382     setOperationAction(ISD::VECTOR_SHUFFLE, VT, Expand);
383   }
384
385   setOperationAction(ISD::FNEARBYINT, MVT::f32, Custom);
386   setOperationAction(ISD::FNEARBYINT, MVT::f64, Custom);
387
388   setTargetDAGCombine(ISD::MUL);
389   setTargetDAGCombine(ISD::SELECT);
390   setTargetDAGCombine(ISD::SELECT_CC);
391   setTargetDAGCombine(ISD::STORE);
392
393   setBooleanContents(ZeroOrNegativeOneBooleanContent);
394   setBooleanVectorContents(ZeroOrNegativeOneBooleanContent);
395
396   setSchedulingPreference(Sched::RegPressure);
397   setJumpIsExpensive(true);
398
399   // SI at least has hardware support for floating point exceptions, but no way
400   // of using or handling them is implemented. They are also optional in OpenCL
401   // (Section 7.3)
402   setHasFloatingPointExceptions(false);
403
404   setSelectIsExpensive(false);
405   PredictableSelectIsExpensive = false;
406
407   // There are no integer divide instructions, and these expand to a pretty
408   // large sequence of instructions.
409   setIntDivIsCheap(false);
410   setPow2SDivIsCheap(false);
411   setFsqrtIsCheap(true);
412
413   // FIXME: Need to really handle these.
414   MaxStoresPerMemcpy  = 4096;
415   MaxStoresPerMemmove = 4096;
416   MaxStoresPerMemset  = 4096;
417 }
418
419 //===----------------------------------------------------------------------===//
420 // Target Information
421 //===----------------------------------------------------------------------===//
422
423 MVT AMDGPUTargetLowering::getVectorIdxTy() const {
424   return MVT::i32;
425 }
426
427 bool AMDGPUTargetLowering::isSelectSupported(SelectSupportKind SelType) const {
428   return true;
429 }
430
431 // The backend supports 32 and 64 bit floating point immediates.
432 // FIXME: Why are we reporting vectors of FP immediates as legal?
433 bool AMDGPUTargetLowering::isFPImmLegal(const APFloat &Imm, EVT VT) const {
434   EVT ScalarVT = VT.getScalarType();
435   return (ScalarVT == MVT::f32 || ScalarVT == MVT::f64);
436 }
437
438 // We don't want to shrink f64 / f32 constants.
439 bool AMDGPUTargetLowering::ShouldShrinkFPConstant(EVT VT) const {
440   EVT ScalarVT = VT.getScalarType();
441   return (ScalarVT != MVT::f32 && ScalarVT != MVT::f64);
442 }
443
444 bool AMDGPUTargetLowering::shouldReduceLoadWidth(SDNode *N,
445                                                  ISD::LoadExtType,
446                                                  EVT NewVT) const {
447
448   unsigned NewSize = NewVT.getStoreSizeInBits();
449
450   // If we are reducing to a 32-bit load, this is always better.
451   if (NewSize == 32)
452     return true;
453
454   EVT OldVT = N->getValueType(0);
455   unsigned OldSize = OldVT.getStoreSizeInBits();
456
457   // Don't produce extloads from sub 32-bit types. SI doesn't have scalar
458   // extloads, so doing one requires using a buffer_load. In cases where we
459   // still couldn't use a scalar load, using the wider load shouldn't really
460   // hurt anything.
461
462   // If the old size already had to be an extload, there's no harm in continuing
463   // to reduce the width.
464   return (OldSize < 32);
465 }
466
467 bool AMDGPUTargetLowering::isLoadBitCastBeneficial(EVT LoadTy,
468                                                    EVT CastTy) const {
469   if (LoadTy.getSizeInBits() != CastTy.getSizeInBits())
470     return true;
471
472   unsigned LScalarSize = LoadTy.getScalarType().getSizeInBits();
473   unsigned CastScalarSize = CastTy.getScalarType().getSizeInBits();
474
475   return ((LScalarSize <= CastScalarSize) ||
476           (CastScalarSize >= 32) ||
477           (LScalarSize < 32));
478 }
479
480 // SI+ has instructions for cttz / ctlz for 32-bit values. This is probably also
481 // profitable with the expansion for 64-bit since it's generally good to
482 // speculate things.
483 // FIXME: These should really have the size as a parameter.
484 bool AMDGPUTargetLowering::isCheapToSpeculateCttz() const {
485   return true;
486 }
487
488 bool AMDGPUTargetLowering::isCheapToSpeculateCtlz() const {
489   return true;
490 }
491
492 //===---------------------------------------------------------------------===//
493 // Target Properties
494 //===---------------------------------------------------------------------===//
495
496 bool AMDGPUTargetLowering::isFAbsFree(EVT VT) const {
497   assert(VT.isFloatingPoint());
498   return VT == MVT::f32 || VT == MVT::f64;
499 }
500
501 bool AMDGPUTargetLowering::isFNegFree(EVT VT) const {
502   assert(VT.isFloatingPoint());
503   return VT == MVT::f32 || VT == MVT::f64;
504 }
505
506 bool AMDGPUTargetLowering::isTruncateFree(EVT Source, EVT Dest) const {
507   // Truncate is just accessing a subregister.
508   return Dest.bitsLT(Source) && (Dest.getSizeInBits() % 32 == 0);
509 }
510
511 bool AMDGPUTargetLowering::isTruncateFree(Type *Source, Type *Dest) const {
512   // Truncate is just accessing a subregister.
513   return Dest->getPrimitiveSizeInBits() < Source->getPrimitiveSizeInBits() &&
514          (Dest->getPrimitiveSizeInBits() % 32 == 0);
515 }
516
517 bool AMDGPUTargetLowering::isZExtFree(Type *Src, Type *Dest) const {
518   const DataLayout *DL = getDataLayout();
519   unsigned SrcSize = DL->getTypeSizeInBits(Src->getScalarType());
520   unsigned DestSize = DL->getTypeSizeInBits(Dest->getScalarType());
521
522   return SrcSize == 32 && DestSize == 64;
523 }
524
525 bool AMDGPUTargetLowering::isZExtFree(EVT Src, EVT Dest) const {
526   // Any register load of a 64-bit value really requires 2 32-bit moves. For all
527   // practical purposes, the extra mov 0 to load a 64-bit is free.  As used,
528   // this will enable reducing 64-bit operations the 32-bit, which is always
529   // good.
530   return Src == MVT::i32 && Dest == MVT::i64;
531 }
532
533 bool AMDGPUTargetLowering::isZExtFree(SDValue Val, EVT VT2) const {
534   return isZExtFree(Val.getValueType(), VT2);
535 }
536
537 bool AMDGPUTargetLowering::isNarrowingProfitable(EVT SrcVT, EVT DestVT) const {
538   // There aren't really 64-bit registers, but pairs of 32-bit ones and only a
539   // limited number of native 64-bit operations. Shrinking an operation to fit
540   // in a single 32-bit register should always be helpful. As currently used,
541   // this is much less general than the name suggests, and is only used in
542   // places trying to reduce the sizes of loads. Shrinking loads to < 32-bits is
543   // not profitable, and may actually be harmful.
544   return SrcVT.getSizeInBits() > 32 && DestVT.getSizeInBits() == 32;
545 }
546
547 //===---------------------------------------------------------------------===//
548 // TargetLowering Callbacks
549 //===---------------------------------------------------------------------===//
550
551 void AMDGPUTargetLowering::AnalyzeFormalArguments(CCState &State,
552                              const SmallVectorImpl<ISD::InputArg> &Ins) const {
553
554   State.AnalyzeFormalArguments(Ins, CC_AMDGPU);
555 }
556
557 SDValue AMDGPUTargetLowering::LowerReturn(
558                                      SDValue Chain,
559                                      CallingConv::ID CallConv,
560                                      bool isVarArg,
561                                      const SmallVectorImpl<ISD::OutputArg> &Outs,
562                                      const SmallVectorImpl<SDValue> &OutVals,
563                                      SDLoc DL, SelectionDAG &DAG) const {
564   return DAG.getNode(AMDGPUISD::RET_FLAG, DL, MVT::Other, Chain);
565 }
566
567 //===---------------------------------------------------------------------===//
568 // Target specific lowering
569 //===---------------------------------------------------------------------===//
570
571 SDValue AMDGPUTargetLowering::LowerCall(CallLoweringInfo &CLI,
572                                         SmallVectorImpl<SDValue> &InVals) const {
573   SDValue Callee = CLI.Callee;
574   SelectionDAG &DAG = CLI.DAG;
575
576   const Function &Fn = *DAG.getMachineFunction().getFunction();
577
578   StringRef FuncName("<unknown>");
579
580   if (const ExternalSymbolSDNode *G = dyn_cast<ExternalSymbolSDNode>(Callee))
581     FuncName = G->getSymbol();
582   else if (const GlobalAddressSDNode *G = dyn_cast<GlobalAddressSDNode>(Callee))
583     FuncName = G->getGlobal()->getName();
584
585   DiagnosticInfoUnsupported NoCalls(Fn, "call to function " + FuncName);
586   DAG.getContext()->diagnose(NoCalls);
587   return SDValue();
588 }
589
590 SDValue AMDGPUTargetLowering::LowerOperation(SDValue Op,
591                                              SelectionDAG &DAG) const {
592   switch (Op.getOpcode()) {
593   default:
594     Op.getNode()->dump();
595     llvm_unreachable("Custom lowering code for this"
596                      "instruction is not implemented yet!");
597     break;
598   case ISD::SIGN_EXTEND_INREG: return LowerSIGN_EXTEND_INREG(Op, DAG);
599   case ISD::CONCAT_VECTORS: return LowerCONCAT_VECTORS(Op, DAG);
600   case ISD::EXTRACT_SUBVECTOR: return LowerEXTRACT_SUBVECTOR(Op, DAG);
601   case ISD::FrameIndex: return LowerFrameIndex(Op, DAG);
602   case ISD::INTRINSIC_WO_CHAIN: return LowerINTRINSIC_WO_CHAIN(Op, DAG);
603   case ISD::UDIVREM: return LowerUDIVREM(Op, DAG);
604   case ISD::SDIVREM: return LowerSDIVREM(Op, DAG);
605   case ISD::FREM: return LowerFREM(Op, DAG);
606   case ISD::FCEIL: return LowerFCEIL(Op, DAG);
607   case ISD::FTRUNC: return LowerFTRUNC(Op, DAG);
608   case ISD::FRINT: return LowerFRINT(Op, DAG);
609   case ISD::FNEARBYINT: return LowerFNEARBYINT(Op, DAG);
610   case ISD::FROUND: return LowerFROUND(Op, DAG);
611   case ISD::FFLOOR: return LowerFFLOOR(Op, DAG);
612   case ISD::SINT_TO_FP: return LowerSINT_TO_FP(Op, DAG);
613   case ISD::UINT_TO_FP: return LowerUINT_TO_FP(Op, DAG);
614   case ISD::FP_TO_SINT: return LowerFP_TO_SINT(Op, DAG);
615   case ISD::FP_TO_UINT: return LowerFP_TO_UINT(Op, DAG);
616   }
617   return Op;
618 }
619
620 void AMDGPUTargetLowering::ReplaceNodeResults(SDNode *N,
621                                               SmallVectorImpl<SDValue> &Results,
622                                               SelectionDAG &DAG) const {
623   switch (N->getOpcode()) {
624   case ISD::SIGN_EXTEND_INREG:
625     // Different parts of legalization seem to interpret which type of
626     // sign_extend_inreg is the one to check for custom lowering. The extended
627     // from type is what really matters, but some places check for custom
628     // lowering of the result type. This results in trying to use
629     // ReplaceNodeResults to sext_in_reg to an illegal type, so we'll just do
630     // nothing here and let the illegal result integer be handled normally.
631     return;
632   case ISD::LOAD: {
633     SDNode *Node = LowerLOAD(SDValue(N, 0), DAG).getNode();
634     if (!Node)
635       return;
636
637     Results.push_back(SDValue(Node, 0));
638     Results.push_back(SDValue(Node, 1));
639     // XXX: LLVM seems not to replace Chain Value inside CustomWidenLowerNode
640     // function
641     DAG.ReplaceAllUsesOfValueWith(SDValue(N,1), SDValue(Node, 1));
642     return;
643   }
644   case ISD::STORE: {
645     SDValue Lowered = LowerSTORE(SDValue(N, 0), DAG);
646     if (Lowered.getNode())
647       Results.push_back(Lowered);
648     return;
649   }
650   default:
651     return;
652   }
653 }
654
655 // FIXME: This implements accesses to initialized globals in the constant
656 // address space by copying them to private and accessing that. It does not
657 // properly handle illegal types or vectors. The private vector loads are not
658 // scalarized, and the illegal scalars hit an assertion. This technique will not
659 // work well with large initializers, and this should eventually be
660 // removed. Initialized globals should be placed into a data section that the
661 // runtime will load into a buffer before the kernel is executed. Uses of the
662 // global need to be replaced with a pointer loaded from an implicit kernel
663 // argument into this buffer holding the copy of the data, which will remove the
664 // need for any of this.
665 SDValue AMDGPUTargetLowering::LowerConstantInitializer(const Constant* Init,
666                                                        const GlobalValue *GV,
667                                                        const SDValue &InitPtr,
668                                                        SDValue Chain,
669                                                        SelectionDAG &DAG) const {
670   const DataLayout *TD = getDataLayout();
671   SDLoc DL(InitPtr);
672   Type *InitTy = Init->getType();
673
674   if (const ConstantInt *CI = dyn_cast<ConstantInt>(Init)) {
675     EVT VT = EVT::getEVT(InitTy);
676     PointerType *PtrTy = PointerType::get(InitTy, AMDGPUAS::PRIVATE_ADDRESS);
677     return DAG.getStore(Chain, DL, DAG.getConstant(*CI, VT), InitPtr,
678                         MachinePointerInfo(UndefValue::get(PtrTy)), false, false,
679                         TD->getPrefTypeAlignment(InitTy));
680   }
681
682   if (const ConstantFP *CFP = dyn_cast<ConstantFP>(Init)) {
683     EVT VT = EVT::getEVT(CFP->getType());
684     PointerType *PtrTy = PointerType::get(CFP->getType(), 0);
685     return DAG.getStore(Chain, DL, DAG.getConstantFP(*CFP, VT), InitPtr,
686                  MachinePointerInfo(UndefValue::get(PtrTy)), false, false,
687                  TD->getPrefTypeAlignment(CFP->getType()));
688   }
689
690   if (StructType *ST = dyn_cast<StructType>(InitTy)) {
691     const StructLayout *SL = TD->getStructLayout(ST);
692
693     EVT PtrVT = InitPtr.getValueType();
694     SmallVector<SDValue, 8> Chains;
695
696     for (unsigned I = 0, N = ST->getNumElements(); I != N; ++I) {
697       SDValue Offset = DAG.getConstant(SL->getElementOffset(I), PtrVT);
698       SDValue Ptr = DAG.getNode(ISD::ADD, DL, PtrVT, InitPtr, Offset);
699
700       Constant *Elt = Init->getAggregateElement(I);
701       Chains.push_back(LowerConstantInitializer(Elt, GV, Ptr, Chain, DAG));
702     }
703
704     return DAG.getNode(ISD::TokenFactor, DL, MVT::Other, Chains);
705   }
706
707   if (SequentialType *SeqTy = dyn_cast<SequentialType>(InitTy)) {
708     EVT PtrVT = InitPtr.getValueType();
709
710     unsigned NumElements;
711     if (ArrayType *AT = dyn_cast<ArrayType>(SeqTy))
712       NumElements = AT->getNumElements();
713     else if (VectorType *VT = dyn_cast<VectorType>(SeqTy))
714       NumElements = VT->getNumElements();
715     else
716       llvm_unreachable("Unexpected type");
717
718     unsigned EltSize = TD->getTypeAllocSize(SeqTy->getElementType());
719     SmallVector<SDValue, 8> Chains;
720     for (unsigned i = 0; i < NumElements; ++i) {
721       SDValue Offset = DAG.getConstant(i * EltSize, PtrVT);
722       SDValue Ptr = DAG.getNode(ISD::ADD, DL, PtrVT, InitPtr, Offset);
723
724       Constant *Elt = Init->getAggregateElement(i);
725       Chains.push_back(LowerConstantInitializer(Elt, GV, Ptr, Chain, DAG));
726     }
727
728     return DAG.getNode(ISD::TokenFactor, DL, MVT::Other, Chains);
729   }
730
731   if (isa<UndefValue>(Init)) {
732     EVT VT = EVT::getEVT(InitTy);
733     PointerType *PtrTy = PointerType::get(InitTy, AMDGPUAS::PRIVATE_ADDRESS);
734     return DAG.getStore(Chain, DL, DAG.getUNDEF(VT), InitPtr,
735                         MachinePointerInfo(UndefValue::get(PtrTy)), false, false,
736                         TD->getPrefTypeAlignment(InitTy));
737   }
738
739   Init->dump();
740   llvm_unreachable("Unhandled constant initializer");
741 }
742
743 static bool hasDefinedInitializer(const GlobalValue *GV) {
744   const GlobalVariable *GVar = dyn_cast<GlobalVariable>(GV);
745   if (!GVar || !GVar->hasInitializer())
746     return false;
747
748   if (isa<UndefValue>(GVar->getInitializer()))
749     return false;
750
751   return true;
752 }
753
754 SDValue AMDGPUTargetLowering::LowerGlobalAddress(AMDGPUMachineFunction* MFI,
755                                                  SDValue Op,
756                                                  SelectionDAG &DAG) const {
757
758   const DataLayout *TD = getDataLayout();
759   GlobalAddressSDNode *G = cast<GlobalAddressSDNode>(Op);
760   const GlobalValue *GV = G->getGlobal();
761
762   switch (G->getAddressSpace()) {
763   case AMDGPUAS::LOCAL_ADDRESS: {
764     // XXX: What does the value of G->getOffset() mean?
765     assert(G->getOffset() == 0 &&
766          "Do not know what to do with an non-zero offset");
767
768     // TODO: We could emit code to handle the initialization somewhere.
769     if (hasDefinedInitializer(GV))
770       break;
771
772     unsigned Offset;
773     if (MFI->LocalMemoryObjects.count(GV) == 0) {
774       uint64_t Size = TD->getTypeAllocSize(GV->getType()->getElementType());
775       Offset = MFI->LDSSize;
776       MFI->LocalMemoryObjects[GV] = Offset;
777       // XXX: Account for alignment?
778       MFI->LDSSize += Size;
779     } else {
780       Offset = MFI->LocalMemoryObjects[GV];
781     }
782
783     return DAG.getConstant(Offset, getPointerTy(AMDGPUAS::LOCAL_ADDRESS));
784   }
785   case AMDGPUAS::CONSTANT_ADDRESS: {
786     MachineFrameInfo *FrameInfo = DAG.getMachineFunction().getFrameInfo();
787     Type *EltType = GV->getType()->getElementType();
788     unsigned Size = TD->getTypeAllocSize(EltType);
789     unsigned Alignment = TD->getPrefTypeAlignment(EltType);
790
791     MVT PrivPtrVT = getPointerTy(AMDGPUAS::PRIVATE_ADDRESS);
792     MVT ConstPtrVT = getPointerTy(AMDGPUAS::CONSTANT_ADDRESS);
793
794     int FI = FrameInfo->CreateStackObject(Size, Alignment, false);
795     SDValue InitPtr = DAG.getFrameIndex(FI, PrivPtrVT);
796
797     const GlobalVariable *Var = cast<GlobalVariable>(GV);
798     if (!Var->hasInitializer()) {
799       // This has no use, but bugpoint will hit it.
800       return DAG.getZExtOrTrunc(InitPtr, SDLoc(Op), ConstPtrVT);
801     }
802
803     const Constant *Init = Var->getInitializer();
804     SmallVector<SDNode*, 8> WorkList;
805
806     for (SDNode::use_iterator I = DAG.getEntryNode()->use_begin(),
807                               E = DAG.getEntryNode()->use_end(); I != E; ++I) {
808       if (I->getOpcode() != AMDGPUISD::REGISTER_LOAD && I->getOpcode() != ISD::LOAD)
809         continue;
810       WorkList.push_back(*I);
811     }
812     SDValue Chain = LowerConstantInitializer(Init, GV, InitPtr, DAG.getEntryNode(), DAG);
813     for (SmallVector<SDNode*, 8>::iterator I = WorkList.begin(),
814                                            E = WorkList.end(); I != E; ++I) {
815       SmallVector<SDValue, 8> Ops;
816       Ops.push_back(Chain);
817       for (unsigned i = 1; i < (*I)->getNumOperands(); ++i) {
818         Ops.push_back((*I)->getOperand(i));
819       }
820       DAG.UpdateNodeOperands(*I, Ops);
821     }
822     return DAG.getZExtOrTrunc(InitPtr, SDLoc(Op), ConstPtrVT);
823   }
824   }
825
826   const Function &Fn = *DAG.getMachineFunction().getFunction();
827   DiagnosticInfoUnsupported BadInit(Fn,
828                                     "initializer for address space");
829   DAG.getContext()->diagnose(BadInit);
830   return SDValue();
831 }
832
833 SDValue AMDGPUTargetLowering::LowerCONCAT_VECTORS(SDValue Op,
834                                                   SelectionDAG &DAG) const {
835   SmallVector<SDValue, 8> Args;
836   SDValue A = Op.getOperand(0);
837   SDValue B = Op.getOperand(1);
838
839   DAG.ExtractVectorElements(A, Args);
840   DAG.ExtractVectorElements(B, Args);
841
842   return DAG.getNode(ISD::BUILD_VECTOR, SDLoc(Op), Op.getValueType(), Args);
843 }
844
845 SDValue AMDGPUTargetLowering::LowerEXTRACT_SUBVECTOR(SDValue Op,
846                                                      SelectionDAG &DAG) const {
847
848   SmallVector<SDValue, 8> Args;
849   unsigned Start = cast<ConstantSDNode>(Op.getOperand(1))->getZExtValue();
850   EVT VT = Op.getValueType();
851   DAG.ExtractVectorElements(Op.getOperand(0), Args, Start,
852                             VT.getVectorNumElements());
853
854   return DAG.getNode(ISD::BUILD_VECTOR, SDLoc(Op), Op.getValueType(), Args);
855 }
856
857 SDValue AMDGPUTargetLowering::LowerFrameIndex(SDValue Op,
858                                               SelectionDAG &DAG) const {
859
860   MachineFunction &MF = DAG.getMachineFunction();
861   const AMDGPUFrameLowering *TFL = Subtarget->getFrameLowering();
862
863   FrameIndexSDNode *FIN = cast<FrameIndexSDNode>(Op);
864
865   unsigned FrameIndex = FIN->getIndex();
866   unsigned Offset = TFL->getFrameIndexOffset(MF, FrameIndex);
867   return DAG.getConstant(Offset * 4 * TFL->getStackWidth(MF),
868                          Op.getValueType());
869 }
870
871 SDValue AMDGPUTargetLowering::LowerINTRINSIC_WO_CHAIN(SDValue Op,
872     SelectionDAG &DAG) const {
873   unsigned IntrinsicID = cast<ConstantSDNode>(Op.getOperand(0))->getZExtValue();
874   SDLoc DL(Op);
875   EVT VT = Op.getValueType();
876
877   switch (IntrinsicID) {
878     default: return Op;
879     case AMDGPUIntrinsic::AMDGPU_abs:
880     case AMDGPUIntrinsic::AMDIL_abs: // Legacy name.
881       return LowerIntrinsicIABS(Op, DAG);
882     case AMDGPUIntrinsic::AMDGPU_lrp:
883       return LowerIntrinsicLRP(Op, DAG);
884     case AMDGPUIntrinsic::AMDGPU_fract:
885     case AMDGPUIntrinsic::AMDIL_fraction: // Legacy name.
886       return DAG.getNode(AMDGPUISD::FRACT, DL, VT, Op.getOperand(1));
887
888     case AMDGPUIntrinsic::AMDGPU_clamp:
889     case AMDGPUIntrinsic::AMDIL_clamp: // Legacy name.
890       return DAG.getNode(AMDGPUISD::CLAMP, DL, VT,
891                          Op.getOperand(1), Op.getOperand(2), Op.getOperand(3));
892
893     case Intrinsic::AMDGPU_div_scale: {
894       // 3rd parameter required to be a constant.
895       const ConstantSDNode *Param = dyn_cast<ConstantSDNode>(Op.getOperand(3));
896       if (!Param)
897         return DAG.getUNDEF(VT);
898
899       // Translate to the operands expected by the machine instruction. The
900       // first parameter must be the same as the first instruction.
901       SDValue Numerator = Op.getOperand(1);
902       SDValue Denominator = Op.getOperand(2);
903
904       // Note this order is opposite of the machine instruction's operations,
905       // which is s0.f = Quotient, s1.f = Denominator, s2.f = Numerator. The
906       // intrinsic has the numerator as the first operand to match a normal
907       // division operation.
908
909       SDValue Src0 = Param->isAllOnesValue() ? Numerator : Denominator;
910
911       return DAG.getNode(AMDGPUISD::DIV_SCALE, DL, Op->getVTList(), Src0,
912                          Denominator, Numerator);
913     }
914
915     case Intrinsic::AMDGPU_div_fmas:
916       // FIXME: Dropping bool parameter. Work is needed to support the implicit
917       // read from VCC.
918       return DAG.getNode(AMDGPUISD::DIV_FMAS, DL, VT,
919                          Op.getOperand(1), Op.getOperand(2), Op.getOperand(3));
920
921     case Intrinsic::AMDGPU_div_fixup:
922       return DAG.getNode(AMDGPUISD::DIV_FIXUP, DL, VT,
923                          Op.getOperand(1), Op.getOperand(2), Op.getOperand(3));
924
925     case Intrinsic::AMDGPU_trig_preop:
926       return DAG.getNode(AMDGPUISD::TRIG_PREOP, DL, VT,
927                          Op.getOperand(1), Op.getOperand(2));
928
929     case Intrinsic::AMDGPU_rcp:
930       return DAG.getNode(AMDGPUISD::RCP, DL, VT, Op.getOperand(1));
931
932     case Intrinsic::AMDGPU_rsq:
933       return DAG.getNode(AMDGPUISD::RSQ, DL, VT, Op.getOperand(1));
934
935     case AMDGPUIntrinsic::AMDGPU_legacy_rsq:
936       return DAG.getNode(AMDGPUISD::RSQ_LEGACY, DL, VT, Op.getOperand(1));
937
938     case Intrinsic::AMDGPU_rsq_clamped:
939       if (Subtarget->getGeneration() >= AMDGPUSubtarget::VOLCANIC_ISLANDS) {
940         Type *Type = VT.getTypeForEVT(*DAG.getContext());
941         APFloat Max = APFloat::getLargest(Type->getFltSemantics());
942         APFloat Min = APFloat::getLargest(Type->getFltSemantics(), true);
943
944         SDValue Rsq = DAG.getNode(AMDGPUISD::RSQ, DL, VT, Op.getOperand(1));
945         SDValue Tmp = DAG.getNode(ISD::FMINNUM, DL, VT, Rsq,
946                                   DAG.getConstantFP(Max, VT));
947         return DAG.getNode(ISD::FMAXNUM, DL, VT, Tmp,
948                            DAG.getConstantFP(Min, VT));
949       } else {
950         return DAG.getNode(AMDGPUISD::RSQ_CLAMPED, DL, VT, Op.getOperand(1));
951       }
952
953     case Intrinsic::AMDGPU_ldexp:
954       return DAG.getNode(AMDGPUISD::LDEXP, DL, VT, Op.getOperand(1),
955                                                    Op.getOperand(2));
956
957     case AMDGPUIntrinsic::AMDGPU_imax:
958       return DAG.getNode(AMDGPUISD::SMAX, DL, VT, Op.getOperand(1),
959                                                   Op.getOperand(2));
960     case AMDGPUIntrinsic::AMDGPU_umax:
961       return DAG.getNode(AMDGPUISD::UMAX, DL, VT, Op.getOperand(1),
962                                                   Op.getOperand(2));
963     case AMDGPUIntrinsic::AMDGPU_imin:
964       return DAG.getNode(AMDGPUISD::SMIN, DL, VT, Op.getOperand(1),
965                                                   Op.getOperand(2));
966     case AMDGPUIntrinsic::AMDGPU_umin:
967       return DAG.getNode(AMDGPUISD::UMIN, DL, VT, Op.getOperand(1),
968                                                   Op.getOperand(2));
969
970     case AMDGPUIntrinsic::AMDGPU_umul24:
971       return DAG.getNode(AMDGPUISD::MUL_U24, DL, VT,
972                          Op.getOperand(1), Op.getOperand(2));
973
974     case AMDGPUIntrinsic::AMDGPU_imul24:
975       return DAG.getNode(AMDGPUISD::MUL_I24, DL, VT,
976                          Op.getOperand(1), Op.getOperand(2));
977
978     case AMDGPUIntrinsic::AMDGPU_umad24:
979       return DAG.getNode(AMDGPUISD::MAD_U24, DL, VT,
980                          Op.getOperand(1), Op.getOperand(2), Op.getOperand(3));
981
982     case AMDGPUIntrinsic::AMDGPU_imad24:
983       return DAG.getNode(AMDGPUISD::MAD_I24, DL, VT,
984                          Op.getOperand(1), Op.getOperand(2), Op.getOperand(3));
985
986     case AMDGPUIntrinsic::AMDGPU_cvt_f32_ubyte0:
987       return DAG.getNode(AMDGPUISD::CVT_F32_UBYTE0, DL, VT, Op.getOperand(1));
988
989     case AMDGPUIntrinsic::AMDGPU_cvt_f32_ubyte1:
990       return DAG.getNode(AMDGPUISD::CVT_F32_UBYTE1, DL, VT, Op.getOperand(1));
991
992     case AMDGPUIntrinsic::AMDGPU_cvt_f32_ubyte2:
993       return DAG.getNode(AMDGPUISD::CVT_F32_UBYTE2, DL, VT, Op.getOperand(1));
994
995     case AMDGPUIntrinsic::AMDGPU_cvt_f32_ubyte3:
996       return DAG.getNode(AMDGPUISD::CVT_F32_UBYTE3, DL, VT, Op.getOperand(1));
997
998     case AMDGPUIntrinsic::AMDGPU_bfe_i32:
999       return DAG.getNode(AMDGPUISD::BFE_I32, DL, VT,
1000                          Op.getOperand(1),
1001                          Op.getOperand(2),
1002                          Op.getOperand(3));
1003
1004     case AMDGPUIntrinsic::AMDGPU_bfe_u32:
1005       return DAG.getNode(AMDGPUISD::BFE_U32, DL, VT,
1006                          Op.getOperand(1),
1007                          Op.getOperand(2),
1008                          Op.getOperand(3));
1009
1010     case AMDGPUIntrinsic::AMDGPU_bfi:
1011       return DAG.getNode(AMDGPUISD::BFI, DL, VT,
1012                          Op.getOperand(1),
1013                          Op.getOperand(2),
1014                          Op.getOperand(3));
1015
1016     case AMDGPUIntrinsic::AMDGPU_bfm:
1017       return DAG.getNode(AMDGPUISD::BFM, DL, VT,
1018                          Op.getOperand(1),
1019                          Op.getOperand(2));
1020
1021     case AMDGPUIntrinsic::AMDGPU_brev:
1022       return DAG.getNode(AMDGPUISD::BREV, DL, VT, Op.getOperand(1));
1023
1024   case Intrinsic::AMDGPU_class:
1025     return DAG.getNode(AMDGPUISD::FP_CLASS, DL, VT,
1026                        Op.getOperand(1), Op.getOperand(2));
1027
1028     case AMDGPUIntrinsic::AMDIL_exp: // Legacy name.
1029       return DAG.getNode(ISD::FEXP2, DL, VT, Op.getOperand(1));
1030
1031     case AMDGPUIntrinsic::AMDIL_round_nearest: // Legacy name.
1032       return DAG.getNode(ISD::FRINT, DL, VT, Op.getOperand(1));
1033     case AMDGPUIntrinsic::AMDGPU_trunc: // Legacy name.
1034       return DAG.getNode(ISD::FTRUNC, DL, VT, Op.getOperand(1));
1035   }
1036 }
1037
1038 ///IABS(a) = SMAX(sub(0, a), a)
1039 SDValue AMDGPUTargetLowering::LowerIntrinsicIABS(SDValue Op,
1040                                                  SelectionDAG &DAG) const {
1041   SDLoc DL(Op);
1042   EVT VT = Op.getValueType();
1043   SDValue Neg = DAG.getNode(ISD::SUB, DL, VT, DAG.getConstant(0, VT),
1044                                               Op.getOperand(1));
1045
1046   return DAG.getNode(AMDGPUISD::SMAX, DL, VT, Neg, Op.getOperand(1));
1047 }
1048
1049 /// Linear Interpolation
1050 /// LRP(a, b, c) = muladd(a,  b, (1 - a) * c)
1051 SDValue AMDGPUTargetLowering::LowerIntrinsicLRP(SDValue Op,
1052                                                 SelectionDAG &DAG) const {
1053   SDLoc DL(Op);
1054   EVT VT = Op.getValueType();
1055   SDValue OneSubA = DAG.getNode(ISD::FSUB, DL, VT,
1056                                 DAG.getConstantFP(1.0f, MVT::f32),
1057                                 Op.getOperand(1));
1058   SDValue OneSubAC = DAG.getNode(ISD::FMUL, DL, VT, OneSubA,
1059                                                     Op.getOperand(3));
1060   return DAG.getNode(ISD::FADD, DL, VT,
1061       DAG.getNode(ISD::FMUL, DL, VT, Op.getOperand(1), Op.getOperand(2)),
1062       OneSubAC);
1063 }
1064
1065 /// \brief Generate Min/Max node
1066 SDValue AMDGPUTargetLowering::CombineFMinMaxLegacy(SDLoc DL,
1067                                                    EVT VT,
1068                                                    SDValue LHS,
1069                                                    SDValue RHS,
1070                                                    SDValue True,
1071                                                    SDValue False,
1072                                                    SDValue CC,
1073                                                    DAGCombinerInfo &DCI) const {
1074   if (Subtarget->getGeneration() >= AMDGPUSubtarget::VOLCANIC_ISLANDS)
1075     return SDValue();
1076
1077   if (!(LHS == True && RHS == False) && !(LHS == False && RHS == True))
1078     return SDValue();
1079
1080   SelectionDAG &DAG = DCI.DAG;
1081   ISD::CondCode CCOpcode = cast<CondCodeSDNode>(CC)->get();
1082   switch (CCOpcode) {
1083   case ISD::SETOEQ:
1084   case ISD::SETONE:
1085   case ISD::SETUNE:
1086   case ISD::SETNE:
1087   case ISD::SETUEQ:
1088   case ISD::SETEQ:
1089   case ISD::SETFALSE:
1090   case ISD::SETFALSE2:
1091   case ISD::SETTRUE:
1092   case ISD::SETTRUE2:
1093   case ISD::SETUO:
1094   case ISD::SETO:
1095     break;
1096   case ISD::SETULE:
1097   case ISD::SETULT: {
1098     if (LHS == True)
1099       return DAG.getNode(AMDGPUISD::FMIN_LEGACY, DL, VT, RHS, LHS);
1100     return DAG.getNode(AMDGPUISD::FMAX_LEGACY, DL, VT, LHS, RHS);
1101   }
1102   case ISD::SETOLE:
1103   case ISD::SETOLT:
1104   case ISD::SETLE:
1105   case ISD::SETLT: {
1106     // Ordered. Assume ordered for undefined.
1107
1108     // Only do this after legalization to avoid interfering with other combines
1109     // which might occur.
1110     if (DCI.getDAGCombineLevel() < AfterLegalizeDAG &&
1111         !DCI.isCalledByLegalizer())
1112       return SDValue();
1113
1114     // We need to permute the operands to get the correct NaN behavior. The
1115     // selected operand is the second one based on the failing compare with NaN,
1116     // so permute it based on the compare type the hardware uses.
1117     if (LHS == True)
1118       return DAG.getNode(AMDGPUISD::FMIN_LEGACY, DL, VT, LHS, RHS);
1119     return DAG.getNode(AMDGPUISD::FMAX_LEGACY, DL, VT, RHS, LHS);
1120   }
1121   case ISD::SETUGE:
1122   case ISD::SETUGT: {
1123     if (LHS == True)
1124       return DAG.getNode(AMDGPUISD::FMAX_LEGACY, DL, VT, RHS, LHS);
1125     return DAG.getNode(AMDGPUISD::FMIN_LEGACY, DL, VT, LHS, RHS);
1126   }
1127   case ISD::SETGT:
1128   case ISD::SETGE:
1129   case ISD::SETOGE:
1130   case ISD::SETOGT: {
1131     if (DCI.getDAGCombineLevel() < AfterLegalizeDAG &&
1132         !DCI.isCalledByLegalizer())
1133       return SDValue();
1134
1135     if (LHS == True)
1136       return DAG.getNode(AMDGPUISD::FMAX_LEGACY, DL, VT, LHS, RHS);
1137     return DAG.getNode(AMDGPUISD::FMIN_LEGACY, DL, VT, RHS, LHS);
1138   }
1139   case ISD::SETCC_INVALID:
1140     llvm_unreachable("Invalid setcc condcode!");
1141   }
1142   return SDValue();
1143 }
1144
1145 /// \brief Generate Min/Max node
1146 SDValue AMDGPUTargetLowering::CombineIMinMax(SDLoc DL,
1147                                              EVT VT,
1148                                              SDValue LHS,
1149                                              SDValue RHS,
1150                                              SDValue True,
1151                                              SDValue False,
1152                                              SDValue CC,
1153                                              SelectionDAG &DAG) const {
1154   if (!(LHS == True && RHS == False) && !(LHS == False && RHS == True))
1155     return SDValue();
1156
1157   ISD::CondCode CCOpcode = cast<CondCodeSDNode>(CC)->get();
1158   switch (CCOpcode) {
1159   case ISD::SETULE:
1160   case ISD::SETULT: {
1161     unsigned Opc = (LHS == True) ? AMDGPUISD::UMIN : AMDGPUISD::UMAX;
1162     return DAG.getNode(Opc, DL, VT, LHS, RHS);
1163   }
1164   case ISD::SETLE:
1165   case ISD::SETLT: {
1166     unsigned Opc = (LHS == True) ? AMDGPUISD::SMIN : AMDGPUISD::SMAX;
1167     return DAG.getNode(Opc, DL, VT, LHS, RHS);
1168   }
1169   case ISD::SETGT:
1170   case ISD::SETGE: {
1171     unsigned Opc = (LHS == True) ? AMDGPUISD::SMAX : AMDGPUISD::SMIN;
1172     return DAG.getNode(Opc, DL, VT, LHS, RHS);
1173   }
1174   case ISD::SETUGE:
1175   case ISD::SETUGT: {
1176     unsigned Opc = (LHS == True) ? AMDGPUISD::UMAX : AMDGPUISD::UMIN;
1177     return DAG.getNode(Opc, DL, VT, LHS, RHS);
1178   }
1179   default:
1180     return SDValue();
1181   }
1182 }
1183
1184 SDValue AMDGPUTargetLowering::ScalarizeVectorLoad(const SDValue Op,
1185                                                   SelectionDAG &DAG) const {
1186   LoadSDNode *Load = cast<LoadSDNode>(Op);
1187   EVT MemVT = Load->getMemoryVT();
1188   EVT MemEltVT = MemVT.getVectorElementType();
1189
1190   EVT LoadVT = Op.getValueType();
1191   EVT EltVT = LoadVT.getVectorElementType();
1192   EVT PtrVT = Load->getBasePtr().getValueType();
1193
1194   unsigned NumElts = Load->getMemoryVT().getVectorNumElements();
1195   SmallVector<SDValue, 8> Loads;
1196   SmallVector<SDValue, 8> Chains;
1197
1198   SDLoc SL(Op);
1199   unsigned MemEltSize = MemEltVT.getStoreSize();
1200   MachinePointerInfo SrcValue(Load->getMemOperand()->getValue());
1201
1202   for (unsigned i = 0; i < NumElts; ++i) {
1203     SDValue Ptr = DAG.getNode(ISD::ADD, SL, PtrVT, Load->getBasePtr(),
1204                               DAG.getConstant(i * MemEltSize, PtrVT));
1205
1206     SDValue NewLoad
1207       = DAG.getExtLoad(Load->getExtensionType(), SL, EltVT,
1208                        Load->getChain(), Ptr,
1209                        SrcValue.getWithOffset(i * MemEltSize),
1210                        MemEltVT, Load->isVolatile(), Load->isNonTemporal(),
1211                        Load->isInvariant(), Load->getAlignment());
1212     Loads.push_back(NewLoad.getValue(0));
1213     Chains.push_back(NewLoad.getValue(1));
1214   }
1215
1216   SDValue Ops[] = {
1217     DAG.getNode(ISD::BUILD_VECTOR, SL, LoadVT, Loads),
1218     DAG.getNode(ISD::TokenFactor, SL, MVT::Other, Chains)
1219   };
1220
1221   return DAG.getMergeValues(Ops, SL);
1222 }
1223
1224 SDValue AMDGPUTargetLowering::SplitVectorLoad(const SDValue Op,
1225                                               SelectionDAG &DAG) const {
1226   EVT VT = Op.getValueType();
1227
1228   // If this is a 2 element vector, we really want to scalarize and not create
1229   // weird 1 element vectors.
1230   if (VT.getVectorNumElements() == 2)
1231     return ScalarizeVectorLoad(Op, DAG);
1232
1233   LoadSDNode *Load = cast<LoadSDNode>(Op);
1234   SDValue BasePtr = Load->getBasePtr();
1235   EVT PtrVT = BasePtr.getValueType();
1236   EVT MemVT = Load->getMemoryVT();
1237   SDLoc SL(Op);
1238   MachinePointerInfo SrcValue(Load->getMemOperand()->getValue());
1239
1240   EVT LoVT, HiVT;
1241   EVT LoMemVT, HiMemVT;
1242   SDValue Lo, Hi;
1243
1244   std::tie(LoVT, HiVT) = DAG.GetSplitDestVTs(VT);
1245   std::tie(LoMemVT, HiMemVT) = DAG.GetSplitDestVTs(MemVT);
1246   std::tie(Lo, Hi) = DAG.SplitVector(Op, SL, LoVT, HiVT);
1247   SDValue LoLoad
1248     = DAG.getExtLoad(Load->getExtensionType(), SL, LoVT,
1249                      Load->getChain(), BasePtr,
1250                      SrcValue,
1251                      LoMemVT, Load->isVolatile(), Load->isNonTemporal(),
1252                      Load->isInvariant(), Load->getAlignment());
1253
1254   SDValue HiPtr = DAG.getNode(ISD::ADD, SL, PtrVT, BasePtr,
1255                               DAG.getConstant(LoMemVT.getStoreSize(), PtrVT));
1256
1257   SDValue HiLoad
1258     = DAG.getExtLoad(Load->getExtensionType(), SL, HiVT,
1259                      Load->getChain(), HiPtr,
1260                      SrcValue.getWithOffset(LoMemVT.getStoreSize()),
1261                      HiMemVT, Load->isVolatile(), Load->isNonTemporal(),
1262                      Load->isInvariant(), Load->getAlignment());
1263
1264   SDValue Ops[] = {
1265     DAG.getNode(ISD::CONCAT_VECTORS, SL, VT, LoLoad, HiLoad),
1266     DAG.getNode(ISD::TokenFactor, SL, MVT::Other,
1267                 LoLoad.getValue(1), HiLoad.getValue(1))
1268   };
1269
1270   return DAG.getMergeValues(Ops, SL);
1271 }
1272
1273 SDValue AMDGPUTargetLowering::MergeVectorStore(const SDValue &Op,
1274                                                SelectionDAG &DAG) const {
1275   StoreSDNode *Store = cast<StoreSDNode>(Op);
1276   EVT MemVT = Store->getMemoryVT();
1277   unsigned MemBits = MemVT.getSizeInBits();
1278
1279   // Byte stores are really expensive, so if possible, try to pack 32-bit vector
1280   // truncating store into an i32 store.
1281   // XXX: We could also handle optimize other vector bitwidths.
1282   if (!MemVT.isVector() || MemBits > 32) {
1283     return SDValue();
1284   }
1285
1286   SDLoc DL(Op);
1287   SDValue Value = Store->getValue();
1288   EVT VT = Value.getValueType();
1289   EVT ElemVT = VT.getVectorElementType();
1290   SDValue Ptr = Store->getBasePtr();
1291   EVT MemEltVT = MemVT.getVectorElementType();
1292   unsigned MemEltBits = MemEltVT.getSizeInBits();
1293   unsigned MemNumElements = MemVT.getVectorNumElements();
1294   unsigned PackedSize = MemVT.getStoreSizeInBits();
1295   SDValue Mask = DAG.getConstant((1 << MemEltBits) - 1, MVT::i32);
1296
1297   assert(Value.getValueType().getScalarSizeInBits() >= 32);
1298
1299   SDValue PackedValue;
1300   for (unsigned i = 0; i < MemNumElements; ++i) {
1301     SDValue Elt = DAG.getNode(ISD::EXTRACT_VECTOR_ELT, DL, ElemVT, Value,
1302                               DAG.getConstant(i, MVT::i32));
1303     Elt = DAG.getZExtOrTrunc(Elt, DL, MVT::i32);
1304     Elt = DAG.getNode(ISD::AND, DL, MVT::i32, Elt, Mask); // getZeroExtendInReg
1305
1306     SDValue Shift = DAG.getConstant(MemEltBits * i, MVT::i32);
1307     Elt = DAG.getNode(ISD::SHL, DL, MVT::i32, Elt, Shift);
1308
1309     if (i == 0) {
1310       PackedValue = Elt;
1311     } else {
1312       PackedValue = DAG.getNode(ISD::OR, DL, MVT::i32, PackedValue, Elt);
1313     }
1314   }
1315
1316   if (PackedSize < 32) {
1317     EVT PackedVT = EVT::getIntegerVT(*DAG.getContext(), PackedSize);
1318     return DAG.getTruncStore(Store->getChain(), DL, PackedValue, Ptr,
1319                              Store->getMemOperand()->getPointerInfo(),
1320                              PackedVT,
1321                              Store->isNonTemporal(), Store->isVolatile(),
1322                              Store->getAlignment());
1323   }
1324
1325   return DAG.getStore(Store->getChain(), DL, PackedValue, Ptr,
1326                       Store->getMemOperand()->getPointerInfo(),
1327                       Store->isVolatile(),  Store->isNonTemporal(),
1328                       Store->getAlignment());
1329 }
1330
1331 SDValue AMDGPUTargetLowering::ScalarizeVectorStore(SDValue Op,
1332                                                    SelectionDAG &DAG) const {
1333   StoreSDNode *Store = cast<StoreSDNode>(Op);
1334   EVT MemEltVT = Store->getMemoryVT().getVectorElementType();
1335   EVT EltVT = Store->getValue().getValueType().getVectorElementType();
1336   EVT PtrVT = Store->getBasePtr().getValueType();
1337   unsigned NumElts = Store->getMemoryVT().getVectorNumElements();
1338   SDLoc SL(Op);
1339
1340   SmallVector<SDValue, 8> Chains;
1341
1342   unsigned EltSize = MemEltVT.getStoreSize();
1343   MachinePointerInfo SrcValue(Store->getMemOperand()->getValue());
1344
1345   for (unsigned i = 0, e = NumElts; i != e; ++i) {
1346     SDValue Val = DAG.getNode(ISD::EXTRACT_VECTOR_ELT, SL, EltVT,
1347                               Store->getValue(),
1348                               DAG.getConstant(i, MVT::i32));
1349
1350     SDValue Offset = DAG.getConstant(i * MemEltVT.getStoreSize(), PtrVT);
1351     SDValue Ptr = DAG.getNode(ISD::ADD, SL, PtrVT, Store->getBasePtr(), Offset);
1352     SDValue NewStore =
1353       DAG.getTruncStore(Store->getChain(), SL, Val, Ptr,
1354                         SrcValue.getWithOffset(i * EltSize),
1355                         MemEltVT, Store->isNonTemporal(), Store->isVolatile(),
1356                         Store->getAlignment());
1357     Chains.push_back(NewStore);
1358   }
1359
1360   return DAG.getNode(ISD::TokenFactor, SL, MVT::Other, Chains);
1361 }
1362
1363 SDValue AMDGPUTargetLowering::SplitVectorStore(SDValue Op,
1364                                                SelectionDAG &DAG) const {
1365   StoreSDNode *Store = cast<StoreSDNode>(Op);
1366   SDValue Val = Store->getValue();
1367   EVT VT = Val.getValueType();
1368
1369   // If this is a 2 element vector, we really want to scalarize and not create
1370   // weird 1 element vectors.
1371   if (VT.getVectorNumElements() == 2)
1372     return ScalarizeVectorStore(Op, DAG);
1373
1374   EVT MemVT = Store->getMemoryVT();
1375   SDValue Chain = Store->getChain();
1376   SDValue BasePtr = Store->getBasePtr();
1377   SDLoc SL(Op);
1378
1379   EVT LoVT, HiVT;
1380   EVT LoMemVT, HiMemVT;
1381   SDValue Lo, Hi;
1382
1383   std::tie(LoVT, HiVT) = DAG.GetSplitDestVTs(VT);
1384   std::tie(LoMemVT, HiMemVT) = DAG.GetSplitDestVTs(MemVT);
1385   std::tie(Lo, Hi) = DAG.SplitVector(Val, SL, LoVT, HiVT);
1386
1387   EVT PtrVT = BasePtr.getValueType();
1388   SDValue HiPtr = DAG.getNode(ISD::ADD, SL, PtrVT, BasePtr,
1389                               DAG.getConstant(LoMemVT.getStoreSize(), PtrVT));
1390
1391   MachinePointerInfo SrcValue(Store->getMemOperand()->getValue());
1392   SDValue LoStore
1393     = DAG.getTruncStore(Chain, SL, Lo,
1394                         BasePtr,
1395                         SrcValue,
1396                         LoMemVT,
1397                         Store->isNonTemporal(),
1398                         Store->isVolatile(),
1399                         Store->getAlignment());
1400   SDValue HiStore
1401     = DAG.getTruncStore(Chain, SL, Hi,
1402                         HiPtr,
1403                         SrcValue.getWithOffset(LoMemVT.getStoreSize()),
1404                         HiMemVT,
1405                         Store->isNonTemporal(),
1406                         Store->isVolatile(),
1407                         Store->getAlignment());
1408
1409   return DAG.getNode(ISD::TokenFactor, SL, MVT::Other, LoStore, HiStore);
1410 }
1411
1412
1413 SDValue AMDGPUTargetLowering::LowerLOAD(SDValue Op, SelectionDAG &DAG) const {
1414   SDLoc DL(Op);
1415   LoadSDNode *Load = cast<LoadSDNode>(Op);
1416   ISD::LoadExtType ExtType = Load->getExtensionType();
1417   EVT VT = Op.getValueType();
1418   EVT MemVT = Load->getMemoryVT();
1419
1420   if (ExtType == ISD::NON_EXTLOAD && VT.getSizeInBits() < 32) {
1421     assert(VT == MVT::i1 && "Only i1 non-extloads expected");
1422     // FIXME: Copied from PPC
1423     // First, load into 32 bits, then truncate to 1 bit.
1424
1425     SDValue Chain = Load->getChain();
1426     SDValue BasePtr = Load->getBasePtr();
1427     MachineMemOperand *MMO = Load->getMemOperand();
1428
1429     SDValue NewLD = DAG.getExtLoad(ISD::EXTLOAD, DL, MVT::i32, Chain,
1430                                    BasePtr, MVT::i8, MMO);
1431
1432     SDValue Ops[] = {
1433       DAG.getNode(ISD::TRUNCATE, DL, VT, NewLD),
1434       NewLD.getValue(1)
1435     };
1436
1437     return DAG.getMergeValues(Ops, DL);
1438   }
1439
1440   if (Subtarget->getGeneration() >= AMDGPUSubtarget::SOUTHERN_ISLANDS ||
1441       Load->getAddressSpace() != AMDGPUAS::PRIVATE_ADDRESS ||
1442       ExtType == ISD::NON_EXTLOAD || Load->getMemoryVT().bitsGE(MVT::i32))
1443     return SDValue();
1444
1445
1446   SDValue Ptr = DAG.getNode(ISD::SRL, DL, MVT::i32, Load->getBasePtr(),
1447                             DAG.getConstant(2, MVT::i32));
1448   SDValue Ret = DAG.getNode(AMDGPUISD::REGISTER_LOAD, DL, Op.getValueType(),
1449                             Load->getChain(), Ptr,
1450                             DAG.getTargetConstant(0, MVT::i32),
1451                             Op.getOperand(2));
1452   SDValue ByteIdx = DAG.getNode(ISD::AND, DL, MVT::i32,
1453                                 Load->getBasePtr(),
1454                                 DAG.getConstant(0x3, MVT::i32));
1455   SDValue ShiftAmt = DAG.getNode(ISD::SHL, DL, MVT::i32, ByteIdx,
1456                                  DAG.getConstant(3, MVT::i32));
1457
1458   Ret = DAG.getNode(ISD::SRL, DL, MVT::i32, Ret, ShiftAmt);
1459
1460   EVT MemEltVT = MemVT.getScalarType();
1461   if (ExtType == ISD::SEXTLOAD) {
1462     SDValue MemEltVTNode = DAG.getValueType(MemEltVT);
1463
1464     SDValue Ops[] = {
1465       DAG.getNode(ISD::SIGN_EXTEND_INREG, DL, MVT::i32, Ret, MemEltVTNode),
1466       Load->getChain()
1467     };
1468
1469     return DAG.getMergeValues(Ops, DL);
1470   }
1471
1472   SDValue Ops[] = {
1473     DAG.getZeroExtendInReg(Ret, DL, MemEltVT),
1474     Load->getChain()
1475   };
1476
1477   return DAG.getMergeValues(Ops, DL);
1478 }
1479
1480 SDValue AMDGPUTargetLowering::LowerSTORE(SDValue Op, SelectionDAG &DAG) const {
1481   SDLoc DL(Op);
1482   SDValue Result = AMDGPUTargetLowering::MergeVectorStore(Op, DAG);
1483   if (Result.getNode()) {
1484     return Result;
1485   }
1486
1487   StoreSDNode *Store = cast<StoreSDNode>(Op);
1488   SDValue Chain = Store->getChain();
1489   if ((Store->getAddressSpace() == AMDGPUAS::LOCAL_ADDRESS ||
1490        Store->getAddressSpace() == AMDGPUAS::PRIVATE_ADDRESS) &&
1491       Store->getValue().getValueType().isVector()) {
1492     return ScalarizeVectorStore(Op, DAG);
1493   }
1494
1495   EVT MemVT = Store->getMemoryVT();
1496   if (Store->getAddressSpace() == AMDGPUAS::PRIVATE_ADDRESS &&
1497       MemVT.bitsLT(MVT::i32)) {
1498     unsigned Mask = 0;
1499     if (Store->getMemoryVT() == MVT::i8) {
1500       Mask = 0xff;
1501     } else if (Store->getMemoryVT() == MVT::i16) {
1502       Mask = 0xffff;
1503     }
1504     SDValue BasePtr = Store->getBasePtr();
1505     SDValue Ptr = DAG.getNode(ISD::SRL, DL, MVT::i32, BasePtr,
1506                               DAG.getConstant(2, MVT::i32));
1507     SDValue Dst = DAG.getNode(AMDGPUISD::REGISTER_LOAD, DL, MVT::i32,
1508                               Chain, Ptr, DAG.getTargetConstant(0, MVT::i32));
1509
1510     SDValue ByteIdx = DAG.getNode(ISD::AND, DL, MVT::i32, BasePtr,
1511                                   DAG.getConstant(0x3, MVT::i32));
1512
1513     SDValue ShiftAmt = DAG.getNode(ISD::SHL, DL, MVT::i32, ByteIdx,
1514                                    DAG.getConstant(3, MVT::i32));
1515
1516     SDValue SExtValue = DAG.getNode(ISD::SIGN_EXTEND, DL, MVT::i32,
1517                                     Store->getValue());
1518
1519     SDValue MaskedValue = DAG.getZeroExtendInReg(SExtValue, DL, MemVT);
1520
1521     SDValue ShiftedValue = DAG.getNode(ISD::SHL, DL, MVT::i32,
1522                                        MaskedValue, ShiftAmt);
1523
1524     SDValue DstMask = DAG.getNode(ISD::SHL, DL, MVT::i32, DAG.getConstant(Mask, MVT::i32),
1525                                   ShiftAmt);
1526     DstMask = DAG.getNode(ISD::XOR, DL, MVT::i32, DstMask,
1527                           DAG.getConstant(0xffffffff, MVT::i32));
1528     Dst = DAG.getNode(ISD::AND, DL, MVT::i32, Dst, DstMask);
1529
1530     SDValue Value = DAG.getNode(ISD::OR, DL, MVT::i32, Dst, ShiftedValue);
1531     return DAG.getNode(AMDGPUISD::REGISTER_STORE, DL, MVT::Other,
1532                        Chain, Value, Ptr, DAG.getTargetConstant(0, MVT::i32));
1533   }
1534   return SDValue();
1535 }
1536
1537 // This is a shortcut for integer division because we have fast i32<->f32
1538 // conversions, and fast f32 reciprocal instructions. The fractional part of a
1539 // float is enough to accurately represent up to a 24-bit integer.
1540 SDValue AMDGPUTargetLowering::LowerDIVREM24(SDValue Op, SelectionDAG &DAG, bool sign) const {
1541   SDLoc DL(Op);
1542   EVT VT = Op.getValueType();
1543   SDValue LHS = Op.getOperand(0);
1544   SDValue RHS = Op.getOperand(1);
1545   MVT IntVT = MVT::i32;
1546   MVT FltVT = MVT::f32;
1547
1548   ISD::NodeType ToFp  = sign ? ISD::SINT_TO_FP : ISD::UINT_TO_FP;
1549   ISD::NodeType ToInt = sign ? ISD::FP_TO_SINT : ISD::FP_TO_UINT;
1550
1551   if (VT.isVector()) {
1552     unsigned NElts = VT.getVectorNumElements();
1553     IntVT = MVT::getVectorVT(MVT::i32, NElts);
1554     FltVT = MVT::getVectorVT(MVT::f32, NElts);
1555   }
1556
1557   unsigned BitSize = VT.getScalarType().getSizeInBits();
1558
1559   SDValue jq = DAG.getConstant(1, IntVT);
1560
1561   if (sign) {
1562     // char|short jq = ia ^ ib;
1563     jq = DAG.getNode(ISD::XOR, DL, VT, LHS, RHS);
1564
1565     // jq = jq >> (bitsize - 2)
1566     jq = DAG.getNode(ISD::SRA, DL, VT, jq, DAG.getConstant(BitSize - 2, VT));
1567
1568     // jq = jq | 0x1
1569     jq = DAG.getNode(ISD::OR, DL, VT, jq, DAG.getConstant(1, VT));
1570
1571     // jq = (int)jq
1572     jq = DAG.getSExtOrTrunc(jq, DL, IntVT);
1573   }
1574
1575   // int ia = (int)LHS;
1576   SDValue ia = sign ?
1577     DAG.getSExtOrTrunc(LHS, DL, IntVT) : DAG.getZExtOrTrunc(LHS, DL, IntVT);
1578
1579   // int ib, (int)RHS;
1580   SDValue ib = sign ?
1581     DAG.getSExtOrTrunc(RHS, DL, IntVT) : DAG.getZExtOrTrunc(RHS, DL, IntVT);
1582
1583   // float fa = (float)ia;
1584   SDValue fa = DAG.getNode(ToFp, DL, FltVT, ia);
1585
1586   // float fb = (float)ib;
1587   SDValue fb = DAG.getNode(ToFp, DL, FltVT, ib);
1588
1589   // float fq = native_divide(fa, fb);
1590   SDValue fq = DAG.getNode(ISD::FMUL, DL, FltVT,
1591                            fa, DAG.getNode(AMDGPUISD::RCP, DL, FltVT, fb));
1592
1593   // fq = trunc(fq);
1594   fq = DAG.getNode(ISD::FTRUNC, DL, FltVT, fq);
1595
1596   // float fqneg = -fq;
1597   SDValue fqneg = DAG.getNode(ISD::FNEG, DL, FltVT, fq);
1598
1599   // float fr = mad(fqneg, fb, fa);
1600   SDValue fr = DAG.getNode(ISD::FADD, DL, FltVT,
1601                            DAG.getNode(ISD::FMUL, DL, FltVT, fqneg, fb), fa);
1602
1603   // int iq = (int)fq;
1604   SDValue iq = DAG.getNode(ToInt, DL, IntVT, fq);
1605
1606   // fr = fabs(fr);
1607   fr = DAG.getNode(ISD::FABS, DL, FltVT, fr);
1608
1609   // fb = fabs(fb);
1610   fb = DAG.getNode(ISD::FABS, DL, FltVT, fb);
1611
1612   EVT SetCCVT = getSetCCResultType(*DAG.getContext(), VT);
1613
1614   // int cv = fr >= fb;
1615   SDValue cv = DAG.getSetCC(DL, SetCCVT, fr, fb, ISD::SETOGE);
1616
1617   // jq = (cv ? jq : 0);
1618   jq = DAG.getNode(ISD::SELECT, DL, VT, cv, jq, DAG.getConstant(0, VT));
1619
1620   // dst = trunc/extend to legal type
1621   iq = sign ? DAG.getSExtOrTrunc(iq, DL, VT) : DAG.getZExtOrTrunc(iq, DL, VT);
1622
1623   // dst = iq + jq;
1624   SDValue Div = DAG.getNode(ISD::ADD, DL, VT, iq, jq);
1625
1626   // Rem needs compensation, it's easier to recompute it
1627   SDValue Rem = DAG.getNode(ISD::MUL, DL, VT, Div, RHS);
1628   Rem = DAG.getNode(ISD::SUB, DL, VT, LHS, Rem);
1629
1630   SDValue Res[2] = {
1631     Div,
1632     Rem
1633   };
1634   return DAG.getMergeValues(Res, DL);
1635 }
1636
1637 void AMDGPUTargetLowering::LowerUDIVREM64(SDValue Op,
1638                                       SelectionDAG &DAG,
1639                                       SmallVectorImpl<SDValue> &Results) const {
1640   assert(Op.getValueType() == MVT::i64);
1641
1642   SDLoc DL(Op);
1643   EVT VT = Op.getValueType();
1644   EVT HalfVT = VT.getHalfSizedIntegerVT(*DAG.getContext());
1645
1646   SDValue one = DAG.getConstant(1, HalfVT);
1647   SDValue zero = DAG.getConstant(0, HalfVT);
1648
1649   //HiLo split
1650   SDValue LHS = Op.getOperand(0);
1651   SDValue LHS_Lo = DAG.getNode(ISD::EXTRACT_ELEMENT, DL, HalfVT, LHS, zero);
1652   SDValue LHS_Hi = DAG.getNode(ISD::EXTRACT_ELEMENT, DL, HalfVT, LHS, one);
1653
1654   SDValue RHS = Op.getOperand(1);
1655   SDValue RHS_Lo = DAG.getNode(ISD::EXTRACT_ELEMENT, DL, HalfVT, RHS, zero);
1656   SDValue RHS_Hi = DAG.getNode(ISD::EXTRACT_ELEMENT, DL, HalfVT, RHS, one);
1657
1658   if (VT == MVT::i64 &&
1659     DAG.MaskedValueIsZero(RHS, APInt::getHighBitsSet(64, 32)) &&
1660     DAG.MaskedValueIsZero(LHS, APInt::getHighBitsSet(64, 32))) {
1661
1662     SDValue Res = DAG.getNode(ISD::UDIVREM, DL, DAG.getVTList(HalfVT, HalfVT),
1663                               LHS_Lo, RHS_Lo);
1664
1665     SDValue DIV = DAG.getNode(ISD::BUILD_PAIR, DL, VT, Res.getValue(0), zero);
1666     SDValue REM = DAG.getNode(ISD::BUILD_PAIR, DL, VT, Res.getValue(1), zero);
1667     Results.push_back(DIV);
1668     Results.push_back(REM);
1669     return;
1670   }
1671
1672   // Get Speculative values
1673   SDValue DIV_Part = DAG.getNode(ISD::UDIV, DL, HalfVT, LHS_Hi, RHS_Lo);
1674   SDValue REM_Part = DAG.getNode(ISD::UREM, DL, HalfVT, LHS_Hi, RHS_Lo);
1675
1676   SDValue REM_Lo = DAG.getSelectCC(DL, RHS_Hi, zero, REM_Part, LHS_Hi, ISD::SETEQ);
1677   SDValue REM = DAG.getNode(ISD::BUILD_PAIR, DL, VT, REM_Lo, zero);
1678
1679   SDValue DIV_Hi = DAG.getSelectCC(DL, RHS_Hi, zero, DIV_Part, zero, ISD::SETEQ);
1680   SDValue DIV_Lo = zero;
1681
1682   const unsigned halfBitWidth = HalfVT.getSizeInBits();
1683
1684   for (unsigned i = 0; i < halfBitWidth; ++i) {
1685     const unsigned bitPos = halfBitWidth - i - 1;
1686     SDValue POS = DAG.getConstant(bitPos, HalfVT);
1687     // Get value of high bit
1688     // TODO: Remove the BFE part when the optimization is fixed
1689     SDValue HBit;
1690     if (halfBitWidth == 32 && Subtarget->hasBFE()) {
1691       HBit = DAG.getNode(AMDGPUISD::BFE_U32, DL, HalfVT, LHS_Lo, POS, one);
1692     } else {
1693       HBit = DAG.getNode(ISD::SRL, DL, HalfVT, LHS_Lo, POS);
1694       HBit = DAG.getNode(ISD::AND, DL, HalfVT, HBit, one);
1695     }
1696     HBit = DAG.getNode(ISD::ZERO_EXTEND, DL, VT, HBit);
1697
1698     // Shift
1699     REM = DAG.getNode(ISD::SHL, DL, VT, REM, DAG.getConstant(1, VT));
1700     // Add LHS high bit
1701     REM = DAG.getNode(ISD::OR, DL, VT, REM, HBit);
1702
1703     SDValue BIT = DAG.getConstant(1 << bitPos, HalfVT);
1704     SDValue realBIT = DAG.getSelectCC(DL, REM, RHS, BIT, zero, ISD::SETUGE);
1705
1706     DIV_Lo = DAG.getNode(ISD::OR, DL, HalfVT, DIV_Lo, realBIT);
1707
1708     // Update REM
1709     SDValue REM_sub = DAG.getNode(ISD::SUB, DL, VT, REM, RHS);
1710     REM = DAG.getSelectCC(DL, REM, RHS, REM_sub, REM, ISD::SETUGE);
1711   }
1712
1713   SDValue DIV = DAG.getNode(ISD::BUILD_PAIR, DL, VT, DIV_Lo, DIV_Hi);
1714   Results.push_back(DIV);
1715   Results.push_back(REM);
1716 }
1717
1718 SDValue AMDGPUTargetLowering::LowerUDIVREM(SDValue Op,
1719                                            SelectionDAG &DAG) const {
1720   SDLoc DL(Op);
1721   EVT VT = Op.getValueType();
1722
1723   if (VT == MVT::i64) {
1724     SmallVector<SDValue, 2> Results;
1725     LowerUDIVREM64(Op, DAG, Results);
1726     return DAG.getMergeValues(Results, DL);
1727   }
1728
1729   SDValue Num = Op.getOperand(0);
1730   SDValue Den = Op.getOperand(1);
1731
1732   if (VT == MVT::i32) {
1733     if (DAG.MaskedValueIsZero(Num, APInt::getHighBitsSet(32, 8)) &&
1734         DAG.MaskedValueIsZero(Den, APInt::getHighBitsSet(32, 8))) {
1735       // TODO: We technically could do this for i64, but shouldn't that just be
1736       // handled by something generally reducing 64-bit division on 32-bit
1737       // values to 32-bit?
1738       return LowerDIVREM24(Op, DAG, false);
1739     }
1740   }
1741
1742   // RCP =  URECIP(Den) = 2^32 / Den + e
1743   // e is rounding error.
1744   SDValue RCP = DAG.getNode(AMDGPUISD::URECIP, DL, VT, Den);
1745
1746   // RCP_LO = mul(RCP, Den) */
1747   SDValue RCP_LO = DAG.getNode(ISD::MUL, DL, VT, RCP, Den);
1748
1749   // RCP_HI = mulhu (RCP, Den) */
1750   SDValue RCP_HI = DAG.getNode(ISD::MULHU, DL, VT, RCP, Den);
1751
1752   // NEG_RCP_LO = -RCP_LO
1753   SDValue NEG_RCP_LO = DAG.getNode(ISD::SUB, DL, VT, DAG.getConstant(0, VT),
1754                                                      RCP_LO);
1755
1756   // ABS_RCP_LO = (RCP_HI == 0 ? NEG_RCP_LO : RCP_LO)
1757   SDValue ABS_RCP_LO = DAG.getSelectCC(DL, RCP_HI, DAG.getConstant(0, VT),
1758                                            NEG_RCP_LO, RCP_LO,
1759                                            ISD::SETEQ);
1760   // Calculate the rounding error from the URECIP instruction
1761   // E = mulhu(ABS_RCP_LO, RCP)
1762   SDValue E = DAG.getNode(ISD::MULHU, DL, VT, ABS_RCP_LO, RCP);
1763
1764   // RCP_A_E = RCP + E
1765   SDValue RCP_A_E = DAG.getNode(ISD::ADD, DL, VT, RCP, E);
1766
1767   // RCP_S_E = RCP - E
1768   SDValue RCP_S_E = DAG.getNode(ISD::SUB, DL, VT, RCP, E);
1769
1770   // Tmp0 = (RCP_HI == 0 ? RCP_A_E : RCP_SUB_E)
1771   SDValue Tmp0 = DAG.getSelectCC(DL, RCP_HI, DAG.getConstant(0, VT),
1772                                      RCP_A_E, RCP_S_E,
1773                                      ISD::SETEQ);
1774   // Quotient = mulhu(Tmp0, Num)
1775   SDValue Quotient = DAG.getNode(ISD::MULHU, DL, VT, Tmp0, Num);
1776
1777   // Num_S_Remainder = Quotient * Den
1778   SDValue Num_S_Remainder = DAG.getNode(ISD::MUL, DL, VT, Quotient, Den);
1779
1780   // Remainder = Num - Num_S_Remainder
1781   SDValue Remainder = DAG.getNode(ISD::SUB, DL, VT, Num, Num_S_Remainder);
1782
1783   // Remainder_GE_Den = (Remainder >= Den ? -1 : 0)
1784   SDValue Remainder_GE_Den = DAG.getSelectCC(DL, Remainder, Den,
1785                                                  DAG.getConstant(-1, VT),
1786                                                  DAG.getConstant(0, VT),
1787                                                  ISD::SETUGE);
1788   // Remainder_GE_Zero = (Num >= Num_S_Remainder ? -1 : 0)
1789   SDValue Remainder_GE_Zero = DAG.getSelectCC(DL, Num,
1790                                                   Num_S_Remainder,
1791                                                   DAG.getConstant(-1, VT),
1792                                                   DAG.getConstant(0, VT),
1793                                                   ISD::SETUGE);
1794   // Tmp1 = Remainder_GE_Den & Remainder_GE_Zero
1795   SDValue Tmp1 = DAG.getNode(ISD::AND, DL, VT, Remainder_GE_Den,
1796                                                Remainder_GE_Zero);
1797
1798   // Calculate Division result:
1799
1800   // Quotient_A_One = Quotient + 1
1801   SDValue Quotient_A_One = DAG.getNode(ISD::ADD, DL, VT, Quotient,
1802                                                          DAG.getConstant(1, VT));
1803
1804   // Quotient_S_One = Quotient - 1
1805   SDValue Quotient_S_One = DAG.getNode(ISD::SUB, DL, VT, Quotient,
1806                                                          DAG.getConstant(1, VT));
1807
1808   // Div = (Tmp1 == 0 ? Quotient : Quotient_A_One)
1809   SDValue Div = DAG.getSelectCC(DL, Tmp1, DAG.getConstant(0, VT),
1810                                      Quotient, Quotient_A_One, ISD::SETEQ);
1811
1812   // Div = (Remainder_GE_Zero == 0 ? Quotient_S_One : Div)
1813   Div = DAG.getSelectCC(DL, Remainder_GE_Zero, DAG.getConstant(0, VT),
1814                             Quotient_S_One, Div, ISD::SETEQ);
1815
1816   // Calculate Rem result:
1817
1818   // Remainder_S_Den = Remainder - Den
1819   SDValue Remainder_S_Den = DAG.getNode(ISD::SUB, DL, VT, Remainder, Den);
1820
1821   // Remainder_A_Den = Remainder + Den
1822   SDValue Remainder_A_Den = DAG.getNode(ISD::ADD, DL, VT, Remainder, Den);
1823
1824   // Rem = (Tmp1 == 0 ? Remainder : Remainder_S_Den)
1825   SDValue Rem = DAG.getSelectCC(DL, Tmp1, DAG.getConstant(0, VT),
1826                                     Remainder, Remainder_S_Den, ISD::SETEQ);
1827
1828   // Rem = (Remainder_GE_Zero == 0 ? Remainder_A_Den : Rem)
1829   Rem = DAG.getSelectCC(DL, Remainder_GE_Zero, DAG.getConstant(0, VT),
1830                             Remainder_A_Den, Rem, ISD::SETEQ);
1831   SDValue Ops[2] = {
1832     Div,
1833     Rem
1834   };
1835   return DAG.getMergeValues(Ops, DL);
1836 }
1837
1838 SDValue AMDGPUTargetLowering::LowerSDIVREM(SDValue Op,
1839                                            SelectionDAG &DAG) const {
1840   SDLoc DL(Op);
1841   EVT VT = Op.getValueType();
1842
1843   SDValue LHS = Op.getOperand(0);
1844   SDValue RHS = Op.getOperand(1);
1845
1846   SDValue Zero = DAG.getConstant(0, VT);
1847   SDValue NegOne = DAG.getConstant(-1, VT);
1848
1849   if (VT == MVT::i32 &&
1850       DAG.ComputeNumSignBits(LHS) > 8 &&
1851       DAG.ComputeNumSignBits(RHS) > 8) {
1852     return LowerDIVREM24(Op, DAG, true);
1853   }
1854   if (VT == MVT::i64 &&
1855       DAG.ComputeNumSignBits(LHS) > 32 &&
1856       DAG.ComputeNumSignBits(RHS) > 32) {
1857     EVT HalfVT = VT.getHalfSizedIntegerVT(*DAG.getContext());
1858
1859     //HiLo split
1860     SDValue LHS_Lo = DAG.getNode(ISD::EXTRACT_ELEMENT, DL, HalfVT, LHS, Zero);
1861     SDValue RHS_Lo = DAG.getNode(ISD::EXTRACT_ELEMENT, DL, HalfVT, RHS, Zero);
1862     SDValue DIVREM = DAG.getNode(ISD::SDIVREM, DL, DAG.getVTList(HalfVT, HalfVT),
1863                                  LHS_Lo, RHS_Lo);
1864     SDValue Res[2] = {
1865       DAG.getNode(ISD::SIGN_EXTEND, DL, VT, DIVREM.getValue(0)),
1866       DAG.getNode(ISD::SIGN_EXTEND, DL, VT, DIVREM.getValue(1))
1867     };
1868     return DAG.getMergeValues(Res, DL);
1869   }
1870
1871   SDValue LHSign = DAG.getSelectCC(DL, LHS, Zero, NegOne, Zero, ISD::SETLT);
1872   SDValue RHSign = DAG.getSelectCC(DL, RHS, Zero, NegOne, Zero, ISD::SETLT);
1873   SDValue DSign = DAG.getNode(ISD::XOR, DL, VT, LHSign, RHSign);
1874   SDValue RSign = LHSign; // Remainder sign is the same as LHS
1875
1876   LHS = DAG.getNode(ISD::ADD, DL, VT, LHS, LHSign);
1877   RHS = DAG.getNode(ISD::ADD, DL, VT, RHS, RHSign);
1878
1879   LHS = DAG.getNode(ISD::XOR, DL, VT, LHS, LHSign);
1880   RHS = DAG.getNode(ISD::XOR, DL, VT, RHS, RHSign);
1881
1882   SDValue Div = DAG.getNode(ISD::UDIVREM, DL, DAG.getVTList(VT, VT), LHS, RHS);
1883   SDValue Rem = Div.getValue(1);
1884
1885   Div = DAG.getNode(ISD::XOR, DL, VT, Div, DSign);
1886   Rem = DAG.getNode(ISD::XOR, DL, VT, Rem, RSign);
1887
1888   Div = DAG.getNode(ISD::SUB, DL, VT, Div, DSign);
1889   Rem = DAG.getNode(ISD::SUB, DL, VT, Rem, RSign);
1890
1891   SDValue Res[2] = {
1892     Div,
1893     Rem
1894   };
1895   return DAG.getMergeValues(Res, DL);
1896 }
1897
1898 // (frem x, y) -> (fsub x, (fmul (ftrunc (fdiv x, y)), y))
1899 SDValue AMDGPUTargetLowering::LowerFREM(SDValue Op, SelectionDAG &DAG) const {
1900   SDLoc SL(Op);
1901   EVT VT = Op.getValueType();
1902   SDValue X = Op.getOperand(0);
1903   SDValue Y = Op.getOperand(1);
1904
1905   SDValue Div = DAG.getNode(ISD::FDIV, SL, VT, X, Y);
1906   SDValue Floor = DAG.getNode(ISD::FTRUNC, SL, VT, Div);
1907   SDValue Mul = DAG.getNode(ISD::FMUL, SL, VT, Floor, Y);
1908
1909   return DAG.getNode(ISD::FSUB, SL, VT, X, Mul);
1910 }
1911
1912 SDValue AMDGPUTargetLowering::LowerFCEIL(SDValue Op, SelectionDAG &DAG) const {
1913   SDLoc SL(Op);
1914   SDValue Src = Op.getOperand(0);
1915
1916   // result = trunc(src)
1917   // if (src > 0.0 && src != result)
1918   //   result += 1.0
1919
1920   SDValue Trunc = DAG.getNode(ISD::FTRUNC, SL, MVT::f64, Src);
1921
1922   const SDValue Zero = DAG.getConstantFP(0.0, MVT::f64);
1923   const SDValue One = DAG.getConstantFP(1.0, MVT::f64);
1924
1925   EVT SetCCVT = getSetCCResultType(*DAG.getContext(), MVT::f64);
1926
1927   SDValue Lt0 = DAG.getSetCC(SL, SetCCVT, Src, Zero, ISD::SETOGT);
1928   SDValue NeTrunc = DAG.getSetCC(SL, SetCCVT, Src, Trunc, ISD::SETONE);
1929   SDValue And = DAG.getNode(ISD::AND, SL, SetCCVT, Lt0, NeTrunc);
1930
1931   SDValue Add = DAG.getNode(ISD::SELECT, SL, MVT::f64, And, One, Zero);
1932   return DAG.getNode(ISD::FADD, SL, MVT::f64, Trunc, Add);
1933 }
1934
1935 static SDValue extractF64Exponent(SDValue Hi, SDLoc SL, SelectionDAG &DAG) {
1936   const unsigned FractBits = 52;
1937   const unsigned ExpBits = 11;
1938
1939   SDValue ExpPart = DAG.getNode(AMDGPUISD::BFE_U32, SL, MVT::i32,
1940                                 Hi,
1941                                 DAG.getConstant(FractBits - 32, MVT::i32),
1942                                 DAG.getConstant(ExpBits, MVT::i32));
1943   SDValue Exp = DAG.getNode(ISD::SUB, SL, MVT::i32, ExpPart,
1944                             DAG.getConstant(1023, MVT::i32));
1945
1946   return Exp;
1947 }
1948
1949 SDValue AMDGPUTargetLowering::LowerFTRUNC(SDValue Op, SelectionDAG &DAG) const {
1950   SDLoc SL(Op);
1951   SDValue Src = Op.getOperand(0);
1952
1953   assert(Op.getValueType() == MVT::f64);
1954
1955   const SDValue Zero = DAG.getConstant(0, MVT::i32);
1956   const SDValue One = DAG.getConstant(1, MVT::i32);
1957
1958   SDValue VecSrc = DAG.getNode(ISD::BITCAST, SL, MVT::v2i32, Src);
1959
1960   // Extract the upper half, since this is where we will find the sign and
1961   // exponent.
1962   SDValue Hi = DAG.getNode(ISD::EXTRACT_VECTOR_ELT, SL, MVT::i32, VecSrc, One);
1963
1964   SDValue Exp = extractF64Exponent(Hi, SL, DAG);
1965
1966   const unsigned FractBits = 52;
1967
1968   // Extract the sign bit.
1969   const SDValue SignBitMask = DAG.getConstant(UINT32_C(1) << 31, MVT::i32);
1970   SDValue SignBit = DAG.getNode(ISD::AND, SL, MVT::i32, Hi, SignBitMask);
1971
1972   // Extend back to to 64-bits.
1973   SDValue SignBit64 = DAG.getNode(ISD::BUILD_VECTOR, SL, MVT::v2i32,
1974                                   Zero, SignBit);
1975   SignBit64 = DAG.getNode(ISD::BITCAST, SL, MVT::i64, SignBit64);
1976
1977   SDValue BcInt = DAG.getNode(ISD::BITCAST, SL, MVT::i64, Src);
1978   const SDValue FractMask
1979     = DAG.getConstant((UINT64_C(1) << FractBits) - 1, MVT::i64);
1980
1981   SDValue Shr = DAG.getNode(ISD::SRA, SL, MVT::i64, FractMask, Exp);
1982   SDValue Not = DAG.getNOT(SL, Shr, MVT::i64);
1983   SDValue Tmp0 = DAG.getNode(ISD::AND, SL, MVT::i64, BcInt, Not);
1984
1985   EVT SetCCVT = getSetCCResultType(*DAG.getContext(), MVT::i32);
1986
1987   const SDValue FiftyOne = DAG.getConstant(FractBits - 1, MVT::i32);
1988
1989   SDValue ExpLt0 = DAG.getSetCC(SL, SetCCVT, Exp, Zero, ISD::SETLT);
1990   SDValue ExpGt51 = DAG.getSetCC(SL, SetCCVT, Exp, FiftyOne, ISD::SETGT);
1991
1992   SDValue Tmp1 = DAG.getNode(ISD::SELECT, SL, MVT::i64, ExpLt0, SignBit64, Tmp0);
1993   SDValue Tmp2 = DAG.getNode(ISD::SELECT, SL, MVT::i64, ExpGt51, BcInt, Tmp1);
1994
1995   return DAG.getNode(ISD::BITCAST, SL, MVT::f64, Tmp2);
1996 }
1997
1998 SDValue AMDGPUTargetLowering::LowerFRINT(SDValue Op, SelectionDAG &DAG) const {
1999   SDLoc SL(Op);
2000   SDValue Src = Op.getOperand(0);
2001
2002   assert(Op.getValueType() == MVT::f64);
2003
2004   APFloat C1Val(APFloat::IEEEdouble, "0x1.0p+52");
2005   SDValue C1 = DAG.getConstantFP(C1Val, MVT::f64);
2006   SDValue CopySign = DAG.getNode(ISD::FCOPYSIGN, SL, MVT::f64, C1, Src);
2007
2008   SDValue Tmp1 = DAG.getNode(ISD::FADD, SL, MVT::f64, Src, CopySign);
2009   SDValue Tmp2 = DAG.getNode(ISD::FSUB, SL, MVT::f64, Tmp1, CopySign);
2010
2011   SDValue Fabs = DAG.getNode(ISD::FABS, SL, MVT::f64, Src);
2012
2013   APFloat C2Val(APFloat::IEEEdouble, "0x1.fffffffffffffp+51");
2014   SDValue C2 = DAG.getConstantFP(C2Val, MVT::f64);
2015
2016   EVT SetCCVT = getSetCCResultType(*DAG.getContext(), MVT::f64);
2017   SDValue Cond = DAG.getSetCC(SL, SetCCVT, Fabs, C2, ISD::SETOGT);
2018
2019   return DAG.getSelect(SL, MVT::f64, Cond, Src, Tmp2);
2020 }
2021
2022 SDValue AMDGPUTargetLowering::LowerFNEARBYINT(SDValue Op, SelectionDAG &DAG) const {
2023   // FNEARBYINT and FRINT are the same, except in their handling of FP
2024   // exceptions. Those aren't really meaningful for us, and OpenCL only has
2025   // rint, so just treat them as equivalent.
2026   return DAG.getNode(ISD::FRINT, SDLoc(Op), Op.getValueType(), Op.getOperand(0));
2027 }
2028
2029 // XXX - May require not supporting f32 denormals?
2030 SDValue AMDGPUTargetLowering::LowerFROUND32(SDValue Op, SelectionDAG &DAG) const {
2031   SDLoc SL(Op);
2032   SDValue X = Op.getOperand(0);
2033
2034   SDValue T = DAG.getNode(ISD::FTRUNC, SL, MVT::f32, X);
2035
2036   SDValue Diff = DAG.getNode(ISD::FSUB, SL, MVT::f32, X, T);
2037
2038   SDValue AbsDiff = DAG.getNode(ISD::FABS, SL, MVT::f32, Diff);
2039
2040   const SDValue Zero = DAG.getConstantFP(0.0, MVT::f32);
2041   const SDValue One = DAG.getConstantFP(1.0, MVT::f32);
2042   const SDValue Half = DAG.getConstantFP(0.5, MVT::f32);
2043
2044   SDValue SignOne = DAG.getNode(ISD::FCOPYSIGN, SL, MVT::f32, One, X);
2045
2046   EVT SetCCVT = getSetCCResultType(*DAG.getContext(), MVT::f32);
2047
2048   SDValue Cmp = DAG.getSetCC(SL, SetCCVT, AbsDiff, Half, ISD::SETOGE);
2049
2050   SDValue Sel = DAG.getNode(ISD::SELECT, SL, MVT::f32, Cmp, SignOne, Zero);
2051
2052   return DAG.getNode(ISD::FADD, SL, MVT::f32, T, Sel);
2053 }
2054
2055 SDValue AMDGPUTargetLowering::LowerFROUND64(SDValue Op, SelectionDAG &DAG) const {
2056   SDLoc SL(Op);
2057   SDValue X = Op.getOperand(0);
2058
2059   SDValue L = DAG.getNode(ISD::BITCAST, SL, MVT::i64, X);
2060
2061   const SDValue Zero = DAG.getConstant(0, MVT::i32);
2062   const SDValue One = DAG.getConstant(1, MVT::i32);
2063   const SDValue NegOne = DAG.getConstant(-1, MVT::i32);
2064   const SDValue FiftyOne = DAG.getConstant(51, MVT::i32);
2065   EVT SetCCVT = getSetCCResultType(*DAG.getContext(), MVT::i32);
2066
2067
2068   SDValue BC = DAG.getNode(ISD::BITCAST, SL, MVT::v2i32, X);
2069
2070   SDValue Hi = DAG.getNode(ISD::EXTRACT_VECTOR_ELT, SL, MVT::i32, BC, One);
2071
2072   SDValue Exp = extractF64Exponent(Hi, SL, DAG);
2073
2074   const SDValue Mask = DAG.getConstant(INT64_C(0x000fffffffffffff), MVT::i64);
2075
2076   SDValue M = DAG.getNode(ISD::SRA, SL, MVT::i64, Mask, Exp);
2077   SDValue D = DAG.getNode(ISD::SRA, SL, MVT::i64,
2078                           DAG.getConstant(INT64_C(0x0008000000000000), MVT::i64),
2079                           Exp);
2080
2081   SDValue Tmp0 = DAG.getNode(ISD::AND, SL, MVT::i64, L, M);
2082   SDValue Tmp1 = DAG.getSetCC(SL, SetCCVT,
2083                               DAG.getConstant(0, MVT::i64), Tmp0,
2084                               ISD::SETNE);
2085
2086   SDValue Tmp2 = DAG.getNode(ISD::SELECT, SL, MVT::i64, Tmp1,
2087                              D, DAG.getConstant(0, MVT::i64));
2088   SDValue K = DAG.getNode(ISD::ADD, SL, MVT::i64, L, Tmp2);
2089
2090   K = DAG.getNode(ISD::AND, SL, MVT::i64, K, DAG.getNOT(SL, M, MVT::i64));
2091   K = DAG.getNode(ISD::BITCAST, SL, MVT::f64, K);
2092
2093   SDValue ExpLt0 = DAG.getSetCC(SL, SetCCVT, Exp, Zero, ISD::SETLT);
2094   SDValue ExpGt51 = DAG.getSetCC(SL, SetCCVT, Exp, FiftyOne, ISD::SETGT);
2095   SDValue ExpEqNegOne = DAG.getSetCC(SL, SetCCVT, NegOne, Exp, ISD::SETEQ);
2096
2097   SDValue Mag = DAG.getNode(ISD::SELECT, SL, MVT::f64,
2098                             ExpEqNegOne,
2099                             DAG.getConstantFP(1.0, MVT::f64),
2100                             DAG.getConstantFP(0.0, MVT::f64));
2101
2102   SDValue S = DAG.getNode(ISD::FCOPYSIGN, SL, MVT::f64, Mag, X);
2103
2104   K = DAG.getNode(ISD::SELECT, SL, MVT::f64, ExpLt0, S, K);
2105   K = DAG.getNode(ISD::SELECT, SL, MVT::f64, ExpGt51, X, K);
2106
2107   return K;
2108 }
2109
2110 SDValue AMDGPUTargetLowering::LowerFROUND(SDValue Op, SelectionDAG &DAG) const {
2111   EVT VT = Op.getValueType();
2112
2113   if (VT == MVT::f32)
2114     return LowerFROUND32(Op, DAG);
2115
2116   if (VT == MVT::f64)
2117     return LowerFROUND64(Op, DAG);
2118
2119   llvm_unreachable("unhandled type");
2120 }
2121
2122 SDValue AMDGPUTargetLowering::LowerFFLOOR(SDValue Op, SelectionDAG &DAG) const {
2123   SDLoc SL(Op);
2124   SDValue Src = Op.getOperand(0);
2125
2126   // result = trunc(src);
2127   // if (src < 0.0 && src != result)
2128   //   result += -1.0.
2129
2130   SDValue Trunc = DAG.getNode(ISD::FTRUNC, SL, MVT::f64, Src);
2131
2132   const SDValue Zero = DAG.getConstantFP(0.0, MVT::f64);
2133   const SDValue NegOne = DAG.getConstantFP(-1.0, MVT::f64);
2134
2135   EVT SetCCVT = getSetCCResultType(*DAG.getContext(), MVT::f64);
2136
2137   SDValue Lt0 = DAG.getSetCC(SL, SetCCVT, Src, Zero, ISD::SETOLT);
2138   SDValue NeTrunc = DAG.getSetCC(SL, SetCCVT, Src, Trunc, ISD::SETONE);
2139   SDValue And = DAG.getNode(ISD::AND, SL, SetCCVT, Lt0, NeTrunc);
2140
2141   SDValue Add = DAG.getNode(ISD::SELECT, SL, MVT::f64, And, NegOne, Zero);
2142   return DAG.getNode(ISD::FADD, SL, MVT::f64, Trunc, Add);
2143 }
2144
2145 SDValue AMDGPUTargetLowering::LowerINT_TO_FP64(SDValue Op, SelectionDAG &DAG,
2146                                                bool Signed) const {
2147   SDLoc SL(Op);
2148   SDValue Src = Op.getOperand(0);
2149
2150   SDValue BC = DAG.getNode(ISD::BITCAST, SL, MVT::v2i32, Src);
2151
2152   SDValue Lo = DAG.getNode(ISD::EXTRACT_VECTOR_ELT, SL, MVT::i32, BC,
2153                            DAG.getConstant(0, MVT::i32));
2154   SDValue Hi = DAG.getNode(ISD::EXTRACT_VECTOR_ELT, SL, MVT::i32, BC,
2155                            DAG.getConstant(1, MVT::i32));
2156
2157   SDValue CvtHi = DAG.getNode(Signed ? ISD::SINT_TO_FP : ISD::UINT_TO_FP,
2158                               SL, MVT::f64, Hi);
2159
2160   SDValue CvtLo = DAG.getNode(ISD::UINT_TO_FP, SL, MVT::f64, Lo);
2161
2162   SDValue LdExp = DAG.getNode(AMDGPUISD::LDEXP, SL, MVT::f64, CvtHi,
2163                               DAG.getConstant(32, MVT::i32));
2164
2165   return DAG.getNode(ISD::FADD, SL, MVT::f64, LdExp, CvtLo);
2166 }
2167
2168 SDValue AMDGPUTargetLowering::LowerUINT_TO_FP(SDValue Op,
2169                                                SelectionDAG &DAG) const {
2170   SDValue S0 = Op.getOperand(0);
2171   if (S0.getValueType() != MVT::i64)
2172     return SDValue();
2173
2174   EVT DestVT = Op.getValueType();
2175   if (DestVT == MVT::f64)
2176     return LowerINT_TO_FP64(Op, DAG, false);
2177
2178   assert(DestVT == MVT::f32);
2179
2180   SDLoc DL(Op);
2181
2182   // f32 uint_to_fp i64
2183   SDValue Lo = DAG.getNode(ISD::EXTRACT_ELEMENT, DL, MVT::i32, S0,
2184                            DAG.getConstant(0, MVT::i32));
2185   SDValue FloatLo = DAG.getNode(ISD::UINT_TO_FP, DL, MVT::f32, Lo);
2186   SDValue Hi = DAG.getNode(ISD::EXTRACT_ELEMENT, DL, MVT::i32, S0,
2187                            DAG.getConstant(1, MVT::i32));
2188   SDValue FloatHi = DAG.getNode(ISD::UINT_TO_FP, DL, MVT::f32, Hi);
2189   FloatHi = DAG.getNode(ISD::FMUL, DL, MVT::f32, FloatHi,
2190                         DAG.getConstantFP(4294967296.0f, MVT::f32)); // 2^32
2191   return DAG.getNode(ISD::FADD, DL, MVT::f32, FloatLo, FloatHi);
2192 }
2193
2194 SDValue AMDGPUTargetLowering::LowerSINT_TO_FP(SDValue Op,
2195                                               SelectionDAG &DAG) const {
2196   SDValue Src = Op.getOperand(0);
2197   if (Src.getValueType() == MVT::i64 && Op.getValueType() == MVT::f64)
2198     return LowerINT_TO_FP64(Op, DAG, true);
2199
2200   return SDValue();
2201 }
2202
2203 SDValue AMDGPUTargetLowering::LowerFP64_TO_INT(SDValue Op, SelectionDAG &DAG,
2204                                                bool Signed) const {
2205   SDLoc SL(Op);
2206
2207   SDValue Src = Op.getOperand(0);
2208
2209   SDValue Trunc = DAG.getNode(ISD::FTRUNC, SL, MVT::f64, Src);
2210
2211   SDValue K0
2212     = DAG.getConstantFP(BitsToDouble(UINT64_C(0x3df0000000000000)), MVT::f64);
2213   SDValue K1
2214     = DAG.getConstantFP(BitsToDouble(UINT64_C(0xc1f0000000000000)), MVT::f64);
2215
2216   SDValue Mul = DAG.getNode(ISD::FMUL, SL, MVT::f64, Trunc, K0);
2217
2218   SDValue FloorMul = DAG.getNode(ISD::FFLOOR, SL, MVT::f64, Mul);
2219
2220
2221   SDValue Fma = DAG.getNode(ISD::FMA, SL, MVT::f64, FloorMul, K1, Trunc);
2222
2223   SDValue Hi = DAG.getNode(Signed ? ISD::FP_TO_SINT : ISD::FP_TO_UINT, SL,
2224                            MVT::i32, FloorMul);
2225   SDValue Lo = DAG.getNode(ISD::FP_TO_UINT, SL, MVT::i32, Fma);
2226
2227   SDValue Result = DAG.getNode(ISD::BUILD_VECTOR, SL, MVT::v2i32, Lo, Hi);
2228
2229   return DAG.getNode(ISD::BITCAST, SL, MVT::i64, Result);
2230 }
2231
2232 SDValue AMDGPUTargetLowering::LowerFP_TO_SINT(SDValue Op,
2233                                               SelectionDAG &DAG) const {
2234   SDValue Src = Op.getOperand(0);
2235
2236   if (Op.getValueType() == MVT::i64 && Src.getValueType() == MVT::f64)
2237     return LowerFP64_TO_INT(Op, DAG, true);
2238
2239   return SDValue();
2240 }
2241
2242 SDValue AMDGPUTargetLowering::LowerFP_TO_UINT(SDValue Op,
2243                                               SelectionDAG &DAG) const {
2244   SDValue Src = Op.getOperand(0);
2245
2246   if (Op.getValueType() == MVT::i64 && Src.getValueType() == MVT::f64)
2247     return LowerFP64_TO_INT(Op, DAG, false);
2248
2249   return SDValue();
2250 }
2251
2252 SDValue AMDGPUTargetLowering::LowerSIGN_EXTEND_INREG(SDValue Op,
2253                                                      SelectionDAG &DAG) const {
2254   EVT ExtraVT = cast<VTSDNode>(Op.getOperand(1))->getVT();
2255   MVT VT = Op.getSimpleValueType();
2256   MVT ScalarVT = VT.getScalarType();
2257
2258   if (!VT.isVector())
2259     return SDValue();
2260
2261   SDValue Src = Op.getOperand(0);
2262   SDLoc DL(Op);
2263
2264   // TODO: Don't scalarize on Evergreen?
2265   unsigned NElts = VT.getVectorNumElements();
2266   SmallVector<SDValue, 8> Args;
2267   DAG.ExtractVectorElements(Src, Args, 0, NElts);
2268
2269   SDValue VTOp = DAG.getValueType(ExtraVT.getScalarType());
2270   for (unsigned I = 0; I < NElts; ++I)
2271     Args[I] = DAG.getNode(ISD::SIGN_EXTEND_INREG, DL, ScalarVT, Args[I], VTOp);
2272
2273   return DAG.getNode(ISD::BUILD_VECTOR, DL, VT, Args);
2274 }
2275
2276 //===----------------------------------------------------------------------===//
2277 // Custom DAG optimizations
2278 //===----------------------------------------------------------------------===//
2279
2280 static bool isU24(SDValue Op, SelectionDAG &DAG) {
2281   APInt KnownZero, KnownOne;
2282   EVT VT = Op.getValueType();
2283   DAG.computeKnownBits(Op, KnownZero, KnownOne);
2284
2285   return (VT.getSizeInBits() - KnownZero.countLeadingOnes()) <= 24;
2286 }
2287
2288 static bool isI24(SDValue Op, SelectionDAG &DAG) {
2289   EVT VT = Op.getValueType();
2290
2291   // In order for this to be a signed 24-bit value, bit 23, must
2292   // be a sign bit.
2293   return VT.getSizeInBits() >= 24 && // Types less than 24-bit should be treated
2294                                      // as unsigned 24-bit values.
2295          (VT.getSizeInBits() - DAG.ComputeNumSignBits(Op)) < 24;
2296 }
2297
2298 static void simplifyI24(SDValue Op, TargetLowering::DAGCombinerInfo &DCI) {
2299
2300   SelectionDAG &DAG = DCI.DAG;
2301   const TargetLowering &TLI = DAG.getTargetLoweringInfo();
2302   EVT VT = Op.getValueType();
2303
2304   APInt Demanded = APInt::getLowBitsSet(VT.getSizeInBits(), 24);
2305   APInt KnownZero, KnownOne;
2306   TargetLowering::TargetLoweringOpt TLO(DAG, true, true);
2307   if (TLI.SimplifyDemandedBits(Op, Demanded, KnownZero, KnownOne, TLO))
2308     DCI.CommitTargetLoweringOpt(TLO);
2309 }
2310
2311 template <typename IntTy>
2312 static SDValue constantFoldBFE(SelectionDAG &DAG, IntTy Src0,
2313                                uint32_t Offset, uint32_t Width) {
2314   if (Width + Offset < 32) {
2315     uint32_t Shl = static_cast<uint32_t>(Src0) << (32 - Offset - Width);
2316     IntTy Result = static_cast<IntTy>(Shl) >> (32 - Width);
2317     return DAG.getConstant(Result, MVT::i32);
2318   }
2319
2320   return DAG.getConstant(Src0 >> Offset, MVT::i32);
2321 }
2322
2323 static bool usesAllNormalStores(SDNode *LoadVal) {
2324   for (SDNode::use_iterator I = LoadVal->use_begin(); !I.atEnd(); ++I) {
2325     if (!ISD::isNormalStore(*I))
2326       return false;
2327   }
2328
2329   return true;
2330 }
2331
2332 // If we have a copy of an illegal type, replace it with a load / store of an
2333 // equivalently sized legal type. This avoids intermediate bit pack / unpack
2334 // instructions emitted when handling extloads and truncstores. Ideally we could
2335 // recognize the pack / unpack pattern to eliminate it.
2336 SDValue AMDGPUTargetLowering::performStoreCombine(SDNode *N,
2337                                                   DAGCombinerInfo &DCI) const {
2338   if (!DCI.isBeforeLegalize())
2339     return SDValue();
2340
2341   StoreSDNode *SN = cast<StoreSDNode>(N);
2342   SDValue Value = SN->getValue();
2343   EVT VT = Value.getValueType();
2344
2345   if (isTypeLegal(VT) || SN->isVolatile() ||
2346       !ISD::isNormalLoad(Value.getNode()) || VT.getSizeInBits() < 8)
2347     return SDValue();
2348
2349   LoadSDNode *LoadVal = cast<LoadSDNode>(Value);
2350   if (LoadVal->isVolatile() || !usesAllNormalStores(LoadVal))
2351     return SDValue();
2352
2353   EVT MemVT = LoadVal->getMemoryVT();
2354
2355   SDLoc SL(N);
2356   SelectionDAG &DAG = DCI.DAG;
2357   EVT LoadVT = getEquivalentMemType(*DAG.getContext(), MemVT);
2358
2359   SDValue NewLoad = DAG.getLoad(ISD::UNINDEXED, ISD::NON_EXTLOAD,
2360                                 LoadVT, SL,
2361                                 LoadVal->getChain(),
2362                                 LoadVal->getBasePtr(),
2363                                 LoadVal->getOffset(),
2364                                 LoadVT,
2365                                 LoadVal->getMemOperand());
2366
2367   SDValue CastLoad = DAG.getNode(ISD::BITCAST, SL, VT, NewLoad.getValue(0));
2368   DCI.CombineTo(LoadVal, CastLoad, NewLoad.getValue(1), false);
2369
2370   return DAG.getStore(SN->getChain(), SL, NewLoad,
2371                       SN->getBasePtr(), SN->getMemOperand());
2372 }
2373
2374 SDValue AMDGPUTargetLowering::performMulCombine(SDNode *N,
2375                                                 DAGCombinerInfo &DCI) const {
2376   EVT VT = N->getValueType(0);
2377
2378   if (VT.isVector() || VT.getSizeInBits() > 32)
2379     return SDValue();
2380
2381   SelectionDAG &DAG = DCI.DAG;
2382   SDLoc DL(N);
2383
2384   SDValue N0 = N->getOperand(0);
2385   SDValue N1 = N->getOperand(1);
2386   SDValue Mul;
2387
2388   if (Subtarget->hasMulU24() && isU24(N0, DAG) && isU24(N1, DAG)) {
2389     N0 = DAG.getZExtOrTrunc(N0, DL, MVT::i32);
2390     N1 = DAG.getZExtOrTrunc(N1, DL, MVT::i32);
2391     Mul = DAG.getNode(AMDGPUISD::MUL_U24, DL, MVT::i32, N0, N1);
2392   } else if (Subtarget->hasMulI24() && isI24(N0, DAG) && isI24(N1, DAG)) {
2393     N0 = DAG.getSExtOrTrunc(N0, DL, MVT::i32);
2394     N1 = DAG.getSExtOrTrunc(N1, DL, MVT::i32);
2395     Mul = DAG.getNode(AMDGPUISD::MUL_I24, DL, MVT::i32, N0, N1);
2396   } else {
2397     return SDValue();
2398   }
2399
2400   // We need to use sext even for MUL_U24, because MUL_U24 is used
2401   // for signed multiply of 8 and 16-bit types.
2402   return DAG.getSExtOrTrunc(Mul, DL, VT);
2403 }
2404
2405 SDValue AMDGPUTargetLowering::PerformDAGCombine(SDNode *N,
2406                                                 DAGCombinerInfo &DCI) const {
2407   SelectionDAG &DAG = DCI.DAG;
2408   SDLoc DL(N);
2409
2410   switch(N->getOpcode()) {
2411     default: break;
2412     case ISD::MUL:
2413       return performMulCombine(N, DCI);
2414     case AMDGPUISD::MUL_I24:
2415     case AMDGPUISD::MUL_U24: {
2416       SDValue N0 = N->getOperand(0);
2417       SDValue N1 = N->getOperand(1);
2418       simplifyI24(N0, DCI);
2419       simplifyI24(N1, DCI);
2420       return SDValue();
2421     }
2422   case ISD::SELECT: {
2423     SDValue Cond = N->getOperand(0);
2424     if (Cond.getOpcode() == ISD::SETCC && Cond.hasOneUse()) {
2425       SDLoc DL(N);
2426       EVT VT = N->getValueType(0);
2427       SDValue LHS = Cond.getOperand(0);
2428       SDValue RHS = Cond.getOperand(1);
2429       SDValue CC = Cond.getOperand(2);
2430
2431       SDValue True = N->getOperand(1);
2432       SDValue False = N->getOperand(2);
2433
2434       if (VT == MVT::f32)
2435         return CombineFMinMaxLegacy(DL, VT, LHS, RHS, True, False, CC, DCI);
2436
2437       // TODO: Implement min / max Evergreen instructions.
2438       if (VT == MVT::i32 &&
2439           Subtarget->getGeneration() >= AMDGPUSubtarget::SOUTHERN_ISLANDS) {
2440         return CombineIMinMax(DL, VT, LHS, RHS, True, False, CC, DAG);
2441       }
2442     }
2443
2444     break;
2445   }
2446   case AMDGPUISD::BFE_I32:
2447   case AMDGPUISD::BFE_U32: {
2448     assert(!N->getValueType(0).isVector() &&
2449            "Vector handling of BFE not implemented");
2450     ConstantSDNode *Width = dyn_cast<ConstantSDNode>(N->getOperand(2));
2451     if (!Width)
2452       break;
2453
2454     uint32_t WidthVal = Width->getZExtValue() & 0x1f;
2455     if (WidthVal == 0)
2456       return DAG.getConstant(0, MVT::i32);
2457
2458     ConstantSDNode *Offset = dyn_cast<ConstantSDNode>(N->getOperand(1));
2459     if (!Offset)
2460       break;
2461
2462     SDValue BitsFrom = N->getOperand(0);
2463     uint32_t OffsetVal = Offset->getZExtValue() & 0x1f;
2464
2465     bool Signed = N->getOpcode() == AMDGPUISD::BFE_I32;
2466
2467     if (OffsetVal == 0) {
2468       // This is already sign / zero extended, so try to fold away extra BFEs.
2469       unsigned SignBits =  Signed ? (32 - WidthVal + 1) : (32 - WidthVal);
2470
2471       unsigned OpSignBits = DAG.ComputeNumSignBits(BitsFrom);
2472       if (OpSignBits >= SignBits)
2473         return BitsFrom;
2474
2475       EVT SmallVT = EVT::getIntegerVT(*DAG.getContext(), WidthVal);
2476       if (Signed) {
2477         // This is a sign_extend_inreg. Replace it to take advantage of existing
2478         // DAG Combines. If not eliminated, we will match back to BFE during
2479         // selection.
2480
2481         // TODO: The sext_inreg of extended types ends, although we can could
2482         // handle them in a single BFE.
2483         return DAG.getNode(ISD::SIGN_EXTEND_INREG, DL, MVT::i32, BitsFrom,
2484                            DAG.getValueType(SmallVT));
2485       }
2486
2487       return DAG.getZeroExtendInReg(BitsFrom, DL, SmallVT);
2488     }
2489
2490     if (ConstantSDNode *CVal = dyn_cast<ConstantSDNode>(BitsFrom)) {
2491       if (Signed) {
2492         return constantFoldBFE<int32_t>(DAG,
2493                                         CVal->getSExtValue(),
2494                                         OffsetVal,
2495                                         WidthVal);
2496       }
2497
2498       return constantFoldBFE<uint32_t>(DAG,
2499                                        CVal->getZExtValue(),
2500                                        OffsetVal,
2501                                        WidthVal);
2502     }
2503
2504     if ((OffsetVal + WidthVal) >= 32) {
2505       SDValue ShiftVal = DAG.getConstant(OffsetVal, MVT::i32);
2506       return DAG.getNode(Signed ? ISD::SRA : ISD::SRL, DL, MVT::i32,
2507                          BitsFrom, ShiftVal);
2508     }
2509
2510     if (BitsFrom.hasOneUse()) {
2511       APInt Demanded = APInt::getBitsSet(32,
2512                                          OffsetVal,
2513                                          OffsetVal + WidthVal);
2514
2515       APInt KnownZero, KnownOne;
2516       TargetLowering::TargetLoweringOpt TLO(DAG, !DCI.isBeforeLegalize(),
2517                                             !DCI.isBeforeLegalizeOps());
2518       const TargetLowering &TLI = DAG.getTargetLoweringInfo();
2519       if (TLO.ShrinkDemandedConstant(BitsFrom, Demanded) ||
2520           TLI.SimplifyDemandedBits(BitsFrom, Demanded,
2521                                    KnownZero, KnownOne, TLO)) {
2522         DCI.CommitTargetLoweringOpt(TLO);
2523       }
2524     }
2525
2526     break;
2527   }
2528
2529   case ISD::STORE:
2530     return performStoreCombine(N, DCI);
2531   }
2532   return SDValue();
2533 }
2534
2535 //===----------------------------------------------------------------------===//
2536 // Helper functions
2537 //===----------------------------------------------------------------------===//
2538
2539 void AMDGPUTargetLowering::getOriginalFunctionArgs(
2540                                SelectionDAG &DAG,
2541                                const Function *F,
2542                                const SmallVectorImpl<ISD::InputArg> &Ins,
2543                                SmallVectorImpl<ISD::InputArg> &OrigIns) const {
2544
2545   for (unsigned i = 0, e = Ins.size(); i < e; ++i) {
2546     if (Ins[i].ArgVT == Ins[i].VT) {
2547       OrigIns.push_back(Ins[i]);
2548       continue;
2549     }
2550
2551     EVT VT;
2552     if (Ins[i].ArgVT.isVector() && !Ins[i].VT.isVector()) {
2553       // Vector has been split into scalars.
2554       VT = Ins[i].ArgVT.getVectorElementType();
2555     } else if (Ins[i].VT.isVector() && Ins[i].ArgVT.isVector() &&
2556                Ins[i].ArgVT.getVectorElementType() !=
2557                Ins[i].VT.getVectorElementType()) {
2558       // Vector elements have been promoted
2559       VT = Ins[i].ArgVT;
2560     } else {
2561       // Vector has been spilt into smaller vectors.
2562       VT = Ins[i].VT;
2563     }
2564
2565     ISD::InputArg Arg(Ins[i].Flags, VT, VT, Ins[i].Used,
2566                       Ins[i].OrigArgIndex, Ins[i].PartOffset);
2567     OrigIns.push_back(Arg);
2568   }
2569 }
2570
2571 bool AMDGPUTargetLowering::isHWTrueValue(SDValue Op) const {
2572   if (ConstantFPSDNode * CFP = dyn_cast<ConstantFPSDNode>(Op)) {
2573     return CFP->isExactlyValue(1.0);
2574   }
2575   if (ConstantSDNode *C = dyn_cast<ConstantSDNode>(Op)) {
2576     return C->isAllOnesValue();
2577   }
2578   return false;
2579 }
2580
2581 bool AMDGPUTargetLowering::isHWFalseValue(SDValue Op) const {
2582   if (ConstantFPSDNode * CFP = dyn_cast<ConstantFPSDNode>(Op)) {
2583     return CFP->getValueAPF().isZero();
2584   }
2585   if (ConstantSDNode *C = dyn_cast<ConstantSDNode>(Op)) {
2586     return C->isNullValue();
2587   }
2588   return false;
2589 }
2590
2591 SDValue AMDGPUTargetLowering::CreateLiveInRegister(SelectionDAG &DAG,
2592                                                   const TargetRegisterClass *RC,
2593                                                    unsigned Reg, EVT VT) const {
2594   MachineFunction &MF = DAG.getMachineFunction();
2595   MachineRegisterInfo &MRI = MF.getRegInfo();
2596   unsigned VirtualRegister;
2597   if (!MRI.isLiveIn(Reg)) {
2598     VirtualRegister = MRI.createVirtualRegister(RC);
2599     MRI.addLiveIn(Reg, VirtualRegister);
2600   } else {
2601     VirtualRegister = MRI.getLiveInVirtReg(Reg);
2602   }
2603   return DAG.getRegister(VirtualRegister, VT);
2604 }
2605
2606 #define NODE_NAME_CASE(node) case AMDGPUISD::node: return #node;
2607
2608 const char* AMDGPUTargetLowering::getTargetNodeName(unsigned Opcode) const {
2609   switch (Opcode) {
2610   default: return nullptr;
2611   // AMDIL DAG nodes
2612   NODE_NAME_CASE(CALL);
2613   NODE_NAME_CASE(UMUL);
2614   NODE_NAME_CASE(RET_FLAG);
2615   NODE_NAME_CASE(BRANCH_COND);
2616
2617   // AMDGPU DAG nodes
2618   NODE_NAME_CASE(DWORDADDR)
2619   NODE_NAME_CASE(FRACT)
2620   NODE_NAME_CASE(CLAMP)
2621   NODE_NAME_CASE(MAD)
2622   NODE_NAME_CASE(FMAX_LEGACY)
2623   NODE_NAME_CASE(SMAX)
2624   NODE_NAME_CASE(UMAX)
2625   NODE_NAME_CASE(FMIN_LEGACY)
2626   NODE_NAME_CASE(SMIN)
2627   NODE_NAME_CASE(UMIN)
2628   NODE_NAME_CASE(FMAX3)
2629   NODE_NAME_CASE(SMAX3)
2630   NODE_NAME_CASE(UMAX3)
2631   NODE_NAME_CASE(FMIN3)
2632   NODE_NAME_CASE(SMIN3)
2633   NODE_NAME_CASE(UMIN3)
2634   NODE_NAME_CASE(URECIP)
2635   NODE_NAME_CASE(DIV_SCALE)
2636   NODE_NAME_CASE(DIV_FMAS)
2637   NODE_NAME_CASE(DIV_FIXUP)
2638   NODE_NAME_CASE(TRIG_PREOP)
2639   NODE_NAME_CASE(RCP)
2640   NODE_NAME_CASE(RSQ)
2641   NODE_NAME_CASE(RSQ_LEGACY)
2642   NODE_NAME_CASE(RSQ_CLAMPED)
2643   NODE_NAME_CASE(LDEXP)
2644   NODE_NAME_CASE(FP_CLASS)
2645   NODE_NAME_CASE(DOT4)
2646   NODE_NAME_CASE(BFE_U32)
2647   NODE_NAME_CASE(BFE_I32)
2648   NODE_NAME_CASE(BFI)
2649   NODE_NAME_CASE(BFM)
2650   NODE_NAME_CASE(BREV)
2651   NODE_NAME_CASE(MUL_U24)
2652   NODE_NAME_CASE(MUL_I24)
2653   NODE_NAME_CASE(MAD_U24)
2654   NODE_NAME_CASE(MAD_I24)
2655   NODE_NAME_CASE(EXPORT)
2656   NODE_NAME_CASE(CONST_ADDRESS)
2657   NODE_NAME_CASE(REGISTER_LOAD)
2658   NODE_NAME_CASE(REGISTER_STORE)
2659   NODE_NAME_CASE(LOAD_CONSTANT)
2660   NODE_NAME_CASE(LOAD_INPUT)
2661   NODE_NAME_CASE(SAMPLE)
2662   NODE_NAME_CASE(SAMPLEB)
2663   NODE_NAME_CASE(SAMPLED)
2664   NODE_NAME_CASE(SAMPLEL)
2665   NODE_NAME_CASE(CVT_F32_UBYTE0)
2666   NODE_NAME_CASE(CVT_F32_UBYTE1)
2667   NODE_NAME_CASE(CVT_F32_UBYTE2)
2668   NODE_NAME_CASE(CVT_F32_UBYTE3)
2669   NODE_NAME_CASE(BUILD_VERTICAL_VECTOR)
2670   NODE_NAME_CASE(CONST_DATA_PTR)
2671   NODE_NAME_CASE(STORE_MSKOR)
2672   NODE_NAME_CASE(TBUFFER_STORE_FORMAT)
2673   }
2674 }
2675
2676 SDValue AMDGPUTargetLowering::getRsqrtEstimate(SDValue Operand,
2677                                                DAGCombinerInfo &DCI,
2678                                                unsigned &RefinementSteps,
2679                                                bool &UseOneConstNR) const {
2680   SelectionDAG &DAG = DCI.DAG;
2681   EVT VT = Operand.getValueType();
2682
2683   if (VT == MVT::f32) {
2684     RefinementSteps = 0;
2685     return DAG.getNode(AMDGPUISD::RSQ, SDLoc(Operand), VT, Operand);
2686   }
2687
2688   // TODO: There is also f64 rsq instruction, but the documentation is less
2689   // clear on its precision.
2690
2691   return SDValue();
2692 }
2693
2694 SDValue AMDGPUTargetLowering::getRecipEstimate(SDValue Operand,
2695                                                DAGCombinerInfo &DCI,
2696                                                unsigned &RefinementSteps) const {
2697   SelectionDAG &DAG = DCI.DAG;
2698   EVT VT = Operand.getValueType();
2699
2700   if (VT == MVT::f32) {
2701     // Reciprocal, < 1 ulp error.
2702     //
2703     // This reciprocal approximation converges to < 0.5 ulp error with one
2704     // newton rhapson performed with two fused multiple adds (FMAs).
2705
2706     RefinementSteps = 0;
2707     return DAG.getNode(AMDGPUISD::RCP, SDLoc(Operand), VT, Operand);
2708   }
2709
2710   // TODO: There is also f64 rcp instruction, but the documentation is less
2711   // clear on its precision.
2712
2713   return SDValue();
2714 }
2715
2716 static void computeKnownBitsForMinMax(const SDValue Op0,
2717                                       const SDValue Op1,
2718                                       APInt &KnownZero,
2719                                       APInt &KnownOne,
2720                                       const SelectionDAG &DAG,
2721                                       unsigned Depth) {
2722   APInt Op0Zero, Op0One;
2723   APInt Op1Zero, Op1One;
2724   DAG.computeKnownBits(Op0, Op0Zero, Op0One, Depth);
2725   DAG.computeKnownBits(Op1, Op1Zero, Op1One, Depth);
2726
2727   KnownZero = Op0Zero & Op1Zero;
2728   KnownOne = Op0One & Op1One;
2729 }
2730
2731 void AMDGPUTargetLowering::computeKnownBitsForTargetNode(
2732   const SDValue Op,
2733   APInt &KnownZero,
2734   APInt &KnownOne,
2735   const SelectionDAG &DAG,
2736   unsigned Depth) const {
2737
2738   KnownZero = KnownOne = APInt(KnownOne.getBitWidth(), 0); // Don't know anything.
2739
2740   APInt KnownZero2;
2741   APInt KnownOne2;
2742   unsigned Opc = Op.getOpcode();
2743
2744   switch (Opc) {
2745   default:
2746     break;
2747   case ISD::INTRINSIC_WO_CHAIN: {
2748     // FIXME: The intrinsic should just use the node.
2749     switch (cast<ConstantSDNode>(Op.getOperand(0))->getZExtValue()) {
2750     case AMDGPUIntrinsic::AMDGPU_imax:
2751     case AMDGPUIntrinsic::AMDGPU_umax:
2752     case AMDGPUIntrinsic::AMDGPU_imin:
2753     case AMDGPUIntrinsic::AMDGPU_umin:
2754       computeKnownBitsForMinMax(Op.getOperand(1), Op.getOperand(2),
2755                                 KnownZero, KnownOne, DAG, Depth);
2756       break;
2757     default:
2758       break;
2759     }
2760
2761     break;
2762   }
2763   case AMDGPUISD::SMAX:
2764   case AMDGPUISD::UMAX:
2765   case AMDGPUISD::SMIN:
2766   case AMDGPUISD::UMIN:
2767     computeKnownBitsForMinMax(Op.getOperand(0), Op.getOperand(1),
2768                               KnownZero, KnownOne, DAG, Depth);
2769     break;
2770
2771   case AMDGPUISD::BFE_I32:
2772   case AMDGPUISD::BFE_U32: {
2773     ConstantSDNode *CWidth = dyn_cast<ConstantSDNode>(Op.getOperand(2));
2774     if (!CWidth)
2775       return;
2776
2777     unsigned BitWidth = 32;
2778     uint32_t Width = CWidth->getZExtValue() & 0x1f;
2779
2780     if (Opc == AMDGPUISD::BFE_U32)
2781       KnownZero = APInt::getHighBitsSet(BitWidth, BitWidth - Width);
2782
2783     break;
2784   }
2785   }
2786 }
2787
2788 unsigned AMDGPUTargetLowering::ComputeNumSignBitsForTargetNode(
2789   SDValue Op,
2790   const SelectionDAG &DAG,
2791   unsigned Depth) const {
2792   switch (Op.getOpcode()) {
2793   case AMDGPUISD::BFE_I32: {
2794     ConstantSDNode *Width = dyn_cast<ConstantSDNode>(Op.getOperand(2));
2795     if (!Width)
2796       return 1;
2797
2798     unsigned SignBits = 32 - Width->getZExtValue() + 1;
2799     ConstantSDNode *Offset = dyn_cast<ConstantSDNode>(Op.getOperand(1));
2800     if (!Offset || !Offset->isNullValue())
2801       return SignBits;
2802
2803     // TODO: Could probably figure something out with non-0 offsets.
2804     unsigned Op0SignBits = DAG.ComputeNumSignBits(Op.getOperand(0), Depth + 1);
2805     return std::max(SignBits, Op0SignBits);
2806   }
2807
2808   case AMDGPUISD::BFE_U32: {
2809     ConstantSDNode *Width = dyn_cast<ConstantSDNode>(Op.getOperand(2));
2810     return Width ? 32 - (Width->getZExtValue() & 0x1f) : 1;
2811   }
2812
2813   default:
2814     return 1;
2815   }
2816 }