1 //===-- AMDGPUInstrInfo.td - AMDGPU DAG nodes --------------*- tablegen -*-===//
3 // The LLVM Compiler Infrastructure
5 // This file is distributed under the University of Illinois Open Source
6 // License. See LICENSE.TXT for details.
8 //===----------------------------------------------------------------------===//
10 // This file contains DAG node defintions for the AMDGPU target.
12 //===----------------------------------------------------------------------===//
14 //===----------------------------------------------------------------------===//
15 // AMDGPU DAG Profiles
16 //===----------------------------------------------------------------------===//
18 def AMDGPUDTIntTernaryOp : SDTypeProfile<1, 3, [
19 SDTCisSameAs<0, 1>, SDTCisSameAs<0, 2>, SDTCisInt<0>, SDTCisInt<3>
22 def AMDGPUTrigPreOp : SDTypeProfile<1, 2,
23 [SDTCisSameAs<0, 1>, SDTCisFP<0>, SDTCisInt<2>]
26 def AMDGPULdExpOp : SDTypeProfile<1, 2,
27 [SDTCisSameAs<0, 1>, SDTCisFP<0>, SDTCisInt<2>]
30 def AMDGPUFPClassOp : SDTypeProfile<1, 2,
31 [SDTCisInt<0>, SDTCisFP<1>, SDTCisInt<2>]
34 def AMDGPUDivScaleOp : SDTypeProfile<2, 3,
35 [SDTCisFP<0>, SDTCisInt<1>, SDTCisSameAs<0, 2>, SDTCisSameAs<0, 3>, SDTCisSameAs<0, 4>]
38 // float, float, float, vcc
39 def AMDGPUFmasOp : SDTypeProfile<1, 4,
40 [SDTCisFP<0>, SDTCisSameAs<0, 1>, SDTCisSameAs<0, 2>, SDTCisSameAs<0, 3>, SDTCisInt<4>]
43 //===----------------------------------------------------------------------===//
47 // This argument to this node is a dword address.
48 def AMDGPUdwordaddr : SDNode<"AMDGPUISD::DWORDADDR", SDTIntUnaryOp>;
50 def AMDGPUcos : SDNode<"AMDGPUISD::COS_HW", SDTFPUnaryOp>;
51 def AMDGPUsin : SDNode<"AMDGPUISD::SIN_HW", SDTFPUnaryOp>;
54 def AMDGPUfract : SDNode<"AMDGPUISD::FRACT", SDTFPUnaryOp>;
57 def AMDGPUrcp : SDNode<"AMDGPUISD::RCP", SDTFPUnaryOp>;
59 // out = 1.0 / sqrt(a)
60 def AMDGPUrsq : SDNode<"AMDGPUISD::RSQ", SDTFPUnaryOp>;
62 // out = 1.0 / sqrt(a)
63 def AMDGPUrsq_legacy : SDNode<"AMDGPUISD::RSQ_LEGACY", SDTFPUnaryOp>;
65 // out = 1.0 / sqrt(a) result clamped to +/- max_float.
66 def AMDGPUrsq_clamped : SDNode<"AMDGPUISD::RSQ_CLAMPED", SDTFPUnaryOp>;
68 def AMDGPUldexp : SDNode<"AMDGPUISD::LDEXP", AMDGPULdExpOp>;
70 def AMDGPUfp_class : SDNode<"AMDGPUISD::FP_CLASS", AMDGPUFPClassOp>;
72 // out = max(a, b) a and b are floats, where a nan comparison fails.
73 // This is not commutative because this gives the second operand:
74 // x < nan ? x : nan -> nan
75 // nan < x ? nan : x -> x
76 def AMDGPUfmax_legacy : SDNode<"AMDGPUISD::FMAX_LEGACY", SDTFPBinOp,
80 def AMDGPUclamp : SDNode<"AMDGPUISD::CLAMP", SDTFPTernaryOp, []>;
82 // out = max(a, b) a and b are signed ints
83 def AMDGPUsmax : SDNode<"AMDGPUISD::SMAX", SDTIntBinOp,
84 [SDNPCommutative, SDNPAssociative]
87 // out = max(a, b) a and b are unsigned ints
88 def AMDGPUumax : SDNode<"AMDGPUISD::UMAX", SDTIntBinOp,
89 [SDNPCommutative, SDNPAssociative]
92 // out = min(a, b) a and b are floats, where a nan comparison fails.
93 def AMDGPUfmin_legacy : SDNode<"AMDGPUISD::FMIN_LEGACY", SDTFPBinOp,
97 // FIXME: TableGen doesn't like commutative instructions with more
99 // out = max(a, b, c) a, b and c are floats
100 def AMDGPUfmax3 : SDNode<"AMDGPUISD::FMAX3", SDTFPTernaryOp,
101 [/*SDNPCommutative, SDNPAssociative*/]
104 // out = max(a, b, c) a, b, and c are signed ints
105 def AMDGPUsmax3 : SDNode<"AMDGPUISD::SMAX3", AMDGPUDTIntTernaryOp,
106 [/*SDNPCommutative, SDNPAssociative*/]
109 // out = max(a, b, c) a, b and c are unsigned ints
110 def AMDGPUumax3 : SDNode<"AMDGPUISD::UMAX3", AMDGPUDTIntTernaryOp,
111 [/*SDNPCommutative, SDNPAssociative*/]
114 // out = min(a, b, c) a, b and c are floats
115 def AMDGPUfmin3 : SDNode<"AMDGPUISD::FMIN3", SDTFPTernaryOp,
116 [/*SDNPCommutative, SDNPAssociative*/]
119 // out = min(a, b, c) a, b and c are signed ints
120 def AMDGPUsmin3 : SDNode<"AMDGPUISD::SMIN3", AMDGPUDTIntTernaryOp,
121 [/*SDNPCommutative, SDNPAssociative*/]
124 // out = min(a, b) a and b are unsigned ints
125 def AMDGPUumin3 : SDNode<"AMDGPUISD::UMIN3", AMDGPUDTIntTernaryOp,
126 [/*SDNPCommutative, SDNPAssociative*/]
129 // out = (src0 + src1 > 0xFFFFFFFF) ? 1 : 0
130 def AMDGPUcarry : SDNode<"AMDGPUISD::CARRY", SDTIntBinOp, []>;
132 // out = (src1 > src0) ? 1 : 0
133 def AMDGPUborrow : SDNode<"AMDGPUISD::BORROW", SDTIntBinOp, []>;
136 def AMDGPUcvt_f32_ubyte0 : SDNode<"AMDGPUISD::CVT_F32_UBYTE0",
138 def AMDGPUcvt_f32_ubyte1 : SDNode<"AMDGPUISD::CVT_F32_UBYTE1",
140 def AMDGPUcvt_f32_ubyte2 : SDNode<"AMDGPUISD::CVT_F32_UBYTE2",
142 def AMDGPUcvt_f32_ubyte3 : SDNode<"AMDGPUISD::CVT_F32_UBYTE3",
146 // urecip - This operation is a helper for integer division, it returns the
147 // result of 1 / a as a fractional unsigned integer.
148 // out = (2^32 / a) + e
149 // e is rounding error
150 def AMDGPUurecip : SDNode<"AMDGPUISD::URECIP", SDTIntUnaryOp>;
152 // Special case divide preop and flags.
153 def AMDGPUdiv_scale : SDNode<"AMDGPUISD::DIV_SCALE", AMDGPUDivScaleOp>;
155 // Special case divide FMA with scale and flags (src0 = Quotient,
156 // src1 = Denominator, src2 = Numerator).
157 def AMDGPUdiv_fmas : SDNode<"AMDGPUISD::DIV_FMAS", AMDGPUFmasOp>;
159 // Single or double precision division fixup.
160 // Special case divide fixup and flags(src0 = Quotient, src1 =
161 // Denominator, src2 = Numerator).
162 def AMDGPUdiv_fixup : SDNode<"AMDGPUISD::DIV_FIXUP", SDTFPTernaryOp>;
164 // Look Up 2.0 / pi src0 with segment select src1[4:0]
165 def AMDGPUtrig_preop : SDNode<"AMDGPUISD::TRIG_PREOP", AMDGPUTrigPreOp>;
167 def AMDGPUregister_load : SDNode<"AMDGPUISD::REGISTER_LOAD",
168 SDTypeProfile<1, 2, [SDTCisPtrTy<1>, SDTCisInt<2>]>,
169 [SDNPHasChain, SDNPMayLoad]>;
171 def AMDGPUregister_store : SDNode<"AMDGPUISD::REGISTER_STORE",
172 SDTypeProfile<0, 3, [SDTCisPtrTy<1>, SDTCisInt<2>]>,
173 [SDNPHasChain, SDNPMayStore]>;
175 // MSKOR instructions are atomic memory instructions used mainly for storing
176 // 8-bit and 16-bit values. The definition is:
178 // MSKOR(dst, mask, src) MEM[dst] = ((MEM[dst] & ~mask) | src)
180 // src0: vec4(src, 0, 0, mask)
181 // src1: dst - rat offset (aka pointer) in dwords
182 def AMDGPUstore_mskor : SDNode<"AMDGPUISD::STORE_MSKOR",
183 SDTypeProfile<0, 2, []>,
184 [SDNPHasChain, SDNPMayStore, SDNPMemOperand]>;
186 def AMDGPUround : SDNode<"ISD::FROUND",
187 SDTypeProfile<1, 1, [SDTCisFP<0>, SDTCisSameAs<0,1>]>>;
189 def AMDGPUbfe_u32 : SDNode<"AMDGPUISD::BFE_U32", AMDGPUDTIntTernaryOp>;
190 def AMDGPUbfe_i32 : SDNode<"AMDGPUISD::BFE_I32", AMDGPUDTIntTernaryOp>;
191 def AMDGPUbfi : SDNode<"AMDGPUISD::BFI", AMDGPUDTIntTernaryOp>;
192 def AMDGPUbfm : SDNode<"AMDGPUISD::BFM", SDTIntBinOp>;
194 def AMDGPUffbh_u32 : SDNode<"AMDGPUISD::FFBH_U32", SDTIntUnaryOp>;
196 // Signed and unsigned 24-bit mulitply. The highest 8-bits are ignore when
197 // performing the mulitply. The result is a 32-bit value.
198 def AMDGPUmul_u24 : SDNode<"AMDGPUISD::MUL_U24", SDTIntBinOp,
201 def AMDGPUmul_i24 : SDNode<"AMDGPUISD::MUL_I24", SDTIntBinOp,
205 def AMDGPUmad_u24 : SDNode<"AMDGPUISD::MAD_U24", AMDGPUDTIntTernaryOp,
208 def AMDGPUmad_i24 : SDNode<"AMDGPUISD::MAD_I24", AMDGPUDTIntTernaryOp,
212 def AMDGPUsendmsg : SDNode<"AMDGPUISD::SENDMSG",
213 SDTypeProfile<0, 1, [SDTCisInt<0>]>,
214 [SDNPHasChain, SDNPInGlue]>;
216 def AMDGPUinterp_mov : SDNode<"AMDGPUISD::INTERP_MOV",
217 SDTypeProfile<1, 3, [SDTCisFP<0>]>,
220 def AMDGPUinterp_p1 : SDNode<"AMDGPUISD::INTERP_P1",
221 SDTypeProfile<1, 3, [SDTCisFP<0>]>,
222 [SDNPInGlue, SDNPOutGlue]>;
224 def AMDGPUinterp_p2 : SDNode<"AMDGPUISD::INTERP_P2",
225 SDTypeProfile<1, 4, [SDTCisFP<0>]>,
228 //===----------------------------------------------------------------------===//
229 // Flow Control Profile Types
230 //===----------------------------------------------------------------------===//
231 // Branch instruction where second and third are basic blocks
232 def SDTIL_BRCond : SDTypeProfile<0, 2, [
236 //===----------------------------------------------------------------------===//
237 // Flow Control DAG Nodes
238 //===----------------------------------------------------------------------===//
239 def IL_brcond : SDNode<"AMDGPUISD::BRANCH_COND", SDTIL_BRCond, [SDNPHasChain]>;
241 //===----------------------------------------------------------------------===//
242 // Call/Return DAG Nodes
243 //===----------------------------------------------------------------------===//
244 def IL_retflag : SDNode<"AMDGPUISD::RET_FLAG", SDTNone,
245 [SDNPHasChain, SDNPOptInGlue]>;