blob: 0c7880d232bc6722a11ba89c1b17fb9262355e8e [file] [log] [blame]
Tom Stellard75aadc22012-12-11 21:25:42 +00001//===-- 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 "AMDILDevices.h"
18#include "R600InstrInfo.h"
Christian Konigf82901a2013-02-26 17:52:23 +000019#include "SIISelLowering.h"
Tom Stellard75aadc22012-12-11 21:25:42 +000020#include "llvm/ADT/ValueMap.h"
21#include "llvm/CodeGen/PseudoSourceValue.h"
22#include "llvm/CodeGen/SelectionDAGISel.h"
23#include "llvm/Support/Compiler.h"
Tom Stellard365366f2013-01-23 02:09:06 +000024#include "llvm/CodeGen/SelectionDAG.h"
Tom Stellard75aadc22012-12-11 21:25:42 +000025#include <list>
26#include <queue>
27
28using namespace llvm;
29
30//===----------------------------------------------------------------------===//
31// Instruction Selector Implementation
32//===----------------------------------------------------------------------===//
33
34namespace {
35/// AMDGPU specific code to select AMDGPU machine instructions for
36/// SelectionDAG operations.
37class AMDGPUDAGToDAGISel : public SelectionDAGISel {
38 // Subtarget - Keep a pointer to the AMDGPU Subtarget around so that we can
39 // make the right decision when generating code for different targets.
40 const AMDGPUSubtarget &Subtarget;
41public:
42 AMDGPUDAGToDAGISel(TargetMachine &TM);
43 virtual ~AMDGPUDAGToDAGISel();
44
45 SDNode *Select(SDNode *N);
46 virtual const char *getPassName() const;
Christian Konigd910b7d2013-02-26 17:52:16 +000047 virtual void PostprocessISelDAG();
Tom Stellard75aadc22012-12-11 21:25:42 +000048
49private:
50 inline SDValue getSmallIPtrImm(unsigned Imm);
Tom Stellard365366f2013-01-23 02:09:06 +000051 bool FoldOperands(unsigned, const R600InstrInfo *, std::vector<SDValue> &);
Tom Stellard75aadc22012-12-11 21:25:42 +000052
53 // Complex pattern selectors
54 bool SelectADDRParam(SDValue Addr, SDValue& R1, SDValue& R2);
55 bool SelectADDR(SDValue N, SDValue &R1, SDValue &R2);
56 bool SelectADDR64(SDValue N, SDValue &R1, SDValue &R2);
57
58 static bool checkType(const Value *ptr, unsigned int addrspace);
59 static const Value *getBasePointerValue(const Value *V);
60
61 static bool isGlobalStore(const StoreSDNode *N);
62 static bool isPrivateStore(const StoreSDNode *N);
63 static bool isLocalStore(const StoreSDNode *N);
64 static bool isRegionStore(const StoreSDNode *N);
65
66 static bool isCPLoad(const LoadSDNode *N);
67 static bool isConstantLoad(const LoadSDNode *N, int cbID);
68 static bool isGlobalLoad(const LoadSDNode *N);
69 static bool isParamLoad(const LoadSDNode *N);
70 static bool isPrivateLoad(const LoadSDNode *N);
71 static bool isLocalLoad(const LoadSDNode *N);
72 static bool isRegionLoad(const LoadSDNode *N);
73
Tom Stellard365366f2013-01-23 02:09:06 +000074 bool SelectGlobalValueConstantOffset(SDValue Addr, SDValue& IntPtr);
75 bool SelectGlobalValueVariableOffset(SDValue Addr,
76 SDValue &BaseReg, SDValue& Offset);
Tom Stellard75aadc22012-12-11 21:25:42 +000077 bool SelectADDRVTX_READ(SDValue Addr, SDValue &Base, SDValue &Offset);
Tom Stellardf3b2a1e2013-02-06 17:32:29 +000078 bool SelectADDRIndirect(SDValue Addr, SDValue &Base, SDValue &Offset);
Tom Stellard75aadc22012-12-11 21:25:42 +000079
80 // Include the pieces autogenerated from the target description.
81#include "AMDGPUGenDAGISel.inc"
82};
83} // end anonymous namespace
84
85/// \brief This pass converts a legalized DAG into a AMDGPU-specific
86// DAG, ready for instruction scheduling.
87FunctionPass *llvm::createAMDGPUISelDag(TargetMachine &TM
88 ) {
89 return new AMDGPUDAGToDAGISel(TM);
90}
91
92AMDGPUDAGToDAGISel::AMDGPUDAGToDAGISel(TargetMachine &TM
93 )
94 : SelectionDAGISel(TM), Subtarget(TM.getSubtarget<AMDGPUSubtarget>()) {
95}
96
97AMDGPUDAGToDAGISel::~AMDGPUDAGToDAGISel() {
98}
99
100SDValue AMDGPUDAGToDAGISel::getSmallIPtrImm(unsigned int Imm) {
101 return CurDAG->getTargetConstant(Imm, MVT::i32);
102}
103
104bool AMDGPUDAGToDAGISel::SelectADDRParam(
105 SDValue Addr, SDValue& R1, SDValue& R2) {
106
107 if (Addr.getOpcode() == ISD::FrameIndex) {
108 if (FrameIndexSDNode *FIN = dyn_cast<FrameIndexSDNode>(Addr)) {
109 R1 = CurDAG->getTargetFrameIndex(FIN->getIndex(), MVT::i32);
110 R2 = CurDAG->getTargetConstant(0, MVT::i32);
111 } else {
112 R1 = Addr;
113 R2 = CurDAG->getTargetConstant(0, MVT::i32);
114 }
115 } else if (Addr.getOpcode() == ISD::ADD) {
116 R1 = Addr.getOperand(0);
117 R2 = Addr.getOperand(1);
118 } else {
119 R1 = Addr;
120 R2 = CurDAG->getTargetConstant(0, MVT::i32);
121 }
122 return true;
123}
124
125bool AMDGPUDAGToDAGISel::SelectADDR(SDValue Addr, SDValue& R1, SDValue& R2) {
126 if (Addr.getOpcode() == ISD::TargetExternalSymbol ||
127 Addr.getOpcode() == ISD::TargetGlobalAddress) {
128 return false;
129 }
130 return SelectADDRParam(Addr, R1, R2);
131}
132
133
134bool AMDGPUDAGToDAGISel::SelectADDR64(SDValue Addr, SDValue& R1, SDValue& R2) {
135 if (Addr.getOpcode() == ISD::TargetExternalSymbol ||
136 Addr.getOpcode() == ISD::TargetGlobalAddress) {
137 return false;
138 }
139
140 if (Addr.getOpcode() == ISD::FrameIndex) {
141 if (FrameIndexSDNode *FIN = dyn_cast<FrameIndexSDNode>(Addr)) {
142 R1 = CurDAG->getTargetFrameIndex(FIN->getIndex(), MVT::i64);
143 R2 = CurDAG->getTargetConstant(0, MVT::i64);
144 } else {
145 R1 = Addr;
146 R2 = CurDAG->getTargetConstant(0, MVT::i64);
147 }
148 } else if (Addr.getOpcode() == ISD::ADD) {
149 R1 = Addr.getOperand(0);
150 R2 = Addr.getOperand(1);
151 } else {
152 R1 = Addr;
153 R2 = CurDAG->getTargetConstant(0, MVT::i64);
154 }
155 return true;
156}
157
158SDNode *AMDGPUDAGToDAGISel::Select(SDNode *N) {
159 unsigned int Opc = N->getOpcode();
160 if (N->isMachineOpcode()) {
161 return NULL; // Already selected.
162 }
163 switch (Opc) {
164 default: break;
Vincent Lejeune3b6f20e2013-03-05 15:04:49 +0000165 case ISD::BUILD_VECTOR: {
166 const AMDGPUSubtarget &ST = TM.getSubtarget<AMDGPUSubtarget>();
167 if (ST.device()->getGeneration() > AMDGPUDeviceInfo::HD6XXX) {
168 break;
169 }
170 // BUILD_VECTOR is usually lowered into an IMPLICIT_DEF + 4 INSERT_SUBREG
171 // that adds a 128 bits reg copy when going through TwoAddressInstructions
172 // pass. We want to avoid 128 bits copies as much as possible because they
173 // can't be bundled by our scheduler.
174 SDValue RegSeqArgs[9] = {
175 CurDAG->getTargetConstant(AMDGPU::R600_Reg128RegClassID, MVT::i32),
176 SDValue(), CurDAG->getTargetConstant(AMDGPU::sub0, MVT::i32),
177 SDValue(), CurDAG->getTargetConstant(AMDGPU::sub1, MVT::i32),
178 SDValue(), CurDAG->getTargetConstant(AMDGPU::sub2, MVT::i32),
179 SDValue(), CurDAG->getTargetConstant(AMDGPU::sub3, MVT::i32)
180 };
181 bool IsRegSeq = true;
182 for (unsigned i = 0; i < N->getNumOperands(); i++) {
183 if (dyn_cast<RegisterSDNode>(N->getOperand(i))) {
184 IsRegSeq = false;
185 break;
186 }
187 RegSeqArgs[2 * i + 1] = N->getOperand(i);
188 }
189 if (!IsRegSeq)
190 break;
191 return CurDAG->SelectNodeTo(N, AMDGPU::REG_SEQUENCE, N->getVTList(),
192 RegSeqArgs, 2 * N->getNumOperands() + 1);
193 }
Tom Stellard75aadc22012-12-11 21:25:42 +0000194 case ISD::ConstantFP:
195 case ISD::Constant: {
196 const AMDGPUSubtarget &ST = TM.getSubtarget<AMDGPUSubtarget>();
197 // XXX: Custom immediate lowering not implemented yet. Instead we use
198 // pseudo instructions defined in SIInstructions.td
199 if (ST.device()->getGeneration() > AMDGPUDeviceInfo::HD6XXX) {
200 break;
201 }
202 const R600InstrInfo *TII = static_cast<const R600InstrInfo*>(TM.getInstrInfo());
203
204 uint64_t ImmValue = 0;
205 unsigned ImmReg = AMDGPU::ALU_LITERAL_X;
206
207 if (N->getOpcode() == ISD::ConstantFP) {
208 // XXX: 64-bit Immediates not supported yet
209 assert(N->getValueType(0) != MVT::f64);
210
211 ConstantFPSDNode *C = dyn_cast<ConstantFPSDNode>(N);
212 APFloat Value = C->getValueAPF();
213 float FloatValue = Value.convertToFloat();
214 if (FloatValue == 0.0) {
215 ImmReg = AMDGPU::ZERO;
216 } else if (FloatValue == 0.5) {
217 ImmReg = AMDGPU::HALF;
218 } else if (FloatValue == 1.0) {
219 ImmReg = AMDGPU::ONE;
220 } else {
221 ImmValue = Value.bitcastToAPInt().getZExtValue();
222 }
223 } else {
224 // XXX: 64-bit Immediates not supported yet
225 assert(N->getValueType(0) != MVT::i64);
226
227 ConstantSDNode *C = dyn_cast<ConstantSDNode>(N);
228 if (C->getZExtValue() == 0) {
229 ImmReg = AMDGPU::ZERO;
230 } else if (C->getZExtValue() == 1) {
231 ImmReg = AMDGPU::ONE_INT;
232 } else {
233 ImmValue = C->getZExtValue();
234 }
235 }
236
237 for (SDNode::use_iterator Use = N->use_begin(), Next = llvm::next(Use);
238 Use != SDNode::use_end(); Use = Next) {
239 Next = llvm::next(Use);
240 std::vector<SDValue> Ops;
241 for (unsigned i = 0; i < Use->getNumOperands(); ++i) {
242 Ops.push_back(Use->getOperand(i));
243 }
244
245 if (!Use->isMachineOpcode()) {
246 if (ImmReg == AMDGPU::ALU_LITERAL_X) {
247 // We can only use literal constants (e.g. AMDGPU::ZERO,
248 // AMDGPU::ONE, etc) in machine opcodes.
249 continue;
250 }
251 } else {
Vincent Lejeunef694c102013-02-14 16:55:01 +0000252 if (!TII->isALUInstr(Use->getMachineOpcode()) ||
253 (TII->get(Use->getMachineOpcode()).TSFlags &
254 R600_InstFlag::VECTOR)) {
Tom Stellard75aadc22012-12-11 21:25:42 +0000255 continue;
256 }
257
258 int ImmIdx = TII->getOperandIdx(Use->getMachineOpcode(), R600Operands::IMM);
259 assert(ImmIdx != -1);
260
261 // subtract one from ImmIdx, because the DST operand is usually index
262 // 0 for MachineInstrs, but we have no DST in the Ops vector.
263 ImmIdx--;
264
265 // Check that we aren't already using an immediate.
266 // XXX: It's possible for an instruction to have more than one
267 // immediate operand, but this is not supported yet.
268 if (ImmReg == AMDGPU::ALU_LITERAL_X) {
269 ConstantSDNode *C = dyn_cast<ConstantSDNode>(Use->getOperand(ImmIdx));
270 assert(C);
271
272 if (C->getZExtValue() != 0) {
273 // This instruction is already using an immediate.
274 continue;
275 }
276
277 // Set the immediate value
278 Ops[ImmIdx] = CurDAG->getTargetConstant(ImmValue, MVT::i32);
279 }
280 }
281 // Set the immediate register
282 Ops[Use.getOperandNo()] = CurDAG->getRegister(ImmReg, MVT::i32);
283
284 CurDAG->UpdateNodeOperands(*Use, Ops.data(), Use->getNumOperands());
285 }
286 break;
287 }
288 }
Tom Stellard365366f2013-01-23 02:09:06 +0000289 SDNode *Result = SelectCode(N);
290
291 // Fold operands of selected node
292
293 const AMDGPUSubtarget &ST = TM.getSubtarget<AMDGPUSubtarget>();
294 if (ST.device()->getGeneration() <= AMDGPUDeviceInfo::HD6XXX) {
295 const R600InstrInfo *TII =
296 static_cast<const R600InstrInfo*>(TM.getInstrInfo());
Vincent Lejeunef694c102013-02-14 16:55:01 +0000297 if (Result && Result->isMachineOpcode() &&
298 !(TII->get(Result->getMachineOpcode()).TSFlags & R600_InstFlag::VECTOR)
Tom Stellard49269212013-01-31 22:11:54 +0000299 && TII->isALUInstr(Result->getMachineOpcode())) {
300 // Fold FNEG/FABS/CONST_ADDRESS
301 // TODO: Isel can generate multiple MachineInst, we need to recursively
302 // parse Result
Tom Stellard365366f2013-01-23 02:09:06 +0000303 bool IsModified = false;
304 do {
305 std::vector<SDValue> Ops;
306 for(SDNode::op_iterator I = Result->op_begin(), E = Result->op_end();
307 I != E; ++I)
308 Ops.push_back(*I);
309 IsModified = FoldOperands(Result->getMachineOpcode(), TII, Ops);
310 if (IsModified) {
Tom Stellard49269212013-01-31 22:11:54 +0000311 Result = CurDAG->UpdateNodeOperands(Result, Ops.data(), Ops.size());
Tom Stellard365366f2013-01-23 02:09:06 +0000312 }
313 } while (IsModified);
Tom Stellard49269212013-01-31 22:11:54 +0000314
315 // If node has a single use which is CLAMP_R600, folds it
316 if (Result->hasOneUse() && Result->isMachineOpcode()) {
317 SDNode *PotentialClamp = *Result->use_begin();
318 if (PotentialClamp->isMachineOpcode() &&
319 PotentialClamp->getMachineOpcode() == AMDGPU::CLAMP_R600) {
320 unsigned ClampIdx =
321 TII->getOperandIdx(Result->getMachineOpcode(), R600Operands::CLAMP);
322 std::vector<SDValue> Ops;
323 unsigned NumOp = Result->getNumOperands();
324 for (unsigned i = 0; i < NumOp; ++i) {
325 Ops.push_back(Result->getOperand(i));
326 }
327 Ops[ClampIdx - 1] = CurDAG->getTargetConstant(1, MVT::i32);
328 Result = CurDAG->SelectNodeTo(PotentialClamp,
329 Result->getMachineOpcode(), PotentialClamp->getVTList(),
330 Ops.data(), NumOp);
331 }
332 }
Tom Stellard365366f2013-01-23 02:09:06 +0000333 }
334 }
335
336 return Result;
337}
338
339bool AMDGPUDAGToDAGISel::FoldOperands(unsigned Opcode,
340 const R600InstrInfo *TII, std::vector<SDValue> &Ops) {
341 int OperandIdx[] = {
342 TII->getOperandIdx(Opcode, R600Operands::SRC0),
343 TII->getOperandIdx(Opcode, R600Operands::SRC1),
344 TII->getOperandIdx(Opcode, R600Operands::SRC2)
345 };
346 int SelIdx[] = {
347 TII->getOperandIdx(Opcode, R600Operands::SRC0_SEL),
348 TII->getOperandIdx(Opcode, R600Operands::SRC1_SEL),
349 TII->getOperandIdx(Opcode, R600Operands::SRC2_SEL)
350 };
Tom Stellard49269212013-01-31 22:11:54 +0000351 int NegIdx[] = {
352 TII->getOperandIdx(Opcode, R600Operands::SRC0_NEG),
353 TII->getOperandIdx(Opcode, R600Operands::SRC1_NEG),
354 TII->getOperandIdx(Opcode, R600Operands::SRC2_NEG)
355 };
356 int AbsIdx[] = {
357 TII->getOperandIdx(Opcode, R600Operands::SRC0_ABS),
358 TII->getOperandIdx(Opcode, R600Operands::SRC1_ABS),
359 -1
360 };
361
Tom Stellard365366f2013-01-23 02:09:06 +0000362 for (unsigned i = 0; i < 3; i++) {
363 if (OperandIdx[i] < 0)
364 return false;
365 SDValue Operand = Ops[OperandIdx[i] - 1];
366 switch (Operand.getOpcode()) {
367 case AMDGPUISD::CONST_ADDRESS: {
Vincent Lejeunef940fd02013-02-14 16:57:19 +0000368 if (i == 2)
369 break;
Tom Stellard365366f2013-01-23 02:09:06 +0000370 SDValue CstOffset;
371 if (!Operand.getValueType().isVector() &&
372 SelectGlobalValueConstantOffset(Operand.getOperand(0), CstOffset)) {
373 Ops[OperandIdx[i] - 1] = CurDAG->getRegister(AMDGPU::ALU_CONST, MVT::f32);
374 Ops[SelIdx[i] - 1] = CstOffset;
375 return true;
376 }
377 }
378 break;
Tom Stellard49269212013-01-31 22:11:54 +0000379 case ISD::FNEG:
380 if (NegIdx[i] < 0)
381 break;
382 Ops[OperandIdx[i] - 1] = Operand.getOperand(0);
383 Ops[NegIdx[i] - 1] = CurDAG->getTargetConstant(1, MVT::i32);
384 return true;
385 case ISD::FABS:
386 if (AbsIdx[i] < 0)
387 break;
388 Ops[OperandIdx[i] - 1] = Operand.getOperand(0);
389 Ops[AbsIdx[i] - 1] = CurDAG->getTargetConstant(1, MVT::i32);
390 return true;
Tom Stellarddd04c832013-01-31 22:11:53 +0000391 case ISD::BITCAST:
392 Ops[OperandIdx[i] - 1] = Operand.getOperand(0);
393 return true;
Tom Stellard365366f2013-01-23 02:09:06 +0000394 default:
395 break;
396 }
397 }
398 return false;
Tom Stellard75aadc22012-12-11 21:25:42 +0000399}
400
401bool AMDGPUDAGToDAGISel::checkType(const Value *ptr, unsigned int addrspace) {
402 if (!ptr) {
403 return false;
404 }
405 Type *ptrType = ptr->getType();
406 return dyn_cast<PointerType>(ptrType)->getAddressSpace() == addrspace;
407}
408
409const Value * AMDGPUDAGToDAGISel::getBasePointerValue(const Value *V) {
410 if (!V) {
411 return NULL;
412 }
413 const Value *ret = NULL;
414 ValueMap<const Value *, bool> ValueBitMap;
415 std::queue<const Value *, std::list<const Value *> > ValueQueue;
416 ValueQueue.push(V);
417 while (!ValueQueue.empty()) {
418 V = ValueQueue.front();
419 if (ValueBitMap.find(V) == ValueBitMap.end()) {
420 ValueBitMap[V] = true;
421 if (dyn_cast<Argument>(V) && dyn_cast<PointerType>(V->getType())) {
422 ret = V;
423 break;
424 } else if (dyn_cast<GlobalVariable>(V)) {
425 ret = V;
426 break;
427 } else if (dyn_cast<Constant>(V)) {
428 const ConstantExpr *CE = dyn_cast<ConstantExpr>(V);
429 if (CE) {
430 ValueQueue.push(CE->getOperand(0));
431 }
432 } else if (const AllocaInst *AI = dyn_cast<AllocaInst>(V)) {
433 ret = AI;
434 break;
435 } else if (const Instruction *I = dyn_cast<Instruction>(V)) {
436 uint32_t numOps = I->getNumOperands();
437 for (uint32_t x = 0; x < numOps; ++x) {
438 ValueQueue.push(I->getOperand(x));
439 }
440 } else {
441 assert(!"Found a Value that we didn't know how to handle!");
442 }
443 }
444 ValueQueue.pop();
445 }
446 return ret;
447}
448
449bool AMDGPUDAGToDAGISel::isGlobalStore(const StoreSDNode *N) {
450 return checkType(N->getSrcValue(), AMDGPUAS::GLOBAL_ADDRESS);
451}
452
453bool AMDGPUDAGToDAGISel::isPrivateStore(const StoreSDNode *N) {
454 return (!checkType(N->getSrcValue(), AMDGPUAS::LOCAL_ADDRESS)
455 && !checkType(N->getSrcValue(), AMDGPUAS::GLOBAL_ADDRESS)
456 && !checkType(N->getSrcValue(), AMDGPUAS::REGION_ADDRESS));
457}
458
459bool AMDGPUDAGToDAGISel::isLocalStore(const StoreSDNode *N) {
460 return checkType(N->getSrcValue(), AMDGPUAS::LOCAL_ADDRESS);
461}
462
463bool AMDGPUDAGToDAGISel::isRegionStore(const StoreSDNode *N) {
464 return checkType(N->getSrcValue(), AMDGPUAS::REGION_ADDRESS);
465}
466
467bool AMDGPUDAGToDAGISel::isConstantLoad(const LoadSDNode *N, int cbID) {
468 if (checkType(N->getSrcValue(), AMDGPUAS::CONSTANT_ADDRESS)) {
469 return true;
470 }
471 MachineMemOperand *MMO = N->getMemOperand();
472 const Value *V = MMO->getValue();
473 const Value *BV = getBasePointerValue(V);
474 if (MMO
475 && MMO->getValue()
476 && ((V && dyn_cast<GlobalValue>(V))
477 || (BV && dyn_cast<GlobalValue>(
478 getBasePointerValue(MMO->getValue()))))) {
479 return checkType(N->getSrcValue(), AMDGPUAS::PRIVATE_ADDRESS);
480 } else {
481 return false;
482 }
483}
484
485bool AMDGPUDAGToDAGISel::isGlobalLoad(const LoadSDNode *N) {
486 return checkType(N->getSrcValue(), AMDGPUAS::GLOBAL_ADDRESS);
487}
488
489bool AMDGPUDAGToDAGISel::isParamLoad(const LoadSDNode *N) {
490 return checkType(N->getSrcValue(), AMDGPUAS::PARAM_I_ADDRESS);
491}
492
493bool AMDGPUDAGToDAGISel::isLocalLoad(const LoadSDNode *N) {
494 return checkType(N->getSrcValue(), AMDGPUAS::LOCAL_ADDRESS);
495}
496
497bool AMDGPUDAGToDAGISel::isRegionLoad(const LoadSDNode *N) {
498 return checkType(N->getSrcValue(), AMDGPUAS::REGION_ADDRESS);
499}
500
501bool AMDGPUDAGToDAGISel::isCPLoad(const LoadSDNode *N) {
502 MachineMemOperand *MMO = N->getMemOperand();
503 if (checkType(N->getSrcValue(), AMDGPUAS::PRIVATE_ADDRESS)) {
504 if (MMO) {
505 const Value *V = MMO->getValue();
506 const PseudoSourceValue *PSV = dyn_cast<PseudoSourceValue>(V);
507 if (PSV && PSV == PseudoSourceValue::getConstantPool()) {
508 return true;
509 }
510 }
511 }
512 return false;
513}
514
515bool AMDGPUDAGToDAGISel::isPrivateLoad(const LoadSDNode *N) {
516 if (checkType(N->getSrcValue(), AMDGPUAS::PRIVATE_ADDRESS)) {
517 // Check to make sure we are not a constant pool load or a constant load
518 // that is marked as a private load
519 if (isCPLoad(N) || isConstantLoad(N, -1)) {
520 return false;
521 }
522 }
523 if (!checkType(N->getSrcValue(), AMDGPUAS::LOCAL_ADDRESS)
524 && !checkType(N->getSrcValue(), AMDGPUAS::GLOBAL_ADDRESS)
525 && !checkType(N->getSrcValue(), AMDGPUAS::REGION_ADDRESS)
526 && !checkType(N->getSrcValue(), AMDGPUAS::CONSTANT_ADDRESS)
527 && !checkType(N->getSrcValue(), AMDGPUAS::PARAM_D_ADDRESS)
528 && !checkType(N->getSrcValue(), AMDGPUAS::PARAM_I_ADDRESS)) {
529 return true;
530 }
531 return false;
532}
533
534const char *AMDGPUDAGToDAGISel::getPassName() const {
535 return "AMDGPU DAG->DAG Pattern Instruction Selection";
536}
537
538#ifdef DEBUGTMP
539#undef INT64_C
540#endif
541#undef DEBUGTMP
542
543///==== AMDGPU Functions ====///
544
Tom Stellard365366f2013-01-23 02:09:06 +0000545bool AMDGPUDAGToDAGISel::SelectGlobalValueConstantOffset(SDValue Addr,
546 SDValue& IntPtr) {
547 if (ConstantSDNode *Cst = dyn_cast<ConstantSDNode>(Addr)) {
548 IntPtr = CurDAG->getIntPtrConstant(Cst->getZExtValue() / 4, true);
549 return true;
550 }
551 return false;
552}
553
554bool AMDGPUDAGToDAGISel::SelectGlobalValueVariableOffset(SDValue Addr,
555 SDValue& BaseReg, SDValue &Offset) {
556 if (!dyn_cast<ConstantSDNode>(Addr)) {
557 BaseReg = Addr;
558 Offset = CurDAG->getIntPtrConstant(0, true);
559 return true;
560 }
561 return false;
562}
563
Tom Stellard75aadc22012-12-11 21:25:42 +0000564bool AMDGPUDAGToDAGISel::SelectADDRVTX_READ(SDValue Addr, SDValue &Base,
565 SDValue &Offset) {
566 ConstantSDNode * IMMOffset;
567
568 if (Addr.getOpcode() == ISD::ADD
569 && (IMMOffset = dyn_cast<ConstantSDNode>(Addr.getOperand(1)))
570 && isInt<16>(IMMOffset->getZExtValue())) {
571
572 Base = Addr.getOperand(0);
573 Offset = CurDAG->getTargetConstant(IMMOffset->getZExtValue(), MVT::i32);
574 return true;
575 // If the pointer address is constant, we can move it to the offset field.
576 } else if ((IMMOffset = dyn_cast<ConstantSDNode>(Addr))
577 && isInt<16>(IMMOffset->getZExtValue())) {
578 Base = CurDAG->getCopyFromReg(CurDAG->getEntryNode(),
579 CurDAG->getEntryNode().getDebugLoc(),
580 AMDGPU::ZERO, MVT::i32);
581 Offset = CurDAG->getTargetConstant(IMMOffset->getZExtValue(), MVT::i32);
582 return true;
583 }
584
585 // Default case, no offset
586 Base = Addr;
587 Offset = CurDAG->getTargetConstant(0, MVT::i32);
588 return true;
589}
590
Tom Stellardf3b2a1e2013-02-06 17:32:29 +0000591bool AMDGPUDAGToDAGISel::SelectADDRIndirect(SDValue Addr, SDValue &Base,
592 SDValue &Offset) {
593 ConstantSDNode *C;
594
595 if ((C = dyn_cast<ConstantSDNode>(Addr))) {
596 Base = CurDAG->getRegister(AMDGPU::INDIRECT_BASE_ADDR, MVT::i32);
597 Offset = CurDAG->getTargetConstant(C->getZExtValue(), MVT::i32);
598 } else if ((Addr.getOpcode() == ISD::ADD || Addr.getOpcode() == ISD::OR) &&
599 (C = dyn_cast<ConstantSDNode>(Addr.getOperand(1)))) {
600 Base = Addr.getOperand(0);
601 Offset = CurDAG->getTargetConstant(C->getZExtValue(), MVT::i32);
602 } else {
603 Base = Addr;
604 Offset = CurDAG->getTargetConstant(0, MVT::i32);
605 }
606
607 return true;
608}
Christian Konigd910b7d2013-02-26 17:52:16 +0000609
610void AMDGPUDAGToDAGISel::PostprocessISelDAG() {
611
612 // Go over all selected nodes and try to fold them a bit more
613 const AMDGPUTargetLowering& Lowering = ((const AMDGPUTargetLowering&)TLI);
614 for (SelectionDAG::allnodes_iterator I = CurDAG->allnodes_begin(),
615 E = CurDAG->allnodes_end(); I != E; ++I) {
616
617 MachineSDNode *Node = dyn_cast<MachineSDNode>(I);
618 if (!Node)
619 continue;
620
621 SDNode *ResNode = Lowering.PostISelFolding(Node, *CurDAG);
622 if (ResNode != Node)
623 ReplaceUses(Node, ResNode);
624 }
625}
626