989fc938c08d020f9b3a879311c98d1178ccde69
[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   const TargetRegisterClass *getOperandRegClass(SDNode *N, unsigned OpNo) const;
83   bool SelectGlobalValueConstantOffset(SDValue Addr, SDValue& IntPtr);
84   bool SelectGlobalValueVariableOffset(SDValue Addr, SDValue &BaseReg,
85                                        SDValue& Offset);
86   bool SelectADDRVTX_READ(SDValue Addr, SDValue &Base, SDValue &Offset);
87   bool SelectADDRIndirect(SDValue Addr, SDValue &Base, SDValue &Offset);
88   bool isDSOffsetLegal(const SDValue &Base, unsigned Offset,
89                        unsigned OffsetBits) const;
90   bool SelectDS1Addr1Offset(SDValue Ptr, SDValue &Base, SDValue &Offset) const;
91   bool SelectDS64Bit4ByteAligned(SDValue Ptr, SDValue &Base, SDValue &Offset0,
92                                  SDValue &Offset1) const;
93   void SelectMUBUF(SDValue Addr, SDValue &SRsrc, SDValue &VAddr,
94                    SDValue &SOffset, SDValue &Offset, SDValue &Offen,
95                    SDValue &Idxen, SDValue &Addr64, SDValue &GLC, SDValue &SLC,
96                    SDValue &TFE) const;
97   bool SelectMUBUFAddr64(SDValue Addr, SDValue &SRsrc, SDValue &VAddr,
98                          SDValue &Offset) const;
99   bool SelectMUBUFAddr64(SDValue Addr, SDValue &SRsrc,
100                          SDValue &VAddr, SDValue &Offset,
101                          SDValue &SLC) const;
102   bool SelectMUBUFScratch(SDValue Addr, SDValue &RSrc, SDValue &VAddr,
103                           SDValue &SOffset, SDValue &ImmOffset) const;
104   bool SelectMUBUFOffset(SDValue Addr, SDValue &SRsrc, SDValue &SOffset,
105                          SDValue &Offset, SDValue &GLC, SDValue &SLC,
106                          SDValue &TFE) const;
107   bool SelectMUBUFOffset(SDValue Addr, SDValue &SRsrc, SDValue &Soffset,
108                          SDValue &Offset, SDValue &GLC) 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::CopyToReg: {
491     const SITargetLowering& Lowering =
492       *static_cast<const SITargetLowering*>(getTargetLowering());
493     Lowering.legalizeTargetIndependentNode(N, *CurDAG);
494     break;
495   }
496   case ISD::ADDRSPACECAST:
497     return SelectAddrSpaceCast(N);
498   }
499
500   return SelectCode(N);
501 }
502
503
504 bool AMDGPUDAGToDAGISel::checkType(const Value *Ptr, unsigned AS) {
505   assert(AS != 0 && "Use checkPrivateAddress instead.");
506   if (!Ptr)
507     return false;
508
509   return Ptr->getType()->getPointerAddressSpace() == AS;
510 }
511
512 bool AMDGPUDAGToDAGISel::checkPrivateAddress(const MachineMemOperand *Op) {
513   if (Op->getPseudoValue())
514     return true;
515
516   if (PointerType *PT = dyn_cast<PointerType>(Op->getValue()->getType()))
517     return PT->getAddressSpace() == AMDGPUAS::PRIVATE_ADDRESS;
518
519   return false;
520 }
521
522 bool AMDGPUDAGToDAGISel::isGlobalStore(const StoreSDNode *N) {
523   return checkType(N->getMemOperand()->getValue(), AMDGPUAS::GLOBAL_ADDRESS);
524 }
525
526 bool AMDGPUDAGToDAGISel::isPrivateStore(const StoreSDNode *N) {
527   const Value *MemVal = N->getMemOperand()->getValue();
528   return (!checkType(MemVal, AMDGPUAS::LOCAL_ADDRESS) &&
529           !checkType(MemVal, AMDGPUAS::GLOBAL_ADDRESS) &&
530           !checkType(MemVal, AMDGPUAS::REGION_ADDRESS));
531 }
532
533 bool AMDGPUDAGToDAGISel::isLocalStore(const StoreSDNode *N) {
534   return checkType(N->getMemOperand()->getValue(), AMDGPUAS::LOCAL_ADDRESS);
535 }
536
537 bool AMDGPUDAGToDAGISel::isFlatStore(const StoreSDNode *N) {
538   return checkType(N->getMemOperand()->getValue(), AMDGPUAS::FLAT_ADDRESS);
539 }
540
541 bool AMDGPUDAGToDAGISel::isRegionStore(const StoreSDNode *N) {
542   return checkType(N->getMemOperand()->getValue(), AMDGPUAS::REGION_ADDRESS);
543 }
544
545 bool AMDGPUDAGToDAGISel::isConstantLoad(const LoadSDNode *N, int CbId) const {
546   const Value *MemVal = N->getMemOperand()->getValue();
547   if (CbId == -1)
548     return checkType(MemVal, AMDGPUAS::CONSTANT_ADDRESS);
549
550   return checkType(MemVal, AMDGPUAS::CONSTANT_BUFFER_0 + CbId);
551 }
552
553 bool AMDGPUDAGToDAGISel::isGlobalLoad(const LoadSDNode *N) const {
554   if (N->getAddressSpace() == AMDGPUAS::CONSTANT_ADDRESS) {
555     const AMDGPUSubtarget &ST = TM.getSubtarget<AMDGPUSubtarget>();
556     if (ST.getGeneration() < AMDGPUSubtarget::SOUTHERN_ISLANDS ||
557         N->getMemoryVT().bitsLT(MVT::i32)) {
558       return true;
559     }
560   }
561   return checkType(N->getMemOperand()->getValue(), AMDGPUAS::GLOBAL_ADDRESS);
562 }
563
564 bool AMDGPUDAGToDAGISel::isParamLoad(const LoadSDNode *N) const {
565   return checkType(N->getMemOperand()->getValue(), AMDGPUAS::PARAM_I_ADDRESS);
566 }
567
568 bool AMDGPUDAGToDAGISel::isLocalLoad(const  LoadSDNode *N) const {
569   return checkType(N->getMemOperand()->getValue(), AMDGPUAS::LOCAL_ADDRESS);
570 }
571
572 bool AMDGPUDAGToDAGISel::isFlatLoad(const  LoadSDNode *N) const {
573   return checkType(N->getMemOperand()->getValue(), AMDGPUAS::FLAT_ADDRESS);
574 }
575
576 bool AMDGPUDAGToDAGISel::isRegionLoad(const  LoadSDNode *N) const {
577   return checkType(N->getMemOperand()->getValue(), AMDGPUAS::REGION_ADDRESS);
578 }
579
580 bool AMDGPUDAGToDAGISel::isCPLoad(const LoadSDNode *N) const {
581   MachineMemOperand *MMO = N->getMemOperand();
582   if (checkPrivateAddress(N->getMemOperand())) {
583     if (MMO) {
584       const PseudoSourceValue *PSV = MMO->getPseudoValue();
585       if (PSV && PSV == PseudoSourceValue::getConstantPool()) {
586         return true;
587       }
588     }
589   }
590   return false;
591 }
592
593 bool AMDGPUDAGToDAGISel::isPrivateLoad(const LoadSDNode *N) const {
594   if (checkPrivateAddress(N->getMemOperand())) {
595     // Check to make sure we are not a constant pool load or a constant load
596     // that is marked as a private load
597     if (isCPLoad(N) || isConstantLoad(N, -1)) {
598       return false;
599     }
600   }
601
602   const Value *MemVal = N->getMemOperand()->getValue();
603   if (!checkType(MemVal, AMDGPUAS::LOCAL_ADDRESS) &&
604       !checkType(MemVal, AMDGPUAS::GLOBAL_ADDRESS) &&
605       !checkType(MemVal, AMDGPUAS::FLAT_ADDRESS) &&
606       !checkType(MemVal, AMDGPUAS::REGION_ADDRESS) &&
607       !checkType(MemVal, AMDGPUAS::CONSTANT_ADDRESS) &&
608       !checkType(MemVal, AMDGPUAS::PARAM_D_ADDRESS) &&
609       !checkType(MemVal, AMDGPUAS::PARAM_I_ADDRESS)) {
610     return true;
611   }
612   return false;
613 }
614
615 const char *AMDGPUDAGToDAGISel::getPassName() const {
616   return "AMDGPU DAG->DAG Pattern Instruction Selection";
617 }
618
619 #ifdef DEBUGTMP
620 #undef INT64_C
621 #endif
622 #undef DEBUGTMP
623
624 //===----------------------------------------------------------------------===//
625 // Complex Patterns
626 //===----------------------------------------------------------------------===//
627
628 bool AMDGPUDAGToDAGISel::SelectGlobalValueConstantOffset(SDValue Addr,
629                                                          SDValue& IntPtr) {
630   if (ConstantSDNode *Cst = dyn_cast<ConstantSDNode>(Addr)) {
631     IntPtr = CurDAG->getIntPtrConstant(Cst->getZExtValue() / 4, true);
632     return true;
633   }
634   return false;
635 }
636
637 bool AMDGPUDAGToDAGISel::SelectGlobalValueVariableOffset(SDValue Addr,
638     SDValue& BaseReg, SDValue &Offset) {
639   if (!isa<ConstantSDNode>(Addr)) {
640     BaseReg = Addr;
641     Offset = CurDAG->getIntPtrConstant(0, true);
642     return true;
643   }
644   return false;
645 }
646
647 bool AMDGPUDAGToDAGISel::SelectADDRVTX_READ(SDValue Addr, SDValue &Base,
648                                            SDValue &Offset) {
649   ConstantSDNode *IMMOffset;
650
651   if (Addr.getOpcode() == ISD::ADD
652       && (IMMOffset = dyn_cast<ConstantSDNode>(Addr.getOperand(1)))
653       && isInt<16>(IMMOffset->getZExtValue())) {
654
655       Base = Addr.getOperand(0);
656       Offset = CurDAG->getTargetConstant(IMMOffset->getZExtValue(), MVT::i32);
657       return true;
658   // If the pointer address is constant, we can move it to the offset field.
659   } else if ((IMMOffset = dyn_cast<ConstantSDNode>(Addr))
660              && isInt<16>(IMMOffset->getZExtValue())) {
661     Base = CurDAG->getCopyFromReg(CurDAG->getEntryNode(),
662                                   SDLoc(CurDAG->getEntryNode()),
663                                   AMDGPU::ZERO, MVT::i32);
664     Offset = CurDAG->getTargetConstant(IMMOffset->getZExtValue(), MVT::i32);
665     return true;
666   }
667
668   // Default case, no offset
669   Base = Addr;
670   Offset = CurDAG->getTargetConstant(0, MVT::i32);
671   return true;
672 }
673
674 bool AMDGPUDAGToDAGISel::SelectADDRIndirect(SDValue Addr, SDValue &Base,
675                                             SDValue &Offset) {
676   ConstantSDNode *C;
677
678   if ((C = dyn_cast<ConstantSDNode>(Addr))) {
679     Base = CurDAG->getRegister(AMDGPU::INDIRECT_BASE_ADDR, MVT::i32);
680     Offset = CurDAG->getTargetConstant(C->getZExtValue(), MVT::i32);
681   } else if ((Addr.getOpcode() == ISD::ADD || Addr.getOpcode() == ISD::OR) &&
682             (C = dyn_cast<ConstantSDNode>(Addr.getOperand(1)))) {
683     Base = Addr.getOperand(0);
684     Offset = CurDAG->getTargetConstant(C->getZExtValue(), MVT::i32);
685   } else {
686     Base = Addr;
687     Offset = CurDAG->getTargetConstant(0, MVT::i32);
688   }
689
690   return true;
691 }
692
693 SDNode *AMDGPUDAGToDAGISel::SelectADD_SUB_I64(SDNode *N) {
694   SDLoc DL(N);
695   SDValue LHS = N->getOperand(0);
696   SDValue RHS = N->getOperand(1);
697
698   bool IsAdd = (N->getOpcode() == ISD::ADD);
699
700   SDValue Sub0 = CurDAG->getTargetConstant(AMDGPU::sub0, MVT::i32);
701   SDValue Sub1 = CurDAG->getTargetConstant(AMDGPU::sub1, MVT::i32);
702
703   SDNode *Lo0 = CurDAG->getMachineNode(TargetOpcode::EXTRACT_SUBREG,
704                                        DL, MVT::i32, LHS, Sub0);
705   SDNode *Hi0 = CurDAG->getMachineNode(TargetOpcode::EXTRACT_SUBREG,
706                                        DL, MVT::i32, LHS, Sub1);
707
708   SDNode *Lo1 = CurDAG->getMachineNode(TargetOpcode::EXTRACT_SUBREG,
709                                        DL, MVT::i32, RHS, Sub0);
710   SDNode *Hi1 = CurDAG->getMachineNode(TargetOpcode::EXTRACT_SUBREG,
711                                        DL, MVT::i32, RHS, Sub1);
712
713   SDVTList VTList = CurDAG->getVTList(MVT::i32, MVT::Glue);
714   SDValue AddLoArgs[] = { SDValue(Lo0, 0), SDValue(Lo1, 0) };
715
716
717   unsigned Opc = IsAdd ? AMDGPU::S_ADD_U32 : AMDGPU::S_SUB_U32;
718   unsigned CarryOpc = IsAdd ? AMDGPU::S_ADDC_U32 : AMDGPU::S_SUBB_U32;
719
720   SDNode *AddLo = CurDAG->getMachineNode( Opc, DL, VTList, AddLoArgs);
721   SDValue Carry(AddLo, 1);
722   SDNode *AddHi
723     = CurDAG->getMachineNode(CarryOpc, DL, MVT::i32,
724                              SDValue(Hi0, 0), SDValue(Hi1, 0), Carry);
725
726   SDValue Args[5] = {
727     CurDAG->getTargetConstant(AMDGPU::SReg_64RegClassID, MVT::i32),
728     SDValue(AddLo,0),
729     Sub0,
730     SDValue(AddHi,0),
731     Sub1,
732   };
733   return CurDAG->SelectNodeTo(N, AMDGPU::REG_SEQUENCE, MVT::i64, Args);
734 }
735
736 SDNode *AMDGPUDAGToDAGISel::SelectDIV_SCALE(SDNode *N) {
737   SDLoc SL(N);
738   EVT VT = N->getValueType(0);
739
740   assert(VT == MVT::f32 || VT == MVT::f64);
741
742   unsigned Opc
743     = (VT == MVT::f64) ? AMDGPU::V_DIV_SCALE_F64 : AMDGPU::V_DIV_SCALE_F32;
744
745   const SDValue Zero = CurDAG->getTargetConstant(0, MVT::i32);
746   const SDValue False = CurDAG->getTargetConstant(0, MVT::i1);
747   SDValue Ops[] = {
748     Zero,             // src0_modifiers
749     N->getOperand(0), // src0
750     Zero,             // src1_modifiers
751     N->getOperand(1), // src1
752     Zero,             // src2_modifiers
753     N->getOperand(2), // src2
754     False,            // clamp
755     Zero              // omod
756   };
757
758   return CurDAG->SelectNodeTo(N, Opc, VT, MVT::i1, Ops);
759 }
760
761 bool AMDGPUDAGToDAGISel::isDSOffsetLegal(const SDValue &Base, unsigned Offset,
762                                          unsigned OffsetBits) const {
763   const AMDGPUSubtarget &ST = TM.getSubtarget<AMDGPUSubtarget>();
764   if ((OffsetBits == 16 && !isUInt<16>(Offset)) ||
765       (OffsetBits == 8 && !isUInt<8>(Offset)))
766     return false;
767
768   if (ST.getGeneration() >= AMDGPUSubtarget::SEA_ISLANDS)
769     return true;
770
771   // On Southern Islands instruction with a negative base value and an offset
772   // don't seem to work.
773   return CurDAG->SignBitIsZero(Base);
774 }
775
776 bool AMDGPUDAGToDAGISel::SelectDS1Addr1Offset(SDValue Addr, SDValue &Base,
777                                               SDValue &Offset) const {
778   if (CurDAG->isBaseWithConstantOffset(Addr)) {
779     SDValue N0 = Addr.getOperand(0);
780     SDValue N1 = Addr.getOperand(1);
781     ConstantSDNode *C1 = cast<ConstantSDNode>(N1);
782     if (isDSOffsetLegal(N0, C1->getSExtValue(), 16)) {
783       // (add n0, c0)
784       Base = N0;
785       Offset = N1;
786       return true;
787     }
788   }
789
790   // default case
791   Base = Addr;
792   Offset = CurDAG->getTargetConstant(0, MVT::i16);
793   return true;
794 }
795
796 bool AMDGPUDAGToDAGISel::SelectDS64Bit4ByteAligned(SDValue Addr, SDValue &Base,
797                                                    SDValue &Offset0,
798                                                    SDValue &Offset1) const {
799   if (CurDAG->isBaseWithConstantOffset(Addr)) {
800     SDValue N0 = Addr.getOperand(0);
801     SDValue N1 = Addr.getOperand(1);
802     ConstantSDNode *C1 = cast<ConstantSDNode>(N1);
803     unsigned DWordOffset0 = C1->getZExtValue() / 4;
804     unsigned DWordOffset1 = DWordOffset0 + 1;
805     // (add n0, c0)
806     if (isDSOffsetLegal(N0, DWordOffset1, 8)) {
807       Base = N0;
808       Offset0 = CurDAG->getTargetConstant(DWordOffset0, MVT::i8);
809       Offset1 = CurDAG->getTargetConstant(DWordOffset1, MVT::i8);
810       return true;
811     }
812   }
813
814   // default case
815   Base = Addr;
816   Offset0 = CurDAG->getTargetConstant(0, MVT::i8);
817   Offset1 = CurDAG->getTargetConstant(1, MVT::i8);
818   return true;
819 }
820
821 static SDValue wrapAddr64Rsrc(SelectionDAG *DAG, SDLoc DL, SDValue Ptr) {
822   return SDValue(DAG->getMachineNode(AMDGPU::SI_ADDR64_RSRC, DL, MVT::v4i32,
823                                      Ptr), 0);
824 }
825
826 static bool isLegalMUBUFImmOffset(const ConstantSDNode *Imm) {
827   return isUInt<12>(Imm->getZExtValue());
828 }
829
830 void AMDGPUDAGToDAGISel::SelectMUBUF(SDValue Addr, SDValue &Ptr,
831                                      SDValue &VAddr, SDValue &SOffset,
832                                      SDValue &Offset, SDValue &Offen,
833                                      SDValue &Idxen, SDValue &Addr64,
834                                      SDValue &GLC, SDValue &SLC,
835                                      SDValue &TFE) const {
836   SDLoc DL(Addr);
837
838   GLC = CurDAG->getTargetConstant(0, MVT::i1);
839   SLC = CurDAG->getTargetConstant(0, MVT::i1);
840   TFE = CurDAG->getTargetConstant(0, MVT::i1);
841
842   Idxen = CurDAG->getTargetConstant(0, MVT::i1);
843   Offen = CurDAG->getTargetConstant(0, MVT::i1);
844   Addr64 = CurDAG->getTargetConstant(0, MVT::i1);
845   SOffset = CurDAG->getTargetConstant(0, MVT::i32);
846
847   if (CurDAG->isBaseWithConstantOffset(Addr)) {
848     SDValue N0 = Addr.getOperand(0);
849     SDValue N1 = Addr.getOperand(1);
850     ConstantSDNode *C1 = cast<ConstantSDNode>(N1);
851
852     if (isLegalMUBUFImmOffset(C1)) {
853
854       if (N0.getOpcode() == ISD::ADD) {
855         // (add (add N2, N3), C1) -> addr64
856         SDValue N2 = N0.getOperand(0);
857         SDValue N3 = N0.getOperand(1);
858         Addr64 = CurDAG->getTargetConstant(1, MVT::i1);
859         Ptr = N2;
860         VAddr = N3;
861         Offset = CurDAG->getTargetConstant(C1->getZExtValue(), MVT::i16);
862         return;
863       }
864
865       // (add N0, C1) -> offset
866       VAddr = CurDAG->getTargetConstant(0, MVT::i32);
867       Ptr = N0;
868       Offset = CurDAG->getTargetConstant(C1->getZExtValue(), MVT::i16);
869       return;
870     }
871   }
872   if (Addr.getOpcode() == ISD::ADD) {
873     // (add N0, N1) -> addr64
874     SDValue N0 = Addr.getOperand(0);
875     SDValue N1 = Addr.getOperand(1);
876     Addr64 = CurDAG->getTargetConstant(1, MVT::i1);
877     Ptr = N0;
878     VAddr = N1;
879     Offset = CurDAG->getTargetConstant(0, MVT::i16);
880     return;
881   }
882
883   // default case -> offset
884   VAddr = CurDAG->getTargetConstant(0, MVT::i32);
885   Ptr = Addr;
886   Offset = CurDAG->getTargetConstant(0, MVT::i16);
887
888 }
889
890 bool AMDGPUDAGToDAGISel::SelectMUBUFAddr64(SDValue Addr, SDValue &SRsrc,
891                                            SDValue &VAddr,
892                                            SDValue &Offset) const {
893   SDValue Ptr, SOffset, Offen, Idxen, Addr64, GLC, SLC, TFE;
894
895   SelectMUBUF(Addr, Ptr, VAddr, SOffset, Offset, Offen, Idxen, Addr64,
896               GLC, SLC, TFE);
897
898   ConstantSDNode *C = cast<ConstantSDNode>(Addr64);
899   if (C->getSExtValue()) {
900     SDLoc DL(Addr);
901     SRsrc = wrapAddr64Rsrc(CurDAG, DL, Ptr);
902     return true;
903   }
904   return false;
905 }
906
907 bool AMDGPUDAGToDAGISel::SelectMUBUFAddr64(SDValue Addr, SDValue &SRsrc,
908                                            SDValue &VAddr, SDValue &Offset,
909                                            SDValue &SLC) const {
910   SLC = CurDAG->getTargetConstant(0, MVT::i1);
911
912   return SelectMUBUFAddr64(Addr, SRsrc, VAddr, Offset);
913 }
914
915 static SDValue buildRSRC(SelectionDAG *DAG, SDLoc DL, SDValue Ptr,
916                          uint32_t RsrcDword1, uint64_t RsrcDword2And3) {
917
918   SDValue PtrLo = DAG->getTargetExtractSubreg(AMDGPU::sub0, DL, MVT::i32, Ptr);
919   SDValue PtrHi = DAG->getTargetExtractSubreg(AMDGPU::sub1, DL, MVT::i32, Ptr);
920   if (RsrcDword1)
921     PtrHi = SDValue(DAG->getMachineNode(AMDGPU::S_OR_B32, DL, MVT::i32, PtrHi,
922                                     DAG->getConstant(RsrcDword1, MVT::i32)), 0);
923
924   SDValue DataLo = DAG->getTargetConstant(
925       RsrcDword2And3 & APInt::getAllOnesValue(32).getZExtValue(), MVT::i32);
926   SDValue DataHi = DAG->getTargetConstant(RsrcDword2And3 >> 32, MVT::i32);
927
928   const SDValue Ops[] = { PtrLo, PtrHi, DataLo, DataHi };
929   return SDValue(DAG->getMachineNode(AMDGPU::SI_BUFFER_RSRC, DL,
930                                      MVT::v4i32, Ops), 0);
931 }
932
933 /// \brief Return a resource descriptor with the 'Add TID' bit enabled
934 ///        The TID (Thread ID) is multipled by the stride value (bits [61:48]
935 ///        of the resource descriptor) to create an offset, which is added to the
936 ///        resource ponter.
937 static SDValue buildScratchRSRC(SelectionDAG *DAG, SDLoc DL, SDValue Ptr) {
938
939   uint64_t Rsrc = AMDGPU::RSRC_DATA_FORMAT | AMDGPU::RSRC_TID_ENABLE |
940                   0xffffffff; // Size
941
942   return buildRSRC(DAG, DL, Ptr, 0, Rsrc);
943 }
944
945 bool AMDGPUDAGToDAGISel::SelectMUBUFScratch(SDValue Addr, SDValue &Rsrc,
946                                             SDValue &VAddr, SDValue &SOffset,
947                                             SDValue &ImmOffset) const {
948
949   SDLoc DL(Addr);
950   MachineFunction &MF = CurDAG->getMachineFunction();
951   const SIRegisterInfo *TRI =
952       static_cast<const SIRegisterInfo *>(MF.getSubtarget().getRegisterInfo());
953   MachineRegisterInfo &MRI = MF.getRegInfo();
954   const SITargetLowering& Lowering =
955     *static_cast<const SITargetLowering*>(getTargetLowering());
956
957   unsigned ScratchPtrReg =
958       TRI->getPreloadedValue(MF, SIRegisterInfo::SCRATCH_PTR);
959   unsigned ScratchOffsetReg =
960       TRI->getPreloadedValue(MF, SIRegisterInfo::SCRATCH_WAVE_OFFSET);
961   Lowering.CreateLiveInRegister(*CurDAG, &AMDGPU::SReg_32RegClass,
962                                 ScratchOffsetReg, MVT::i32);
963
964   Rsrc = buildScratchRSRC(CurDAG, DL,
965       CurDAG->getCopyFromReg(CurDAG->getEntryNode(), DL,
966                              MRI.getLiveInVirtReg(ScratchPtrReg), MVT::i64));
967   SOffset = CurDAG->getCopyFromReg(CurDAG->getEntryNode(), DL,
968       MRI.getLiveInVirtReg(ScratchOffsetReg), MVT::i32);
969
970   // (add n0, c1)
971   if (CurDAG->isBaseWithConstantOffset(Addr)) {
972     SDValue N1 = Addr.getOperand(1);
973     ConstantSDNode *C1 = cast<ConstantSDNode>(N1);
974
975     if (isLegalMUBUFImmOffset(C1)) {
976       VAddr = Addr.getOperand(0);
977       ImmOffset = CurDAG->getTargetConstant(C1->getZExtValue(), MVT::i16);
978       return true;
979     }
980   }
981
982   // (add FI, n0)
983   if ((Addr.getOpcode() == ISD::ADD || Addr.getOpcode() == ISD::OR) &&
984        isa<FrameIndexSDNode>(Addr.getOperand(0))) {
985     VAddr = Addr.getOperand(1);
986     ImmOffset = Addr.getOperand(0);
987     return true;
988   }
989
990   // (FI)
991   if (isa<FrameIndexSDNode>(Addr)) {
992     VAddr = SDValue(CurDAG->getMachineNode(AMDGPU::V_MOV_B32_e32, DL, MVT::i32,
993                                           CurDAG->getConstant(0, MVT::i32)), 0);
994     ImmOffset = Addr;
995     return true;
996   }
997
998   // (node)
999   VAddr = Addr;
1000   ImmOffset = CurDAG->getTargetConstant(0, MVT::i16);
1001   return true;
1002 }
1003
1004 bool AMDGPUDAGToDAGISel::SelectMUBUFOffset(SDValue Addr, SDValue &SRsrc,
1005                                            SDValue &SOffset, SDValue &Offset,
1006                                            SDValue &GLC, SDValue &SLC,
1007                                            SDValue &TFE) const {
1008   SDValue Ptr, VAddr, Offen, Idxen, Addr64;
1009
1010   SelectMUBUF(Addr, Ptr, VAddr, SOffset, Offset, Offen, Idxen, Addr64,
1011               GLC, SLC, TFE);
1012
1013   if (!cast<ConstantSDNode>(Offen)->getSExtValue() &&
1014       !cast<ConstantSDNode>(Idxen)->getSExtValue() &&
1015       !cast<ConstantSDNode>(Addr64)->getSExtValue()) {
1016     uint64_t Rsrc = AMDGPU::RSRC_DATA_FORMAT |
1017                     APInt::getAllOnesValue(32).getZExtValue(); // Size
1018     SDLoc DL(Addr);
1019     SRsrc = buildRSRC(CurDAG, DL, Ptr, 0, Rsrc);
1020     return true;
1021   }
1022   return false;
1023 }
1024
1025 bool AMDGPUDAGToDAGISel::SelectMUBUFOffset(SDValue Addr, SDValue &SRsrc,
1026                                            SDValue &Soffset, SDValue &Offset,
1027                                            SDValue &GLC) const {
1028   SDValue SLC, TFE;
1029
1030   return SelectMUBUFOffset(Addr, SRsrc, Soffset, Offset, GLC, SLC, TFE);
1031 }
1032
1033 // FIXME: This is incorrect and only enough to be able to compile.
1034 SDNode *AMDGPUDAGToDAGISel::SelectAddrSpaceCast(SDNode *N) {
1035   AddrSpaceCastSDNode *ASC = cast<AddrSpaceCastSDNode>(N);
1036   SDLoc DL(N);
1037
1038   assert(Subtarget.hasFlatAddressSpace() &&
1039          "addrspacecast only supported with flat address space!");
1040
1041   assert((ASC->getSrcAddressSpace() != AMDGPUAS::CONSTANT_ADDRESS &&
1042           ASC->getDestAddressSpace() != AMDGPUAS::CONSTANT_ADDRESS) &&
1043          "Cannot cast address space to / from constant address!");
1044
1045   assert((ASC->getSrcAddressSpace() == AMDGPUAS::FLAT_ADDRESS ||
1046           ASC->getDestAddressSpace() == AMDGPUAS::FLAT_ADDRESS) &&
1047          "Can only cast to / from flat address space!");
1048
1049   // The flat instructions read the address as the index of the VGPR holding the
1050   // address, so casting should just be reinterpreting the base VGPR, so just
1051   // insert trunc / bitcast / zext.
1052
1053   SDValue Src = ASC->getOperand(0);
1054   EVT DestVT = ASC->getValueType(0);
1055   EVT SrcVT = Src.getValueType();
1056
1057   unsigned SrcSize = SrcVT.getSizeInBits();
1058   unsigned DestSize = DestVT.getSizeInBits();
1059
1060   if (SrcSize > DestSize) {
1061     assert(SrcSize == 64 && DestSize == 32);
1062     return CurDAG->getMachineNode(
1063       TargetOpcode::EXTRACT_SUBREG,
1064       DL,
1065       DestVT,
1066       Src,
1067       CurDAG->getTargetConstant(AMDGPU::sub0, MVT::i32));
1068   }
1069
1070
1071   if (DestSize > SrcSize) {
1072     assert(SrcSize == 32 && DestSize == 64);
1073
1074     SDValue RC = CurDAG->getTargetConstant(AMDGPU::VSrc_64RegClassID, MVT::i32);
1075
1076     const SDValue Ops[] = {
1077       RC,
1078       Src,
1079       CurDAG->getTargetConstant(AMDGPU::sub0, MVT::i32),
1080       SDValue(CurDAG->getMachineNode(AMDGPU::S_MOV_B32, SDLoc(N), MVT::i32,
1081                                      CurDAG->getConstant(0, MVT::i32)), 0),
1082       CurDAG->getTargetConstant(AMDGPU::sub1, MVT::i32)
1083     };
1084
1085     return CurDAG->getMachineNode(TargetOpcode::REG_SEQUENCE,
1086                                   SDLoc(N), N->getValueType(0), Ops);
1087   }
1088
1089   assert(SrcSize == 64 && DestSize == 64);
1090   return CurDAG->getNode(ISD::BITCAST, DL, DestVT, Src).getNode();
1091 }
1092
1093 bool AMDGPUDAGToDAGISel::SelectVOP3Mods(SDValue In, SDValue &Src,
1094                                         SDValue &SrcMods) const {
1095
1096   unsigned Mods = 0;
1097
1098   Src = In;
1099
1100   if (Src.getOpcode() == ISD::FNEG) {
1101     Mods |= SISrcMods::NEG;
1102     Src = Src.getOperand(0);
1103   }
1104
1105   if (Src.getOpcode() == ISD::FABS) {
1106     Mods |= SISrcMods::ABS;
1107     Src = Src.getOperand(0);
1108   }
1109
1110   SrcMods = CurDAG->getTargetConstant(Mods, MVT::i32);
1111
1112   return true;
1113 }
1114
1115 bool AMDGPUDAGToDAGISel::SelectVOP3Mods0(SDValue In, SDValue &Src,
1116                                          SDValue &SrcMods, SDValue &Clamp,
1117                                          SDValue &Omod) const {
1118   // FIXME: Handle Clamp and Omod
1119   Clamp = CurDAG->getTargetConstant(0, MVT::i32);
1120   Omod = CurDAG->getTargetConstant(0, MVT::i32);
1121
1122   return SelectVOP3Mods(In, Src, SrcMods);
1123 }
1124
1125 void AMDGPUDAGToDAGISel::PostprocessISelDAG() {
1126   const AMDGPUTargetLowering& Lowering =
1127     *static_cast<const AMDGPUTargetLowering*>(getTargetLowering());
1128   bool IsModified = false;
1129   do {
1130     IsModified = false;
1131     // Go over all selected nodes and try to fold them a bit more
1132     for (SelectionDAG::allnodes_iterator I = CurDAG->allnodes_begin(),
1133          E = CurDAG->allnodes_end(); I != E; ++I) {
1134
1135       SDNode *Node = I;
1136
1137       MachineSDNode *MachineNode = dyn_cast<MachineSDNode>(I);
1138       if (!MachineNode)
1139         continue;
1140
1141       SDNode *ResNode = Lowering.PostISelFolding(MachineNode, *CurDAG);
1142       if (ResNode != Node) {
1143         ReplaceUses(Node, ResNode);
1144         IsModified = true;
1145       }
1146     }
1147     CurDAG->RemoveDeadNodes();
1148   } while (IsModified);
1149 }