LLVM 24.0.0git
R600ISelLowering.cpp
Go to the documentation of this file.
1//===-- R600ISelLowering.cpp - R600 DAG Lowering Implementation -----------===//
2//
3// Part of the LLVM Project, under the Apache License v2.0 with LLVM Exceptions.
4// See https://llvm.org/LICENSE.txt for license information.
5// SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception
6//
7//===----------------------------------------------------------------------===//
8//
9/// \file
10/// Custom DAG lowering for R600
11//
12//===----------------------------------------------------------------------===//
13
14#include "R600ISelLowering.h"
15#include "AMDGPU.h"
18#include "R600Defines.h"
20#include "R600Subtarget.h"
21#include "R600TargetMachine.h"
23#include "llvm/IR/IntrinsicsAMDGPU.h"
24#include "llvm/IR/IntrinsicsR600.h"
26
27using namespace llvm;
28
29#define GET_CALLING_CONV_IMPL
30#include "R600GenCallingConv.inc"
31
33 const R600Subtarget &STI)
34 : AMDGPUTargetLowering(TM, STI, STI), Subtarget(&STI),
35 Gen(STI.getGeneration()) {
36 addRegisterClass(MVT::f32, &R600::R600_Reg32RegClass);
37 addRegisterClass(MVT::i32, &R600::R600_Reg32RegClass);
38 addRegisterClass(MVT::v2f32, &R600::R600_Reg64RegClass);
39 addRegisterClass(MVT::v2i32, &R600::R600_Reg64RegClass);
40 addRegisterClass(MVT::v4f32, &R600::R600_Reg128RegClass);
41 addRegisterClass(MVT::v4i32, &R600::R600_Reg128RegClass);
42
45
46 computeRegisterProperties(Subtarget->getRegisterInfo());
47
48 // Legalize loads and stores to the private address space.
49 setOperationAction(ISD::LOAD, {MVT::i32, MVT::v2i32, MVT::v4i32}, Custom);
50
51 // EXTLOAD should be the same as ZEXTLOAD. It is legal for some address
52 // spaces, so it is custom lowered to handle those where it isn't.
54 for (MVT VT : MVT::integer_valuetypes()) {
55 setLoadExtAction(Op, VT, MVT::i1, Promote);
56 setLoadExtAction(Op, VT, MVT::i8, Custom);
57 setLoadExtAction(Op, VT, MVT::i16, Custom);
58 }
59
60 // Workaround for LegalizeDAG asserting on expansion of i1 vector loads.
62 MVT::v2i1, Expand);
63
65 MVT::v4i1, Expand);
66
67 setOperationAction(ISD::STORE, {MVT::i8, MVT::i32, MVT::v2i32, MVT::v4i32},
68 Custom);
69
70 setTruncStoreAction(MVT::i32, MVT::i8, Custom);
71 setTruncStoreAction(MVT::i32, MVT::i16, Custom);
72 // We need to include these since trunc STORES to PRIVATE need
73 // special handling to accommodate RMW
74 setTruncStoreAction(MVT::v2i32, MVT::v2i16, Custom);
75 setTruncStoreAction(MVT::v4i32, MVT::v4i16, Custom);
76 setTruncStoreAction(MVT::v8i32, MVT::v8i16, Custom);
77 setTruncStoreAction(MVT::v16i32, MVT::v16i16, Custom);
78 setTruncStoreAction(MVT::v32i32, MVT::v32i16, Custom);
79 setTruncStoreAction(MVT::v2i32, MVT::v2i8, Custom);
80 setTruncStoreAction(MVT::v4i32, MVT::v4i8, Custom);
81 setTruncStoreAction(MVT::v8i32, MVT::v8i8, Custom);
82 setTruncStoreAction(MVT::v16i32, MVT::v16i8, Custom);
83 setTruncStoreAction(MVT::v32i32, MVT::v32i8, Custom);
84
85 // Workaround for LegalizeDAG asserting on expansion of i1 vector stores.
86 setTruncStoreAction(MVT::v2i32, MVT::v2i1, Expand);
87 setTruncStoreAction(MVT::v4i32, MVT::v4i1, Expand);
88
89 // Set condition code actions
93 MVT::f32, Expand);
94
96 MVT::i32, Expand);
97
99
100 setOperationAction(ISD::SETCC, {MVT::v4i32, MVT::v2i32}, Expand);
101
102 setOperationAction(ISD::BR_CC, {MVT::i32, MVT::f32}, Expand);
104
106
108 {MVT::f32, MVT::v2f32, MVT::v3f32, MVT::v4f32, MVT::v5f32,
109 MVT::v6f32, MVT::v7f32, MVT::v8f32, MVT::v16f32},
110 Expand);
111
113 MVT::f64, Custom);
114
115 setOperationAction(ISD::SELECT_CC, {MVT::f32, MVT::i32}, Custom);
116
117 setOperationAction(ISD::SETCC, {MVT::i32, MVT::f32}, Expand);
118 setOperationAction({ISD::FP_TO_UINT, ISD::FP_TO_SINT}, {MVT::i1, MVT::i64},
119 Custom);
120
121 setOperationAction(ISD::SELECT, {MVT::i32, MVT::f32, MVT::v2i32, MVT::v4i32},
122 Expand);
123
124 // ADD, SUB overflow.
125 // TODO: turn these into Legal?
126 if (Subtarget->hasCARRY())
128
129 if (Subtarget->hasBORROW())
131
132 // Expand sign extension of vectors
133 if (!Subtarget->hasBFE())
135
136 setOperationAction(ISD::SIGN_EXTEND_INREG, {MVT::v2i1, MVT::v4i1}, Expand);
137
138 if (!Subtarget->hasBFE())
140 setOperationAction(ISD::SIGN_EXTEND_INREG, {MVT::v2i8, MVT::v4i8}, Expand);
141
142 if (!Subtarget->hasBFE())
144 setOperationAction(ISD::SIGN_EXTEND_INREG, {MVT::v2i16, MVT::v4i16}, Expand);
145
147 setOperationAction(ISD::SIGN_EXTEND_INREG, {MVT::v2i32, MVT::v4i32}, Expand);
148
150
152
154 {MVT::v2i32, MVT::v2f32, MVT::v4i32, MVT::v4f32}, Custom);
155
157 {MVT::v2i32, MVT::v2f32, MVT::v4i32, MVT::v4f32}, Custom);
158
159 // We don't have 64-bit shifts. Thus we need either SHX i64 or SHX_PARTS i32
160 // to be Legal/Custom in order to avoid library calls.
162 Custom);
163
164 if (!Subtarget->hasFMA())
165 setOperationAction(ISD::FMA, {MVT::f32, MVT::f64}, Expand);
166
167 // FIXME: May need no denormals check
169
170 if (!Subtarget->hasBFI())
171 // fcopysign can be done in a single instruction with BFI.
172 setOperationAction(ISD::FCOPYSIGN, {MVT::f32, MVT::f64}, Expand);
173
174 if (!Subtarget->hasBCNT(32))
176
177 if (!Subtarget->hasBCNT(64))
179
180 if (Subtarget->hasFFBH())
182
183 if (Subtarget->hasFFBL())
185
186 // FIXME: This was moved from AMDGPUTargetLowering, I'm not sure if we
187 // need it for R600.
188 if (Subtarget->hasBFE())
190
193
194 // LLVM will expand these to atomic_cmp_swap(0)
195 // and atomic_swap, respectively.
197
198 // We need to custom lower some of the intrinsics
200 Custom);
201
203
206}
207
209 if (std::next(I) == I->getParent()->end())
210 return false;
211 return std::next(I)->getOpcode() == R600::RETURN;
212}
213
216 MachineBasicBlock *BB) const {
217 MachineFunction *MF = BB->getParent();
218 MachineRegisterInfo &MRI = MF->getRegInfo();
220 const R600InstrInfo *TII = Subtarget->getInstrInfo();
221
222 switch (MI.getOpcode()) {
223 default:
224 // Replace LDS_*_RET instruction that don't have any uses with the
225 // equivalent LDS_*_NORET instruction.
226 if (TII->isLDSRetInstr(MI.getOpcode())) {
227 int DstIdx = TII->getOperandIdx(MI.getOpcode(), R600::OpName::dst);
228 assert(DstIdx != -1);
230 // FIXME: getLDSNoRetOp method only handles LDS_1A1D LDS ops. Add
231 // LDS_1A2D support and remove this special case.
232 if (!MRI.use_empty(MI.getOperand(DstIdx).getReg()) ||
233 MI.getOpcode() == R600::LDS_CMPST_RET)
234 return BB;
235
236 NewMI = BuildMI(*BB, I, BB->findDebugLoc(I),
237 TII->get(R600::getLDSNoRetOp(MI.getOpcode())));
238 for (const MachineOperand &MO : llvm::drop_begin(MI.operands()))
239 NewMI.add(MO);
240 } else {
242 }
243 break;
244
245 case R600::FABS_R600: {
246 MachineInstr *NewMI = TII->buildDefaultInstruction(
247 *BB, I, R600::MOV, MI.getOperand(0).getReg(),
248 MI.getOperand(1).getReg());
249 TII->addFlag(*NewMI, 0, MO_FLAG_ABS);
250 break;
251 }
252
253 case R600::FNEG_R600: {
254 MachineInstr *NewMI = TII->buildDefaultInstruction(
255 *BB, I, R600::MOV, MI.getOperand(0).getReg(),
256 MI.getOperand(1).getReg());
257 TII->addFlag(*NewMI, 0, MO_FLAG_NEG);
258 break;
259 }
260
261 case R600::MASK_WRITE: {
262 Register maskedRegister = MI.getOperand(0).getReg();
263 assert(maskedRegister.isVirtual());
264 MachineInstr * defInstr = MRI.getVRegDef(maskedRegister);
265 TII->addFlag(*defInstr, 0, MO_FLAG_MASK);
266 break;
267 }
268
269 case R600::MOV_IMM_F32:
270 TII->buildMovImm(*BB, I, MI.getOperand(0).getReg(), MI.getOperand(1)
271 .getFPImm()
272 ->getValueAPF()
273 .bitcastToAPInt()
274 .getZExtValue());
275 break;
276
277 case R600::MOV_IMM_I32:
278 TII->buildMovImm(*BB, I, MI.getOperand(0).getReg(),
279 MI.getOperand(1).getImm());
280 break;
281
282 case R600::MOV_IMM_GLOBAL_ADDR: {
283 //TODO: Perhaps combine this instruction with the next if possible
284 auto MIB = TII->buildDefaultInstruction(
285 *BB, MI, R600::MOV, MI.getOperand(0).getReg(), R600::ALU_LITERAL_X);
286 int Idx = TII->getOperandIdx(*MIB, R600::OpName::literal);
287 //TODO: Ugh this is rather ugly
288 const MachineOperand &MO = MI.getOperand(1);
289 MIB->getOperand(Idx).ChangeToGA(MO.getGlobal(), MO.getOffset(),
290 MO.getTargetFlags());
291 break;
292 }
293
294 case R600::CONST_COPY: {
295 MachineInstr *NewMI = TII->buildDefaultInstruction(
296 *BB, MI, R600::MOV, MI.getOperand(0).getReg(), R600::ALU_CONST);
297 TII->setImmOperand(*NewMI, R600::OpName::src0_sel,
298 MI.getOperand(1).getImm());
299 break;
300 }
301
302 case R600::RAT_WRITE_CACHELESS_32_eg:
303 case R600::RAT_WRITE_CACHELESS_64_eg:
304 case R600::RAT_WRITE_CACHELESS_128_eg:
305 BuildMI(*BB, I, BB->findDebugLoc(I), TII->get(MI.getOpcode()))
306 .add(MI.getOperand(0))
307 .add(MI.getOperand(1))
308 .addImm(isEOP(I)); // Set End of program bit
309 break;
310
311 case R600::RAT_STORE_TYPED_eg:
312 BuildMI(*BB, I, BB->findDebugLoc(I), TII->get(MI.getOpcode()))
313 .add(MI.getOperand(0))
314 .add(MI.getOperand(1))
315 .add(MI.getOperand(2))
316 .addImm(isEOP(I)); // Set End of program bit
317 break;
318
319 case R600::BRANCH:
320 BuildMI(*BB, I, BB->findDebugLoc(I), TII->get(R600::JUMP))
321 .add(MI.getOperand(0));
322 break;
323
324 case R600::BRANCH_COND_f32: {
325 MachineInstr *NewMI =
326 BuildMI(*BB, I, BB->findDebugLoc(I), TII->get(R600::PRED_X),
327 R600::PREDICATE_BIT)
328 .add(MI.getOperand(1))
329 .addImm(R600::PRED_SETNE)
330 .addImm(0); // Flags
331 TII->addFlag(*NewMI, 0, MO_FLAG_PUSH);
332 BuildMI(*BB, I, BB->findDebugLoc(I), TII->get(R600::JUMP_COND))
333 .add(MI.getOperand(0))
334 .addReg(R600::PREDICATE_BIT, RegState::Kill);
335 break;
336 }
337
338 case R600::BRANCH_COND_i32: {
339 MachineInstr *NewMI =
340 BuildMI(*BB, I, BB->findDebugLoc(I), TII->get(R600::PRED_X),
341 R600::PREDICATE_BIT)
342 .add(MI.getOperand(1))
343 .addImm(R600::PRED_SETNE_INT)
344 .addImm(0); // Flags
345 TII->addFlag(*NewMI, 0, MO_FLAG_PUSH);
346 BuildMI(*BB, I, BB->findDebugLoc(I), TII->get(R600::JUMP_COND))
347 .add(MI.getOperand(0))
348 .addReg(R600::PREDICATE_BIT, RegState::Kill);
349 break;
350 }
351
352 case R600::EG_ExportSwz:
353 case R600::R600_ExportSwz: {
354 // Instruction is left unmodified if its not the last one of its type
355 bool isLastInstructionOfItsType = true;
356 unsigned InstExportType = MI.getOperand(1).getImm();
357 for (MachineBasicBlock::iterator NextExportInst = std::next(I),
358 EndBlock = BB->end(); NextExportInst != EndBlock;
359 NextExportInst = std::next(NextExportInst)) {
360 if (NextExportInst->getOpcode() == R600::EG_ExportSwz ||
361 NextExportInst->getOpcode() == R600::R600_ExportSwz) {
362 unsigned CurrentInstExportType = NextExportInst->getOperand(1)
363 .getImm();
364 if (CurrentInstExportType == InstExportType) {
365 isLastInstructionOfItsType = false;
366 break;
367 }
368 }
369 }
370 bool EOP = isEOP(I);
371 if (!EOP && !isLastInstructionOfItsType)
372 return BB;
373 unsigned CfInst = (MI.getOpcode() == R600::EG_ExportSwz) ? 84 : 40;
374 BuildMI(*BB, I, BB->findDebugLoc(I), TII->get(MI.getOpcode()))
375 .add(MI.getOperand(0))
376 .add(MI.getOperand(1))
377 .add(MI.getOperand(2))
378 .add(MI.getOperand(3))
379 .add(MI.getOperand(4))
380 .add(MI.getOperand(5))
381 .add(MI.getOperand(6))
382 .addImm(CfInst)
383 .addImm(EOP);
384 break;
385 }
386 case R600::RETURN: {
387 return BB;
388 }
389 }
390
391 MI.eraseFromParent();
392 return BB;
393}
394
395//===----------------------------------------------------------------------===//
396// Custom DAG Lowering Operations
397//===----------------------------------------------------------------------===//
398
402 switch (Op.getOpcode()) {
403 default: return AMDGPUTargetLowering::LowerOperation(Op, DAG);
404 case ISD::EXTRACT_VECTOR_ELT: return LowerEXTRACT_VECTOR_ELT(Op, DAG);
405 case ISD::INSERT_VECTOR_ELT: return LowerINSERT_VECTOR_ELT(Op, DAG);
406 case ISD::SHL_PARTS:
407 case ISD::SRA_PARTS:
408 case ISD::SRL_PARTS: return LowerShiftParts(Op, DAG);
409 case ISD::UADDO: return LowerUADDSUBO(Op, DAG, ISD::ADD, AMDGPUISD::CARRY);
410 case ISD::USUBO: return LowerUADDSUBO(Op, DAG, ISD::SUB, AMDGPUISD::BORROW);
411 case ISD::FCOS:
412 case ISD::FSIN: return LowerTrig(Op, DAG);
413 case ISD::SELECT_CC: return LowerSELECT_CC(Op, DAG);
414 case ISD::STORE: return LowerSTORE(Op, DAG);
415 case ISD::LOAD: {
416 SDValue Result = LowerLOAD(Op, DAG);
417 assert((!Result.getNode() ||
418 Result.getNode()->getNumValues() == 2) &&
419 "Load should return a value and a chain");
420 return Result;
421 }
422
423 case ISD::BRCOND: return LowerBRCOND(Op, DAG);
424 case ISD::GlobalAddress: return LowerGlobalAddress(MFI, Op, DAG);
425 case ISD::FrameIndex: return lowerFrameIndex(Op, DAG);
427 return lowerADDRSPACECAST(Op, DAG);
428 case ISD::INTRINSIC_VOID: {
429 SDValue Chain = Op.getOperand(0);
430 unsigned IntrinsicID = Op.getConstantOperandVal(1);
431 switch (IntrinsicID) {
432 case Intrinsic::r600_store_swizzle: {
433 SDLoc DL(Op);
434 const SDValue Args[8] = {
435 Chain,
436 Op.getOperand(2), // Export Value
437 Op.getOperand(3), // ArrayBase
438 Op.getOperand(4), // Type
439 DAG.getConstant(0, DL, MVT::i32), // SWZ_X
440 DAG.getConstant(1, DL, MVT::i32), // SWZ_Y
441 DAG.getConstant(2, DL, MVT::i32), // SWZ_Z
442 DAG.getConstant(3, DL, MVT::i32) // SWZ_W
443 };
444 return DAG.getNode(AMDGPUISD::R600_EXPORT, DL, Op.getValueType(), Args);
445 }
446
447 // default for switch(IntrinsicID)
448 default: break;
449 }
450 // break out of case ISD::INTRINSIC_VOID in switch(Op.getOpcode())
451 break;
452 }
454 unsigned IntrinsicID = Op.getConstantOperandVal(0);
455 EVT VT = Op.getValueType();
456 SDLoc DL(Op);
457 switch (IntrinsicID) {
458 case Intrinsic::r600_tex:
459 case Intrinsic::r600_texc: {
460 unsigned TextureOp;
461 switch (IntrinsicID) {
462 case Intrinsic::r600_tex:
463 TextureOp = 0;
464 break;
465 case Intrinsic::r600_texc:
466 TextureOp = 1;
467 break;
468 default:
469 llvm_unreachable("unhandled texture operation");
470 }
471
472 SDValue TexArgs[19] = {
473 DAG.getConstant(TextureOp, DL, MVT::i32),
474 Op.getOperand(1),
475 DAG.getConstant(0, DL, MVT::i32),
476 DAG.getConstant(1, DL, MVT::i32),
477 DAG.getConstant(2, DL, MVT::i32),
478 DAG.getConstant(3, DL, MVT::i32),
479 Op.getOperand(2),
480 Op.getOperand(3),
481 Op.getOperand(4),
482 DAG.getConstant(0, DL, MVT::i32),
483 DAG.getConstant(1, DL, MVT::i32),
484 DAG.getConstant(2, DL, MVT::i32),
485 DAG.getConstant(3, DL, MVT::i32),
486 Op.getOperand(5),
487 Op.getOperand(6),
488 Op.getOperand(7),
489 Op.getOperand(8),
490 Op.getOperand(9),
491 Op.getOperand(10)
492 };
493 return DAG.getNode(AMDGPUISD::TEXTURE_FETCH, DL, MVT::v4f32, TexArgs);
494 }
495 case Intrinsic::r600_dot4: {
496 SDValue Args[8] = {
497 DAG.getNode(ISD::EXTRACT_VECTOR_ELT, DL, MVT::f32, Op.getOperand(1),
498 DAG.getConstant(0, DL, MVT::i32)),
499 DAG.getNode(ISD::EXTRACT_VECTOR_ELT, DL, MVT::f32, Op.getOperand(2),
500 DAG.getConstant(0, DL, MVT::i32)),
501 DAG.getNode(ISD::EXTRACT_VECTOR_ELT, DL, MVT::f32, Op.getOperand(1),
502 DAG.getConstant(1, DL, MVT::i32)),
503 DAG.getNode(ISD::EXTRACT_VECTOR_ELT, DL, MVT::f32, Op.getOperand(2),
504 DAG.getConstant(1, DL, MVT::i32)),
505 DAG.getNode(ISD::EXTRACT_VECTOR_ELT, DL, MVT::f32, Op.getOperand(1),
506 DAG.getConstant(2, DL, MVT::i32)),
507 DAG.getNode(ISD::EXTRACT_VECTOR_ELT, DL, MVT::f32, Op.getOperand(2),
508 DAG.getConstant(2, DL, MVT::i32)),
509 DAG.getNode(ISD::EXTRACT_VECTOR_ELT, DL, MVT::f32, Op.getOperand(1),
510 DAG.getConstant(3, DL, MVT::i32)),
511 DAG.getNode(ISD::EXTRACT_VECTOR_ELT, DL, MVT::f32, Op.getOperand(2),
512 DAG.getConstant(3, DL, MVT::i32))
513 };
514 return DAG.getNode(AMDGPUISD::DOT4, DL, MVT::f32, Args);
515 }
516
517 case Intrinsic::r600_implicitarg_ptr: {
520 return DAG.getConstant(ByteOffset, DL, PtrVT);
521 }
522 case Intrinsic::r600_read_ngroups_x:
523 return LowerImplicitParameter(DAG, VT, DL, 0);
524 case Intrinsic::r600_read_ngroups_y:
525 return LowerImplicitParameter(DAG, VT, DL, 1);
526 case Intrinsic::r600_read_ngroups_z:
527 return LowerImplicitParameter(DAG, VT, DL, 2);
528 case Intrinsic::r600_read_global_size_x:
529 return LowerImplicitParameter(DAG, VT, DL, 3);
530 case Intrinsic::r600_read_global_size_y:
531 return LowerImplicitParameter(DAG, VT, DL, 4);
532 case Intrinsic::r600_read_global_size_z:
533 return LowerImplicitParameter(DAG, VT, DL, 5);
534 case Intrinsic::r600_read_local_size_x:
535 return LowerImplicitParameter(DAG, VT, DL, 6);
536 case Intrinsic::r600_read_local_size_y:
537 return LowerImplicitParameter(DAG, VT, DL, 7);
538 case Intrinsic::r600_read_local_size_z:
539 return LowerImplicitParameter(DAG, VT, DL, 8);
540
541 case Intrinsic::r600_read_tgid_x:
542 case Intrinsic::amdgcn_workgroup_id_x:
543 return CreateLiveInRegisterRaw(DAG, &R600::R600_TReg32RegClass,
544 R600::T1_X, VT);
545 case Intrinsic::r600_read_tgid_y:
546 case Intrinsic::amdgcn_workgroup_id_y:
547 return CreateLiveInRegisterRaw(DAG, &R600::R600_TReg32RegClass,
548 R600::T1_Y, VT);
549 case Intrinsic::r600_read_tgid_z:
550 case Intrinsic::amdgcn_workgroup_id_z:
551 return CreateLiveInRegisterRaw(DAG, &R600::R600_TReg32RegClass,
552 R600::T1_Z, VT);
553 case Intrinsic::r600_read_tidig_x:
554 case Intrinsic::amdgcn_workitem_id_x:
555 return CreateLiveInRegisterRaw(DAG, &R600::R600_TReg32RegClass,
556 R600::T0_X, VT);
557 case Intrinsic::r600_read_tidig_y:
558 case Intrinsic::amdgcn_workitem_id_y:
559 return CreateLiveInRegisterRaw(DAG, &R600::R600_TReg32RegClass,
560 R600::T0_Y, VT);
561 case Intrinsic::r600_read_tidig_z:
562 case Intrinsic::amdgcn_workitem_id_z:
563 return CreateLiveInRegisterRaw(DAG, &R600::R600_TReg32RegClass,
564 R600::T0_Z, VT);
565
566 case Intrinsic::r600_recipsqrt_ieee:
567 return DAG.getNode(AMDGPUISD::RSQ, DL, VT, Op.getOperand(1));
568
569 case Intrinsic::r600_recipsqrt_clamped:
570 return DAG.getNode(AMDGPUISD::RSQ_CLAMP, DL, VT, Op.getOperand(1));
571 default:
572 return Op;
573 }
574
575 // break out of case ISD::INTRINSIC_WO_CHAIN in switch(Op.getOpcode())
576 break;
577 }
578 } // end switch(Op.getOpcode())
579 return SDValue();
580}
581
584 SelectionDAG &DAG) const {
585 switch (N->getOpcode()) {
586 default:
588 return;
589 case ISD::FP_TO_UINT:
590 if (N->getValueType(0) == MVT::i1) {
591 Results.push_back(lowerFP_TO_UINT(N->getOperand(0), DAG));
592 return;
593 }
594 // Since we don't care about out of bounds values we can use FP_TO_SINT for
595 // uints too. The DAGLegalizer code for uint considers some extra cases
596 // which are not necessary here.
597 [[fallthrough]];
598 case ISD::FP_TO_SINT: {
599 if (N->getValueType(0) == MVT::i1) {
600 Results.push_back(lowerFP_TO_SINT(N->getOperand(0), DAG));
601 return;
602 }
603
604 SDValue Result;
605 if (expandFP_TO_SINT(N, Result, DAG))
606 Results.push_back(Result);
607 return;
608 }
609 case ISD::SDIVREM: {
610 SDValue Op = SDValue(N, 1);
611 SDValue RES = LowerSDIVREM(Op, DAG);
612 Results.push_back(RES);
613 Results.push_back(RES.getValue(1));
614 break;
615 }
616 case ISD::UDIVREM: {
617 SDValue Op = SDValue(N, 0);
619 break;
620 }
621 }
622}
623
624SDValue R600TargetLowering::vectorToVerticalVector(SelectionDAG &DAG,
625 SDValue Vector) const {
626 SDLoc DL(Vector);
627 EVT VecVT = Vector.getValueType();
628 EVT EltVT = VecVT.getVectorElementType();
630
631 for (unsigned i = 0, e = VecVT.getVectorNumElements(); i != e; ++i) {
632 Args.push_back(DAG.getNode(ISD::EXTRACT_VECTOR_ELT, DL, EltVT, Vector,
633 DAG.getVectorIdxConstant(i, DL)));
634 }
635
636 return DAG.getNode(AMDGPUISD::BUILD_VERTICAL_VECTOR, DL, VecVT, Args);
637}
638
639SDValue R600TargetLowering::LowerEXTRACT_VECTOR_ELT(SDValue Op,
640 SelectionDAG &DAG) const {
641 SDLoc DL(Op);
642 SDValue Vector = Op.getOperand(0);
643 SDValue Index = Op.getOperand(1);
644
645 if (isa<ConstantSDNode>(Index) ||
647 return Op;
648
649 Vector = vectorToVerticalVector(DAG, Vector);
650 return DAG.getNode(ISD::EXTRACT_VECTOR_ELT, DL, Op.getValueType(),
651 Vector, Index);
652}
653
654SDValue R600TargetLowering::LowerINSERT_VECTOR_ELT(SDValue Op,
655 SelectionDAG &DAG) const {
656 SDLoc DL(Op);
657 SDValue Vector = Op.getOperand(0);
658 SDValue Value = Op.getOperand(1);
659 SDValue Index = Op.getOperand(2);
660
661 if (isa<ConstantSDNode>(Index) ||
663 return Op;
664
665 Vector = vectorToVerticalVector(DAG, Vector);
666 SDValue Insert = DAG.getNode(ISD::INSERT_VECTOR_ELT, DL, Op.getValueType(),
667 Vector, Value, Index);
668 return vectorToVerticalVector(DAG, Insert);
669}
670
671SDValue R600TargetLowering::LowerGlobalAddress(AMDGPUMachineFunctionInfo *MFI,
672 SDValue Op,
673 SelectionDAG &DAG) const {
674 GlobalAddressSDNode *GSD = cast<GlobalAddressSDNode>(Op);
677
678 const DataLayout &DL = DAG.getDataLayout();
679 const GlobalValue *GV = GSD->getGlobal();
680 MVT ConstPtrVT = getPointerTy(DL, AMDGPUAS::CONSTANT_ADDRESS);
681
682 SDValue GA = DAG.getTargetGlobalAddress(GV, SDLoc(GSD), ConstPtrVT);
683 return DAG.getNode(AMDGPUISD::CONST_DATA_PTR, SDLoc(GSD), ConstPtrVT, GA);
684}
685
686SDValue R600TargetLowering::LowerTrig(SDValue Op, SelectionDAG &DAG) const {
687 // On hw >= R700, COS/SIN input must be between -1. and 1.
688 // Thus we lower them to TRIG ( FRACT ( x / 2Pi + 0.5) - 0.5)
689 EVT VT = Op.getValueType();
690 SDValue Arg = Op.getOperand(0);
691 SDLoc DL(Op);
692
693 // TODO: Should this propagate fast-math-flags?
694 SDValue FractPart = DAG.getNode(AMDGPUISD::FRACT, DL, VT,
695 DAG.getNode(ISD::FADD, DL, VT,
696 DAG.getNode(ISD::FMUL, DL, VT, Arg,
697 DAG.getConstantFP(0.15915494309, DL, MVT::f32)),
698 DAG.getConstantFP(0.5, DL, MVT::f32)));
699 unsigned TrigNode;
700 switch (Op.getOpcode()) {
701 case ISD::FCOS:
702 TrigNode = AMDGPUISD::COS_HW;
703 break;
704 case ISD::FSIN:
705 TrigNode = AMDGPUISD::SIN_HW;
706 break;
707 default:
708 llvm_unreachable("Wrong trig opcode");
709 }
710 SDValue TrigVal = DAG.getNode(TrigNode, DL, VT,
711 DAG.getNode(ISD::FADD, DL, VT, FractPart,
712 DAG.getConstantFP(-0.5, DL, MVT::f32)));
713 if (Gen >= AMDGPUSubtarget::R700)
714 return TrigVal;
715 // On R600 hw, COS/SIN input must be between -Pi and Pi.
716 return DAG.getNode(ISD::FMUL, DL, VT, TrigVal,
717 DAG.getConstantFP(numbers::pif, DL, MVT::f32));
718}
719
720SDValue R600TargetLowering::LowerShiftParts(SDValue Op,
721 SelectionDAG &DAG) const {
722 SDValue Lo, Hi;
723 expandShiftParts(Op.getNode(), Lo, Hi, DAG);
724 return DAG.getMergeValues({Lo, Hi}, SDLoc(Op));
725}
726
727SDValue R600TargetLowering::LowerUADDSUBO(SDValue Op, SelectionDAG &DAG,
728 unsigned mainop, unsigned ovf) const {
729 SDLoc DL(Op);
730 EVT VT = Op.getValueType();
731
732 SDValue Lo = Op.getOperand(0);
733 SDValue Hi = Op.getOperand(1);
734
735 SDValue OVF = DAG.getNode(ovf, DL, VT, Lo, Hi);
736 // Extend sign.
737 OVF = DAG.getNode(ISD::SIGN_EXTEND_INREG, DL, VT, OVF,
738 DAG.getValueType(MVT::i1));
739
740 SDValue Res = DAG.getNode(mainop, DL, VT, Lo, Hi);
741
742 return DAG.getNode(ISD::MERGE_VALUES, DL, DAG.getVTList(VT, VT), Res, OVF);
743}
744
745SDValue R600TargetLowering::lowerFP_TO_UINT(SDValue Op, SelectionDAG &DAG) const {
746 SDLoc DL(Op);
747 return DAG.getNode(
749 DL,
750 MVT::i1,
751 Op, DAG.getConstantFP(1.0f, DL, MVT::f32),
753}
754
755SDValue R600TargetLowering::lowerFP_TO_SINT(SDValue Op, SelectionDAG &DAG) const {
756 SDLoc DL(Op);
757 return DAG.getNode(
759 DL,
760 MVT::i1,
761 Op, DAG.getConstantFP(-1.0f, DL, MVT::f32),
763}
764
765SDValue R600TargetLowering::LowerImplicitParameter(SelectionDAG &DAG, EVT VT,
766 const SDLoc &DL,
767 unsigned DwordOffset) const {
768 unsigned ByteOffset = DwordOffset * 4;
769 PointerType *PtrType =
771
772 // We shouldn't be using an offset wider than 16-bits for implicit parameters.
773 assert(isInt<16>(ByteOffset));
774
775 return DAG.getLoad(VT, DL, DAG.getEntryNode(),
776 DAG.getConstant(ByteOffset, DL, MVT::i32), // PTR
777 MachinePointerInfo(ConstantPointerNull::get(PtrType)));
778}
779
780bool R600TargetLowering::isZero(SDValue Op) const {
781 if (ConstantSDNode *Cst = dyn_cast<ConstantSDNode>(Op))
782 return Cst->isZero();
783 if (ConstantFPSDNode *CstFP = dyn_cast<ConstantFPSDNode>(Op))
784 return CstFP->isZero();
785 return false;
786}
787
788bool R600TargetLowering::isHWTrueValue(SDValue Op) const {
789 if (ConstantFPSDNode * CFP = dyn_cast<ConstantFPSDNode>(Op)) {
790 return CFP->isOne();
791 }
792 return isAllOnesConstant(Op);
793}
794
795bool R600TargetLowering::isHWFalseValue(SDValue Op) const {
796 if (ConstantFPSDNode * CFP = dyn_cast<ConstantFPSDNode>(Op)) {
797 return CFP->getValueAPF().isZero();
798 }
799 return isNullConstant(Op);
800}
801
802SDValue R600TargetLowering::LowerSELECT_CC(SDValue Op, SelectionDAG &DAG) const {
803 SDLoc DL(Op);
804 EVT VT = Op.getValueType();
805
806 SDValue LHS = Op.getOperand(0);
807 SDValue RHS = Op.getOperand(1);
808 SDValue True = Op.getOperand(2);
809 SDValue False = Op.getOperand(3);
810 SDValue CC = Op.getOperand(4);
811 SDValue Temp;
812
813 if (VT == MVT::f32) {
814 DAGCombinerInfo DCI(DAG, AfterLegalizeVectorOps, true, nullptr);
815 SDValue MinMax = combineFMinMaxLegacy(DL, VT, LHS, RHS, True, False, CC, DCI);
816 if (MinMax)
817 return MinMax;
818 }
819
820 // LHS and RHS are guaranteed to be the same value type
821 EVT CompareVT = LHS.getValueType();
822
823 // Check if we can lower this to a native operation.
824
825 // Try to lower to a SET* instruction:
826 //
827 // SET* can match the following patterns:
828 //
829 // select_cc f32, f32, -1, 0, cc_supported
830 // select_cc f32, f32, 1.0f, 0.0f, cc_supported
831 // select_cc i32, i32, -1, 0, cc_supported
832 //
833
834 // Move hardware True/False values to the correct operand.
835 if (isHWTrueValue(False) && isHWFalseValue(True)) {
836 ISD::CondCode CCOpcode = cast<CondCodeSDNode>(CC)->get();
837 ISD::CondCode InverseCC = ISD::getSetCCInverse(CCOpcode, CompareVT);
838 if (isCondCodeLegal(InverseCC, CompareVT.getSimpleVT())) {
839 std::swap(False, True);
840 CC = DAG.getCondCode(InverseCC);
841 } else {
842 ISD::CondCode SwapInvCC = ISD::getSetCCSwappedOperands(InverseCC);
843 if (isCondCodeLegal(SwapInvCC, CompareVT.getSimpleVT())) {
844 std::swap(False, True);
845 std::swap(LHS, RHS);
846 CC = DAG.getCondCode(SwapInvCC);
847 }
848 }
849 }
850
851 if (isHWTrueValue(True) && isHWFalseValue(False) &&
852 (CompareVT == VT || VT == MVT::i32)) {
853 // This can be matched by a SET* instruction.
854 return DAG.getNode(ISD::SELECT_CC, DL, VT, LHS, RHS, True, False, CC);
855 }
856
857 // Try to lower to a CND* instruction:
858 //
859 // CND* can match the following patterns:
860 //
861 // select_cc f32, 0.0, f32, f32, cc_supported
862 // select_cc f32, 0.0, i32, i32, cc_supported
863 // select_cc i32, 0, f32, f32, cc_supported
864 // select_cc i32, 0, i32, i32, cc_supported
865 //
866
867 // Try to move the zero value to the RHS
868 if (isZero(LHS)) {
869 ISD::CondCode CCOpcode = cast<CondCodeSDNode>(CC)->get();
870 // Try swapping the operands
871 ISD::CondCode CCSwapped = ISD::getSetCCSwappedOperands(CCOpcode);
872 if (isCondCodeLegal(CCSwapped, CompareVT.getSimpleVT())) {
873 std::swap(LHS, RHS);
874 CC = DAG.getCondCode(CCSwapped);
875 } else {
876 // Try inverting the condition and then swapping the operands
877 ISD::CondCode CCInv = ISD::getSetCCInverse(CCOpcode, CompareVT);
878 CCSwapped = ISD::getSetCCSwappedOperands(CCInv);
879 if (isCondCodeLegal(CCSwapped, CompareVT.getSimpleVT())) {
880 std::swap(True, False);
881 std::swap(LHS, RHS);
882 CC = DAG.getCondCode(CCSwapped);
883 }
884 }
885 }
886 if (isZero(RHS)) {
887 SDValue Cond = LHS;
888 SDValue Zero = RHS;
889 ISD::CondCode CCOpcode = cast<CondCodeSDNode>(CC)->get();
890 if (CompareVT != VT) {
891 // Bitcast True / False to the correct types. This will end up being
892 // a nop, but it allows us to define only a single pattern in the
893 // .TD files for each CND* instruction rather than having to have
894 // one pattern for integer True/False and one for fp True/False
895 True = DAG.getNode(ISD::BITCAST, DL, CompareVT, True);
896 False = DAG.getNode(ISD::BITCAST, DL, CompareVT, False);
897 }
898
899 switch (CCOpcode) {
900 case ISD::SETONE:
901 case ISD::SETUNE:
902 case ISD::SETNE:
903 CCOpcode = ISD::getSetCCInverse(CCOpcode, CompareVT);
904 Temp = True;
905 True = False;
906 False = Temp;
907 break;
908 default:
909 break;
910 }
911 SDValue SelectNode = DAG.getNode(ISD::SELECT_CC, DL, CompareVT,
912 Cond, Zero,
913 True, False,
914 DAG.getCondCode(CCOpcode));
915 return DAG.getNode(ISD::BITCAST, DL, VT, SelectNode);
916 }
917
918 // If we make it this for it means we have no native instructions to handle
919 // this SELECT_CC, so we must lower it.
920 SDValue HWTrue, HWFalse;
921
922 if (CompareVT == MVT::f32) {
923 HWTrue = DAG.getConstantFP(1.0f, DL, CompareVT);
924 HWFalse = DAG.getConstantFP(0.0f, DL, CompareVT);
925 } else if (CompareVT == MVT::i32) {
926 HWTrue = DAG.getAllOnesConstant(DL, CompareVT);
927 HWFalse = DAG.getConstant(0, DL, CompareVT);
928 }
929 else {
930 llvm_unreachable("Unhandled value type in LowerSELECT_CC");
931 }
932
933 // Lower this unsupported SELECT_CC into a combination of two supported
934 // SELECT_CC operations.
935 SDValue Cond = DAG.getNode(ISD::SELECT_CC, DL, CompareVT, LHS, RHS, HWTrue, HWFalse, CC);
936
937 return DAG.getNode(ISD::SELECT_CC, DL, VT,
938 Cond, HWFalse,
939 True, False,
941}
942
943SDValue R600TargetLowering::lowerADDRSPACECAST(SDValue Op,
944 SelectionDAG &DAG) const {
945 SDLoc SL(Op);
946 EVT VT = Op.getValueType();
947
948 const AddrSpaceCastSDNode *ASC = cast<AddrSpaceCastSDNode>(Op);
949 unsigned SrcAS = ASC->getSrcAddressSpace();
950 unsigned DestAS = ASC->getDestAddressSpace();
951
952 if (isNullConstant(Op.getOperand(0)) && SrcAS == AMDGPUAS::FLAT_ADDRESS)
953 return DAG.getSignedConstant(AMDGPU::getNullPointerValue(DestAS), SL, VT);
954
955 return Op;
956}
957
958/// LLVM generates byte-addressed pointers. For indirect addressing, we need to
959/// convert these pointers to a register index. Each register holds
960/// 16 bytes, (4 x 32bit sub-register), but we need to take into account the
961/// \p StackWidth, which tells us how many of the 4 sub-registers will be used
962/// for indirect addressing.
963SDValue R600TargetLowering::stackPtrToRegIndex(SDValue Ptr,
964 unsigned StackWidth,
965 SelectionDAG &DAG) const {
966 unsigned SRLPad;
967 switch(StackWidth) {
968 case 1:
969 SRLPad = 2;
970 break;
971 case 2:
972 SRLPad = 3;
973 break;
974 case 4:
975 SRLPad = 4;
976 break;
977 default: llvm_unreachable("Invalid stack width");
978 }
979
980 SDLoc DL(Ptr);
981 return DAG.getNode(ISD::SRL, DL, Ptr.getValueType(), Ptr,
982 DAG.getConstant(SRLPad, DL, MVT::i32));
983}
984
985void R600TargetLowering::getStackAddress(unsigned StackWidth,
986 unsigned ElemIdx,
987 unsigned &Channel,
988 unsigned &PtrIncr) const {
989 switch (StackWidth) {
990 default:
991 case 1:
992 Channel = 0;
993 if (ElemIdx > 0) {
994 PtrIncr = 1;
995 } else {
996 PtrIncr = 0;
997 }
998 break;
999 case 2:
1000 Channel = ElemIdx % 2;
1001 if (ElemIdx == 2) {
1002 PtrIncr = 1;
1003 } else {
1004 PtrIncr = 0;
1005 }
1006 break;
1007 case 4:
1008 Channel = ElemIdx;
1009 PtrIncr = 0;
1010 break;
1011 }
1012}
1013
1014SDValue R600TargetLowering::lowerPrivateTruncStore(StoreSDNode *Store,
1015 SelectionDAG &DAG) const {
1016 SDLoc DL(Store);
1017 //TODO: Who creates the i8 stores?
1018 assert(Store->isTruncatingStore()
1019 || Store->getValue().getValueType() == MVT::i8);
1020 assert(Store->getAddressSpace() == AMDGPUAS::PRIVATE_ADDRESS);
1021
1022 SDValue Mask;
1023 if (Store->getMemoryVT() == MVT::i8) {
1024 assert(Store->getAlign() >= 1);
1025 Mask = DAG.getConstant(0xff, DL, MVT::i32);
1026 } else if (Store->getMemoryVT() == MVT::i16) {
1027 assert(Store->getAlign() >= 2);
1028 Mask = DAG.getConstant(0xffff, DL, MVT::i32);
1029 } else {
1030 llvm_unreachable("Unsupported private trunc store");
1031 }
1032
1033 SDValue OldChain = Store->getChain();
1034 bool VectorTrunc = (OldChain.getOpcode() == AMDGPUISD::DUMMY_CHAIN);
1035 // Skip dummy
1036 SDValue Chain = VectorTrunc ? OldChain->getOperand(0) : OldChain;
1037 SDValue BasePtr = Store->getBasePtr();
1038 SDValue Offset = Store->getOffset();
1039 EVT MemVT = Store->getMemoryVT();
1040
1041 SDValue LoadPtr = BasePtr;
1042 if (!Offset.isUndef()) {
1043 LoadPtr = DAG.getNode(ISD::ADD, DL, MVT::i32, BasePtr, Offset);
1044 }
1045
1046 // Get dword location
1047 // TODO: this should be eliminated by the future SHR ptr, 2
1048 SDValue Ptr = DAG.getNode(ISD::AND, DL, MVT::i32, LoadPtr,
1049 DAG.getConstant(0xfffffffc, DL, MVT::i32));
1050
1051 // Load dword
1052 // TODO: can we be smarter about machine pointer info?
1053 MachinePointerInfo PtrInfo(AMDGPUAS::PRIVATE_ADDRESS);
1054 SDValue Dst = DAG.getLoad(MVT::i32, DL, Chain, Ptr, PtrInfo);
1055
1056 Chain = Dst.getValue(1);
1057
1058 // Get offset in dword
1059 SDValue ByteIdx = DAG.getNode(ISD::AND, DL, MVT::i32, LoadPtr,
1060 DAG.getConstant(0x3, DL, MVT::i32));
1061
1062 // Convert byte offset to bit shift
1063 SDValue ShiftAmt = DAG.getNode(ISD::SHL, DL, MVT::i32, ByteIdx,
1064 DAG.getConstant(3, DL, MVT::i32));
1065
1066 // TODO: Contrary to the name of the function,
1067 // it also handles sub i32 non-truncating stores (like i1)
1068 SDValue SExtValue = DAG.getNode(ISD::SIGN_EXTEND, DL, MVT::i32,
1069 Store->getValue());
1070
1071 // Mask the value to the right type
1072 SDValue MaskedValue = DAG.getZeroExtendInReg(SExtValue, DL, MemVT);
1073
1074 // Shift the value in place
1075 SDValue ShiftedValue = DAG.getNode(ISD::SHL, DL, MVT::i32,
1076 MaskedValue, ShiftAmt);
1077
1078 // Shift the mask in place
1079 SDValue DstMask = DAG.getNode(ISD::SHL, DL, MVT::i32, Mask, ShiftAmt);
1080
1081 // Invert the mask. NOTE: if we had native ROL instructions we could
1082 // use inverted mask
1083 DstMask = DAG.getNOT(DL, DstMask, MVT::i32);
1084
1085 // Cleanup the target bits
1086 Dst = DAG.getNode(ISD::AND, DL, MVT::i32, Dst, DstMask);
1087
1088 // Add the new bits
1089 SDValue Value = DAG.getNode(ISD::OR, DL, MVT::i32, Dst, ShiftedValue);
1090
1091 // Store dword
1092 // TODO: Can we be smarter about MachinePointerInfo?
1093 SDValue NewStore = DAG.getStore(Chain, DL, Value, Ptr, PtrInfo);
1094
1095 // If we are part of expanded vector, make our neighbors depend on this store
1096 if (VectorTrunc) {
1097 // Make all other vector elements depend on this store
1098 Chain = DAG.getNode(AMDGPUISD::DUMMY_CHAIN, DL, MVT::Other, NewStore);
1099 DAG.ReplaceAllUsesOfValueWith(OldChain, Chain);
1100 }
1101 return NewStore;
1102}
1103
1104SDValue R600TargetLowering::LowerSTORE(SDValue Op, SelectionDAG &DAG) const {
1105 StoreSDNode *StoreNode = cast<StoreSDNode>(Op);
1106 unsigned AS = StoreNode->getAddressSpace();
1107
1108 SDValue Chain = StoreNode->getChain();
1109 SDValue Ptr = StoreNode->getBasePtr();
1110 SDValue Value = StoreNode->getValue();
1111
1112 EVT VT = Value.getValueType();
1113 EVT MemVT = StoreNode->getMemoryVT();
1114 EVT PtrVT = Ptr.getValueType();
1115
1116 SDLoc DL(Op);
1117
1118 const bool TruncatingStore = StoreNode->isTruncatingStore();
1119
1120 // Neither LOCAL nor PRIVATE can do vectors at the moment
1122 TruncatingStore) &&
1123 VT.isVector()) {
1124 if ((AS == AMDGPUAS::PRIVATE_ADDRESS) && TruncatingStore) {
1125 // Add an extra level of chain to isolate this vector
1126 SDValue NewChain = DAG.getNode(AMDGPUISD::DUMMY_CHAIN, DL, MVT::Other, Chain);
1127 SmallVector<SDValue, 4> NewOps(StoreNode->ops());
1128 NewOps[0] = NewChain;
1129 StoreNode = cast<StoreSDNode>(DAG.UpdateNodeOperands(StoreNode, NewOps));
1130 }
1131
1132 return scalarizeVectorStore(StoreNode, DAG);
1133 }
1134
1135 Align Alignment = StoreNode->getAlign();
1136 if (Alignment < MemVT.getStoreSize() &&
1137 !allowsMisalignedMemoryAccesses(MemVT, AS, Alignment,
1138 StoreNode->getMemOperand()->getFlags(),
1139 nullptr)) {
1140 return expandUnalignedStore(StoreNode, DAG);
1141 }
1142
1143 SDValue DWordAddr = DAG.getNode(ISD::SRL, DL, PtrVT, Ptr,
1144 DAG.getConstant(2, DL, PtrVT));
1145
1146 if (AS == AMDGPUAS::GLOBAL_ADDRESS) {
1147 // It is beneficial to create MSKOR here instead of combiner to avoid
1148 // artificial dependencies introduced by RMW
1149 if (TruncatingStore) {
1150 assert(VT.bitsLE(MVT::i32));
1151 SDValue MaskConstant;
1152 if (MemVT == MVT::i8) {
1153 MaskConstant = DAG.getConstant(0xFF, DL, MVT::i32);
1154 } else {
1155 assert(MemVT == MVT::i16);
1156 assert(StoreNode->getAlign() >= 2);
1157 MaskConstant = DAG.getConstant(0xFFFF, DL, MVT::i32);
1158 }
1159
1160 SDValue ByteIndex = DAG.getNode(ISD::AND, DL, PtrVT, Ptr,
1161 DAG.getConstant(0x00000003, DL, PtrVT));
1162 SDValue BitShift = DAG.getNode(ISD::SHL, DL, VT, ByteIndex,
1163 DAG.getConstant(3, DL, VT));
1164
1165 // Put the mask in correct place
1166 SDValue Mask = DAG.getNode(ISD::SHL, DL, VT, MaskConstant, BitShift);
1167
1168 // Put the value bits in correct place
1169 SDValue TruncValue = DAG.getNode(ISD::AND, DL, VT, Value, MaskConstant);
1170 SDValue ShiftedValue = DAG.getNode(ISD::SHL, DL, VT, TruncValue, BitShift);
1171
1172 // XXX: If we add a 64-bit ZW register class, then we could use a 2 x i32
1173 // vector instead.
1174 SDValue Src[4] = {
1175 ShiftedValue,
1176 DAG.getConstant(0, DL, MVT::i32),
1177 DAG.getConstant(0, DL, MVT::i32),
1178 Mask
1179 };
1180 SDValue Input = DAG.getBuildVector(MVT::v4i32, DL, Src);
1181 SDValue Args[3] = { Chain, Input, DWordAddr };
1182 return DAG.getMemIntrinsicNode(AMDGPUISD::STORE_MSKOR, DL,
1183 Op->getVTList(), Args, MemVT,
1184 StoreNode->getMemOperand());
1185 }
1186 if (Ptr->getOpcode() != AMDGPUISD::DWORDADDR && VT.bitsGE(MVT::i32)) {
1187 // Convert pointer from byte address to dword address.
1188 Ptr = DAG.getNode(AMDGPUISD::DWORDADDR, DL, PtrVT, DWordAddr);
1189
1190 if (StoreNode->isIndexed()) {
1191 llvm_unreachable("Indexed stores not supported yet");
1192 } else {
1193 Chain = DAG.getStore(Chain, DL, Value, Ptr, StoreNode->getMemOperand());
1194 }
1195 return Chain;
1196 }
1197 }
1198
1199 // GLOBAL_ADDRESS has been handled above, LOCAL_ADDRESS allows all sizes
1200 if (AS != AMDGPUAS::PRIVATE_ADDRESS)
1201 return SDValue();
1202
1203 if (MemVT.bitsLT(MVT::i32))
1204 return lowerPrivateTruncStore(StoreNode, DAG);
1205
1206 // Standard i32+ store, tag it with DWORDADDR to note that the address
1207 // has been shifted
1208 if (Ptr.getOpcode() != AMDGPUISD::DWORDADDR) {
1209 Ptr = DAG.getNode(AMDGPUISD::DWORDADDR, DL, PtrVT, DWordAddr);
1210 return DAG.getStore(Chain, DL, Value, Ptr, StoreNode->getMemOperand());
1211 }
1212
1213 // Tagged i32+ stores will be matched by patterns
1214 return SDValue();
1215}
1216
1217// return (512 + (kc_bank << 12)
1218static int
1220 switch (AddressSpace) {
1222 return 512;
1224 return 512 + 4096;
1226 return 512 + 4096 * 2;
1228 return 512 + 4096 * 3;
1230 return 512 + 4096 * 4;
1232 return 512 + 4096 * 5;
1234 return 512 + 4096 * 6;
1236 return 512 + 4096 * 7;
1238 return 512 + 4096 * 8;
1240 return 512 + 4096 * 9;
1242 return 512 + 4096 * 10;
1244 return 512 + 4096 * 11;
1246 return 512 + 4096 * 12;
1248 return 512 + 4096 * 13;
1250 return 512 + 4096 * 14;
1252 return 512 + 4096 * 15;
1253 default:
1254 return -1;
1255 }
1256}
1257
1258SDValue R600TargetLowering::lowerPrivateExtLoad(SDValue Op,
1259 SelectionDAG &DAG) const {
1260 SDLoc DL(Op);
1261 LoadSDNode *Load = cast<LoadSDNode>(Op);
1262 ISD::LoadExtType ExtType = Load->getExtensionType();
1263 EVT MemVT = Load->getMemoryVT();
1264 assert(Load->getAlign() >= MemVT.getStoreSize());
1265
1266 SDValue BasePtr = Load->getBasePtr();
1267 SDValue Chain = Load->getChain();
1268 SDValue Offset = Load->getOffset();
1269
1270 SDValue LoadPtr = BasePtr;
1271 if (!Offset.isUndef()) {
1272 LoadPtr = DAG.getNode(ISD::ADD, DL, MVT::i32, BasePtr, Offset);
1273 }
1274
1275 // Get dword location
1276 // NOTE: this should be eliminated by the future SHR ptr, 2
1277 SDValue Ptr = DAG.getNode(ISD::AND, DL, MVT::i32, LoadPtr,
1278 DAG.getConstant(0xfffffffc, DL, MVT::i32));
1279
1280 // Load dword
1281 // TODO: can we be smarter about machine pointer info?
1282 MachinePointerInfo PtrInfo(AMDGPUAS::PRIVATE_ADDRESS);
1283 SDValue Read = DAG.getLoad(MVT::i32, DL, Chain, Ptr, PtrInfo);
1284
1285 // Get offset within the register.
1286 SDValue ByteIdx = DAG.getNode(ISD::AND, DL, MVT::i32,
1287 LoadPtr, DAG.getConstant(0x3, DL, MVT::i32));
1288
1289 // Bit offset of target byte (byteIdx * 8).
1290 SDValue ShiftAmt = DAG.getNode(ISD::SHL, DL, MVT::i32, ByteIdx,
1291 DAG.getConstant(3, DL, MVT::i32));
1292
1293 // Shift to the right.
1294 SDValue Ret = DAG.getNode(ISD::SRL, DL, MVT::i32, Read, ShiftAmt);
1295
1296 // Eliminate the upper bits by setting them to ...
1297 EVT MemEltVT = MemVT.getScalarType();
1298
1299 if (ExtType == ISD::SEXTLOAD) { // ... ones.
1300 SDValue MemEltVTNode = DAG.getValueType(MemEltVT);
1301 Ret = DAG.getNode(ISD::SIGN_EXTEND_INREG, DL, MVT::i32, Ret, MemEltVTNode);
1302 } else { // ... or zeros.
1303 Ret = DAG.getZeroExtendInReg(Ret, DL, MemEltVT);
1304 }
1305
1306 SDValue Ops[] = {
1307 Ret,
1308 Read.getValue(1) // This should be our output chain
1309 };
1310
1311 return DAG.getMergeValues(Ops, DL);
1312}
1313
1314SDValue R600TargetLowering::LowerLOAD(SDValue Op, SelectionDAG &DAG) const {
1315 LoadSDNode *LoadNode = cast<LoadSDNode>(Op);
1316 unsigned AS = LoadNode->getAddressSpace();
1317 EVT MemVT = LoadNode->getMemoryVT();
1318 ISD::LoadExtType ExtType = LoadNode->getExtensionType();
1319
1320 if (AS == AMDGPUAS::PRIVATE_ADDRESS &&
1321 ExtType != ISD::NON_EXTLOAD && MemVT.bitsLT(MVT::i32)) {
1322 return lowerPrivateExtLoad(Op, DAG);
1323 }
1324
1325 SDLoc DL(Op);
1326 EVT VT = Op.getValueType();
1327 SDValue Chain = LoadNode->getChain();
1328 SDValue Ptr = LoadNode->getBasePtr();
1329
1330 if ((LoadNode->getAddressSpace() == AMDGPUAS::LOCAL_ADDRESS ||
1332 VT.isVector()) {
1333 SDValue Ops[2];
1334 std::tie(Ops[0], Ops[1]) = scalarizeVectorLoad(LoadNode, DAG);
1335 return DAG.getMergeValues(Ops, DL);
1336 }
1337
1338 // This is still used for explicit load from addrspace(8)
1339 int ConstantBlock = ConstantAddressBlock(LoadNode->getAddressSpace());
1340 if (ConstantBlock > -1 &&
1341 ((LoadNode->getExtensionType() == ISD::NON_EXTLOAD) ||
1342 (LoadNode->getExtensionType() == ISD::ZEXTLOAD))) {
1344 if (isa<Constant>(LoadNode->getMemOperand()->getValue()) ||
1345 isa<ConstantSDNode>(Ptr)) {
1346 return constBufferLoad(LoadNode, LoadNode->getAddressSpace(), DAG);
1347 }
1348 // TODO: Does this even work?
1349 // non-constant ptr can't be folded, keeps it as a v4f32 load
1350 Result = DAG.getNode(AMDGPUISD::CONST_ADDRESS, DL, MVT::v4i32,
1351 DAG.getNode(ISD::SRL, DL, MVT::i32, Ptr,
1352 DAG.getConstant(4, DL, MVT::i32)),
1353 DAG.getConstant(LoadNode->getAddressSpace() -
1355 DL, MVT::i32));
1356
1357 if (!VT.isVector()) {
1358 Result = DAG.getNode(ISD::EXTRACT_VECTOR_ELT, DL, MVT::i32, Result,
1359 DAG.getConstant(0, DL, MVT::i32));
1360 }
1361
1362 SDValue MergedValues[2] = {
1363 Result,
1364 Chain
1365 };
1366 return DAG.getMergeValues(MergedValues, DL);
1367 }
1368
1369 // For most operations returning SDValue() will result in the node being
1370 // expanded by the DAG Legalizer. This is not the case for ISD::LOAD, so we
1371 // need to manually expand loads that may be legal in some address spaces and
1372 // illegal in others. SEXT loads from CONSTANT_BUFFER_0 are supported for
1373 // compute shaders, since the data is sign extended when it is uploaded to the
1374 // buffer. However SEXT loads from other address spaces are not supported, so
1375 // we need to expand them here.
1376 if (LoadNode->getExtensionType() == ISD::SEXTLOAD) {
1377 assert(!MemVT.isVector() && (MemVT == MVT::i16 || MemVT == MVT::i8));
1378 SDValue NewLoad = DAG.getExtLoad(
1379 ISD::EXTLOAD, DL, VT, Chain, Ptr, LoadNode->getPointerInfo(), MemVT,
1380 LoadNode->getAlign(), LoadNode->getMemOperand()->getFlags());
1381 SDValue Res = DAG.getNode(ISD::SIGN_EXTEND_INREG, DL, VT, NewLoad,
1382 DAG.getValueType(MemVT));
1383
1384 SDValue MergedValues[2] = { Res, Chain };
1385 return DAG.getMergeValues(MergedValues, DL);
1386 }
1387
1388 if (LoadNode->getAddressSpace() != AMDGPUAS::PRIVATE_ADDRESS) {
1389 return SDValue();
1390 }
1391
1392 // DWORDADDR ISD marks already shifted address
1393 if (Ptr.getOpcode() != AMDGPUISD::DWORDADDR) {
1394 assert(VT == MVT::i32);
1395 Ptr = DAG.getNode(ISD::SRL, DL, MVT::i32, Ptr, DAG.getConstant(2, DL, MVT::i32));
1396 Ptr = DAG.getNode(AMDGPUISD::DWORDADDR, DL, MVT::i32, Ptr);
1397 return DAG.getLoad(MVT::i32, DL, Chain, Ptr, LoadNode->getMemOperand());
1398 }
1399 return SDValue();
1400}
1401
1402SDValue R600TargetLowering::LowerBRCOND(SDValue Op, SelectionDAG &DAG) const {
1403 SDValue Chain = Op.getOperand(0);
1404 SDValue Cond = Op.getOperand(1);
1405 SDValue Jump = Op.getOperand(2);
1406
1407 return DAG.getNode(AMDGPUISD::BRANCH_COND, SDLoc(Op), Op.getValueType(),
1408 Chain, Jump, Cond);
1409}
1410
1411SDValue R600TargetLowering::lowerFrameIndex(SDValue Op,
1412 SelectionDAG &DAG) const {
1413 MachineFunction &MF = DAG.getMachineFunction();
1414 const R600FrameLowering *TFL = Subtarget->getFrameLowering();
1415
1416 FrameIndexSDNode *FIN = cast<FrameIndexSDNode>(Op);
1417
1418 unsigned FrameIndex = FIN->getIndex();
1419 Register IgnoredFrameReg;
1420 StackOffset Offset =
1421 TFL->getFrameIndexReference(MF, FrameIndex, IgnoredFrameReg);
1422 return DAG.getConstant(Offset.getFixed() * 4 * TFL->getStackWidth(MF),
1423 SDLoc(Op), Op.getValueType());
1424}
1425
1427 bool IsVarArg) const {
1428 switch (CC) {
1431 case CallingConv::C:
1432 case CallingConv::Fast:
1433 case CallingConv::Cold:
1434 llvm_unreachable("kernels should not be handled here");
1442 return CC_R600;
1443 default:
1444 reportFatalUsageError("unsupported calling convention");
1445 }
1446}
1447
1448/// XXX Only kernel functions are supported, so we can assume for now that
1449/// every function is a kernel function, but in the future we should use
1450/// separate calling conventions for kernel and non-kernel functions.
1452 SDValue Chain, CallingConv::ID CallConv, bool isVarArg,
1453 const SmallVectorImpl<ISD::InputArg> &Ins, const SDLoc &DL,
1454 SelectionDAG &DAG, SmallVectorImpl<SDValue> &InVals) const {
1456 CCState CCInfo(CallConv, isVarArg, DAG.getMachineFunction(), ArgLocs,
1457 *DAG.getContext());
1459
1460 if (AMDGPU::isShader(CallConv)) {
1461 CCInfo.AnalyzeFormalArguments(Ins, CCAssignFnForCall(CallConv, isVarArg));
1462 } else {
1463 analyzeFormalArgumentsCompute(CCInfo, Ins);
1464 }
1465
1466 for (unsigned i = 0, e = Ins.size(); i < e; ++i) {
1467 CCValAssign &VA = ArgLocs[i];
1468 const ISD::InputArg &In = Ins[i];
1469 EVT VT = In.VT;
1470 EVT MemVT = VA.getLocVT();
1471 if (!VT.isVector() && MemVT.isVector()) {
1472 // Get load source type if scalarized.
1473 MemVT = MemVT.getVectorElementType();
1474 }
1475
1476 if (VT.isInteger() && !MemVT.isInteger())
1477 MemVT = MemVT.changeTypeToInteger();
1478
1479 if (AMDGPU::isShader(CallConv)) {
1480 Register Reg = MF.addLiveIn(VA.getLocReg(), &R600::R600_Reg128RegClass);
1481 SDValue Register = DAG.getCopyFromReg(Chain, DL, Reg, VT);
1482 InVals.push_back(Register);
1483 continue;
1484 }
1485
1486 // i64 isn't a legal type, so the register type used ends up as i32, which
1487 // isn't expected here. It attempts to create this sextload, but it ends up
1488 // being invalid. Somehow this seems to work with i64 arguments, but breaks
1489 // for <1 x i64>.
1490
1491 // The first 36 bytes of the input buffer contains information about
1492 // thread group and global sizes.
1494 if (MemVT.getScalarSizeInBits() != VT.getScalarSizeInBits()) {
1495 if (VT.isFloatingPoint()) {
1496 Ext = ISD::EXTLOAD;
1497 } else {
1498 // FIXME: This should really check the extload type, but the handling of
1499 // extload vector parameters seems to be broken.
1500
1501 // Ext = In.Flags.isSExt() ? ISD::SEXTLOAD : ISD::ZEXTLOAD;
1502 Ext = ISD::SEXTLOAD;
1503 }
1504 }
1505
1506 // Compute the offset from the value.
1507 // XXX - I think PartOffset should give you this, but it seems to give the
1508 // size of the register which isn't useful.
1509
1510 unsigned PartOffset = VA.getLocMemOffset();
1511 Align Alignment = commonAlignment(Align(VT.getStoreSize()), PartOffset);
1512
1514 SDValue Arg = DAG.getLoad(
1515 ISD::UNINDEXED, Ext, VT, DL, Chain,
1516 DAG.getConstant(PartOffset, DL, MVT::i32), DAG.getUNDEF(MVT::i32),
1517 PtrInfo,
1518 MemVT, Alignment, MachineMemOperand::MONonTemporal |
1521
1522 InVals.push_back(Arg);
1523 }
1524 return Chain;
1525}
1526
1528 EVT VT) const {
1529 if (!VT.isVector())
1530 return MVT::i32;
1532}
1533
1535 const MachineFunction &MF) const {
1536 // Local and Private addresses do not handle vectors. Limit to i32
1538 return (MemVT.getSizeInBits() <= 32);
1539 }
1540 return true;
1541}
1542
1544 EVT VT, unsigned AddrSpace, Align Alignment, MachineMemOperand::Flags Flags,
1545 unsigned *IsFast) const {
1546 if (IsFast)
1547 *IsFast = 0;
1548
1549 if (!VT.isSimple() || VT == MVT::Other)
1550 return false;
1551
1552 if (VT.bitsLT(MVT::i32))
1553 return false;
1554
1555 // TODO: This is a rough estimate.
1556 if (IsFast)
1557 *IsFast = 1;
1558
1559 return VT.bitsGT(MVT::i32) && Alignment >= Align(4);
1560}
1561
1563 SelectionDAG &DAG, SDValue VectorEntry,
1564 DenseMap<unsigned, unsigned> &RemapSwizzle) {
1565 assert(RemapSwizzle.empty());
1566
1567 SDLoc DL(VectorEntry);
1568 EVT EltTy = VectorEntry.getValueType().getVectorElementType();
1569
1570 SDValue NewBldVec[4];
1571 for (unsigned i = 0; i < 4; i++)
1572 NewBldVec[i] = DAG.getNode(ISD::EXTRACT_VECTOR_ELT, DL, EltTy, VectorEntry,
1573 DAG.getIntPtrConstant(i, DL));
1574
1575 for (unsigned i = 0; i < 4; i++) {
1576 if (NewBldVec[i].isUndef())
1577 // We mask write here to teach later passes that the ith element of this
1578 // vector is undef. Thus we can use it to reduce 128 bits reg usage,
1579 // break false dependencies and additionally make assembly easier to read.
1580 RemapSwizzle[i] = 7; // SEL_MASK_WRITE
1581 if (ConstantFPSDNode *C = dyn_cast<ConstantFPSDNode>(NewBldVec[i])) {
1582 if (C->isZero()) {
1583 RemapSwizzle[i] = 4; // SEL_0
1584 NewBldVec[i] = DAG.getUNDEF(MVT::f32);
1585 } else if (C->isOne()) {
1586 RemapSwizzle[i] = 5; // SEL_1
1587 NewBldVec[i] = DAG.getUNDEF(MVT::f32);
1588 }
1589 }
1590
1591 if (NewBldVec[i].isUndef())
1592 continue;
1593
1594 for (unsigned j = 0; j < i; j++) {
1595 if (NewBldVec[i] == NewBldVec[j]) {
1596 NewBldVec[i] = DAG.getUNDEF(NewBldVec[i].getValueType());
1597 RemapSwizzle[i] = j;
1598 break;
1599 }
1600 }
1601 }
1602
1603 return DAG.getBuildVector(VectorEntry.getValueType(), SDLoc(VectorEntry),
1604 NewBldVec);
1605}
1606
1608 DenseMap<unsigned, unsigned> &RemapSwizzle) {
1609 assert(RemapSwizzle.empty());
1610
1611 SDLoc DL(VectorEntry);
1612 EVT EltTy = VectorEntry.getValueType().getVectorElementType();
1613
1614 SDValue NewBldVec[4];
1615 bool isUnmovable[4] = {false, false, false, false};
1616 for (unsigned i = 0; i < 4; i++)
1617 NewBldVec[i] = DAG.getNode(ISD::EXTRACT_VECTOR_ELT, DL, EltTy, VectorEntry,
1618 DAG.getIntPtrConstant(i, DL));
1619
1620 for (unsigned i = 0; i < 4; i++) {
1621 RemapSwizzle[i] = i;
1622 if (NewBldVec[i].getOpcode() == ISD::EXTRACT_VECTOR_ELT) {
1623 unsigned Idx = NewBldVec[i].getConstantOperandVal(1);
1624 if (i == Idx)
1625 isUnmovable[Idx] = true;
1626 }
1627 }
1628
1629 for (unsigned i = 0; i < 4; i++) {
1630 if (NewBldVec[i].getOpcode() == ISD::EXTRACT_VECTOR_ELT) {
1631 unsigned Idx = NewBldVec[i].getConstantOperandVal(1);
1632 if (isUnmovable[Idx])
1633 continue;
1634 // Swap i and Idx
1635 std::swap(NewBldVec[Idx], NewBldVec[i]);
1636 std::swap(RemapSwizzle[i], RemapSwizzle[Idx]);
1637 break;
1638 }
1639 }
1640
1641 return DAG.getBuildVector(VectorEntry.getValueType(), SDLoc(VectorEntry),
1642 NewBldVec);
1643}
1644
1645SDValue R600TargetLowering::OptimizeSwizzle(SDValue BuildVector, SDValue Swz[],
1646 SelectionDAG &DAG,
1647 const SDLoc &DL) const {
1648 // Old -> New swizzle values
1649 DenseMap<unsigned, unsigned> SwizzleRemap;
1650
1651 BuildVector = CompactSwizzlableVector(DAG, BuildVector, SwizzleRemap);
1652 for (unsigned i = 0; i < 4; i++) {
1653 unsigned Idx = Swz[i]->getAsZExtVal();
1654 auto It = SwizzleRemap.find(Idx);
1655 if (It != SwizzleRemap.end())
1656 Swz[i] = DAG.getConstant(It->second, DL, MVT::i32);
1657 }
1658
1659 SwizzleRemap.clear();
1660 BuildVector = ReorganizeVector(DAG, BuildVector, SwizzleRemap);
1661 for (unsigned i = 0; i < 4; i++) {
1662 unsigned Idx = Swz[i]->getAsZExtVal();
1663 auto It = SwizzleRemap.find(Idx);
1664 if (It != SwizzleRemap.end())
1665 Swz[i] = DAG.getConstant(It->second, DL, MVT::i32);
1666 }
1667
1668 return BuildVector;
1669}
1670
1671SDValue R600TargetLowering::constBufferLoad(LoadSDNode *LoadNode, int Block,
1672 SelectionDAG &DAG) const {
1673 SDLoc DL(LoadNode);
1674 EVT VT = LoadNode->getValueType(0);
1675 SDValue Chain = LoadNode->getChain();
1676 SDValue Ptr = LoadNode->getBasePtr();
1678
1679 //TODO: Support smaller loads
1680 if (LoadNode->getMemoryVT().getScalarType() != MVT::i32 || !ISD::isNON_EXTLoad(LoadNode))
1681 return SDValue();
1682
1683 if (LoadNode->getAlign() < Align(4))
1684 return SDValue();
1685
1686 int ConstantBlock = ConstantAddressBlock(Block);
1687
1688 SDValue Slots[4];
1689 for (unsigned i = 0; i < 4; i++) {
1690 // We want Const position encoded with the following formula :
1691 // (((512 + (kc_bank << 12) + const_index) << 2) + chan)
1692 // const_index is Ptr computed by llvm using an alignment of 16.
1693 // Thus we add (((512 + (kc_bank << 12)) + chan ) * 4 here and
1694 // then div by 4 at the ISel step
1695 SDValue NewPtr = DAG.getNode(ISD::ADD, DL, Ptr.getValueType(), Ptr,
1696 DAG.getConstant(4 * i + ConstantBlock * 16, DL, MVT::i32));
1697 Slots[i] = DAG.getNode(AMDGPUISD::CONST_ADDRESS, DL, MVT::i32, NewPtr);
1698 }
1699 EVT NewVT = MVT::v4i32;
1700 unsigned NumElements = 4;
1701 if (VT.isVector()) {
1702 NewVT = VT;
1703 NumElements = VT.getVectorNumElements();
1704 }
1705 SDValue Result = DAG.getBuildVector(NewVT, DL, ArrayRef(Slots, NumElements));
1706 if (!VT.isVector()) {
1707 Result = DAG.getNode(ISD::EXTRACT_VECTOR_ELT, DL, MVT::i32, Result,
1708 DAG.getConstant(0, DL, MVT::i32));
1709 }
1710 SDValue MergedValues[2] = {
1711 Result,
1712 Chain
1713 };
1714 return DAG.getMergeValues(MergedValues, DL);
1715}
1716
1717//===----------------------------------------------------------------------===//
1718// Custom DAG Optimizations
1719//===----------------------------------------------------------------------===//
1720
1722 DAGCombinerInfo &DCI) const {
1723 SelectionDAG &DAG = DCI.DAG;
1724 SDLoc DL(N);
1725
1726 switch (N->getOpcode()) {
1727 // (f32 fp_round (f64 uint_to_fp a)) -> (f32 uint_to_fp a)
1728 case ISD::FP_ROUND: {
1729 SDValue Arg = N->getOperand(0);
1730 if (Arg.getOpcode() == ISD::UINT_TO_FP && Arg.getValueType() == MVT::f64) {
1731 return DAG.getNode(ISD::UINT_TO_FP, DL, N->getValueType(0),
1732 Arg.getOperand(0));
1733 }
1734 break;
1735 }
1736
1737 // (i32 fp_to_sint (fneg (select_cc f32, f32, 1.0, 0.0 cc))) ->
1738 // (i32 select_cc f32, f32, -1, 0 cc)
1739 //
1740 // Mesa's GLSL frontend generates the above pattern a lot and we can lower
1741 // this to one of the SET*_DX10 instructions.
1742 case ISD::FP_TO_SINT: {
1743 SDValue FNeg = N->getOperand(0);
1744 if (FNeg.getOpcode() != ISD::FNEG) {
1745 return SDValue();
1746 }
1747 SDValue SelectCC = FNeg.getOperand(0);
1748 if (SelectCC.getOpcode() != ISD::SELECT_CC ||
1749 SelectCC.getOperand(0).getValueType() != MVT::f32 || // LHS
1750 SelectCC.getOperand(2).getValueType() != MVT::f32 || // True
1751 !isHWTrueValue(SelectCC.getOperand(2)) ||
1752 !isHWFalseValue(SelectCC.getOperand(3))) {
1753 return SDValue();
1754 }
1755
1756 return DAG.getNode(ISD::SELECT_CC, DL, N->getValueType(0),
1757 SelectCC.getOperand(0), // LHS
1758 SelectCC.getOperand(1), // RHS
1759 DAG.getAllOnesConstant(DL, MVT::i32), // True
1760 DAG.getConstant(0, DL, MVT::i32), // False
1761 SelectCC.getOperand(4)); // CC
1762 }
1763
1764 // insert_vector_elt (build_vector elt0, ... , eltN), NewEltIdx, idx
1765 // => build_vector elt0, ... , NewEltIdx, ... , eltN
1767 SDValue InVec = N->getOperand(0);
1768 SDValue InVal = N->getOperand(1);
1769 SDValue EltNo = N->getOperand(2);
1770
1771 // If the inserted element is an UNDEF, just use the input vector.
1772 if (InVal.isUndef())
1773 return InVec;
1774
1775 EVT VT = InVec.getValueType();
1776
1777 // If we can't generate a legal BUILD_VECTOR, exit
1779 return SDValue();
1780
1781 // Check that we know which element is being inserted
1782 if (!isa<ConstantSDNode>(EltNo))
1783 return SDValue();
1784 unsigned Elt = EltNo->getAsZExtVal();
1785
1786 // Check that the operand is a BUILD_VECTOR (or UNDEF, which can essentially
1787 // be converted to a BUILD_VECTOR). Fill in the Ops vector with the
1788 // vector elements.
1790 if (InVec.getOpcode() == ISD::BUILD_VECTOR) {
1791 Ops.append(InVec.getNode()->op_begin(),
1792 InVec.getNode()->op_end());
1793 } else if (InVec.isUndef()) {
1794 unsigned NElts = VT.getVectorNumElements();
1795 Ops.append(NElts, DAG.getUNDEF(InVal.getValueType()));
1796 } else {
1797 return SDValue();
1798 }
1799
1800 // Insert the element
1801 if (Elt < Ops.size()) {
1802 // All the operands of BUILD_VECTOR must have the same type;
1803 // we enforce that here.
1804 EVT OpVT = Ops[0].getValueType();
1805 if (InVal.getValueType() != OpVT)
1806 InVal = OpVT.bitsGT(InVal.getValueType()) ?
1807 DAG.getNode(ISD::ANY_EXTEND, DL, OpVT, InVal) :
1808 DAG.getNode(ISD::TRUNCATE, DL, OpVT, InVal);
1809 Ops[Elt] = InVal;
1810 }
1811
1812 // Return the new vector
1813 return DAG.getBuildVector(VT, DL, Ops);
1814 }
1815
1816 // Extract_vec (Build_vector) generated by custom lowering
1817 // also needs to be customly combined
1819 SDValue Arg = N->getOperand(0);
1820 if (Arg.getOpcode() == ISD::BUILD_VECTOR) {
1821 if (ConstantSDNode *Const = dyn_cast<ConstantSDNode>(N->getOperand(1))) {
1822 unsigned Element = Const->getZExtValue();
1823 return Arg->getOperand(Element);
1824 }
1825 }
1826 if (Arg.getOpcode() == ISD::BITCAST &&
1830 if (ConstantSDNode *Const = dyn_cast<ConstantSDNode>(N->getOperand(1))) {
1831 unsigned Element = Const->getZExtValue();
1832 return DAG.getNode(ISD::BITCAST, DL, N->getVTList(),
1833 Arg->getOperand(0).getOperand(Element));
1834 }
1835 }
1836 break;
1837 }
1838
1839 case ISD::SELECT_CC: {
1840 // Try common optimizations
1842 return Ret;
1843
1844 // fold selectcc (selectcc x, y, a, b, cc), b, a, b, seteq ->
1845 // selectcc x, y, a, b, inv(cc)
1846 //
1847 // fold selectcc (selectcc x, y, a, b, cc), b, a, b, setne ->
1848 // selectcc x, y, a, b, cc
1849 SDValue LHS = N->getOperand(0);
1850 if (LHS.getOpcode() != ISD::SELECT_CC) {
1851 return SDValue();
1852 }
1853
1854 SDValue RHS = N->getOperand(1);
1855 SDValue True = N->getOperand(2);
1856 SDValue False = N->getOperand(3);
1857 ISD::CondCode NCC = cast<CondCodeSDNode>(N->getOperand(4))->get();
1858
1859 if (LHS.getOperand(2).getNode() != True.getNode() ||
1860 LHS.getOperand(3).getNode() != False.getNode() ||
1861 RHS.getNode() != False.getNode()) {
1862 return SDValue();
1863 }
1864
1865 switch (NCC) {
1866 default: return SDValue();
1867 case ISD::SETNE: return LHS;
1868 case ISD::SETEQ: {
1869 ISD::CondCode LHSCC = cast<CondCodeSDNode>(LHS.getOperand(4))->get();
1870 LHSCC = ISD::getSetCCInverse(LHSCC, LHS.getOperand(0).getValueType());
1871 if (DCI.isBeforeLegalizeOps() ||
1872 isCondCodeLegal(LHSCC, LHS.getOperand(0).getSimpleValueType()))
1873 return DAG.getSelectCC(DL,
1874 LHS.getOperand(0),
1875 LHS.getOperand(1),
1876 LHS.getOperand(2),
1877 LHS.getOperand(3),
1878 LHSCC);
1879 break;
1880 }
1881 }
1882 return SDValue();
1883 }
1884
1886 SDValue Arg = N->getOperand(1);
1887 if (Arg.getOpcode() != ISD::BUILD_VECTOR)
1888 break;
1889
1890 SDValue NewArgs[8] = {
1891 N->getOperand(0), // Chain
1892 SDValue(),
1893 N->getOperand(2), // ArrayBase
1894 N->getOperand(3), // Type
1895 N->getOperand(4), // SWZ_X
1896 N->getOperand(5), // SWZ_Y
1897 N->getOperand(6), // SWZ_Z
1898 N->getOperand(7) // SWZ_W
1899 };
1900 NewArgs[1] = OptimizeSwizzle(N->getOperand(1), &NewArgs[4], DAG, DL);
1901 return DAG.getNode(AMDGPUISD::R600_EXPORT, DL, N->getVTList(), NewArgs);
1902 }
1904 SDValue Arg = N->getOperand(1);
1905 if (Arg.getOpcode() != ISD::BUILD_VECTOR)
1906 break;
1907
1908 SDValue NewArgs[19] = {
1909 N->getOperand(0),
1910 N->getOperand(1),
1911 N->getOperand(2),
1912 N->getOperand(3),
1913 N->getOperand(4),
1914 N->getOperand(5),
1915 N->getOperand(6),
1916 N->getOperand(7),
1917 N->getOperand(8),
1918 N->getOperand(9),
1919 N->getOperand(10),
1920 N->getOperand(11),
1921 N->getOperand(12),
1922 N->getOperand(13),
1923 N->getOperand(14),
1924 N->getOperand(15),
1925 N->getOperand(16),
1926 N->getOperand(17),
1927 N->getOperand(18),
1928 };
1929 NewArgs[1] = OptimizeSwizzle(N->getOperand(1), &NewArgs[2], DAG, DL);
1930 return DAG.getNode(AMDGPUISD::TEXTURE_FETCH, DL, N->getVTList(), NewArgs);
1931 }
1932
1933 case ISD::LOAD: {
1934 LoadSDNode *LoadNode = cast<LoadSDNode>(N);
1935 SDValue Ptr = LoadNode->getBasePtr();
1936 if (LoadNode->getAddressSpace() == AMDGPUAS::PARAM_I_ADDRESS &&
1938 return constBufferLoad(LoadNode, AMDGPUAS::CONSTANT_BUFFER_0, DAG);
1939 break;
1940 }
1941
1942 default: break;
1943 }
1944
1946}
1947
1948bool R600TargetLowering::FoldOperand(SDNode *ParentNode, unsigned SrcIdx,
1949 SDValue &Src, SDValue &Neg, SDValue &Abs,
1950 SDValue &Sel, SDValue &Imm,
1951 SelectionDAG &DAG) const {
1952 const R600InstrInfo *TII = Subtarget->getInstrInfo();
1953 if (!Src.isMachineOpcode())
1954 return false;
1955
1956 switch (Src.getMachineOpcode()) {
1957 case R600::FNEG_R600:
1958 if (!Neg.getNode())
1959 return false;
1960 Src = Src.getOperand(0);
1961 Neg = DAG.getTargetConstant(1, SDLoc(ParentNode), MVT::i32);
1962 return true;
1963 case R600::FABS_R600:
1964 if (!Abs.getNode())
1965 return false;
1966 Src = Src.getOperand(0);
1967 Abs = DAG.getTargetConstant(1, SDLoc(ParentNode), MVT::i32);
1968 return true;
1969 case R600::CONST_COPY: {
1970 unsigned Opcode = ParentNode->getMachineOpcode();
1971 bool HasDst = TII->getOperandIdx(Opcode, R600::OpName::dst) > -1;
1972
1973 if (!Sel.getNode())
1974 return false;
1975
1976 SDValue CstOffset = Src.getOperand(0);
1977 if (ParentNode->getValueType(0).isVector())
1978 return false;
1979
1980 // Gather constants values
1981 int SrcIndices[] = {
1982 TII->getOperandIdx(Opcode, R600::OpName::src0),
1983 TII->getOperandIdx(Opcode, R600::OpName::src1),
1984 TII->getOperandIdx(Opcode, R600::OpName::src2),
1985 TII->getOperandIdx(Opcode, R600::OpName::src0_X),
1986 TII->getOperandIdx(Opcode, R600::OpName::src0_Y),
1987 TII->getOperandIdx(Opcode, R600::OpName::src0_Z),
1988 TII->getOperandIdx(Opcode, R600::OpName::src0_W),
1989 TII->getOperandIdx(Opcode, R600::OpName::src1_X),
1990 TII->getOperandIdx(Opcode, R600::OpName::src1_Y),
1991 TII->getOperandIdx(Opcode, R600::OpName::src1_Z),
1992 TII->getOperandIdx(Opcode, R600::OpName::src1_W)
1993 };
1994 std::vector<unsigned> Consts;
1995 for (int OtherSrcIdx : SrcIndices) {
1996 int OtherSelIdx = TII->getSelIdx(Opcode, OtherSrcIdx);
1997 if (OtherSrcIdx < 0 || OtherSelIdx < 0)
1998 continue;
1999 if (HasDst) {
2000 OtherSrcIdx--;
2001 OtherSelIdx--;
2002 }
2003 if (RegisterSDNode *Reg =
2004 dyn_cast<RegisterSDNode>(ParentNode->getOperand(OtherSrcIdx))) {
2005 if (Reg->getReg() == R600::ALU_CONST) {
2006 Consts.push_back(ParentNode->getConstantOperandVal(OtherSelIdx));
2007 }
2008 }
2009 }
2010
2011 ConstantSDNode *Cst = cast<ConstantSDNode>(CstOffset);
2012 Consts.push_back(Cst->getZExtValue());
2013 if (!TII->fitsConstReadLimitations(Consts)) {
2014 return false;
2015 }
2016
2017 Sel = CstOffset;
2018 Src = DAG.getRegister(R600::ALU_CONST, MVT::f32);
2019 return true;
2020 }
2021 case R600::MOV_IMM_GLOBAL_ADDR:
2022 // Check if the Imm slot is used. Taken from below.
2023 if (Imm->getAsZExtVal())
2024 return false;
2025 Imm = Src.getOperand(0);
2026 Src = DAG.getRegister(R600::ALU_LITERAL_X, MVT::i32);
2027 return true;
2028 case R600::MOV_IMM_I32:
2029 case R600::MOV_IMM_F32: {
2030 unsigned ImmReg = R600::ALU_LITERAL_X;
2031 uint64_t ImmValue = 0;
2032
2033 if (Src.getMachineOpcode() == R600::MOV_IMM_F32) {
2034 ConstantFPSDNode *FPC = cast<ConstantFPSDNode>(Src.getOperand(0));
2035 float FloatValue = FPC->getValueAPF().convertToFloat();
2036 if (FloatValue == 0.0) {
2037 ImmReg = R600::ZERO;
2038 } else if (FloatValue == 0.5) {
2039 ImmReg = R600::HALF;
2040 } else if (FloatValue == 1.0) {
2041 ImmReg = R600::ONE;
2042 } else {
2043 ImmValue = FPC->getValueAPF().bitcastToAPInt().getZExtValue();
2044 }
2045 } else {
2046 uint64_t Value = Src.getConstantOperandVal(0);
2047 if (Value == 0) {
2048 ImmReg = R600::ZERO;
2049 } else if (Value == 1) {
2050 ImmReg = R600::ONE_INT;
2051 } else {
2052 ImmValue = Value;
2053 }
2054 }
2055
2056 // Check that we aren't already using an immediate.
2057 // XXX: It's possible for an instruction to have more than one
2058 // immediate operand, but this is not supported yet.
2059 if (ImmReg == R600::ALU_LITERAL_X) {
2060 if (!Imm.getNode())
2061 return false;
2062 ConstantSDNode *C = cast<ConstantSDNode>(Imm);
2063 if (C->getZExtValue())
2064 return false;
2065 Imm = DAG.getTargetConstant(ImmValue, SDLoc(ParentNode), MVT::i32);
2066 }
2067 Src = DAG.getRegister(ImmReg, MVT::i32);
2068 return true;
2069 }
2070 default:
2071 return false;
2072 }
2073}
2074
2075/// Fold the instructions after selecting them
2076SDNode *R600TargetLowering::PostISelFolding(MachineSDNode *Node,
2077 SelectionDAG &DAG) const {
2078 const R600InstrInfo *TII = Subtarget->getInstrInfo();
2079 if (!Node->isMachineOpcode())
2080 return Node;
2081
2082 unsigned Opcode = Node->getMachineOpcode();
2083 SDValue FakeOp;
2084
2085 std::vector<SDValue> Ops(Node->op_begin(), Node->op_end());
2086
2087 if (Opcode == R600::DOT_4) {
2088 int OperandIdx[] = {
2089 TII->getOperandIdx(Opcode, R600::OpName::src0_X),
2090 TII->getOperandIdx(Opcode, R600::OpName::src0_Y),
2091 TII->getOperandIdx(Opcode, R600::OpName::src0_Z),
2092 TII->getOperandIdx(Opcode, R600::OpName::src0_W),
2093 TII->getOperandIdx(Opcode, R600::OpName::src1_X),
2094 TII->getOperandIdx(Opcode, R600::OpName::src1_Y),
2095 TII->getOperandIdx(Opcode, R600::OpName::src1_Z),
2096 TII->getOperandIdx(Opcode, R600::OpName::src1_W)
2097 };
2098 int NegIdx[] = {
2099 TII->getOperandIdx(Opcode, R600::OpName::src0_neg_X),
2100 TII->getOperandIdx(Opcode, R600::OpName::src0_neg_Y),
2101 TII->getOperandIdx(Opcode, R600::OpName::src0_neg_Z),
2102 TII->getOperandIdx(Opcode, R600::OpName::src0_neg_W),
2103 TII->getOperandIdx(Opcode, R600::OpName::src1_neg_X),
2104 TII->getOperandIdx(Opcode, R600::OpName::src1_neg_Y),
2105 TII->getOperandIdx(Opcode, R600::OpName::src1_neg_Z),
2106 TII->getOperandIdx(Opcode, R600::OpName::src1_neg_W)
2107 };
2108 int AbsIdx[] = {
2109 TII->getOperandIdx(Opcode, R600::OpName::src0_abs_X),
2110 TII->getOperandIdx(Opcode, R600::OpName::src0_abs_Y),
2111 TII->getOperandIdx(Opcode, R600::OpName::src0_abs_Z),
2112 TII->getOperandIdx(Opcode, R600::OpName::src0_abs_W),
2113 TII->getOperandIdx(Opcode, R600::OpName::src1_abs_X),
2114 TII->getOperandIdx(Opcode, R600::OpName::src1_abs_Y),
2115 TII->getOperandIdx(Opcode, R600::OpName::src1_abs_Z),
2116 TII->getOperandIdx(Opcode, R600::OpName::src1_abs_W)
2117 };
2118 for (unsigned i = 0; i < 8; i++) {
2119 if (OperandIdx[i] < 0)
2120 return Node;
2121 SDValue &Src = Ops[OperandIdx[i] - 1];
2122 SDValue &Neg = Ops[NegIdx[i] - 1];
2123 SDValue &Abs = Ops[AbsIdx[i] - 1];
2124 bool HasDst = TII->getOperandIdx(Opcode, R600::OpName::dst) > -1;
2125 int SelIdx = TII->getSelIdx(Opcode, OperandIdx[i]);
2126 if (HasDst)
2127 SelIdx--;
2128 SDValue &Sel = (SelIdx > -1) ? Ops[SelIdx] : FakeOp;
2129 if (FoldOperand(Node, i, Src, Neg, Abs, Sel, FakeOp, DAG))
2130 return DAG.getMachineNode(Opcode, SDLoc(Node), Node->getVTList(), Ops);
2131 }
2132 } else if (Opcode == R600::REG_SEQUENCE) {
2133 for (unsigned i = 1, e = Node->getNumOperands(); i < e; i += 2) {
2134 SDValue &Src = Ops[i];
2135 if (FoldOperand(Node, i, Src, FakeOp, FakeOp, FakeOp, FakeOp, DAG))
2136 return DAG.getMachineNode(Opcode, SDLoc(Node), Node->getVTList(), Ops);
2137 }
2138 } else {
2139 if (!TII->hasInstrModifiers(Opcode))
2140 return Node;
2141 int OperandIdx[] = {
2142 TII->getOperandIdx(Opcode, R600::OpName::src0),
2143 TII->getOperandIdx(Opcode, R600::OpName::src1),
2144 TII->getOperandIdx(Opcode, R600::OpName::src2)
2145 };
2146 int NegIdx[] = {
2147 TII->getOperandIdx(Opcode, R600::OpName::src0_neg),
2148 TII->getOperandIdx(Opcode, R600::OpName::src1_neg),
2149 TII->getOperandIdx(Opcode, R600::OpName::src2_neg)
2150 };
2151 int AbsIdx[] = {
2152 TII->getOperandIdx(Opcode, R600::OpName::src0_abs),
2153 TII->getOperandIdx(Opcode, R600::OpName::src1_abs),
2154 -1
2155 };
2156 for (unsigned i = 0; i < 3; i++) {
2157 if (OperandIdx[i] < 0)
2158 return Node;
2159 SDValue &Src = Ops[OperandIdx[i] - 1];
2160 SDValue &Neg = Ops[NegIdx[i] - 1];
2161 SDValue FakeAbs;
2162 SDValue &Abs = (AbsIdx[i] > -1) ? Ops[AbsIdx[i] - 1] : FakeAbs;
2163 bool HasDst = TII->getOperandIdx(Opcode, R600::OpName::dst) > -1;
2164 int SelIdx = TII->getSelIdx(Opcode, OperandIdx[i]);
2165 int ImmIdx = TII->getOperandIdx(Opcode, R600::OpName::literal);
2166 if (HasDst) {
2167 SelIdx--;
2168 ImmIdx--;
2169 }
2170 SDValue &Sel = (SelIdx > -1) ? Ops[SelIdx] : FakeOp;
2171 SDValue &Imm = Ops[ImmIdx];
2172 if (FoldOperand(Node, i, Src, Neg, Abs, Sel, Imm, DAG))
2173 return DAG.getMachineNode(Opcode, SDLoc(Node), Node->getVTList(), Ops);
2174 }
2175 }
2176
2177 return Node;
2178}
2179
2181R600TargetLowering::shouldExpandAtomicRMWInIR(const AtomicRMWInst *RMW) const {
2182 switch (RMW->getOperation()) {
2193 // FIXME: Cayman at least appears to have instructions for this, but the
2194 // instruction definitions appear to be missing.
2196 case AtomicRMWInst::Xchg: {
2197 const DataLayout &DL = RMW->getFunction()->getDataLayout();
2198 unsigned ValSize = DL.getTypeSizeInBits(RMW->getType());
2199 if (ValSize == 32 || ValSize == 64)
2202 }
2203 default:
2204 if (auto *IntTy = dyn_cast<IntegerType>(RMW->getType())) {
2205 unsigned Size = IntTy->getBitWidth();
2206 if (Size == 32 || Size == 64)
2208 }
2209
2211 }
2212
2213 llvm_unreachable("covered atomicrmw op switch");
2214}
return SDValue()
assert(UImm &&(UImm !=~static_cast< T >(0)) &&"Invalid immediate!")
MachineBasicBlock MachineBasicBlock::iterator DebugLoc DL
Function Alias Analysis Results
Interfaces for producing common pass manager configurations.
const HexagonInstrInfo * TII
IRTranslator LLVM IR MI
const AbstractManglingParser< Derived, Alloc >::OperatorInfo AbstractManglingParser< Derived, Alloc >::Ops[]
#define I(x, y, z)
Definition MD5.cpp:57
static bool isUndef(const MachineInstr &MI)
Register Reg
Promote Memory to Register
Definition Mem2Reg.cpp:110
#define MO_FLAG_NEG
Definition R600Defines.h:15
#define MO_FLAG_ABS
Definition R600Defines.h:16
#define MO_FLAG_MASK
Definition R600Defines.h:17
#define MO_FLAG_PUSH
Definition R600Defines.h:18
static bool isEOP(MachineBasicBlock::iterator I)
static SDValue ReorganizeVector(SelectionDAG &DAG, SDValue VectorEntry, DenseMap< unsigned, unsigned > &RemapSwizzle)
static int ConstantAddressBlock(unsigned AddressSpace)
static SDValue CompactSwizzlableVector(SelectionDAG &DAG, SDValue VectorEntry, DenseMap< unsigned, unsigned > &RemapSwizzle)
R600 DAG Lowering interface definition.
Provides R600 specific target descriptions.
AMDGPU R600 specific subclass of TargetSubtarget.
The AMDGPU TargetMachine interface definition for hw codegen targets.
const SmallVectorImpl< MachineOperand > & Cond
static Type * getValueType(Value *V, bool LookThroughCmp=false)
Returns the "element type" of the given value/instruction V.
Value * RHS
Value * LHS
unsigned getStackWidth(const MachineFunction &MF) const
SDValue combineFMinMaxLegacy(const SDLoc &DL, EVT VT, SDValue LHS, SDValue RHS, SDValue True, SDValue False, SDValue CC, DAGCombinerInfo &DCI) const
Generate Min/Max node.
void analyzeFormalArgumentsCompute(CCState &State, const SmallVectorImpl< ISD::InputArg > &Ins) const
The SelectionDAGBuilder will automatically promote function arguments with illegal types.
virtual SDValue LowerGlobalAddress(AMDGPUMachineFunctionInfo *MFI, SDValue Op, SelectionDAG &DAG) const
SDValue LowerSDIVREM(SDValue Op, SelectionDAG &DAG) const
SDValue LowerOperation(SDValue Op, SelectionDAG &DAG) const override
This callback is invoked for operations that are unsupported by the target, which are registered to u...
uint32_t getImplicitParameterOffset(const MachineFunction &MF, const ImplicitParameter Param) const
Helper function that returns the byte offset of the given type of implicit parameter.
SDValue CreateLiveInRegisterRaw(SelectionDAG &DAG, const TargetRegisterClass *RC, Register Reg, EVT VT) const
AMDGPUTargetLowering(const TargetMachine &TM, const TargetSubtargetInfo &STI, const AMDGPUSubtarget &AMDGPUSTI)
void ReplaceNodeResults(SDNode *N, SmallVectorImpl< SDValue > &Results, SelectionDAG &DAG) const override
This callback is invoked when a node result type is illegal for the target, and the operation was reg...
SDValue PerformDAGCombine(SDNode *N, DAGCombinerInfo &DCI) const override
This method will be invoked for all target nodes and for any target-independent nodes that the target...
void LowerUDIVREM64(SDValue Op, SelectionDAG &DAG, SmallVectorImpl< SDValue > &Results) const
LLVM_ABI float convertToFloat() const
Converts this APFloat to host float value.
Definition APFloat.cpp:6007
APInt bitcastToAPInt() const
Definition APFloat.h:1457
uint64_t getZExtValue() const
Get zero extended value.
Definition APInt.h:1565
unsigned getSrcAddressSpace() const
unsigned getDestAddressSpace() const
an instruction that atomically reads a memory location, combines it with another value,...
@ FAdd
*p = old + v
@ USubCond
Subtract only if no unsigned overflow.
@ USubSat
*p = usub.sat(old, v) usub.sat matches the behavior of llvm.usub.sat.
@ FSub
*p = old - v
@ UIncWrap
Increment one up to a maximum value.
@ FMin
*p = minnum(old, v) minnum matches the behavior of llvm.minnum.
@ FMax
*p = maxnum(old, v) maxnum matches the behavior of llvm.maxnum.
@ UDecWrap
Decrement one until a minimum value or zero.
@ Nand
*p = ~(old & v)
BinOp getOperation() const
CCState - This class holds information needed while lowering arguments and return values.
LLVM_ABI void AnalyzeFormalArguments(const SmallVectorImpl< ISD::InputArg > &Ins, CCAssignFn Fn)
AnalyzeFormalArguments - Analyze an array of argument values, incorporating info about the formals in...
CCValAssign - Represent assignment of one arg/retval to a location.
Register getLocReg() const
int64_t getLocMemOffset() const
const APFloat & getValueAPF() const
static LLVM_ABI ConstantPointerNull * get(PointerType *T)
Static factory methods - Return objects of the specified value.
uint64_t getZExtValue() const
A parsed version of the target data layout string in and methods for querying it.
Definition DataLayout.h:64
iterator find(const_arg_type_t< KeyT > Val)
Definition DenseMap.h:223
bool empty() const
Definition DenseMap.h:171
iterator end()
Definition DenseMap.h:141
const DataLayout & getDataLayout() const
Get the data layout of the module this function belongs to.
Definition Function.cpp:357
LLVM_ABI unsigned getAddressSpace() const
const GlobalValue * getGlobal() const
LLVM_ABI const Function * getFunction() const
Return the function this instruction belongs to.
This is an important class for using LLVM in a threaded context.
Definition LLVMContext.h:68
bool isIndexed() const
Return true if this is a pre/post inc/dec load/store.
This class is used to represent ISD::LOAD nodes.
const SDValue & getBasePtr() const
ISD::LoadExtType getExtensionType() const
Return whether this is a plain node, or one of the varieties of value-extending loads.
Machine Value Type.
static auto integer_valuetypes()
LLVM_ABI DebugLoc findDebugLoc(instr_iterator MBBI)
Find the next valid DebugLoc starting at MBBI, skipping any debug instructions.
const MachineFunction * getParent() const
Return the MachineFunction containing this basic block.
MachineInstrBundleIterator< MachineInstr > iterator
MachineRegisterInfo & getRegInfo()
getRegInfo - Return information about the registers currently in use.
Ty * getInfo()
getInfo - Keep track of various per-function pieces of information for backends that would like to do...
Register addLiveIn(MCRegister PReg, const TargetRegisterClass *RC)
addLiveIn - Add the specified physical register as a live-in value and create a corresponding virtual...
const MachineInstrBuilder & addReg(Register RegNo, RegState Flags={}, unsigned SubReg=0) const
Add a new virtual register operand.
const MachineInstrBuilder & addImm(int64_t Val) const
Add a new immediate operand.
const MachineInstrBuilder & add(const MachineOperand &MO) const
Representation of each machine instruction.
Flags
Flags values. These may be or'd together.
@ MODereferenceable
The memory access is dereferenceable (i.e., doesn't trap).
@ MONonTemporal
The memory access is non-temporal.
@ MOInvariant
The memory access always returns the same value (or traps).
Flags getFlags() const
Return the raw flags of the source value,.
const Value * getValue() const
Return the base address of the memory access.
MachineOperand class - Representation of each machine instruction operand.
const GlobalValue * getGlobal() const
unsigned getTargetFlags() const
int64_t getOffset() const
Return the offset from the symbol in this operand.
MachineRegisterInfo - Keep track of information for virtual and physical registers,...
LLVM_ABI MachineInstr * getVRegDef(Register Reg) const
getVRegDef - Return the machine instr that defines the specified virtual register or null if none is ...
bool use_empty(Register RegNo) const
use_empty - Return true if there are no instructions using the specified register.
An SDNode that represents everything that will be needed to construct a MachineInstr.
unsigned getAddressSpace() const
Return the address space for the associated pointer.
Align getAlign() const
MachineMemOperand * getMemOperand() const
Return the unique MachineMemOperand object describing the memory reference performed by operation.
const MachinePointerInfo & getPointerInfo() const
const SDValue & getChain() const
EVT getMemoryVT() const
Return the type of the in-memory value.
static LLVM_ABI PointerType * get(Type *ElementType, unsigned AddressSpace)
This constructs a pointer to an object of the specified type in a numbered address space.
StackOffset getFrameIndexReference(const MachineFunction &MF, int FI, Register &FrameReg) const override
const R600InstrInfo * getInstrInfo() const override
SDValue PerformDAGCombine(SDNode *N, DAGCombinerInfo &DCI) const override
This method will be invoked for all target nodes and for any target-independent nodes that the target...
MachineBasicBlock * EmitInstrWithCustomInserter(MachineInstr &MI, MachineBasicBlock *BB) const override
This method should be implemented by targets that mark instructions with the 'usesCustomInserter' fla...
bool canMergeStoresTo(unsigned AS, EVT MemVT, const MachineFunction &MF) const override
Returns if it's reasonable to merge stores to MemVT size.
R600TargetLowering(const TargetMachine &TM, const R600Subtarget &STI)
EVT getSetCCResultType(const DataLayout &DL, LLVMContext &, EVT VT) const override
Return the ValueType of the result of SETCC operations.
void ReplaceNodeResults(SDNode *N, SmallVectorImpl< SDValue > &Results, SelectionDAG &DAG) const override
This callback is invoked when a node result type is illegal for the target, and the operation was reg...
bool allowsMisalignedMemoryAccesses(EVT VT, unsigned AS, Align Alignment, MachineMemOperand::Flags Flags=MachineMemOperand::MONone, unsigned *IsFast=nullptr) const override
Determine if the target supports unaligned memory accesses.
CCAssignFn * CCAssignFnForCall(CallingConv::ID CC, bool IsVarArg) const
SDValue LowerFormalArguments(SDValue Chain, CallingConv::ID CallConv, bool isVarArg, const SmallVectorImpl< ISD::InputArg > &Ins, const SDLoc &DL, SelectionDAG &DAG, SmallVectorImpl< SDValue > &InVals) const override
XXX Only kernel functions are supported, so we can assume for now that every function is a kernel fun...
SDValue LowerOperation(SDValue Op, SelectionDAG &DAG) const override
This callback is invoked for operations that are unsupported by the target, which are registered to u...
Wrapper class representing virtual and physical registers.
Definition Register.h:20
constexpr bool isVirtual() const
Return true if the specified register number is in the virtual register namespace.
Definition Register.h:79
Wrapper class for IR location info (IR ordering and DebugLoc) to be passed into SDNode creation funct...
Represents one node in the SelectionDAG.
ArrayRef< SDUse > ops() const
unsigned getOpcode() const
Return the SelectionDAG opcode value for this node.
uint64_t getAsZExtVal() const
Helper method returns the zero-extended integer value of a ConstantSDNode.
unsigned getMachineOpcode() const
This may only be called if isMachineOpcode returns true.
const SDValue & getOperand(unsigned Num) const
uint64_t getConstantOperandVal(unsigned Num) const
Helper method returns the integer value of a ConstantSDNode operand.
EVT getValueType(unsigned ResNo) const
Return the type of a specified result.
op_iterator op_end() const
op_iterator op_begin() const
Unlike LLVM values, Selection DAG nodes may return multiple values as the result of a computation.
bool isUndef() const
SDNode * getNode() const
get the SDNode which holds the desired result
SDValue getValue(unsigned R) const
EVT getValueType() const
Return the ValueType of the referenced return value.
const SDValue & getOperand(unsigned i) const
uint64_t getConstantOperandVal(unsigned i) const
unsigned getOpcode() const
This is used to represent a portion of an LLVM function in a low-level Data Dependence DAG representa...
LLVM_ABI SDValue getExtLoad(ISD::LoadExtType ExtType, const SDLoc &dl, EVT VT, SDValue Chain, SDValue Ptr, MachinePointerInfo PtrInfo, EVT MemVT, MaybeAlign Alignment=MaybeAlign(), MachineMemOperand::Flags MMOFlags=MachineMemOperand::MONone, const AAMDNodes &AAInfo=AAMDNodes())
SDValue getTargetGlobalAddress(const GlobalValue *GV, const SDLoc &DL, EVT VT, int64_t offset=0, unsigned TargetFlags=0)
LLVM_ABI SDValue getMergeValues(ArrayRef< SDValue > Ops, const SDLoc &dl)
Create a MERGE_VALUES node from the given operands.
LLVM_ABI SDVTList getVTList(EVT VT)
Return an SDVTList that represents the list of values specified.
LLVM_ABI SDValue getAllOnesConstant(const SDLoc &DL, EVT VT, bool IsTarget=false, bool IsOpaque=false)
LLVM_ABI MachineSDNode * getMachineNode(unsigned Opcode, const SDLoc &dl, EVT VT)
These are used for target selectors to create a new node with specified return type(s),...
LLVM_ABI SDValue getConstantFP(double Val, const SDLoc &DL, EVT VT, bool isTarget=false)
Create a ConstantFPSDNode wrapping a constant value.
LLVM_ABI SDValue getRegister(Register Reg, EVT VT)
LLVM_ABI SDValue getLoad(EVT VT, const SDLoc &dl, SDValue Chain, SDValue Ptr, MachinePointerInfo PtrInfo, MaybeAlign Alignment=MaybeAlign(), MachineMemOperand::Flags MMOFlags=MachineMemOperand::MONone, const AAMDNodes &AAInfo=AAMDNodes(), const MDNode *Ranges=nullptr)
Loads are not normal binary operators: their result type is not determined by their operands,...
LLVM_ABI SDValue getMemIntrinsicNode(unsigned Opcode, const SDLoc &dl, SDVTList VTList, ArrayRef< SDValue > Ops, EVT MemVT, MachinePointerInfo PtrInfo, Align Alignment, MachineMemOperand::Flags Flags=MachineMemOperand::MOLoad|MachineMemOperand::MOStore, LocationSize Size=LocationSize::precise(0), const AAMDNodes &AAInfo=AAMDNodes())
Creates a MemIntrinsicNode that may produce a result and takes a list of operands.
LLVM_ABI SDValue getNOT(const SDLoc &DL, SDValue Val, EVT VT)
Create a bitwise NOT operation as (XOR Val, -1).
SDValue getUNDEF(EVT VT)
Return an UNDEF node. UNDEF does not have a useful SDLoc.
SDValue getBuildVector(EVT VT, const SDLoc &DL, ArrayRef< SDValue > Ops)
Return an ISD::BUILD_VECTOR node.
SDValue getCopyFromReg(SDValue Chain, const SDLoc &dl, Register Reg, EVT VT)
LLVM_ABI SDValue getZeroExtendInReg(SDValue Op, const SDLoc &DL, EVT VT)
Return the expression required to zero extend the Op value assuming it was the smaller SrcTy value.
const DataLayout & getDataLayout() const
LLVM_ABI SDValue getConstant(uint64_t Val, const SDLoc &DL, EVT VT, bool isTarget=false, bool isOpaque=false)
Create a ConstantSDNode wrapping a constant value.
LLVM_ABI SDValue getStore(SDValue Chain, const SDLoc &dl, SDValue Val, SDValue Ptr, MachinePointerInfo PtrInfo, Align Alignment, MachineMemOperand::Flags MMOFlags=MachineMemOperand::MONone, const AAMDNodes &AAInfo=AAMDNodes())
Helper function to build ISD::STORE nodes.
LLVM_ABI SDValue getSignedConstant(int64_t Val, const SDLoc &DL, EVT VT, bool isTarget=false, bool isOpaque=false)
SDValue getSelectCC(const SDLoc &DL, SDValue LHS, SDValue RHS, SDValue True, SDValue False, ISD::CondCode Cond, SDNodeFlags Flags=SDNodeFlags())
Helper function to make it easier to build SelectCC's if you just have an ISD::CondCode instead of an...
LLVM_ABI SDValue getIntPtrConstant(uint64_t Val, const SDLoc &DL, bool isTarget=false)
LLVM_ABI SDValue getValueType(EVT)
LLVM_ABI SDValue getNode(unsigned Opcode, const SDLoc &DL, EVT VT, ArrayRef< SDUse > Ops)
Gets or creates the specified node.
SDValue getTargetConstant(uint64_t Val, const SDLoc &DL, EVT VT, bool isOpaque=false)
LLVM_ABI SDValue getVectorIdxConstant(uint64_t Val, const SDLoc &DL, bool isTarget=false)
LLVM_ABI void ReplaceAllUsesOfValueWith(SDValue From, SDValue To)
Replace any uses of From with To, leaving uses of other values produced by From.getNode() alone.
MachineFunction & getMachineFunction() const
LLVM_ABI SDValue getCondCode(ISD::CondCode Cond)
LLVMContext * getContext() const
LLVM_ABI SDNode * UpdateNodeOperands(SDNode *N, SDValue Op)
Mutate the specified node in-place to have the specified operands.
SDValue getEntryNode() const
Return the token chain corresponding to the entry of the function.
This class consists of common code factored out of the SmallVector class to reduce code duplication b...
void push_back(const T &Elt)
This is a 'vector' (really, a variable-sized array), optimized for the case when the array is small.
This class is used to represent ISD::STORE nodes.
const SDValue & getBasePtr() const
const SDValue & getValue() const
bool isTruncatingStore() const
Return true if the op does a truncation before store.
void setBooleanVectorContents(BooleanContent Ty)
Specify how the target extends the result of a vector boolean value from a vector of i1 to a wider ty...
void setOperationAction(unsigned Op, MVT VT, LegalizeAction Action)
Indicate that the specified operation does not work with the specified type and indicate what to do a...
void setHasExtractBitsInsn(bool hasExtractInsn=true)
Tells the code generator that the target has BitExtract instructions.
void setBooleanContents(BooleanContent Ty)
Specify how the target extends the result of integer and floating point boolean values from i1 to a w...
void computeRegisterProperties(const TargetRegisterInfo *TRI)
Once all of the register classes are added, this allows us to compute derived properties we expose.
void addRegisterClass(MVT VT, const TargetRegisterClass *RC)
Add the specified register class as an available regclass for the specified value type.
bool isCondCodeLegal(ISD::CondCode CC, MVT VT) const
Return true if the specified condition code is legal for a comparison of the specified types on this ...
virtual MVT getPointerTy(const DataLayout &DL, uint32_t AS=0) const
Return the pointer type for the given address space, defaults to the pointer type from the data layou...
bool isOperationLegal(unsigned Op, EVT VT) const
Return true if the specified operation is legal on this target.
void setTruncStoreAction(MVT ValVT, MVT MemVT, LegalizeAction Action)
Indicate that the specified truncating store does not work with the specified type and indicate what ...
AtomicExpansionKind
Enum that specifies what an atomic load/AtomicRMWInst is expanded to, if at all.
void setCondCodeAction(ArrayRef< ISD::CondCode > CCs, MVT VT, LegalizeAction Action)
Indicate that the specified condition code is or isn't supported on the target and indicate what to d...
void setTargetDAGCombine(ArrayRef< ISD::NodeType > NTs)
Targets should invoke this method for each target independent node that they want to provide a custom...
void setLoadExtAction(unsigned ExtType, MVT ValVT, MVT MemVT, LegalizeAction Action)
Indicate that the specified load with extension does not work with the specified type and indicate wh...
void setSchedulingPreference(Sched::Preference Pref)
Specify the target scheduling preference.
SDValue scalarizeVectorStore(StoreSDNode *ST, SelectionDAG &DAG) const
SDValue expandUnalignedStore(StoreSDNode *ST, SelectionDAG &DAG) const
Expands an unaligned store to 2 half-size stores for integer values, and possibly more for vectors.
bool expandFP_TO_SINT(SDNode *N, SDValue &Result, SelectionDAG &DAG) const
Expand float(f32) to SINT(i64) conversion.
std::pair< SDValue, SDValue > scalarizeVectorLoad(LoadSDNode *LD, SelectionDAG &DAG) const
Turn load of vector type into a load of the individual elements.
virtual MachineBasicBlock * EmitInstrWithCustomInserter(MachineInstr &MI, MachineBasicBlock *MBB) const
This method should be implemented by targets that mark instructions with the 'usesCustomInserter' fla...
void expandShiftParts(SDNode *N, SDValue &Lo, SDValue &Hi, SelectionDAG &DAG) const
Expand shift-by-parts.
Primary interface to the complete machine description for the target machine.
Type * getType() const
All values are typed, get the type of this value.
Definition Value.h:255
#define llvm_unreachable(msg)
Marks that the current location is not supposed to be reachable.
@ LOCAL_ADDRESS
Address space for local memory.
@ PARAM_I_ADDRESS
Address space for indirect addressable parameter memory (VTX1).
@ CONSTANT_ADDRESS
Address space for constant memory (VTX2).
@ FLAT_ADDRESS
Address space for flat memory.
@ GLOBAL_ADDRESS
Address space for global memory (RAT0, VTX0).
@ PRIVATE_ADDRESS
Address space for private memory.
@ BUILD_VERTICAL_VECTOR
This node is for VLIW targets and it is used to represent a vector that is stored in consecutive regi...
constexpr char Align[]
Key for Kernel::Arg::Metadata::mAlign.
constexpr char Args[]
Key for Kernel::Metadata::mArgs.
LLVM_READNONE constexpr bool isShader(CallingConv::ID CC)
constexpr int64_t getNullPointerValue(unsigned AS)
Get the null pointer value for the given address space.
constexpr std::underlying_type_t< E > Mask()
Get a bitmask with 1s in all places up to the high-order bit of E's largest value.
unsigned ID
LLVM IR allows to use arbitrary numbers as calling convention identifiers.
Definition CallingConv.h:24
@ AMDGPU_CS
Used for Mesa/AMDPAL compute shaders.
@ AMDGPU_VS
Used for Mesa vertex shaders, or AMDPAL last shader stage before rasterization (vertex shader if tess...
@ AMDGPU_KERNEL
Used for AMDGPU code object kernels.
@ AMDGPU_HS
Used for Mesa/AMDPAL hull shaders (= tessellation control shaders).
@ AMDGPU_GS
Used for Mesa/AMDPAL geometry shaders.
@ AMDGPU_PS
Used for Mesa/AMDPAL pixel shaders.
@ Cold
Attempts to make code in the caller as efficient as possible under the assumption that the call is no...
Definition CallingConv.h:47
@ SPIR_KERNEL
Used for SPIR kernel functions.
@ Fast
Attempts to make calls as fast as possible (e.g.
Definition CallingConv.h:41
@ AMDGPU_ES
Used for AMDPAL shader stage before geometry shader if geometry is in use.
@ AMDGPU_LS
Used for AMDPAL vertex shader if tessellation is in use.
@ C
The default llvm calling convention, compatible with C.
Definition CallingConv.h:34
bool isNON_EXTLoad(const SDNode *N)
Returns true if the specified node is a non-extending load.
@ SETCC
SetCC operator - This evaluates to a true value iff the condition is true.
Definition ISDOpcodes.h:829
@ MERGE_VALUES
MERGE_VALUES - This node takes multiple discrete operands and returns them all as its individual resu...
Definition ISDOpcodes.h:261
@ ATOMIC_STORE
OUTCHAIN = ATOMIC_STORE(INCHAIN, val, ptr) This corresponds to "store atomic" instruction.
@ FMAD
FMAD - Perform a * b + c, while getting the same result as the separately rounded operations.
Definition ISDOpcodes.h:524
@ ADD
Simple integer binary arithmetic operators.
Definition ISDOpcodes.h:264
@ LOAD
LOAD and STORE have token chains as their first operand, then the same operands as an LLVM load/store...
@ ANY_EXTEND
ANY_EXTEND - Used for integer types. The high bits are undefined.
Definition ISDOpcodes.h:863
@ FMA
FMA - Perform a * b + c with no intermediate rounding step.
Definition ISDOpcodes.h:520
@ INTRINSIC_VOID
OUTCHAIN = INTRINSIC_VOID(INCHAIN, INTRINSICID, arg1, arg2, ...) This node represents a target intrin...
Definition ISDOpcodes.h:220
@ GlobalAddress
Definition ISDOpcodes.h:88
@ FADD
Simple binary floating point operators.
Definition ISDOpcodes.h:417
@ SDIVREM
SDIVREM/UDIVREM - Divide two integers and produce both a quotient and remainder result.
Definition ISDOpcodes.h:280
@ BITCAST
BITCAST - This operator converts between integer, vector and FP values, as if the value was stored to...
@ CTLZ_ZERO_POISON
Definition ISDOpcodes.h:798
@ SIGN_EXTEND
Conversion operators.
Definition ISDOpcodes.h:854
@ FNEG
Perform various unary floating-point operations inspired by libm.
@ BR_CC
BR_CC - Conditional branch.
@ IS_FPCLASS
Performs a check of floating point class property, defined by IEEE-754.
Definition ISDOpcodes.h:550
@ SELECT
Select(COND, TRUEVAL, FALSEVAL).
Definition ISDOpcodes.h:806
@ ATOMIC_LOAD
Val, OUTCHAIN = ATOMIC_LOAD(INCHAIN, ptr) This corresponds to "load atomic" instruction.
@ SHL
Shift and rotation operations.
Definition ISDOpcodes.h:771
@ EXTRACT_VECTOR_ELT
EXTRACT_VECTOR_ELT(VECTOR, IDX) - Returns a single element from VECTOR identified by the (potentially...
Definition ISDOpcodes.h:578
@ SELECT_CC
Select with condition operator - This selects between a true value and a false value (ops #2 and #3) ...
Definition ISDOpcodes.h:821
@ SIGN_EXTEND_INREG
SIGN_EXTEND_INREG - This operator atomically performs a SHL/SRA pair to sign extend a small value in ...
Definition ISDOpcodes.h:898
@ FP_TO_SINT
FP_TO_[US]INT - Convert a floating point value to a signed or unsigned integer.
Definition ISDOpcodes.h:936
@ AND
Bitwise operators - logical and, logical or, logical xor.
Definition ISDOpcodes.h:741
@ INTRINSIC_WO_CHAIN
RESULT = INTRINSIC_WO_CHAIN(INTRINSICID, arg1, arg2, ...) This node represents a target intrinsic fun...
Definition ISDOpcodes.h:205
@ INSERT_VECTOR_ELT
INSERT_VECTOR_ELT(VECTOR, VAL, IDX) - Returns VECTOR with the element at IDX replaced with VAL.
Definition ISDOpcodes.h:567
@ CTTZ_ZERO_POISON
Bit counting operators with a poisoned result for zero inputs.
Definition ISDOpcodes.h:797
@ FP_ROUND
X = FP_ROUND(Y, TRUNC) - Rounding 'Y' from a larger floating point type down to the precision of the ...
Definition ISDOpcodes.h:969
@ ADDRSPACECAST
ADDRSPACECAST - This operator converts between pointers of different address spaces.
@ TRUNCATE
TRUNCATE - Completely drop the high bits.
Definition ISDOpcodes.h:866
@ BRCOND
BRCOND - Conditional branch.
@ SHL_PARTS
SHL_PARTS/SRA_PARTS/SRL_PARTS - These operators are used for expanded integer shift operations.
Definition ISDOpcodes.h:843
@ FCOPYSIGN
FCOPYSIGN(X, Y) - Return the value of X with the sign of Y.
Definition ISDOpcodes.h:536
@ BUILD_VECTOR
BUILD_VECTOR(ELT0, ELT1, ELT2, ELT3,...) - Return a fixed-width vector with the specified,...
Definition ISDOpcodes.h:558
LLVM_ABI CondCode getSetCCInverse(CondCode Operation, EVT Type)
Return the operation corresponding to !(X op Y), where 'op' is a valid SetCC operation.
LLVM_ABI CondCode getSetCCSwappedOperands(CondCode Operation)
Return the operation corresponding to (Y op X) when given the operation for (X op Y).
CondCode
ISD::CondCode enum - These are ordered carefully to make the bitfields below work out,...
LoadExtType
LoadExtType enum - This enum defines the three variants of LOADEXT (load with extension).
int32_t getLDSNoRetOp(uint32_t Opcode)
constexpr float pif
Definition MathExtras.h:53
NodeAddr< NodeBase * > Node
Definition RDFGraph.h:383
This is an optimization pass for GlobalISel generic memory operations.
auto drop_begin(T &&RangeOrContainer, size_t N=1)
Return a range covering RangeOrContainer with the first N elements excluded.
Definition STLExtras.h:315
@ Offset
Definition DWP.cpp:573
MachineInstrBuilder BuildMI(MachineFunction &MF, const MIMetadata &MIMD, const MCInstrDesc &MCID)
Builder interface. Specify how to create the initial instruction itself.
constexpr bool isInt(int64_t x)
Checks if an integer fits into the given bit width.
Definition MathExtras.h:165
LLVM_ABI bool isNullConstant(SDValue V)
Returns true if V is a constant integer zero.
@ Kill
The last use of a register.
decltype(auto) dyn_cast(const From &Val)
dyn_cast<X> - Return the argument parameter cast to the specified type.
Definition Casting.h:643
bool CCAssignFn(unsigned ValNo, MVT ValVT, MVT LocVT, CCValAssign::LocInfo LocInfo, ISD::ArgFlagsTy ArgFlags, Type *OrigTy, CCState &State)
CCAssignFn - This function assigns a location for Val, updating State to reflect the change.
RelativeUniformCounterPtr ValuesPtrExpr VTableAddr Value
Definition InstrProf.h:143
class LLVM_GSL_OWNER SmallVector
Forward declaration of SmallVector so that calculateSmallVectorDefaultInlinedElements can reference s...
bool isa(const From &Val)
isa<X> - Return true if the parameter to the template is an instance of one of the template type argu...
Definition Casting.h:547
@ AfterLegalizeVectorOps
Definition DAGCombine.h:18
DWARFExpression::Operation Op
ArrayRef(const T &OneElt) -> ArrayRef< T >
decltype(auto) cast(const From &Val)
cast<X> - Return the argument parameter cast to the specified type.
Definition Casting.h:559
Align commonAlignment(Align A, uint64_t Offset)
Returns the alignment that satisfies both alignments.
Definition Alignment.h:201
@ Custom
The result value requires a custom uniformity check.
Definition Uniformity.h:31
LLVM_ABI bool isAllOnesConstant(SDValue V)
Returns true if V is an integer constant with all bits set.
LLVM_ABI void reportFatalUsageError(Error Err)
Report a fatal error that does not indicate a bug in LLVM.
Definition Error.cpp:177
void swap(llvm::BitVector &LHS, llvm::BitVector &RHS)
Implement std::swap in terms of BitVector swap.
Definition BitVector.h:862
#define N
This struct is a compact representation of a valid (non-zero power of two) alignment.
Definition Alignment.h:39
Extended Value Type.
Definition ValueTypes.h:35
EVT changeVectorElementTypeToInteger() const
Return a vector with the same number of elements as this vector, but with the element type converted ...
Definition ValueTypes.h:90
TypeSize getStoreSize() const
Return the number of bytes overwritten by a store of the specified value type.
Definition ValueTypes.h:418
bool isSimple() const
Test if the given EVT is simple (as opposed to being extended).
Definition ValueTypes.h:145
EVT changeTypeToInteger() const
Return the type converted to an equivalently sized integer or vector with integer element type.
Definition ValueTypes.h:129
bool bitsGT(EVT VT) const
Return true if this has more bits than VT.
Definition ValueTypes.h:307
bool bitsLT(EVT VT) const
Return true if this has less bits than VT.
Definition ValueTypes.h:323
bool isFloatingPoint() const
Return true if this is a FP or a vector FP type.
Definition ValueTypes.h:155
TypeSize getSizeInBits() const
Return the size of the specified value type in bits.
Definition ValueTypes.h:396
uint64_t getScalarSizeInBits() const
Definition ValueTypes.h:408
MVT getSimpleVT() const
Return the SimpleValueType held in the specified simple EVT.
Definition ValueTypes.h:339
bool isVector() const
Return true if this is a vector value type.
Definition ValueTypes.h:176
EVT getScalarType() const
If this is a vector type, return the element type, otherwise return this.
Definition ValueTypes.h:346
bool bitsGE(EVT VT) const
Return true if this has no less bits than VT.
Definition ValueTypes.h:315
EVT getVectorElementType() const
Given a vector type, return the type of each element.
Definition ValueTypes.h:351
unsigned getVectorNumElements() const
Given a vector type, return the number of elements it contains.
Definition ValueTypes.h:359
bool bitsLE(EVT VT) const
Return true if this has no more bits than VT.
Definition ValueTypes.h:331
bool isInteger() const
Return true if this is an integer or a vector integer type.
Definition ValueTypes.h:160
InputArg - This struct carries flags and type information about a single incoming (formal) argument o...
This class contains a discriminated union of information about pointers in memory operands,...