LLVM 24.0.0git
SIISelLowering.h
Go to the documentation of this file.
1//===-- SIISelLowering.h - SI DAG Lowering Interface ------------*- C++ -*-===//
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/// SI DAG Lowering interface definition
11//
12//===----------------------------------------------------------------------===//
13
14#ifndef LLVM_LIB_TARGET_AMDGPU_SIISELLOWERING_H
15#define LLVM_LIB_TARGET_AMDGPU_SIISELLOWERING_H
16
18#include "AMDGPUISelLowering.h"
19#include "SIDefines.h"
22
23namespace llvm {
24
25class GCNSubtarget;
27class SIRegisterInfo;
28
29namespace AMDGPU {
31}
32
34private:
35 const GCNSubtarget *Subtarget;
36
37public:
40 EVT VT) const override;
43 EVT VT) const override;
44
46 LLVMContext &Context, CallingConv::ID CC, EVT VT, EVT &IntermediateVT,
47 unsigned &NumIntermediates, MVT &RegisterVT) const override;
48
50
51private:
52 SDValue lowerKernArgParameterPtr(SelectionDAG &DAG, const SDLoc &SL,
53 SDValue Chain, uint64_t Offset) const;
54 SDValue getImplicitArgPtr(SelectionDAG &DAG, const SDLoc &SL) const;
55 SDValue getLDSKernelId(SelectionDAG &DAG, const SDLoc &SL) const;
56 SDValue lowerKernargMemParameter(SelectionDAG &DAG, EVT VT, EVT MemVT,
57 const SDLoc &SL, SDValue Chain,
58 uint64_t Offset, Align Alignment,
59 bool Signed,
60 const ISD::InputArg *Arg = nullptr) const;
61 SDValue loadImplicitKernelArgument(SelectionDAG &DAG, MVT VT, const SDLoc &DL,
62 Align Alignment,
63 ImplicitParameter Param) const;
64
65 SDValue convertABITypeToValueType(SelectionDAG &DAG, SDValue Val,
66 CCValAssign &VA, const SDLoc &SL) const;
67
68 SDValue lowerStackParameter(SelectionDAG &DAG, CCValAssign &VA,
69 const SDLoc &SL, SDValue Chain,
70 const ISD::InputArg &Arg) const;
71 SDValue lowerWorkGroupId(
72 SelectionDAG &DAG, const SIMachineFunctionInfo &MFI, EVT VT,
75 AMDGPUFunctionArgInfo::PreloadedValue ClusterWorkGroupIdPV) const;
76 SDValue getPreloadedValue(SelectionDAG &DAG,
77 const SIMachineFunctionInfo &MFI,
78 EVT VT,
80
81 SDValue LowerGlobalAddress(AMDGPUMachineFunctionInfo *MFI, SDValue Op,
82 SelectionDAG &DAG) const override;
83 SDValue LowerExternalSymbol(SDValue Op, SelectionDAG &DAG) const;
84
85 SDValue lowerImplicitZextParam(SelectionDAG &DAG, SDValue Op,
86 MVT VT, unsigned Offset) const;
87 SDValue lowerImage(SDValue Op, const AMDGPU::ImageDimIntrinsicInfo *Intr,
88 SelectionDAG &DAG, bool WithChain) const;
89 SDValue lowerSBuffer(EVT VT, EVT MemVT, SDLoc DL, SDValue Chain, SDValue Rsrc,
90 SDValue Offset, SDValue CachePolicy, SelectionDAG &DAG,
91 MachineMemOperand *MMO = nullptr) const;
92
93 SDValue lowerRawBufferAtomicIntrin(SDValue Op, SelectionDAG &DAG,
94 unsigned NewOpcode) const;
95 SDValue lowerStructBufferAtomicIntrin(SDValue Op, SelectionDAG &DAG,
96 unsigned NewOpcode) const;
97
98 SDValue lowerWaveID(SelectionDAG &DAG, SDValue Op) const;
99 SDValue lowerConstHwRegRead(SelectionDAG &DAG, SDValue Op,
100 AMDGPU::Hwreg::Id HwReg, unsigned LowBit,
101 unsigned Width) const;
102 SDValue lowerWorkitemID(SelectionDAG &DAG, SDValue Op, unsigned Dim,
103 const ArgDescriptor &ArgDesc) const;
104
105 SDValue LowerINTRINSIC_WO_CHAIN(SDValue Op, SelectionDAG &DAG) const;
106 SDValue LowerINTRINSIC_W_CHAIN(SDValue Op, SelectionDAG &DAG) const;
107 SDValue LowerINTRINSIC_VOID(SDValue Op, SelectionDAG &DAG) const;
108 SDValue LowerCONVERT_FROM_ARBITRARY_FP(SDValue Op, SelectionDAG &DAG) const;
109 SDValue lowerFromFP8(SDValue Op, bool IsBF8, SelectionDAG &DAG) const;
110 SDValue LowerCONVERT_TO_ARBITRARY_FP(SDValue Op, SelectionDAG &DAG) const;
111 SDValue lowerToFP8(SDValue Op, bool IsBF8, bool IsE5M3,
112 SelectionDAG &DAG) const;
113
114 // The raw.tbuffer and struct.tbuffer intrinsics have two offset args: offset
115 // (the offset that is included in bounds checking and swizzling, to be split
116 // between the instruction's voffset and immoffset fields) and soffset (the
117 // offset that is excluded from bounds checking and swizzling, to go in the
118 // instruction's soffset field). This function takes the first kind of
119 // offset and figures out how to split it between voffset and immoffset.
120 std::pair<SDValue, SDValue> splitBufferOffsets(SDValue Offset,
121 SelectionDAG &DAG) const;
122
123 SDValue widenLoad(LoadSDNode *Ld, DAGCombinerInfo &DCI) const;
124 SDValue LowerLOAD(SDValue Op, SelectionDAG &DAG) const;
125 SDValue LowerSELECT(SDValue Op, SelectionDAG &DAG) const;
126 SDValue lowerFastUnsafeFDIV(SDValue Op, SelectionDAG &DAG) const;
127 SDValue lowerFastUnsafeFDIV64(SDValue Op, SelectionDAG &DAG) const;
128 SDValue lowerFDIV_FAST(SDValue Op, SelectionDAG &DAG) const;
129 SDValue LowerFDIV16(SDValue Op, SelectionDAG &DAG) const;
130 SDValue LowerFDIV32(SDValue Op, SelectionDAG &DAG) const;
131 SDValue LowerFDIV64(SDValue Op, SelectionDAG &DAG) const;
132 SDValue LowerFDIV(SDValue Op, SelectionDAG &DAG) const;
133 SDValue LowerFFREXP(SDValue Op, SelectionDAG &DAG) const;
134 SDValue LowerSTORE(SDValue Op, SelectionDAG &DAG) const;
135 SDValue LowerTrig(SDValue Op, SelectionDAG &DAG) const;
136 SDValue lowerFSQRTF16(SDValue Op, SelectionDAG &DAG) const;
137 SDValue lowerFSQRTF32(SDValue Op, SelectionDAG &DAG) const;
138 SDValue lowerFSQRTF64(SDValue Op, SelectionDAG &DAG) const;
139 SDValue LowerATOMIC_CMP_SWAP(SDValue Op, SelectionDAG &DAG) const;
140 SDValue LowerBRCOND(SDValue Op, SelectionDAG &DAG) const;
141 SDValue LowerRETURNADDR(SDValue Op, SelectionDAG &DAG) const;
142 SDValue LowerSPONENTRY(SDValue Op, SelectionDAG &DAG) const;
143 SDValue adjustLoadValueType(unsigned Opcode, MemSDNode *M,
145 bool IsIntrinsic = false) const;
146
147 SDValue lowerIntrinsicLoad(MemSDNode *M, bool IsFormat, SelectionDAG &DAG,
148 ArrayRef<SDValue> Ops) const;
149
150 // Call DAG.getMemIntrinsicNode for a load, but first widen a dwordx3 type to
151 // dwordx4 if on SI.
152 SDValue getMemIntrinsicNode(unsigned Opcode, const SDLoc &DL, SDVTList VTList,
154 MachineMemOperand *MMO, SelectionDAG &DAG) const;
155
156 SDValue handleD16VData(SDValue VData, SelectionDAG &DAG,
157 bool ImageStore = false) const;
158
159 /// Converts \p Op, which must be of floating point type, to the
160 /// floating point type \p VT, by either extending or truncating it.
161 SDValue getFPExtOrFPRound(SelectionDAG &DAG,
162 SDValue Op,
163 const SDLoc &DL,
164 EVT VT) const;
165
166 SDValue convertArgType(
167 SelectionDAG &DAG, EVT VT, EVT MemVT, const SDLoc &SL, SDValue Val,
168 bool Signed, const ISD::InputArg *Arg = nullptr) const;
169
170 /// Custom lowering for ISD::FP_ROUND for MVT::f16.
171 SDValue lowerFP_ROUND(SDValue Op, SelectionDAG &DAG) const;
172 SDValue splitFP_ROUNDVectorOp(SDValue Op, SelectionDAG &DAG) const;
173 SDValue lowerFMINNUM_FMAXNUM(SDValue Op, SelectionDAG &DAG) const;
174 SDValue lowerFMINIMUMNUM_FMAXIMUMNUM(SDValue Op, SelectionDAG &DAG) const;
175 SDValue lowerFLDEXP(SDValue Op, SelectionDAG &DAG) const;
176 SDValue promoteUniformOpToI32(SDValue Op, DAGCombinerInfo &DCI) const;
177 SDValue promoteUniformUnaryOpToI32(SDValue Op, DAGCombinerInfo &DCI) const;
178 SDValue lowerFCOPYSIGN(SDValue Op, SelectionDAG &DAG) const;
179 SDValue lowerMUL(SDValue Op, SelectionDAG &DAG) const;
180 SDValue lowerXMULO(SDValue Op, SelectionDAG &DAG) const;
181 SDValue lowerXMUL_LOHI(SDValue Op, SelectionDAG &DAG) const;
182
183 SDValue getSegmentAperture(unsigned AS, const SDLoc &DL,
184 SelectionDAG &DAG) const;
185
186 SDValue lowerADDRSPACECAST(SDValue Op, SelectionDAG &DAG) const;
187 SDValue lowerINSERT_SUBVECTOR(SDValue Op, SelectionDAG &DAG) const;
188 SDValue lowerINSERT_VECTOR_ELT(SDValue Op, SelectionDAG &DAG) const;
189 SDValue lowerEXTRACT_VECTOR_ELT(SDValue Op, SelectionDAG &DAG) const;
190 SDValue lowerVECTOR_SHUFFLE(SDValue Op, SelectionDAG &DAG) const;
191 SDValue lowerSCALAR_TO_VECTOR(SDValue Op, SelectionDAG &DAG) const;
192 SDValue lowerBUILD_VECTOR(SDValue Op, SelectionDAG &DAG) const;
193
194 SDValue lowerTRAP(SDValue Op, SelectionDAG &DAG) const;
195 SDValue lowerTrapEndpgm(SDValue Op, SelectionDAG &DAG) const;
196 SDValue lowerTrapHsaQueuePtr(SDValue Op, SelectionDAG &DAG) const;
197 SDValue lowerTrapHsa(SDValue Op, SelectionDAG &DAG) const;
198 SDValue lowerDEBUGTRAP(SDValue Op, SelectionDAG &DAG) const;
199 SDValue LowerINLINEASM(SDValue Op, SelectionDAG &DAG) const;
200
201 SDNode *adjustWritemask(MachineSDNode *&N, SelectionDAG &DAG) const;
202
203 SDValue performUCharToFloatCombine(SDNode *N,
204 DAGCombinerInfo &DCI) const;
205 SDValue performFCopySignCombine(SDNode *N, DAGCombinerInfo &DCI) const;
206
207 SDValue performSHLPtrCombine(SDNode *N,
208 unsigned AS,
209 EVT MemVT,
210 DAGCombinerInfo &DCI) const;
211
212 SDValue performMemSDNodeCombine(MemSDNode *N, DAGCombinerInfo &DCI) const;
213
214 SDValue splitBinaryBitConstantOp(DAGCombinerInfo &DCI, const SDLoc &SL,
215 unsigned Opc, SDValue LHS,
216 const ConstantSDNode *CRHS) const;
217
218 SDValue performAndCombine(SDNode *N, DAGCombinerInfo &DCI) const;
219 SDValue performOrCombine(SDNode *N, DAGCombinerInfo &DCI) const;
220 SDValue performXorCombine(SDNode *N, DAGCombinerInfo &DCI) const;
221 SDValue performZeroOrAnyExtendCombine(SDNode *N, DAGCombinerInfo &DCI) const;
222 SDValue performSignExtendInRegCombine(SDNode *N, DAGCombinerInfo &DCI) const;
223 SDValue performClassCombine(SDNode *N, DAGCombinerInfo &DCI) const;
224 SDValue getCanonicalConstantFP(SelectionDAG &DAG, const SDLoc &SL, EVT VT,
225 const APFloat &C) const;
226 SDValue performFCanonicalizeCombine(SDNode *N, DAGCombinerInfo &DCI) const;
227
228 SDValue performFPMed3ImmCombine(SelectionDAG &DAG, const SDLoc &SL,
229 SDValue Op0, SDValue Op1,
230 bool IsKnownNoNaNs) const;
231 SDValue performIntMed3ImmCombine(SelectionDAG &DAG, const SDLoc &SL,
232 SDValue Src, SDValue MinVal, SDValue MaxVal,
233 bool Signed) const;
234 SDValue performMinMaxCombine(SDNode *N, DAGCombinerInfo &DCI) const;
235 SDValue performFMed3Combine(SDNode *N, DAGCombinerInfo &DCI) const;
236 SDValue performCvtPkRTZCombine(SDNode *N, DAGCombinerInfo &DCI) const;
237 SDValue performExtractVectorEltCombine(SDNode *N, DAGCombinerInfo &DCI) const;
238 SDValue performInsertVectorEltCombine(SDNode *N, DAGCombinerInfo &DCI) const;
239 SDValue performFPRoundCombine(SDNode *N, DAGCombinerInfo &DCI) const;
240 SDValue performFrexpSelectCombine(SDNode *N, DAGCombinerInfo &DCI) const;
241 SDValue performSelectCombine(SDNode *N, DAGCombinerInfo &DCI) const;
242
243 SDValue reassociateScalarOps(SDNode *N, SelectionDAG &DAG) const;
244 unsigned getFusedOpcode(const SelectionDAG &DAG,
245 const SDNode *N0, const SDNode *N1) const;
246 SDValue tryFoldToMad64_32(SDNode *N, DAGCombinerInfo &DCI) const;
247 SDValue foldAddSub64WithZeroLowBitsTo32(SDNode *N,
248 DAGCombinerInfo &DCI) const;
249
250 SDValue performAddCombine(SDNode *N, DAGCombinerInfo &DCI) const;
251 SDValue performPtrAddCombine(SDNode *N, DAGCombinerInfo &DCI) const;
252 SDValue performSubCombine(SDNode *N, DAGCombinerInfo &DCI) const;
253 SDValue performFAddCombine(SDNode *N, DAGCombinerInfo &DCI) const;
254 SDValue performFSubCombine(SDNode *N, DAGCombinerInfo &DCI) const;
255 SDValue performFDivCombine(SDNode *N, DAGCombinerInfo &DCI) const;
256 SDValue performFMulCombine(SDNode *N, DAGCombinerInfo &DCI) const;
257 SDValue performFMACombine(SDNode *N, DAGCombinerInfo &DCI) const;
258 SDValue performSetCCCombine(SDNode *N, DAGCombinerInfo &DCI) const;
259 SDValue performCvtF32UByteNCombine(SDNode *N, DAGCombinerInfo &DCI) const;
260 SDValue performClampCombine(SDNode *N, DAGCombinerInfo &DCI) const;
261 SDValue performRcpCombine(SDNode *N, DAGCombinerInfo &DCI) const;
262
263 bool isLegalMUBUFAddressingMode(const AddrMode &AM) const;
264
265 unsigned isCFIntrinsic(const SDNode *Intr) const;
266
267public:
268 /// \returns True if fixup needs to be emitted for given global value \p GV,
269 /// false otherwise.
270 bool shouldEmitFixup(const GlobalValue *GV) const;
271
272 /// \returns True if GOT relocation needs to be emitted for given global value
273 /// \p GV, false otherwise.
274 bool shouldEmitGOTReloc(const GlobalValue *GV) const;
275
276 /// \returns True if PC-relative relocation needs to be emitted for given
277 /// global value \p GV, false otherwise.
278 bool shouldEmitPCReloc(const GlobalValue *GV) const;
279
280 /// \returns true if this should use a literal constant for an LDS address,
281 /// and not emit a relocation for an LDS global.
282 bool shouldUseLDSConstAddress(const GlobalValue *GV) const;
283
284 /// Check if EXTRACT_VECTOR_ELT/INSERT_VECTOR_ELT (<n x e>, var-idx) should be
285 /// expanded into a set of cmp/select instructions.
286 static bool shouldExpandVectorDynExt(unsigned EltSize, unsigned NumElem,
287 bool IsDivergentIdx,
288 const GCNSubtarget *Subtarget);
289
290 bool shouldExpandVectorDynExt(SDNode *N) const;
291
292 bool shouldPreservePtrArith(const Function &F, EVT PtrVT) const override;
293
295 EVT PtrVT) const override;
296
297private:
298 /// Returns true if the first real instruction in MBB is 8 bytes and could
299 /// be split by a 32-byte fetch window boundary. Used on GFX950 to avoid
300 /// instruction fetch delays.
301 bool needsFetchWindowAlignment(const MachineBasicBlock &MBB) const;
302
303 // Analyze a combined offset from an amdgcn_s_buffer_load intrinsic and store
304 // the three offsets (voffset, soffset and instoffset) into the SDValue[3]
305 // array pointed to by Offsets.
306 void setBufferOffsets(SDValue CombinedOffset, SelectionDAG &DAG,
307 SDValue *Offsets, Align Alignment = Align(4)) const;
308
309 // Convert the i128 that an addrspace(8) pointer is natively represented as
310 // into the v4i32 that all the buffer intrinsics expect to receive. We can't
311 // add register classes for i128 on pain of the promotion logic going haywire,
312 // so this slightly ugly hack is what we've got. If passed a non-pointer
313 // argument (as would be seen in older buffer intrinsics), does nothing.
314 SDValue bufferRsrcPtrToVector(SDValue MaybePointer, SelectionDAG &DAG) const;
315
316 // Wrap a 64-bit pointer into a v4i32 (which is how all SelectionDAG code
317 // represents ptr addrspace(8)) using the flags specified in the intrinsic.
318 SDValue lowerPointerAsRsrcIntrin(SDNode *Op, SelectionDAG &DAG) const;
319
320 // Handle 8 bit and 16 bit buffer loads
321 SDValue handleByteShortBufferLoads(SelectionDAG &DAG, EVT LoadVT, SDLoc DL,
324 bool IsTFE = false) const;
325
326 // Handle 8 bit and 16 bit buffer stores
327 SDValue handleByteShortBufferStores(SelectionDAG &DAG, EVT VDataType,
328 SDLoc DL, SDValue Ops[],
329 MemSDNode *M) const;
330
331public:
332 SITargetLowering(const TargetMachine &tm, const GCNSubtarget &STI);
333
334 const GCNSubtarget *getSubtarget() const;
335
337
338 bool isFPExtFoldable(const SelectionDAG &DAG, unsigned Opcode, EVT DestVT,
339 EVT SrcVT) const override;
340
341 bool isFPExtFoldable(const MachineInstr &MI, unsigned Opcode, LLT DestTy,
342 LLT SrcTy) const override;
343
344 bool isShuffleMaskLegal(ArrayRef<int> /*Mask*/, EVT /*VT*/) const override;
345
346 // While address space 7 should never make it to codegen, it still needs to
347 // have a MVT to prevent some analyses that query this function from breaking.
348 // We use the custum MVT::amdgpuBufferFatPointer and
349 // amdgpu::amdgpuBufferStridedPointer for this, though we use v8i32 for the
350 // memory type (which is probably unused).
351 MVT getPointerTy(const DataLayout &DL, unsigned AS) const override;
352 MVT getPointerMemTy(const DataLayout &DL, unsigned AS) const override;
353
355 MachineFunction &MF,
356 unsigned IntrinsicID) const override;
357
360 Type *&AccessTy) const override;
361
362 bool isLegalFlatAddressingMode(const AddrMode &AM, unsigned AddrSpace) const;
363 bool isLegalGlobalAddressingMode(const AddrMode &AM) const;
364 bool isLegalAddressingMode(const DataLayout &DL, const AddrMode &AM, Type *Ty,
365 unsigned AS,
366 Instruction *I = nullptr) const override;
367
368 bool canMergeStoresTo(unsigned AS, EVT MemVT,
369 const MachineFunction &MF) const override;
370
372 unsigned Size, unsigned AddrSpace, Align Alignment,
374 unsigned *IsFast = nullptr) const;
375
377 LLT Ty, unsigned AddrSpace, Align Alignment,
379 unsigned *IsFast = nullptr) const override {
380 if (IsFast)
381 *IsFast = 0;
382 return allowsMisalignedMemoryAccessesImpl(Ty.getSizeInBits(), AddrSpace,
383 Alignment, Flags, IsFast);
384 }
385
387 EVT VT, unsigned AS, Align Alignment,
389 unsigned *IsFast = nullptr) const override;
390
391 EVT getOptimalMemOpType(LLVMContext &Context, const MemOp &Op,
392 const AttributeList &FuncAttributes) const override;
393
394 bool isMemOpHasNoClobberedMemOperand(const SDNode *N) const;
395
396 static bool isNonGlobalAddrSpace(unsigned AS);
397
398 bool isFreeAddrSpaceCast(unsigned SrcAS, unsigned DestAS) const override;
399
401 getPreferredVectorAction(MVT VT) const override;
402
404 Type *Ty) const override;
405
407 unsigned Index) const override;
408 bool isExtractVecEltCheap(EVT VT, unsigned Index) const override;
409
410 bool isTypeDesirableForOp(unsigned Op, EVT VT) const override;
411
412 bool isOffsetFoldingLegal(const GlobalAddressSDNode *GA) const override;
413
414 unsigned combineRepeatedFPDivisors() const override {
415 // Combine multiple FDIVs with the same divisor into multiple FMULs by the
416 // reciprocal.
417 return 2;
418 }
419
420 bool supportSplitCSR(MachineFunction *MF) const override;
421 void initializeSplitCSR(MachineBasicBlock *Entry) const override;
423 MachineBasicBlock *Entry,
424 const SmallVectorImpl<MachineBasicBlock *> &Exits) const override;
425
427 bool isVarArg,
429 const SDLoc &DL, SelectionDAG &DAG,
430 SmallVectorImpl<SDValue> &InVals) const override;
431
432 bool CanLowerReturn(CallingConv::ID CallConv,
433 MachineFunction &MF, bool isVarArg,
435 LLVMContext &Context, const Type *RetTy) const override;
436
437 SDValue LowerReturn(SDValue Chain, CallingConv::ID CallConv, bool IsVarArg,
439 const SmallVectorImpl<SDValue> &OutVals, const SDLoc &DL,
440 SelectionDAG &DAG) const override;
441
443 CallLoweringInfo &CLI,
444 CCState &CCInfo,
445 const SIMachineFunctionInfo &Info,
446 SmallVectorImpl<std::pair<unsigned, SDValue>> &RegsToPass,
447 SmallVectorImpl<SDValue> &MemOpChains,
448 SDValue Chain) const;
449
451 CallingConv::ID CallConv, bool isVarArg,
453 const SDLoc &DL, SelectionDAG &DAG,
454 SmallVectorImpl<SDValue> &InVals, bool isThisReturn,
455 SDValue ThisVal) const;
456
457 bool mayBeEmittedAsTailCall(const CallInst *) const override;
458
460 SDValue Callee, CallingConv::ID CalleeCC, bool isVarArg,
462 const SmallVectorImpl<SDValue> &OutVals,
463 const SmallVectorImpl<ISD::InputArg> &Ins, SelectionDAG &DAG) const;
464
465 SDValue LowerCall(CallLoweringInfo &CLI,
466 SmallVectorImpl<SDValue> &InVals) const override;
467
472
478
479 Register getRegisterByName(const char* RegName, LLT VT,
480 const MachineFunction &MF) const override;
481
483 MachineBasicBlock *BB) const;
484
487 MachineBasicBlock *BB) const;
488
491 MachineBasicBlock *BB) const override;
492
493 bool enableAggressiveFMAFusion(EVT VT) const override;
494 bool enableAggressiveFMAFusion(LLT Ty) const override;
496 EVT VT) const override;
497 MVT getScalarShiftAmountTy(const DataLayout &, EVT) const override;
498 LLT getPreferredShiftAmountTy(LLT Ty) const override;
499
501 EVT VT) const override;
503 const LLT Ty) const override;
504 bool isFMADLegal(const SelectionDAG &DAG, const SDNode *N) const override;
505 bool isFMADLegal(const MachineInstr &MI, const LLT Ty) const override;
506
507 /// Variants for IR level callers, which have no MachineFunction to read the
508 /// denormal mode from and must pass \p FPEnv explicitly.
509 bool isFMAFasterThanFMulAndFAdd(EVT VT, DenormalFPEnv FPEnv) const;
510
511 /// \p VT is used as written, so a vector type reports false.
512 bool isFMADLegal(EVT VT, DenormalFPEnv FPEnv) const;
513
514 /// \p Ty is taken by its scalar type, so a vector type asks about a lane.
515 bool isFMADLegal(const Function &F, Type *Ty) const;
516
517 bool isFMAFasterThanFMulAndFAdd(const Function &F, Type *Ty) const override;
518
522 SDValue LowerOperation(SDValue Op, SelectionDAG &DAG) const override;
524 SelectionDAG &DAG) const override;
525
526 SDValue PerformDAGCombine(SDNode *N, DAGCombinerInfo &DCI) const override;
527 SDNode *PostISelFolding(MachineSDNode *N, SelectionDAG &DAG) const override;
528 void AddMemOpInit(MachineInstr &MI) const;
530 SDNode *Node) const override;
531
533
535 SDValue Ptr) const;
537 uint32_t RsrcDword1, uint64_t RsrcDword2And3) const;
538 std::pair<unsigned, const TargetRegisterClass *>
540 StringRef Constraint, MVT VT) const override;
541 ConstraintType getConstraintType(StringRef Constraint) const override;
543 std::vector<SDValue> &Ops,
544 SelectionDAG &DAG) const override;
545 bool getAsmOperandConstVal(SDValue Op, uint64_t &Val) const;
546 bool checkAsmConstraintVal(SDValue Op, StringRef Constraint,
547 uint64_t Val) const;
549 uint64_t Val,
550 unsigned MaxSize = 64) const;
551 SDValue copyToM0(SelectionDAG &DAG, SDValue Chain, const SDLoc &DL,
552 SDValue V) const;
553
554 void finalizeLowering(MachineFunction &MF) const override;
555
557 const APInt &DemandedElts,
558 const SelectionDAG &DAG,
559 unsigned Depth = 0) const override;
561 const MachineFunction &MF,
562 Align Alignment) const override;
565 const APInt &DemandedElts,
566 const MachineRegisterInfo &MRI,
567 unsigned Depth = 0) const override;
568
570 Register R,
571 const MachineRegisterInfo &MRI,
572 unsigned Depth = 0) const override;
574 UniformityInfo *UA) const override;
575
576 bool hasMemSDNodeUser(SDNode *N) const;
577
579 SDValue N1) const override;
580
582 Register N1) const override;
583
585 SDNodeFlags UserFlags = {}, unsigned MaxDepth = 5) const;
586
587 /// Returns true if \p Op is provably canonical (no FCANONICALIZE needed).
588 /// \p QueryVT is the scalar FP type being checked, threaded unchanged
589 /// through recursion since canonicality is per vector element. FP operands
590 /// whose scalar type differs from \p QueryVT are treated as non-canonical,
591 /// since canonicality does not survive a change of FP format (e.g. bitcast
592 /// v2bf16 to v2f16); non-FP operands are not checked against \p QueryVT.
593 bool isCanonicalized(SelectionDAG &DAG, SDValue Op, EVT QueryVT,
594 SDNodeFlags UserFlags, unsigned MaxDepth) const;
596 unsigned MaxDepth = 5) const;
597 bool denormalsEnabledForType(const SelectionDAG &DAG, EVT VT) const;
598 bool denormalsEnabledForType(LLT Ty, const MachineFunction &MF) const;
599
600 bool isKnownNeverNaNForTargetNode(SDValue Op, const APInt &DemandedElts,
601 const SelectionDAG &DAG, bool SNaN = false,
602 unsigned Depth = 0) const override;
604 shouldExpandAtomicRMWInIR(const AtomicRMWInst *) const override;
605 AtomicExpansionKind shouldExpandAtomicLoadInIR(LoadInst *LI) const override;
606 AtomicExpansionKind shouldExpandAtomicStoreInIR(StoreInst *SI) const override;
608 shouldExpandAtomicCmpXchgInIR(const AtomicCmpXchgInst *AI) const override;
609
610 void emitExpandAtomicAddrSpacePredicate(Instruction *AI) const;
611 void emitExpandAtomicRMW(AtomicRMWInst *AI) const override;
612 void emitExpandAtomicCmpXchg(AtomicCmpXchgInst *CI) const override;
613 void emitExpandAtomicLoad(LoadInst *LI) const override;
614 void emitExpandAtomicStore(StoreInst *SI) const override;
615
616 LoadInst *
617 lowerIdempotentRMWIntoFencedLoad(AtomicRMWInst *AI) const override;
618
620 bool isDivergent) const override;
622 const Value *V) const override;
623 Align getPrefLoopAlignment(MachineLoop *ML) const override;
624 unsigned
625 getMaxPermittedBytesForAlignment(MachineBasicBlock *MBB) const override;
626
627 void allocateHSAUserSGPRs(CCState &CCInfo,
628 MachineFunction &MF,
629 const SIRegisterInfo &TRI,
630 SIMachineFunctionInfo &Info) const;
631
632 void allocatePreloadKernArgSGPRs(CCState &CCInfo,
633 SmallVectorImpl<CCValAssign> &ArgLocs,
634 const SmallVectorImpl<ISD::InputArg> &Ins,
635 MachineFunction &MF,
636 const SIRegisterInfo &TRI,
637 SIMachineFunctionInfo &Info) const;
638
639 void allocateLDSKernelId(CCState &CCInfo, MachineFunction &MF,
640 const SIRegisterInfo &TRI,
641 SIMachineFunctionInfo &Info) const;
642
643 void allocateSystemSGPRs(CCState &CCInfo,
644 MachineFunction &MF,
645 SIMachineFunctionInfo &Info,
646 CallingConv::ID CallConv,
647 bool IsShader) const;
648
649 void allocateSpecialEntryInputVGPRs(CCState &CCInfo,
650 MachineFunction &MF,
651 const SIRegisterInfo &TRI,
652 SIMachineFunctionInfo &Info) const;
654 CCState &CCInfo,
655 MachineFunction &MF,
656 const SIRegisterInfo &TRI,
657 SIMachineFunctionInfo &Info) const;
658
659 void allocateSpecialInputVGPRs(CCState &CCInfo,
660 MachineFunction &MF,
661 const SIRegisterInfo &TRI,
662 SIMachineFunctionInfo &Info) const;
663 void allocateSpecialInputVGPRsFixed(CCState &CCInfo,
664 MachineFunction &MF,
665 const SIRegisterInfo &TRI,
666 SIMachineFunctionInfo &Info) const;
667
669 getTargetMMOFlags(const Instruction &I) const override;
670};
671
672// Returns true if argument is a boolean value which is not serialized into
673// memory or argument and does not require v_cndmask_b32 to be deserialized.
674bool isBoolSGPR(SDValue V);
675
676} // End namespace llvm
677
678#endif
return SDValue()
unsigned Imm
unsigned uint64_t
Interface definition of the TargetLowering class that is common to all AMD GPUs.
MachineBasicBlock & MBB
MachineBasicBlock MachineBasicBlock::iterator DebugLoc DL
Function Alias Analysis Results
block Block Frequency Analysis
static GCRegistry::Add< ShadowStackGC > C("shadow-stack", "Very portable GC for uncooperative code generators")
Utilities for dealing with flags related to floating point properties and mode controls.
IRTranslator LLVM IR MI
const AbstractManglingParser< Derived, Alloc >::OperatorInfo AbstractManglingParser< Derived, Alloc >::Ops[]
#define RegName(no)
#define F(x, y, z)
Definition MD5.cpp:54
#define I(x, y, z)
Definition MD5.cpp:57
Register Reg
Register const TargetRegisterInfo * TRI
Promote Memory to Register
Definition Mem2Reg.cpp:110
StandardInstrumentations SI(Mod->getContext(), Debug, VerifyEach)
Value * LHS
AMDGPUTargetLowering(const TargetMachine &TM, const TargetSubtargetInfo &STI, const AMDGPUSubtarget &AMDGPUSTI)
Class for arbitrary precision integers.
Definition APInt.h:78
Represent a constant reference to an array (0 or more elements consecutively in memory),...
Definition ArrayRef.h:40
CCState - This class holds information needed while lowering arguments and return values.
CCValAssign - Represent assignment of one arg/retval to a location.
Base class for all callable instructions (InvokeInst and CallInst) Holds everything related to callin...
This class represents a function call, abstracting a target machine's calling convention.
A parsed version of the target data layout string in and methods for querying it.
Definition DataLayout.h:64
FunctionLoweringInfo - This contains information that is global to a function that is used when lower...
A wrapper class for inspecting calls to intrinsic functions.
This is an important class for using LLVM in a threaded context.
Definition LLVMContext.h:68
This class is used to represent ISD::LOAD nodes.
Machine Value Type.
Representation of each machine instruction.
A description of a memory reference used in the backend.
Flags
Flags values. These may be or'd together.
MachineRegisterInfo - Keep track of information for virtual and physical registers,...
An SDNode that represents everything that will be needed to construct a MachineInstr.
This is an abstract virtual class for memory operations.
Wrapper class representing virtual and physical registers.
Definition Register.h:20
Wrapper class for IR location info (IR ordering and DebugLoc) to be passed into SDNode creation funct...
Represents one node in the SelectionDAG.
Unlike LLVM values, Selection DAG nodes may return multiple values as the result of a computation.
This class keeps track of the SPI_SP_INPUT_ADDR config register, which tells the hardware which inter...
bool isOffsetFoldingLegal(const GlobalAddressSDNode *GA) const override
Return true if folding a constant offset with the given GlobalAddress is legal.
bool isTypeDesirableForOp(unsigned Op, EVT VT) const override
Return true if the target has native support for the specified value type and it is 'desirable' to us...
SDNode * PostISelFolding(MachineSDNode *N, SelectionDAG &DAG) const override
Fold the instructions after selecting them.
SDValue splitTernaryVectorOp(SDValue Op, SelectionDAG &DAG) const
MachineSDNode * wrapAddr64Rsrc(SelectionDAG &DAG, const SDLoc &DL, SDValue Ptr) const
bool isFMAFasterThanFMulAndFAdd(const MachineFunction &MF, EVT VT) const override
Return true if an FMA operation is faster than a pair of fmul and fadd instructions.
SDValue lowerGET_ROUNDING(SDValue Op, SelectionDAG &DAG) const
AtomicExpansionKind shouldExpandAtomicRMWInIR(const AtomicRMWInst *) const override
Returns how the IR-level AtomicExpand pass should expand the given AtomicRMW, if at all.
bool requiresUniformRegister(MachineFunction &MF, const Value *V) const override
Allows target to decide about the register class of the specific value that is live outside the defin...
bool isFMADLegal(const SelectionDAG &DAG, const SDNode *N) const override
Returns true if be combined with to form an ISD::FMAD.
AtomicExpansionKind shouldExpandAtomicStoreInIR(StoreInst *SI) const override
Returns how the given (atomic) store should be expanded by the IR-level AtomicExpand pass into.
void bundleInstWithWaitcnt(MachineInstr &MI) const
Insert MI into a BUNDLE with an S_WAITCNT 0 immediately following it.
SDValue lowerROTR(SDValue Op, SelectionDAG &DAG) const
MVT getScalarShiftAmountTy(const DataLayout &, EVT) const override
Return the type to use for a scalar shift opcode, given the shifted amount type.
SDValue LowerCall(CallLoweringInfo &CLI, SmallVectorImpl< SDValue > &InVals) const override
This hook must be implemented to lower calls into the specified DAG.
MVT getPointerTy(const DataLayout &DL, unsigned AS) const override
Map address space 7 to MVT::amdgpuBufferFatPointer because that's its in-memory representation.
bool denormalsEnabledForType(const SelectionDAG &DAG, EVT VT) const
void insertCopiesSplitCSR(MachineBasicBlock *Entry, const SmallVectorImpl< MachineBasicBlock * > &Exits) const override
Insert explicit copies in entry and exit blocks.
EVT getSetCCResultType(const DataLayout &DL, LLVMContext &Context, EVT VT) const override
Return the ValueType of the result of SETCC operations.
SDNode * legalizeTargetIndependentNode(SDNode *Node, SelectionDAG &DAG) const
Legalize target independent instructions (e.g.
bool allowsMisalignedMemoryAccessesImpl(unsigned Size, unsigned AddrSpace, Align Alignment, MachineMemOperand::Flags Flags=MachineMemOperand::MONone, unsigned *IsFast=nullptr) const
TargetLoweringBase::LegalizeTypeAction getPreferredVectorAction(MVT VT) const override
Return the preferred vector type legalization action.
SDValue lowerFP_EXTEND(SDValue Op, SelectionDAG &DAG) const
const GCNSubtarget * getSubtarget() const
bool enableAggressiveFMAFusion(EVT VT) const override
Return true if target always benefits from combining into FMA for a given value type.
bool shouldEmitGOTReloc(const GlobalValue *GV) const
SDValue splitUnaryVectorOp(SDValue Op, SelectionDAG &DAG) const
SDValue lowerGET_FPENV(SDValue Op, SelectionDAG &DAG) const
bool isCanonicalized(SelectionDAG &DAG, SDValue Op, SDNodeFlags UserFlags={}, unsigned MaxDepth=5) const
void allocateSpecialInputSGPRs(CCState &CCInfo, MachineFunction &MF, const SIRegisterInfo &TRI, SIMachineFunctionInfo &Info) const
void allocateLDSKernelId(CCState &CCInfo, MachineFunction &MF, const SIRegisterInfo &TRI, SIMachineFunctionInfo &Info) const
SDValue LowerSTACKSAVE(SDValue Op, SelectionDAG &DAG) const
bool isReassocProfitable(SelectionDAG &DAG, SDValue N0, SDValue N1) const override
void allocateHSAUserSGPRs(CCState &CCInfo, MachineFunction &MF, const SIRegisterInfo &TRI, SIMachineFunctionInfo &Info) const
ArrayRef< MCPhysReg > getRoundingControlRegisters() const override
Returns a 0 terminated array of rounding control registers that can be attached into strict FP call.
ConstraintType getConstraintType(StringRef Constraint) const override
Given a constraint, return the type of constraint it is for this target.
SDValue LowerReturn(SDValue Chain, CallingConv::ID CallConv, bool IsVarArg, const SmallVectorImpl< ISD::OutputArg > &Outs, const SmallVectorImpl< SDValue > &OutVals, const SDLoc &DL, SelectionDAG &DAG) const override
This hook must be implemented to lower outgoing return values, described by the Outs array,...
const TargetRegisterClass * getRegClassFor(MVT VT, bool isDivergent) const override
Return the register class that should be used for the specified value type.
void AddMemOpInit(MachineInstr &MI) const
MachineMemOperand::Flags getTargetMMOFlags(const Instruction &I) const override
This callback is used to inspect load/store instructions and add target-specific MachineMemOperand fl...
bool isLegalGlobalAddressingMode(const AddrMode &AM) const
bool shouldConvertConstantLoadToIntImm(const APInt &Imm, Type *Ty) const override
Return true if it is beneficial to convert a load of a constant to just the constant itself.
Align getPrefLoopAlignment(MachineLoop *ML) const override
Return the preferred loop alignment.
std::pair< unsigned, const TargetRegisterClass * > getRegForInlineAsmConstraint(const TargetRegisterInfo *TRI, StringRef Constraint, MVT VT) const override
Given a physical register constraint (e.g.
void emitExpandAtomicStore(StoreInst *SI) const override
Perform a atomic store using a target-specific way.
AtomicExpansionKind shouldExpandAtomicLoadInIR(LoadInst *LI) const override
Returns how the given (atomic) load should be expanded by the IR-level AtomicExpand pass.
Align computeKnownAlignForTargetInstr(GISelValueTracking &Analysis, Register R, const MachineRegisterInfo &MRI, unsigned Depth=0) const override
Determine the known alignment for the pointer value R.
bool getAsmOperandConstVal(SDValue Op, uint64_t &Val) const
bool isShuffleMaskLegal(ArrayRef< int >, EVT) const override
Targets can use this to indicate that they only support some VECTOR_SHUFFLE operations,...
void emitExpandAtomicLoad(LoadInst *LI) const override
Perform a atomic load using a target-specific way.
EVT getOptimalMemOpType(LLVMContext &Context, const MemOp &Op, const AttributeList &FuncAttributes) const override
Returns the target specific optimal type for load and store operations as a result of memset,...
void computeKnownBitsForStackObjectPointer(KnownBits &Known, const MachineFunction &MF, Align Alignment) const override
Determine known bits of a pointer to a known valid stack object.
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...
Register getRegisterByName(const char *RegName, LLT VT, const MachineFunction &MF) const override
Return the register ID of the name passed in.
void LowerAsmOperandForConstraint(SDValue Op, StringRef Constraint, std::vector< SDValue > &Ops, SelectionDAG &DAG) const override
Lower the specified operand into the Ops vector.
LLT getPreferredShiftAmountTy(LLT Ty) const override
Return the preferred type to use for a shift opcode, given the shifted amount type is ShiftValueTy.
ExtractSubvectorCost getExtractSubvectorCost(EVT ResVT, EVT SrcVT, unsigned Index) const override
Return the cost of extracting a subvector of type ResVT from a vector of type SrcVT,...
bool isLegalAddressingMode(const DataLayout &DL, const AddrMode &AM, Type *Ty, unsigned AS, Instruction *I=nullptr) const override
Return true if the addressing mode represented by AM is legal for this target, for a load/store of th...
SDValue lowerSET_FPENV(SDValue Op, SelectionDAG &DAG) const
bool shouldPreservePtrArith(const Function &F, EVT PtrVT) const override
True if target has some particular form of dealing with pointer arithmetic semantics for pointers wit...
void getTgtMemIntrinsic(SmallVectorImpl< IntrinsicInfo > &, const CallBase &, MachineFunction &MF, unsigned IntrinsicID) const override
Given an intrinsic, checks if on the target the intrinsic will need to map to a MemIntrinsicNode (tou...
void computeKnownBitsForTargetNode(const SDValue Op, KnownBits &Known, const APInt &DemandedElts, const SelectionDAG &DAG, unsigned Depth=0) const override
Determine which of the bits specified in Mask are known to be either zero or one and return them in t...
SDValue lowerSET_ROUNDING(SDValue Op, SelectionDAG &DAG) const
void allocateSpecialInputVGPRsFixed(CCState &CCInfo, MachineFunction &MF, const SIRegisterInfo &TRI, SIMachineFunctionInfo &Info) const
Allocate implicit function VGPR arguments in fixed registers.
LoadInst * lowerIdempotentRMWIntoFencedLoad(AtomicRMWInst *AI) const override
On some platforms, an AtomicRMW that never actually modifies the value (such as fetch_add of 0) can b...
MachineBasicBlock * emitGWSMemViolTestLoop(MachineInstr &MI, MachineBasicBlock *BB) const
bool getAddrModeArguments(const IntrinsicInst *I, SmallVectorImpl< Value * > &Ops, Type *&AccessTy) const override
CodeGenPrepare sinks address calculations into the same BB as Load/Store instructions reading the add...
bool checkAsmConstraintValA(SDValue Op, uint64_t Val, unsigned MaxSize=64) const
bool shouldEmitFixup(const GlobalValue *GV) const
MachineBasicBlock * splitKillBlock(MachineInstr &MI, MachineBasicBlock *BB) const
void emitExpandAtomicCmpXchg(AtomicCmpXchgInst *CI) const override
Perform a cmpxchg expansion using a target-specific method.
bool canTransformPtrArithOutOfBounds(const Function &F, EVT PtrVT) const override
True if the target allows transformations of in-bounds pointer arithmetic that cause out-of-bounds in...
bool hasMemSDNodeUser(SDNode *N) const
bool isSDNodeSourceOfDivergence(const SDNode *N, FunctionLoweringInfo *FLI, UniformityInfo *UA) const override
MachineBasicBlock * EmitInstrWithCustomInserter(MachineInstr &MI, MachineBasicBlock *BB) const override
This method should be implemented by targets that mark instructions with the 'usesCustomInserter' fla...
bool isEligibleForTailCallOptimization(SDValue Callee, CallingConv::ID CalleeCC, bool isVarArg, const SmallVectorImpl< ISD::OutputArg > &Outs, const SmallVectorImpl< SDValue > &OutVals, const SmallVectorImpl< ISD::InputArg > &Ins, SelectionDAG &DAG) const
bool isMemOpHasNoClobberedMemOperand(const SDNode *N) const
bool isLegalFlatAddressingMode(const AddrMode &AM, unsigned AddrSpace) const
SDValue LowerCallResult(SDValue Chain, SDValue InGlue, CallingConv::ID CallConv, bool isVarArg, const SmallVectorImpl< ISD::InputArg > &Ins, const SDLoc &DL, SelectionDAG &DAG, SmallVectorImpl< SDValue > &InVals, bool isThisReturn, SDValue ThisVal) 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
This hook must be implemented to lower the incoming (formal) arguments, described by the Ins array,...
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...
bool isFPExtFoldable(const SelectionDAG &DAG, unsigned Opcode, EVT DestVT, EVT SrcVT) const override
Return true if an fpext operation input to an Opcode operation is free (for instance,...
void AdjustInstrPostInstrSelection(MachineInstr &MI, SDNode *Node) const override
Assign the register class depending on the number of bits set in the writemask.
MVT getRegisterTypeForCallingConv(LLVMContext &Context, CallingConv::ID CC, EVT VT) const override
Certain combinations of ABIs, Targets and features require that types are legal for some operations a...
void allocateSpecialInputVGPRs(CCState &CCInfo, MachineFunction &MF, const SIRegisterInfo &TRI, SIMachineFunctionInfo &Info) const
Allocate implicit function VGPR arguments at the end of allocated user arguments.
void finalizeLowering(MachineFunction &MF) const override
Execute target specific actions to finalize target lowering.
static bool isNonGlobalAddrSpace(unsigned AS)
void emitExpandAtomicAddrSpacePredicate(Instruction *AI) const
MachineSDNode * buildRSRC(SelectionDAG &DAG, const SDLoc &DL, SDValue Ptr, uint32_t RsrcDword1, uint64_t RsrcDword2And3) const
Return a resource descriptor with the 'Add TID' bit enabled The TID (Thread ID) is multiplied by the ...
unsigned getNumRegistersForCallingConv(LLVMContext &Context, CallingConv::ID CC, EVT VT) const override
Certain targets require unusual breakdowns of certain types.
bool mayBeEmittedAsTailCall(const CallInst *) const override
Return true if the target may be able emit the call instruction as a tail call.
void passSpecialInputs(CallLoweringInfo &CLI, CCState &CCInfo, const SIMachineFunctionInfo &Info, SmallVectorImpl< std::pair< unsigned, SDValue > > &RegsToPass, SmallVectorImpl< SDValue > &MemOpChains, SDValue Chain) 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...
bool checkAsmConstraintVal(SDValue Op, StringRef Constraint, uint64_t Val) const
bool isKnownNeverNaNForTargetNode(SDValue Op, const APInt &DemandedElts, const SelectionDAG &DAG, bool SNaN=false, unsigned Depth=0) const override
If SNaN is false,.
void emitExpandAtomicRMW(AtomicRMWInst *AI) const override
Perform a atomicrmw expansion using a target-specific way.
static bool shouldExpandVectorDynExt(unsigned EltSize, unsigned NumElem, bool IsDivergentIdx, const GCNSubtarget *Subtarget)
Check if EXTRACT_VECTOR_ELT/INSERT_VECTOR_ELT (<n x e>, var-idx) should be expanded into a set of cmp...
bool shouldUseLDSConstAddress(const GlobalValue *GV) const
bool supportSplitCSR(MachineFunction *MF) const override
Return true if the target supports that a subset of CSRs for the given machine function is handled ex...
bool isExtractVecEltCheap(EVT VT, unsigned Index) const override
Return true if extraction of a scalar element from the given vector type at the given index is cheap.
SDValue LowerDYNAMIC_STACKALLOC(SDValue Op, SelectionDAG &DAG) const
bool allowsMisalignedMemoryAccesses(LLT Ty, unsigned AddrSpace, Align Alignment, MachineMemOperand::Flags Flags=MachineMemOperand::MONone, unsigned *IsFast=nullptr) const override
LLT handling variant.
unsigned combineRepeatedFPDivisors() const override
Indicate whether this target prefers to combine FDIVs with the same divisor.
bool canMergeStoresTo(unsigned AS, EVT MemVT, const MachineFunction &MF) const override
Returns if it's reasonable to merge stores to MemVT size.
SDValue lowerPREFETCH(SDValue Op, SelectionDAG &DAG) const
SITargetLowering(const TargetMachine &tm, const GCNSubtarget &STI)
void computeKnownBitsForTargetInstr(GISelValueTracking &Analysis, Register R, KnownBits &Known, const APInt &DemandedElts, const MachineRegisterInfo &MRI, unsigned Depth=0) const override
Determine which of the bits specified in Mask are known to be either zero or one and return them in t...
bool isFreeAddrSpaceCast(unsigned SrcAS, unsigned DestAS) const override
Returns true if a cast from SrcAS to DestAS is "cheap", such that e.g.
bool shouldEmitPCReloc(const GlobalValue *GV) const
AtomicExpansionKind shouldExpandAtomicCmpXchgInIR(const AtomicCmpXchgInst *AI) const override
Returns how the given atomic cmpxchg should be expanded by the IR-level AtomicExpand pass.
void initializeSplitCSR(MachineBasicBlock *Entry) const override
Perform necessary initialization to handle a subset of CSRs explicitly via copies.
void allocateSpecialEntryInputVGPRs(CCState &CCInfo, MachineFunction &MF, const SIRegisterInfo &TRI, SIMachineFunctionInfo &Info) const
void allocatePreloadKernArgSGPRs(CCState &CCInfo, SmallVectorImpl< CCValAssign > &ArgLocs, const SmallVectorImpl< ISD::InputArg > &Ins, MachineFunction &MF, const SIRegisterInfo &TRI, SIMachineFunctionInfo &Info) const
SDValue copyToM0(SelectionDAG &DAG, SDValue Chain, const SDLoc &DL, SDValue V) const
SDValue splitBinaryVectorOp(SDValue Op, SelectionDAG &DAG) const
MachinePointerInfo getKernargSegmentPtrInfo(MachineFunction &MF) const
unsigned getVectorTypeBreakdownForCallingConv(LLVMContext &Context, CallingConv::ID CC, EVT VT, EVT &IntermediateVT, unsigned &NumIntermediates, MVT &RegisterVT) const override
Certain targets such as MIPS require that some types such as vectors are always broken down into scal...
MVT getPointerMemTy(const DataLayout &DL, unsigned AS) const override
Similarly, the in-memory representation of a p7 is {p8, i32}, aka v8i32 when padding is added.
void allocateSystemSGPRs(CCState &CCInfo, MachineFunction &MF, SIMachineFunctionInfo &Info, CallingConv::ID CallConv, bool IsShader) const
bool CanLowerReturn(CallingConv::ID CallConv, MachineFunction &MF, bool isVarArg, const SmallVectorImpl< ISD::OutputArg > &Outs, LLVMContext &Context, const Type *RetTy) const override
This hook should be implemented to check whether the return values described by the Outs array can fi...
unsigned getMaxPermittedBytesForAlignment(MachineBasicBlock *MBB) const override
Return the maximum amount of bytes allowed to be emitted when padding for alignment.
This is used to represent a portion of an LLVM function in a low-level Data Dependence DAG representa...
This class consists of common code factored out of the SmallVector class to reduce code duplication b...
Represent a constant reference to a string, i.e.
Definition StringRef.h:56
LegalizeTypeAction
This enum indicates whether a types are legal for a target, and if not, what action should be used to...
ExtractSubvectorCost
Enum that specifies how expensive lowering an EXTRACT_SUBVECTOR is.
AtomicExpansionKind
Enum that specifies what an atomic load/AtomicRMWInst is expanded to, if at all.
Primary interface to the complete machine description for the target machine.
TargetRegisterInfo base class - We assume that the target defines a static array of TargetRegisterDes...
The instances of the Type class are immutable: once they are created, they are never changed.
Definition Type.h:46
unsigned ID
LLVM IR allows to use arbitrary numbers as calling convention identifiers.
Definition CallingConv.h:24
This is an optimization pass for GlobalISel generic memory operations.
GenericUniformityInfo< SSAContext > UniformityInfo
@ Offset
Definition DWP.cpp:577
@ Known
Known to have no common set bits.
bool isBoolSGPR(SDValue V)
DWARFExpression::Operation Op
MCRegisterClass TargetRegisterClass
Definition FastISel.h:58
#define N
This struct is a compact representation of a valid (non-zero power of two) alignment.
Definition Alignment.h:39
Represents the full denormal controls for a function, including the default mode and the f32 specific...
Extended Value Type.
Definition ValueTypes.h:35
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,...
These are IR-level optimization flags that may be propagated to SDNodes.
This represents a list of ValueType's that has been intern'd by a SelectionDAG.
This represents an addressing mode of: BaseGV + BaseOffs + BaseReg + Scale*ScaleReg + ScalableOffset*...