[LLVM][Alignment] Make functions using log of alignment explicit
[llvm-complete.git] / lib / Target / AMDGPU / SIISelLowering.h
blob217152f78f2bacd817179a68e4f64ae120b40397
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
12 //===----------------------------------------------------------------------===//
14 #ifndef LLVM_LIB_TARGET_AMDGPU_SIISELLOWERING_H
15 #define LLVM_LIB_TARGET_AMDGPU_SIISELLOWERING_H
17 #include "AMDGPUISelLowering.h"
18 #include "AMDGPUArgumentUsageInfo.h"
19 #include "SIInstrInfo.h"
21 namespace llvm {
23 class SITargetLowering final : public AMDGPUTargetLowering {
24 private:
25 const GCNSubtarget *Subtarget;
27 public:
28 MVT getRegisterTypeForCallingConv(LLVMContext &Context,
29 CallingConv::ID CC,
30 EVT VT) const override;
31 unsigned getNumRegistersForCallingConv(LLVMContext &Context,
32 CallingConv::ID CC,
33 EVT VT) const override;
35 unsigned getVectorTypeBreakdownForCallingConv(
36 LLVMContext &Context, CallingConv::ID CC, EVT VT, EVT &IntermediateVT,
37 unsigned &NumIntermediates, MVT &RegisterVT) const override;
39 private:
40 SDValue lowerKernArgParameterPtr(SelectionDAG &DAG, const SDLoc &SL,
41 SDValue Chain, uint64_t Offset) const;
42 SDValue getImplicitArgPtr(SelectionDAG &DAG, const SDLoc &SL) const;
43 SDValue lowerKernargMemParameter(SelectionDAG &DAG, EVT VT, EVT MemVT,
44 const SDLoc &SL, SDValue Chain,
45 uint64_t Offset, unsigned Align, bool Signed,
46 const ISD::InputArg *Arg = nullptr) const;
48 SDValue lowerStackParameter(SelectionDAG &DAG, CCValAssign &VA,
49 const SDLoc &SL, SDValue Chain,
50 const ISD::InputArg &Arg) const;
51 SDValue getPreloadedValue(SelectionDAG &DAG,
52 const SIMachineFunctionInfo &MFI,
53 EVT VT,
54 AMDGPUFunctionArgInfo::PreloadedValue) const;
56 SDValue LowerGlobalAddress(AMDGPUMachineFunction *MFI, SDValue Op,
57 SelectionDAG &DAG) const override;
58 SDValue lowerImplicitZextParam(SelectionDAG &DAG, SDValue Op,
59 MVT VT, unsigned Offset) const;
60 SDValue lowerImage(SDValue Op, const AMDGPU::ImageDimIntrinsicInfo *Intr,
61 SelectionDAG &DAG) const;
62 SDValue lowerSBuffer(EVT VT, SDLoc DL, SDValue Rsrc, SDValue Offset,
63 SDValue GLC, SDValue DLC, SelectionDAG &DAG) const;
65 SDValue LowerINTRINSIC_WO_CHAIN(SDValue Op, SelectionDAG &DAG) const;
66 SDValue LowerINTRINSIC_W_CHAIN(SDValue Op, SelectionDAG &DAG) const;
67 SDValue LowerINTRINSIC_VOID(SDValue Op, SelectionDAG &DAG) const;
69 // The raw.tbuffer and struct.tbuffer intrinsics have two offset args: offset
70 // (the offset that is included in bounds checking and swizzling, to be split
71 // between the instruction's voffset and immoffset fields) and soffset (the
72 // offset that is excluded from bounds checking and swizzling, to go in the
73 // instruction's soffset field). This function takes the first kind of
74 // offset and figures out how to split it between voffset and immoffset.
75 std::pair<SDValue, SDValue> splitBufferOffsets(SDValue Offset,
76 SelectionDAG &DAG) const;
78 SDValue widenLoad(LoadSDNode *Ld, DAGCombinerInfo &DCI) const;
79 SDValue LowerLOAD(SDValue Op, SelectionDAG &DAG) const;
80 SDValue LowerSELECT(SDValue Op, SelectionDAG &DAG) const;
81 SDValue lowerFastUnsafeFDIV(SDValue Op, SelectionDAG &DAG) const;
82 SDValue lowerFDIV_FAST(SDValue Op, SelectionDAG &DAG) const;
83 SDValue LowerFDIV16(SDValue Op, SelectionDAG &DAG) const;
84 SDValue LowerFDIV32(SDValue Op, SelectionDAG &DAG) const;
85 SDValue LowerFDIV64(SDValue Op, SelectionDAG &DAG) const;
86 SDValue LowerFDIV(SDValue Op, SelectionDAG &DAG) const;
87 SDValue LowerINT_TO_FP(SDValue Op, SelectionDAG &DAG, bool Signed) const;
88 SDValue LowerSTORE(SDValue Op, SelectionDAG &DAG) const;
89 SDValue LowerTrig(SDValue Op, SelectionDAG &DAG) const;
90 SDValue LowerATOMIC_CMP_SWAP(SDValue Op, SelectionDAG &DAG) const;
91 SDValue LowerBRCOND(SDValue Op, SelectionDAG &DAG) const;
92 SDValue LowerRETURNADDR(SDValue Op, SelectionDAG &DAG) const;
93 SDValue adjustLoadValueType(unsigned Opcode, MemSDNode *M,
94 SelectionDAG &DAG, ArrayRef<SDValue> Ops,
95 bool IsIntrinsic = false) const;
97 SDValue lowerIntrinsicLoad(MemSDNode *M, bool IsFormat, SelectionDAG &DAG,
98 ArrayRef<SDValue> Ops) const;
100 // Call DAG.getMemIntrinsicNode for a load, but first widen a dwordx3 type to
101 // dwordx4 if on SI.
102 SDValue getMemIntrinsicNode(unsigned Opcode, const SDLoc &DL, SDVTList VTList,
103 ArrayRef<SDValue> Ops, EVT MemVT,
104 MachineMemOperand *MMO, SelectionDAG &DAG) const;
106 SDValue handleD16VData(SDValue VData, SelectionDAG &DAG) const;
108 /// Converts \p Op, which must be of floating point type, to the
109 /// floating point type \p VT, by either extending or truncating it.
110 SDValue getFPExtOrFPTrunc(SelectionDAG &DAG,
111 SDValue Op,
112 const SDLoc &DL,
113 EVT VT) const;
115 SDValue convertArgType(
116 SelectionDAG &DAG, EVT VT, EVT MemVT, const SDLoc &SL, SDValue Val,
117 bool Signed, const ISD::InputArg *Arg = nullptr) const;
119 /// Custom lowering for ISD::FP_ROUND for MVT::f16.
120 SDValue lowerFP_ROUND(SDValue Op, SelectionDAG &DAG) const;
121 SDValue lowerFMINNUM_FMAXNUM(SDValue Op, SelectionDAG &DAG) const;
123 SDValue getSegmentAperture(unsigned AS, const SDLoc &DL,
124 SelectionDAG &DAG) const;
126 SDValue lowerADDRSPACECAST(SDValue Op, SelectionDAG &DAG) const;
127 SDValue lowerINSERT_SUBVECTOR(SDValue Op, SelectionDAG &DAG) const;
128 SDValue lowerINSERT_VECTOR_ELT(SDValue Op, SelectionDAG &DAG) const;
129 SDValue lowerEXTRACT_VECTOR_ELT(SDValue Op, SelectionDAG &DAG) const;
130 SDValue lowerVECTOR_SHUFFLE(SDValue Op, SelectionDAG &DAG) const;
131 SDValue lowerBUILD_VECTOR(SDValue Op, SelectionDAG &DAG) const;
132 SDValue lowerTRAP(SDValue Op, SelectionDAG &DAG) const;
133 SDValue lowerDEBUGTRAP(SDValue Op, SelectionDAG &DAG) const;
135 SDNode *adjustWritemask(MachineSDNode *&N, SelectionDAG &DAG) const;
137 SDValue performUCharToFloatCombine(SDNode *N,
138 DAGCombinerInfo &DCI) const;
139 SDValue performSHLPtrCombine(SDNode *N,
140 unsigned AS,
141 EVT MemVT,
142 DAGCombinerInfo &DCI) const;
144 SDValue performMemSDNodeCombine(MemSDNode *N, DAGCombinerInfo &DCI) const;
146 SDValue splitBinaryBitConstantOp(DAGCombinerInfo &DCI, const SDLoc &SL,
147 unsigned Opc, SDValue LHS,
148 const ConstantSDNode *CRHS) const;
150 SDValue performAndCombine(SDNode *N, DAGCombinerInfo &DCI) const;
151 SDValue performOrCombine(SDNode *N, DAGCombinerInfo &DCI) const;
152 SDValue performXorCombine(SDNode *N, DAGCombinerInfo &DCI) const;
153 SDValue performZeroExtendCombine(SDNode *N, DAGCombinerInfo &DCI) const;
154 SDValue performSignExtendInRegCombine(SDNode *N, DAGCombinerInfo &DCI) const;
155 SDValue performClassCombine(SDNode *N, DAGCombinerInfo &DCI) const;
156 SDValue getCanonicalConstantFP(SelectionDAG &DAG, const SDLoc &SL, EVT VT,
157 const APFloat &C) const;
158 SDValue performFCanonicalizeCombine(SDNode *N, DAGCombinerInfo &DCI) const;
160 SDValue performFPMed3ImmCombine(SelectionDAG &DAG, const SDLoc &SL,
161 SDValue Op0, SDValue Op1) const;
162 SDValue performIntMed3ImmCombine(SelectionDAG &DAG, const SDLoc &SL,
163 SDValue Op0, SDValue Op1, bool Signed) const;
164 SDValue performMinMaxCombine(SDNode *N, DAGCombinerInfo &DCI) const;
165 SDValue performFMed3Combine(SDNode *N, DAGCombinerInfo &DCI) const;
166 SDValue performCvtPkRTZCombine(SDNode *N, DAGCombinerInfo &DCI) const;
167 SDValue performExtractVectorEltCombine(SDNode *N, DAGCombinerInfo &DCI) const;
168 SDValue performInsertVectorEltCombine(SDNode *N, DAGCombinerInfo &DCI) const;
170 SDValue reassociateScalarOps(SDNode *N, SelectionDAG &DAG) const;
171 unsigned getFusedOpcode(const SelectionDAG &DAG,
172 const SDNode *N0, const SDNode *N1) const;
173 SDValue performAddCombine(SDNode *N, DAGCombinerInfo &DCI) const;
174 SDValue performAddCarrySubCarryCombine(SDNode *N, DAGCombinerInfo &DCI) const;
175 SDValue performSubCombine(SDNode *N, DAGCombinerInfo &DCI) const;
176 SDValue performFAddCombine(SDNode *N, DAGCombinerInfo &DCI) const;
177 SDValue performFSubCombine(SDNode *N, DAGCombinerInfo &DCI) const;
178 SDValue performFMACombine(SDNode *N, DAGCombinerInfo &DCI) const;
179 SDValue performSetCCCombine(SDNode *N, DAGCombinerInfo &DCI) const;
180 SDValue performCvtF32UByteNCombine(SDNode *N, DAGCombinerInfo &DCI) const;
181 SDValue performClampCombine(SDNode *N, DAGCombinerInfo &DCI) const;
182 SDValue performRcpCombine(SDNode *N, DAGCombinerInfo &DCI) const;
184 bool isLegalFlatAddressingMode(const AddrMode &AM) const;
185 bool isLegalMUBUFAddressingMode(const AddrMode &AM) const;
187 unsigned isCFIntrinsic(const SDNode *Intr) const;
189 /// \returns True if fixup needs to be emitted for given global value \p GV,
190 /// false otherwise.
191 bool shouldEmitFixup(const GlobalValue *GV) const;
193 /// \returns True if GOT relocation needs to be emitted for given global value
194 /// \p GV, false otherwise.
195 bool shouldEmitGOTReloc(const GlobalValue *GV) const;
197 /// \returns True if PC-relative relocation needs to be emitted for given
198 /// global value \p GV, false otherwise.
199 bool shouldEmitPCReloc(const GlobalValue *GV) const;
201 // Analyze a combined offset from an amdgcn_buffer_ intrinsic and store the
202 // three offsets (voffset, soffset and instoffset) into the SDValue[3] array
203 // pointed to by Offsets.
204 void setBufferOffsets(SDValue CombinedOffset, SelectionDAG &DAG,
205 SDValue *Offsets, unsigned Align = 4) const;
207 // Handle 8 bit and 16 bit buffer loads
208 SDValue handleByteShortBufferLoads(SelectionDAG &DAG, EVT LoadVT, SDLoc DL,
209 ArrayRef<SDValue> Ops, MemSDNode *M) const;
211 // Handle 8 bit and 16 bit buffer stores
212 SDValue handleByteShortBufferStores(SelectionDAG &DAG, EVT VDataType,
213 SDLoc DL, SDValue Ops[],
214 MemSDNode *M) const;
216 public:
217 SITargetLowering(const TargetMachine &tm, const GCNSubtarget &STI);
219 const GCNSubtarget *getSubtarget() const;
221 bool isFPExtFoldable(unsigned Opcode, EVT DestVT, EVT SrcVT) const override;
223 bool isShuffleMaskLegal(ArrayRef<int> /*Mask*/, EVT /*VT*/) const override;
225 bool getTgtMemIntrinsic(IntrinsicInfo &, const CallInst &,
226 MachineFunction &MF,
227 unsigned IntrinsicID) const override;
229 bool getAddrModeArguments(IntrinsicInst * /*I*/,
230 SmallVectorImpl<Value*> &/*Ops*/,
231 Type *&/*AccessTy*/) const override;
233 bool isLegalGlobalAddressingMode(const AddrMode &AM) const;
234 bool isLegalAddressingMode(const DataLayout &DL, const AddrMode &AM, Type *Ty,
235 unsigned AS,
236 Instruction *I = nullptr) const override;
238 bool canMergeStoresTo(unsigned AS, EVT MemVT,
239 const SelectionDAG &DAG) const override;
241 bool allowsMisalignedMemoryAccesses(
242 EVT VT, unsigned AS, unsigned Align,
243 MachineMemOperand::Flags Flags = MachineMemOperand::MONone,
244 bool *IsFast = nullptr) const override;
246 EVT getOptimalMemOpType(uint64_t Size, unsigned DstAlign,
247 unsigned SrcAlign, bool IsMemset,
248 bool ZeroMemset,
249 bool MemcpyStrSrc,
250 const AttributeList &FuncAttributes) const override;
252 bool isMemOpUniform(const SDNode *N) const;
253 bool isMemOpHasNoClobberedMemOperand(const SDNode *N) const;
254 bool isNoopAddrSpaceCast(unsigned SrcAS, unsigned DestAS) const override;
255 bool isFreeAddrSpaceCast(unsigned SrcAS, unsigned DestAS) const override;
257 TargetLoweringBase::LegalizeTypeAction
258 getPreferredVectorAction(MVT VT) const override;
260 bool shouldConvertConstantLoadToIntImm(const APInt &Imm,
261 Type *Ty) const override;
263 bool isTypeDesirableForOp(unsigned Op, EVT VT) const override;
265 bool isOffsetFoldingLegal(const GlobalAddressSDNode *GA) const override;
267 bool supportSplitCSR(MachineFunction *MF) const override;
268 void initializeSplitCSR(MachineBasicBlock *Entry) const override;
269 void insertCopiesSplitCSR(
270 MachineBasicBlock *Entry,
271 const SmallVectorImpl<MachineBasicBlock *> &Exits) const override;
273 SDValue LowerFormalArguments(SDValue Chain, CallingConv::ID CallConv,
274 bool isVarArg,
275 const SmallVectorImpl<ISD::InputArg> &Ins,
276 const SDLoc &DL, SelectionDAG &DAG,
277 SmallVectorImpl<SDValue> &InVals) const override;
279 bool CanLowerReturn(CallingConv::ID CallConv,
280 MachineFunction &MF, bool isVarArg,
281 const SmallVectorImpl<ISD::OutputArg> &Outs,
282 LLVMContext &Context) const override;
284 SDValue LowerReturn(SDValue Chain, CallingConv::ID CallConv, bool IsVarArg,
285 const SmallVectorImpl<ISD::OutputArg> &Outs,
286 const SmallVectorImpl<SDValue> &OutVals, const SDLoc &DL,
287 SelectionDAG &DAG) const override;
289 void passSpecialInputs(
290 CallLoweringInfo &CLI,
291 CCState &CCInfo,
292 const SIMachineFunctionInfo &Info,
293 SmallVectorImpl<std::pair<unsigned, SDValue>> &RegsToPass,
294 SmallVectorImpl<SDValue> &MemOpChains,
295 SDValue Chain) const;
297 SDValue LowerCallResult(SDValue Chain, SDValue InFlag,
298 CallingConv::ID CallConv, bool isVarArg,
299 const SmallVectorImpl<ISD::InputArg> &Ins,
300 const SDLoc &DL, SelectionDAG &DAG,
301 SmallVectorImpl<SDValue> &InVals, bool isThisReturn,
302 SDValue ThisVal) const;
304 bool mayBeEmittedAsTailCall(const CallInst *) const override;
306 bool isEligibleForTailCallOptimization(
307 SDValue Callee, CallingConv::ID CalleeCC, bool isVarArg,
308 const SmallVectorImpl<ISD::OutputArg> &Outs,
309 const SmallVectorImpl<SDValue> &OutVals,
310 const SmallVectorImpl<ISD::InputArg> &Ins, SelectionDAG &DAG) const;
312 SDValue LowerCall(CallLoweringInfo &CLI,
313 SmallVectorImpl<SDValue> &InVals) const override;
315 unsigned getRegisterByName(const char* RegName, EVT VT,
316 SelectionDAG &DAG) const override;
318 MachineBasicBlock *splitKillBlock(MachineInstr &MI,
319 MachineBasicBlock *BB) const;
321 void bundleInstWithWaitcnt(MachineInstr &MI) const;
322 MachineBasicBlock *emitGWSMemViolTestLoop(MachineInstr &MI,
323 MachineBasicBlock *BB) const;
325 MachineBasicBlock *
326 EmitInstrWithCustomInserter(MachineInstr &MI,
327 MachineBasicBlock *BB) const override;
329 bool hasBitPreservingFPLogic(EVT VT) const override;
330 bool enableAggressiveFMAFusion(EVT VT) const override;
331 EVT getSetCCResultType(const DataLayout &DL, LLVMContext &Context,
332 EVT VT) const override;
333 MVT getScalarShiftAmountTy(const DataLayout &, EVT) const override;
334 bool isFMAFasterThanFMulAndFAdd(EVT VT) const override;
335 SDValue splitUnaryVectorOp(SDValue Op, SelectionDAG &DAG) const;
336 SDValue splitBinaryVectorOp(SDValue Op, SelectionDAG &DAG) const;
337 SDValue splitTernaryVectorOp(SDValue Op, SelectionDAG &DAG) const;
338 SDValue LowerOperation(SDValue Op, SelectionDAG &DAG) const override;
340 void ReplaceNodeResults(SDNode *N, SmallVectorImpl<SDValue> &Results,
341 SelectionDAG &DAG) const override;
343 SDValue PerformDAGCombine(SDNode *N, DAGCombinerInfo &DCI) const override;
344 SDNode *PostISelFolding(MachineSDNode *N, SelectionDAG &DAG) const override;
345 void AdjustInstrPostInstrSelection(MachineInstr &MI,
346 SDNode *Node) const override;
348 SDNode *legalizeTargetIndependentNode(SDNode *Node, SelectionDAG &DAG) const;
350 MachineSDNode *wrapAddr64Rsrc(SelectionDAG &DAG, const SDLoc &DL,
351 SDValue Ptr) const;
352 MachineSDNode *buildRSRC(SelectionDAG &DAG, const SDLoc &DL, SDValue Ptr,
353 uint32_t RsrcDword1, uint64_t RsrcDword2And3) const;
354 std::pair<unsigned, const TargetRegisterClass *>
355 getRegForInlineAsmConstraint(const TargetRegisterInfo *TRI,
356 StringRef Constraint, MVT VT) const override;
357 ConstraintType getConstraintType(StringRef Constraint) const override;
358 SDValue copyToM0(SelectionDAG &DAG, SDValue Chain, const SDLoc &DL,
359 SDValue V) const;
361 void finalizeLowering(MachineFunction &MF) const override;
363 void computeKnownBitsForFrameIndex(const SDValue Op,
364 KnownBits &Known,
365 const APInt &DemandedElts,
366 const SelectionDAG &DAG,
367 unsigned Depth = 0) const override;
369 bool isSDNodeSourceOfDivergence(const SDNode *N,
370 FunctionLoweringInfo *FLI, LegacyDivergenceAnalysis *DA) const override;
372 bool isCanonicalized(SelectionDAG &DAG, SDValue Op,
373 unsigned MaxDepth = 5) const;
374 bool denormalsEnabledForType(EVT VT) const;
376 bool isKnownNeverNaNForTargetNode(SDValue Op,
377 const SelectionDAG &DAG,
378 bool SNaN = false,
379 unsigned Depth = 0) const override;
380 AtomicExpansionKind shouldExpandAtomicRMWInIR(AtomicRMWInst *) const override;
382 unsigned getPrefLoopLogAlignment(MachineLoop *ML) const override;
384 void allocateHSAUserSGPRs(CCState &CCInfo,
385 MachineFunction &MF,
386 const SIRegisterInfo &TRI,
387 SIMachineFunctionInfo &Info) const;
389 void allocateSystemSGPRs(CCState &CCInfo,
390 MachineFunction &MF,
391 SIMachineFunctionInfo &Info,
392 CallingConv::ID CallConv,
393 bool IsShader) const;
395 void allocateSpecialEntryInputVGPRs(CCState &CCInfo,
396 MachineFunction &MF,
397 const SIRegisterInfo &TRI,
398 SIMachineFunctionInfo &Info) const;
399 void allocateSpecialInputSGPRs(
400 CCState &CCInfo,
401 MachineFunction &MF,
402 const SIRegisterInfo &TRI,
403 SIMachineFunctionInfo &Info) const;
405 void allocateSpecialInputVGPRs(CCState &CCInfo,
406 MachineFunction &MF,
407 const SIRegisterInfo &TRI,
408 SIMachineFunctionInfo &Info) const;
411 } // End namespace llvm
413 #endif