R600/SI: Implement i64 ctpop
[oota-llvm.git] / lib / Target / R600 / SIISelLowering.cpp
1 //===-- SIISelLowering.cpp - SI DAG Lowering Implementation ---------------===//
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 Custom DAG lowering for SI
12 //
13 //===----------------------------------------------------------------------===//
14
15 #include "SIISelLowering.h"
16 #include "AMDGPU.h"
17 #include "AMDGPUSubtarget.h"
18 #include "AMDILIntrinsicInfo.h"
19 #include "SIInstrInfo.h"
20 #include "SIMachineFunctionInfo.h"
21 #include "SIRegisterInfo.h"
22 #include "llvm/CodeGen/CallingConvLower.h"
23 #include "llvm/CodeGen/MachineInstrBuilder.h"
24 #include "llvm/CodeGen/MachineRegisterInfo.h"
25 #include "llvm/CodeGen/SelectionDAG.h"
26 #include "llvm/IR/Function.h"
27
28 using namespace llvm;
29
30 SITargetLowering::SITargetLowering(TargetMachine &TM) :
31     AMDGPUTargetLowering(TM) {
32   addRegisterClass(MVT::i1, &AMDGPU::VReg_1RegClass);
33   addRegisterClass(MVT::i64, &AMDGPU::SReg_64RegClass);
34
35   addRegisterClass(MVT::v32i8, &AMDGPU::SReg_256RegClass);
36   addRegisterClass(MVT::v64i8, &AMDGPU::SReg_512RegClass);
37
38   addRegisterClass(MVT::i32, &AMDGPU::SReg_32RegClass);
39   addRegisterClass(MVT::f32, &AMDGPU::VReg_32RegClass);
40
41   addRegisterClass(MVT::f64, &AMDGPU::VReg_64RegClass);
42   addRegisterClass(MVT::v2i32, &AMDGPU::SReg_64RegClass);
43   addRegisterClass(MVT::v2f32, &AMDGPU::VReg_64RegClass);
44
45   addRegisterClass(MVT::v4i32, &AMDGPU::SReg_128RegClass);
46   addRegisterClass(MVT::v4f32, &AMDGPU::VReg_128RegClass);
47
48   addRegisterClass(MVT::v8i32, &AMDGPU::VReg_256RegClass);
49   addRegisterClass(MVT::v8f32, &AMDGPU::VReg_256RegClass);
50
51   addRegisterClass(MVT::v16i32, &AMDGPU::VReg_512RegClass);
52   addRegisterClass(MVT::v16f32, &AMDGPU::VReg_512RegClass);
53
54   computeRegisterProperties();
55
56   // Condition Codes
57   setCondCodeAction(ISD::SETONE, MVT::f32, Expand);
58   setCondCodeAction(ISD::SETUEQ, MVT::f32, Expand);
59   setCondCodeAction(ISD::SETUGE, MVT::f32, Expand);
60   setCondCodeAction(ISD::SETUGT, MVT::f32, Expand);
61   setCondCodeAction(ISD::SETULE, MVT::f32, Expand);
62   setCondCodeAction(ISD::SETULT, MVT::f32, Expand);
63
64   setCondCodeAction(ISD::SETONE, MVT::f64, Expand);
65   setCondCodeAction(ISD::SETUEQ, MVT::f64, Expand);
66   setCondCodeAction(ISD::SETUGE, MVT::f64, Expand);
67   setCondCodeAction(ISD::SETUGT, MVT::f64, Expand);
68   setCondCodeAction(ISD::SETULE, MVT::f64, Expand);
69   setCondCodeAction(ISD::SETULT, MVT::f64, Expand);
70
71   setOperationAction(ISD::VECTOR_SHUFFLE, MVT::v8i32, Expand);
72   setOperationAction(ISD::VECTOR_SHUFFLE, MVT::v8f32, Expand);
73   setOperationAction(ISD::VECTOR_SHUFFLE, MVT::v16i32, Expand);
74   setOperationAction(ISD::VECTOR_SHUFFLE, MVT::v16f32, Expand);
75
76   setOperationAction(ISD::ADD, MVT::i32, Legal);
77   setOperationAction(ISD::ADDC, MVT::i32, Legal);
78   setOperationAction(ISD::ADDE, MVT::i32, Legal);
79
80   // We need to custom lower vector stores from local memory
81   setOperationAction(ISD::LOAD, MVT::v2i32, Custom);
82   setOperationAction(ISD::LOAD, MVT::v4i32, Custom);
83   setOperationAction(ISD::LOAD, MVT::v8i32, Custom);
84   setOperationAction(ISD::LOAD, MVT::v16i32, Custom);
85
86   setOperationAction(ISD::STORE, MVT::v8i32, Custom);
87   setOperationAction(ISD::STORE, MVT::v16i32, Custom);
88
89   // We need to custom lower loads/stores from private memory
90   setOperationAction(ISD::LOAD, MVT::i32, Custom);
91   setOperationAction(ISD::LOAD, MVT::i64, Custom);
92   setOperationAction(ISD::LOAD, MVT::v2i32, Custom);
93   setOperationAction(ISD::LOAD, MVT::v4i32, Custom);
94   setOperationAction(ISD::LOAD, MVT::v8i32, Custom);
95
96   setOperationAction(ISD::STORE, MVT::i1, Custom);
97   setOperationAction(ISD::STORE, MVT::i32, Custom);
98   setOperationAction(ISD::STORE, MVT::i64, Custom);
99   setOperationAction(ISD::STORE, MVT::v2i32, Custom);
100   setOperationAction(ISD::STORE, MVT::v4i32, Custom);
101
102   setOperationAction(ISD::SELECT, MVT::f32, Promote);
103   AddPromotedToType(ISD::SELECT, MVT::f32, MVT::i32);
104   setOperationAction(ISD::SELECT, MVT::i64, Custom);
105   setOperationAction(ISD::SELECT, MVT::f64, Promote);
106   AddPromotedToType(ISD::SELECT, MVT::f64, MVT::i64);
107
108   setOperationAction(ISD::SELECT_CC, MVT::f32, Expand);
109   setOperationAction(ISD::SELECT_CC, MVT::i32, Expand);
110   setOperationAction(ISD::SELECT_CC, MVT::i64, Expand);
111   setOperationAction(ISD::SELECT_CC, MVT::f64, Expand);
112
113   setOperationAction(ISD::SETCC, MVT::v2i1, Expand);
114   setOperationAction(ISD::SETCC, MVT::v4i1, Expand);
115
116   setOperationAction(ISD::SIGN_EXTEND_INREG, MVT::i1, Legal);
117   setOperationAction(ISD::SIGN_EXTEND_INREG, MVT::v2i1, Custom);
118   setOperationAction(ISD::SIGN_EXTEND_INREG, MVT::v4i1, Custom);
119
120   setOperationAction(ISD::SIGN_EXTEND_INREG, MVT::i8, Legal);
121   setOperationAction(ISD::SIGN_EXTEND_INREG, MVT::v2i8, Custom);
122   setOperationAction(ISD::SIGN_EXTEND_INREG, MVT::v4i8, Custom);
123
124   setOperationAction(ISD::SIGN_EXTEND_INREG, MVT::i16, Legal);
125   setOperationAction(ISD::SIGN_EXTEND_INREG, MVT::v2i16, Custom);
126   setOperationAction(ISD::SIGN_EXTEND_INREG, MVT::v4i16, Custom);
127
128   setOperationAction(ISD::SIGN_EXTEND_INREG, MVT::i32, Custom);
129
130   setOperationAction(ISD::SIGN_EXTEND_INREG, MVT::Other, Custom);
131
132   setOperationAction(ISD::INTRINSIC_WO_CHAIN, MVT::Other, Custom);
133   setOperationAction(ISD::INTRINSIC_WO_CHAIN, MVT::f32, Custom);
134   setOperationAction(ISD::INTRINSIC_WO_CHAIN, MVT::v16i8, Custom);
135   setOperationAction(ISD::INTRINSIC_WO_CHAIN, MVT::v4f32, Custom);
136
137   setOperationAction(ISD::INTRINSIC_VOID, MVT::Other, Custom);
138
139   setLoadExtAction(ISD::SEXTLOAD, MVT::i1, Promote);
140   setLoadExtAction(ISD::SEXTLOAD, MVT::i8, Custom);
141   setLoadExtAction(ISD::SEXTLOAD, MVT::i16, Custom);
142   setLoadExtAction(ISD::SEXTLOAD, MVT::i32, Expand);
143   setLoadExtAction(ISD::SEXTLOAD, MVT::v8i16, Expand);
144   setLoadExtAction(ISD::SEXTLOAD, MVT::v16i16, Expand);
145
146   setLoadExtAction(ISD::ZEXTLOAD, MVT::i1, Promote);
147   setLoadExtAction(ISD::ZEXTLOAD, MVT::i8, Custom);
148   setLoadExtAction(ISD::ZEXTLOAD, MVT::i16, Custom);
149   setLoadExtAction(ISD::ZEXTLOAD, MVT::i32, Expand);
150
151   setLoadExtAction(ISD::EXTLOAD, MVT::i1, Promote);
152   setLoadExtAction(ISD::EXTLOAD, MVT::i8, Custom);
153   setLoadExtAction(ISD::EXTLOAD, MVT::i16, Custom);
154   setLoadExtAction(ISD::EXTLOAD, MVT::i32, Expand);
155   setLoadExtAction(ISD::EXTLOAD, MVT::f32, Expand);
156
157   setTruncStoreAction(MVT::i32, MVT::i8, Custom);
158   setTruncStoreAction(MVT::i32, MVT::i16, Custom);
159   setTruncStoreAction(MVT::f64, MVT::f32, Expand);
160   setTruncStoreAction(MVT::i64, MVT::i32, Expand);
161   setTruncStoreAction(MVT::v8i32, MVT::v8i16, Expand);
162   setTruncStoreAction(MVT::v16i32, MVT::v16i16, Expand);
163
164   setOperationAction(ISD::LOAD, MVT::i1, Custom);
165
166   setOperationAction(ISD::GlobalAddress, MVT::i32, Custom);
167   setOperationAction(ISD::GlobalAddress, MVT::i64, Custom);
168   setOperationAction(ISD::FrameIndex, MVT::i32, Custom);
169
170   // These should use UDIVREM, so set them to expand
171   setOperationAction(ISD::UDIV, MVT::i64, Expand);
172   setOperationAction(ISD::UREM, MVT::i64, Expand);
173
174   // We only support LOAD/STORE and vector manipulation ops for vectors
175   // with > 4 elements.
176   MVT VecTypes[] = {
177     MVT::v8i32, MVT::v8f32, MVT::v16i32, MVT::v16f32
178   };
179
180   for (MVT VT : VecTypes) {
181     for (unsigned Op = 0; Op < ISD::BUILTIN_OP_END; ++Op) {
182       switch(Op) {
183       case ISD::LOAD:
184       case ISD::STORE:
185       case ISD::BUILD_VECTOR:
186       case ISD::BITCAST:
187       case ISD::EXTRACT_VECTOR_ELT:
188       case ISD::INSERT_VECTOR_ELT:
189       case ISD::CONCAT_VECTORS:
190       case ISD::INSERT_SUBVECTOR:
191       case ISD::EXTRACT_SUBVECTOR:
192         break;
193       default:
194         setOperationAction(Op, VT, Expand);
195         break;
196       }
197     }
198   }
199
200   for (int I = MVT::v1f64; I <= MVT::v8f64; ++I) {
201     MVT::SimpleValueType VT = static_cast<MVT::SimpleValueType>(I);
202     setOperationAction(ISD::FTRUNC, VT, Expand);
203     setOperationAction(ISD::FCEIL, VT, Expand);
204     setOperationAction(ISD::FFLOOR, VT, Expand);
205   }
206
207   if (Subtarget->getGeneration() >= AMDGPUSubtarget::SEA_ISLANDS) {
208     setOperationAction(ISD::FTRUNC, MVT::f64, Legal);
209     setOperationAction(ISD::FCEIL, MVT::f64, Legal);
210     setOperationAction(ISD::FFLOOR, MVT::f64, Legal);
211     setOperationAction(ISD::FRINT, MVT::f64, Legal);
212   }
213
214   setOperationAction(ISD::CTPOP, MVT::i32, Legal);
215   setOperationAction(ISD::CTPOP, MVT::i64, Legal);
216
217   setTargetDAGCombine(ISD::SELECT_CC);
218   setTargetDAGCombine(ISD::SETCC);
219
220   setSchedulingPreference(Sched::RegPressure);
221 }
222
223 //===----------------------------------------------------------------------===//
224 // TargetLowering queries
225 //===----------------------------------------------------------------------===//
226
227 bool SITargetLowering::allowsUnalignedMemoryAccesses(EVT  VT,
228                                                      unsigned AddrSpace,
229                                                      bool *IsFast) const {
230   if (IsFast)
231     *IsFast = false;
232
233   // XXX: This depends on the address space and also we may want to revist
234   // the alignment values we specify in the DataLayout.
235
236   // TODO: I think v3i32 should allow unaligned accesses on CI with DS_READ_B96,
237   // which isn't a simple VT.
238   if (!VT.isSimple() || VT == MVT::Other)
239     return false;
240
241   // XXX - CI changes say "Support for unaligned memory accesses" but I don't
242   // see what for specifically. The wording everywhere else seems to be the
243   // same.
244
245   // 3.6.4 - Operations using pairs of VGPRs (for example: double-floats) have
246   // no alignment restrictions.
247   if (AddrSpace == AMDGPUAS::PRIVATE_ADDRESS) {
248     // Using any pair of GPRs should be the same as any other pair.
249     if (IsFast)
250       *IsFast = true;
251     return VT.bitsGE(MVT::i64);
252   }
253
254   // XXX - The only mention I see of this in the ISA manual is for LDS direct
255   // reads the "byte address and must be dword aligned". Is it also true for the
256   // normal loads and stores?
257   if (AddrSpace == AMDGPUAS::LOCAL_ADDRESS)
258     return false;
259
260   // 8.1.6 - For Dword or larger reads or writes, the two LSBs of the
261   // byte-address are ignored, thus forcing Dword alignment.
262   if (IsFast)
263     *IsFast = true;
264   return VT.bitsGT(MVT::i32);
265 }
266
267 bool SITargetLowering::shouldSplitVectorType(EVT VT) const {
268   return VT.getScalarType().bitsLE(MVT::i16);
269 }
270
271 bool SITargetLowering::shouldConvertConstantLoadToIntImm(const APInt &Imm,
272                                                          Type *Ty) const {
273   const SIInstrInfo *TII =
274     static_cast<const SIInstrInfo*>(getTargetMachine().getInstrInfo());
275   return TII->isInlineConstant(Imm);
276 }
277
278 SDValue SITargetLowering::LowerParameter(SelectionDAG &DAG, EVT VT, EVT MemVT,
279                                          SDLoc DL, SDValue Chain,
280                                          unsigned Offset, bool Signed) const {
281   MachineRegisterInfo &MRI = DAG.getMachineFunction().getRegInfo();
282   PointerType *PtrTy = PointerType::get(VT.getTypeForEVT(*DAG.getContext()),
283                                             AMDGPUAS::CONSTANT_ADDRESS);
284   SDValue BasePtr =  DAG.getCopyFromReg(Chain, DL,
285                            MRI.getLiveInVirtReg(AMDGPU::SGPR0_SGPR1), MVT::i64);
286   SDValue Ptr = DAG.getNode(ISD::ADD, DL, MVT::i64, BasePtr,
287                                              DAG.getConstant(Offset, MVT::i64));
288   return DAG.getExtLoad(Signed ? ISD::SEXTLOAD : ISD::ZEXTLOAD, DL, VT, Chain, Ptr,
289                             MachinePointerInfo(UndefValue::get(PtrTy)), MemVT,
290                             false, false, MemVT.getSizeInBits() >> 3);
291
292 }
293
294 SDValue SITargetLowering::LowerFormalArguments(
295                                       SDValue Chain,
296                                       CallingConv::ID CallConv,
297                                       bool isVarArg,
298                                       const SmallVectorImpl<ISD::InputArg> &Ins,
299                                       SDLoc DL, SelectionDAG &DAG,
300                                       SmallVectorImpl<SDValue> &InVals) const {
301
302   const TargetRegisterInfo *TRI = getTargetMachine().getRegisterInfo();
303
304   MachineFunction &MF = DAG.getMachineFunction();
305   FunctionType *FType = MF.getFunction()->getFunctionType();
306   SIMachineFunctionInfo *Info = MF.getInfo<SIMachineFunctionInfo>();
307
308   assert(CallConv == CallingConv::C);
309
310   SmallVector<ISD::InputArg, 16> Splits;
311   uint32_t Skipped = 0;
312
313   for (unsigned i = 0, e = Ins.size(), PSInputNum = 0; i != e; ++i) {
314     const ISD::InputArg &Arg = Ins[i];
315
316     // First check if it's a PS input addr
317     if (Info->ShaderType == ShaderType::PIXEL && !Arg.Flags.isInReg() &&
318         !Arg.Flags.isByVal()) {
319
320       assert((PSInputNum <= 15) && "Too many PS inputs!");
321
322       if (!Arg.Used) {
323         // We can savely skip PS inputs
324         Skipped |= 1 << i;
325         ++PSInputNum;
326         continue;
327       }
328
329       Info->PSInputAddr |= 1 << PSInputNum++;
330     }
331
332     // Second split vertices into their elements
333     if (Info->ShaderType != ShaderType::COMPUTE && Arg.VT.isVector()) {
334       ISD::InputArg NewArg = Arg;
335       NewArg.Flags.setSplit();
336       NewArg.VT = Arg.VT.getVectorElementType();
337
338       // We REALLY want the ORIGINAL number of vertex elements here, e.g. a
339       // three or five element vertex only needs three or five registers,
340       // NOT four or eigth.
341       Type *ParamType = FType->getParamType(Arg.OrigArgIndex);
342       unsigned NumElements = ParamType->getVectorNumElements();
343
344       for (unsigned j = 0; j != NumElements; ++j) {
345         Splits.push_back(NewArg);
346         NewArg.PartOffset += NewArg.VT.getStoreSize();
347       }
348
349     } else if (Info->ShaderType != ShaderType::COMPUTE) {
350       Splits.push_back(Arg);
351     }
352   }
353
354   SmallVector<CCValAssign, 16> ArgLocs;
355   CCState CCInfo(CallConv, isVarArg, DAG.getMachineFunction(),
356                  getTargetMachine(), ArgLocs, *DAG.getContext());
357
358   // At least one interpolation mode must be enabled or else the GPU will hang.
359   if (Info->ShaderType == ShaderType::PIXEL && (Info->PSInputAddr & 0x7F) == 0) {
360     Info->PSInputAddr |= 1;
361     CCInfo.AllocateReg(AMDGPU::VGPR0);
362     CCInfo.AllocateReg(AMDGPU::VGPR1);
363   }
364
365   // The pointer to the list of arguments is stored in SGPR0, SGPR1
366   if (Info->ShaderType == ShaderType::COMPUTE) {
367     CCInfo.AllocateReg(AMDGPU::SGPR0);
368     CCInfo.AllocateReg(AMDGPU::SGPR1);
369     MF.addLiveIn(AMDGPU::SGPR0_SGPR1, &AMDGPU::SReg_64RegClass);
370   }
371
372   if (Info->ShaderType == ShaderType::COMPUTE) {
373     getOriginalFunctionArgs(DAG, DAG.getMachineFunction().getFunction(), Ins,
374                             Splits);
375   }
376
377   AnalyzeFormalArguments(CCInfo, Splits);
378
379   for (unsigned i = 0, e = Ins.size(), ArgIdx = 0; i != e; ++i) {
380
381     const ISD::InputArg &Arg = Ins[i];
382     if (Skipped & (1 << i)) {
383       InVals.push_back(DAG.getUNDEF(Arg.VT));
384       continue;
385     }
386
387     CCValAssign &VA = ArgLocs[ArgIdx++];
388     EVT VT = VA.getLocVT();
389
390     if (VA.isMemLoc()) {
391       VT = Ins[i].VT;
392       EVT MemVT = Splits[i].VT;
393       // The first 36 bytes of the input buffer contains information about
394       // thread group and global sizes.
395       SDValue Arg = LowerParameter(DAG, VT, MemVT,  DL, DAG.getRoot(),
396                                    36 + VA.getLocMemOffset(),
397                                    Ins[i].Flags.isSExt());
398       InVals.push_back(Arg);
399       continue;
400     }
401     assert(VA.isRegLoc() && "Parameter must be in a register!");
402
403     unsigned Reg = VA.getLocReg();
404
405     if (VT == MVT::i64) {
406       // For now assume it is a pointer
407       Reg = TRI->getMatchingSuperReg(Reg, AMDGPU::sub0,
408                                      &AMDGPU::SReg_64RegClass);
409       Reg = MF.addLiveIn(Reg, &AMDGPU::SReg_64RegClass);
410       InVals.push_back(DAG.getCopyFromReg(Chain, DL, Reg, VT));
411       continue;
412     }
413
414     const TargetRegisterClass *RC = TRI->getMinimalPhysRegClass(Reg, VT);
415
416     Reg = MF.addLiveIn(Reg, RC);
417     SDValue Val = DAG.getCopyFromReg(Chain, DL, Reg, VT);
418
419     if (Arg.VT.isVector()) {
420
421       // Build a vector from the registers
422       Type *ParamType = FType->getParamType(Arg.OrigArgIndex);
423       unsigned NumElements = ParamType->getVectorNumElements();
424
425       SmallVector<SDValue, 4> Regs;
426       Regs.push_back(Val);
427       for (unsigned j = 1; j != NumElements; ++j) {
428         Reg = ArgLocs[ArgIdx++].getLocReg();
429         Reg = MF.addLiveIn(Reg, RC);
430         Regs.push_back(DAG.getCopyFromReg(Chain, DL, Reg, VT));
431       }
432
433       // Fill up the missing vector elements
434       NumElements = Arg.VT.getVectorNumElements() - NumElements;
435       for (unsigned j = 0; j != NumElements; ++j)
436         Regs.push_back(DAG.getUNDEF(VT));
437
438       InVals.push_back(DAG.getNode(ISD::BUILD_VECTOR, DL, Arg.VT, Regs));
439       continue;
440     }
441
442     InVals.push_back(Val);
443   }
444   return Chain;
445 }
446
447 MachineBasicBlock * SITargetLowering::EmitInstrWithCustomInserter(
448     MachineInstr * MI, MachineBasicBlock * BB) const {
449
450   MachineBasicBlock::iterator I = *MI;
451   const SIInstrInfo *TII =
452     static_cast<const SIInstrInfo*>(getTargetMachine().getInstrInfo());
453   MachineRegisterInfo &MRI = BB->getParent()->getRegInfo();
454
455   switch (MI->getOpcode()) {
456   default:
457     return AMDGPUTargetLowering::EmitInstrWithCustomInserter(MI, BB);
458   case AMDGPU::BRANCH: return BB;
459   case AMDGPU::SI_ADDR64_RSRC: {
460     unsigned SuperReg = MI->getOperand(0).getReg();
461     unsigned SubRegLo = MRI.createVirtualRegister(&AMDGPU::SGPR_64RegClass);
462     unsigned SubRegHi = MRI.createVirtualRegister(&AMDGPU::SGPR_64RegClass);
463     unsigned SubRegHiHi = MRI.createVirtualRegister(&AMDGPU::SGPR_32RegClass);
464     unsigned SubRegHiLo = MRI.createVirtualRegister(&AMDGPU::SGPR_32RegClass);
465     BuildMI(*BB, I, MI->getDebugLoc(), TII->get(AMDGPU::S_MOV_B64), SubRegLo)
466             .addOperand(MI->getOperand(1));
467     BuildMI(*BB, I, MI->getDebugLoc(), TII->get(AMDGPU::S_MOV_B32), SubRegHiLo)
468             .addImm(0);
469     BuildMI(*BB, I, MI->getDebugLoc(), TII->get(AMDGPU::S_MOV_B32), SubRegHiHi)
470             .addImm(AMDGPU::RSRC_DATA_FORMAT >> 32);
471     BuildMI(*BB, I, MI->getDebugLoc(), TII->get(AMDGPU::REG_SEQUENCE), SubRegHi)
472             .addReg(SubRegHiLo)
473             .addImm(AMDGPU::sub0)
474             .addReg(SubRegHiHi)
475             .addImm(AMDGPU::sub1);
476     BuildMI(*BB, I, MI->getDebugLoc(), TII->get(AMDGPU::REG_SEQUENCE), SuperReg)
477             .addReg(SubRegLo)
478             .addImm(AMDGPU::sub0_sub1)
479             .addReg(SubRegHi)
480             .addImm(AMDGPU::sub2_sub3);
481     MI->eraseFromParent();
482     break;
483   }
484   case AMDGPU::V_SUB_F64:
485     BuildMI(*BB, I, MI->getDebugLoc(), TII->get(AMDGPU::V_ADD_F64),
486             MI->getOperand(0).getReg())
487             .addReg(MI->getOperand(1).getReg())
488             .addReg(MI->getOperand(2).getReg())
489             .addImm(0)  /* src2 */
490             .addImm(0)  /* ABS */
491             .addImm(0)  /* CLAMP */
492             .addImm(0)  /* OMOD */
493             .addImm(2); /* NEG */
494     MI->eraseFromParent();
495     break;
496
497   case AMDGPU::SI_RegisterStorePseudo: {
498     MachineRegisterInfo &MRI = BB->getParent()->getRegInfo();
499     unsigned Reg = MRI.createVirtualRegister(&AMDGPU::SReg_64RegClass);
500     MachineInstrBuilder MIB =
501         BuildMI(*BB, I, MI->getDebugLoc(), TII->get(AMDGPU::SI_RegisterStore),
502                 Reg);
503     for (unsigned i = 0, e = MI->getNumOperands(); i != e; ++i)
504       MIB.addOperand(MI->getOperand(i));
505
506     MI->eraseFromParent();
507     break;
508   }
509   case AMDGPU::FABS_SI: {
510     MachineRegisterInfo &MRI = BB->getParent()->getRegInfo();
511     const SIInstrInfo *TII =
512       static_cast<const SIInstrInfo*>(getTargetMachine().getInstrInfo());
513     unsigned Reg = MRI.createVirtualRegister(&AMDGPU::VReg_32RegClass);
514     BuildMI(*BB, I, MI->getDebugLoc(), TII->get(AMDGPU::V_MOV_B32_e32),
515             Reg)
516             .addImm(0x7fffffff);
517     BuildMI(*BB, I, MI->getDebugLoc(), TII->get(AMDGPU::V_AND_B32_e32),
518             MI->getOperand(0).getReg())
519             .addReg(MI->getOperand(1).getReg())
520             .addReg(Reg);
521     MI->eraseFromParent();
522     break;
523   }
524   case AMDGPU::FNEG_SI: {
525     MachineRegisterInfo &MRI = BB->getParent()->getRegInfo();
526     const SIInstrInfo *TII =
527       static_cast<const SIInstrInfo*>(getTargetMachine().getInstrInfo());
528     unsigned Reg = MRI.createVirtualRegister(&AMDGPU::VReg_32RegClass);
529     BuildMI(*BB, I, MI->getDebugLoc(), TII->get(AMDGPU::V_MOV_B32_e32),
530             Reg)
531             .addImm(0x80000000);
532     BuildMI(*BB, I, MI->getDebugLoc(), TII->get(AMDGPU::V_XOR_B32_e32),
533             MI->getOperand(0).getReg())
534             .addReg(MI->getOperand(1).getReg())
535             .addReg(Reg);
536     MI->eraseFromParent();
537     break;
538   }
539   case AMDGPU::FCLAMP_SI: {
540     const SIInstrInfo *TII =
541       static_cast<const SIInstrInfo*>(getTargetMachine().getInstrInfo());
542     BuildMI(*BB, I, MI->getDebugLoc(), TII->get(AMDGPU::V_ADD_F32_e64),
543             MI->getOperand(0).getReg())
544             .addImm(0) // SRC0 modifiers
545             .addOperand(MI->getOperand(1))
546             .addImm(0) // SRC1 modifiers
547             .addImm(0) // SRC1
548             .addImm(1) // CLAMP
549             .addImm(0); // OMOD
550     MI->eraseFromParent();
551   }
552   }
553   return BB;
554 }
555
556 EVT SITargetLowering::getSetCCResultType(LLVMContext &, EVT VT) const {
557   if (!VT.isVector()) {
558     return MVT::i1;
559   }
560   return MVT::getVectorVT(MVT::i1, VT.getVectorNumElements());
561 }
562
563 MVT SITargetLowering::getScalarShiftAmountTy(EVT VT) const {
564   return MVT::i32;
565 }
566
567 bool SITargetLowering::isFMAFasterThanFMulAndFAdd(EVT VT) const {
568   VT = VT.getScalarType();
569
570   if (!VT.isSimple())
571     return false;
572
573   switch (VT.getSimpleVT().SimpleTy) {
574   case MVT::f32:
575     return false; /* There is V_MAD_F32 for f32 */
576   case MVT::f64:
577     return true;
578   default:
579     break;
580   }
581
582   return false;
583 }
584
585 //===----------------------------------------------------------------------===//
586 // Custom DAG Lowering Operations
587 //===----------------------------------------------------------------------===//
588
589 SDValue SITargetLowering::LowerOperation(SDValue Op, SelectionDAG &DAG) const {
590   MachineFunction &MF = DAG.getMachineFunction();
591   SIMachineFunctionInfo *MFI = MF.getInfo<SIMachineFunctionInfo>();
592   switch (Op.getOpcode()) {
593   default: return AMDGPUTargetLowering::LowerOperation(Op, DAG);
594   case ISD::BRCOND: return LowerBRCOND(Op, DAG);
595   case ISD::LOAD: {
596     LoadSDNode *Load = dyn_cast<LoadSDNode>(Op);
597     if (Op.getValueType().isVector() &&
598         (Load->getAddressSpace() == AMDGPUAS::LOCAL_ADDRESS ||
599          Load->getAddressSpace() == AMDGPUAS::PRIVATE_ADDRESS ||
600          (Load->getAddressSpace() == AMDGPUAS::GLOBAL_ADDRESS &&
601           Op.getValueType().getVectorNumElements() > 4))) {
602       SDValue MergedValues[2] = {
603         SplitVectorLoad(Op, DAG),
604         Load->getChain()
605       };
606       return DAG.getMergeValues(MergedValues, SDLoc(Op));
607     } else {
608       return LowerLOAD(Op, DAG);
609     }
610   }
611
612   case ISD::SELECT: return LowerSELECT(Op, DAG);
613   case ISD::STORE: return LowerSTORE(Op, DAG);
614   case ISD::GlobalAddress: return LowerGlobalAddress(MFI, Op, DAG);
615   case ISD::INTRINSIC_WO_CHAIN: {
616     unsigned IntrinsicID =
617                          cast<ConstantSDNode>(Op.getOperand(0))->getZExtValue();
618     EVT VT = Op.getValueType();
619     SDLoc DL(Op);
620     //XXX: Hardcoded we only use two to store the pointer to the parameters.
621     unsigned NumUserSGPRs = 2;
622     switch (IntrinsicID) {
623     default: return AMDGPUTargetLowering::LowerOperation(Op, DAG);
624     case Intrinsic::r600_read_ngroups_x:
625       return LowerParameter(DAG, VT, VT, DL, DAG.getEntryNode(), 0, false);
626     case Intrinsic::r600_read_ngroups_y:
627       return LowerParameter(DAG, VT, VT, DL, DAG.getEntryNode(), 4, false);
628     case Intrinsic::r600_read_ngroups_z:
629       return LowerParameter(DAG, VT, VT, DL, DAG.getEntryNode(), 8, false);
630     case Intrinsic::r600_read_global_size_x:
631       return LowerParameter(DAG, VT, VT, DL, DAG.getEntryNode(), 12, false);
632     case Intrinsic::r600_read_global_size_y:
633       return LowerParameter(DAG, VT, VT, DL, DAG.getEntryNode(), 16, false);
634     case Intrinsic::r600_read_global_size_z:
635       return LowerParameter(DAG, VT, VT, DL, DAG.getEntryNode(), 20, false);
636     case Intrinsic::r600_read_local_size_x:
637       return LowerParameter(DAG, VT, VT, DL, DAG.getEntryNode(), 24, false);
638     case Intrinsic::r600_read_local_size_y:
639       return LowerParameter(DAG, VT, VT, DL, DAG.getEntryNode(), 28, false);
640     case Intrinsic::r600_read_local_size_z:
641       return LowerParameter(DAG, VT, VT, DL, DAG.getEntryNode(), 32, false);
642     case Intrinsic::r600_read_tgid_x:
643       return CreateLiveInRegister(DAG, &AMDGPU::SReg_32RegClass,
644                      AMDGPU::SReg_32RegClass.getRegister(NumUserSGPRs + 0), VT);
645     case Intrinsic::r600_read_tgid_y:
646       return CreateLiveInRegister(DAG, &AMDGPU::SReg_32RegClass,
647                      AMDGPU::SReg_32RegClass.getRegister(NumUserSGPRs + 1), VT);
648     case Intrinsic::r600_read_tgid_z:
649       return CreateLiveInRegister(DAG, &AMDGPU::SReg_32RegClass,
650                      AMDGPU::SReg_32RegClass.getRegister(NumUserSGPRs + 2), VT);
651     case Intrinsic::r600_read_tidig_x:
652       return CreateLiveInRegister(DAG, &AMDGPU::VReg_32RegClass,
653                                   AMDGPU::VGPR0, VT);
654     case Intrinsic::r600_read_tidig_y:
655       return CreateLiveInRegister(DAG, &AMDGPU::VReg_32RegClass,
656                                   AMDGPU::VGPR1, VT);
657     case Intrinsic::r600_read_tidig_z:
658       return CreateLiveInRegister(DAG, &AMDGPU::VReg_32RegClass,
659                                   AMDGPU::VGPR2, VT);
660     case AMDGPUIntrinsic::SI_load_const: {
661       SDValue Ops [] = {
662         Op.getOperand(1),
663         Op.getOperand(2)
664       };
665
666       MachineMemOperand *MMO = MF.getMachineMemOperand(
667           MachinePointerInfo(),
668           MachineMemOperand::MOLoad | MachineMemOperand::MOInvariant,
669           VT.getSizeInBits() / 8, 4);
670       return DAG.getMemIntrinsicNode(AMDGPUISD::LOAD_CONSTANT, DL,
671                                      Op->getVTList(), Ops, VT, MMO);
672     }
673     case AMDGPUIntrinsic::SI_sample:
674       return LowerSampleIntrinsic(AMDGPUISD::SAMPLE, Op, DAG);
675     case AMDGPUIntrinsic::SI_sampleb:
676       return LowerSampleIntrinsic(AMDGPUISD::SAMPLEB, Op, DAG);
677     case AMDGPUIntrinsic::SI_sampled:
678       return LowerSampleIntrinsic(AMDGPUISD::SAMPLED, Op, DAG);
679     case AMDGPUIntrinsic::SI_samplel:
680       return LowerSampleIntrinsic(AMDGPUISD::SAMPLEL, Op, DAG);
681     case AMDGPUIntrinsic::SI_vs_load_input:
682       return DAG.getNode(AMDGPUISD::LOAD_INPUT, DL, VT,
683                          Op.getOperand(1),
684                          Op.getOperand(2),
685                          Op.getOperand(3));
686     }
687   }
688
689   case ISD::INTRINSIC_VOID:
690     SDValue Chain = Op.getOperand(0);
691     unsigned IntrinsicID = cast<ConstantSDNode>(Op.getOperand(1))->getZExtValue();
692
693     switch (IntrinsicID) {
694       case AMDGPUIntrinsic::SI_tbuffer_store: {
695         SDLoc DL(Op);
696         SDValue Ops [] = {
697           Chain,
698           Op.getOperand(2),
699           Op.getOperand(3),
700           Op.getOperand(4),
701           Op.getOperand(5),
702           Op.getOperand(6),
703           Op.getOperand(7),
704           Op.getOperand(8),
705           Op.getOperand(9),
706           Op.getOperand(10),
707           Op.getOperand(11),
708           Op.getOperand(12),
709           Op.getOperand(13),
710           Op.getOperand(14)
711         };
712         EVT VT = Op.getOperand(3).getValueType();
713
714         MachineMemOperand *MMO = MF.getMachineMemOperand(
715             MachinePointerInfo(),
716             MachineMemOperand::MOStore,
717             VT.getSizeInBits() / 8, 4);
718         return DAG.getMemIntrinsicNode(AMDGPUISD::TBUFFER_STORE_FORMAT, DL,
719                                        Op->getVTList(), Ops, VT, MMO);
720       }
721       default:
722         break;
723     }
724   }
725   return SDValue();
726 }
727
728 /// \brief Helper function for LowerBRCOND
729 static SDNode *findUser(SDValue Value, unsigned Opcode) {
730
731   SDNode *Parent = Value.getNode();
732   for (SDNode::use_iterator I = Parent->use_begin(), E = Parent->use_end();
733        I != E; ++I) {
734
735     if (I.getUse().get() != Value)
736       continue;
737
738     if (I->getOpcode() == Opcode)
739       return *I;
740   }
741   return nullptr;
742 }
743
744 /// This transforms the control flow intrinsics to get the branch destination as
745 /// last parameter, also switches branch target with BR if the need arise
746 SDValue SITargetLowering::LowerBRCOND(SDValue BRCOND,
747                                       SelectionDAG &DAG) const {
748
749   SDLoc DL(BRCOND);
750
751   SDNode *Intr = BRCOND.getOperand(1).getNode();
752   SDValue Target = BRCOND.getOperand(2);
753   SDNode *BR = nullptr;
754
755   if (Intr->getOpcode() == ISD::SETCC) {
756     // As long as we negate the condition everything is fine
757     SDNode *SetCC = Intr;
758     assert(SetCC->getConstantOperandVal(1) == 1);
759     assert(cast<CondCodeSDNode>(SetCC->getOperand(2).getNode())->get() ==
760            ISD::SETNE);
761     Intr = SetCC->getOperand(0).getNode();
762
763   } else {
764     // Get the target from BR if we don't negate the condition
765     BR = findUser(BRCOND, ISD::BR);
766     Target = BR->getOperand(1);
767   }
768
769   assert(Intr->getOpcode() == ISD::INTRINSIC_W_CHAIN);
770
771   // Build the result and
772   SmallVector<EVT, 4> Res;
773   for (unsigned i = 1, e = Intr->getNumValues(); i != e; ++i)
774     Res.push_back(Intr->getValueType(i));
775
776   // operands of the new intrinsic call
777   SmallVector<SDValue, 4> Ops;
778   Ops.push_back(BRCOND.getOperand(0));
779   for (unsigned i = 1, e = Intr->getNumOperands(); i != e; ++i)
780     Ops.push_back(Intr->getOperand(i));
781   Ops.push_back(Target);
782
783   // build the new intrinsic call
784   SDNode *Result = DAG.getNode(
785     Res.size() > 1 ? ISD::INTRINSIC_W_CHAIN : ISD::INTRINSIC_VOID, DL,
786     DAG.getVTList(Res), Ops).getNode();
787
788   if (BR) {
789     // Give the branch instruction our target
790     SDValue Ops[] = {
791       BR->getOperand(0),
792       BRCOND.getOperand(2)
793     };
794     DAG.MorphNodeTo(BR, ISD::BR, BR->getVTList(), Ops);
795   }
796
797   SDValue Chain = SDValue(Result, Result->getNumValues() - 1);
798
799   // Copy the intrinsic results to registers
800   for (unsigned i = 1, e = Intr->getNumValues() - 1; i != e; ++i) {
801     SDNode *CopyToReg = findUser(SDValue(Intr, i), ISD::CopyToReg);
802     if (!CopyToReg)
803       continue;
804
805     Chain = DAG.getCopyToReg(
806       Chain, DL,
807       CopyToReg->getOperand(1),
808       SDValue(Result, i - 1),
809       SDValue());
810
811     DAG.ReplaceAllUsesWith(SDValue(CopyToReg, 0), CopyToReg->getOperand(0));
812   }
813
814   // Remove the old intrinsic from the chain
815   DAG.ReplaceAllUsesOfValueWith(
816     SDValue(Intr, Intr->getNumValues() - 1),
817     Intr->getOperand(0));
818
819   return Chain;
820 }
821
822 SDValue SITargetLowering::LowerLOAD(SDValue Op, SelectionDAG &DAG) const {
823   SDLoc DL(Op);
824   LoadSDNode *Load = cast<LoadSDNode>(Op);
825   SDValue Ret = AMDGPUTargetLowering::LowerLOAD(Op, DAG);
826   SDValue MergedValues[2];
827   MergedValues[1] = Load->getChain();
828   if (Ret.getNode()) {
829     MergedValues[0] = Ret;
830     return DAG.getMergeValues(MergedValues, DL);
831   }
832
833   if (Load->getAddressSpace() != AMDGPUAS::PRIVATE_ADDRESS) {
834     return SDValue();
835   }
836
837   EVT MemVT = Load->getMemoryVT();
838
839   assert(!MemVT.isVector() && "Private loads should be scalarized");
840   assert(!MemVT.isFloatingPoint() && "FP loads should be promoted to int");
841
842   SDValue Ptr = DAG.getNode(ISD::SRL, DL, MVT::i32, Load->getBasePtr(),
843                             DAG.getConstant(2, MVT::i32));
844   Ret = DAG.getNode(AMDGPUISD::REGISTER_LOAD, DL, MVT::i32,
845                     Load->getChain(), Ptr,
846                     DAG.getTargetConstant(0, MVT::i32),
847                     Op.getOperand(2));
848   if (MemVT.getSizeInBits() == 64) {
849     SDValue IncPtr = DAG.getNode(ISD::ADD, DL, MVT::i32, Ptr,
850                                  DAG.getConstant(1, MVT::i32));
851
852     SDValue LoadUpper = DAG.getNode(AMDGPUISD::REGISTER_LOAD, DL, MVT::i32,
853                                     Load->getChain(), IncPtr,
854                                     DAG.getTargetConstant(0, MVT::i32),
855                                     Op.getOperand(2));
856
857     Ret = DAG.getNode(ISD::BUILD_PAIR, DL, MVT::i64, Ret, LoadUpper);
858   }
859
860   MergedValues[0] = Ret;
861   return DAG.getMergeValues(MergedValues, DL);
862
863 }
864
865 SDValue SITargetLowering::LowerSampleIntrinsic(unsigned Opcode,
866                                                const SDValue &Op,
867                                                SelectionDAG &DAG) const {
868   return DAG.getNode(Opcode, SDLoc(Op), Op.getValueType(), Op.getOperand(1),
869                      Op.getOperand(2),
870                      Op.getOperand(3),
871                      Op.getOperand(4));
872 }
873
874 SDValue SITargetLowering::LowerSELECT(SDValue Op, SelectionDAG &DAG) const {
875   if (Op.getValueType() != MVT::i64)
876     return SDValue();
877
878   SDLoc DL(Op);
879   SDValue Cond = Op.getOperand(0);
880
881   SDValue Zero = DAG.getConstant(0, MVT::i32);
882   SDValue One = DAG.getConstant(1, MVT::i32);
883
884   SDValue LHS = DAG.getNode(ISD::BITCAST, DL, MVT::v2i32, Op.getOperand(1));
885   SDValue RHS = DAG.getNode(ISD::BITCAST, DL, MVT::v2i32, Op.getOperand(2));
886
887   SDValue Lo0 = DAG.getNode(ISD::EXTRACT_VECTOR_ELT, DL, MVT::i32, LHS, Zero);
888   SDValue Lo1 = DAG.getNode(ISD::EXTRACT_VECTOR_ELT, DL, MVT::i32, RHS, Zero);
889
890   SDValue Lo = DAG.getSelect(DL, MVT::i32, Cond, Lo0, Lo1);
891
892   SDValue Hi0 = DAG.getNode(ISD::EXTRACT_VECTOR_ELT, DL, MVT::i32, LHS, One);
893   SDValue Hi1 = DAG.getNode(ISD::EXTRACT_VECTOR_ELT, DL, MVT::i32, RHS, One);
894
895   SDValue Hi = DAG.getSelect(DL, MVT::i32, Cond, Hi0, Hi1);
896
897   SDValue Res = DAG.getNode(ISD::BUILD_VECTOR, DL, MVT::v2i32, Lo, Hi);
898   return DAG.getNode(ISD::BITCAST, DL, MVT::i64, Res);
899 }
900
901 SDValue SITargetLowering::LowerSTORE(SDValue Op, SelectionDAG &DAG) const {
902   SDLoc DL(Op);
903   StoreSDNode *Store = cast<StoreSDNode>(Op);
904   EVT VT = Store->getMemoryVT();
905
906   SDValue Ret = AMDGPUTargetLowering::LowerSTORE(Op, DAG);
907   if (Ret.getNode())
908     return Ret;
909
910   if (VT.isVector() && VT.getVectorNumElements() >= 8)
911       return SplitVectorStore(Op, DAG);
912
913   if (VT == MVT::i1)
914     return DAG.getTruncStore(Store->getChain(), DL,
915                         DAG.getSExtOrTrunc(Store->getValue(), DL, MVT::i32),
916                         Store->getBasePtr(), MVT::i1, Store->getMemOperand());
917
918   if (Store->getAddressSpace() != AMDGPUAS::PRIVATE_ADDRESS)
919     return SDValue();
920
921   SDValue Ptr = DAG.getNode(ISD::SRL, DL, MVT::i32, Store->getBasePtr(),
922                             DAG.getConstant(2, MVT::i32));
923   SDValue Chain = Store->getChain();
924   SmallVector<SDValue, 8> Values;
925
926   if (Store->isTruncatingStore()) {
927     unsigned Mask = 0;
928     if (Store->getMemoryVT() == MVT::i8) {
929       Mask = 0xff;
930     } else if (Store->getMemoryVT() == MVT::i16) {
931       Mask = 0xffff;
932     }
933     SDValue Dst = DAG.getNode(AMDGPUISD::REGISTER_LOAD, DL, MVT::i32,
934                               Chain, Store->getBasePtr(),
935                               DAG.getConstant(0, MVT::i32));
936     SDValue ByteIdx = DAG.getNode(ISD::AND, DL, MVT::i32, Store->getBasePtr(),
937                                   DAG.getConstant(0x3, MVT::i32));
938     SDValue ShiftAmt = DAG.getNode(ISD::SHL, DL, MVT::i32, ByteIdx,
939                                    DAG.getConstant(3, MVT::i32));
940     SDValue MaskedValue = DAG.getNode(ISD::AND, DL, MVT::i32, Store->getValue(),
941                                       DAG.getConstant(Mask, MVT::i32));
942     SDValue ShiftedValue = DAG.getNode(ISD::SHL, DL, MVT::i32,
943                                        MaskedValue, ShiftAmt);
944     SDValue RotrAmt = DAG.getNode(ISD::SUB, DL, MVT::i32,
945                                   DAG.getConstant(32, MVT::i32), ShiftAmt);
946     SDValue DstMask = DAG.getNode(ISD::ROTR, DL, MVT::i32,
947                                   DAG.getConstant(Mask, MVT::i32),
948                                   RotrAmt);
949     Dst = DAG.getNode(ISD::AND, DL, MVT::i32, Dst, DstMask);
950     Dst = DAG.getNode(ISD::OR, DL, MVT::i32, Dst, ShiftedValue);
951
952     Values.push_back(Dst);
953   } else if (VT == MVT::i64) {
954     for (unsigned i = 0; i < 2; ++i) {
955       Values.push_back(DAG.getNode(ISD::EXTRACT_ELEMENT, DL, MVT::i32,
956                        Store->getValue(), DAG.getConstant(i, MVT::i32)));
957     }
958   } else if (VT == MVT::i128) {
959     for (unsigned i = 0; i < 2; ++i) {
960       for (unsigned j = 0; j < 2; ++j) {
961         Values.push_back(DAG.getNode(ISD::EXTRACT_ELEMENT, DL, MVT::i32,
962                            DAG.getNode(ISD::EXTRACT_ELEMENT, DL, MVT::i64,
963                            Store->getValue(), DAG.getConstant(i, MVT::i32)),
964                          DAG.getConstant(j, MVT::i32)));
965       }
966     }
967   } else {
968     Values.push_back(Store->getValue());
969   }
970
971   for (unsigned i = 0; i < Values.size(); ++i) {
972     SDValue PartPtr = DAG.getNode(ISD::ADD, DL, MVT::i32,
973                                   Ptr, DAG.getConstant(i, MVT::i32));
974     Chain = DAG.getNode(AMDGPUISD::REGISTER_STORE, DL, MVT::Other,
975                         Chain, Values[i], PartPtr,
976                         DAG.getTargetConstant(0, MVT::i32));
977   }
978   return Chain;
979 }
980
981 //===----------------------------------------------------------------------===//
982 // Custom DAG optimizations
983 //===----------------------------------------------------------------------===//
984
985 SDValue SITargetLowering::PerformDAGCombine(SDNode *N,
986                                             DAGCombinerInfo &DCI) const {
987   SelectionDAG &DAG = DCI.DAG;
988   SDLoc DL(N);
989   EVT VT = N->getValueType(0);
990
991   switch (N->getOpcode()) {
992     default: return AMDGPUTargetLowering::PerformDAGCombine(N, DCI);
993     case ISD::SELECT_CC: {
994       ConstantSDNode *True, *False;
995       // i1 selectcc(l, r, -1, 0, cc) -> i1 setcc(l, r, cc)
996       if ((True = dyn_cast<ConstantSDNode>(N->getOperand(2)))
997           && (False = dyn_cast<ConstantSDNode>(N->getOperand(3)))
998           && True->isAllOnesValue()
999           && False->isNullValue()
1000           && VT == MVT::i1) {
1001         return DAG.getNode(ISD::SETCC, DL, VT, N->getOperand(0),
1002                            N->getOperand(1), N->getOperand(4));
1003
1004       }
1005       break;
1006     }
1007     case ISD::SETCC: {
1008       SDValue Arg0 = N->getOperand(0);
1009       SDValue Arg1 = N->getOperand(1);
1010       SDValue CC = N->getOperand(2);
1011       ConstantSDNode * C = nullptr;
1012       ISD::CondCode CCOp = dyn_cast<CondCodeSDNode>(CC)->get();
1013
1014       // i1 setcc (sext(i1), 0, setne) -> i1 setcc(i1, 0, setne)
1015       if (VT == MVT::i1
1016           && Arg0.getOpcode() == ISD::SIGN_EXTEND
1017           && Arg0.getOperand(0).getValueType() == MVT::i1
1018           && (C = dyn_cast<ConstantSDNode>(Arg1))
1019           && C->isNullValue()
1020           && CCOp == ISD::SETNE) {
1021         return SimplifySetCC(VT, Arg0.getOperand(0),
1022                              DAG.getConstant(0, MVT::i1), CCOp, true, DCI, DL);
1023       }
1024       break;
1025     }
1026   }
1027
1028   return AMDGPUTargetLowering::PerformDAGCombine(N, DCI);
1029 }
1030
1031 /// \brief Test if RegClass is one of the VSrc classes
1032 static bool isVSrc(unsigned RegClass) {
1033   return AMDGPU::VSrc_32RegClassID == RegClass ||
1034          AMDGPU::VSrc_64RegClassID == RegClass;
1035 }
1036
1037 /// \brief Test if RegClass is one of the SSrc classes
1038 static bool isSSrc(unsigned RegClass) {
1039   return AMDGPU::SSrc_32RegClassID == RegClass ||
1040          AMDGPU::SSrc_64RegClassID == RegClass;
1041 }
1042
1043 /// \brief Analyze the possible immediate value Op
1044 ///
1045 /// Returns -1 if it isn't an immediate, 0 if it's and inline immediate
1046 /// and the immediate value if it's a literal immediate
1047 int32_t SITargetLowering::analyzeImmediate(const SDNode *N) const {
1048
1049   union {
1050     int32_t I;
1051     float F;
1052   } Imm;
1053
1054   if (const ConstantSDNode *Node = dyn_cast<ConstantSDNode>(N)) {
1055     if (Node->getZExtValue() >> 32) {
1056         return -1;
1057     }
1058     Imm.I = Node->getSExtValue();
1059   } else if (const ConstantFPSDNode *Node = dyn_cast<ConstantFPSDNode>(N)) {
1060     if (N->getValueType(0) != MVT::f32)
1061       return -1;
1062     Imm.F = Node->getValueAPF().convertToFloat();
1063   } else
1064     return -1; // It isn't an immediate
1065
1066   if ((Imm.I >= -16 && Imm.I <= 64) ||
1067       Imm.F == 0.5f || Imm.F == -0.5f ||
1068       Imm.F == 1.0f || Imm.F == -1.0f ||
1069       Imm.F == 2.0f || Imm.F == -2.0f ||
1070       Imm.F == 4.0f || Imm.F == -4.0f)
1071     return 0; // It's an inline immediate
1072
1073   return Imm.I; // It's a literal immediate
1074 }
1075
1076 /// \brief Try to fold an immediate directly into an instruction
1077 bool SITargetLowering::foldImm(SDValue &Operand, int32_t &Immediate,
1078                                bool &ScalarSlotUsed) const {
1079
1080   MachineSDNode *Mov = dyn_cast<MachineSDNode>(Operand);
1081   const SIInstrInfo *TII =
1082     static_cast<const SIInstrInfo*>(getTargetMachine().getInstrInfo());
1083   if (!Mov || !TII->isMov(Mov->getMachineOpcode()))
1084     return false;
1085
1086   const SDValue &Op = Mov->getOperand(0);
1087   int32_t Value = analyzeImmediate(Op.getNode());
1088   if (Value == -1) {
1089     // Not an immediate at all
1090     return false;
1091
1092   } else if (Value == 0) {
1093     // Inline immediates can always be fold
1094     Operand = Op;
1095     return true;
1096
1097   } else if (Value == Immediate) {
1098     // Already fold literal immediate
1099     Operand = Op;
1100     return true;
1101
1102   } else if (!ScalarSlotUsed && !Immediate) {
1103     // Fold this literal immediate
1104     ScalarSlotUsed = true;
1105     Immediate = Value;
1106     Operand = Op;
1107     return true;
1108
1109   }
1110
1111   return false;
1112 }
1113
1114 const TargetRegisterClass *SITargetLowering::getRegClassForNode(
1115                                    SelectionDAG &DAG, const SDValue &Op) const {
1116   const SIInstrInfo *TII =
1117     static_cast<const SIInstrInfo*>(getTargetMachine().getInstrInfo());
1118   const SIRegisterInfo &TRI = TII->getRegisterInfo();
1119
1120   if (!Op->isMachineOpcode()) {
1121     switch(Op->getOpcode()) {
1122     case ISD::CopyFromReg: {
1123       MachineRegisterInfo &MRI = DAG.getMachineFunction().getRegInfo();
1124       unsigned Reg = cast<RegisterSDNode>(Op->getOperand(1))->getReg();
1125       if (TargetRegisterInfo::isVirtualRegister(Reg)) {
1126         return MRI.getRegClass(Reg);
1127       }
1128       return TRI.getPhysRegClass(Reg);
1129     }
1130     default:  return nullptr;
1131     }
1132   }
1133   const MCInstrDesc &Desc = TII->get(Op->getMachineOpcode());
1134   int OpClassID = Desc.OpInfo[Op.getResNo()].RegClass;
1135   if (OpClassID != -1) {
1136     return TRI.getRegClass(OpClassID);
1137   }
1138   switch(Op.getMachineOpcode()) {
1139   case AMDGPU::COPY_TO_REGCLASS:
1140     // Operand 1 is the register class id for COPY_TO_REGCLASS instructions.
1141     OpClassID = cast<ConstantSDNode>(Op->getOperand(1))->getZExtValue();
1142
1143     // If the COPY_TO_REGCLASS instruction is copying to a VSrc register
1144     // class, then the register class for the value could be either a
1145     // VReg or and SReg.  In order to get a more accurate
1146     if (OpClassID == AMDGPU::VSrc_32RegClassID ||
1147         OpClassID == AMDGPU::VSrc_64RegClassID) {
1148       return getRegClassForNode(DAG, Op.getOperand(0));
1149     }
1150     return TRI.getRegClass(OpClassID);
1151   case AMDGPU::EXTRACT_SUBREG: {
1152     int SubIdx = cast<ConstantSDNode>(Op.getOperand(1))->getZExtValue();
1153     const TargetRegisterClass *SuperClass =
1154       getRegClassForNode(DAG, Op.getOperand(0));
1155     return TRI.getSubClassWithSubReg(SuperClass, SubIdx);
1156   }
1157   case AMDGPU::REG_SEQUENCE:
1158     // Operand 0 is the register class id for REG_SEQUENCE instructions.
1159     return TRI.getRegClass(
1160       cast<ConstantSDNode>(Op.getOperand(0))->getZExtValue());
1161   default:
1162     return getRegClassFor(Op.getSimpleValueType());
1163   }
1164 }
1165
1166 /// \brief Does "Op" fit into register class "RegClass" ?
1167 bool SITargetLowering::fitsRegClass(SelectionDAG &DAG, const SDValue &Op,
1168                                     unsigned RegClass) const {
1169   const TargetRegisterInfo *TRI = getTargetMachine().getRegisterInfo();
1170   const TargetRegisterClass *RC = getRegClassForNode(DAG, Op);
1171   if (!RC) {
1172     return false;
1173   }
1174   return TRI->getRegClass(RegClass)->hasSubClassEq(RC);
1175 }
1176
1177 /// \brief Make sure that we don't exeed the number of allowed scalars
1178 void SITargetLowering::ensureSRegLimit(SelectionDAG &DAG, SDValue &Operand,
1179                                        unsigned RegClass,
1180                                        bool &ScalarSlotUsed) const {
1181
1182   // First map the operands register class to a destination class
1183   if (RegClass == AMDGPU::VSrc_32RegClassID)
1184     RegClass = AMDGPU::VReg_32RegClassID;
1185   else if (RegClass == AMDGPU::VSrc_64RegClassID)
1186     RegClass = AMDGPU::VReg_64RegClassID;
1187   else
1188     return;
1189
1190   // Nothing to do if they fit naturally
1191   if (fitsRegClass(DAG, Operand, RegClass))
1192     return;
1193
1194   // If the scalar slot isn't used yet use it now
1195   if (!ScalarSlotUsed) {
1196     ScalarSlotUsed = true;
1197     return;
1198   }
1199
1200   // This is a conservative aproach. It is possible that we can't determine the
1201   // correct register class and copy too often, but better safe than sorry.
1202   SDValue RC = DAG.getTargetConstant(RegClass, MVT::i32);
1203   SDNode *Node = DAG.getMachineNode(TargetOpcode::COPY_TO_REGCLASS, SDLoc(),
1204                                     Operand.getValueType(), Operand, RC);
1205   Operand = SDValue(Node, 0);
1206 }
1207
1208 /// \returns true if \p Node's operands are different from the SDValue list
1209 /// \p Ops
1210 static bool isNodeChanged(const SDNode *Node, const std::vector<SDValue> &Ops) {
1211   for (unsigned i = 0, e = Node->getNumOperands(); i < e; ++i) {
1212     if (Ops[i].getNode() != Node->getOperand(i).getNode()) {
1213       return true;
1214     }
1215   }
1216   return false;
1217 }
1218
1219 /// \brief Try to fold the Nodes operands into the Node
1220 SDNode *SITargetLowering::foldOperands(MachineSDNode *Node,
1221                                        SelectionDAG &DAG) const {
1222
1223   // Original encoding (either e32 or e64)
1224   int Opcode = Node->getMachineOpcode();
1225   const SIInstrInfo *TII =
1226     static_cast<const SIInstrInfo*>(getTargetMachine().getInstrInfo());
1227   const MCInstrDesc *Desc = &TII->get(Opcode);
1228
1229   unsigned NumDefs = Desc->getNumDefs();
1230   unsigned NumOps = Desc->getNumOperands();
1231
1232   // Commuted opcode if available
1233   int OpcodeRev = Desc->isCommutable() ? TII->commuteOpcode(Opcode) : -1;
1234   const MCInstrDesc *DescRev = OpcodeRev == -1 ? nullptr : &TII->get(OpcodeRev);
1235
1236   assert(!DescRev || DescRev->getNumDefs() == NumDefs);
1237   assert(!DescRev || DescRev->getNumOperands() == NumOps);
1238
1239   // e64 version if available, -1 otherwise
1240   int OpcodeE64 = AMDGPU::getVOPe64(Opcode);
1241   const MCInstrDesc *DescE64 = OpcodeE64 == -1 ? nullptr : &TII->get(OpcodeE64);
1242   int InputModifiers[3] = {0};
1243
1244   assert(!DescE64 || DescE64->getNumDefs() == NumDefs);
1245
1246   int32_t Immediate = Desc->getSize() == 4 ? 0 : -1;
1247   bool HaveVSrc = false, HaveSSrc = false;
1248
1249   // First figure out what we already have in this instruction.
1250   for (unsigned i = 0, e = Node->getNumOperands(), Op = NumDefs;
1251        i != e && Op < NumOps; ++i, ++Op) {
1252
1253     unsigned RegClass = Desc->OpInfo[Op].RegClass;
1254     if (isVSrc(RegClass))
1255       HaveVSrc = true;
1256     else if (isSSrc(RegClass))
1257       HaveSSrc = true;
1258     else
1259       continue;
1260
1261     int32_t Imm = analyzeImmediate(Node->getOperand(i).getNode());
1262     if (Imm != -1 && Imm != 0) {
1263       // Literal immediate
1264       Immediate = Imm;
1265     }
1266   }
1267
1268   // If we neither have VSrc nor SSrc, it makes no sense to continue.
1269   if (!HaveVSrc && !HaveSSrc)
1270     return Node;
1271
1272   // No scalar allowed when we have both VSrc and SSrc
1273   bool ScalarSlotUsed = HaveVSrc && HaveSSrc;
1274
1275   // Second go over the operands and try to fold them
1276   std::vector<SDValue> Ops;
1277   bool Promote2e64 = false;
1278   for (unsigned i = 0, e = Node->getNumOperands(), Op = NumDefs;
1279        i != e && Op < NumOps; ++i, ++Op) {
1280
1281     const SDValue &Operand = Node->getOperand(i);
1282     Ops.push_back(Operand);
1283
1284     // Already folded immediate?
1285     if (isa<ConstantSDNode>(Operand.getNode()) ||
1286         isa<ConstantFPSDNode>(Operand.getNode()))
1287       continue;
1288
1289     // Is this a VSrc or SSrc operand?
1290     unsigned RegClass = Desc->OpInfo[Op].RegClass;
1291     if (isVSrc(RegClass) || isSSrc(RegClass)) {
1292       // Try to fold the immediates
1293       if (!foldImm(Ops[i], Immediate, ScalarSlotUsed)) {
1294         // Folding didn't work, make sure we don't hit the SReg limit.
1295         ensureSRegLimit(DAG, Ops[i], RegClass, ScalarSlotUsed);
1296       }
1297       continue;
1298     }
1299
1300     if (i == 1 && DescRev && fitsRegClass(DAG, Ops[0], RegClass)) {
1301
1302       unsigned OtherRegClass = Desc->OpInfo[NumDefs].RegClass;
1303       assert(isVSrc(OtherRegClass) || isSSrc(OtherRegClass));
1304
1305       // Test if it makes sense to swap operands
1306       if (foldImm(Ops[1], Immediate, ScalarSlotUsed) ||
1307           (!fitsRegClass(DAG, Ops[1], RegClass) &&
1308            fitsRegClass(DAG, Ops[1], OtherRegClass))) {
1309
1310         // Swap commutable operands
1311         std::swap(Ops[0], Ops[1]);
1312
1313         Desc = DescRev;
1314         DescRev = nullptr;
1315         continue;
1316       }
1317     }
1318
1319     if (Immediate)
1320       continue;
1321
1322     if (DescE64) {
1323       // Test if it makes sense to switch to e64 encoding
1324       unsigned OtherRegClass = DescE64->OpInfo[Op].RegClass;
1325       if (!isVSrc(OtherRegClass) && !isSSrc(OtherRegClass))
1326         continue;
1327
1328       int32_t TmpImm = -1;
1329       if (foldImm(Ops[i], TmpImm, ScalarSlotUsed) ||
1330           (!fitsRegClass(DAG, Ops[i], RegClass) &&
1331            fitsRegClass(DAG, Ops[1], OtherRegClass))) {
1332
1333         // Switch to e64 encoding
1334         Immediate = -1;
1335         Promote2e64 = true;
1336         Desc = DescE64;
1337         DescE64 = nullptr;
1338       }
1339     }
1340
1341     if (!DescE64 && !Promote2e64)
1342       continue;
1343     if (!Operand.isMachineOpcode())
1344       continue;
1345     if (Operand.getMachineOpcode() == AMDGPU::FNEG_SI) {
1346       Ops.pop_back();
1347       Ops.push_back(Operand.getOperand(0));
1348       InputModifiers[i] = 1;
1349       Promote2e64 = true;
1350       if (!DescE64)
1351         continue;
1352       Desc = DescE64;
1353       DescE64 = nullptr;
1354     }
1355     else if (Operand.getMachineOpcode() == AMDGPU::FABS_SI) {
1356       Ops.pop_back();
1357       Ops.push_back(Operand.getOperand(0));
1358       InputModifiers[i] = 2;
1359       Promote2e64 = true;
1360       if (!DescE64)
1361         continue;
1362       Desc = DescE64;
1363       DescE64 = nullptr;
1364     }
1365   }
1366
1367   if (Promote2e64) {
1368     std::vector<SDValue> OldOps(Ops);
1369     Ops.clear();
1370     for (unsigned i = 0; i < OldOps.size(); ++i) {
1371       // src_modifier
1372       Ops.push_back(DAG.getTargetConstant(InputModifiers[i], MVT::i32));
1373       Ops.push_back(OldOps[i]);
1374     }
1375     // Add the modifier flags while promoting
1376     for (unsigned i = 0; i < 2; ++i)
1377       Ops.push_back(DAG.getTargetConstant(0, MVT::i32));
1378   }
1379
1380   // Add optional chain and glue
1381   for (unsigned i = NumOps - NumDefs, e = Node->getNumOperands(); i < e; ++i)
1382     Ops.push_back(Node->getOperand(i));
1383
1384   // Nodes that have a glue result are not CSE'd by getMachineNode(), so in
1385   // this case a brand new node is always be created, even if the operands
1386   // are the same as before.  So, manually check if anything has been changed.
1387   if (Desc->Opcode == Opcode && !isNodeChanged(Node, Ops)) {
1388     return Node;
1389   }
1390
1391   // Create a complete new instruction
1392   return DAG.getMachineNode(Desc->Opcode, SDLoc(Node), Node->getVTList(), Ops);
1393 }
1394
1395 /// \brief Helper function for adjustWritemask
1396 static unsigned SubIdx2Lane(unsigned Idx) {
1397   switch (Idx) {
1398   default: return 0;
1399   case AMDGPU::sub0: return 0;
1400   case AMDGPU::sub1: return 1;
1401   case AMDGPU::sub2: return 2;
1402   case AMDGPU::sub3: return 3;
1403   }
1404 }
1405
1406 /// \brief Adjust the writemask of MIMG instructions
1407 void SITargetLowering::adjustWritemask(MachineSDNode *&Node,
1408                                        SelectionDAG &DAG) const {
1409   SDNode *Users[4] = { };
1410   unsigned Lane = 0;
1411   unsigned OldDmask = Node->getConstantOperandVal(0);
1412   unsigned NewDmask = 0;
1413
1414   // Try to figure out the used register components
1415   for (SDNode::use_iterator I = Node->use_begin(), E = Node->use_end();
1416        I != E; ++I) {
1417
1418     // Abort if we can't understand the usage
1419     if (!I->isMachineOpcode() ||
1420         I->getMachineOpcode() != TargetOpcode::EXTRACT_SUBREG)
1421       return;
1422
1423     // Lane means which subreg of %VGPRa_VGPRb_VGPRc_VGPRd is used.
1424     // Note that subregs are packed, i.e. Lane==0 is the first bit set
1425     // in OldDmask, so it can be any of X,Y,Z,W; Lane==1 is the second bit
1426     // set, etc.
1427     Lane = SubIdx2Lane(I->getConstantOperandVal(1));
1428
1429     // Set which texture component corresponds to the lane.
1430     unsigned Comp;
1431     for (unsigned i = 0, Dmask = OldDmask; i <= Lane; i++) {
1432       assert(Dmask);
1433       Comp = countTrailingZeros(Dmask);
1434       Dmask &= ~(1 << Comp);
1435     }
1436
1437     // Abort if we have more than one user per component
1438     if (Users[Lane])
1439       return;
1440
1441     Users[Lane] = *I;
1442     NewDmask |= 1 << Comp;
1443   }
1444
1445   // Abort if there's no change
1446   if (NewDmask == OldDmask)
1447     return;
1448
1449   // Adjust the writemask in the node
1450   std::vector<SDValue> Ops;
1451   Ops.push_back(DAG.getTargetConstant(NewDmask, MVT::i32));
1452   for (unsigned i = 1, e = Node->getNumOperands(); i != e; ++i)
1453     Ops.push_back(Node->getOperand(i));
1454   Node = (MachineSDNode*)DAG.UpdateNodeOperands(Node, Ops);
1455
1456   // If we only got one lane, replace it with a copy
1457   // (if NewDmask has only one bit set...)
1458   if (NewDmask && (NewDmask & (NewDmask-1)) == 0) {
1459     SDValue RC = DAG.getTargetConstant(AMDGPU::VReg_32RegClassID, MVT::i32);
1460     SDNode *Copy = DAG.getMachineNode(TargetOpcode::COPY_TO_REGCLASS,
1461                                       SDLoc(), Users[Lane]->getValueType(0),
1462                                       SDValue(Node, 0), RC);
1463     DAG.ReplaceAllUsesWith(Users[Lane], Copy);
1464     return;
1465   }
1466
1467   // Update the users of the node with the new indices
1468   for (unsigned i = 0, Idx = AMDGPU::sub0; i < 4; ++i) {
1469
1470     SDNode *User = Users[i];
1471     if (!User)
1472       continue;
1473
1474     SDValue Op = DAG.getTargetConstant(Idx, MVT::i32);
1475     DAG.UpdateNodeOperands(User, User->getOperand(0), Op);
1476
1477     switch (Idx) {
1478     default: break;
1479     case AMDGPU::sub0: Idx = AMDGPU::sub1; break;
1480     case AMDGPU::sub1: Idx = AMDGPU::sub2; break;
1481     case AMDGPU::sub2: Idx = AMDGPU::sub3; break;
1482     }
1483   }
1484 }
1485
1486 /// \brief Fold the instructions after selecting them.
1487 SDNode *SITargetLowering::PostISelFolding(MachineSDNode *Node,
1488                                           SelectionDAG &DAG) const {
1489   const SIInstrInfo *TII =
1490       static_cast<const SIInstrInfo*>(getTargetMachine().getInstrInfo());
1491   Node = AdjustRegClass(Node, DAG);
1492
1493   if (TII->isMIMG(Node->getMachineOpcode()))
1494     adjustWritemask(Node, DAG);
1495
1496   return foldOperands(Node, DAG);
1497 }
1498
1499 /// \brief Assign the register class depending on the number of
1500 /// bits set in the writemask
1501 void SITargetLowering::AdjustInstrPostInstrSelection(MachineInstr *MI,
1502                                                      SDNode *Node) const {
1503   const SIInstrInfo *TII =
1504       static_cast<const SIInstrInfo*>(getTargetMachine().getInstrInfo());
1505   if (!TII->isMIMG(MI->getOpcode()))
1506     return;
1507
1508   unsigned VReg = MI->getOperand(0).getReg();
1509   unsigned Writemask = MI->getOperand(1).getImm();
1510   unsigned BitsSet = 0;
1511   for (unsigned i = 0; i < 4; ++i)
1512     BitsSet += Writemask & (1 << i) ? 1 : 0;
1513
1514   const TargetRegisterClass *RC;
1515   switch (BitsSet) {
1516   default: return;
1517   case 1:  RC = &AMDGPU::VReg_32RegClass; break;
1518   case 2:  RC = &AMDGPU::VReg_64RegClass; break;
1519   case 3:  RC = &AMDGPU::VReg_96RegClass; break;
1520   }
1521
1522   unsigned NewOpcode = TII->getMaskedMIMGOp(MI->getOpcode(), BitsSet);
1523   MI->setDesc(TII->get(NewOpcode));
1524   MachineRegisterInfo &MRI = MI->getParent()->getParent()->getRegInfo();
1525   MRI.setRegClass(VReg, RC);
1526 }
1527
1528 MachineSDNode *SITargetLowering::AdjustRegClass(MachineSDNode *N,
1529                                                 SelectionDAG &DAG) const {
1530
1531   SDLoc DL(N);
1532   unsigned NewOpcode = N->getMachineOpcode();
1533
1534   switch (N->getMachineOpcode()) {
1535   default: return N;
1536   case AMDGPU::S_LOAD_DWORD_IMM:
1537     NewOpcode = AMDGPU::BUFFER_LOAD_DWORD_ADDR64;
1538     // Fall-through
1539   case AMDGPU::S_LOAD_DWORDX2_SGPR:
1540     if (NewOpcode == N->getMachineOpcode()) {
1541       NewOpcode = AMDGPU::BUFFER_LOAD_DWORDX2_ADDR64;
1542     }
1543     // Fall-through
1544   case AMDGPU::S_LOAD_DWORDX4_IMM:
1545   case AMDGPU::S_LOAD_DWORDX4_SGPR: {
1546     if (NewOpcode == N->getMachineOpcode()) {
1547       NewOpcode = AMDGPU::BUFFER_LOAD_DWORDX4_ADDR64;
1548     }
1549     if (fitsRegClass(DAG, N->getOperand(0), AMDGPU::SReg_64RegClassID)) {
1550       return N;
1551     }
1552     ConstantSDNode *Offset = cast<ConstantSDNode>(N->getOperand(1));
1553     SDValue Ops[] = {
1554       SDValue(DAG.getMachineNode(AMDGPU::SI_ADDR64_RSRC, DL, MVT::i128,
1555                                  DAG.getConstant(0, MVT::i64)), 0),
1556       N->getOperand(0),
1557       DAG.getConstant(Offset->getSExtValue() << 2, MVT::i32)
1558     };
1559     return DAG.getMachineNode(NewOpcode, DL, N->getVTList(), Ops);
1560   }
1561   }
1562 }
1563
1564 SDValue SITargetLowering::CreateLiveInRegister(SelectionDAG &DAG,
1565                                                const TargetRegisterClass *RC,
1566                                                unsigned Reg, EVT VT) const {
1567   SDValue VReg = AMDGPUTargetLowering::CreateLiveInRegister(DAG, RC, Reg, VT);
1568
1569   return DAG.getCopyFromReg(DAG.getEntryNode(), SDLoc(DAG.getEntryNode()),
1570                             cast<RegisterSDNode>(VReg)->getReg(), VT);
1571 }