AMDGPU: Rename enums to be consistent with HSA code object terminology
[oota-llvm.git] / lib / Target / AMDGPU / 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/MachineFrameInfo.h"
24 #include "llvm/CodeGen/MachineRegisterInfo.h"
25 #include "llvm/CodeGen/PseudoSourceValue.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
44 public:
45   AMDGPUDAGToDAGISel(TargetMachine &TM);
46   virtual ~AMDGPUDAGToDAGISel();
47   bool runOnMachineFunction(MachineFunction &MF) override;
48   SDNode *Select(SDNode *N) override;
49   const char *getPassName() const override;
50   void PreprocessISelDAG() override;
51   void PostprocessISelDAG() override;
52
53 private:
54   bool isInlineImmediate(SDNode *N) const;
55   bool FoldOperand(SDValue &Src, SDValue &Sel, SDValue &Neg, SDValue &Abs,
56                    const R600InstrInfo *TII);
57   bool FoldOperands(unsigned, const R600InstrInfo *, std::vector<SDValue> &);
58   bool FoldDotOperands(unsigned, const R600InstrInfo *, std::vector<SDValue> &);
59
60   // Complex pattern selectors
61   bool SelectADDRParam(SDValue Addr, SDValue& R1, SDValue& R2);
62   bool SelectADDR(SDValue N, SDValue &R1, SDValue &R2);
63   bool SelectADDR64(SDValue N, SDValue &R1, SDValue &R2);
64
65   static bool checkType(const Value *ptr, unsigned int addrspace);
66   static bool checkPrivateAddress(const MachineMemOperand *Op);
67
68   static bool isGlobalStore(const StoreSDNode *N);
69   static bool isFlatStore(const StoreSDNode *N);
70   static bool isPrivateStore(const StoreSDNode *N);
71   static bool isLocalStore(const StoreSDNode *N);
72   static bool isRegionStore(const StoreSDNode *N);
73
74   bool isCPLoad(const LoadSDNode *N) const;
75   bool isConstantLoad(const LoadSDNode *N, int cbID) const;
76   bool isGlobalLoad(const LoadSDNode *N) const;
77   bool isFlatLoad(const LoadSDNode *N) const;
78   bool isParamLoad(const LoadSDNode *N) const;
79   bool isPrivateLoad(const LoadSDNode *N) const;
80   bool isLocalLoad(const LoadSDNode *N) const;
81   bool isRegionLoad(const LoadSDNode *N) const;
82
83   SDNode *glueCopyToM0(SDNode *N) const;
84
85   const TargetRegisterClass *getOperandRegClass(SDNode *N, unsigned OpNo) const;
86   bool SelectGlobalValueConstantOffset(SDValue Addr, SDValue& IntPtr);
87   bool SelectGlobalValueVariableOffset(SDValue Addr, SDValue &BaseReg,
88                                        SDValue& Offset);
89   bool SelectADDRVTX_READ(SDValue Addr, SDValue &Base, SDValue &Offset);
90   bool SelectADDRIndirect(SDValue Addr, SDValue &Base, SDValue &Offset);
91   bool isDSOffsetLegal(const SDValue &Base, unsigned Offset,
92                        unsigned OffsetBits) const;
93   bool SelectDS1Addr1Offset(SDValue Ptr, SDValue &Base, SDValue &Offset) const;
94   bool SelectDS64Bit4ByteAligned(SDValue Ptr, SDValue &Base, SDValue &Offset0,
95                                  SDValue &Offset1) const;
96   void SelectMUBUF(SDValue Addr, SDValue &SRsrc, SDValue &VAddr,
97                    SDValue &SOffset, SDValue &Offset, SDValue &Offen,
98                    SDValue &Idxen, SDValue &Addr64, SDValue &GLC, SDValue &SLC,
99                    SDValue &TFE) const;
100   bool SelectMUBUFAddr64(SDValue Addr, SDValue &SRsrc, SDValue &VAddr,
101                          SDValue &SOffset, SDValue &Offset, SDValue &GLC,
102                          SDValue &SLC, SDValue &TFE) const;
103   bool SelectMUBUFAddr64(SDValue Addr, SDValue &SRsrc,
104                          SDValue &VAddr, SDValue &SOffset, SDValue &Offset,
105                          SDValue &SLC) const;
106   bool SelectMUBUFScratch(SDValue Addr, SDValue &RSrc, SDValue &VAddr,
107                           SDValue &SOffset, SDValue &ImmOffset) const;
108   bool SelectMUBUFOffset(SDValue Addr, SDValue &SRsrc, SDValue &SOffset,
109                          SDValue &Offset, SDValue &GLC, SDValue &SLC,
110                          SDValue &TFE) const;
111   bool SelectMUBUFOffset(SDValue Addr, SDValue &SRsrc, SDValue &Soffset,
112                          SDValue &Offset, SDValue &GLC) const;
113   bool SelectSMRDOffset(SDValue ByteOffsetNode, SDValue &Offset,
114                         bool &Imm) const;
115   bool SelectSMRD(SDValue Addr, SDValue &SBase, SDValue &Offset,
116                   bool &Imm) const;
117   bool SelectSMRDImm(SDValue Addr, SDValue &SBase, SDValue &Offset) const;
118   bool SelectSMRDImm32(SDValue Addr, SDValue &SBase, SDValue &Offset) const;
119   bool SelectSMRDSgpr(SDValue Addr, SDValue &SBase, SDValue &Offset) const;
120   bool SelectSMRDBufferImm(SDValue Addr, SDValue &Offset) const;
121   bool SelectSMRDBufferImm32(SDValue Addr, SDValue &Offset) const;
122   bool SelectSMRDBufferSgpr(SDValue Addr, SDValue &Offset) const;
123   SDNode *SelectAddrSpaceCast(SDNode *N);
124   bool SelectVOP3Mods(SDValue In, SDValue &Src, SDValue &SrcMods) const;
125   bool SelectVOP3NoMods(SDValue In, SDValue &Src, SDValue &SrcMods) const;
126   bool SelectVOP3Mods0(SDValue In, SDValue &Src, SDValue &SrcMods,
127                        SDValue &Clamp, SDValue &Omod) const;
128   bool SelectVOP3NoMods0(SDValue In, SDValue &Src, SDValue &SrcMods,
129                          SDValue &Clamp, SDValue &Omod) const;
130
131   bool SelectVOP3Mods0Clamp(SDValue In, SDValue &Src, SDValue &SrcMods,
132                             SDValue &Omod) const;
133   bool SelectVOP3Mods0Clamp0OMod(SDValue In, SDValue &Src, SDValue &SrcMods,
134                                  SDValue &Clamp,
135                                  SDValue &Omod) const;
136
137   SDNode *SelectADD_SUB_I64(SDNode *N);
138   SDNode *SelectDIV_SCALE(SDNode *N);
139
140   SDNode *getS_BFE(unsigned Opcode, SDLoc DL, SDValue Val,
141                    uint32_t Offset, uint32_t Width);
142   SDNode *SelectS_BFEFromShifts(SDNode *N);
143   SDNode *SelectS_BFE(SDNode *N);
144
145   // Include the pieces autogenerated from the target description.
146 #include "AMDGPUGenDAGISel.inc"
147 };
148 }  // end anonymous namespace
149
150 /// \brief This pass converts a legalized DAG into a AMDGPU-specific
151 // DAG, ready for instruction scheduling.
152 FunctionPass *llvm::createAMDGPUISelDag(TargetMachine &TM) {
153   return new AMDGPUDAGToDAGISel(TM);
154 }
155
156 AMDGPUDAGToDAGISel::AMDGPUDAGToDAGISel(TargetMachine &TM)
157     : SelectionDAGISel(TM) {}
158
159 bool AMDGPUDAGToDAGISel::runOnMachineFunction(MachineFunction &MF) {
160   Subtarget = &static_cast<const AMDGPUSubtarget &>(MF.getSubtarget());
161   return SelectionDAGISel::runOnMachineFunction(MF);
162 }
163
164 AMDGPUDAGToDAGISel::~AMDGPUDAGToDAGISel() {
165 }
166
167 bool AMDGPUDAGToDAGISel::isInlineImmediate(SDNode *N) const {
168   const SITargetLowering *TL
169       = static_cast<const SITargetLowering *>(getTargetLowering());
170   return TL->analyzeImmediate(N) == 0;
171 }
172
173 /// \brief Determine the register class for \p OpNo
174 /// \returns The register class of the virtual register that will be used for
175 /// the given operand number \OpNo or NULL if the register class cannot be
176 /// determined.
177 const TargetRegisterClass *AMDGPUDAGToDAGISel::getOperandRegClass(SDNode *N,
178                                                           unsigned OpNo) const {
179   if (!N->isMachineOpcode())
180     return nullptr;
181
182   switch (N->getMachineOpcode()) {
183   default: {
184     const MCInstrDesc &Desc =
185         Subtarget->getInstrInfo()->get(N->getMachineOpcode());
186     unsigned OpIdx = Desc.getNumDefs() + OpNo;
187     if (OpIdx >= Desc.getNumOperands())
188       return nullptr;
189     int RegClass = Desc.OpInfo[OpIdx].RegClass;
190     if (RegClass == -1)
191       return nullptr;
192
193     return Subtarget->getRegisterInfo()->getRegClass(RegClass);
194   }
195   case AMDGPU::REG_SEQUENCE: {
196     unsigned RCID = cast<ConstantSDNode>(N->getOperand(0))->getZExtValue();
197     const TargetRegisterClass *SuperRC =
198         Subtarget->getRegisterInfo()->getRegClass(RCID);
199
200     SDValue SubRegOp = N->getOperand(OpNo + 1);
201     unsigned SubRegIdx = cast<ConstantSDNode>(SubRegOp)->getZExtValue();
202     return Subtarget->getRegisterInfo()->getSubClassWithSubReg(SuperRC,
203                                                               SubRegIdx);
204   }
205   }
206 }
207
208 bool AMDGPUDAGToDAGISel::SelectADDRParam(
209   SDValue Addr, SDValue& R1, SDValue& R2) {
210
211   if (Addr.getOpcode() == ISD::FrameIndex) {
212     if (FrameIndexSDNode *FIN = dyn_cast<FrameIndexSDNode>(Addr)) {
213       R1 = CurDAG->getTargetFrameIndex(FIN->getIndex(), MVT::i32);
214       R2 = CurDAG->getTargetConstant(0, SDLoc(Addr), MVT::i32);
215     } else {
216       R1 = Addr;
217       R2 = CurDAG->getTargetConstant(0, SDLoc(Addr), MVT::i32);
218     }
219   } else if (Addr.getOpcode() == ISD::ADD) {
220     R1 = Addr.getOperand(0);
221     R2 = Addr.getOperand(1);
222   } else {
223     R1 = Addr;
224     R2 = CurDAG->getTargetConstant(0, SDLoc(Addr), MVT::i32);
225   }
226   return true;
227 }
228
229 bool AMDGPUDAGToDAGISel::SelectADDR(SDValue Addr, SDValue& R1, SDValue& R2) {
230   if (Addr.getOpcode() == ISD::TargetExternalSymbol ||
231       Addr.getOpcode() == ISD::TargetGlobalAddress) {
232     return false;
233   }
234   return SelectADDRParam(Addr, R1, R2);
235 }
236
237
238 bool AMDGPUDAGToDAGISel::SelectADDR64(SDValue Addr, SDValue& R1, SDValue& R2) {
239   if (Addr.getOpcode() == ISD::TargetExternalSymbol ||
240       Addr.getOpcode() == ISD::TargetGlobalAddress) {
241     return false;
242   }
243
244   if (Addr.getOpcode() == ISD::FrameIndex) {
245     if (FrameIndexSDNode *FIN = dyn_cast<FrameIndexSDNode>(Addr)) {
246       R1 = CurDAG->getTargetFrameIndex(FIN->getIndex(), MVT::i64);
247       R2 = CurDAG->getTargetConstant(0, SDLoc(Addr), MVT::i64);
248     } else {
249       R1 = Addr;
250       R2 = CurDAG->getTargetConstant(0, SDLoc(Addr), MVT::i64);
251     }
252   } else if (Addr.getOpcode() == ISD::ADD) {
253     R1 = Addr.getOperand(0);
254     R2 = Addr.getOperand(1);
255   } else {
256     R1 = Addr;
257     R2 = CurDAG->getTargetConstant(0, SDLoc(Addr), MVT::i64);
258   }
259   return true;
260 }
261
262 SDNode *AMDGPUDAGToDAGISel::glueCopyToM0(SDNode *N) const {
263   if (Subtarget->getGeneration() < AMDGPUSubtarget::SOUTHERN_ISLANDS ||
264       !checkType(cast<MemSDNode>(N)->getMemOperand()->getValue(),
265                  AMDGPUAS::LOCAL_ADDRESS))
266     return N;
267
268   const SITargetLowering& Lowering =
269       *static_cast<const SITargetLowering*>(getTargetLowering());
270
271   // Write max value to m0 before each load operation
272
273   SDValue M0 = Lowering.copyToM0(*CurDAG, CurDAG->getEntryNode(), SDLoc(N),
274                                  CurDAG->getTargetConstant(-1, SDLoc(N), MVT::i32));
275
276   SDValue Glue = M0.getValue(1);
277
278   SmallVector <SDValue, 8> Ops;
279   for (unsigned i = 0, e = N->getNumOperands(); i != e; ++i) {
280      Ops.push_back(N->getOperand(i));
281   }
282   Ops.push_back(Glue);
283   CurDAG->MorphNodeTo(N, N->getOpcode(), N->getVTList(), Ops);
284
285   return N;
286 }
287
288 static unsigned selectSGPRVectorRegClassID(unsigned NumVectorElts) {
289   switch (NumVectorElts) {
290   case 1:
291     return AMDGPU::SReg_32RegClassID;
292   case 2:
293     return AMDGPU::SReg_64RegClassID;
294   case 4:
295     return AMDGPU::SReg_128RegClassID;
296   case 8:
297     return AMDGPU::SReg_256RegClassID;
298   case 16:
299     return AMDGPU::SReg_512RegClassID;
300   }
301
302   llvm_unreachable("invalid vector size");
303 }
304
305 SDNode *AMDGPUDAGToDAGISel::Select(SDNode *N) {
306   unsigned int Opc = N->getOpcode();
307   if (N->isMachineOpcode()) {
308     N->setNodeId(-1);
309     return nullptr;   // Already selected.
310   }
311
312   if (isa<AtomicSDNode>(N))
313     N = glueCopyToM0(N);
314
315   switch (Opc) {
316   default: break;
317   // We are selecting i64 ADD here instead of custom lower it during
318   // DAG legalization, so we can fold some i64 ADDs used for address
319   // calculation into the LOAD and STORE instructions.
320   case ISD::ADD:
321   case ISD::SUB: {
322     if (N->getValueType(0) != MVT::i64 ||
323         Subtarget->getGeneration() < AMDGPUSubtarget::SOUTHERN_ISLANDS)
324       break;
325
326     return SelectADD_SUB_I64(N);
327   }
328   case ISD::SCALAR_TO_VECTOR:
329   case AMDGPUISD::BUILD_VERTICAL_VECTOR:
330   case ISD::BUILD_VECTOR: {
331     unsigned RegClassID;
332     const AMDGPURegisterInfo *TRI = Subtarget->getRegisterInfo();
333     EVT VT = N->getValueType(0);
334     unsigned NumVectorElts = VT.getVectorNumElements();
335     EVT EltVT = VT.getVectorElementType();
336     assert(EltVT.bitsEq(MVT::i32));
337     if (Subtarget->getGeneration() >= AMDGPUSubtarget::SOUTHERN_ISLANDS) {
338       RegClassID = selectSGPRVectorRegClassID(NumVectorElts);
339     } else {
340       // BUILD_VECTOR was lowered into an IMPLICIT_DEF + 4 INSERT_SUBREG
341       // that adds a 128 bits reg copy when going through TwoAddressInstructions
342       // pass. We want to avoid 128 bits copies as much as possible because they
343       // can't be bundled by our scheduler.
344       switch(NumVectorElts) {
345       case 2: RegClassID = AMDGPU::R600_Reg64RegClassID; break;
346       case 4:
347         if (Opc == AMDGPUISD::BUILD_VERTICAL_VECTOR)
348           RegClassID = AMDGPU::R600_Reg128VerticalRegClassID;
349         else
350           RegClassID = AMDGPU::R600_Reg128RegClassID;
351         break;
352       default: llvm_unreachable("Do not know how to lower this BUILD_VECTOR");
353       }
354     }
355
356     SDLoc DL(N);
357     SDValue RegClass = CurDAG->getTargetConstant(RegClassID, DL, MVT::i32);
358
359     if (NumVectorElts == 1) {
360       return CurDAG->SelectNodeTo(N, AMDGPU::COPY_TO_REGCLASS, EltVT,
361                                   N->getOperand(0), RegClass);
362     }
363
364     assert(NumVectorElts <= 16 && "Vectors with more than 16 elements not "
365                                   "supported yet");
366     // 16 = Max Num Vector Elements
367     // 2 = 2 REG_SEQUENCE operands per element (value, subreg index)
368     // 1 = Vector Register Class
369     SmallVector<SDValue, 16 * 2 + 1> RegSeqArgs(NumVectorElts * 2 + 1);
370
371     RegSeqArgs[0] = CurDAG->getTargetConstant(RegClassID, DL, MVT::i32);
372     bool IsRegSeq = true;
373     unsigned NOps = N->getNumOperands();
374     for (unsigned i = 0; i < NOps; i++) {
375       // XXX: Why is this here?
376       if (isa<RegisterSDNode>(N->getOperand(i))) {
377         IsRegSeq = false;
378         break;
379       }
380       RegSeqArgs[1 + (2 * i)] = N->getOperand(i);
381       RegSeqArgs[1 + (2 * i) + 1] =
382               CurDAG->getTargetConstant(TRI->getSubRegFromChannel(i), DL,
383                                         MVT::i32);
384     }
385
386     if (NOps != NumVectorElts) {
387       // Fill in the missing undef elements if this was a scalar_to_vector.
388       assert(Opc == ISD::SCALAR_TO_VECTOR && NOps < NumVectorElts);
389
390       MachineSDNode *ImpDef = CurDAG->getMachineNode(TargetOpcode::IMPLICIT_DEF,
391                                                      DL, EltVT);
392       for (unsigned i = NOps; i < NumVectorElts; ++i) {
393         RegSeqArgs[1 + (2 * i)] = SDValue(ImpDef, 0);
394         RegSeqArgs[1 + (2 * i) + 1] =
395           CurDAG->getTargetConstant(TRI->getSubRegFromChannel(i), DL, MVT::i32);
396       }
397     }
398
399     if (!IsRegSeq)
400       break;
401     return CurDAG->SelectNodeTo(N, AMDGPU::REG_SEQUENCE, N->getVTList(),
402                                 RegSeqArgs);
403   }
404   case ISD::BUILD_PAIR: {
405     SDValue RC, SubReg0, SubReg1;
406     if (Subtarget->getGeneration() <= AMDGPUSubtarget::NORTHERN_ISLANDS) {
407       break;
408     }
409     SDLoc DL(N);
410     if (N->getValueType(0) == MVT::i128) {
411       RC = CurDAG->getTargetConstant(AMDGPU::SReg_128RegClassID, DL, MVT::i32);
412       SubReg0 = CurDAG->getTargetConstant(AMDGPU::sub0_sub1, DL, MVT::i32);
413       SubReg1 = CurDAG->getTargetConstant(AMDGPU::sub2_sub3, DL, MVT::i32);
414     } else if (N->getValueType(0) == MVT::i64) {
415       RC = CurDAG->getTargetConstant(AMDGPU::SReg_64RegClassID, DL, MVT::i32);
416       SubReg0 = CurDAG->getTargetConstant(AMDGPU::sub0, DL, MVT::i32);
417       SubReg1 = CurDAG->getTargetConstant(AMDGPU::sub1, DL, MVT::i32);
418     } else {
419       llvm_unreachable("Unhandled value type for BUILD_PAIR");
420     }
421     const SDValue Ops[] = { RC, N->getOperand(0), SubReg0,
422                             N->getOperand(1), SubReg1 };
423     return CurDAG->getMachineNode(TargetOpcode::REG_SEQUENCE,
424                                   DL, N->getValueType(0), Ops);
425   }
426
427   case ISD::Constant:
428   case ISD::ConstantFP: {
429     if (Subtarget->getGeneration() < AMDGPUSubtarget::SOUTHERN_ISLANDS ||
430         N->getValueType(0).getSizeInBits() != 64 || isInlineImmediate(N))
431       break;
432
433     uint64_t Imm;
434     if (ConstantFPSDNode *FP = dyn_cast<ConstantFPSDNode>(N))
435       Imm = FP->getValueAPF().bitcastToAPInt().getZExtValue();
436     else {
437       ConstantSDNode *C = cast<ConstantSDNode>(N);
438       Imm = C->getZExtValue();
439     }
440
441     SDLoc DL(N);
442     SDNode *Lo = CurDAG->getMachineNode(AMDGPU::S_MOV_B32, DL, MVT::i32,
443                                 CurDAG->getConstant(Imm & 0xFFFFFFFF, DL,
444                                                     MVT::i32));
445     SDNode *Hi = CurDAG->getMachineNode(AMDGPU::S_MOV_B32, DL, MVT::i32,
446                                 CurDAG->getConstant(Imm >> 32, DL, MVT::i32));
447     const SDValue Ops[] = {
448       CurDAG->getTargetConstant(AMDGPU::SReg_64RegClassID, DL, MVT::i32),
449       SDValue(Lo, 0), CurDAG->getTargetConstant(AMDGPU::sub0, DL, MVT::i32),
450       SDValue(Hi, 0), CurDAG->getTargetConstant(AMDGPU::sub1, DL, MVT::i32)
451     };
452
453     return CurDAG->getMachineNode(TargetOpcode::REG_SEQUENCE, DL,
454                                   N->getValueType(0), Ops);
455   }
456   case ISD::LOAD:
457   case ISD::STORE: {
458     N = glueCopyToM0(N);
459     break;
460   }
461   case AMDGPUISD::REGISTER_LOAD: {
462     if (Subtarget->getGeneration() <= AMDGPUSubtarget::NORTHERN_ISLANDS)
463       break;
464     SDValue Addr, Offset;
465
466     SDLoc DL(N);
467     SelectADDRIndirect(N->getOperand(1), Addr, Offset);
468     const SDValue Ops[] = {
469       Addr,
470       Offset,
471       CurDAG->getTargetConstant(0, DL, MVT::i32),
472       N->getOperand(0),
473     };
474     return CurDAG->getMachineNode(AMDGPU::SI_RegisterLoad, DL,
475                                   CurDAG->getVTList(MVT::i32, MVT::i64,
476                                                     MVT::Other),
477                                   Ops);
478   }
479   case AMDGPUISD::REGISTER_STORE: {
480     if (Subtarget->getGeneration() <= AMDGPUSubtarget::NORTHERN_ISLANDS)
481       break;
482     SDValue Addr, Offset;
483     SelectADDRIndirect(N->getOperand(2), Addr, Offset);
484     SDLoc DL(N);
485     const SDValue Ops[] = {
486       N->getOperand(1),
487       Addr,
488       Offset,
489       CurDAG->getTargetConstant(0, DL, MVT::i32),
490       N->getOperand(0),
491     };
492     return CurDAG->getMachineNode(AMDGPU::SI_RegisterStorePseudo, DL,
493                                         CurDAG->getVTList(MVT::Other),
494                                         Ops);
495   }
496
497   case AMDGPUISD::BFE_I32:
498   case AMDGPUISD::BFE_U32: {
499     if (Subtarget->getGeneration() < AMDGPUSubtarget::SOUTHERN_ISLANDS)
500       break;
501
502     // There is a scalar version available, but unlike the vector version which
503     // has a separate operand for the offset and width, the scalar version packs
504     // the width and offset into a single operand. Try to move to the scalar
505     // version if the offsets are constant, so that we can try to keep extended
506     // loads of kernel arguments in SGPRs.
507
508     // TODO: Technically we could try to pattern match scalar bitshifts of
509     // dynamic values, but it's probably not useful.
510     ConstantSDNode *Offset = dyn_cast<ConstantSDNode>(N->getOperand(1));
511     if (!Offset)
512       break;
513
514     ConstantSDNode *Width = dyn_cast<ConstantSDNode>(N->getOperand(2));
515     if (!Width)
516       break;
517
518     bool Signed = Opc == AMDGPUISD::BFE_I32;
519
520     uint32_t OffsetVal = Offset->getZExtValue();
521     uint32_t WidthVal = Width->getZExtValue();
522
523     return getS_BFE(Signed ? AMDGPU::S_BFE_I32 : AMDGPU::S_BFE_U32, SDLoc(N),
524                     N->getOperand(0), OffsetVal, WidthVal);
525   }
526   case AMDGPUISD::DIV_SCALE: {
527     return SelectDIV_SCALE(N);
528   }
529   case ISD::CopyToReg: {
530     const SITargetLowering& Lowering =
531       *static_cast<const SITargetLowering*>(getTargetLowering());
532     Lowering.legalizeTargetIndependentNode(N, *CurDAG);
533     break;
534   }
535   case ISD::ADDRSPACECAST:
536     return SelectAddrSpaceCast(N);
537   case ISD::AND:
538   case ISD::SRL:
539   case ISD::SRA:
540     if (N->getValueType(0) != MVT::i32 ||
541         Subtarget->getGeneration() < AMDGPUSubtarget::SOUTHERN_ISLANDS)
542       break;
543
544     return SelectS_BFE(N);
545   }
546
547   return SelectCode(N);
548 }
549
550 bool AMDGPUDAGToDAGISel::checkType(const Value *Ptr, unsigned AS) {
551   assert(AS != 0 && "Use checkPrivateAddress instead.");
552   if (!Ptr)
553     return false;
554
555   return Ptr->getType()->getPointerAddressSpace() == AS;
556 }
557
558 bool AMDGPUDAGToDAGISel::checkPrivateAddress(const MachineMemOperand *Op) {
559   if (Op->getPseudoValue())
560     return true;
561
562   if (PointerType *PT = dyn_cast<PointerType>(Op->getValue()->getType()))
563     return PT->getAddressSpace() == AMDGPUAS::PRIVATE_ADDRESS;
564
565   return false;
566 }
567
568 bool AMDGPUDAGToDAGISel::isGlobalStore(const StoreSDNode *N) {
569   return checkType(N->getMemOperand()->getValue(), AMDGPUAS::GLOBAL_ADDRESS);
570 }
571
572 bool AMDGPUDAGToDAGISel::isPrivateStore(const StoreSDNode *N) {
573   const Value *MemVal = N->getMemOperand()->getValue();
574   return (!checkType(MemVal, AMDGPUAS::LOCAL_ADDRESS) &&
575           !checkType(MemVal, AMDGPUAS::GLOBAL_ADDRESS) &&
576           !checkType(MemVal, AMDGPUAS::REGION_ADDRESS));
577 }
578
579 bool AMDGPUDAGToDAGISel::isLocalStore(const StoreSDNode *N) {
580   return checkType(N->getMemOperand()->getValue(), AMDGPUAS::LOCAL_ADDRESS);
581 }
582
583 bool AMDGPUDAGToDAGISel::isFlatStore(const StoreSDNode *N) {
584   return checkType(N->getMemOperand()->getValue(), AMDGPUAS::FLAT_ADDRESS);
585 }
586
587 bool AMDGPUDAGToDAGISel::isRegionStore(const StoreSDNode *N) {
588   return checkType(N->getMemOperand()->getValue(), AMDGPUAS::REGION_ADDRESS);
589 }
590
591 bool AMDGPUDAGToDAGISel::isConstantLoad(const LoadSDNode *N, int CbId) const {
592   const Value *MemVal = N->getMemOperand()->getValue();
593   if (CbId == -1)
594     return checkType(MemVal, AMDGPUAS::CONSTANT_ADDRESS);
595
596   return checkType(MemVal, AMDGPUAS::CONSTANT_BUFFER_0 + CbId);
597 }
598
599 bool AMDGPUDAGToDAGISel::isGlobalLoad(const LoadSDNode *N) const {
600   if (N->getAddressSpace() == AMDGPUAS::CONSTANT_ADDRESS)
601     if (Subtarget->getGeneration() < AMDGPUSubtarget::SOUTHERN_ISLANDS ||
602         N->getMemoryVT().bitsLT(MVT::i32))
603       return true;
604
605   return checkType(N->getMemOperand()->getValue(), AMDGPUAS::GLOBAL_ADDRESS);
606 }
607
608 bool AMDGPUDAGToDAGISel::isParamLoad(const LoadSDNode *N) const {
609   return checkType(N->getMemOperand()->getValue(), AMDGPUAS::PARAM_I_ADDRESS);
610 }
611
612 bool AMDGPUDAGToDAGISel::isLocalLoad(const  LoadSDNode *N) const {
613   return checkType(N->getMemOperand()->getValue(), AMDGPUAS::LOCAL_ADDRESS);
614 }
615
616 bool AMDGPUDAGToDAGISel::isFlatLoad(const  LoadSDNode *N) const {
617   return checkType(N->getMemOperand()->getValue(), AMDGPUAS::FLAT_ADDRESS);
618 }
619
620 bool AMDGPUDAGToDAGISel::isRegionLoad(const  LoadSDNode *N) const {
621   return checkType(N->getMemOperand()->getValue(), AMDGPUAS::REGION_ADDRESS);
622 }
623
624 bool AMDGPUDAGToDAGISel::isCPLoad(const LoadSDNode *N) const {
625   MachineMemOperand *MMO = N->getMemOperand();
626   if (checkPrivateAddress(N->getMemOperand())) {
627     if (MMO) {
628       const PseudoSourceValue *PSV = MMO->getPseudoValue();
629       if (PSV && PSV->isConstantPool()) {
630         return true;
631       }
632     }
633   }
634   return false;
635 }
636
637 bool AMDGPUDAGToDAGISel::isPrivateLoad(const LoadSDNode *N) const {
638   if (checkPrivateAddress(N->getMemOperand())) {
639     // Check to make sure we are not a constant pool load or a constant load
640     // that is marked as a private load
641     if (isCPLoad(N) || isConstantLoad(N, -1)) {
642       return false;
643     }
644   }
645
646   const Value *MemVal = N->getMemOperand()->getValue();
647   if (!checkType(MemVal, AMDGPUAS::LOCAL_ADDRESS) &&
648       !checkType(MemVal, AMDGPUAS::GLOBAL_ADDRESS) &&
649       !checkType(MemVal, AMDGPUAS::FLAT_ADDRESS) &&
650       !checkType(MemVal, AMDGPUAS::REGION_ADDRESS) &&
651       !checkType(MemVal, AMDGPUAS::CONSTANT_ADDRESS) &&
652       !checkType(MemVal, AMDGPUAS::PARAM_D_ADDRESS) &&
653       !checkType(MemVal, AMDGPUAS::PARAM_I_ADDRESS)) {
654     return true;
655   }
656   return false;
657 }
658
659 const char *AMDGPUDAGToDAGISel::getPassName() const {
660   return "AMDGPU DAG->DAG Pattern Instruction Selection";
661 }
662
663 #ifdef DEBUGTMP
664 #undef INT64_C
665 #endif
666 #undef DEBUGTMP
667
668 //===----------------------------------------------------------------------===//
669 // Complex Patterns
670 //===----------------------------------------------------------------------===//
671
672 bool AMDGPUDAGToDAGISel::SelectGlobalValueConstantOffset(SDValue Addr,
673                                                          SDValue& IntPtr) {
674   if (ConstantSDNode *Cst = dyn_cast<ConstantSDNode>(Addr)) {
675     IntPtr = CurDAG->getIntPtrConstant(Cst->getZExtValue() / 4, SDLoc(Addr),
676                                        true);
677     return true;
678   }
679   return false;
680 }
681
682 bool AMDGPUDAGToDAGISel::SelectGlobalValueVariableOffset(SDValue Addr,
683     SDValue& BaseReg, SDValue &Offset) {
684   if (!isa<ConstantSDNode>(Addr)) {
685     BaseReg = Addr;
686     Offset = CurDAG->getIntPtrConstant(0, SDLoc(Addr), true);
687     return true;
688   }
689   return false;
690 }
691
692 bool AMDGPUDAGToDAGISel::SelectADDRVTX_READ(SDValue Addr, SDValue &Base,
693                                            SDValue &Offset) {
694   ConstantSDNode *IMMOffset;
695
696   if (Addr.getOpcode() == ISD::ADD
697       && (IMMOffset = dyn_cast<ConstantSDNode>(Addr.getOperand(1)))
698       && isInt<16>(IMMOffset->getZExtValue())) {
699
700       Base = Addr.getOperand(0);
701       Offset = CurDAG->getTargetConstant(IMMOffset->getZExtValue(), SDLoc(Addr),
702                                          MVT::i32);
703       return true;
704   // If the pointer address is constant, we can move it to the offset field.
705   } else if ((IMMOffset = dyn_cast<ConstantSDNode>(Addr))
706              && isInt<16>(IMMOffset->getZExtValue())) {
707     Base = CurDAG->getCopyFromReg(CurDAG->getEntryNode(),
708                                   SDLoc(CurDAG->getEntryNode()),
709                                   AMDGPU::ZERO, MVT::i32);
710     Offset = CurDAG->getTargetConstant(IMMOffset->getZExtValue(), SDLoc(Addr),
711                                        MVT::i32);
712     return true;
713   }
714
715   // Default case, no offset
716   Base = Addr;
717   Offset = CurDAG->getTargetConstant(0, SDLoc(Addr), MVT::i32);
718   return true;
719 }
720
721 bool AMDGPUDAGToDAGISel::SelectADDRIndirect(SDValue Addr, SDValue &Base,
722                                             SDValue &Offset) {
723   ConstantSDNode *C;
724   SDLoc DL(Addr);
725
726   if ((C = dyn_cast<ConstantSDNode>(Addr))) {
727     Base = CurDAG->getRegister(AMDGPU::INDIRECT_BASE_ADDR, MVT::i32);
728     Offset = CurDAG->getTargetConstant(C->getZExtValue(), DL, MVT::i32);
729   } else if ((Addr.getOpcode() == ISD::ADD || Addr.getOpcode() == ISD::OR) &&
730             (C = dyn_cast<ConstantSDNode>(Addr.getOperand(1)))) {
731     Base = Addr.getOperand(0);
732     Offset = CurDAG->getTargetConstant(C->getZExtValue(), DL, MVT::i32);
733   } else {
734     Base = Addr;
735     Offset = CurDAG->getTargetConstant(0, DL, MVT::i32);
736   }
737
738   return true;
739 }
740
741 SDNode *AMDGPUDAGToDAGISel::SelectADD_SUB_I64(SDNode *N) {
742   SDLoc DL(N);
743   SDValue LHS = N->getOperand(0);
744   SDValue RHS = N->getOperand(1);
745
746   bool IsAdd = (N->getOpcode() == ISD::ADD);
747
748   SDValue Sub0 = CurDAG->getTargetConstant(AMDGPU::sub0, DL, MVT::i32);
749   SDValue Sub1 = CurDAG->getTargetConstant(AMDGPU::sub1, DL, MVT::i32);
750
751   SDNode *Lo0 = CurDAG->getMachineNode(TargetOpcode::EXTRACT_SUBREG,
752                                        DL, MVT::i32, LHS, Sub0);
753   SDNode *Hi0 = CurDAG->getMachineNode(TargetOpcode::EXTRACT_SUBREG,
754                                        DL, MVT::i32, LHS, Sub1);
755
756   SDNode *Lo1 = CurDAG->getMachineNode(TargetOpcode::EXTRACT_SUBREG,
757                                        DL, MVT::i32, RHS, Sub0);
758   SDNode *Hi1 = CurDAG->getMachineNode(TargetOpcode::EXTRACT_SUBREG,
759                                        DL, MVT::i32, RHS, Sub1);
760
761   SDVTList VTList = CurDAG->getVTList(MVT::i32, MVT::Glue);
762   SDValue AddLoArgs[] = { SDValue(Lo0, 0), SDValue(Lo1, 0) };
763
764
765   unsigned Opc = IsAdd ? AMDGPU::S_ADD_U32 : AMDGPU::S_SUB_U32;
766   unsigned CarryOpc = IsAdd ? AMDGPU::S_ADDC_U32 : AMDGPU::S_SUBB_U32;
767
768   SDNode *AddLo = CurDAG->getMachineNode( Opc, DL, VTList, AddLoArgs);
769   SDValue Carry(AddLo, 1);
770   SDNode *AddHi
771     = CurDAG->getMachineNode(CarryOpc, DL, MVT::i32,
772                              SDValue(Hi0, 0), SDValue(Hi1, 0), Carry);
773
774   SDValue Args[5] = {
775     CurDAG->getTargetConstant(AMDGPU::SReg_64RegClassID, DL, MVT::i32),
776     SDValue(AddLo,0),
777     Sub0,
778     SDValue(AddHi,0),
779     Sub1,
780   };
781   return CurDAG->SelectNodeTo(N, AMDGPU::REG_SEQUENCE, MVT::i64, Args);
782 }
783
784 // We need to handle this here because tablegen doesn't support matching
785 // instructions with multiple outputs.
786 SDNode *AMDGPUDAGToDAGISel::SelectDIV_SCALE(SDNode *N) {
787   SDLoc SL(N);
788   EVT VT = N->getValueType(0);
789
790   assert(VT == MVT::f32 || VT == MVT::f64);
791
792   unsigned Opc
793     = (VT == MVT::f64) ? AMDGPU::V_DIV_SCALE_F64 : AMDGPU::V_DIV_SCALE_F32;
794
795   // src0_modifiers, src0, src1_modifiers, src1, src2_modifiers, src2, clamp,
796   // omod
797   SDValue Ops[8];
798
799   SelectVOP3Mods0(N->getOperand(0), Ops[1], Ops[0], Ops[6], Ops[7]);
800   SelectVOP3Mods(N->getOperand(1), Ops[3], Ops[2]);
801   SelectVOP3Mods(N->getOperand(2), Ops[5], Ops[4]);
802   return CurDAG->SelectNodeTo(N, Opc, VT, MVT::i1, Ops);
803 }
804
805 bool AMDGPUDAGToDAGISel::isDSOffsetLegal(const SDValue &Base, unsigned Offset,
806                                          unsigned OffsetBits) const {
807   if ((OffsetBits == 16 && !isUInt<16>(Offset)) ||
808       (OffsetBits == 8 && !isUInt<8>(Offset)))
809     return false;
810
811   if (Subtarget->getGeneration() >= AMDGPUSubtarget::SEA_ISLANDS ||
812       Subtarget->unsafeDSOffsetFoldingEnabled())
813     return true;
814
815   // On Southern Islands instruction with a negative base value and an offset
816   // don't seem to work.
817   return CurDAG->SignBitIsZero(Base);
818 }
819
820 bool AMDGPUDAGToDAGISel::SelectDS1Addr1Offset(SDValue Addr, SDValue &Base,
821                                               SDValue &Offset) const {
822   if (CurDAG->isBaseWithConstantOffset(Addr)) {
823     SDValue N0 = Addr.getOperand(0);
824     SDValue N1 = Addr.getOperand(1);
825     ConstantSDNode *C1 = cast<ConstantSDNode>(N1);
826     if (isDSOffsetLegal(N0, C1->getSExtValue(), 16)) {
827       // (add n0, c0)
828       Base = N0;
829       Offset = N1;
830       return true;
831     }
832   } else if (Addr.getOpcode() == ISD::SUB) {
833     // sub C, x -> add (sub 0, x), C
834     if (const ConstantSDNode *C = dyn_cast<ConstantSDNode>(Addr.getOperand(0))) {
835       int64_t ByteOffset = C->getSExtValue();
836       if (isUInt<16>(ByteOffset)) {
837         SDLoc DL(Addr);
838         SDValue Zero = CurDAG->getTargetConstant(0, DL, MVT::i32);
839
840         // XXX - This is kind of hacky. Create a dummy sub node so we can check
841         // the known bits in isDSOffsetLegal. We need to emit the selected node
842         // here, so this is thrown away.
843         SDValue Sub = CurDAG->getNode(ISD::SUB, DL, MVT::i32,
844                                       Zero, Addr.getOperand(1));
845
846         if (isDSOffsetLegal(Sub, ByteOffset, 16)) {
847           MachineSDNode *MachineSub
848             = CurDAG->getMachineNode(AMDGPU::V_SUB_I32_e32, DL, MVT::i32,
849                                      Zero, Addr.getOperand(1));
850
851           Base = SDValue(MachineSub, 0);
852           Offset = Addr.getOperand(0);
853           return true;
854         }
855       }
856     }
857   } else if (const ConstantSDNode *CAddr = dyn_cast<ConstantSDNode>(Addr)) {
858     // If we have a constant address, prefer to put the constant into the
859     // offset. This can save moves to load the constant address since multiple
860     // operations can share the zero base address register, and enables merging
861     // into read2 / write2 instructions.
862
863     SDLoc DL(Addr);
864
865     if (isUInt<16>(CAddr->getZExtValue())) {
866       SDValue Zero = CurDAG->getTargetConstant(0, DL, MVT::i32);
867       MachineSDNode *MovZero = CurDAG->getMachineNode(AMDGPU::V_MOV_B32_e32,
868                                  DL, MVT::i32, Zero);
869       Base = SDValue(MovZero, 0);
870       Offset = Addr;
871       return true;
872     }
873   }
874
875   // default case
876   Base = Addr;
877   Offset = CurDAG->getTargetConstant(0, SDLoc(Addr), MVT::i16);
878   return true;
879 }
880
881 // TODO: If offset is too big, put low 16-bit into offset.
882 bool AMDGPUDAGToDAGISel::SelectDS64Bit4ByteAligned(SDValue Addr, SDValue &Base,
883                                                    SDValue &Offset0,
884                                                    SDValue &Offset1) const {
885   SDLoc DL(Addr);
886
887   if (CurDAG->isBaseWithConstantOffset(Addr)) {
888     SDValue N0 = Addr.getOperand(0);
889     SDValue N1 = Addr.getOperand(1);
890     ConstantSDNode *C1 = cast<ConstantSDNode>(N1);
891     unsigned DWordOffset0 = C1->getZExtValue() / 4;
892     unsigned DWordOffset1 = DWordOffset0 + 1;
893     // (add n0, c0)
894     if (isDSOffsetLegal(N0, DWordOffset1, 8)) {
895       Base = N0;
896       Offset0 = CurDAG->getTargetConstant(DWordOffset0, DL, MVT::i8);
897       Offset1 = CurDAG->getTargetConstant(DWordOffset1, DL, MVT::i8);
898       return true;
899     }
900   } else if (Addr.getOpcode() == ISD::SUB) {
901     // sub C, x -> add (sub 0, x), C
902     if (const ConstantSDNode *C = dyn_cast<ConstantSDNode>(Addr.getOperand(0))) {
903       unsigned DWordOffset0 = C->getZExtValue() / 4;
904       unsigned DWordOffset1 = DWordOffset0 + 1;
905
906       if (isUInt<8>(DWordOffset0)) {
907         SDLoc DL(Addr);
908         SDValue Zero = CurDAG->getTargetConstant(0, DL, MVT::i32);
909
910         // XXX - This is kind of hacky. Create a dummy sub node so we can check
911         // the known bits in isDSOffsetLegal. We need to emit the selected node
912         // here, so this is thrown away.
913         SDValue Sub = CurDAG->getNode(ISD::SUB, DL, MVT::i32,
914                                       Zero, Addr.getOperand(1));
915
916         if (isDSOffsetLegal(Sub, DWordOffset1, 8)) {
917           MachineSDNode *MachineSub
918             = CurDAG->getMachineNode(AMDGPU::V_SUB_I32_e32, DL, MVT::i32,
919                                      Zero, Addr.getOperand(1));
920
921           Base = SDValue(MachineSub, 0);
922           Offset0 = CurDAG->getTargetConstant(DWordOffset0, DL, MVT::i8);
923           Offset1 = CurDAG->getTargetConstant(DWordOffset1, DL, MVT::i8);
924           return true;
925         }
926       }
927     }
928   } else if (const ConstantSDNode *CAddr = dyn_cast<ConstantSDNode>(Addr)) {
929     unsigned DWordOffset0 = CAddr->getZExtValue() / 4;
930     unsigned DWordOffset1 = DWordOffset0 + 1;
931     assert(4 * DWordOffset0 == CAddr->getZExtValue());
932
933     if (isUInt<8>(DWordOffset0) && isUInt<8>(DWordOffset1)) {
934       SDValue Zero = CurDAG->getTargetConstant(0, DL, MVT::i32);
935       MachineSDNode *MovZero
936         = CurDAG->getMachineNode(AMDGPU::V_MOV_B32_e32,
937                                  DL, MVT::i32, Zero);
938       Base = SDValue(MovZero, 0);
939       Offset0 = CurDAG->getTargetConstant(DWordOffset0, DL, MVT::i8);
940       Offset1 = CurDAG->getTargetConstant(DWordOffset1, DL, MVT::i8);
941       return true;
942     }
943   }
944
945   // default case
946   Base = Addr;
947   Offset0 = CurDAG->getTargetConstant(0, DL, MVT::i8);
948   Offset1 = CurDAG->getTargetConstant(1, DL, MVT::i8);
949   return true;
950 }
951
952 static bool isLegalMUBUFImmOffset(const ConstantSDNode *Imm) {
953   return isUInt<12>(Imm->getZExtValue());
954 }
955
956 void AMDGPUDAGToDAGISel::SelectMUBUF(SDValue Addr, SDValue &Ptr,
957                                      SDValue &VAddr, SDValue &SOffset,
958                                      SDValue &Offset, SDValue &Offen,
959                                      SDValue &Idxen, SDValue &Addr64,
960                                      SDValue &GLC, SDValue &SLC,
961                                      SDValue &TFE) const {
962   SDLoc DL(Addr);
963
964   GLC = CurDAG->getTargetConstant(0, DL, MVT::i1);
965   SLC = CurDAG->getTargetConstant(0, DL, MVT::i1);
966   TFE = CurDAG->getTargetConstant(0, DL, MVT::i1);
967
968   Idxen = CurDAG->getTargetConstant(0, DL, MVT::i1);
969   Offen = CurDAG->getTargetConstant(0, DL, MVT::i1);
970   Addr64 = CurDAG->getTargetConstant(0, DL, MVT::i1);
971   SOffset = CurDAG->getTargetConstant(0, DL, MVT::i32);
972
973   if (CurDAG->isBaseWithConstantOffset(Addr)) {
974     SDValue N0 = Addr.getOperand(0);
975     SDValue N1 = Addr.getOperand(1);
976     ConstantSDNode *C1 = cast<ConstantSDNode>(N1);
977
978     if (N0.getOpcode() == ISD::ADD) {
979       // (add (add N2, N3), C1) -> addr64
980       SDValue N2 = N0.getOperand(0);
981       SDValue N3 = N0.getOperand(1);
982       Addr64 = CurDAG->getTargetConstant(1, DL, MVT::i1);
983       Ptr = N2;
984       VAddr = N3;
985     } else {
986
987       // (add N0, C1) -> offset
988       VAddr = CurDAG->getTargetConstant(0, DL, MVT::i32);
989       Ptr = N0;
990     }
991
992     if (isLegalMUBUFImmOffset(C1)) {
993         Offset = CurDAG->getTargetConstant(C1->getZExtValue(), DL, MVT::i16);
994         return;
995     } else if (isUInt<32>(C1->getZExtValue())) {
996       // Illegal offset, store it in soffset.
997       Offset = CurDAG->getTargetConstant(0, DL, MVT::i16);
998       SOffset = SDValue(CurDAG->getMachineNode(AMDGPU::S_MOV_B32, DL, MVT::i32,
999                    CurDAG->getTargetConstant(C1->getZExtValue(), DL, MVT::i32)),
1000                         0);
1001       return;
1002     }
1003   }
1004
1005   if (Addr.getOpcode() == ISD::ADD) {
1006     // (add N0, N1) -> addr64
1007     SDValue N0 = Addr.getOperand(0);
1008     SDValue N1 = Addr.getOperand(1);
1009     Addr64 = CurDAG->getTargetConstant(1, DL, MVT::i1);
1010     Ptr = N0;
1011     VAddr = N1;
1012     Offset = CurDAG->getTargetConstant(0, DL, MVT::i16);
1013     return;
1014   }
1015
1016   // default case -> offset
1017   VAddr = CurDAG->getTargetConstant(0, DL, MVT::i32);
1018   Ptr = Addr;
1019   Offset = CurDAG->getTargetConstant(0, DL, MVT::i16);
1020 }
1021
1022 bool AMDGPUDAGToDAGISel::SelectMUBUFAddr64(SDValue Addr, SDValue &SRsrc,
1023                                            SDValue &VAddr, SDValue &SOffset,
1024                                            SDValue &Offset, SDValue &GLC,
1025                                            SDValue &SLC, SDValue &TFE) const {
1026   SDValue Ptr, Offen, Idxen, Addr64;
1027
1028   // addr64 bit was removed for volcanic islands.
1029   if (Subtarget->getGeneration() >= AMDGPUSubtarget::VOLCANIC_ISLANDS)
1030     return false;
1031
1032   SelectMUBUF(Addr, Ptr, VAddr, SOffset, Offset, Offen, Idxen, Addr64,
1033               GLC, SLC, TFE);
1034
1035   ConstantSDNode *C = cast<ConstantSDNode>(Addr64);
1036   if (C->getSExtValue()) {
1037     SDLoc DL(Addr);
1038
1039     const SITargetLowering& Lowering =
1040       *static_cast<const SITargetLowering*>(getTargetLowering());
1041
1042     SRsrc = SDValue(Lowering.wrapAddr64Rsrc(*CurDAG, DL, Ptr), 0);
1043     return true;
1044   }
1045
1046   return false;
1047 }
1048
1049 bool AMDGPUDAGToDAGISel::SelectMUBUFAddr64(SDValue Addr, SDValue &SRsrc,
1050                                            SDValue &VAddr, SDValue &SOffset,
1051                                            SDValue &Offset,
1052                                            SDValue &SLC) const {
1053   SLC = CurDAG->getTargetConstant(0, SDLoc(Addr), MVT::i1);
1054   SDValue GLC, TFE;
1055
1056   return SelectMUBUFAddr64(Addr, SRsrc, VAddr, SOffset, Offset, GLC, SLC, TFE);
1057 }
1058
1059 bool AMDGPUDAGToDAGISel::SelectMUBUFScratch(SDValue Addr, SDValue &Rsrc,
1060                                             SDValue &VAddr, SDValue &SOffset,
1061                                             SDValue &ImmOffset) const {
1062
1063   SDLoc DL(Addr);
1064   MachineFunction &MF = CurDAG->getMachineFunction();
1065   const SIRegisterInfo *TRI =
1066       static_cast<const SIRegisterInfo *>(Subtarget->getRegisterInfo());
1067   const SIMachineFunctionInfo *Info = MF.getInfo<SIMachineFunctionInfo>();
1068
1069   unsigned ScratchOffsetReg = TRI->getPreloadedValue(
1070     MF, SIRegisterInfo::PRIVATE_SEGMENT_WAVE_BYTE_OFFSET);
1071   Rsrc = CurDAG->getRegister(Info->getScratchRSrcReg(), MVT::v4i32);
1072   SOffset = CurDAG->getRegister(ScratchOffsetReg, MVT::i32);
1073
1074   // (add n0, c1)
1075   if (CurDAG->isBaseWithConstantOffset(Addr)) {
1076     SDValue N0 = Addr.getOperand(0);
1077     SDValue N1 = Addr.getOperand(1);
1078     // Offsets in vaddr must be positive.
1079     if (CurDAG->SignBitIsZero(N0)) {
1080       ConstantSDNode *C1 = cast<ConstantSDNode>(N1);
1081       if (isLegalMUBUFImmOffset(C1)) {
1082         VAddr = N0;
1083         ImmOffset = CurDAG->getTargetConstant(C1->getZExtValue(), DL, MVT::i16);
1084         return true;
1085       }
1086     }
1087   }
1088
1089   // (node)
1090   VAddr = Addr;
1091   ImmOffset = CurDAG->getTargetConstant(0, DL, MVT::i16);
1092   return true;
1093 }
1094
1095 bool AMDGPUDAGToDAGISel::SelectMUBUFOffset(SDValue Addr, SDValue &SRsrc,
1096                                            SDValue &SOffset, SDValue &Offset,
1097                                            SDValue &GLC, SDValue &SLC,
1098                                            SDValue &TFE) const {
1099   SDValue Ptr, VAddr, Offen, Idxen, Addr64;
1100   const SIInstrInfo *TII =
1101     static_cast<const SIInstrInfo *>(Subtarget->getInstrInfo());
1102
1103   SelectMUBUF(Addr, Ptr, VAddr, SOffset, Offset, Offen, Idxen, Addr64,
1104               GLC, SLC, TFE);
1105
1106   if (!cast<ConstantSDNode>(Offen)->getSExtValue() &&
1107       !cast<ConstantSDNode>(Idxen)->getSExtValue() &&
1108       !cast<ConstantSDNode>(Addr64)->getSExtValue()) {
1109     uint64_t Rsrc = TII->getDefaultRsrcDataFormat() |
1110                     APInt::getAllOnesValue(32).getZExtValue(); // Size
1111     SDLoc DL(Addr);
1112
1113     const SITargetLowering& Lowering =
1114       *static_cast<const SITargetLowering*>(getTargetLowering());
1115
1116     SRsrc = SDValue(Lowering.buildRSRC(*CurDAG, DL, Ptr, 0, Rsrc), 0);
1117     return true;
1118   }
1119   return false;
1120 }
1121
1122 bool AMDGPUDAGToDAGISel::SelectMUBUFOffset(SDValue Addr, SDValue &SRsrc,
1123                                            SDValue &Soffset, SDValue &Offset,
1124                                            SDValue &GLC) const {
1125   SDValue SLC, TFE;
1126
1127   return SelectMUBUFOffset(Addr, SRsrc, Soffset, Offset, GLC, SLC, TFE);
1128 }
1129
1130 ///
1131 /// \param EncodedOffset This is the immediate value that will be encoded
1132 ///        directly into the instruction.  On SI/CI the \p EncodedOffset
1133 ///        will be in units of dwords and on VI+ it will be units of bytes.
1134 static bool isLegalSMRDImmOffset(const AMDGPUSubtarget *ST,
1135                                  int64_t EncodedOffset) {
1136   return ST->getGeneration() < AMDGPUSubtarget::VOLCANIC_ISLANDS ?
1137      isUInt<8>(EncodedOffset) : isUInt<20>(EncodedOffset);
1138 }
1139
1140 bool AMDGPUDAGToDAGISel::SelectSMRDOffset(SDValue ByteOffsetNode,
1141                                           SDValue &Offset, bool &Imm) const {
1142
1143   // FIXME: Handle non-constant offsets.
1144   ConstantSDNode *C = dyn_cast<ConstantSDNode>(ByteOffsetNode);
1145   if (!C)
1146     return false;
1147
1148   SDLoc SL(ByteOffsetNode);
1149   AMDGPUSubtarget::Generation Gen = Subtarget->getGeneration();
1150   int64_t ByteOffset = C->getSExtValue();
1151   int64_t EncodedOffset = Gen < AMDGPUSubtarget::VOLCANIC_ISLANDS ?
1152       ByteOffset >> 2 : ByteOffset;
1153
1154   if (isLegalSMRDImmOffset(Subtarget, EncodedOffset)) {
1155     Offset = CurDAG->getTargetConstant(EncodedOffset, SL, MVT::i32);
1156     Imm = true;
1157     return true;
1158   }
1159
1160   if (!isUInt<32>(EncodedOffset) || !isUInt<32>(ByteOffset))
1161     return false;
1162
1163   if (Gen == AMDGPUSubtarget::SEA_ISLANDS && isUInt<32>(EncodedOffset)) {
1164     // 32-bit Immediates are supported on Sea Islands.
1165     Offset = CurDAG->getTargetConstant(EncodedOffset, SL, MVT::i32);
1166   } else {
1167     SDValue C32Bit = CurDAG->getTargetConstant(ByteOffset, SL, MVT::i32);
1168     Offset = SDValue(CurDAG->getMachineNode(AMDGPU::S_MOV_B32, SL, MVT::i32,
1169                                             C32Bit), 0);
1170   }
1171   Imm = false;
1172   return true;
1173 }
1174
1175 bool AMDGPUDAGToDAGISel::SelectSMRD(SDValue Addr, SDValue &SBase,
1176                                      SDValue &Offset, bool &Imm) const {
1177
1178   SDLoc SL(Addr);
1179   if (CurDAG->isBaseWithConstantOffset(Addr)) {
1180     SDValue N0 = Addr.getOperand(0);
1181     SDValue N1 = Addr.getOperand(1);
1182
1183     if (SelectSMRDOffset(N1, Offset, Imm)) {
1184       SBase = N0;
1185       return true;
1186     }
1187   }
1188   SBase = Addr;
1189   Offset = CurDAG->getTargetConstant(0, SL, MVT::i32);
1190   Imm = true;
1191   return true;
1192 }
1193
1194 bool AMDGPUDAGToDAGISel::SelectSMRDImm(SDValue Addr, SDValue &SBase,
1195                                        SDValue &Offset) const {
1196   bool Imm;
1197   return SelectSMRD(Addr, SBase, Offset, Imm) && Imm;
1198 }
1199
1200 bool AMDGPUDAGToDAGISel::SelectSMRDImm32(SDValue Addr, SDValue &SBase,
1201                                          SDValue &Offset) const {
1202
1203   if (Subtarget->getGeneration() != AMDGPUSubtarget::SEA_ISLANDS)
1204     return false;
1205
1206   bool Imm;
1207   if (!SelectSMRD(Addr, SBase, Offset, Imm))
1208     return false;
1209
1210   return !Imm && isa<ConstantSDNode>(Offset);
1211 }
1212
1213 bool AMDGPUDAGToDAGISel::SelectSMRDSgpr(SDValue Addr, SDValue &SBase,
1214                                         SDValue &Offset) const {
1215   bool Imm;
1216   return SelectSMRD(Addr, SBase, Offset, Imm) && !Imm &&
1217          !isa<ConstantSDNode>(Offset);
1218 }
1219
1220 bool AMDGPUDAGToDAGISel::SelectSMRDBufferImm(SDValue Addr,
1221                                              SDValue &Offset) const {
1222   bool Imm;
1223   return SelectSMRDOffset(Addr, Offset, Imm) && Imm;
1224 }
1225
1226 bool AMDGPUDAGToDAGISel::SelectSMRDBufferImm32(SDValue Addr,
1227                                                SDValue &Offset) const {
1228   if (Subtarget->getGeneration() != AMDGPUSubtarget::SEA_ISLANDS)
1229     return false;
1230
1231   bool Imm;
1232   if (!SelectSMRDOffset(Addr, Offset, Imm))
1233     return false;
1234
1235   return !Imm && isa<ConstantSDNode>(Offset);
1236 }
1237
1238 bool AMDGPUDAGToDAGISel::SelectSMRDBufferSgpr(SDValue Addr,
1239                                               SDValue &Offset) const {
1240   bool Imm;
1241   return SelectSMRDOffset(Addr, Offset, Imm) && !Imm &&
1242          !isa<ConstantSDNode>(Offset);
1243 }
1244
1245 // FIXME: This is incorrect and only enough to be able to compile.
1246 SDNode *AMDGPUDAGToDAGISel::SelectAddrSpaceCast(SDNode *N) {
1247   AddrSpaceCastSDNode *ASC = cast<AddrSpaceCastSDNode>(N);
1248   SDLoc DL(N);
1249
1250   assert(Subtarget->hasFlatAddressSpace() &&
1251          "addrspacecast only supported with flat address space!");
1252
1253   assert((ASC->getSrcAddressSpace() != AMDGPUAS::CONSTANT_ADDRESS &&
1254           ASC->getDestAddressSpace() != AMDGPUAS::CONSTANT_ADDRESS) &&
1255          "Cannot cast address space to / from constant address!");
1256
1257   assert((ASC->getSrcAddressSpace() == AMDGPUAS::FLAT_ADDRESS ||
1258           ASC->getDestAddressSpace() == AMDGPUAS::FLAT_ADDRESS) &&
1259          "Can only cast to / from flat address space!");
1260
1261   // The flat instructions read the address as the index of the VGPR holding the
1262   // address, so casting should just be reinterpreting the base VGPR, so just
1263   // insert trunc / bitcast / zext.
1264
1265   SDValue Src = ASC->getOperand(0);
1266   EVT DestVT = ASC->getValueType(0);
1267   EVT SrcVT = Src.getValueType();
1268
1269   unsigned SrcSize = SrcVT.getSizeInBits();
1270   unsigned DestSize = DestVT.getSizeInBits();
1271
1272   if (SrcSize > DestSize) {
1273     assert(SrcSize == 64 && DestSize == 32);
1274     return CurDAG->getMachineNode(
1275       TargetOpcode::EXTRACT_SUBREG,
1276       DL,
1277       DestVT,
1278       Src,
1279       CurDAG->getTargetConstant(AMDGPU::sub0, DL, MVT::i32));
1280   }
1281
1282   if (DestSize > SrcSize) {
1283     assert(SrcSize == 32 && DestSize == 64);
1284
1285     // FIXME: This is probably wrong, we should never be defining
1286     // a register class with both VGPRs and SGPRs
1287     SDValue RC = CurDAG->getTargetConstant(AMDGPU::VS_64RegClassID, DL,
1288                                            MVT::i32);
1289
1290     const SDValue Ops[] = {
1291       RC,
1292       Src,
1293       CurDAG->getTargetConstant(AMDGPU::sub0, DL, MVT::i32),
1294       SDValue(CurDAG->getMachineNode(AMDGPU::S_MOV_B32, DL, MVT::i32,
1295                                      CurDAG->getConstant(0, DL, MVT::i32)), 0),
1296       CurDAG->getTargetConstant(AMDGPU::sub1, DL, MVT::i32)
1297     };
1298
1299     return CurDAG->getMachineNode(TargetOpcode::REG_SEQUENCE,
1300                                   DL, N->getValueType(0), Ops);
1301   }
1302
1303   assert(SrcSize == 64 && DestSize == 64);
1304   return CurDAG->getNode(ISD::BITCAST, DL, DestVT, Src).getNode();
1305 }
1306
1307 SDNode *AMDGPUDAGToDAGISel::getS_BFE(unsigned Opcode, SDLoc DL, SDValue Val,
1308                                      uint32_t Offset, uint32_t Width) {
1309   // Transformation function, pack the offset and width of a BFE into
1310   // the format expected by the S_BFE_I32 / S_BFE_U32. In the second
1311   // source, bits [5:0] contain the offset and bits [22:16] the width.
1312   uint32_t PackedVal = Offset | (Width << 16);
1313   SDValue PackedConst = CurDAG->getTargetConstant(PackedVal, DL, MVT::i32);
1314
1315   return CurDAG->getMachineNode(Opcode, DL, MVT::i32, Val, PackedConst);
1316 }
1317
1318 SDNode *AMDGPUDAGToDAGISel::SelectS_BFEFromShifts(SDNode *N) {
1319   // "(a << b) srl c)" ---> "BFE_U32 a, (c-b), (32-c)
1320   // "(a << b) sra c)" ---> "BFE_I32 a, (c-b), (32-c)
1321   // Predicate: 0 < b <= c < 32
1322
1323   const SDValue &Shl = N->getOperand(0);
1324   ConstantSDNode *B = dyn_cast<ConstantSDNode>(Shl->getOperand(1));
1325   ConstantSDNode *C = dyn_cast<ConstantSDNode>(N->getOperand(1));
1326
1327   if (B && C) {
1328     uint32_t BVal = B->getZExtValue();
1329     uint32_t CVal = C->getZExtValue();
1330
1331     if (0 < BVal && BVal <= CVal && CVal < 32) {
1332       bool Signed = N->getOpcode() == ISD::SRA;
1333       unsigned Opcode = Signed ? AMDGPU::S_BFE_I32 : AMDGPU::S_BFE_U32;
1334
1335       return getS_BFE(Opcode, SDLoc(N), Shl.getOperand(0),
1336                       CVal - BVal, 32 - CVal);
1337     }
1338   }
1339   return SelectCode(N);
1340 }
1341
1342 SDNode *AMDGPUDAGToDAGISel::SelectS_BFE(SDNode *N) {
1343   switch (N->getOpcode()) {
1344   case ISD::AND:
1345     if (N->getOperand(0).getOpcode() == ISD::SRL) {
1346       // "(a srl b) & mask" ---> "BFE_U32 a, b, popcount(mask)"
1347       // Predicate: isMask(mask)
1348       const SDValue &Srl = N->getOperand(0);
1349       ConstantSDNode *Shift = dyn_cast<ConstantSDNode>(Srl.getOperand(1));
1350       ConstantSDNode *Mask = dyn_cast<ConstantSDNode>(N->getOperand(1));
1351
1352       if (Shift && Mask) {
1353         uint32_t ShiftVal = Shift->getZExtValue();
1354         uint32_t MaskVal = Mask->getZExtValue();
1355
1356         if (isMask_32(MaskVal)) {
1357           uint32_t WidthVal = countPopulation(MaskVal);
1358
1359           return getS_BFE(AMDGPU::S_BFE_U32, SDLoc(N), Srl.getOperand(0),
1360                           ShiftVal, WidthVal);
1361         }
1362       }
1363     }
1364     break;
1365   case ISD::SRL:
1366     if (N->getOperand(0).getOpcode() == ISD::AND) {
1367       // "(a & mask) srl b)" ---> "BFE_U32 a, b, popcount(mask >> b)"
1368       // Predicate: isMask(mask >> b)
1369       const SDValue &And = N->getOperand(0);
1370       ConstantSDNode *Shift = dyn_cast<ConstantSDNode>(N->getOperand(1));
1371       ConstantSDNode *Mask = dyn_cast<ConstantSDNode>(And->getOperand(1));
1372
1373       if (Shift && Mask) {
1374         uint32_t ShiftVal = Shift->getZExtValue();
1375         uint32_t MaskVal = Mask->getZExtValue() >> ShiftVal;
1376
1377         if (isMask_32(MaskVal)) {
1378           uint32_t WidthVal = countPopulation(MaskVal);
1379
1380           return getS_BFE(AMDGPU::S_BFE_U32, SDLoc(N), And.getOperand(0),
1381                           ShiftVal, WidthVal);
1382         }
1383       }
1384     } else if (N->getOperand(0).getOpcode() == ISD::SHL)
1385       return SelectS_BFEFromShifts(N);
1386     break;
1387   case ISD::SRA:
1388     if (N->getOperand(0).getOpcode() == ISD::SHL)
1389       return SelectS_BFEFromShifts(N);
1390     break;
1391   }
1392
1393   return SelectCode(N);
1394 }
1395
1396 bool AMDGPUDAGToDAGISel::SelectVOP3Mods(SDValue In, SDValue &Src,
1397                                         SDValue &SrcMods) const {
1398
1399   unsigned Mods = 0;
1400
1401   Src = In;
1402
1403   if (Src.getOpcode() == ISD::FNEG) {
1404     Mods |= SISrcMods::NEG;
1405     Src = Src.getOperand(0);
1406   }
1407
1408   if (Src.getOpcode() == ISD::FABS) {
1409     Mods |= SISrcMods::ABS;
1410     Src = Src.getOperand(0);
1411   }
1412
1413   SrcMods = CurDAG->getTargetConstant(Mods, SDLoc(In), MVT::i32);
1414
1415   return true;
1416 }
1417
1418 bool AMDGPUDAGToDAGISel::SelectVOP3NoMods(SDValue In, SDValue &Src,
1419                                          SDValue &SrcMods) const {
1420   bool Res = SelectVOP3Mods(In, Src, SrcMods);
1421   return Res && cast<ConstantSDNode>(SrcMods)->isNullValue();
1422 }
1423
1424 bool AMDGPUDAGToDAGISel::SelectVOP3Mods0(SDValue In, SDValue &Src,
1425                                          SDValue &SrcMods, SDValue &Clamp,
1426                                          SDValue &Omod) const {
1427   SDLoc DL(In);
1428   // FIXME: Handle Clamp and Omod
1429   Clamp = CurDAG->getTargetConstant(0, DL, MVT::i32);
1430   Omod = CurDAG->getTargetConstant(0, DL, MVT::i32);
1431
1432   return SelectVOP3Mods(In, Src, SrcMods);
1433 }
1434
1435 bool AMDGPUDAGToDAGISel::SelectVOP3NoMods0(SDValue In, SDValue &Src,
1436                                            SDValue &SrcMods, SDValue &Clamp,
1437                                            SDValue &Omod) const {
1438   bool Res = SelectVOP3Mods0(In, Src, SrcMods, Clamp, Omod);
1439
1440   return Res && cast<ConstantSDNode>(SrcMods)->isNullValue() &&
1441                 cast<ConstantSDNode>(Clamp)->isNullValue() &&
1442                 cast<ConstantSDNode>(Omod)->isNullValue();
1443 }
1444
1445 bool AMDGPUDAGToDAGISel::SelectVOP3Mods0Clamp(SDValue In, SDValue &Src,
1446                                               SDValue &SrcMods,
1447                                               SDValue &Omod) const {
1448   // FIXME: Handle Omod
1449   Omod = CurDAG->getTargetConstant(0, SDLoc(In), MVT::i32);
1450
1451   return SelectVOP3Mods(In, Src, SrcMods);
1452 }
1453
1454 bool AMDGPUDAGToDAGISel::SelectVOP3Mods0Clamp0OMod(SDValue In, SDValue &Src,
1455                                                    SDValue &SrcMods,
1456                                                    SDValue &Clamp,
1457                                                    SDValue &Omod) const {
1458   Clamp = Omod = CurDAG->getTargetConstant(0, SDLoc(In), MVT::i32);
1459   return SelectVOP3Mods(In, Src, SrcMods);
1460 }
1461
1462 void AMDGPUDAGToDAGISel::PreprocessISelDAG() {
1463   bool Modified = false;
1464
1465   // XXX - Other targets seem to be able to do this without a worklist.
1466   SmallVector<LoadSDNode *, 8> LoadsToReplace;
1467   SmallVector<StoreSDNode *, 8> StoresToReplace;
1468
1469   for (SDNode &Node : CurDAG->allnodes()) {
1470     if (LoadSDNode *LD = dyn_cast<LoadSDNode>(&Node)) {
1471       EVT VT = LD->getValueType(0);
1472       if (VT != MVT::i64 || LD->getExtensionType() != ISD::NON_EXTLOAD)
1473         continue;
1474
1475       // To simplify the TableGen patters, we replace all i64 loads with v2i32
1476       // loads.  Alternatively, we could promote i64 loads to v2i32 during DAG
1477       // legalization, however, so places (ExpandUnalignedLoad) in the DAG
1478       // legalizer assume that if i64 is legal, so doing this promotion early
1479       // can cause problems.
1480       LoadsToReplace.push_back(LD);
1481     } else if (StoreSDNode *ST = dyn_cast<StoreSDNode>(&Node)) {
1482       // Handle i64 stores here for the same reason mentioned above for loads.
1483       SDValue Value = ST->getValue();
1484       if (Value.getValueType() != MVT::i64 || ST->isTruncatingStore())
1485         continue;
1486       StoresToReplace.push_back(ST);
1487     }
1488   }
1489
1490   for (LoadSDNode *LD : LoadsToReplace) {
1491     SDLoc SL(LD);
1492
1493     SDValue NewLoad = CurDAG->getLoad(MVT::v2i32, SL, LD->getChain(),
1494                                       LD->getBasePtr(), LD->getMemOperand());
1495     SDValue BitCast = CurDAG->getNode(ISD::BITCAST, SL,
1496                                       MVT::i64, NewLoad);
1497     CurDAG->ReplaceAllUsesOfValueWith(SDValue(LD, 1), NewLoad.getValue(1));
1498     CurDAG->ReplaceAllUsesOfValueWith(SDValue(LD, 0), BitCast);
1499     Modified = true;
1500   }
1501
1502   for (StoreSDNode *ST : StoresToReplace) {
1503     SDValue NewValue = CurDAG->getNode(ISD::BITCAST, SDLoc(ST),
1504                                        MVT::v2i32, ST->getValue());
1505     const SDValue StoreOps[] = {
1506       ST->getChain(),
1507       NewValue,
1508       ST->getBasePtr(),
1509       ST->getOffset()
1510     };
1511
1512     CurDAG->UpdateNodeOperands(ST, StoreOps);
1513     Modified = true;
1514   }
1515
1516   // XXX - Is this necessary?
1517   if (Modified)
1518     CurDAG->RemoveDeadNodes();
1519 }
1520
1521 void AMDGPUDAGToDAGISel::PostprocessISelDAG() {
1522   const AMDGPUTargetLowering& Lowering =
1523     *static_cast<const AMDGPUTargetLowering*>(getTargetLowering());
1524   bool IsModified = false;
1525   do {
1526     IsModified = false;
1527     // Go over all selected nodes and try to fold them a bit more
1528     for (SDNode &Node : CurDAG->allnodes()) {
1529       MachineSDNode *MachineNode = dyn_cast<MachineSDNode>(&Node);
1530       if (!MachineNode)
1531         continue;
1532
1533       SDNode *ResNode = Lowering.PostISelFolding(MachineNode, *CurDAG);
1534       if (ResNode != &Node) {
1535         ReplaceUses(&Node, ResNode);
1536         IsModified = true;
1537       }
1538     }
1539     CurDAG->RemoveDeadNodes();
1540   } while (IsModified);
1541 }