xref: /freebsd/contrib/llvm-project/llvm/lib/Target/AMDGPU/AMDGPUISelLowering.h (revision 38a52bd3b5cac3da6f7f6eef3dd050e6aa08ebb3)
1 //===-- AMDGPUISelLowering.h - AMDGPU 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 /// Interface definition of the TargetLowering class that is common
11 /// to all AMD GPUs.
12 //
13 //===----------------------------------------------------------------------===//
14 
15 #ifndef LLVM_LIB_TARGET_AMDGPU_AMDGPUISELLOWERING_H
16 #define LLVM_LIB_TARGET_AMDGPU_AMDGPUISELLOWERING_H
17 
18 #include "llvm/CodeGen/CallingConvLower.h"
19 #include "llvm/CodeGen/TargetLowering.h"
20 
21 namespace llvm {
22 
23 class AMDGPUMachineFunction;
24 class AMDGPUSubtarget;
25 struct ArgDescriptor;
26 
27 class AMDGPUTargetLowering : public TargetLowering {
28 private:
29   const AMDGPUSubtarget *Subtarget;
30 
31   /// \returns AMDGPUISD::FFBH_U32 node if the incoming \p Op may have been
32   /// legalized from a smaller type VT. Need to match pre-legalized type because
33   /// the generic legalization inserts the add/sub between the select and
34   /// compare.
35   SDValue getFFBX_U32(SelectionDAG &DAG, SDValue Op, const SDLoc &DL, unsigned Opc) const;
36 
37 public:
38   /// \returns The minimum number of bits needed to store the value of \Op as an
39   /// unsigned integer. Truncating to this size and then zero-extending to the
40   /// original size will not change the value.
41   static unsigned numBitsUnsigned(SDValue Op, SelectionDAG &DAG);
42 
43   /// \returns The minimum number of bits needed to store the value of \Op as a
44   /// signed integer. Truncating to this size and then sign-extending to the
45   /// original size will not change the value.
46   static unsigned numBitsSigned(SDValue Op, SelectionDAG &DAG);
47 
48 protected:
49   SDValue LowerEXTRACT_SUBVECTOR(SDValue Op, SelectionDAG &DAG) const;
50   SDValue LowerCONCAT_VECTORS(SDValue Op, SelectionDAG &DAG) const;
51   /// Split a vector store into multiple scalar stores.
52   /// \returns The resulting chain.
53 
54   SDValue LowerFREM(SDValue Op, SelectionDAG &DAG) const;
55   SDValue LowerFCEIL(SDValue Op, SelectionDAG &DAG) const;
56   SDValue LowerFTRUNC(SDValue Op, SelectionDAG &DAG) const;
57   SDValue LowerFRINT(SDValue Op, SelectionDAG &DAG) const;
58   SDValue LowerFNEARBYINT(SDValue Op, SelectionDAG &DAG) const;
59 
60   SDValue LowerFROUND(SDValue Op, SelectionDAG &DAG) const;
61   SDValue LowerFFLOOR(SDValue Op, SelectionDAG &DAG) const;
62   SDValue LowerFLOG(SDValue Op, SelectionDAG &DAG,
63                     double Log2BaseInverted) const;
64   SDValue lowerFEXP(SDValue Op, SelectionDAG &DAG) const;
65 
66   SDValue LowerCTLZ_CTTZ(SDValue Op, SelectionDAG &DAG) const;
67 
68   SDValue LowerINT_TO_FP32(SDValue Op, SelectionDAG &DAG, bool Signed) const;
69   SDValue LowerINT_TO_FP64(SDValue Op, SelectionDAG &DAG, bool Signed) const;
70   SDValue LowerUINT_TO_FP(SDValue Op, SelectionDAG &DAG) const;
71   SDValue LowerSINT_TO_FP(SDValue Op, SelectionDAG &DAG) const;
72 
73   SDValue LowerFP_TO_INT64(SDValue Op, SelectionDAG &DAG, bool Signed) const;
74   SDValue LowerFP_TO_FP16(SDValue Op, SelectionDAG &DAG) const;
75   SDValue LowerFP_TO_INT(SDValue Op, SelectionDAG &DAG) const;
76 
77   SDValue LowerSIGN_EXTEND_INREG(SDValue Op, SelectionDAG &DAG) const;
78 
79 protected:
80   bool shouldCombineMemoryType(EVT VT) const;
81   SDValue performLoadCombine(SDNode *N, DAGCombinerInfo &DCI) const;
82   SDValue performStoreCombine(SDNode *N, DAGCombinerInfo &DCI) const;
83   SDValue performAssertSZExtCombine(SDNode *N, DAGCombinerInfo &DCI) const;
84   SDValue performIntrinsicWOChainCombine(SDNode *N, DAGCombinerInfo &DCI) const;
85 
86   SDValue splitBinaryBitConstantOpImpl(DAGCombinerInfo &DCI, const SDLoc &SL,
87                                        unsigned Opc, SDValue LHS,
88                                        uint32_t ValLo, uint32_t ValHi) const;
89   SDValue performShlCombine(SDNode *N, DAGCombinerInfo &DCI) const;
90   SDValue performSraCombine(SDNode *N, DAGCombinerInfo &DCI) const;
91   SDValue performSrlCombine(SDNode *N, DAGCombinerInfo &DCI) const;
92   SDValue performTruncateCombine(SDNode *N, DAGCombinerInfo &DCI) const;
93   SDValue performMulCombine(SDNode *N, DAGCombinerInfo &DCI) const;
94   SDValue performMulLoHiCombine(SDNode *N, DAGCombinerInfo &DCI) const;
95   SDValue performMulhsCombine(SDNode *N, DAGCombinerInfo &DCI) const;
96   SDValue performMulhuCombine(SDNode *N, DAGCombinerInfo &DCI) const;
97   SDValue performCtlz_CttzCombine(const SDLoc &SL, SDValue Cond, SDValue LHS,
98                              SDValue RHS, DAGCombinerInfo &DCI) const;
99   SDValue performSelectCombine(SDNode *N, DAGCombinerInfo &DCI) const;
100 
101   bool isConstantCostlierToNegate(SDValue N) const;
102   SDValue performFNegCombine(SDNode *N, DAGCombinerInfo &DCI) const;
103   SDValue performFAbsCombine(SDNode *N, DAGCombinerInfo &DCI) const;
104   SDValue performRcpCombine(SDNode *N, DAGCombinerInfo &DCI) const;
105 
106   static EVT getEquivalentMemType(LLVMContext &Context, EVT VT);
107 
108   virtual SDValue LowerGlobalAddress(AMDGPUMachineFunction *MFI, SDValue Op,
109                                      SelectionDAG &DAG) const;
110 
111   /// Return 64-bit value Op as two 32-bit integers.
112   std::pair<SDValue, SDValue> split64BitValue(SDValue Op,
113                                               SelectionDAG &DAG) const;
114   SDValue getLoHalf64(SDValue Op, SelectionDAG &DAG) const;
115   SDValue getHiHalf64(SDValue Op, SelectionDAG &DAG) const;
116 
117   /// Split a vector type into two parts. The first part is a power of two
118   /// vector. The second part is whatever is left over, and is a scalar if it
119   /// would otherwise be a 1-vector.
120   std::pair<EVT, EVT> getSplitDestVTs(const EVT &VT, SelectionDAG &DAG) const;
121 
122   /// Split a vector value into two parts of types LoVT and HiVT. HiVT could be
123   /// scalar.
124   std::pair<SDValue, SDValue> splitVector(const SDValue &N, const SDLoc &DL,
125                                           const EVT &LoVT, const EVT &HighVT,
126                                           SelectionDAG &DAG) const;
127 
128   /// Split a vector load into 2 loads of half the vector.
129   SDValue SplitVectorLoad(SDValue Op, SelectionDAG &DAG) const;
130 
131   /// Widen a suitably aligned v3 load. For all other cases, split the input
132   /// vector load.
133   SDValue WidenOrSplitVectorLoad(SDValue Op, SelectionDAG &DAG) const;
134 
135   /// Split a vector store into 2 stores of half the vector.
136   SDValue SplitVectorStore(SDValue Op, SelectionDAG &DAG) const;
137 
138   SDValue LowerSTORE(SDValue Op, SelectionDAG &DAG) const;
139   SDValue LowerSDIVREM(SDValue Op, SelectionDAG &DAG) const;
140   SDValue LowerUDIVREM(SDValue Op, SelectionDAG &DAG) const;
141   SDValue LowerDIVREM24(SDValue Op, SelectionDAG &DAG, bool sign) const;
142   void LowerUDIVREM64(SDValue Op, SelectionDAG &DAG,
143                                     SmallVectorImpl<SDValue> &Results) const;
144 
145   void analyzeFormalArgumentsCompute(
146     CCState &State,
147     const SmallVectorImpl<ISD::InputArg> &Ins) const;
148 
149 public:
150   AMDGPUTargetLowering(const TargetMachine &TM, const AMDGPUSubtarget &STI);
151 
152   bool mayIgnoreSignedZero(SDValue Op) const;
153 
154   static inline SDValue stripBitcast(SDValue Val) {
155     return Val.getOpcode() == ISD::BITCAST ? Val.getOperand(0) : Val;
156   }
157 
158   static bool allUsesHaveSourceMods(const SDNode *N,
159                                     unsigned CostThreshold = 4);
160   bool isFAbsFree(EVT VT) const override;
161   bool isFNegFree(EVT VT) const override;
162   bool isTruncateFree(EVT Src, EVT Dest) const override;
163   bool isTruncateFree(Type *Src, Type *Dest) const override;
164 
165   bool isZExtFree(Type *Src, Type *Dest) const override;
166   bool isZExtFree(EVT Src, EVT Dest) const override;
167   bool isZExtFree(SDValue Val, EVT VT2) const override;
168 
169   SDValue getNegatedExpression(SDValue Op, SelectionDAG &DAG,
170                                bool LegalOperations, bool ForCodeSize,
171                                NegatibleCost &Cost,
172                                unsigned Depth) const override;
173 
174   bool isNarrowingProfitable(EVT VT1, EVT VT2) const override;
175 
176   EVT getTypeForExtReturn(LLVMContext &Context, EVT VT,
177                           ISD::NodeType ExtendKind) const override;
178 
179   MVT getVectorIdxTy(const DataLayout &) const override;
180   bool isSelectSupported(SelectSupportKind) const override;
181 
182   bool isFPImmLegal(const APFloat &Imm, EVT VT,
183                     bool ForCodeSize) const override;
184   bool ShouldShrinkFPConstant(EVT VT) const override;
185   bool shouldReduceLoadWidth(SDNode *Load,
186                              ISD::LoadExtType ExtType,
187                              EVT ExtVT) const override;
188 
189   bool isLoadBitCastBeneficial(EVT, EVT, const SelectionDAG &DAG,
190                                const MachineMemOperand &MMO) const final;
191 
192   bool storeOfVectorConstantIsCheap(EVT MemVT,
193                                     unsigned NumElem,
194                                     unsigned AS) const override;
195   bool aggressivelyPreferBuildVectorSources(EVT VecVT) const override;
196   bool isCheapToSpeculateCttz() const override;
197   bool isCheapToSpeculateCtlz() const override;
198 
199   bool isSDNodeAlwaysUniform(const SDNode *N) const override;
200   static CCAssignFn *CCAssignFnForCall(CallingConv::ID CC, bool IsVarArg);
201   static CCAssignFn *CCAssignFnForReturn(CallingConv::ID CC, bool IsVarArg);
202 
203   SDValue LowerReturn(SDValue Chain, CallingConv::ID CallConv, bool isVarArg,
204                       const SmallVectorImpl<ISD::OutputArg> &Outs,
205                       const SmallVectorImpl<SDValue> &OutVals, const SDLoc &DL,
206                       SelectionDAG &DAG) const override;
207 
208   SDValue addTokenForArgument(SDValue Chain,
209                               SelectionDAG &DAG,
210                               MachineFrameInfo &MFI,
211                               int ClobberedFI) const;
212 
213   SDValue lowerUnhandledCall(CallLoweringInfo &CLI,
214                              SmallVectorImpl<SDValue> &InVals,
215                              StringRef Reason) const;
216   SDValue LowerCall(CallLoweringInfo &CLI,
217                     SmallVectorImpl<SDValue> &InVals) const override;
218 
219   SDValue LowerDYNAMIC_STACKALLOC(SDValue Op,
220                                   SelectionDAG &DAG) const;
221 
222   SDValue LowerOperation(SDValue Op, SelectionDAG &DAG) const override;
223   SDValue PerformDAGCombine(SDNode *N, DAGCombinerInfo &DCI) const override;
224   void ReplaceNodeResults(SDNode * N,
225                           SmallVectorImpl<SDValue> &Results,
226                           SelectionDAG &DAG) const override;
227 
228   SDValue combineFMinMaxLegacy(const SDLoc &DL, EVT VT, SDValue LHS,
229                                SDValue RHS, SDValue True, SDValue False,
230                                SDValue CC, DAGCombinerInfo &DCI) const;
231 
232   const char* getTargetNodeName(unsigned Opcode) const override;
233 
234   // FIXME: Turn off MergeConsecutiveStores() before Instruction Selection for
235   // AMDGPU.  Commit r319036,
236   // (https://github.com/llvm/llvm-project/commit/db77e57ea86d941a4262ef60261692f4cb6893e6)
237   // turned on MergeConsecutiveStores() before Instruction Selection for all
238   // targets.  Enough AMDGPU compiles go into an infinite loop (
239   // MergeConsecutiveStores() merges two stores; LegalizeStoreOps() un-merges;
240   // MergeConsecutiveStores() re-merges, etc. ) to warrant turning it off for
241   // now.
242   bool mergeStoresAfterLegalization(EVT) const override { return false; }
243 
244   bool isFsqrtCheap(SDValue Operand, SelectionDAG &DAG) const override {
245     return true;
246   }
247   SDValue getSqrtEstimate(SDValue Operand, SelectionDAG &DAG, int Enabled,
248                            int &RefinementSteps, bool &UseOneConstNR,
249                            bool Reciprocal) const override;
250   SDValue getRecipEstimate(SDValue Operand, SelectionDAG &DAG, int Enabled,
251                            int &RefinementSteps) const override;
252 
253   virtual SDNode *PostISelFolding(MachineSDNode *N,
254                                   SelectionDAG &DAG) const = 0;
255 
256   /// Determine which of the bits specified in \p Mask are known to be
257   /// either zero or one and return them in the \p KnownZero and \p KnownOne
258   /// bitsets.
259   void computeKnownBitsForTargetNode(const SDValue Op,
260                                      KnownBits &Known,
261                                      const APInt &DemandedElts,
262                                      const SelectionDAG &DAG,
263                                      unsigned Depth = 0) const override;
264 
265   unsigned ComputeNumSignBitsForTargetNode(SDValue Op, const APInt &DemandedElts,
266                                            const SelectionDAG &DAG,
267                                            unsigned Depth = 0) const override;
268 
269   unsigned computeNumSignBitsForTargetInstr(GISelKnownBits &Analysis,
270                                             Register R,
271                                             const APInt &DemandedElts,
272                                             const MachineRegisterInfo &MRI,
273                                             unsigned Depth = 0) const override;
274 
275   bool isKnownNeverNaNForTargetNode(SDValue Op,
276                                     const SelectionDAG &DAG,
277                                     bool SNaN = false,
278                                     unsigned Depth = 0) const override;
279 
280   /// Helper function that adds Reg to the LiveIn list of the DAG's
281   /// MachineFunction.
282   ///
283   /// \returns a RegisterSDNode representing Reg if \p RawReg is true, otherwise
284   /// a copy from the register.
285   SDValue CreateLiveInRegister(SelectionDAG &DAG,
286                                const TargetRegisterClass *RC,
287                                Register Reg, EVT VT,
288                                const SDLoc &SL,
289                                bool RawReg = false) const;
290   SDValue CreateLiveInRegister(SelectionDAG &DAG,
291                                const TargetRegisterClass *RC,
292                                Register Reg, EVT VT) const {
293     return CreateLiveInRegister(DAG, RC, Reg, VT, SDLoc(DAG.getEntryNode()));
294   }
295 
296   // Returns the raw live in register rather than a copy from it.
297   SDValue CreateLiveInRegisterRaw(SelectionDAG &DAG,
298                                   const TargetRegisterClass *RC,
299                                   Register Reg, EVT VT) const {
300     return CreateLiveInRegister(DAG, RC, Reg, VT, SDLoc(DAG.getEntryNode()), true);
301   }
302 
303   /// Similar to CreateLiveInRegister, except value maybe loaded from a stack
304   /// slot rather than passed in a register.
305   SDValue loadStackInputValue(SelectionDAG &DAG,
306                               EVT VT,
307                               const SDLoc &SL,
308                               int64_t Offset) const;
309 
310   SDValue storeStackInputValue(SelectionDAG &DAG,
311                                const SDLoc &SL,
312                                SDValue Chain,
313                                SDValue ArgVal,
314                                int64_t Offset) const;
315 
316   SDValue loadInputValue(SelectionDAG &DAG,
317                          const TargetRegisterClass *RC,
318                          EVT VT, const SDLoc &SL,
319                          const ArgDescriptor &Arg) const;
320 
321   enum ImplicitParameter {
322     FIRST_IMPLICIT,
323     GRID_DIM = FIRST_IMPLICIT,
324     GRID_OFFSET,
325   };
326 
327   /// Helper function that returns the byte offset of the given
328   /// type of implicit parameter.
329   uint32_t getImplicitParameterOffset(const MachineFunction &MF,
330                                       const ImplicitParameter Param) const;
331 
332   MVT getFenceOperandTy(const DataLayout &DL) const override {
333     return MVT::i32;
334   }
335 
336   AtomicExpansionKind shouldExpandAtomicRMWInIR(AtomicRMWInst *) const override;
337 
338   bool isConstantUnsignedBitfieldExtractLegal(unsigned Opc, LLT Ty1,
339                                               LLT Ty2) const override;
340 };
341 
342 namespace AMDGPUISD {
343 
344 enum NodeType : unsigned {
345   // AMDIL ISD Opcodes
346   FIRST_NUMBER = ISD::BUILTIN_OP_END,
347   UMUL, // 32bit unsigned multiplication
348   BRANCH_COND,
349   // End AMDIL ISD Opcodes
350 
351   // Function call.
352   CALL,
353   TC_RETURN,
354   TRAP,
355 
356   // Masked control flow nodes.
357   IF,
358   ELSE,
359   LOOP,
360 
361   // A uniform kernel return that terminates the wavefront.
362   ENDPGM,
363 
364   // Return to a shader part's epilog code.
365   RETURN_TO_EPILOG,
366 
367   // Return with values from a non-entry function.
368   RET_FLAG,
369 
370   // Return with values from a non-entry function (AMDGPU_Gfx CC).
371   RET_GFX_FLAG,
372 
373   DWORDADDR,
374   FRACT,
375 
376   /// CLAMP value between 0.0 and 1.0. NaN clamped to 0, following clamp output
377   /// modifier behavior with dx10_enable.
378   CLAMP,
379 
380   // This is SETCC with the full mask result which is used for a compare with a
381   // result bit per item in the wavefront.
382   SETCC,
383   SETREG,
384 
385   DENORM_MODE,
386 
387   // FP ops with input and output chain.
388   FMA_W_CHAIN,
389   FMUL_W_CHAIN,
390 
391   // SIN_HW, COS_HW - f32 for SI, 1 ULP max error, valid from -100 pi to 100 pi.
392   // Denormals handled on some parts.
393   COS_HW,
394   SIN_HW,
395   FMAX_LEGACY,
396   FMIN_LEGACY,
397 
398   FMAX3,
399   SMAX3,
400   UMAX3,
401   FMIN3,
402   SMIN3,
403   UMIN3,
404   FMED3,
405   SMED3,
406   UMED3,
407   FDOT2,
408   URECIP,
409   DIV_SCALE,
410   DIV_FMAS,
411   DIV_FIXUP,
412   // For emitting ISD::FMAD when f32 denormals are enabled because mac/mad is
413   // treated as an illegal operation.
414   FMAD_FTZ,
415 
416   // RCP, RSQ - For f32, 1 ULP max error, no denormal handling.
417   //            For f64, max error 2^29 ULP, handles denormals.
418   RCP,
419   RSQ,
420   RCP_LEGACY,
421   RCP_IFLAG,
422   FMUL_LEGACY,
423   RSQ_CLAMP,
424   LDEXP,
425   FP_CLASS,
426   DOT4,
427   CARRY,
428   BORROW,
429   BFE_U32,  // Extract range of bits with zero extension to 32-bits.
430   BFE_I32,  // Extract range of bits with sign extension to 32-bits.
431   BFI,      // (src0 & src1) | (~src0 & src2)
432   BFM,      // Insert a range of bits into a 32-bit word.
433   FFBH_U32, // ctlz with -1 if input is zero.
434   FFBH_I32,
435   FFBL_B32, // cttz with -1 if input is zero.
436   MUL_U24,
437   MUL_I24,
438   MULHI_U24,
439   MULHI_I24,
440   MAD_U24,
441   MAD_I24,
442   MAD_U64_U32,
443   MAD_I64_I32,
444   PERM,
445   TEXTURE_FETCH,
446   R600_EXPORT,
447   CONST_ADDRESS,
448   REGISTER_LOAD,
449   REGISTER_STORE,
450   SAMPLE,
451   SAMPLEB,
452   SAMPLED,
453   SAMPLEL,
454 
455   // These cvt_f32_ubyte* nodes need to remain consecutive and in order.
456   CVT_F32_UBYTE0,
457   CVT_F32_UBYTE1,
458   CVT_F32_UBYTE2,
459   CVT_F32_UBYTE3,
460 
461   // Convert two float 32 numbers into a single register holding two packed f16
462   // with round to zero.
463   CVT_PKRTZ_F16_F32,
464   CVT_PKNORM_I16_F32,
465   CVT_PKNORM_U16_F32,
466   CVT_PK_I16_I32,
467   CVT_PK_U16_U32,
468 
469   // Same as the standard node, except the high bits of the resulting integer
470   // are known 0.
471   FP_TO_FP16,
472 
473   /// This node is for VLIW targets and it is used to represent a vector
474   /// that is stored in consecutive registers with the same channel.
475   /// For example:
476   ///   |X  |Y|Z|W|
477   /// T0|v.x| | | |
478   /// T1|v.y| | | |
479   /// T2|v.z| | | |
480   /// T3|v.w| | | |
481   BUILD_VERTICAL_VECTOR,
482   /// Pointer to the start of the shader's constant data.
483   CONST_DATA_PTR,
484   PC_ADD_REL_OFFSET,
485   LDS,
486   DUMMY_CHAIN,
487   FIRST_MEM_OPCODE_NUMBER = ISD::FIRST_TARGET_MEMORY_OPCODE,
488   LOAD_D16_HI,
489   LOAD_D16_LO,
490   LOAD_D16_HI_I8,
491   LOAD_D16_HI_U8,
492   LOAD_D16_LO_I8,
493   LOAD_D16_LO_U8,
494 
495   STORE_MSKOR,
496   LOAD_CONSTANT,
497   TBUFFER_STORE_FORMAT,
498   TBUFFER_STORE_FORMAT_D16,
499   TBUFFER_LOAD_FORMAT,
500   TBUFFER_LOAD_FORMAT_D16,
501   DS_ORDERED_COUNT,
502   ATOMIC_CMP_SWAP,
503   ATOMIC_INC,
504   ATOMIC_DEC,
505   ATOMIC_LOAD_FMIN,
506   ATOMIC_LOAD_FMAX,
507   BUFFER_LOAD,
508   BUFFER_LOAD_UBYTE,
509   BUFFER_LOAD_USHORT,
510   BUFFER_LOAD_BYTE,
511   BUFFER_LOAD_SHORT,
512   BUFFER_LOAD_FORMAT,
513   BUFFER_LOAD_FORMAT_D16,
514   SBUFFER_LOAD,
515   BUFFER_STORE,
516   BUFFER_STORE_BYTE,
517   BUFFER_STORE_SHORT,
518   BUFFER_STORE_FORMAT,
519   BUFFER_STORE_FORMAT_D16,
520   BUFFER_ATOMIC_SWAP,
521   BUFFER_ATOMIC_ADD,
522   BUFFER_ATOMIC_SUB,
523   BUFFER_ATOMIC_SMIN,
524   BUFFER_ATOMIC_UMIN,
525   BUFFER_ATOMIC_SMAX,
526   BUFFER_ATOMIC_UMAX,
527   BUFFER_ATOMIC_AND,
528   BUFFER_ATOMIC_OR,
529   BUFFER_ATOMIC_XOR,
530   BUFFER_ATOMIC_INC,
531   BUFFER_ATOMIC_DEC,
532   BUFFER_ATOMIC_CMPSWAP,
533   BUFFER_ATOMIC_CSUB,
534   BUFFER_ATOMIC_FADD,
535   BUFFER_ATOMIC_FMIN,
536   BUFFER_ATOMIC_FMAX,
537 
538   LAST_AMDGPU_ISD_NUMBER
539 };
540 
541 } // End namespace AMDGPUISD
542 
543 } // End namespace llvm
544 
545 #endif
546