R600: Mostly remove remaining AMDIL intrinsics.
[oota-llvm.git] / lib / Target / R600 / AMDGPUInstrInfo.td
1 //===-- AMDGPUInstrInfo.td - AMDGPU DAG nodes --------------*- tablegen -*-===//
2 //
3 //                     The LLVM Compiler Infrastructure
4 //
5 // This file is distributed under the University of Illinois Open Source
6 // License. See LICENSE.TXT for details.
7 //
8 //===----------------------------------------------------------------------===//
9 //
10 // This file contains DAG node defintions for the AMDGPU target.
11 //
12 //===----------------------------------------------------------------------===//
13
14 //===----------------------------------------------------------------------===//
15 // AMDGPU DAG Profiles
16 //===----------------------------------------------------------------------===//
17
18 def AMDGPUDTIntTernaryOp : SDTypeProfile<1, 3, [
19   SDTCisSameAs<0, 1>, SDTCisSameAs<0, 2>, SDTCisInt<0>, SDTCisInt<3>
20 ]>;
21
22 //===----------------------------------------------------------------------===//
23 // AMDGPU DAG Nodes
24 //
25
26 // This argument to this node is a dword address.
27 def AMDGPUdwordaddr : SDNode<"AMDGPUISD::DWORDADDR", SDTIntUnaryOp>;
28
29 // out = a - floor(a)
30 def AMDGPUfract : SDNode<"AMDGPUISD::FRACT", SDTFPUnaryOp>;
31
32 // out = max(a, b) a and b are floats
33 def AMDGPUfmax : SDNode<"AMDGPUISD::FMAX", SDTFPBinOp,
34   [SDNPCommutative, SDNPAssociative]
35 >;
36
37 def AMDGPUclamp : SDNode<"AMDGPUISD::CLAMP", SDTFPTernaryOp, []>;
38
39 // out = max(a, b) a and b are signed ints
40 def AMDGPUsmax : SDNode<"AMDGPUISD::SMAX", SDTIntBinOp,
41   [SDNPCommutative, SDNPAssociative]
42 >;
43
44 // out = max(a, b) a and b are unsigned ints
45 def AMDGPUumax : SDNode<"AMDGPUISD::UMAX", SDTIntBinOp,
46   [SDNPCommutative, SDNPAssociative]
47 >;
48
49 // out = min(a, b) a and b are floats
50 def AMDGPUfmin : SDNode<"AMDGPUISD::FMIN", SDTFPBinOp,
51   [SDNPCommutative, SDNPAssociative]
52 >;
53
54 // out = min(a, b) a snd b are signed ints
55 def AMDGPUsmin : SDNode<"AMDGPUISD::SMIN", SDTIntBinOp,
56   [SDNPCommutative, SDNPAssociative]
57 >;
58
59 // out = min(a, b) a and b are unsigned ints
60 def AMDGPUumin : SDNode<"AMDGPUISD::UMIN", SDTIntBinOp,
61   [SDNPCommutative, SDNPAssociative]
62 >;
63
64
65 def AMDGPUcvt_f32_ubyte0 : SDNode<"AMDGPUISD::CVT_F32_UBYTE0",
66   SDTIntToFPOp, []>;
67 def AMDGPUcvt_f32_ubyte1 : SDNode<"AMDGPUISD::CVT_F32_UBYTE1",
68   SDTIntToFPOp, []>;
69 def AMDGPUcvt_f32_ubyte2 : SDNode<"AMDGPUISD::CVT_F32_UBYTE2",
70   SDTIntToFPOp, []>;
71 def AMDGPUcvt_f32_ubyte3 : SDNode<"AMDGPUISD::CVT_F32_UBYTE3",
72   SDTIntToFPOp, []>;
73
74
75 // urecip - This operation is a helper for integer division, it returns the
76 // result of 1 / a as a fractional unsigned integer.
77 // out = (2^32 / a) + e
78 // e is rounding error
79 def AMDGPUurecip : SDNode<"AMDGPUISD::URECIP", SDTIntUnaryOp>;
80
81 def AMDGPUregister_load : SDNode<"AMDGPUISD::REGISTER_LOAD",
82                           SDTypeProfile<1, 2, [SDTCisPtrTy<1>, SDTCisInt<2>]>,
83                           [SDNPHasChain, SDNPMayLoad]>;
84
85 def AMDGPUregister_store : SDNode<"AMDGPUISD::REGISTER_STORE",
86                            SDTypeProfile<0, 3, [SDTCisPtrTy<1>, SDTCisInt<2>]>,
87                            [SDNPHasChain, SDNPMayStore]>;
88
89 // MSKOR instructions are atomic memory instructions used mainly for storing
90 // 8-bit and 16-bit values.  The definition is:
91 //
92 // MSKOR(dst, mask, src) MEM[dst] = ((MEM[dst] & ~mask) | src)
93 //
94 // src0: vec4(src, 0, 0, mask)
95 // src1: dst - rat offset (aka pointer) in dwords  
96 def AMDGPUstore_mskor : SDNode<"AMDGPUISD::STORE_MSKOR",
97                         SDTypeProfile<0, 2, []>,
98                         [SDNPHasChain, SDNPMayStore, SDNPMemOperand]>;
99
100 def AMDGPUround : SDNode<"ISD::FROUND",
101                          SDTypeProfile<1, 1, [SDTCisFP<0>, SDTCisSameAs<0,1>]>>;
102
103 def AMDGPUbfe_u32 : SDNode<"AMDGPUISD::BFE_U32", AMDGPUDTIntTernaryOp>;
104 def AMDGPUbfe_i32 : SDNode<"AMDGPUISD::BFE_I32", AMDGPUDTIntTernaryOp>;
105 def AMDGPUbfi : SDNode<"AMDGPUISD::BFI", AMDGPUDTIntTernaryOp>;
106 def AMDGPUbfm : SDNode<"AMDGPUISD::BFM", SDTIntBinOp>;
107
108 // Signed and unsigned 24-bit mulitply.  The highest 8-bits are ignore when
109 // performing the mulitply.  The result is a 32-bit value.
110 def AMDGPUmul_u24 : SDNode<"AMDGPUISD::MUL_U24", SDTIntBinOp,
111   [SDNPCommutative]
112 >;
113 def AMDGPUmul_i24 : SDNode<"AMDGPUISD::MUL_I24", SDTIntBinOp,
114   [SDNPCommutative]
115 >;
116
117 def AMDGPUmad_u24 : SDNode<"AMDGPUISD::MAD_U24", AMDGPUDTIntTernaryOp,
118   []
119 >;
120 def AMDGPUmad_i24 : SDNode<"AMDGPUISD::MAD_I24", AMDGPUDTIntTernaryOp,
121   []
122 >;