2012-12-12 05:25:42 +08:00
|
|
|
//===-- AMDGPUISelLowering.h - AMDGPU Lowering Interface --------*- C++ -*-===//
|
|
|
|
//
|
|
|
|
// The LLVM Compiler Infrastructure
|
|
|
|
//
|
|
|
|
// This file is distributed under the University of Illinois Open Source
|
|
|
|
// License. See LICENSE.TXT for details.
|
|
|
|
//
|
|
|
|
//===----------------------------------------------------------------------===//
|
|
|
|
//
|
|
|
|
/// \file
|
|
|
|
/// \brief Interface definition of the TargetLowering class that is common
|
|
|
|
/// to all AMD GPUs.
|
|
|
|
//
|
|
|
|
//===----------------------------------------------------------------------===//
|
|
|
|
|
2016-03-11 16:00:27 +08:00
|
|
|
#ifndef LLVM_LIB_TARGET_AMDGPU_AMDGPUISELLOWERING_H
|
|
|
|
#define LLVM_LIB_TARGET_AMDGPU_AMDGPUISELLOWERING_H
|
2012-12-12 05:25:42 +08:00
|
|
|
|
|
|
|
#include "llvm/Target/TargetLowering.h"
|
|
|
|
|
|
|
|
namespace llvm {
|
|
|
|
|
2013-06-28 23:47:08 +08:00
|
|
|
class AMDGPUMachineFunction;
|
2014-02-25 05:01:28 +08:00
|
|
|
class AMDGPUSubtarget;
|
2012-12-12 05:25:42 +08:00
|
|
|
class MachineRegisterInfo;
|
|
|
|
|
|
|
|
class AMDGPUTargetLowering : public TargetLowering {
|
2014-02-25 05:01:28 +08:00
|
|
|
protected:
|
|
|
|
const AMDGPUSubtarget *Subtarget;
|
|
|
|
|
2014-01-23 03:24:21 +08:00
|
|
|
SDValue LowerConstantInitializer(const Constant* Init, const GlobalValue *GV,
|
|
|
|
const SDValue &InitPtr,
|
|
|
|
SDValue Chain,
|
|
|
|
SelectionDAG &DAG) const;
|
2013-08-15 07:25:00 +08:00
|
|
|
SDValue LowerEXTRACT_SUBVECTOR(SDValue Op, SelectionDAG &DAG) const;
|
|
|
|
SDValue LowerCONCAT_VECTORS(SDValue Op, SelectionDAG &DAG) const;
|
2012-12-12 05:25:42 +08:00
|
|
|
SDValue LowerINTRINSIC_WO_CHAIN(SDValue Op, SelectionDAG &DAG) const;
|
2013-08-26 23:05:44 +08:00
|
|
|
/// \brief Lower vector stores by merging the vector elements into an integer
|
|
|
|
/// of the same bitwidth.
|
|
|
|
SDValue MergeVectorStore(const SDValue &Op, SelectionDAG &DAG) const;
|
|
|
|
/// \brief Split a vector store into multiple scalar stores.
|
2014-04-18 15:40:20 +08:00
|
|
|
/// \returns The resulting chain.
|
2014-06-16 04:08:02 +08:00
|
|
|
|
2014-09-11 05:44:27 +08:00
|
|
|
SDValue LowerFREM(SDValue Op, SelectionDAG &DAG) const;
|
2014-06-19 01:05:30 +08:00
|
|
|
SDValue LowerFCEIL(SDValue Op, SelectionDAG &DAG) const;
|
|
|
|
SDValue LowerFTRUNC(SDValue Op, SelectionDAG &DAG) const;
|
2014-06-19 01:05:26 +08:00
|
|
|
SDValue LowerFRINT(SDValue Op, SelectionDAG &DAG) const;
|
2014-06-19 06:03:45 +08:00
|
|
|
SDValue LowerFNEARBYINT(SDValue Op, SelectionDAG &DAG) const;
|
2015-01-22 02:18:25 +08:00
|
|
|
|
|
|
|
SDValue LowerFROUND32(SDValue Op, SelectionDAG &DAG) const;
|
|
|
|
SDValue LowerFROUND64(SDValue Op, SelectionDAG &DAG) const;
|
|
|
|
SDValue LowerFROUND(SDValue Op, SelectionDAG &DAG) const;
|
2014-06-19 01:05:30 +08:00
|
|
|
SDValue LowerFFLOOR(SDValue Op, SelectionDAG &DAG) const;
|
|
|
|
|
2016-01-12 00:50:29 +08:00
|
|
|
SDValue LowerCTLZ(SDValue Op, SelectionDAG &DAG) const;
|
|
|
|
|
2016-01-12 06:01:48 +08:00
|
|
|
SDValue LowerINT_TO_FP32(SDValue Op, SelectionDAG &DAG, bool Signed) const;
|
2014-10-04 07:54:41 +08:00
|
|
|
SDValue LowerINT_TO_FP64(SDValue Op, SelectionDAG &DAG, bool Signed) const;
|
2013-10-31 01:22:05 +08:00
|
|
|
SDValue LowerUINT_TO_FP(SDValue Op, SelectionDAG &DAG) const;
|
2014-10-04 07:54:41 +08:00
|
|
|
SDValue LowerSINT_TO_FP(SDValue Op, SelectionDAG &DAG) const;
|
2012-12-12 05:25:42 +08:00
|
|
|
|
2014-10-04 07:54:56 +08:00
|
|
|
SDValue LowerFP64_TO_INT(SDValue Op, SelectionDAG &DAG, bool Signed) const;
|
|
|
|
SDValue LowerFP_TO_UINT(SDValue Op, SelectionDAG &DAG) const;
|
|
|
|
SDValue LowerFP_TO_SINT(SDValue Op, SelectionDAG &DAG) const;
|
|
|
|
|
2014-06-16 04:23:38 +08:00
|
|
|
SDValue LowerSIGN_EXTEND_INREG(SDValue Op, SelectionDAG &DAG) const;
|
|
|
|
|
2016-01-19 06:01:13 +08:00
|
|
|
protected:
|
2014-07-15 10:06:31 +08:00
|
|
|
SDValue performStoreCombine(SDNode *N, DAGCombinerInfo &DCI) const;
|
2016-01-19 06:01:13 +08:00
|
|
|
SDValue performAndCombine(SDNode *N, DAGCombinerInfo &DCI) const;
|
2015-07-15 02:20:33 +08:00
|
|
|
SDValue performShlCombine(SDNode *N, DAGCombinerInfo &DCI) const;
|
2016-01-19 06:01:13 +08:00
|
|
|
SDValue performSraCombine(SDNode *N, DAGCombinerInfo &DCI) const;
|
2016-01-19 05:43:36 +08:00
|
|
|
SDValue performSrlCombine(SDNode *N, DAGCombinerInfo &DCI) const;
|
2014-07-01 01:55:48 +08:00
|
|
|
SDValue performMulCombine(SDNode *N, DAGCombinerInfo &DCI) const;
|
2016-01-12 01:02:00 +08:00
|
|
|
SDValue performCtlzCombine(SDLoc SL, SDValue Cond, SDValue LHS, SDValue RHS,
|
|
|
|
DAGCombinerInfo &DCI) const;
|
|
|
|
SDValue performSelectCombine(SDNode *N, DAGCombinerInfo &DCI) const;
|
2014-07-01 01:55:48 +08:00
|
|
|
|
2014-06-11 11:29:54 +08:00
|
|
|
static EVT getEquivalentMemType(LLVMContext &Context, EVT VT);
|
|
|
|
static EVT getEquivalentLoadRegType(LLVMContext &Context, EVT VT);
|
2012-12-12 05:25:42 +08:00
|
|
|
|
2014-07-21 22:01:14 +08:00
|
|
|
virtual SDValue LowerGlobalAddress(AMDGPUMachineFunction *MFI, SDValue Op,
|
|
|
|
SelectionDAG &DAG) const;
|
2014-07-25 01:10:35 +08:00
|
|
|
|
2016-01-19 06:01:13 +08:00
|
|
|
/// Return 64-bit value Op as two 32-bit integers.
|
|
|
|
std::pair<SDValue, SDValue> split64BitValue(SDValue Op,
|
|
|
|
SelectionDAG &DAG) const;
|
2016-01-19 06:09:04 +08:00
|
|
|
SDValue getLoHalf64(SDValue Op, SelectionDAG &DAG) const;
|
|
|
|
SDValue getHiHalf64(SDValue Op, SelectionDAG &DAG) const;
|
2016-01-19 06:01:13 +08:00
|
|
|
|
2014-07-25 01:10:35 +08:00
|
|
|
/// \brief Split a vector load into a scalar load of each component.
|
|
|
|
SDValue ScalarizeVectorLoad(SDValue Op, SelectionDAG &DAG) const;
|
|
|
|
|
|
|
|
/// \brief Split a vector load into 2 loads of half the vector.
|
|
|
|
SDValue SplitVectorLoad(SDValue Op, SelectionDAG &DAG) const;
|
|
|
|
|
|
|
|
/// \brief Split a vector store into a scalar store of each component.
|
|
|
|
SDValue ScalarizeVectorStore(SDValue Op, SelectionDAG &DAG) const;
|
|
|
|
|
|
|
|
/// \brief Split a vector store into 2 stores of half the vector.
|
2013-10-23 08:44:32 +08:00
|
|
|
SDValue SplitVectorStore(SDValue Op, SelectionDAG &DAG) const;
|
2014-07-25 01:10:35 +08:00
|
|
|
|
2013-08-26 23:05:44 +08:00
|
|
|
SDValue LowerSTORE(SDValue Op, SelectionDAG &DAG) const;
|
2014-06-23 05:43:01 +08:00
|
|
|
SDValue LowerSDIVREM(SDValue Op, SelectionDAG &DAG) const;
|
2015-01-23 07:42:43 +08:00
|
|
|
SDValue LowerUDIVREM(SDValue Op, SelectionDAG &DAG) const;
|
2014-08-13 01:31:20 +08:00
|
|
|
SDValue LowerDIVREM24(SDValue Op, SelectionDAG &DAG, bool sign) const;
|
2014-11-15 09:07:53 +08:00
|
|
|
void LowerUDIVREM64(SDValue Op, SelectionDAG &DAG,
|
|
|
|
SmallVectorImpl<SDValue> &Results) const;
|
2013-10-23 08:44:32 +08:00
|
|
|
/// The SelectionDAGBuilder will automatically promote function arguments
|
|
|
|
/// with illegal types. However, this does not work for the AMDGPU targets
|
|
|
|
/// since the function arguments are stored in memory as these illegal types.
|
|
|
|
/// In order to handle this properly we need to get the origianl types sizes
|
|
|
|
/// from the LLVM IR Function and fixup the ISD:InputArg values before
|
|
|
|
/// passing them to AnalyzeFormalArguments()
|
|
|
|
void getOriginalFunctionArgs(SelectionDAG &DAG,
|
|
|
|
const Function *F,
|
|
|
|
const SmallVectorImpl<ISD::InputArg> &Ins,
|
|
|
|
SmallVectorImpl<ISD::InputArg> &OrigIns) const;
|
2013-03-07 17:03:52 +08:00
|
|
|
void AnalyzeFormalArguments(CCState &State,
|
|
|
|
const SmallVectorImpl<ISD::InputArg> &Ins) const;
|
2016-01-14 01:23:04 +08:00
|
|
|
void AnalyzeReturn(CCState &State,
|
|
|
|
const SmallVectorImpl<ISD::OutputArg> &Outs) const;
|
2013-03-07 17:03:52 +08:00
|
|
|
|
2012-12-12 05:25:42 +08:00
|
|
|
public:
|
2015-01-31 07:24:40 +08:00
|
|
|
AMDGPUTargetLowering(TargetMachine &TM, const AMDGPUSubtarget &STI);
|
2012-12-12 05:25:42 +08:00
|
|
|
|
2014-04-29 15:57:24 +08:00
|
|
|
bool isFAbsFree(EVT VT) const override;
|
|
|
|
bool isFNegFree(EVT VT) const override;
|
|
|
|
bool isTruncateFree(EVT Src, EVT Dest) const override;
|
|
|
|
bool isTruncateFree(Type *Src, Type *Dest) const override;
|
|
|
|
|
|
|
|
bool isZExtFree(Type *Src, Type *Dest) const override;
|
|
|
|
bool isZExtFree(EVT Src, EVT Dest) const override;
|
2014-06-26 21:45:47 +08:00
|
|
|
bool isZExtFree(SDValue Val, EVT VT2) const override;
|
2014-04-29 15:57:24 +08:00
|
|
|
|
|
|
|
bool isNarrowingProfitable(EVT VT1, EVT VT2) const override;
|
|
|
|
|
2015-07-09 10:09:04 +08:00
|
|
|
MVT getVectorIdxTy(const DataLayout &) const override;
|
2014-06-24 02:00:55 +08:00
|
|
|
bool isSelectSupported(SelectSupportKind) const override;
|
2014-06-16 04:23:38 +08:00
|
|
|
|
|
|
|
bool isFPImmLegal(const APFloat &Imm, EVT VT) const override;
|
|
|
|
bool ShouldShrinkFPConstant(EVT VT) const override;
|
2014-12-12 08:00:24 +08:00
|
|
|
bool shouldReduceLoadWidth(SDNode *Load,
|
|
|
|
ISD::LoadExtType ExtType,
|
|
|
|
EVT ExtVT) const override;
|
2014-06-16 04:23:38 +08:00
|
|
|
|
2014-04-29 15:57:24 +08:00
|
|
|
bool isLoadBitCastBeneficial(EVT, EVT) const override;
|
2015-05-24 08:51:27 +08:00
|
|
|
|
|
|
|
bool storeOfVectorConstantIsCheap(EVT MemVT,
|
|
|
|
unsigned NumElem,
|
|
|
|
unsigned AS) const override;
|
2015-10-13 07:59:50 +08:00
|
|
|
bool aggressivelyPreferBuildVectorSources(EVT VecVT) const override;
|
2015-01-14 03:46:48 +08:00
|
|
|
bool isCheapToSpeculateCttz() const override;
|
|
|
|
bool isCheapToSpeculateCtlz() const override;
|
|
|
|
|
2014-04-29 15:57:24 +08:00
|
|
|
SDValue LowerReturn(SDValue Chain, CallingConv::ID CallConv,
|
|
|
|
bool isVarArg,
|
|
|
|
const SmallVectorImpl<ISD::OutputArg> &Outs,
|
|
|
|
const SmallVectorImpl<SDValue> &OutVals,
|
|
|
|
SDLoc DL, SelectionDAG &DAG) const override;
|
|
|
|
SDValue LowerCall(CallLoweringInfo &CLI,
|
|
|
|
SmallVectorImpl<SDValue> &InVals) const override;
|
|
|
|
|
2015-08-27 02:37:13 +08:00
|
|
|
SDValue LowerDYNAMIC_STACKALLOC(SDValue Op,
|
|
|
|
SelectionDAG &DAG) const;
|
|
|
|
|
2014-04-29 15:57:24 +08:00
|
|
|
SDValue LowerOperation(SDValue Op, SelectionDAG &DAG) const override;
|
2014-06-16 04:23:38 +08:00
|
|
|
SDValue PerformDAGCombine(SDNode *N, DAGCombinerInfo &DCI) const override;
|
2014-04-29 15:57:24 +08:00
|
|
|
void ReplaceNodeResults(SDNode * N,
|
|
|
|
SmallVectorImpl<SDValue> &Results,
|
|
|
|
SelectionDAG &DAG) const override;
|
2014-03-28 01:23:24 +08:00
|
|
|
|
2014-12-12 10:30:37 +08:00
|
|
|
SDValue CombineFMinMaxLegacy(SDLoc DL,
|
|
|
|
EVT VT,
|
|
|
|
SDValue LHS,
|
|
|
|
SDValue RHS,
|
|
|
|
SDValue True,
|
|
|
|
SDValue False,
|
|
|
|
SDValue CC,
|
|
|
|
DAGCombinerInfo &DCI) const;
|
2014-11-15 02:30:06 +08:00
|
|
|
|
2014-04-29 15:57:24 +08:00
|
|
|
const char* getTargetNodeName(unsigned Opcode) const override;
|
2012-12-12 05:25:42 +08:00
|
|
|
|
2015-01-14 04:53:18 +08:00
|
|
|
SDValue getRsqrtEstimate(SDValue Operand,
|
|
|
|
DAGCombinerInfo &DCI,
|
|
|
|
unsigned &RefinementSteps,
|
|
|
|
bool &UseOneConstNR) const override;
|
2015-01-14 04:53:23 +08:00
|
|
|
SDValue getRecipEstimate(SDValue Operand,
|
|
|
|
DAGCombinerInfo &DCI,
|
|
|
|
unsigned &RefinementSteps) const override;
|
2015-01-14 04:53:18 +08:00
|
|
|
|
2014-04-29 15:57:24 +08:00
|
|
|
virtual SDNode *PostISelFolding(MachineSDNode *N,
|
2016-03-11 16:00:27 +08:00
|
|
|
SelectionDAG &DAG) const = 0;
|
2013-02-27 01:52:16 +08:00
|
|
|
|
2012-12-12 05:25:42 +08:00
|
|
|
/// \brief Determine which of the bits specified in \p Mask are known to be
|
|
|
|
/// either zero or one and return them in the \p KnownZero and \p KnownOne
|
|
|
|
/// bitsets.
|
2014-05-15 05:14:37 +08:00
|
|
|
void computeKnownBitsForTargetNode(const SDValue Op,
|
|
|
|
APInt &KnownZero,
|
|
|
|
APInt &KnownOne,
|
|
|
|
const SelectionDAG &DAG,
|
|
|
|
unsigned Depth = 0) const override;
|
2012-12-12 05:25:42 +08:00
|
|
|
|
2014-09-03 19:41:21 +08:00
|
|
|
unsigned ComputeNumSignBitsForTargetNode(SDValue Op, const SelectionDAG &DAG,
|
|
|
|
unsigned Depth = 0) const override;
|
2014-07-21 23:45:01 +08:00
|
|
|
|
|
|
|
/// \brief Helper function that adds Reg to the LiveIn list of the DAG's
|
|
|
|
/// MachineFunction.
|
|
|
|
///
|
|
|
|
/// \returns a RegisterSDNode representing Reg.
|
|
|
|
virtual SDValue CreateLiveInRegister(SelectionDAG &DAG,
|
|
|
|
const TargetRegisterClass *RC,
|
|
|
|
unsigned Reg, EVT VT) const;
|
2015-07-10 05:20:37 +08:00
|
|
|
|
|
|
|
enum ImplicitParameter {
|
|
|
|
GRID_DIM,
|
|
|
|
GRID_OFFSET
|
|
|
|
};
|
|
|
|
|
|
|
|
/// \brief Helper function that returns the byte offset of the given
|
|
|
|
/// type of implicit parameter.
|
2015-07-29 02:09:55 +08:00
|
|
|
uint32_t getImplicitParameterOffset(const AMDGPUMachineFunction *MFI,
|
2015-07-10 05:20:37 +08:00
|
|
|
const ImplicitParameter Param) const;
|
2012-12-12 05:25:42 +08:00
|
|
|
};
|
|
|
|
|
|
|
|
namespace AMDGPUISD {
|
|
|
|
|
2015-05-08 05:33:59 +08:00
|
|
|
enum NodeType : unsigned {
|
2012-12-12 05:25:42 +08:00
|
|
|
// AMDIL ISD Opcodes
|
|
|
|
FIRST_NUMBER = ISD::BUILTIN_OP_END,
|
|
|
|
CALL, // Function call based on a single integer
|
|
|
|
UMUL, // 32bit unsigned multiplication
|
|
|
|
RET_FLAG,
|
|
|
|
BRANCH_COND,
|
|
|
|
// End AMDIL ISD Opcodes
|
|
|
|
DWORDADDR,
|
|
|
|
FRACT,
|
2014-06-13 05:15:44 +08:00
|
|
|
CLAMP,
|
2014-06-19 09:19:19 +08:00
|
|
|
|
|
|
|
// SIN_HW, COS_HW - f32 for SI, 1 ULP max error, valid from -100 pi to 100 pi.
|
|
|
|
// Denormals handled on some parts.
|
2013-07-09 23:03:11 +08:00
|
|
|
COS_HW,
|
|
|
|
SIN_HW,
|
2014-11-14 07:03:09 +08:00
|
|
|
FMAX_LEGACY,
|
|
|
|
FMIN_LEGACY,
|
2014-11-15 04:08:52 +08:00
|
|
|
FMAX3,
|
|
|
|
SMAX3,
|
|
|
|
UMAX3,
|
|
|
|
FMIN3,
|
|
|
|
SMIN3,
|
|
|
|
UMIN3,
|
2016-01-29 04:53:42 +08:00
|
|
|
FMED3,
|
|
|
|
SMED3,
|
|
|
|
UMED3,
|
2012-12-12 05:25:42 +08:00
|
|
|
URECIP,
|
2014-06-19 09:19:19 +08:00
|
|
|
DIV_SCALE,
|
|
|
|
DIV_FMAS,
|
|
|
|
DIV_FIXUP,
|
|
|
|
TRIG_PREOP, // 1 ULP max error for f64
|
|
|
|
|
|
|
|
// RCP, RSQ - For f32, 1 ULP max error, no denormal handling.
|
|
|
|
// For f64, max error 2^29 ULP, handles denormals.
|
|
|
|
RCP,
|
|
|
|
RSQ,
|
2014-06-25 06:13:39 +08:00
|
|
|
RSQ_LEGACY,
|
2016-02-13 09:03:00 +08:00
|
|
|
RSQ_CLAMP,
|
2014-08-16 01:30:25 +08:00
|
|
|
LDEXP,
|
2015-01-07 07:00:37 +08:00
|
|
|
FP_CLASS,
|
2013-05-18 00:50:32 +08:00
|
|
|
DOT4,
|
2015-05-01 01:15:56 +08:00
|
|
|
CARRY,
|
|
|
|
BORROW,
|
2014-03-18 02:58:11 +08:00
|
|
|
BFE_U32, // Extract range of bits with zero extension to 32-bits.
|
|
|
|
BFE_I32, // Extract range of bits with sign extension to 32-bits.
|
2014-04-01 02:21:13 +08:00
|
|
|
BFI, // (src0 & src1) | (~src0 & src2)
|
|
|
|
BFM, // Insert a range of bits into a 32-bit word.
|
2016-01-12 01:02:00 +08:00
|
|
|
FFBH_U32, // ctlz with -1 if input is zero.
|
2014-04-08 03:45:41 +08:00
|
|
|
MUL_U24,
|
|
|
|
MUL_I24,
|
2014-05-23 02:00:15 +08:00
|
|
|
MAD_U24,
|
|
|
|
MAD_I24,
|
2013-05-18 00:50:20 +08:00
|
|
|
TEXTURE_FETCH,
|
2012-12-12 05:25:42 +08:00
|
|
|
EXPORT,
|
2013-01-23 10:09:03 +08:00
|
|
|
CONST_ADDRESS,
|
2013-02-07 01:32:29 +08:00
|
|
|
REGISTER_LOAD,
|
|
|
|
REGISTER_STORE,
|
2013-08-15 07:24:45 +08:00
|
|
|
LOAD_INPUT,
|
|
|
|
SAMPLE,
|
|
|
|
SAMPLEB,
|
|
|
|
SAMPLED,
|
|
|
|
SAMPLEL,
|
2014-06-12 01:50:44 +08:00
|
|
|
|
|
|
|
// These cvt_f32_ubyte* nodes need to remain consecutive and in order.
|
|
|
|
CVT_F32_UBYTE0,
|
|
|
|
CVT_F32_UBYTE1,
|
|
|
|
CVT_F32_UBYTE2,
|
|
|
|
CVT_F32_UBYTE3,
|
2014-06-18 00:53:14 +08:00
|
|
|
/// This node is for VLIW targets and it is used to represent a vector
|
|
|
|
/// that is stored in consecutive registers with the same channel.
|
|
|
|
/// For example:
|
|
|
|
/// |X |Y|Z|W|
|
|
|
|
/// T0|v.x| | | |
|
|
|
|
/// T1|v.y| | | |
|
|
|
|
/// T2|v.z| | | |
|
|
|
|
/// T3|v.w| | | |
|
|
|
|
BUILD_VERTICAL_VECTOR,
|
2014-07-21 22:01:14 +08:00
|
|
|
/// Pointer to the start of the shader's constant data.
|
|
|
|
CONST_DATA_PTR,
|
2015-05-12 22:18:14 +08:00
|
|
|
SENDMSG,
|
2015-05-12 23:00:46 +08:00
|
|
|
INTERP_MOV,
|
|
|
|
INTERP_P1,
|
|
|
|
INTERP_P2,
|
2013-08-15 07:24:45 +08:00
|
|
|
FIRST_MEM_OPCODE_NUMBER = ISD::FIRST_TARGET_MEMORY_OPCODE,
|
2013-08-16 09:12:06 +08:00
|
|
|
STORE_MSKOR,
|
2013-08-15 07:24:45 +08:00
|
|
|
LOAD_CONSTANT,
|
2013-09-12 10:55:14 +08:00
|
|
|
TBUFFER_STORE_FORMAT,
|
2012-12-12 05:25:42 +08:00
|
|
|
LAST_AMDGPU_ISD_NUMBER
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
|
|
} // End namespace AMDGPUISD
|
|
|
|
|
|
|
|
} // End namespace llvm
|
|
|
|
|
2014-08-14 00:26:38 +08:00
|
|
|
#endif
|