R600/SI: Also try to use 0 base for misaligned 8-byte DS loads.
[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   // If we have a constant address, prefer to put the constant into the
791   // offset. This can save moves to load the constant address since multiple
792   // operations can share the zero base address register, and enables merging
793   // into read2 / write2 instructions.
794   if (const ConstantSDNode *CAddr = dyn_cast<ConstantSDNode>(Addr)) {
795     if (isUInt<16>(CAddr->getZExtValue())) {
796       Base = CurDAG->getConstant(0, MVT::i32);
797       Offset = Addr;
798       return true;
799     }
800   }
801
802   // default case
803   Base = Addr;
804   Offset = CurDAG->getTargetConstant(0, MVT::i16);
805   return true;
806 }
807
808 bool AMDGPUDAGToDAGISel::SelectDS64Bit4ByteAligned(SDValue Addr, SDValue &Base,
809                                                    SDValue &Offset0,
810                                                    SDValue &Offset1) const {
811   if (CurDAG->isBaseWithConstantOffset(Addr)) {
812     SDValue N0 = Addr.getOperand(0);
813     SDValue N1 = Addr.getOperand(1);
814     ConstantSDNode *C1 = cast<ConstantSDNode>(N1);
815     unsigned DWordOffset0 = C1->getZExtValue() / 4;
816     unsigned DWordOffset1 = DWordOffset0 + 1;
817     // (add n0, c0)
818     if (isDSOffsetLegal(N0, DWordOffset1, 8)) {
819       Base = N0;
820       Offset0 = CurDAG->getTargetConstant(DWordOffset0, MVT::i8);
821       Offset1 = CurDAG->getTargetConstant(DWordOffset1, MVT::i8);
822       return true;
823     }
824   }
825
826   if (const ConstantSDNode *CAddr = dyn_cast<ConstantSDNode>(Addr)) {
827     unsigned DWordOffset0 = CAddr->getZExtValue() / 4;
828     unsigned DWordOffset1 = DWordOffset0 + 1;
829     assert(4 * DWordOffset0 == CAddr->getZExtValue());
830
831     if (isUInt<8>(DWordOffset0) && isUInt<8>(DWordOffset1)) {
832       SDValue Zero = CurDAG->getTargetConstant(0, MVT::i32);
833       MachineSDNode *MovZero
834         = CurDAG->getMachineNode(AMDGPU::V_MOV_B32_e32,
835                                  SDLoc(Addr), MVT::i32, Zero);
836       Base = SDValue(MovZero, 0);
837       Offset0 = CurDAG->getTargetConstant(DWordOffset0, MVT::i8);
838       Offset1 = CurDAG->getTargetConstant(DWordOffset1, MVT::i8);
839       return true;
840     }
841   }
842
843   // default case
844   Base = Addr;
845   Offset0 = CurDAG->getTargetConstant(0, MVT::i8);
846   Offset1 = CurDAG->getTargetConstant(1, MVT::i8);
847   return true;
848 }
849
850 static SDValue wrapAddr64Rsrc(SelectionDAG *DAG, SDLoc DL, SDValue Ptr) {
851   return SDValue(DAG->getMachineNode(AMDGPU::SI_ADDR64_RSRC, DL, MVT::v4i32,
852                                      Ptr), 0);
853 }
854
855 static bool isLegalMUBUFImmOffset(const ConstantSDNode *Imm) {
856   return isUInt<12>(Imm->getZExtValue());
857 }
858
859 void AMDGPUDAGToDAGISel::SelectMUBUF(SDValue Addr, SDValue &Ptr,
860                                      SDValue &VAddr, SDValue &SOffset,
861                                      SDValue &Offset, SDValue &Offen,
862                                      SDValue &Idxen, SDValue &Addr64,
863                                      SDValue &GLC, SDValue &SLC,
864                                      SDValue &TFE) const {
865   SDLoc DL(Addr);
866
867   GLC = CurDAG->getTargetConstant(0, MVT::i1);
868   SLC = CurDAG->getTargetConstant(0, MVT::i1);
869   TFE = CurDAG->getTargetConstant(0, MVT::i1);
870
871   Idxen = CurDAG->getTargetConstant(0, MVT::i1);
872   Offen = CurDAG->getTargetConstant(0, MVT::i1);
873   Addr64 = CurDAG->getTargetConstant(0, MVT::i1);
874   SOffset = CurDAG->getTargetConstant(0, MVT::i32);
875
876   if (CurDAG->isBaseWithConstantOffset(Addr)) {
877     SDValue N0 = Addr.getOperand(0);
878     SDValue N1 = Addr.getOperand(1);
879     ConstantSDNode *C1 = cast<ConstantSDNode>(N1);
880
881     if (isLegalMUBUFImmOffset(C1)) {
882
883       if (N0.getOpcode() == ISD::ADD) {
884         // (add (add N2, N3), C1) -> addr64
885         SDValue N2 = N0.getOperand(0);
886         SDValue N3 = N0.getOperand(1);
887         Addr64 = CurDAG->getTargetConstant(1, MVT::i1);
888         Ptr = N2;
889         VAddr = N3;
890         Offset = CurDAG->getTargetConstant(C1->getZExtValue(), MVT::i16);
891         return;
892       }
893
894       // (add N0, C1) -> offset
895       VAddr = CurDAG->getTargetConstant(0, MVT::i32);
896       Ptr = N0;
897       Offset = CurDAG->getTargetConstant(C1->getZExtValue(), MVT::i16);
898       return;
899     }
900   }
901   if (Addr.getOpcode() == ISD::ADD) {
902     // (add N0, N1) -> addr64
903     SDValue N0 = Addr.getOperand(0);
904     SDValue N1 = Addr.getOperand(1);
905     Addr64 = CurDAG->getTargetConstant(1, MVT::i1);
906     Ptr = N0;
907     VAddr = N1;
908     Offset = CurDAG->getTargetConstant(0, MVT::i16);
909     return;
910   }
911
912   // default case -> offset
913   VAddr = CurDAG->getTargetConstant(0, MVT::i32);
914   Ptr = Addr;
915   Offset = CurDAG->getTargetConstant(0, MVT::i16);
916
917 }
918
919 bool AMDGPUDAGToDAGISel::SelectMUBUFAddr64(SDValue Addr, SDValue &SRsrc,
920                                            SDValue &VAddr,
921                                            SDValue &Offset) const {
922   SDValue Ptr, SOffset, Offen, Idxen, Addr64, GLC, SLC, TFE;
923
924   SelectMUBUF(Addr, Ptr, VAddr, SOffset, Offset, Offen, Idxen, Addr64,
925               GLC, SLC, TFE);
926
927   ConstantSDNode *C = cast<ConstantSDNode>(Addr64);
928   if (C->getSExtValue()) {
929     SDLoc DL(Addr);
930     SRsrc = wrapAddr64Rsrc(CurDAG, DL, Ptr);
931     return true;
932   }
933   return false;
934 }
935
936 bool AMDGPUDAGToDAGISel::SelectMUBUFAddr64(SDValue Addr, SDValue &SRsrc,
937                                            SDValue &VAddr, SDValue &Offset,
938                                            SDValue &SLC) const {
939   SLC = CurDAG->getTargetConstant(0, MVT::i1);
940
941   return SelectMUBUFAddr64(Addr, SRsrc, VAddr, Offset);
942 }
943
944 static SDValue buildRSRC(SelectionDAG *DAG, SDLoc DL, SDValue Ptr,
945                          uint32_t RsrcDword1, uint64_t RsrcDword2And3) {
946
947   SDValue PtrLo = DAG->getTargetExtractSubreg(AMDGPU::sub0, DL, MVT::i32, Ptr);
948   SDValue PtrHi = DAG->getTargetExtractSubreg(AMDGPU::sub1, DL, MVT::i32, Ptr);
949   if (RsrcDword1)
950     PtrHi = SDValue(DAG->getMachineNode(AMDGPU::S_OR_B32, DL, MVT::i32, PtrHi,
951                                     DAG->getConstant(RsrcDword1, MVT::i32)), 0);
952
953   SDValue DataLo = DAG->getTargetConstant(
954       RsrcDword2And3 & APInt::getAllOnesValue(32).getZExtValue(), MVT::i32);
955   SDValue DataHi = DAG->getTargetConstant(RsrcDword2And3 >> 32, MVT::i32);
956
957   const SDValue Ops[] = { PtrLo, PtrHi, DataLo, DataHi };
958   return SDValue(DAG->getMachineNode(AMDGPU::SI_BUFFER_RSRC, DL,
959                                      MVT::v4i32, Ops), 0);
960 }
961
962 /// \brief Return a resource descriptor with the 'Add TID' bit enabled
963 ///        The TID (Thread ID) is multipled by the stride value (bits [61:48]
964 ///        of the resource descriptor) to create an offset, which is added to the
965 ///        resource ponter.
966 static SDValue buildScratchRSRC(SelectionDAG *DAG, SDLoc DL, SDValue Ptr) {
967
968   uint64_t Rsrc = AMDGPU::RSRC_DATA_FORMAT | AMDGPU::RSRC_TID_ENABLE |
969                   0xffffffff; // Size
970
971   return buildRSRC(DAG, DL, Ptr, 0, Rsrc);
972 }
973
974 bool AMDGPUDAGToDAGISel::SelectMUBUFScratch(SDValue Addr, SDValue &Rsrc,
975                                             SDValue &VAddr, SDValue &SOffset,
976                                             SDValue &ImmOffset) const {
977
978   SDLoc DL(Addr);
979   MachineFunction &MF = CurDAG->getMachineFunction();
980   const SIRegisterInfo *TRI =
981       static_cast<const SIRegisterInfo *>(MF.getSubtarget().getRegisterInfo());
982   MachineRegisterInfo &MRI = MF.getRegInfo();
983   const SITargetLowering& Lowering =
984     *static_cast<const SITargetLowering*>(getTargetLowering());
985
986   unsigned ScratchPtrReg =
987       TRI->getPreloadedValue(MF, SIRegisterInfo::SCRATCH_PTR);
988   unsigned ScratchOffsetReg =
989       TRI->getPreloadedValue(MF, SIRegisterInfo::SCRATCH_WAVE_OFFSET);
990   Lowering.CreateLiveInRegister(*CurDAG, &AMDGPU::SReg_32RegClass,
991                                 ScratchOffsetReg, MVT::i32);
992
993   Rsrc = buildScratchRSRC(CurDAG, DL,
994       CurDAG->getCopyFromReg(CurDAG->getEntryNode(), DL,
995                              MRI.getLiveInVirtReg(ScratchPtrReg), MVT::i64));
996   SOffset = CurDAG->getCopyFromReg(CurDAG->getEntryNode(), DL,
997       MRI.getLiveInVirtReg(ScratchOffsetReg), MVT::i32);
998
999   // (add n0, c1)
1000   if (CurDAG->isBaseWithConstantOffset(Addr)) {
1001     SDValue N1 = Addr.getOperand(1);
1002     ConstantSDNode *C1 = cast<ConstantSDNode>(N1);
1003
1004     if (isLegalMUBUFImmOffset(C1)) {
1005       VAddr = Addr.getOperand(0);
1006       ImmOffset = CurDAG->getTargetConstant(C1->getZExtValue(), MVT::i16);
1007       return true;
1008     }
1009   }
1010
1011   // (add FI, n0)
1012   if ((Addr.getOpcode() == ISD::ADD || Addr.getOpcode() == ISD::OR) &&
1013        isa<FrameIndexSDNode>(Addr.getOperand(0))) {
1014     VAddr = Addr.getOperand(1);
1015     ImmOffset = Addr.getOperand(0);
1016     return true;
1017   }
1018
1019   // (FI)
1020   if (isa<FrameIndexSDNode>(Addr)) {
1021     VAddr = SDValue(CurDAG->getMachineNode(AMDGPU::V_MOV_B32_e32, DL, MVT::i32,
1022                                           CurDAG->getConstant(0, MVT::i32)), 0);
1023     ImmOffset = Addr;
1024     return true;
1025   }
1026
1027   // (node)
1028   VAddr = Addr;
1029   ImmOffset = CurDAG->getTargetConstant(0, MVT::i16);
1030   return true;
1031 }
1032
1033 bool AMDGPUDAGToDAGISel::SelectMUBUFOffset(SDValue Addr, SDValue &SRsrc,
1034                                            SDValue &SOffset, SDValue &Offset,
1035                                            SDValue &GLC, SDValue &SLC,
1036                                            SDValue &TFE) const {
1037   SDValue Ptr, VAddr, Offen, Idxen, Addr64;
1038
1039   SelectMUBUF(Addr, Ptr, VAddr, SOffset, Offset, Offen, Idxen, Addr64,
1040               GLC, SLC, TFE);
1041
1042   if (!cast<ConstantSDNode>(Offen)->getSExtValue() &&
1043       !cast<ConstantSDNode>(Idxen)->getSExtValue() &&
1044       !cast<ConstantSDNode>(Addr64)->getSExtValue()) {
1045     uint64_t Rsrc = AMDGPU::RSRC_DATA_FORMAT |
1046                     APInt::getAllOnesValue(32).getZExtValue(); // Size
1047     SDLoc DL(Addr);
1048     SRsrc = buildRSRC(CurDAG, DL, Ptr, 0, Rsrc);
1049     return true;
1050   }
1051   return false;
1052 }
1053
1054 bool AMDGPUDAGToDAGISel::SelectMUBUFOffset(SDValue Addr, SDValue &SRsrc,
1055                                            SDValue &Soffset, SDValue &Offset,
1056                                            SDValue &GLC) const {
1057   SDValue SLC, TFE;
1058
1059   return SelectMUBUFOffset(Addr, SRsrc, Soffset, Offset, GLC, SLC, TFE);
1060 }
1061
1062 // FIXME: This is incorrect and only enough to be able to compile.
1063 SDNode *AMDGPUDAGToDAGISel::SelectAddrSpaceCast(SDNode *N) {
1064   AddrSpaceCastSDNode *ASC = cast<AddrSpaceCastSDNode>(N);
1065   SDLoc DL(N);
1066
1067   assert(Subtarget.hasFlatAddressSpace() &&
1068          "addrspacecast only supported with flat address space!");
1069
1070   assert((ASC->getSrcAddressSpace() != AMDGPUAS::CONSTANT_ADDRESS &&
1071           ASC->getDestAddressSpace() != AMDGPUAS::CONSTANT_ADDRESS) &&
1072          "Cannot cast address space to / from constant address!");
1073
1074   assert((ASC->getSrcAddressSpace() == AMDGPUAS::FLAT_ADDRESS ||
1075           ASC->getDestAddressSpace() == AMDGPUAS::FLAT_ADDRESS) &&
1076          "Can only cast to / from flat address space!");
1077
1078   // The flat instructions read the address as the index of the VGPR holding the
1079   // address, so casting should just be reinterpreting the base VGPR, so just
1080   // insert trunc / bitcast / zext.
1081
1082   SDValue Src = ASC->getOperand(0);
1083   EVT DestVT = ASC->getValueType(0);
1084   EVT SrcVT = Src.getValueType();
1085
1086   unsigned SrcSize = SrcVT.getSizeInBits();
1087   unsigned DestSize = DestVT.getSizeInBits();
1088
1089   if (SrcSize > DestSize) {
1090     assert(SrcSize == 64 && DestSize == 32);
1091     return CurDAG->getMachineNode(
1092       TargetOpcode::EXTRACT_SUBREG,
1093       DL,
1094       DestVT,
1095       Src,
1096       CurDAG->getTargetConstant(AMDGPU::sub0, MVT::i32));
1097   }
1098
1099
1100   if (DestSize > SrcSize) {
1101     assert(SrcSize == 32 && DestSize == 64);
1102
1103     SDValue RC = CurDAG->getTargetConstant(AMDGPU::VSrc_64RegClassID, MVT::i32);
1104
1105     const SDValue Ops[] = {
1106       RC,
1107       Src,
1108       CurDAG->getTargetConstant(AMDGPU::sub0, MVT::i32),
1109       SDValue(CurDAG->getMachineNode(AMDGPU::S_MOV_B32, SDLoc(N), MVT::i32,
1110                                      CurDAG->getConstant(0, MVT::i32)), 0),
1111       CurDAG->getTargetConstant(AMDGPU::sub1, MVT::i32)
1112     };
1113
1114     return CurDAG->getMachineNode(TargetOpcode::REG_SEQUENCE,
1115                                   SDLoc(N), N->getValueType(0), Ops);
1116   }
1117
1118   assert(SrcSize == 64 && DestSize == 64);
1119   return CurDAG->getNode(ISD::BITCAST, DL, DestVT, Src).getNode();
1120 }
1121
1122 bool AMDGPUDAGToDAGISel::SelectVOP3Mods(SDValue In, SDValue &Src,
1123                                         SDValue &SrcMods) const {
1124
1125   unsigned Mods = 0;
1126
1127   Src = In;
1128
1129   if (Src.getOpcode() == ISD::FNEG) {
1130     Mods |= SISrcMods::NEG;
1131     Src = Src.getOperand(0);
1132   }
1133
1134   if (Src.getOpcode() == ISD::FABS) {
1135     Mods |= SISrcMods::ABS;
1136     Src = Src.getOperand(0);
1137   }
1138
1139   SrcMods = CurDAG->getTargetConstant(Mods, MVT::i32);
1140
1141   return true;
1142 }
1143
1144 bool AMDGPUDAGToDAGISel::SelectVOP3Mods0(SDValue In, SDValue &Src,
1145                                          SDValue &SrcMods, SDValue &Clamp,
1146                                          SDValue &Omod) const {
1147   // FIXME: Handle Clamp and Omod
1148   Clamp = CurDAG->getTargetConstant(0, MVT::i32);
1149   Omod = CurDAG->getTargetConstant(0, MVT::i32);
1150
1151   return SelectVOP3Mods(In, Src, SrcMods);
1152 }
1153
1154 void AMDGPUDAGToDAGISel::PostprocessISelDAG() {
1155   const AMDGPUTargetLowering& Lowering =
1156     *static_cast<const AMDGPUTargetLowering*>(getTargetLowering());
1157   bool IsModified = false;
1158   do {
1159     IsModified = false;
1160     // Go over all selected nodes and try to fold them a bit more
1161     for (SelectionDAG::allnodes_iterator I = CurDAG->allnodes_begin(),
1162          E = CurDAG->allnodes_end(); I != E; ++I) {
1163
1164       SDNode *Node = I;
1165
1166       MachineSDNode *MachineNode = dyn_cast<MachineSDNode>(I);
1167       if (!MachineNode)
1168         continue;
1169
1170       SDNode *ResNode = Lowering.PostISelFolding(MachineNode, *CurDAG);
1171       if (ResNode != Node) {
1172         ReplaceUses(Node, ResNode);
1173         IsModified = true;
1174       }
1175     }
1176     CurDAG->RemoveDeadNodes();
1177   } while (IsModified);
1178 }