R600: Add comment describing problems with LowerConstantInitializer
[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 "AMDGPURegisterInfo.h"
20 #include "AMDGPUSubtarget.h"
21 #include "AMDILIntrinsicInfo.h"
22 #include "R600MachineFunctionInfo.h"
23 #include "SIMachineFunctionInfo.h"
24 #include "llvm/Analysis/ValueTracking.h"
25 #include "llvm/CodeGen/CallingConvLower.h"
26 #include "llvm/CodeGen/MachineFunction.h"
27 #include "llvm/CodeGen/MachineRegisterInfo.h"
28 #include "llvm/CodeGen/SelectionDAG.h"
29 #include "llvm/CodeGen/TargetLoweringObjectFileImpl.h"
30 #include "llvm/IR/DataLayout.h"
31 #include "llvm/IR/DiagnosticInfo.h"
32 #include "llvm/IR/DiagnosticPrinter.h"
33
34 using namespace llvm;
35
36 namespace {
37
38 /// Diagnostic information for unimplemented or unsupported feature reporting.
39 class DiagnosticInfoUnsupported : public DiagnosticInfo {
40 private:
41   const Twine &Description;
42   const Function &Fn;
43
44   static int KindID;
45
46   static int getKindID() {
47     if (KindID == 0)
48       KindID = llvm::getNextAvailablePluginDiagnosticKind();
49     return KindID;
50   }
51
52 public:
53   DiagnosticInfoUnsupported(const Function &Fn, const Twine &Desc,
54                           DiagnosticSeverity Severity = DS_Error)
55     : DiagnosticInfo(getKindID(), Severity),
56       Description(Desc),
57       Fn(Fn) { }
58
59   const Function &getFunction() const { return Fn; }
60   const Twine &getDescription() const { return Description; }
61
62   void print(DiagnosticPrinter &DP) const override {
63     DP << "unsupported " << getDescription() << " in " << Fn.getName();
64   }
65
66   static bool classof(const DiagnosticInfo *DI) {
67     return DI->getKind() == getKindID();
68   }
69 };
70
71 int DiagnosticInfoUnsupported::KindID = 0;
72 }
73
74
75 static bool allocateStack(unsigned ValNo, MVT ValVT, MVT LocVT,
76                       CCValAssign::LocInfo LocInfo,
77                       ISD::ArgFlagsTy ArgFlags, CCState &State) {
78   unsigned Offset = State.AllocateStack(ValVT.getStoreSize(),
79                                         ArgFlags.getOrigAlign());
80   State.addLoc(CCValAssign::getMem(ValNo, ValVT, Offset, LocVT, LocInfo));
81
82   return true;
83 }
84
85 #include "AMDGPUGenCallingConv.inc"
86
87 AMDGPUTargetLowering::AMDGPUTargetLowering(TargetMachine &TM) :
88   TargetLowering(TM, new TargetLoweringObjectFileELF()) {
89
90   Subtarget = &TM.getSubtarget<AMDGPUSubtarget>();
91
92   // Initialize target lowering borrowed from AMDIL
93   InitAMDILLowering();
94
95   // We need to custom lower some of the intrinsics
96   setOperationAction(ISD::INTRINSIC_WO_CHAIN, MVT::Other, Custom);
97
98   // Library functions.  These default to Expand, but we have instructions
99   // for them.
100   setOperationAction(ISD::FCEIL,  MVT::f32, Legal);
101   setOperationAction(ISD::FEXP2,  MVT::f32, Legal);
102   setOperationAction(ISD::FPOW,   MVT::f32, Legal);
103   setOperationAction(ISD::FLOG2,  MVT::f32, Legal);
104   setOperationAction(ISD::FABS,   MVT::f32, Legal);
105   setOperationAction(ISD::FFLOOR, MVT::f32, Legal);
106   setOperationAction(ISD::FRINT,  MVT::f32, Legal);
107   setOperationAction(ISD::FROUND, MVT::f32, Legal);
108   setOperationAction(ISD::FTRUNC, MVT::f32, Legal);
109
110   // The hardware supports ROTR, but not ROTL
111   setOperationAction(ISD::ROTL, MVT::i32, Expand);
112
113   // Lower floating point store/load to integer store/load to reduce the number
114   // of patterns in tablegen.
115   setOperationAction(ISD::STORE, MVT::f32, Promote);
116   AddPromotedToType(ISD::STORE, MVT::f32, MVT::i32);
117
118   setOperationAction(ISD::STORE, MVT::v2f32, Promote);
119   AddPromotedToType(ISD::STORE, MVT::v2f32, MVT::v2i32);
120
121   setOperationAction(ISD::STORE, MVT::v4f32, Promote);
122   AddPromotedToType(ISD::STORE, MVT::v4f32, MVT::v4i32);
123
124   setOperationAction(ISD::STORE, MVT::v8f32, Promote);
125   AddPromotedToType(ISD::STORE, MVT::v8f32, MVT::v8i32);
126
127   setOperationAction(ISD::STORE, MVT::v16f32, Promote);
128   AddPromotedToType(ISD::STORE, MVT::v16f32, MVT::v16i32);
129
130   setOperationAction(ISD::STORE, MVT::f64, Promote);
131   AddPromotedToType(ISD::STORE, MVT::f64, MVT::i64);
132
133   setOperationAction(ISD::STORE, MVT::v2f64, Promote);
134   AddPromotedToType(ISD::STORE, MVT::v2f64, MVT::v2i64);
135
136   // Custom lowering of vector stores is required for local address space
137   // stores.
138   setOperationAction(ISD::STORE, MVT::v4i32, Custom);
139   // XXX: Native v2i32 local address space stores are possible, but not
140   // currently implemented.
141   setOperationAction(ISD::STORE, MVT::v2i32, Custom);
142
143   setTruncStoreAction(MVT::v2i32, MVT::v2i16, Custom);
144   setTruncStoreAction(MVT::v2i32, MVT::v2i8, Custom);
145   setTruncStoreAction(MVT::v4i32, MVT::v4i8, Custom);
146
147   // XXX: This can be change to Custom, once ExpandVectorStores can
148   // handle 64-bit stores.
149   setTruncStoreAction(MVT::v4i32, MVT::v4i16, Expand);
150
151   setTruncStoreAction(MVT::i64, MVT::i16, Expand);
152   setTruncStoreAction(MVT::i64, MVT::i8, Expand);
153   setTruncStoreAction(MVT::i64, MVT::i1, Expand);
154   setTruncStoreAction(MVT::v2i64, MVT::v2i1, Expand);
155   setTruncStoreAction(MVT::v4i64, MVT::v4i1, Expand);
156
157
158   setOperationAction(ISD::LOAD, MVT::f32, Promote);
159   AddPromotedToType(ISD::LOAD, MVT::f32, MVT::i32);
160
161   setOperationAction(ISD::LOAD, MVT::v2f32, Promote);
162   AddPromotedToType(ISD::LOAD, MVT::v2f32, MVT::v2i32);
163
164   setOperationAction(ISD::LOAD, MVT::v4f32, Promote);
165   AddPromotedToType(ISD::LOAD, MVT::v4f32, MVT::v4i32);
166
167   setOperationAction(ISD::LOAD, MVT::v8f32, Promote);
168   AddPromotedToType(ISD::LOAD, MVT::v8f32, MVT::v8i32);
169
170   setOperationAction(ISD::LOAD, MVT::v16f32, Promote);
171   AddPromotedToType(ISD::LOAD, MVT::v16f32, MVT::v16i32);
172
173   setOperationAction(ISD::LOAD, MVT::f64, Promote);
174   AddPromotedToType(ISD::LOAD, MVT::f64, MVT::i64);
175
176   setOperationAction(ISD::LOAD, MVT::v2f64, Promote);
177   AddPromotedToType(ISD::LOAD, MVT::v2f64, MVT::v2i64);
178
179   setOperationAction(ISD::CONCAT_VECTORS, MVT::v4i32, Custom);
180   setOperationAction(ISD::CONCAT_VECTORS, MVT::v4f32, Custom);
181   setOperationAction(ISD::CONCAT_VECTORS, MVT::v8i32, Custom);
182   setOperationAction(ISD::CONCAT_VECTORS, MVT::v8f32, Custom);
183   setOperationAction(ISD::EXTRACT_SUBVECTOR, MVT::v2f32, Custom);
184   setOperationAction(ISD::EXTRACT_SUBVECTOR, MVT::v2i32, Custom);
185   setOperationAction(ISD::EXTRACT_SUBVECTOR, MVT::v4f32, Custom);
186   setOperationAction(ISD::EXTRACT_SUBVECTOR, MVT::v4i32, Custom);
187   setOperationAction(ISD::EXTRACT_SUBVECTOR, MVT::v8f32, Custom);
188   setOperationAction(ISD::EXTRACT_SUBVECTOR, MVT::v8i32, Custom);
189
190   setLoadExtAction(ISD::EXTLOAD, MVT::v2i8, Expand);
191   setLoadExtAction(ISD::SEXTLOAD, MVT::v2i8, Expand);
192   setLoadExtAction(ISD::ZEXTLOAD, MVT::v2i8, Expand);
193   setLoadExtAction(ISD::EXTLOAD, MVT::v4i8, Expand);
194   setLoadExtAction(ISD::SEXTLOAD, MVT::v4i8, Expand);
195   setLoadExtAction(ISD::ZEXTLOAD, MVT::v4i8, Expand);
196   setLoadExtAction(ISD::EXTLOAD, MVT::v2i16, Expand);
197   setLoadExtAction(ISD::SEXTLOAD, MVT::v2i16, Expand);
198   setLoadExtAction(ISD::ZEXTLOAD, MVT::v2i16, Expand);
199   setLoadExtAction(ISD::EXTLOAD, MVT::v4i16, Expand);
200   setLoadExtAction(ISD::SEXTLOAD, MVT::v4i16, Expand);
201   setLoadExtAction(ISD::ZEXTLOAD, MVT::v4i16, Expand);
202
203   setOperationAction(ISD::BR_CC, MVT::i1, Expand);
204
205   setOperationAction(ISD::SELECT_CC, MVT::i64, Expand);
206
207   setOperationAction(ISD::FNEG, MVT::v2f32, Expand);
208   setOperationAction(ISD::FNEG, MVT::v4f32, Expand);
209
210   setOperationAction(ISD::UINT_TO_FP, MVT::i64, Custom);
211
212   setOperationAction(ISD::MUL, MVT::i64, Expand);
213   setOperationAction(ISD::SUB, MVT::i64, Expand);
214
215   setOperationAction(ISD::UDIV, MVT::i32, Expand);
216   setOperationAction(ISD::UDIVREM, MVT::i32, Custom);
217   setOperationAction(ISD::UDIVREM, MVT::i64, Custom);
218   setOperationAction(ISD::UREM, MVT::i32, Expand);
219   setOperationAction(ISD::VSELECT, MVT::v2f32, Expand);
220   setOperationAction(ISD::VSELECT, MVT::v4f32, Expand);
221
222   static const MVT::SimpleValueType IntTypes[] = {
223     MVT::v2i32, MVT::v4i32
224   };
225
226   for (MVT VT : IntTypes) {
227     //Expand the following operations for the current type by default
228     setOperationAction(ISD::ADD,  VT, Expand);
229     setOperationAction(ISD::AND,  VT, Expand);
230     setOperationAction(ISD::FP_TO_SINT, VT, Expand);
231     setOperationAction(ISD::FP_TO_UINT, VT, Expand);
232     setOperationAction(ISD::MUL,  VT, Expand);
233     setOperationAction(ISD::OR,   VT, Expand);
234     setOperationAction(ISD::SHL,  VT, Expand);
235     setOperationAction(ISD::SINT_TO_FP, VT, Expand);
236     setOperationAction(ISD::SRL,  VT, Expand);
237     setOperationAction(ISD::SRA,  VT, Expand);
238     setOperationAction(ISD::SUB,  VT, Expand);
239     setOperationAction(ISD::UDIV, VT, Expand);
240     setOperationAction(ISD::UINT_TO_FP, VT, Expand);
241     setOperationAction(ISD::UREM, VT, Expand);
242     setOperationAction(ISD::SELECT, VT, Expand);
243     setOperationAction(ISD::VSELECT, VT, Expand);
244     setOperationAction(ISD::XOR,  VT, Expand);
245   }
246
247   static const MVT::SimpleValueType FloatTypes[] = {
248     MVT::v2f32, MVT::v4f32
249   };
250
251   for (MVT VT : FloatTypes) {
252     setOperationAction(ISD::FABS, VT, Expand);
253     setOperationAction(ISD::FADD, VT, Expand);
254     setOperationAction(ISD::FCOS, VT, Expand);
255     setOperationAction(ISD::FDIV, VT, Expand);
256     setOperationAction(ISD::FPOW, VT, Expand);
257     setOperationAction(ISD::FFLOOR, VT, Expand);
258     setOperationAction(ISD::FTRUNC, VT, Expand);
259     setOperationAction(ISD::FMUL, VT, Expand);
260     setOperationAction(ISD::FRINT, VT, Expand);
261     setOperationAction(ISD::FSQRT, VT, Expand);
262     setOperationAction(ISD::FSIN, VT, Expand);
263     setOperationAction(ISD::FSUB, VT, Expand);
264     setOperationAction(ISD::SELECT, VT, Expand);
265   }
266
267   setTargetDAGCombine(ISD::MUL);
268   setTargetDAGCombine(ISD::SELECT_CC);
269 }
270
271 //===----------------------------------------------------------------------===//
272 // Target Information
273 //===----------------------------------------------------------------------===//
274
275 MVT AMDGPUTargetLowering::getVectorIdxTy() const {
276   return MVT::i32;
277 }
278
279 bool AMDGPUTargetLowering::isLoadBitCastBeneficial(EVT LoadTy,
280                                                    EVT CastTy) const {
281   if (LoadTy.getSizeInBits() != CastTy.getSizeInBits())
282     return true;
283
284   unsigned LScalarSize = LoadTy.getScalarType().getSizeInBits();
285   unsigned CastScalarSize = CastTy.getScalarType().getSizeInBits();
286
287   return ((LScalarSize <= CastScalarSize) ||
288           (CastScalarSize >= 32) ||
289           (LScalarSize < 32));
290 }
291
292 //===---------------------------------------------------------------------===//
293 // Target Properties
294 //===---------------------------------------------------------------------===//
295
296 bool AMDGPUTargetLowering::isFAbsFree(EVT VT) const {
297   assert(VT.isFloatingPoint());
298   return VT == MVT::f32;
299 }
300
301 bool AMDGPUTargetLowering::isFNegFree(EVT VT) const {
302   assert(VT.isFloatingPoint());
303   return VT == MVT::f32;
304 }
305
306 bool AMDGPUTargetLowering::isTruncateFree(EVT Source, EVT Dest) const {
307   // Truncate is just accessing a subregister.
308   return Dest.bitsLT(Source) && (Dest.getSizeInBits() % 32 == 0);
309 }
310
311 bool AMDGPUTargetLowering::isTruncateFree(Type *Source, Type *Dest) const {
312   // Truncate is just accessing a subregister.
313   return Dest->getPrimitiveSizeInBits() < Source->getPrimitiveSizeInBits() &&
314          (Dest->getPrimitiveSizeInBits() % 32 == 0);
315 }
316
317 bool AMDGPUTargetLowering::isZExtFree(Type *Src, Type *Dest) const {
318   const DataLayout *DL = getDataLayout();
319   unsigned SrcSize = DL->getTypeSizeInBits(Src->getScalarType());
320   unsigned DestSize = DL->getTypeSizeInBits(Dest->getScalarType());
321
322   return SrcSize == 32 && DestSize == 64;
323 }
324
325 bool AMDGPUTargetLowering::isZExtFree(EVT Src, EVT Dest) const {
326   // Any register load of a 64-bit value really requires 2 32-bit moves. For all
327   // practical purposes, the extra mov 0 to load a 64-bit is free.  As used,
328   // this will enable reducing 64-bit operations the 32-bit, which is always
329   // good.
330   return Src == MVT::i32 && Dest == MVT::i64;
331 }
332
333 bool AMDGPUTargetLowering::isNarrowingProfitable(EVT SrcVT, EVT DestVT) const {
334   // There aren't really 64-bit registers, but pairs of 32-bit ones and only a
335   // limited number of native 64-bit operations. Shrinking an operation to fit
336   // in a single 32-bit register should always be helpful. As currently used,
337   // this is much less general than the name suggests, and is only used in
338   // places trying to reduce the sizes of loads. Shrinking loads to < 32-bits is
339   // not profitable, and may actually be harmful.
340   return SrcVT.getSizeInBits() > 32 && DestVT.getSizeInBits() == 32;
341 }
342
343 //===---------------------------------------------------------------------===//
344 // TargetLowering Callbacks
345 //===---------------------------------------------------------------------===//
346
347 void AMDGPUTargetLowering::AnalyzeFormalArguments(CCState &State,
348                              const SmallVectorImpl<ISD::InputArg> &Ins) const {
349
350   State.AnalyzeFormalArguments(Ins, CC_AMDGPU);
351 }
352
353 SDValue AMDGPUTargetLowering::LowerReturn(
354                                      SDValue Chain,
355                                      CallingConv::ID CallConv,
356                                      bool isVarArg,
357                                      const SmallVectorImpl<ISD::OutputArg> &Outs,
358                                      const SmallVectorImpl<SDValue> &OutVals,
359                                      SDLoc DL, SelectionDAG &DAG) const {
360   return DAG.getNode(AMDGPUISD::RET_FLAG, DL, MVT::Other, Chain);
361 }
362
363 //===---------------------------------------------------------------------===//
364 // Target specific lowering
365 //===---------------------------------------------------------------------===//
366
367 SDValue AMDGPUTargetLowering::LowerCall(CallLoweringInfo &CLI,
368                                         SmallVectorImpl<SDValue> &InVals) const {
369   SDValue Callee = CLI.Callee;
370   SelectionDAG &DAG = CLI.DAG;
371
372   const Function &Fn = *DAG.getMachineFunction().getFunction();
373
374   StringRef FuncName("<unknown>");
375
376   if (const ExternalSymbolSDNode *G = dyn_cast<ExternalSymbolSDNode>(Callee))
377     FuncName = G->getSymbol();
378   else if (const GlobalAddressSDNode *G = dyn_cast<GlobalAddressSDNode>(Callee))
379     FuncName = G->getGlobal()->getName();
380
381   DiagnosticInfoUnsupported NoCalls(Fn, "call to function " + FuncName);
382   DAG.getContext()->diagnose(NoCalls);
383   return SDValue();
384 }
385
386 SDValue AMDGPUTargetLowering::LowerOperation(SDValue Op, SelectionDAG &DAG)
387     const {
388   switch (Op.getOpcode()) {
389   default:
390     Op.getNode()->dump();
391     llvm_unreachable("Custom lowering code for this"
392                      "instruction is not implemented yet!");
393     break;
394   // AMDIL DAG lowering
395   case ISD::SDIV: return LowerSDIV(Op, DAG);
396   case ISD::SREM: return LowerSREM(Op, DAG);
397   case ISD::SIGN_EXTEND_INREG: return LowerSIGN_EXTEND_INREG(Op, DAG);
398   case ISD::BRCOND: return LowerBRCOND(Op, DAG);
399   // AMDGPU DAG lowering
400   case ISD::CONCAT_VECTORS: return LowerCONCAT_VECTORS(Op, DAG);
401   case ISD::EXTRACT_SUBVECTOR: return LowerEXTRACT_SUBVECTOR(Op, DAG);
402   case ISD::FrameIndex: return LowerFrameIndex(Op, DAG);
403   case ISD::INTRINSIC_WO_CHAIN: return LowerINTRINSIC_WO_CHAIN(Op, DAG);
404   case ISD::UDIVREM: return LowerUDIVREM(Op, DAG);
405   case ISD::UINT_TO_FP: return LowerUINT_TO_FP(Op, DAG);
406   }
407   return Op;
408 }
409
410 void AMDGPUTargetLowering::ReplaceNodeResults(SDNode *N,
411                                               SmallVectorImpl<SDValue> &Results,
412                                               SelectionDAG &DAG) const {
413   switch (N->getOpcode()) {
414   case ISD::SIGN_EXTEND_INREG:
415     // Different parts of legalization seem to interpret which type of
416     // sign_extend_inreg is the one to check for custom lowering. The extended
417     // from type is what really matters, but some places check for custom
418     // lowering of the result type. This results in trying to use
419     // ReplaceNodeResults to sext_in_reg to an illegal type, so we'll just do
420     // nothing here and let the illegal result integer be handled normally.
421     return;
422   case ISD::UDIV: {
423     SDValue Op = SDValue(N, 0);
424     SDLoc DL(Op);
425     EVT VT = Op.getValueType();
426     SDValue UDIVREM = DAG.getNode(ISD::UDIVREM, DL, DAG.getVTList(VT, VT),
427       N->getOperand(0), N->getOperand(1));
428     Results.push_back(UDIVREM);
429     break;
430   }
431   case ISD::UREM: {
432     SDValue Op = SDValue(N, 0);
433     SDLoc DL(Op);
434     EVT VT = Op.getValueType();
435     SDValue UDIVREM = DAG.getNode(ISD::UDIVREM, DL, DAG.getVTList(VT, VT),
436       N->getOperand(0), N->getOperand(1));
437     Results.push_back(UDIVREM.getValue(1));
438     break;
439   }
440   case ISD::UDIVREM: {
441     SDValue Op = SDValue(N, 0);
442     SDLoc DL(Op);
443     EVT VT = Op.getValueType();
444     EVT HalfVT = VT.getHalfSizedIntegerVT(*DAG.getContext());
445
446     SDValue one = DAG.getConstant(1, HalfVT);
447     SDValue zero = DAG.getConstant(0, HalfVT);
448
449     //HiLo split
450     SDValue LHS = N->getOperand(0);
451     SDValue LHS_Lo = DAG.getNode(ISD::EXTRACT_ELEMENT, DL, HalfVT, LHS, zero);
452     SDValue LHS_Hi = DAG.getNode(ISD::EXTRACT_ELEMENT, DL, HalfVT, LHS, one);
453
454     SDValue RHS = N->getOperand(1);
455     SDValue RHS_Lo = DAG.getNode(ISD::EXTRACT_ELEMENT, DL, HalfVT, RHS, zero);
456     SDValue RHS_Hi = DAG.getNode(ISD::EXTRACT_ELEMENT, DL, HalfVT, RHS, one);
457
458     // Get Speculative values
459     SDValue DIV_Part = DAG.getNode(ISD::UDIV, DL, HalfVT, LHS_Hi, RHS_Lo);
460     SDValue REM_Part = DAG.getNode(ISD::UREM, DL, HalfVT, LHS_Hi, RHS_Lo);
461
462     SDValue REM_Hi = zero;
463     SDValue REM_Lo = DAG.getSelectCC(DL, RHS_Hi, zero, REM_Part, LHS_Hi, ISD::SETEQ);
464
465     SDValue DIV_Hi = DAG.getSelectCC(DL, RHS_Hi, zero, DIV_Part, zero, ISD::SETEQ);
466     SDValue DIV_Lo = zero;
467
468     const unsigned halfBitWidth = HalfVT.getSizeInBits();
469
470     for (unsigned i = 0; i < halfBitWidth; ++i) {
471       SDValue POS = DAG.getConstant(halfBitWidth - i - 1, HalfVT);
472       // Get Value of high bit
473       SDValue HBit;
474       if (halfBitWidth == 32 && Subtarget->hasBFE()) {
475         HBit = DAG.getNode(AMDGPUISD::BFE_U32, DL, HalfVT, LHS_Lo, POS, one);
476       } else {
477         HBit = DAG.getNode(ISD::SRL, DL, HalfVT, LHS_Lo, POS);
478         HBit = DAG.getNode(ISD::AND, DL, HalfVT, HBit, one);
479       }
480
481       SDValue Carry = DAG.getNode(ISD::SRL, DL, HalfVT, REM_Lo,
482         DAG.getConstant(halfBitWidth - 1, HalfVT));
483       REM_Hi = DAG.getNode(ISD::SHL, DL, HalfVT, REM_Hi, one);
484       REM_Hi = DAG.getNode(ISD::OR, DL, HalfVT, REM_Hi, Carry);
485
486       REM_Lo = DAG.getNode(ISD::SHL, DL, HalfVT, REM_Lo, one);
487       REM_Lo = DAG.getNode(ISD::OR, DL, HalfVT, REM_Lo, HBit);
488
489
490       SDValue REM = DAG.getNode(ISD::BUILD_PAIR, DL, VT, REM_Lo, REM_Hi);
491
492       SDValue BIT = DAG.getConstant(1 << (halfBitWidth - i - 1), HalfVT);
493       SDValue realBIT = DAG.getSelectCC(DL, REM, RHS, BIT, zero, ISD::SETGE);
494
495       DIV_Lo = DAG.getNode(ISD::OR, DL, HalfVT, DIV_Lo, realBIT);
496
497       // Update REM
498
499       SDValue REM_sub = DAG.getNode(ISD::SUB, DL, VT, REM, RHS);
500
501       REM = DAG.getSelectCC(DL, REM, RHS, REM_sub, REM, ISD::SETGE);
502       REM_Lo = DAG.getNode(ISD::EXTRACT_ELEMENT, DL, HalfVT, REM, zero);
503       REM_Hi = DAG.getNode(ISD::EXTRACT_ELEMENT, DL, HalfVT, REM, one);
504     }
505
506     SDValue REM = DAG.getNode(ISD::BUILD_PAIR, DL, VT, REM_Lo, REM_Hi);
507     SDValue DIV = DAG.getNode(ISD::BUILD_PAIR, DL, VT, DIV_Lo, DIV_Hi);
508     Results.push_back(DIV);
509     Results.push_back(REM);
510     break;
511   }
512   default:
513     return;
514   }
515 }
516
517 // FIXME: This implements accesses to initialized globals in the constant
518 // address space by copying them to private and accessing that. It does not
519 // properly handle illegal types or vectors. The private vector loads are not
520 // scalarized, and the illegal scalars hit an assertion. This technique will not
521 // work well with large initializers, and this should eventually be
522 // removed. Initialized globals should be placed into a data section that the
523 // runtime will load into a buffer before the kernel is executed. Uses of the
524 // global need to be replaced with a pointer loaded from an implicit kernel
525 // argument into this buffer holding the copy of the data, which will remove the
526 // need for any of this.
527 SDValue AMDGPUTargetLowering::LowerConstantInitializer(const Constant* Init,
528                                                        const GlobalValue *GV,
529                                                        const SDValue &InitPtr,
530                                                        SDValue Chain,
531                                                        SelectionDAG &DAG) const {
532   const DataLayout *TD = getTargetMachine().getDataLayout();
533   SDLoc DL(InitPtr);
534   if (const ConstantInt *CI = dyn_cast<ConstantInt>(Init)) {
535     EVT VT = EVT::getEVT(CI->getType());
536     PointerType *PtrTy = PointerType::get(CI->getType(), 0);
537     return DAG.getStore(Chain, DL,  DAG.getConstant(*CI, VT), InitPtr,
538                  MachinePointerInfo(UndefValue::get(PtrTy)), false, false,
539                  TD->getPrefTypeAlignment(CI->getType()));
540   }
541
542   if (const ConstantFP *CFP = dyn_cast<ConstantFP>(Init)) {
543     EVT VT = EVT::getEVT(CFP->getType());
544     PointerType *PtrTy = PointerType::get(CFP->getType(), 0);
545     return DAG.getStore(Chain, DL, DAG.getConstantFP(*CFP, VT), InitPtr,
546                  MachinePointerInfo(UndefValue::get(PtrTy)), false, false,
547                  TD->getPrefTypeAlignment(CFP->getType()));
548   }
549
550   Type *InitTy = Init->getType();
551   if (StructType *ST = dyn_cast<StructType>(InitTy)) {
552     const StructLayout *SL = TD->getStructLayout(ST);
553
554     EVT PtrVT = InitPtr.getValueType();
555     SmallVector<SDValue, 8> Chains;
556
557     for (unsigned I = 0, N = ST->getNumElements(); I != N; ++I) {
558       SDValue Offset = DAG.getConstant(SL->getElementOffset(I), PtrVT);
559       SDValue Ptr = DAG.getNode(ISD::ADD, DL, PtrVT, InitPtr, Offset);
560
561       Constant *Elt = Init->getAggregateElement(I);
562       Chains.push_back(LowerConstantInitializer(Elt, GV, Ptr, Chain, DAG));
563     }
564
565     return DAG.getNode(ISD::TokenFactor, DL, MVT::Other, Chains);
566   }
567
568   if (SequentialType *SeqTy = dyn_cast<SequentialType>(InitTy)) {
569     EVT PtrVT = InitPtr.getValueType();
570
571     unsigned NumElements;
572     if (ArrayType *AT = dyn_cast<ArrayType>(SeqTy))
573       NumElements = AT->getNumElements();
574     else if (VectorType *VT = dyn_cast<VectorType>(SeqTy))
575       NumElements = VT->getNumElements();
576     else
577       llvm_unreachable("Unexpected type");
578
579     unsigned EltSize = TD->getTypeAllocSize(SeqTy->getElementType());
580     SmallVector<SDValue, 8> Chains;
581     for (unsigned i = 0; i < NumElements; ++i) {
582       SDValue Offset = DAG.getConstant(i * EltSize, PtrVT);
583       SDValue Ptr = DAG.getNode(ISD::ADD, DL, PtrVT, InitPtr, Offset);
584
585       Constant *Elt = Init->getAggregateElement(i);
586       Chains.push_back(LowerConstantInitializer(Elt, GV, Ptr, Chain, DAG));
587     }
588
589     return DAG.getNode(ISD::TokenFactor, DL, MVT::Other, Chains);
590   }
591
592   Init->dump();
593   llvm_unreachable("Unhandled constant initializer");
594 }
595
596 SDValue AMDGPUTargetLowering::LowerGlobalAddress(AMDGPUMachineFunction* MFI,
597                                                  SDValue Op,
598                                                  SelectionDAG &DAG) const {
599
600   const DataLayout *TD = getTargetMachine().getDataLayout();
601   GlobalAddressSDNode *G = cast<GlobalAddressSDNode>(Op);
602   const GlobalValue *GV = G->getGlobal();
603
604   switch (G->getAddressSpace()) {
605   default: llvm_unreachable("Global Address lowering not implemented for this "
606                             "address space");
607   case AMDGPUAS::LOCAL_ADDRESS: {
608     // XXX: What does the value of G->getOffset() mean?
609     assert(G->getOffset() == 0 &&
610          "Do not know what to do with an non-zero offset");
611
612     unsigned Offset;
613     if (MFI->LocalMemoryObjects.count(GV) == 0) {
614       uint64_t Size = TD->getTypeAllocSize(GV->getType()->getElementType());
615       Offset = MFI->LDSSize;
616       MFI->LocalMemoryObjects[GV] = Offset;
617       // XXX: Account for alignment?
618       MFI->LDSSize += Size;
619     } else {
620       Offset = MFI->LocalMemoryObjects[GV];
621     }
622
623     return DAG.getConstant(Offset, getPointerTy(G->getAddressSpace()));
624   }
625   case AMDGPUAS::CONSTANT_ADDRESS: {
626     MachineFrameInfo *FrameInfo = DAG.getMachineFunction().getFrameInfo();
627     Type *EltType = GV->getType()->getElementType();
628     unsigned Size = TD->getTypeAllocSize(EltType);
629     unsigned Alignment = TD->getPrefTypeAlignment(EltType);
630
631     const GlobalVariable *Var = cast<GlobalVariable>(GV);
632     const Constant *Init = Var->getInitializer();
633     int FI = FrameInfo->CreateStackObject(Size, Alignment, false);
634     SDValue InitPtr = DAG.getFrameIndex(FI,
635         getPointerTy(AMDGPUAS::PRIVATE_ADDRESS));
636     SmallVector<SDNode*, 8> WorkList;
637
638     for (SDNode::use_iterator I = DAG.getEntryNode()->use_begin(),
639                               E = DAG.getEntryNode()->use_end(); I != E; ++I) {
640       if (I->getOpcode() != AMDGPUISD::REGISTER_LOAD && I->getOpcode() != ISD::LOAD)
641         continue;
642       WorkList.push_back(*I);
643     }
644     SDValue Chain = LowerConstantInitializer(Init, GV, InitPtr, DAG.getEntryNode(), DAG);
645     for (SmallVector<SDNode*, 8>::iterator I = WorkList.begin(),
646                                            E = WorkList.end(); I != E; ++I) {
647       SmallVector<SDValue, 8> Ops;
648       Ops.push_back(Chain);
649       for (unsigned i = 1; i < (*I)->getNumOperands(); ++i) {
650         Ops.push_back((*I)->getOperand(i));
651       }
652       DAG.UpdateNodeOperands(*I, Ops);
653     }
654     return DAG.getZExtOrTrunc(InitPtr, SDLoc(Op),
655         getPointerTy(AMDGPUAS::CONSTANT_ADDRESS));
656   }
657   }
658 }
659
660 SDValue AMDGPUTargetLowering::LowerCONCAT_VECTORS(SDValue Op,
661                                                   SelectionDAG &DAG) const {
662   SmallVector<SDValue, 8> Args;
663   SDValue A = Op.getOperand(0);
664   SDValue B = Op.getOperand(1);
665
666   DAG.ExtractVectorElements(A, Args);
667   DAG.ExtractVectorElements(B, Args);
668
669   return DAG.getNode(ISD::BUILD_VECTOR, SDLoc(Op), Op.getValueType(), Args);
670 }
671
672 SDValue AMDGPUTargetLowering::LowerEXTRACT_SUBVECTOR(SDValue Op,
673                                                      SelectionDAG &DAG) const {
674
675   SmallVector<SDValue, 8> Args;
676   unsigned Start = cast<ConstantSDNode>(Op.getOperand(1))->getZExtValue();
677   EVT VT = Op.getValueType();
678   DAG.ExtractVectorElements(Op.getOperand(0), Args, Start,
679                             VT.getVectorNumElements());
680
681   return DAG.getNode(ISD::BUILD_VECTOR, SDLoc(Op), Op.getValueType(), Args);
682 }
683
684 SDValue AMDGPUTargetLowering::LowerFrameIndex(SDValue Op,
685                                               SelectionDAG &DAG) const {
686
687   MachineFunction &MF = DAG.getMachineFunction();
688   const AMDGPUFrameLowering *TFL =
689    static_cast<const AMDGPUFrameLowering*>(getTargetMachine().getFrameLowering());
690
691   FrameIndexSDNode *FIN = dyn_cast<FrameIndexSDNode>(Op);
692   assert(FIN);
693
694   unsigned FrameIndex = FIN->getIndex();
695   unsigned Offset = TFL->getFrameIndexOffset(MF, FrameIndex);
696   return DAG.getConstant(Offset * 4 * TFL->getStackWidth(MF),
697                          Op.getValueType());
698 }
699
700 SDValue AMDGPUTargetLowering::LowerINTRINSIC_WO_CHAIN(SDValue Op,
701     SelectionDAG &DAG) const {
702   unsigned IntrinsicID = cast<ConstantSDNode>(Op.getOperand(0))->getZExtValue();
703   SDLoc DL(Op);
704   EVT VT = Op.getValueType();
705
706   switch (IntrinsicID) {
707     default: return Op;
708     case AMDGPUIntrinsic::AMDIL_abs:
709       return LowerIntrinsicIABS(Op, DAG);
710     case AMDGPUIntrinsic::AMDIL_exp:
711       return DAG.getNode(ISD::FEXP2, DL, VT, Op.getOperand(1));
712     case AMDGPUIntrinsic::AMDGPU_lrp:
713       return LowerIntrinsicLRP(Op, DAG);
714     case AMDGPUIntrinsic::AMDIL_fraction:
715       return DAG.getNode(AMDGPUISD::FRACT, DL, VT, Op.getOperand(1));
716     case AMDGPUIntrinsic::AMDIL_max:
717       return DAG.getNode(AMDGPUISD::FMAX, DL, VT, Op.getOperand(1),
718                                                   Op.getOperand(2));
719     case AMDGPUIntrinsic::AMDGPU_imax:
720       return DAG.getNode(AMDGPUISD::SMAX, DL, VT, Op.getOperand(1),
721                                                   Op.getOperand(2));
722     case AMDGPUIntrinsic::AMDGPU_umax:
723       return DAG.getNode(AMDGPUISD::UMAX, DL, VT, Op.getOperand(1),
724                                                   Op.getOperand(2));
725     case AMDGPUIntrinsic::AMDIL_min:
726       return DAG.getNode(AMDGPUISD::FMIN, DL, VT, Op.getOperand(1),
727                                                   Op.getOperand(2));
728     case AMDGPUIntrinsic::AMDGPU_imin:
729       return DAG.getNode(AMDGPUISD::SMIN, DL, VT, Op.getOperand(1),
730                                                   Op.getOperand(2));
731     case AMDGPUIntrinsic::AMDGPU_umin:
732       return DAG.getNode(AMDGPUISD::UMIN, DL, VT, Op.getOperand(1),
733                                                   Op.getOperand(2));
734
735     case AMDGPUIntrinsic::AMDGPU_umul24:
736       return DAG.getNode(AMDGPUISD::MUL_U24, DL, VT,
737                          Op.getOperand(1), Op.getOperand(2));
738
739     case AMDGPUIntrinsic::AMDGPU_imul24:
740       return DAG.getNode(AMDGPUISD::MUL_I24, DL, VT,
741                          Op.getOperand(1), Op.getOperand(2));
742
743     case AMDGPUIntrinsic::AMDGPU_bfe_i32:
744       return DAG.getNode(AMDGPUISD::BFE_I32, DL, VT,
745                          Op.getOperand(1),
746                          Op.getOperand(2),
747                          Op.getOperand(3));
748
749     case AMDGPUIntrinsic::AMDGPU_bfe_u32:
750       return DAG.getNode(AMDGPUISD::BFE_U32, DL, VT,
751                          Op.getOperand(1),
752                          Op.getOperand(2),
753                          Op.getOperand(3));
754
755     case AMDGPUIntrinsic::AMDGPU_bfi:
756       return DAG.getNode(AMDGPUISD::BFI, DL, VT,
757                          Op.getOperand(1),
758                          Op.getOperand(2),
759                          Op.getOperand(3));
760
761     case AMDGPUIntrinsic::AMDGPU_bfm:
762       return DAG.getNode(AMDGPUISD::BFM, DL, VT,
763                          Op.getOperand(1),
764                          Op.getOperand(2));
765
766     case AMDGPUIntrinsic::AMDIL_round_nearest:
767       return DAG.getNode(ISD::FRINT, DL, VT, Op.getOperand(1));
768   }
769 }
770
771 ///IABS(a) = SMAX(sub(0, a), a)
772 SDValue AMDGPUTargetLowering::LowerIntrinsicIABS(SDValue Op,
773                                                  SelectionDAG &DAG) const {
774   SDLoc DL(Op);
775   EVT VT = Op.getValueType();
776   SDValue Neg = DAG.getNode(ISD::SUB, DL, VT, DAG.getConstant(0, VT),
777                                               Op.getOperand(1));
778
779   return DAG.getNode(AMDGPUISD::SMAX, DL, VT, Neg, Op.getOperand(1));
780 }
781
782 /// Linear Interpolation
783 /// LRP(a, b, c) = muladd(a,  b, (1 - a) * c)
784 SDValue AMDGPUTargetLowering::LowerIntrinsicLRP(SDValue Op,
785                                                 SelectionDAG &DAG) const {
786   SDLoc DL(Op);
787   EVT VT = Op.getValueType();
788   SDValue OneSubA = DAG.getNode(ISD::FSUB, DL, VT,
789                                 DAG.getConstantFP(1.0f, MVT::f32),
790                                 Op.getOperand(1));
791   SDValue OneSubAC = DAG.getNode(ISD::FMUL, DL, VT, OneSubA,
792                                                     Op.getOperand(3));
793   return DAG.getNode(ISD::FADD, DL, VT,
794       DAG.getNode(ISD::FMUL, DL, VT, Op.getOperand(1), Op.getOperand(2)),
795       OneSubAC);
796 }
797
798 /// \brief Generate Min/Max node
799 SDValue AMDGPUTargetLowering::CombineMinMax(SDNode *N,
800                                             SelectionDAG &DAG) const {
801   SDLoc DL(N);
802   EVT VT = N->getValueType(0);
803
804   SDValue LHS = N->getOperand(0);
805   SDValue RHS = N->getOperand(1);
806   SDValue True = N->getOperand(2);
807   SDValue False = N->getOperand(3);
808   SDValue CC = N->getOperand(4);
809
810   if (VT != MVT::f32 ||
811       !((LHS == True && RHS == False) || (LHS == False && RHS == True))) {
812     return SDValue();
813   }
814
815   ISD::CondCode CCOpcode = cast<CondCodeSDNode>(CC)->get();
816   switch (CCOpcode) {
817   case ISD::SETOEQ:
818   case ISD::SETONE:
819   case ISD::SETUNE:
820   case ISD::SETNE:
821   case ISD::SETUEQ:
822   case ISD::SETEQ:
823   case ISD::SETFALSE:
824   case ISD::SETFALSE2:
825   case ISD::SETTRUE:
826   case ISD::SETTRUE2:
827   case ISD::SETUO:
828   case ISD::SETO:
829     llvm_unreachable("Operation should already be optimised!");
830   case ISD::SETULE:
831   case ISD::SETULT:
832   case ISD::SETOLE:
833   case ISD::SETOLT:
834   case ISD::SETLE:
835   case ISD::SETLT: {
836     unsigned Opc = (LHS == True) ? AMDGPUISD::FMIN : AMDGPUISD::FMAX;
837     return DAG.getNode(Opc, DL, VT, LHS, RHS);
838   }
839   case ISD::SETGT:
840   case ISD::SETGE:
841   case ISD::SETUGE:
842   case ISD::SETOGE:
843   case ISD::SETUGT:
844   case ISD::SETOGT: {
845     unsigned Opc = (LHS == True) ? AMDGPUISD::FMAX : AMDGPUISD::FMIN;
846     return DAG.getNode(Opc, DL, VT, LHS, RHS);
847   }
848   case ISD::SETCC_INVALID:
849     llvm_unreachable("Invalid setcc condcode!");
850   }
851   return SDValue();
852 }
853
854 SDValue AMDGPUTargetLowering::SplitVectorLoad(const SDValue &Op,
855                                               SelectionDAG &DAG) const {
856   LoadSDNode *Load = dyn_cast<LoadSDNode>(Op);
857   EVT MemEltVT = Load->getMemoryVT().getVectorElementType();
858   EVT EltVT = Op.getValueType().getVectorElementType();
859   EVT PtrVT = Load->getBasePtr().getValueType();
860   unsigned NumElts = Load->getMemoryVT().getVectorNumElements();
861   SmallVector<SDValue, 8> Loads;
862   SDLoc SL(Op);
863
864   for (unsigned i = 0, e = NumElts; i != e; ++i) {
865     SDValue Ptr = DAG.getNode(ISD::ADD, SL, PtrVT, Load->getBasePtr(),
866                     DAG.getConstant(i * (MemEltVT.getSizeInBits() / 8), PtrVT));
867     Loads.push_back(DAG.getExtLoad(Load->getExtensionType(), SL, EltVT,
868                         Load->getChain(), Ptr,
869                         MachinePointerInfo(Load->getMemOperand()->getValue()),
870                         MemEltVT, Load->isVolatile(), Load->isNonTemporal(),
871                         Load->getAlignment()));
872   }
873   return DAG.getNode(ISD::BUILD_VECTOR, SL, Op.getValueType(), Loads);
874 }
875
876 SDValue AMDGPUTargetLowering::MergeVectorStore(const SDValue &Op,
877                                                SelectionDAG &DAG) const {
878   StoreSDNode *Store = dyn_cast<StoreSDNode>(Op);
879   EVT MemVT = Store->getMemoryVT();
880   unsigned MemBits = MemVT.getSizeInBits();
881
882   // Byte stores are really expensive, so if possible, try to pack 32-bit vector
883   // truncating store into an i32 store.
884   // XXX: We could also handle optimize other vector bitwidths.
885   if (!MemVT.isVector() || MemBits > 32) {
886     return SDValue();
887   }
888
889   SDLoc DL(Op);
890   SDValue Value = Store->getValue();
891   EVT VT = Value.getValueType();
892   EVT ElemVT = VT.getVectorElementType();
893   SDValue Ptr = Store->getBasePtr();
894   EVT MemEltVT = MemVT.getVectorElementType();
895   unsigned MemEltBits = MemEltVT.getSizeInBits();
896   unsigned MemNumElements = MemVT.getVectorNumElements();
897   unsigned PackedSize = MemVT.getStoreSizeInBits();
898   SDValue Mask = DAG.getConstant((1 << MemEltBits) - 1, MVT::i32);
899
900   assert(Value.getValueType().getScalarSizeInBits() >= 32);
901
902   SDValue PackedValue;
903   for (unsigned i = 0; i < MemNumElements; ++i) {
904     SDValue Elt = DAG.getNode(ISD::EXTRACT_VECTOR_ELT, DL, ElemVT, Value,
905                               DAG.getConstant(i, MVT::i32));
906     Elt = DAG.getZExtOrTrunc(Elt, DL, MVT::i32);
907     Elt = DAG.getNode(ISD::AND, DL, MVT::i32, Elt, Mask); // getZeroExtendInReg
908
909     SDValue Shift = DAG.getConstant(MemEltBits * i, MVT::i32);
910     Elt = DAG.getNode(ISD::SHL, DL, MVT::i32, Elt, Shift);
911
912     if (i == 0) {
913       PackedValue = Elt;
914     } else {
915       PackedValue = DAG.getNode(ISD::OR, DL, MVT::i32, PackedValue, Elt);
916     }
917   }
918
919   if (PackedSize < 32) {
920     EVT PackedVT = EVT::getIntegerVT(*DAG.getContext(), PackedSize);
921     return DAG.getTruncStore(Store->getChain(), DL, PackedValue, Ptr,
922                              Store->getMemOperand()->getPointerInfo(),
923                              PackedVT,
924                              Store->isNonTemporal(), Store->isVolatile(),
925                              Store->getAlignment());
926   }
927
928   return DAG.getStore(Store->getChain(), DL, PackedValue, Ptr,
929                       Store->getMemOperand()->getPointerInfo(),
930                       Store->isVolatile(),  Store->isNonTemporal(),
931                       Store->getAlignment());
932 }
933
934 SDValue AMDGPUTargetLowering::SplitVectorStore(SDValue Op,
935                                             SelectionDAG &DAG) const {
936   StoreSDNode *Store = cast<StoreSDNode>(Op);
937   EVT MemEltVT = Store->getMemoryVT().getVectorElementType();
938   EVT EltVT = Store->getValue().getValueType().getVectorElementType();
939   EVT PtrVT = Store->getBasePtr().getValueType();
940   unsigned NumElts = Store->getMemoryVT().getVectorNumElements();
941   SDLoc SL(Op);
942
943   SmallVector<SDValue, 8> Chains;
944
945   for (unsigned i = 0, e = NumElts; i != e; ++i) {
946     SDValue Val = DAG.getNode(ISD::EXTRACT_VECTOR_ELT, SL, EltVT,
947                               Store->getValue(), DAG.getConstant(i, MVT::i32));
948     SDValue Ptr = DAG.getNode(ISD::ADD, SL, PtrVT,
949                               Store->getBasePtr(),
950                             DAG.getConstant(i * (MemEltVT.getSizeInBits() / 8),
951                                             PtrVT));
952     Chains.push_back(DAG.getTruncStore(Store->getChain(), SL, Val, Ptr,
953                          MachinePointerInfo(Store->getMemOperand()->getValue()),
954                          MemEltVT, Store->isVolatile(), Store->isNonTemporal(),
955                          Store->getAlignment()));
956   }
957   return DAG.getNode(ISD::TokenFactor, SL, MVT::Other, Chains);
958 }
959
960 SDValue AMDGPUTargetLowering::LowerLOAD(SDValue Op, SelectionDAG &DAG) const {
961   SDLoc DL(Op);
962   LoadSDNode *Load = cast<LoadSDNode>(Op);
963   ISD::LoadExtType ExtType = Load->getExtensionType();
964   EVT VT = Op.getValueType();
965   EVT MemVT = Load->getMemoryVT();
966
967   if (ExtType != ISD::NON_EXTLOAD && !VT.isVector() && VT.getSizeInBits() > 32) {
968     // We can do the extload to 32-bits, and then need to separately extend to
969     // 64-bits.
970
971     SDValue ExtLoad32 = DAG.getExtLoad(ExtType, DL, MVT::i32,
972                                        Load->getChain(),
973                                        Load->getBasePtr(),
974                                        MemVT,
975                                        Load->getMemOperand());
976     return DAG.getNode(ISD::getExtForLoadExtType(ExtType), DL, VT, ExtLoad32);
977   }
978
979   if (ExtType == ISD::NON_EXTLOAD && VT.getSizeInBits() < 32) {
980     assert(VT == MVT::i1 && "Only i1 non-extloads expected");
981     // FIXME: Copied from PPC
982     // First, load into 32 bits, then truncate to 1 bit.
983
984     SDValue Chain = Load->getChain();
985     SDValue BasePtr = Load->getBasePtr();
986     MachineMemOperand *MMO = Load->getMemOperand();
987
988     SDValue NewLD = DAG.getExtLoad(ISD::EXTLOAD, DL, MVT::i32, Chain,
989                                    BasePtr, MVT::i8, MMO);
990     return DAG.getNode(ISD::TRUNCATE, DL, VT, NewLD);
991   }
992
993   // Lower loads constant address space global variable loads
994   if (Load->getAddressSpace() == AMDGPUAS::CONSTANT_ADDRESS &&
995       isa<GlobalVariable>(
996           GetUnderlyingObject(Load->getMemOperand()->getValue()))) {
997
998     SDValue Ptr = DAG.getZExtOrTrunc(Load->getBasePtr(), DL,
999         getPointerTy(AMDGPUAS::PRIVATE_ADDRESS));
1000     Ptr = DAG.getNode(ISD::SRL, DL, MVT::i32, Ptr,
1001         DAG.getConstant(2, MVT::i32));
1002     return DAG.getNode(AMDGPUISD::REGISTER_LOAD, DL, Op.getValueType(),
1003                        Load->getChain(), Ptr,
1004                        DAG.getTargetConstant(0, MVT::i32), Op.getOperand(2));
1005   }
1006
1007   if (Load->getAddressSpace() != AMDGPUAS::PRIVATE_ADDRESS ||
1008       ExtType == ISD::NON_EXTLOAD || Load->getMemoryVT().bitsGE(MVT::i32))
1009     return SDValue();
1010
1011
1012   SDValue Ptr = DAG.getNode(ISD::SRL, DL, MVT::i32, Load->getBasePtr(),
1013                             DAG.getConstant(2, MVT::i32));
1014   SDValue Ret = DAG.getNode(AMDGPUISD::REGISTER_LOAD, DL, Op.getValueType(),
1015                             Load->getChain(), Ptr,
1016                             DAG.getTargetConstant(0, MVT::i32),
1017                             Op.getOperand(2));
1018   SDValue ByteIdx = DAG.getNode(ISD::AND, DL, MVT::i32,
1019                                 Load->getBasePtr(),
1020                                 DAG.getConstant(0x3, MVT::i32));
1021   SDValue ShiftAmt = DAG.getNode(ISD::SHL, DL, MVT::i32, ByteIdx,
1022                                  DAG.getConstant(3, MVT::i32));
1023
1024   Ret = DAG.getNode(ISD::SRL, DL, MVT::i32, Ret, ShiftAmt);
1025
1026   EVT MemEltVT = MemVT.getScalarType();
1027   if (ExtType == ISD::SEXTLOAD) {
1028     SDValue MemEltVTNode = DAG.getValueType(MemEltVT);
1029     return DAG.getNode(ISD::SIGN_EXTEND_INREG, DL, MVT::i32, Ret, MemEltVTNode);
1030   }
1031
1032   return DAG.getZeroExtendInReg(Ret, DL, MemEltVT);
1033 }
1034
1035 SDValue AMDGPUTargetLowering::LowerSTORE(SDValue Op, SelectionDAG &DAG) const {
1036   SDLoc DL(Op);
1037   SDValue Result = AMDGPUTargetLowering::MergeVectorStore(Op, DAG);
1038   if (Result.getNode()) {
1039     return Result;
1040   }
1041
1042   StoreSDNode *Store = cast<StoreSDNode>(Op);
1043   SDValue Chain = Store->getChain();
1044   if ((Store->getAddressSpace() == AMDGPUAS::LOCAL_ADDRESS ||
1045        Store->getAddressSpace() == AMDGPUAS::PRIVATE_ADDRESS) &&
1046       Store->getValue().getValueType().isVector()) {
1047     return SplitVectorStore(Op, DAG);
1048   }
1049
1050   EVT MemVT = Store->getMemoryVT();
1051   if (Store->getAddressSpace() == AMDGPUAS::PRIVATE_ADDRESS &&
1052       MemVT.bitsLT(MVT::i32)) {
1053     unsigned Mask = 0;
1054     if (Store->getMemoryVT() == MVT::i8) {
1055       Mask = 0xff;
1056     } else if (Store->getMemoryVT() == MVT::i16) {
1057       Mask = 0xffff;
1058     }
1059     SDValue BasePtr = Store->getBasePtr();
1060     SDValue Ptr = DAG.getNode(ISD::SRL, DL, MVT::i32, BasePtr,
1061                               DAG.getConstant(2, MVT::i32));
1062     SDValue Dst = DAG.getNode(AMDGPUISD::REGISTER_LOAD, DL, MVT::i32,
1063                               Chain, Ptr, DAG.getTargetConstant(0, MVT::i32));
1064
1065     SDValue ByteIdx = DAG.getNode(ISD::AND, DL, MVT::i32, BasePtr,
1066                                   DAG.getConstant(0x3, MVT::i32));
1067
1068     SDValue ShiftAmt = DAG.getNode(ISD::SHL, DL, MVT::i32, ByteIdx,
1069                                    DAG.getConstant(3, MVT::i32));
1070
1071     SDValue SExtValue = DAG.getNode(ISD::SIGN_EXTEND, DL, MVT::i32,
1072                                     Store->getValue());
1073
1074     SDValue MaskedValue = DAG.getZeroExtendInReg(SExtValue, DL, MemVT);
1075
1076     SDValue ShiftedValue = DAG.getNode(ISD::SHL, DL, MVT::i32,
1077                                        MaskedValue, ShiftAmt);
1078
1079     SDValue DstMask = DAG.getNode(ISD::SHL, DL, MVT::i32, DAG.getConstant(Mask, MVT::i32),
1080                                   ShiftAmt);
1081     DstMask = DAG.getNode(ISD::XOR, DL, MVT::i32, DstMask,
1082                           DAG.getConstant(0xffffffff, MVT::i32));
1083     Dst = DAG.getNode(ISD::AND, DL, MVT::i32, Dst, DstMask);
1084
1085     SDValue Value = DAG.getNode(ISD::OR, DL, MVT::i32, Dst, ShiftedValue);
1086     return DAG.getNode(AMDGPUISD::REGISTER_STORE, DL, MVT::Other,
1087                        Chain, Value, Ptr, DAG.getTargetConstant(0, MVT::i32));
1088   }
1089   return SDValue();
1090 }
1091
1092 SDValue AMDGPUTargetLowering::LowerUDIVREM(SDValue Op,
1093                                            SelectionDAG &DAG) const {
1094   SDLoc DL(Op);
1095   EVT VT = Op.getValueType();
1096
1097   SDValue Num = Op.getOperand(0);
1098   SDValue Den = Op.getOperand(1);
1099
1100   // RCP =  URECIP(Den) = 2^32 / Den + e
1101   // e is rounding error.
1102   SDValue RCP = DAG.getNode(AMDGPUISD::URECIP, DL, VT, Den);
1103
1104   // RCP_LO = umulo(RCP, Den) */
1105   SDValue RCP_LO = DAG.getNode(ISD::UMULO, DL, VT, RCP, Den);
1106
1107   // RCP_HI = mulhu (RCP, Den) */
1108   SDValue RCP_HI = DAG.getNode(ISD::MULHU, DL, VT, RCP, Den);
1109
1110   // NEG_RCP_LO = -RCP_LO
1111   SDValue NEG_RCP_LO = DAG.getNode(ISD::SUB, DL, VT, DAG.getConstant(0, VT),
1112                                                      RCP_LO);
1113
1114   // ABS_RCP_LO = (RCP_HI == 0 ? NEG_RCP_LO : RCP_LO)
1115   SDValue ABS_RCP_LO = DAG.getSelectCC(DL, RCP_HI, DAG.getConstant(0, VT),
1116                                            NEG_RCP_LO, RCP_LO,
1117                                            ISD::SETEQ);
1118   // Calculate the rounding error from the URECIP instruction
1119   // E = mulhu(ABS_RCP_LO, RCP)
1120   SDValue E = DAG.getNode(ISD::MULHU, DL, VT, ABS_RCP_LO, RCP);
1121
1122   // RCP_A_E = RCP + E
1123   SDValue RCP_A_E = DAG.getNode(ISD::ADD, DL, VT, RCP, E);
1124
1125   // RCP_S_E = RCP - E
1126   SDValue RCP_S_E = DAG.getNode(ISD::SUB, DL, VT, RCP, E);
1127
1128   // Tmp0 = (RCP_HI == 0 ? RCP_A_E : RCP_SUB_E)
1129   SDValue Tmp0 = DAG.getSelectCC(DL, RCP_HI, DAG.getConstant(0, VT),
1130                                      RCP_A_E, RCP_S_E,
1131                                      ISD::SETEQ);
1132   // Quotient = mulhu(Tmp0, Num)
1133   SDValue Quotient = DAG.getNode(ISD::MULHU, DL, VT, Tmp0, Num);
1134
1135   // Num_S_Remainder = Quotient * Den
1136   SDValue Num_S_Remainder = DAG.getNode(ISD::UMULO, DL, VT, Quotient, Den);
1137
1138   // Remainder = Num - Num_S_Remainder
1139   SDValue Remainder = DAG.getNode(ISD::SUB, DL, VT, Num, Num_S_Remainder);
1140
1141   // Remainder_GE_Den = (Remainder >= Den ? -1 : 0)
1142   SDValue Remainder_GE_Den = DAG.getSelectCC(DL, Remainder, Den,
1143                                                  DAG.getConstant(-1, VT),
1144                                                  DAG.getConstant(0, VT),
1145                                                  ISD::SETUGE);
1146   // Remainder_GE_Zero = (Num >= Num_S_Remainder ? -1 : 0)
1147   SDValue Remainder_GE_Zero = DAG.getSelectCC(DL, Num,
1148                                                   Num_S_Remainder,
1149                                                   DAG.getConstant(-1, VT),
1150                                                   DAG.getConstant(0, VT),
1151                                                   ISD::SETUGE);
1152   // Tmp1 = Remainder_GE_Den & Remainder_GE_Zero
1153   SDValue Tmp1 = DAG.getNode(ISD::AND, DL, VT, Remainder_GE_Den,
1154                                                Remainder_GE_Zero);
1155
1156   // Calculate Division result:
1157
1158   // Quotient_A_One = Quotient + 1
1159   SDValue Quotient_A_One = DAG.getNode(ISD::ADD, DL, VT, Quotient,
1160                                                          DAG.getConstant(1, VT));
1161
1162   // Quotient_S_One = Quotient - 1
1163   SDValue Quotient_S_One = DAG.getNode(ISD::SUB, DL, VT, Quotient,
1164                                                          DAG.getConstant(1, VT));
1165
1166   // Div = (Tmp1 == 0 ? Quotient : Quotient_A_One)
1167   SDValue Div = DAG.getSelectCC(DL, Tmp1, DAG.getConstant(0, VT),
1168                                      Quotient, Quotient_A_One, ISD::SETEQ);
1169
1170   // Div = (Remainder_GE_Zero == 0 ? Quotient_S_One : Div)
1171   Div = DAG.getSelectCC(DL, Remainder_GE_Zero, DAG.getConstant(0, VT),
1172                             Quotient_S_One, Div, ISD::SETEQ);
1173
1174   // Calculate Rem result:
1175
1176   // Remainder_S_Den = Remainder - Den
1177   SDValue Remainder_S_Den = DAG.getNode(ISD::SUB, DL, VT, Remainder, Den);
1178
1179   // Remainder_A_Den = Remainder + Den
1180   SDValue Remainder_A_Den = DAG.getNode(ISD::ADD, DL, VT, Remainder, Den);
1181
1182   // Rem = (Tmp1 == 0 ? Remainder : Remainder_S_Den)
1183   SDValue Rem = DAG.getSelectCC(DL, Tmp1, DAG.getConstant(0, VT),
1184                                     Remainder, Remainder_S_Den, ISD::SETEQ);
1185
1186   // Rem = (Remainder_GE_Zero == 0 ? Remainder_A_Den : Rem)
1187   Rem = DAG.getSelectCC(DL, Remainder_GE_Zero, DAG.getConstant(0, VT),
1188                             Remainder_A_Den, Rem, ISD::SETEQ);
1189   SDValue Ops[2] = {
1190     Div,
1191     Rem
1192   };
1193   return DAG.getMergeValues(Ops, DL);
1194 }
1195
1196 SDValue AMDGPUTargetLowering::LowerUINT_TO_FP(SDValue Op,
1197                                                SelectionDAG &DAG) const {
1198   SDValue S0 = Op.getOperand(0);
1199   SDLoc DL(Op);
1200   if (Op.getValueType() != MVT::f32 || S0.getValueType() != MVT::i64)
1201     return SDValue();
1202
1203   // f32 uint_to_fp i64
1204   SDValue Lo = DAG.getNode(ISD::EXTRACT_ELEMENT, DL, MVT::i32, S0,
1205                            DAG.getConstant(0, MVT::i32));
1206   SDValue FloatLo = DAG.getNode(ISD::UINT_TO_FP, DL, MVT::f32, Lo);
1207   SDValue Hi = DAG.getNode(ISD::EXTRACT_ELEMENT, DL, MVT::i32, S0,
1208                            DAG.getConstant(1, MVT::i32));
1209   SDValue FloatHi = DAG.getNode(ISD::UINT_TO_FP, DL, MVT::f32, Hi);
1210   FloatHi = DAG.getNode(ISD::FMUL, DL, MVT::f32, FloatHi,
1211                         DAG.getConstantFP(4294967296.0f, MVT::f32)); // 2^32
1212   return DAG.getNode(ISD::FADD, DL, MVT::f32, FloatLo, FloatHi);
1213
1214 }
1215
1216 SDValue AMDGPUTargetLowering::ExpandSIGN_EXTEND_INREG(SDValue Op,
1217                                                       unsigned BitsDiff,
1218                                                       SelectionDAG &DAG) const {
1219   MVT VT = Op.getSimpleValueType();
1220   SDLoc DL(Op);
1221   SDValue Shift = DAG.getConstant(BitsDiff, VT);
1222   // Shift left by 'Shift' bits.
1223   SDValue Shl = DAG.getNode(ISD::SHL, DL, VT, Op.getOperand(0), Shift);
1224   // Signed shift Right by 'Shift' bits.
1225   return DAG.getNode(ISD::SRA, DL, VT, Shl, Shift);
1226 }
1227
1228 SDValue AMDGPUTargetLowering::LowerSIGN_EXTEND_INREG(SDValue Op,
1229                                                      SelectionDAG &DAG) const {
1230   EVT ExtraVT = cast<VTSDNode>(Op.getOperand(1))->getVT();
1231   MVT VT = Op.getSimpleValueType();
1232   MVT ScalarVT = VT.getScalarType();
1233
1234   if (!VT.isVector())
1235     return SDValue();
1236
1237   SDValue Src = Op.getOperand(0);
1238   SDLoc DL(Op);
1239
1240   // TODO: Don't scalarize on Evergreen?
1241   unsigned NElts = VT.getVectorNumElements();
1242   SmallVector<SDValue, 8> Args;
1243   DAG.ExtractVectorElements(Src, Args, 0, NElts);
1244
1245   SDValue VTOp = DAG.getValueType(ExtraVT.getScalarType());
1246   for (unsigned I = 0; I < NElts; ++I)
1247     Args[I] = DAG.getNode(ISD::SIGN_EXTEND_INREG, DL, ScalarVT, Args[I], VTOp);
1248
1249   return DAG.getNode(ISD::BUILD_VECTOR, DL, VT, Args);
1250 }
1251
1252 //===----------------------------------------------------------------------===//
1253 // Custom DAG optimizations
1254 //===----------------------------------------------------------------------===//
1255
1256 static bool isU24(SDValue Op, SelectionDAG &DAG) {
1257   APInt KnownZero, KnownOne;
1258   EVT VT = Op.getValueType();
1259   DAG.computeKnownBits(Op, KnownZero, KnownOne);
1260
1261   return (VT.getSizeInBits() - KnownZero.countLeadingOnes()) <= 24;
1262 }
1263
1264 static bool isI24(SDValue Op, SelectionDAG &DAG) {
1265   EVT VT = Op.getValueType();
1266
1267   // In order for this to be a signed 24-bit value, bit 23, must
1268   // be a sign bit.
1269   return VT.getSizeInBits() >= 24 && // Types less than 24-bit should be treated
1270                                      // as unsigned 24-bit values.
1271          (VT.getSizeInBits() - DAG.ComputeNumSignBits(Op)) < 24;
1272 }
1273
1274 static void simplifyI24(SDValue Op, TargetLowering::DAGCombinerInfo &DCI) {
1275
1276   SelectionDAG &DAG = DCI.DAG;
1277   const TargetLowering &TLI = DAG.getTargetLoweringInfo();
1278   EVT VT = Op.getValueType();
1279
1280   APInt Demanded = APInt::getLowBitsSet(VT.getSizeInBits(), 24);
1281   APInt KnownZero, KnownOne;
1282   TargetLowering::TargetLoweringOpt TLO(DAG, true, true);
1283   if (TLI.SimplifyDemandedBits(Op, Demanded, KnownZero, KnownOne, TLO))
1284     DCI.CommitTargetLoweringOpt(TLO);
1285 }
1286
1287 SDValue AMDGPUTargetLowering::PerformDAGCombine(SDNode *N,
1288                                             DAGCombinerInfo &DCI) const {
1289   SelectionDAG &DAG = DCI.DAG;
1290   SDLoc DL(N);
1291
1292   switch(N->getOpcode()) {
1293     default: break;
1294     case ISD::MUL: {
1295       EVT VT = N->getValueType(0);
1296       SDValue N0 = N->getOperand(0);
1297       SDValue N1 = N->getOperand(1);
1298       SDValue Mul;
1299
1300       // FIXME: Add support for 24-bit multiply with 64-bit output on SI.
1301       if (VT.isVector() || VT.getSizeInBits() > 32)
1302         break;
1303
1304       if (Subtarget->hasMulU24() && isU24(N0, DAG) && isU24(N1, DAG)) {
1305         N0 = DAG.getZExtOrTrunc(N0, DL, MVT::i32);
1306         N1 = DAG.getZExtOrTrunc(N1, DL, MVT::i32);
1307         Mul = DAG.getNode(AMDGPUISD::MUL_U24, DL, MVT::i32, N0, N1);
1308       } else if (Subtarget->hasMulI24() && isI24(N0, DAG) && isI24(N1, DAG)) {
1309         N0 = DAG.getSExtOrTrunc(N0, DL, MVT::i32);
1310         N1 = DAG.getSExtOrTrunc(N1, DL, MVT::i32);
1311         Mul = DAG.getNode(AMDGPUISD::MUL_I24, DL, MVT::i32, N0, N1);
1312       } else {
1313         break;
1314       }
1315
1316       // We need to use sext even for MUL_U24, because MUL_U24 is used
1317       // for signed multiply of 8 and 16-bit types.
1318       SDValue Reg = DAG.getSExtOrTrunc(Mul, DL, VT);
1319
1320       return Reg;
1321     }
1322     case AMDGPUISD::MUL_I24:
1323     case AMDGPUISD::MUL_U24: {
1324       SDValue N0 = N->getOperand(0);
1325       SDValue N1 = N->getOperand(1);
1326       simplifyI24(N0, DCI);
1327       simplifyI24(N1, DCI);
1328       return SDValue();
1329     }
1330     case ISD::SELECT_CC: {
1331       return CombineMinMax(N, DAG);
1332     }
1333   }
1334   return SDValue();
1335 }
1336
1337 //===----------------------------------------------------------------------===//
1338 // Helper functions
1339 //===----------------------------------------------------------------------===//
1340
1341 void AMDGPUTargetLowering::getOriginalFunctionArgs(
1342                                SelectionDAG &DAG,
1343                                const Function *F,
1344                                const SmallVectorImpl<ISD::InputArg> &Ins,
1345                                SmallVectorImpl<ISD::InputArg> &OrigIns) const {
1346
1347   for (unsigned i = 0, e = Ins.size(); i < e; ++i) {
1348     if (Ins[i].ArgVT == Ins[i].VT) {
1349       OrigIns.push_back(Ins[i]);
1350       continue;
1351     }
1352
1353     EVT VT;
1354     if (Ins[i].ArgVT.isVector() && !Ins[i].VT.isVector()) {
1355       // Vector has been split into scalars.
1356       VT = Ins[i].ArgVT.getVectorElementType();
1357     } else if (Ins[i].VT.isVector() && Ins[i].ArgVT.isVector() &&
1358                Ins[i].ArgVT.getVectorElementType() !=
1359                Ins[i].VT.getVectorElementType()) {
1360       // Vector elements have been promoted
1361       VT = Ins[i].ArgVT;
1362     } else {
1363       // Vector has been spilt into smaller vectors.
1364       VT = Ins[i].VT;
1365     }
1366
1367     ISD::InputArg Arg(Ins[i].Flags, VT, VT, Ins[i].Used,
1368                       Ins[i].OrigArgIndex, Ins[i].PartOffset);
1369     OrigIns.push_back(Arg);
1370   }
1371 }
1372
1373 bool AMDGPUTargetLowering::isHWTrueValue(SDValue Op) const {
1374   if (ConstantFPSDNode * CFP = dyn_cast<ConstantFPSDNode>(Op)) {
1375     return CFP->isExactlyValue(1.0);
1376   }
1377   if (ConstantSDNode *C = dyn_cast<ConstantSDNode>(Op)) {
1378     return C->isAllOnesValue();
1379   }
1380   return false;
1381 }
1382
1383 bool AMDGPUTargetLowering::isHWFalseValue(SDValue Op) const {
1384   if (ConstantFPSDNode * CFP = dyn_cast<ConstantFPSDNode>(Op)) {
1385     return CFP->getValueAPF().isZero();
1386   }
1387   if (ConstantSDNode *C = dyn_cast<ConstantSDNode>(Op)) {
1388     return C->isNullValue();
1389   }
1390   return false;
1391 }
1392
1393 SDValue AMDGPUTargetLowering::CreateLiveInRegister(SelectionDAG &DAG,
1394                                                   const TargetRegisterClass *RC,
1395                                                    unsigned Reg, EVT VT) const {
1396   MachineFunction &MF = DAG.getMachineFunction();
1397   MachineRegisterInfo &MRI = MF.getRegInfo();
1398   unsigned VirtualRegister;
1399   if (!MRI.isLiveIn(Reg)) {
1400     VirtualRegister = MRI.createVirtualRegister(RC);
1401     MRI.addLiveIn(Reg, VirtualRegister);
1402   } else {
1403     VirtualRegister = MRI.getLiveInVirtReg(Reg);
1404   }
1405   return DAG.getRegister(VirtualRegister, VT);
1406 }
1407
1408 #define NODE_NAME_CASE(node) case AMDGPUISD::node: return #node;
1409
1410 const char* AMDGPUTargetLowering::getTargetNodeName(unsigned Opcode) const {
1411   switch (Opcode) {
1412   default: return nullptr;
1413   // AMDIL DAG nodes
1414   NODE_NAME_CASE(CALL);
1415   NODE_NAME_CASE(UMUL);
1416   NODE_NAME_CASE(DIV_INF);
1417   NODE_NAME_CASE(RET_FLAG);
1418   NODE_NAME_CASE(BRANCH_COND);
1419
1420   // AMDGPU DAG nodes
1421   NODE_NAME_CASE(DWORDADDR)
1422   NODE_NAME_CASE(FRACT)
1423   NODE_NAME_CASE(FMAX)
1424   NODE_NAME_CASE(SMAX)
1425   NODE_NAME_CASE(UMAX)
1426   NODE_NAME_CASE(FMIN)
1427   NODE_NAME_CASE(SMIN)
1428   NODE_NAME_CASE(UMIN)
1429   NODE_NAME_CASE(BFE_U32)
1430   NODE_NAME_CASE(BFE_I32)
1431   NODE_NAME_CASE(BFI)
1432   NODE_NAME_CASE(BFM)
1433   NODE_NAME_CASE(MUL_U24)
1434   NODE_NAME_CASE(MUL_I24)
1435   NODE_NAME_CASE(URECIP)
1436   NODE_NAME_CASE(DOT4)
1437   NODE_NAME_CASE(EXPORT)
1438   NODE_NAME_CASE(CONST_ADDRESS)
1439   NODE_NAME_CASE(REGISTER_LOAD)
1440   NODE_NAME_CASE(REGISTER_STORE)
1441   NODE_NAME_CASE(LOAD_CONSTANT)
1442   NODE_NAME_CASE(LOAD_INPUT)
1443   NODE_NAME_CASE(SAMPLE)
1444   NODE_NAME_CASE(SAMPLEB)
1445   NODE_NAME_CASE(SAMPLED)
1446   NODE_NAME_CASE(SAMPLEL)
1447   NODE_NAME_CASE(STORE_MSKOR)
1448   NODE_NAME_CASE(TBUFFER_STORE_FORMAT)
1449   }
1450 }
1451
1452 static void computeKnownBitsForMinMax(const SDValue Op0,
1453                                       const SDValue Op1,
1454                                       APInt &KnownZero,
1455                                       APInt &KnownOne,
1456                                       const SelectionDAG &DAG,
1457                                       unsigned Depth) {
1458   APInt Op0Zero, Op0One;
1459   APInt Op1Zero, Op1One;
1460   DAG.computeKnownBits(Op0, Op0Zero, Op0One, Depth);
1461   DAG.computeKnownBits(Op1, Op1Zero, Op1One, Depth);
1462
1463   KnownZero = Op0Zero & Op1Zero;
1464   KnownOne = Op0One & Op1One;
1465 }
1466
1467 void AMDGPUTargetLowering::computeKnownBitsForTargetNode(
1468   const SDValue Op,
1469   APInt &KnownZero,
1470   APInt &KnownOne,
1471   const SelectionDAG &DAG,
1472   unsigned Depth) const {
1473
1474   KnownZero = KnownOne = APInt(KnownOne.getBitWidth(), 0); // Don't know anything.
1475   unsigned Opc = Op.getOpcode();
1476   switch (Opc) {
1477   case ISD::INTRINSIC_WO_CHAIN: {
1478     // FIXME: The intrinsic should just use the node.
1479     switch (cast<ConstantSDNode>(Op.getOperand(0))->getZExtValue()) {
1480     case AMDGPUIntrinsic::AMDGPU_imax:
1481     case AMDGPUIntrinsic::AMDGPU_umax:
1482     case AMDGPUIntrinsic::AMDGPU_imin:
1483     case AMDGPUIntrinsic::AMDGPU_umin:
1484       computeKnownBitsForMinMax(Op.getOperand(1), Op.getOperand(2),
1485                                 KnownZero, KnownOne, DAG, Depth);
1486       break;
1487     default:
1488       break;
1489     }
1490
1491     break;
1492   }
1493   case AMDGPUISD::SMAX:
1494   case AMDGPUISD::UMAX:
1495   case AMDGPUISD::SMIN:
1496   case AMDGPUISD::UMIN:
1497     computeKnownBitsForMinMax(Op.getOperand(0), Op.getOperand(1),
1498                               KnownZero, KnownOne, DAG, Depth);
1499     break;
1500   default:
1501     break;
1502   }
1503 }