Revert "R600/SI: Add support for global atomic add"
[oota-llvm.git] / lib / Target / R600 / AMDGPUISelDAGToDAG.cpp
1 //===-- AMDILISelDAGToDAG.cpp - A dag to dag inst selector for AMDIL ------===//
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 Defines an instruction selector for the AMDGPU target.
12 //
13 //===----------------------------------------------------------------------===//
14 #include "AMDGPUInstrInfo.h"
15 #include "AMDGPUISelLowering.h" // For AMDGPUISD
16 #include "AMDGPURegisterInfo.h"
17 #include "AMDGPUSubtarget.h"
18 #include "R600InstrInfo.h"
19 #include "SIDefines.h"
20 #include "SIISelLowering.h"
21 #include "SIMachineFunctionInfo.h"
22 #include "llvm/CodeGen/FunctionLoweringInfo.h"
23 #include "llvm/CodeGen/PseudoSourceValue.h"
24 #include "llvm/CodeGen/MachineFrameInfo.h"
25 #include "llvm/CodeGen/MachineRegisterInfo.h"
26 #include "llvm/CodeGen/SelectionDAG.h"
27 #include "llvm/CodeGen/SelectionDAGISel.h"
28 #include "llvm/IR/Function.h"
29
30 using namespace llvm;
31
32 //===----------------------------------------------------------------------===//
33 // Instruction Selector Implementation
34 //===----------------------------------------------------------------------===//
35
36 namespace {
37 /// AMDGPU specific code to select AMDGPU machine instructions for
38 /// SelectionDAG operations.
39 class AMDGPUDAGToDAGISel : public SelectionDAGISel {
40   // Subtarget - Keep a pointer to the AMDGPU Subtarget around so that we can
41   // make the right decision when generating code for different targets.
42   const AMDGPUSubtarget &Subtarget;
43 public:
44   AMDGPUDAGToDAGISel(TargetMachine &TM);
45   virtual ~AMDGPUDAGToDAGISel();
46
47   SDNode *Select(SDNode *N) override;
48   const char *getPassName() const override;
49   void PostprocessISelDAG() override;
50
51 private:
52   bool isInlineImmediate(SDNode *N) const;
53   inline SDValue getSmallIPtrImm(unsigned Imm);
54   bool FoldOperand(SDValue &Src, SDValue &Sel, SDValue &Neg, SDValue &Abs,
55                    const R600InstrInfo *TII);
56   bool FoldOperands(unsigned, const R600InstrInfo *, std::vector<SDValue> &);
57   bool FoldDotOperands(unsigned, const R600InstrInfo *, std::vector<SDValue> &);
58
59   // Complex pattern selectors
60   bool SelectADDRParam(SDValue Addr, SDValue& R1, SDValue& R2);
61   bool SelectADDR(SDValue N, SDValue &R1, SDValue &R2);
62   bool SelectADDR64(SDValue N, SDValue &R1, SDValue &R2);
63
64   static bool checkType(const Value *ptr, unsigned int addrspace);
65   static bool checkPrivateAddress(const MachineMemOperand *Op);
66
67   static bool isGlobalStore(const StoreSDNode *N);
68   static bool isFlatStore(const StoreSDNode *N);
69   static bool isPrivateStore(const StoreSDNode *N);
70   static bool isLocalStore(const StoreSDNode *N);
71   static bool isRegionStore(const StoreSDNode *N);
72
73   bool isCPLoad(const LoadSDNode *N) const;
74   bool isConstantLoad(const LoadSDNode *N, int cbID) const;
75   bool isGlobalLoad(const LoadSDNode *N) const;
76   bool isFlatLoad(const LoadSDNode *N) const;
77   bool isParamLoad(const LoadSDNode *N) const;
78   bool isPrivateLoad(const LoadSDNode *N) const;
79   bool isLocalLoad(const LoadSDNode *N) const;
80   bool isRegionLoad(const LoadSDNode *N) const;
81
82   /// \returns True if the current basic block being selected is at control
83   ///          flow depth 0.  Meaning that the current block dominates the
84   //           exit block.
85   bool isCFDepth0() const;
86
87   const TargetRegisterClass *getOperandRegClass(SDNode *N, unsigned OpNo) const;
88   bool SelectGlobalValueConstantOffset(SDValue Addr, SDValue& IntPtr);
89   bool SelectGlobalValueVariableOffset(SDValue Addr, SDValue &BaseReg,
90                                        SDValue& Offset);
91   bool SelectADDRVTX_READ(SDValue Addr, SDValue &Base, SDValue &Offset);
92   bool SelectADDRIndirect(SDValue Addr, SDValue &Base, SDValue &Offset);
93   bool isDSOffsetLegal(const SDValue &Base, unsigned Offset,
94                        unsigned OffsetBits) const;
95   bool SelectDS1Addr1Offset(SDValue Ptr, SDValue &Base, SDValue &Offset) const;
96   bool SelectDS64Bit4ByteAligned(SDValue Ptr, SDValue &Base, SDValue &Offset0,
97                                  SDValue &Offset1) const;
98   void SelectMUBUF(SDValue Addr, SDValue &SRsrc, SDValue &VAddr,
99                    SDValue &SOffset, SDValue &Offset, SDValue &Offen,
100                    SDValue &Idxen, SDValue &Addr64, SDValue &GLC, SDValue &SLC,
101                    SDValue &TFE) const;
102   bool SelectMUBUFAddr64(SDValue Addr, SDValue &SRsrc, SDValue &VAddr,
103                          SDValue &Offset) const;
104   bool SelectMUBUFScratch(SDValue Addr, SDValue &RSrc, SDValue &VAddr,
105                           SDValue &SOffset, SDValue &ImmOffset) const;
106   bool SelectMUBUFOffset(SDValue Addr, SDValue &SRsrc, SDValue &SOffset,
107                          SDValue &Offset, SDValue &GLC, SDValue &SLC,
108                          SDValue &TFE) const;
109   SDNode *SelectAddrSpaceCast(SDNode *N);
110   bool SelectVOP3Mods(SDValue In, SDValue &Src, SDValue &SrcMods) const;
111   bool SelectVOP3Mods0(SDValue In, SDValue &Src, SDValue &SrcMods,
112                        SDValue &Clamp, SDValue &Omod) const;
113
114   SDNode *SelectADD_SUB_I64(SDNode *N);
115   SDNode *SelectDIV_SCALE(SDNode *N);
116
117   // Include the pieces autogenerated from the target description.
118 #include "AMDGPUGenDAGISel.inc"
119 };
120 }  // end anonymous namespace
121
122 /// \brief This pass converts a legalized DAG into a AMDGPU-specific
123 // DAG, ready for instruction scheduling.
124 FunctionPass *llvm::createAMDGPUISelDag(TargetMachine &TM) {
125   return new AMDGPUDAGToDAGISel(TM);
126 }
127
128 AMDGPUDAGToDAGISel::AMDGPUDAGToDAGISel(TargetMachine &TM)
129   : SelectionDAGISel(TM), Subtarget(TM.getSubtarget<AMDGPUSubtarget>()) {
130 }
131
132 AMDGPUDAGToDAGISel::~AMDGPUDAGToDAGISel() {
133 }
134
135 bool AMDGPUDAGToDAGISel::isInlineImmediate(SDNode *N) const {
136   const SITargetLowering *TL
137       = static_cast<const SITargetLowering *>(getTargetLowering());
138   return TL->analyzeImmediate(N) == 0;
139 }
140
141 /// \brief Determine the register class for \p OpNo
142 /// \returns The register class of the virtual register that will be used for
143 /// the given operand number \OpNo or NULL if the register class cannot be
144 /// determined.
145 const TargetRegisterClass *AMDGPUDAGToDAGISel::getOperandRegClass(SDNode *N,
146                                                           unsigned OpNo) const {
147   if (!N->isMachineOpcode())
148     return nullptr;
149
150   switch (N->getMachineOpcode()) {
151   default: {
152     const MCInstrDesc &Desc =
153         TM.getSubtargetImpl()->getInstrInfo()->get(N->getMachineOpcode());
154     unsigned OpIdx = Desc.getNumDefs() + OpNo;
155     if (OpIdx >= Desc.getNumOperands())
156       return nullptr;
157     int RegClass = Desc.OpInfo[OpIdx].RegClass;
158     if (RegClass == -1)
159       return nullptr;
160
161     return TM.getSubtargetImpl()->getRegisterInfo()->getRegClass(RegClass);
162   }
163   case AMDGPU::REG_SEQUENCE: {
164     unsigned RCID = cast<ConstantSDNode>(N->getOperand(0))->getZExtValue();
165     const TargetRegisterClass *SuperRC =
166         TM.getSubtargetImpl()->getRegisterInfo()->getRegClass(RCID);
167
168     SDValue SubRegOp = N->getOperand(OpNo + 1);
169     unsigned SubRegIdx = cast<ConstantSDNode>(SubRegOp)->getZExtValue();
170     return TM.getSubtargetImpl()->getRegisterInfo()->getSubClassWithSubReg(
171         SuperRC, SubRegIdx);
172   }
173   }
174 }
175
176 SDValue AMDGPUDAGToDAGISel::getSmallIPtrImm(unsigned int Imm) {
177   return CurDAG->getTargetConstant(Imm, MVT::i32);
178 }
179
180 bool AMDGPUDAGToDAGISel::SelectADDRParam(
181   SDValue Addr, SDValue& R1, SDValue& R2) {
182
183   if (Addr.getOpcode() == ISD::FrameIndex) {
184     if (FrameIndexSDNode *FIN = dyn_cast<FrameIndexSDNode>(Addr)) {
185       R1 = CurDAG->getTargetFrameIndex(FIN->getIndex(), MVT::i32);
186       R2 = CurDAG->getTargetConstant(0, MVT::i32);
187     } else {
188       R1 = Addr;
189       R2 = CurDAG->getTargetConstant(0, MVT::i32);
190     }
191   } else if (Addr.getOpcode() == ISD::ADD) {
192     R1 = Addr.getOperand(0);
193     R2 = Addr.getOperand(1);
194   } else {
195     R1 = Addr;
196     R2 = CurDAG->getTargetConstant(0, MVT::i32);
197   }
198   return true;
199 }
200
201 bool AMDGPUDAGToDAGISel::SelectADDR(SDValue Addr, SDValue& R1, SDValue& R2) {
202   if (Addr.getOpcode() == ISD::TargetExternalSymbol ||
203       Addr.getOpcode() == ISD::TargetGlobalAddress) {
204     return false;
205   }
206   return SelectADDRParam(Addr, R1, R2);
207 }
208
209
210 bool AMDGPUDAGToDAGISel::SelectADDR64(SDValue Addr, SDValue& R1, SDValue& R2) {
211   if (Addr.getOpcode() == ISD::TargetExternalSymbol ||
212       Addr.getOpcode() == ISD::TargetGlobalAddress) {
213     return false;
214   }
215
216   if (Addr.getOpcode() == ISD::FrameIndex) {
217     if (FrameIndexSDNode *FIN = dyn_cast<FrameIndexSDNode>(Addr)) {
218       R1 = CurDAG->getTargetFrameIndex(FIN->getIndex(), MVT::i64);
219       R2 = CurDAG->getTargetConstant(0, MVT::i64);
220     } else {
221       R1 = Addr;
222       R2 = CurDAG->getTargetConstant(0, MVT::i64);
223     }
224   } else if (Addr.getOpcode() == ISD::ADD) {
225     R1 = Addr.getOperand(0);
226     R2 = Addr.getOperand(1);
227   } else {
228     R1 = Addr;
229     R2 = CurDAG->getTargetConstant(0, MVT::i64);
230   }
231   return true;
232 }
233
234 SDNode *AMDGPUDAGToDAGISel::Select(SDNode *N) {
235   unsigned int Opc = N->getOpcode();
236   if (N->isMachineOpcode()) {
237     N->setNodeId(-1);
238     return nullptr;   // Already selected.
239   }
240
241   const AMDGPUSubtarget &ST = TM.getSubtarget<AMDGPUSubtarget>();
242   switch (Opc) {
243   default: break;
244   // We are selecting i64 ADD here instead of custom lower it during
245   // DAG legalization, so we can fold some i64 ADDs used for address
246   // calculation into the LOAD and STORE instructions.
247   case ISD::ADD:
248   case ISD::SUB: {
249     if (N->getValueType(0) != MVT::i64 ||
250         ST.getGeneration() < AMDGPUSubtarget::SOUTHERN_ISLANDS)
251       break;
252
253     return SelectADD_SUB_I64(N);
254   }
255   case ISD::SCALAR_TO_VECTOR:
256   case AMDGPUISD::BUILD_VERTICAL_VECTOR:
257   case ISD::BUILD_VECTOR: {
258     unsigned RegClassID;
259     const AMDGPURegisterInfo *TRI = static_cast<const AMDGPURegisterInfo *>(
260         TM.getSubtargetImpl()->getRegisterInfo());
261     const SIRegisterInfo *SIRI = static_cast<const SIRegisterInfo *>(
262         TM.getSubtargetImpl()->getRegisterInfo());
263     EVT VT = N->getValueType(0);
264     unsigned NumVectorElts = VT.getVectorNumElements();
265     EVT EltVT = VT.getVectorElementType();
266     assert(EltVT.bitsEq(MVT::i32));
267     if (ST.getGeneration() >= AMDGPUSubtarget::SOUTHERN_ISLANDS) {
268       bool UseVReg = true;
269       for (SDNode::use_iterator U = N->use_begin(), E = SDNode::use_end();
270                                                     U != E; ++U) {
271         if (!U->isMachineOpcode()) {
272           continue;
273         }
274         const TargetRegisterClass *RC = getOperandRegClass(*U, U.getOperandNo());
275         if (!RC) {
276           continue;
277         }
278         if (SIRI->isSGPRClass(RC)) {
279           UseVReg = false;
280         }
281       }
282       switch(NumVectorElts) {
283       case 1: RegClassID = UseVReg ? AMDGPU::VReg_32RegClassID :
284                                      AMDGPU::SReg_32RegClassID;
285         break;
286       case 2: RegClassID = UseVReg ? AMDGPU::VReg_64RegClassID :
287                                      AMDGPU::SReg_64RegClassID;
288         break;
289       case 4: RegClassID = UseVReg ? AMDGPU::VReg_128RegClassID :
290                                      AMDGPU::SReg_128RegClassID;
291         break;
292       case 8: RegClassID = UseVReg ? AMDGPU::VReg_256RegClassID :
293                                      AMDGPU::SReg_256RegClassID;
294         break;
295       case 16: RegClassID = UseVReg ? AMDGPU::VReg_512RegClassID :
296                                       AMDGPU::SReg_512RegClassID;
297         break;
298       default: llvm_unreachable("Do not know how to lower this BUILD_VECTOR");
299       }
300     } else {
301       // BUILD_VECTOR was lowered into an IMPLICIT_DEF + 4 INSERT_SUBREG
302       // that adds a 128 bits reg copy when going through TwoAddressInstructions
303       // pass. We want to avoid 128 bits copies as much as possible because they
304       // can't be bundled by our scheduler.
305       switch(NumVectorElts) {
306       case 2: RegClassID = AMDGPU::R600_Reg64RegClassID; break;
307       case 4:
308         if (Opc == AMDGPUISD::BUILD_VERTICAL_VECTOR)
309           RegClassID = AMDGPU::R600_Reg128VerticalRegClassID;
310         else
311           RegClassID = AMDGPU::R600_Reg128RegClassID;
312         break;
313       default: llvm_unreachable("Do not know how to lower this BUILD_VECTOR");
314       }
315     }
316
317     SDValue RegClass = CurDAG->getTargetConstant(RegClassID, MVT::i32);
318
319     if (NumVectorElts == 1) {
320       return CurDAG->SelectNodeTo(N, AMDGPU::COPY_TO_REGCLASS, EltVT,
321                                   N->getOperand(0), RegClass);
322     }
323
324     assert(NumVectorElts <= 16 && "Vectors with more than 16 elements not "
325                                   "supported yet");
326     // 16 = Max Num Vector Elements
327     // 2 = 2 REG_SEQUENCE operands per element (value, subreg index)
328     // 1 = Vector Register Class
329     SmallVector<SDValue, 16 * 2 + 1> RegSeqArgs(NumVectorElts * 2 + 1);
330
331     RegSeqArgs[0] = CurDAG->getTargetConstant(RegClassID, MVT::i32);
332     bool IsRegSeq = true;
333     unsigned NOps = N->getNumOperands();
334     for (unsigned i = 0; i < NOps; i++) {
335       // XXX: Why is this here?
336       if (dyn_cast<RegisterSDNode>(N->getOperand(i))) {
337         IsRegSeq = false;
338         break;
339       }
340       RegSeqArgs[1 + (2 * i)] = N->getOperand(i);
341       RegSeqArgs[1 + (2 * i) + 1] =
342               CurDAG->getTargetConstant(TRI->getSubRegFromChannel(i), MVT::i32);
343     }
344
345     if (NOps != NumVectorElts) {
346       // Fill in the missing undef elements if this was a scalar_to_vector.
347       assert(Opc == ISD::SCALAR_TO_VECTOR && NOps < NumVectorElts);
348
349       MachineSDNode *ImpDef = CurDAG->getMachineNode(TargetOpcode::IMPLICIT_DEF,
350                                                      SDLoc(N), EltVT);
351       for (unsigned i = NOps; i < NumVectorElts; ++i) {
352         RegSeqArgs[1 + (2 * i)] = SDValue(ImpDef, 0);
353         RegSeqArgs[1 + (2 * i) + 1] =
354           CurDAG->getTargetConstant(TRI->getSubRegFromChannel(i), MVT::i32);
355       }
356     }
357
358     if (!IsRegSeq)
359       break;
360     return CurDAG->SelectNodeTo(N, AMDGPU::REG_SEQUENCE, N->getVTList(),
361                                 RegSeqArgs);
362   }
363   case ISD::BUILD_PAIR: {
364     SDValue RC, SubReg0, SubReg1;
365     if (ST.getGeneration() <= AMDGPUSubtarget::NORTHERN_ISLANDS) {
366       break;
367     }
368     if (N->getValueType(0) == MVT::i128) {
369       RC = CurDAG->getTargetConstant(AMDGPU::SReg_128RegClassID, MVT::i32);
370       SubReg0 = CurDAG->getTargetConstant(AMDGPU::sub0_sub1, MVT::i32);
371       SubReg1 = CurDAG->getTargetConstant(AMDGPU::sub2_sub3, MVT::i32);
372     } else if (N->getValueType(0) == MVT::i64) {
373       RC = CurDAG->getTargetConstant(AMDGPU::SReg_64RegClassID, MVT::i32);
374       SubReg0 = CurDAG->getTargetConstant(AMDGPU::sub0, MVT::i32);
375       SubReg1 = CurDAG->getTargetConstant(AMDGPU::sub1, MVT::i32);
376     } else {
377       llvm_unreachable("Unhandled value type for BUILD_PAIR");
378     }
379     const SDValue Ops[] = { RC, N->getOperand(0), SubReg0,
380                             N->getOperand(1), SubReg1 };
381     return CurDAG->getMachineNode(TargetOpcode::REG_SEQUENCE,
382                                   SDLoc(N), N->getValueType(0), Ops);
383   }
384
385   case ISD::Constant:
386   case ISD::ConstantFP: {
387     const AMDGPUSubtarget &ST = TM.getSubtarget<AMDGPUSubtarget>();
388     if (ST.getGeneration() < AMDGPUSubtarget::SOUTHERN_ISLANDS ||
389         N->getValueType(0).getSizeInBits() != 64 || isInlineImmediate(N))
390       break;
391
392     uint64_t Imm;
393     if (ConstantFPSDNode *FP = dyn_cast<ConstantFPSDNode>(N))
394       Imm = FP->getValueAPF().bitcastToAPInt().getZExtValue();
395     else {
396       ConstantSDNode *C = cast<ConstantSDNode>(N);
397       Imm = C->getZExtValue();
398     }
399
400     SDNode *Lo = CurDAG->getMachineNode(AMDGPU::S_MOV_B32, SDLoc(N), MVT::i32,
401                                 CurDAG->getConstant(Imm & 0xFFFFFFFF, MVT::i32));
402     SDNode *Hi = CurDAG->getMachineNode(AMDGPU::S_MOV_B32, SDLoc(N), MVT::i32,
403                                 CurDAG->getConstant(Imm >> 32, MVT::i32));
404     const SDValue Ops[] = {
405       CurDAG->getTargetConstant(AMDGPU::SReg_64RegClassID, MVT::i32),
406       SDValue(Lo, 0), CurDAG->getTargetConstant(AMDGPU::sub0, MVT::i32),
407       SDValue(Hi, 0), CurDAG->getTargetConstant(AMDGPU::sub1, MVT::i32)
408     };
409
410     return CurDAG->getMachineNode(TargetOpcode::REG_SEQUENCE, SDLoc(N),
411                                   N->getValueType(0), Ops);
412   }
413
414   case AMDGPUISD::REGISTER_LOAD: {
415     if (ST.getGeneration() <= AMDGPUSubtarget::NORTHERN_ISLANDS)
416       break;
417     SDValue Addr, Offset;
418
419     SelectADDRIndirect(N->getOperand(1), Addr, Offset);
420     const SDValue Ops[] = {
421       Addr,
422       Offset,
423       CurDAG->getTargetConstant(0, MVT::i32),
424       N->getOperand(0),
425     };
426     return CurDAG->getMachineNode(AMDGPU::SI_RegisterLoad, SDLoc(N),
427                                   CurDAG->getVTList(MVT::i32, MVT::i64, MVT::Other),
428                                   Ops);
429   }
430   case AMDGPUISD::REGISTER_STORE: {
431     if (ST.getGeneration() <= AMDGPUSubtarget::NORTHERN_ISLANDS)
432       break;
433     SDValue Addr, Offset;
434     SelectADDRIndirect(N->getOperand(2), Addr, Offset);
435     const SDValue Ops[] = {
436       N->getOperand(1),
437       Addr,
438       Offset,
439       CurDAG->getTargetConstant(0, MVT::i32),
440       N->getOperand(0),
441     };
442     return CurDAG->getMachineNode(AMDGPU::SI_RegisterStorePseudo, SDLoc(N),
443                                         CurDAG->getVTList(MVT::Other),
444                                         Ops);
445   }
446
447   case AMDGPUISD::BFE_I32:
448   case AMDGPUISD::BFE_U32: {
449     if (ST.getGeneration() < AMDGPUSubtarget::SOUTHERN_ISLANDS)
450       break;
451
452     // There is a scalar version available, but unlike the vector version which
453     // has a separate operand for the offset and width, the scalar version packs
454     // the width and offset into a single operand. Try to move to the scalar
455     // version if the offsets are constant, so that we can try to keep extended
456     // loads of kernel arguments in SGPRs.
457
458     // TODO: Technically we could try to pattern match scalar bitshifts of
459     // dynamic values, but it's probably not useful.
460     ConstantSDNode *Offset = dyn_cast<ConstantSDNode>(N->getOperand(1));
461     if (!Offset)
462       break;
463
464     ConstantSDNode *Width = dyn_cast<ConstantSDNode>(N->getOperand(2));
465     if (!Width)
466       break;
467
468     bool Signed = Opc == AMDGPUISD::BFE_I32;
469
470     // Transformation function, pack the offset and width of a BFE into
471     // the format expected by the S_BFE_I32 / S_BFE_U32. In the second
472     // source, bits [5:0] contain the offset and bits [22:16] the width.
473
474     uint32_t OffsetVal = Offset->getZExtValue();
475     uint32_t WidthVal = Width->getZExtValue();
476
477     uint32_t PackedVal = OffsetVal | WidthVal << 16;
478
479     SDValue PackedOffsetWidth = CurDAG->getTargetConstant(PackedVal, MVT::i32);
480     return CurDAG->getMachineNode(Signed ? AMDGPU::S_BFE_I32 : AMDGPU::S_BFE_U32,
481                                   SDLoc(N),
482                                   MVT::i32,
483                                   N->getOperand(0),
484                                   PackedOffsetWidth);
485
486   }
487   case AMDGPUISD::DIV_SCALE: {
488     return SelectDIV_SCALE(N);
489   }
490   case ISD::ADDRSPACECAST:
491     return SelectAddrSpaceCast(N);
492   }
493   return SelectCode(N);
494 }
495
496
497 bool AMDGPUDAGToDAGISel::checkType(const Value *Ptr, unsigned AS) {
498   assert(AS != 0 && "Use checkPrivateAddress instead.");
499   if (!Ptr)
500     return false;
501
502   return Ptr->getType()->getPointerAddressSpace() == AS;
503 }
504
505 bool AMDGPUDAGToDAGISel::checkPrivateAddress(const MachineMemOperand *Op) {
506   if (Op->getPseudoValue())
507     return true;
508
509   if (PointerType *PT = dyn_cast<PointerType>(Op->getValue()->getType()))
510     return PT->getAddressSpace() == AMDGPUAS::PRIVATE_ADDRESS;
511
512   return false;
513 }
514
515 bool AMDGPUDAGToDAGISel::isGlobalStore(const StoreSDNode *N) {
516   return checkType(N->getMemOperand()->getValue(), AMDGPUAS::GLOBAL_ADDRESS);
517 }
518
519 bool AMDGPUDAGToDAGISel::isPrivateStore(const StoreSDNode *N) {
520   const Value *MemVal = N->getMemOperand()->getValue();
521   return (!checkType(MemVal, AMDGPUAS::LOCAL_ADDRESS) &&
522           !checkType(MemVal, AMDGPUAS::GLOBAL_ADDRESS) &&
523           !checkType(MemVal, AMDGPUAS::REGION_ADDRESS));
524 }
525
526 bool AMDGPUDAGToDAGISel::isLocalStore(const StoreSDNode *N) {
527   return checkType(N->getMemOperand()->getValue(), AMDGPUAS::LOCAL_ADDRESS);
528 }
529
530 bool AMDGPUDAGToDAGISel::isFlatStore(const StoreSDNode *N) {
531   return checkType(N->getMemOperand()->getValue(), AMDGPUAS::FLAT_ADDRESS);
532 }
533
534 bool AMDGPUDAGToDAGISel::isRegionStore(const StoreSDNode *N) {
535   return checkType(N->getMemOperand()->getValue(), AMDGPUAS::REGION_ADDRESS);
536 }
537
538 bool AMDGPUDAGToDAGISel::isConstantLoad(const LoadSDNode *N, int CbId) const {
539   const Value *MemVal = N->getMemOperand()->getValue();
540   if (CbId == -1)
541     return checkType(MemVal, AMDGPUAS::CONSTANT_ADDRESS);
542
543   return checkType(MemVal, AMDGPUAS::CONSTANT_BUFFER_0 + CbId);
544 }
545
546 bool AMDGPUDAGToDAGISel::isGlobalLoad(const LoadSDNode *N) const {
547   if (N->getAddressSpace() == AMDGPUAS::CONSTANT_ADDRESS) {
548     const AMDGPUSubtarget &ST = TM.getSubtarget<AMDGPUSubtarget>();
549     if (ST.getGeneration() < AMDGPUSubtarget::SOUTHERN_ISLANDS ||
550         N->getMemoryVT().bitsLT(MVT::i32)) {
551       return true;
552     }
553   }
554   return checkType(N->getMemOperand()->getValue(), AMDGPUAS::GLOBAL_ADDRESS);
555 }
556
557 bool AMDGPUDAGToDAGISel::isParamLoad(const LoadSDNode *N) const {
558   return checkType(N->getMemOperand()->getValue(), AMDGPUAS::PARAM_I_ADDRESS);
559 }
560
561 bool AMDGPUDAGToDAGISel::isLocalLoad(const  LoadSDNode *N) const {
562   return checkType(N->getMemOperand()->getValue(), AMDGPUAS::LOCAL_ADDRESS);
563 }
564
565 bool AMDGPUDAGToDAGISel::isFlatLoad(const  LoadSDNode *N) const {
566   return checkType(N->getMemOperand()->getValue(), AMDGPUAS::FLAT_ADDRESS);
567 }
568
569 bool AMDGPUDAGToDAGISel::isRegionLoad(const  LoadSDNode *N) const {
570   return checkType(N->getMemOperand()->getValue(), AMDGPUAS::REGION_ADDRESS);
571 }
572
573 bool AMDGPUDAGToDAGISel::isCPLoad(const LoadSDNode *N) const {
574   MachineMemOperand *MMO = N->getMemOperand();
575   if (checkPrivateAddress(N->getMemOperand())) {
576     if (MMO) {
577       const PseudoSourceValue *PSV = MMO->getPseudoValue();
578       if (PSV && PSV == PseudoSourceValue::getConstantPool()) {
579         return true;
580       }
581     }
582   }
583   return false;
584 }
585
586 bool AMDGPUDAGToDAGISel::isPrivateLoad(const LoadSDNode *N) const {
587   if (checkPrivateAddress(N->getMemOperand())) {
588     // Check to make sure we are not a constant pool load or a constant load
589     // that is marked as a private load
590     if (isCPLoad(N) || isConstantLoad(N, -1)) {
591       return false;
592     }
593   }
594
595   const Value *MemVal = N->getMemOperand()->getValue();
596   if (!checkType(MemVal, AMDGPUAS::LOCAL_ADDRESS) &&
597       !checkType(MemVal, AMDGPUAS::GLOBAL_ADDRESS) &&
598       !checkType(MemVal, AMDGPUAS::FLAT_ADDRESS) &&
599       !checkType(MemVal, AMDGPUAS::REGION_ADDRESS) &&
600       !checkType(MemVal, AMDGPUAS::CONSTANT_ADDRESS) &&
601       !checkType(MemVal, AMDGPUAS::PARAM_D_ADDRESS) &&
602       !checkType(MemVal, AMDGPUAS::PARAM_I_ADDRESS)) {
603     return true;
604   }
605   return false;
606 }
607
608 bool AMDGPUDAGToDAGISel::isCFDepth0() const {
609   // FIXME: Figure out a way to use DominatorTree analysis here.
610   const BasicBlock *CurBlock = FuncInfo->MBB->getBasicBlock();
611   const Function *Fn = FuncInfo->Fn;
612   return &Fn->front() == CurBlock || &Fn->back() == CurBlock;
613 }
614
615
616 const char *AMDGPUDAGToDAGISel::getPassName() const {
617   return "AMDGPU DAG->DAG Pattern Instruction Selection";
618 }
619
620 #ifdef DEBUGTMP
621 #undef INT64_C
622 #endif
623 #undef DEBUGTMP
624
625 //===----------------------------------------------------------------------===//
626 // Complex Patterns
627 //===----------------------------------------------------------------------===//
628
629 bool AMDGPUDAGToDAGISel::SelectGlobalValueConstantOffset(SDValue Addr,
630                                                          SDValue& IntPtr) {
631   if (ConstantSDNode *Cst = dyn_cast<ConstantSDNode>(Addr)) {
632     IntPtr = CurDAG->getIntPtrConstant(Cst->getZExtValue() / 4, true);
633     return true;
634   }
635   return false;
636 }
637
638 bool AMDGPUDAGToDAGISel::SelectGlobalValueVariableOffset(SDValue Addr,
639     SDValue& BaseReg, SDValue &Offset) {
640   if (!isa<ConstantSDNode>(Addr)) {
641     BaseReg = Addr;
642     Offset = CurDAG->getIntPtrConstant(0, true);
643     return true;
644   }
645   return false;
646 }
647
648 bool AMDGPUDAGToDAGISel::SelectADDRVTX_READ(SDValue Addr, SDValue &Base,
649                                            SDValue &Offset) {
650   ConstantSDNode *IMMOffset;
651
652   if (Addr.getOpcode() == ISD::ADD
653       && (IMMOffset = dyn_cast<ConstantSDNode>(Addr.getOperand(1)))
654       && isInt<16>(IMMOffset->getZExtValue())) {
655
656       Base = Addr.getOperand(0);
657       Offset = CurDAG->getTargetConstant(IMMOffset->getZExtValue(), MVT::i32);
658       return true;
659   // If the pointer address is constant, we can move it to the offset field.
660   } else if ((IMMOffset = dyn_cast<ConstantSDNode>(Addr))
661              && isInt<16>(IMMOffset->getZExtValue())) {
662     Base = CurDAG->getCopyFromReg(CurDAG->getEntryNode(),
663                                   SDLoc(CurDAG->getEntryNode()),
664                                   AMDGPU::ZERO, MVT::i32);
665     Offset = CurDAG->getTargetConstant(IMMOffset->getZExtValue(), MVT::i32);
666     return true;
667   }
668
669   // Default case, no offset
670   Base = Addr;
671   Offset = CurDAG->getTargetConstant(0, MVT::i32);
672   return true;
673 }
674
675 bool AMDGPUDAGToDAGISel::SelectADDRIndirect(SDValue Addr, SDValue &Base,
676                                             SDValue &Offset) {
677   ConstantSDNode *C;
678
679   if ((C = dyn_cast<ConstantSDNode>(Addr))) {
680     Base = CurDAG->getRegister(AMDGPU::INDIRECT_BASE_ADDR, MVT::i32);
681     Offset = CurDAG->getTargetConstant(C->getZExtValue(), MVT::i32);
682   } else if ((Addr.getOpcode() == ISD::ADD || Addr.getOpcode() == ISD::OR) &&
683             (C = dyn_cast<ConstantSDNode>(Addr.getOperand(1)))) {
684     Base = Addr.getOperand(0);
685     Offset = CurDAG->getTargetConstant(C->getZExtValue(), MVT::i32);
686   } else {
687     Base = Addr;
688     Offset = CurDAG->getTargetConstant(0, MVT::i32);
689   }
690
691   return true;
692 }
693
694 SDNode *AMDGPUDAGToDAGISel::SelectADD_SUB_I64(SDNode *N) {
695   SDLoc DL(N);
696   SDValue LHS = N->getOperand(0);
697   SDValue RHS = N->getOperand(1);
698
699   bool IsAdd = (N->getOpcode() == ISD::ADD);
700
701   SDValue Sub0 = CurDAG->getTargetConstant(AMDGPU::sub0, MVT::i32);
702   SDValue Sub1 = CurDAG->getTargetConstant(AMDGPU::sub1, MVT::i32);
703
704   SDNode *Lo0 = CurDAG->getMachineNode(TargetOpcode::EXTRACT_SUBREG,
705                                        DL, MVT::i32, LHS, Sub0);
706   SDNode *Hi0 = CurDAG->getMachineNode(TargetOpcode::EXTRACT_SUBREG,
707                                        DL, MVT::i32, LHS, Sub1);
708
709   SDNode *Lo1 = CurDAG->getMachineNode(TargetOpcode::EXTRACT_SUBREG,
710                                        DL, MVT::i32, RHS, Sub0);
711   SDNode *Hi1 = CurDAG->getMachineNode(TargetOpcode::EXTRACT_SUBREG,
712                                        DL, MVT::i32, RHS, Sub1);
713
714   SDVTList VTList = CurDAG->getVTList(MVT::i32, MVT::Glue);
715   SDValue AddLoArgs[] = { SDValue(Lo0, 0), SDValue(Lo1, 0) };
716
717
718   unsigned Opc = IsAdd ? AMDGPU::S_ADD_U32 : AMDGPU::S_SUB_U32;
719   unsigned CarryOpc = IsAdd ? AMDGPU::S_ADDC_U32 : AMDGPU::S_SUBB_U32;
720
721   if (!isCFDepth0()) {
722     Opc = IsAdd ? AMDGPU::V_ADD_I32_e32 : AMDGPU::V_SUB_I32_e32;
723     CarryOpc = IsAdd ? AMDGPU::V_ADDC_U32_e32 : AMDGPU::V_SUBB_U32_e32;
724   }
725
726   SDNode *AddLo = CurDAG->getMachineNode( Opc, DL, VTList, AddLoArgs);
727   SDValue Carry(AddLo, 1);
728   SDNode *AddHi
729     = CurDAG->getMachineNode(CarryOpc, DL, MVT::i32,
730                              SDValue(Hi0, 0), SDValue(Hi1, 0), Carry);
731
732   SDValue Args[5] = {
733     CurDAG->getTargetConstant(AMDGPU::SReg_64RegClassID, MVT::i32),
734     SDValue(AddLo,0),
735     Sub0,
736     SDValue(AddHi,0),
737     Sub1,
738   };
739   return CurDAG->SelectNodeTo(N, AMDGPU::REG_SEQUENCE, MVT::i64, Args);
740 }
741
742 SDNode *AMDGPUDAGToDAGISel::SelectDIV_SCALE(SDNode *N) {
743   SDLoc SL(N);
744   EVT VT = N->getValueType(0);
745
746   assert(VT == MVT::f32 || VT == MVT::f64);
747
748   unsigned Opc
749     = (VT == MVT::f64) ? AMDGPU::V_DIV_SCALE_F64 : AMDGPU::V_DIV_SCALE_F32;
750
751   const SDValue Zero = CurDAG->getTargetConstant(0, MVT::i32);
752
753   SDValue Ops[] = {
754     N->getOperand(0),
755     N->getOperand(1),
756     N->getOperand(2),
757     Zero,
758     Zero,
759     Zero,
760     Zero
761   };
762
763   return CurDAG->SelectNodeTo(N, Opc, VT, MVT::i1, Ops);
764 }
765
766 bool AMDGPUDAGToDAGISel::isDSOffsetLegal(const SDValue &Base, unsigned Offset,
767                                          unsigned OffsetBits) const {
768   const AMDGPUSubtarget &ST = TM.getSubtarget<AMDGPUSubtarget>();
769   if ((OffsetBits == 16 && !isUInt<16>(Offset)) ||
770       (OffsetBits == 8 && !isUInt<8>(Offset)))
771     return false;
772
773   if (ST.getGeneration() >= AMDGPUSubtarget::SEA_ISLANDS)
774     return true;
775
776   // On Southern Islands instruction with a negative base value and an offset
777   // don't seem to work.
778   return CurDAG->SignBitIsZero(Base);
779 }
780
781 bool AMDGPUDAGToDAGISel::SelectDS1Addr1Offset(SDValue Addr, SDValue &Base,
782                                               SDValue &Offset) const {
783   if (CurDAG->isBaseWithConstantOffset(Addr)) {
784     SDValue N0 = Addr.getOperand(0);
785     SDValue N1 = Addr.getOperand(1);
786     ConstantSDNode *C1 = cast<ConstantSDNode>(N1);
787     if (isDSOffsetLegal(N0, C1->getSExtValue(), 16)) {
788       // (add n0, c0)
789       Base = N0;
790       Offset = N1;
791       return true;
792     }
793   }
794
795   // default case
796   Base = Addr;
797   Offset = CurDAG->getTargetConstant(0, MVT::i16);
798   return true;
799 }
800
801 bool AMDGPUDAGToDAGISel::SelectDS64Bit4ByteAligned(SDValue Addr, SDValue &Base,
802                                                    SDValue &Offset0,
803                                                    SDValue &Offset1) const {
804   if (CurDAG->isBaseWithConstantOffset(Addr)) {
805     SDValue N0 = Addr.getOperand(0);
806     SDValue N1 = Addr.getOperand(1);
807     ConstantSDNode *C1 = cast<ConstantSDNode>(N1);
808     unsigned DWordOffset0 = C1->getZExtValue() / 4;
809     unsigned DWordOffset1 = DWordOffset0 + 1;
810     // (add n0, c0)
811     if (isDSOffsetLegal(N0, DWordOffset1, 8)) {
812       Base = N0;
813       Offset0 = CurDAG->getTargetConstant(DWordOffset0, MVT::i8);
814       Offset1 = CurDAG->getTargetConstant(DWordOffset1, MVT::i8);
815       return true;
816     }
817   }
818
819   // default case
820   Base = Addr;
821   Offset0 = CurDAG->getTargetConstant(0, MVT::i8);
822   Offset1 = CurDAG->getTargetConstant(1, MVT::i8);
823   return true;
824 }
825
826 static SDValue wrapAddr64Rsrc(SelectionDAG *DAG, SDLoc DL, SDValue Ptr) {
827   return SDValue(DAG->getMachineNode(AMDGPU::SI_ADDR64_RSRC, DL, MVT::v4i32,
828                                      Ptr), 0);
829 }
830
831 static bool isLegalMUBUFImmOffset(const ConstantSDNode *Imm) {
832   return isUInt<12>(Imm->getZExtValue());
833 }
834
835 void AMDGPUDAGToDAGISel::SelectMUBUF(SDValue Addr, SDValue &Ptr,
836                                      SDValue &VAddr, SDValue &SOffset,
837                                      SDValue &Offset, SDValue &Offen,
838                                      SDValue &Idxen, SDValue &Addr64,
839                                      SDValue &GLC, SDValue &SLC,
840                                      SDValue &TFE) const {
841   SDLoc DL(Addr);
842
843   GLC = CurDAG->getTargetConstant(0, MVT::i1);
844   SLC = CurDAG->getTargetConstant(0, MVT::i1);
845   TFE = CurDAG->getTargetConstant(0, MVT::i1);
846
847   Idxen = CurDAG->getTargetConstant(0, MVT::i1);
848   Offen = CurDAG->getTargetConstant(0, MVT::i1);
849   Addr64 = CurDAG->getTargetConstant(0, MVT::i1);
850   SOffset = CurDAG->getTargetConstant(0, MVT::i32);
851
852   if (CurDAG->isBaseWithConstantOffset(Addr)) {
853     SDValue N0 = Addr.getOperand(0);
854     SDValue N1 = Addr.getOperand(1);
855     ConstantSDNode *C1 = cast<ConstantSDNode>(N1);
856
857     if (isLegalMUBUFImmOffset(C1)) {
858
859       if (N0.getOpcode() == ISD::ADD) {
860         // (add (add N2, N3), C1) -> addr64
861         SDValue N2 = N0.getOperand(0);
862         SDValue N3 = N0.getOperand(1);
863         Addr64 = CurDAG->getTargetConstant(1, MVT::i1);
864         Ptr = N2;
865         VAddr = N3;
866         Offset = CurDAG->getTargetConstant(C1->getZExtValue(), MVT::i16);
867         return;
868       }
869
870       // (add N0, C1) -> offset
871       VAddr = CurDAG->getTargetConstant(0, MVT::i32);
872       Ptr = N0;
873       Offset = CurDAG->getTargetConstant(C1->getZExtValue(), MVT::i16);
874       return;
875     }
876   }
877   if (Addr.getOpcode() == ISD::ADD) {
878     // (add N0, N1) -> addr64
879     SDValue N0 = Addr.getOperand(0);
880     SDValue N1 = Addr.getOperand(1);
881     Addr64 = CurDAG->getTargetConstant(1, MVT::i1);
882     Ptr = N0;
883     VAddr = N1;
884     Offset = CurDAG->getTargetConstant(0, MVT::i16);
885     return;
886   }
887
888   // default case -> offset
889   VAddr = CurDAG->getTargetConstant(0, MVT::i32);
890   Ptr = Addr;
891   Offset = CurDAG->getTargetConstant(0, MVT::i16);
892
893 }
894
895 bool AMDGPUDAGToDAGISel::SelectMUBUFAddr64(SDValue Addr, SDValue &SRsrc,
896                                            SDValue &VAddr,
897                                            SDValue &Offset) const {
898   SDValue Ptr, SOffset, Offen, Idxen, Addr64, GLC, SLC, TFE;
899
900   SelectMUBUF(Addr, Ptr, VAddr, SOffset, Offset, Offen, Idxen, Addr64,
901               GLC, SLC, TFE);
902
903   ConstantSDNode *C = cast<ConstantSDNode>(Addr64);
904   if (C->getSExtValue()) {
905     SDLoc DL(Addr);
906     SRsrc = wrapAddr64Rsrc(CurDAG, DL, Ptr);
907     return true;
908   }
909   return false;
910 }
911
912 static SDValue buildRSRC(SelectionDAG *DAG, SDLoc DL, SDValue Ptr,
913                          uint32_t RsrcDword1, uint64_t RsrcDword2And3) {
914
915   SDValue PtrLo = DAG->getTargetExtractSubreg(AMDGPU::sub0, DL, MVT::i32, Ptr);
916   SDValue PtrHi = DAG->getTargetExtractSubreg(AMDGPU::sub1, DL, MVT::i32, Ptr);
917   if (RsrcDword1)
918     PtrHi = SDValue(DAG->getMachineNode(AMDGPU::S_OR_B32, DL, MVT::i32, PtrHi,
919                                     DAG->getConstant(RsrcDword1, MVT::i32)), 0);
920
921   SDValue DataLo = DAG->getTargetConstant(
922       RsrcDword2And3 & APInt::getAllOnesValue(32).getZExtValue(), MVT::i32);
923   SDValue DataHi = DAG->getTargetConstant(RsrcDword2And3 >> 32, MVT::i32);
924
925   const SDValue Ops[] = { PtrLo, PtrHi, DataLo, DataHi };
926   return SDValue(DAG->getMachineNode(AMDGPU::SI_BUFFER_RSRC, DL,
927                                      MVT::v4i32, Ops), 0);
928 }
929
930 /// \brief Return a resource descriptor with the 'Add TID' bit enabled
931 ///        The TID (Thread ID) is multipled by the stride value (bits [61:48]
932 ///        of the resource descriptor) to create an offset, which is added to the
933 ///        resource ponter.
934 static SDValue buildScratchRSRC(SelectionDAG *DAG, SDLoc DL, SDValue Ptr) {
935
936   uint64_t Rsrc = AMDGPU::RSRC_DATA_FORMAT | AMDGPU::RSRC_TID_ENABLE |
937                   0xffffffff; // Size
938
939   return buildRSRC(DAG, DL, Ptr, 0, Rsrc);
940 }
941
942 bool AMDGPUDAGToDAGISel::SelectMUBUFScratch(SDValue Addr, SDValue &Rsrc,
943                                             SDValue &VAddr, SDValue &SOffset,
944                                             SDValue &ImmOffset) const {
945
946   SDLoc DL(Addr);
947   MachineFunction &MF = CurDAG->getMachineFunction();
948   const SIRegisterInfo *TRI =
949       static_cast<const SIRegisterInfo *>(MF.getSubtarget().getRegisterInfo());
950   MachineRegisterInfo &MRI = MF.getRegInfo();
951   const SITargetLowering& Lowering =
952     *static_cast<const SITargetLowering*>(getTargetLowering());
953
954   unsigned ScratchPtrReg =
955       TRI->getPreloadedValue(MF, SIRegisterInfo::SCRATCH_PTR);
956   unsigned ScratchOffsetReg =
957       TRI->getPreloadedValue(MF, SIRegisterInfo::SCRATCH_WAVE_OFFSET);
958   Lowering.CreateLiveInRegister(*CurDAG, &AMDGPU::SReg_32RegClass,
959                                 ScratchOffsetReg, MVT::i32);
960
961   Rsrc = buildScratchRSRC(CurDAG, DL,
962       CurDAG->getCopyFromReg(CurDAG->getEntryNode(), DL,
963                              MRI.getLiveInVirtReg(ScratchPtrReg), MVT::i64));
964   SOffset = CurDAG->getCopyFromReg(CurDAG->getEntryNode(), DL,
965       MRI.getLiveInVirtReg(ScratchOffsetReg), MVT::i32);
966
967   // (add n0, c1)
968   if (CurDAG->isBaseWithConstantOffset(Addr)) {
969     SDValue N1 = Addr.getOperand(1);
970     ConstantSDNode *C1 = cast<ConstantSDNode>(N1);
971
972     if (isLegalMUBUFImmOffset(C1)) {
973       VAddr = Addr.getOperand(0);
974       ImmOffset = CurDAG->getTargetConstant(C1->getZExtValue(), MVT::i16);
975       return true;
976     }
977   }
978
979   // (add FI, n0)
980   if ((Addr.getOpcode() == ISD::ADD || Addr.getOpcode() == ISD::OR) &&
981        isa<FrameIndexSDNode>(Addr.getOperand(0))) {
982     VAddr = Addr.getOperand(1);
983     ImmOffset = Addr.getOperand(0);
984     return true;
985   }
986
987   // (FI)
988   if (isa<FrameIndexSDNode>(Addr)) {
989     VAddr = SDValue(CurDAG->getMachineNode(AMDGPU::V_MOV_B32_e32, DL, MVT::i32,
990                                           CurDAG->getConstant(0, MVT::i32)), 0);
991     ImmOffset = Addr;
992     return true;
993   }
994
995   // (node)
996   VAddr = Addr;
997   ImmOffset = CurDAG->getTargetConstant(0, MVT::i16);
998   return true;
999 }
1000
1001 bool AMDGPUDAGToDAGISel::SelectMUBUFOffset(SDValue Addr, SDValue &SRsrc,
1002                                            SDValue &SOffset, SDValue &Offset,
1003                                            SDValue &GLC, SDValue &SLC,
1004                                            SDValue &TFE) const {
1005   SDValue Ptr, VAddr, Offen, Idxen, Addr64;
1006
1007   SelectMUBUF(Addr, Ptr, VAddr, SOffset, Offset, Offen, Idxen, Addr64,
1008               GLC, SLC, TFE);
1009
1010   if (!cast<ConstantSDNode>(Offen)->getSExtValue() &&
1011       !cast<ConstantSDNode>(Idxen)->getSExtValue() &&
1012       !cast<ConstantSDNode>(Addr64)->getSExtValue()) {
1013     uint64_t Rsrc = AMDGPU::RSRC_DATA_FORMAT |
1014                     APInt::getAllOnesValue(32).getZExtValue(); // Size
1015     SDLoc DL(Addr);
1016     SRsrc = buildRSRC(CurDAG, DL, Ptr, 0, Rsrc);
1017     return true;
1018   }
1019   return false;
1020 }
1021
1022 // FIXME: This is incorrect and only enough to be able to compile.
1023 SDNode *AMDGPUDAGToDAGISel::SelectAddrSpaceCast(SDNode *N) {
1024   AddrSpaceCastSDNode *ASC = cast<AddrSpaceCastSDNode>(N);
1025   SDLoc DL(N);
1026
1027   assert(Subtarget.hasFlatAddressSpace() &&
1028          "addrspacecast only supported with flat address space!");
1029
1030   assert((ASC->getSrcAddressSpace() != AMDGPUAS::CONSTANT_ADDRESS &&
1031           ASC->getDestAddressSpace() != AMDGPUAS::CONSTANT_ADDRESS) &&
1032          "Cannot cast address space to / from constant address!");
1033
1034   assert((ASC->getSrcAddressSpace() == AMDGPUAS::FLAT_ADDRESS ||
1035           ASC->getDestAddressSpace() == AMDGPUAS::FLAT_ADDRESS) &&
1036          "Can only cast to / from flat address space!");
1037
1038   // The flat instructions read the address as the index of the VGPR holding the
1039   // address, so casting should just be reinterpreting the base VGPR, so just
1040   // insert trunc / bitcast / zext.
1041
1042   SDValue Src = ASC->getOperand(0);
1043   EVT DestVT = ASC->getValueType(0);
1044   EVT SrcVT = Src.getValueType();
1045
1046   unsigned SrcSize = SrcVT.getSizeInBits();
1047   unsigned DestSize = DestVT.getSizeInBits();
1048
1049   if (SrcSize > DestSize) {
1050     assert(SrcSize == 64 && DestSize == 32);
1051     return CurDAG->getMachineNode(
1052       TargetOpcode::EXTRACT_SUBREG,
1053       DL,
1054       DestVT,
1055       Src,
1056       CurDAG->getTargetConstant(AMDGPU::sub0, MVT::i32));
1057   }
1058
1059
1060   if (DestSize > SrcSize) {
1061     assert(SrcSize == 32 && DestSize == 64);
1062
1063     SDValue RC = CurDAG->getTargetConstant(AMDGPU::VSrc_64RegClassID, MVT::i32);
1064
1065     const SDValue Ops[] = {
1066       RC,
1067       Src,
1068       CurDAG->getTargetConstant(AMDGPU::sub0, MVT::i32),
1069       SDValue(CurDAG->getMachineNode(AMDGPU::S_MOV_B32, SDLoc(N), MVT::i32,
1070                                      CurDAG->getConstant(0, MVT::i32)), 0),
1071       CurDAG->getTargetConstant(AMDGPU::sub1, MVT::i32)
1072     };
1073
1074     return CurDAG->getMachineNode(TargetOpcode::REG_SEQUENCE,
1075                                   SDLoc(N), N->getValueType(0), Ops);
1076   }
1077
1078   assert(SrcSize == 64 && DestSize == 64);
1079   return CurDAG->getNode(ISD::BITCAST, DL, DestVT, Src).getNode();
1080 }
1081
1082 bool AMDGPUDAGToDAGISel::SelectVOP3Mods(SDValue In, SDValue &Src,
1083                                         SDValue &SrcMods) const {
1084
1085   unsigned Mods = 0;
1086
1087   Src = In;
1088
1089   if (Src.getOpcode() == ISD::FNEG) {
1090     Mods |= SISrcMods::NEG;
1091     Src = Src.getOperand(0);
1092   }
1093
1094   if (Src.getOpcode() == ISD::FABS) {
1095     Mods |= SISrcMods::ABS;
1096     Src = Src.getOperand(0);
1097   }
1098
1099   SrcMods = CurDAG->getTargetConstant(Mods, MVT::i32);
1100
1101   return true;
1102 }
1103
1104 bool AMDGPUDAGToDAGISel::SelectVOP3Mods0(SDValue In, SDValue &Src,
1105                                          SDValue &SrcMods, SDValue &Clamp,
1106                                          SDValue &Omod) const {
1107   // FIXME: Handle Clamp and Omod
1108   Clamp = CurDAG->getTargetConstant(0, MVT::i32);
1109   Omod = CurDAG->getTargetConstant(0, MVT::i32);
1110
1111   return SelectVOP3Mods(In, Src, SrcMods);
1112 }
1113
1114 void AMDGPUDAGToDAGISel::PostprocessISelDAG() {
1115   const AMDGPUTargetLowering& Lowering =
1116     *static_cast<const AMDGPUTargetLowering*>(getTargetLowering());
1117   bool IsModified = false;
1118   do {
1119     IsModified = false;
1120     // Go over all selected nodes and try to fold them a bit more
1121     for (SelectionDAG::allnodes_iterator I = CurDAG->allnodes_begin(),
1122          E = CurDAG->allnodes_end(); I != E; ++I) {
1123
1124       SDNode *Node = I;
1125
1126       MachineSDNode *MachineNode = dyn_cast<MachineSDNode>(I);
1127       if (!MachineNode)
1128         continue;
1129
1130       SDNode *ResNode = Lowering.PostISelFolding(MachineNode, *CurDAG);
1131       if (ResNode != Node) {
1132         ReplaceUses(Node, ResNode);
1133         IsModified = true;
1134       }
1135     }
1136     CurDAG->RemoveDeadNodes();
1137   } while (IsModified);
1138 }