Remove the uses of AArch64TargetMachine and AArch64Subtarget from
[oota-llvm.git] / lib / Target / R600 / AMDILIntrinsics.td
1 //===- AMDILIntrinsics.td - Defines AMDIL Intrinscs -*- 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 defines all of the amdil-specific intrinsics
11 //
12 //===---------------------------------------------------------------===//
13 //===--------------------------------------------------------------------===//
14 // Intrinsic classes
15 // Generic versions of the above classes but for Target specific intrinsics
16 // instead of SDNode patterns.
17 //===--------------------------------------------------------------------===//
18 let TargetPrefix = "AMDIL", isTarget = 1 in {
19      class VoidIntLong :
20           Intrinsic<[llvm_i64_ty], [], []>;
21      class VoidIntInt :
22           Intrinsic<[llvm_i32_ty], [], []>;
23      class VoidIntBool :
24           Intrinsic<[llvm_i32_ty], [], []>;
25      class UnaryIntInt :
26           Intrinsic<[llvm_anyint_ty], [LLVMMatchType<0>], [IntrNoMem]>;
27      class UnaryIntFloat :
28           Intrinsic<[llvm_anyfloat_ty], [LLVMMatchType<0>], [IntrNoMem]>;
29      class ConvertIntFTOI :
30           Intrinsic<[llvm_anyint_ty], [llvm_anyfloat_ty], [IntrNoMem]>;
31      class ConvertIntITOF :
32           Intrinsic<[llvm_anyfloat_ty], [llvm_anyint_ty], [IntrNoMem]>;
33      class UnaryIntNoRetInt :
34           Intrinsic<[], [llvm_anyint_ty], []>;
35      class UnaryIntNoRetFloat :
36           Intrinsic<[], [llvm_anyfloat_ty], []>;
37      class BinaryIntInt :
38           Intrinsic<[llvm_anyint_ty], [LLVMMatchType<0>, LLVMMatchType<0>], [IntrNoMem]>;
39      class BinaryIntFloat :
40           Intrinsic<[llvm_anyfloat_ty], [LLVMMatchType<0>, LLVMMatchType<0>], [IntrNoMem]>;
41      class BinaryIntNoRetInt :
42           Intrinsic<[], [llvm_anyint_ty, LLVMMatchType<0>], []>;
43      class BinaryIntNoRetFloat :
44           Intrinsic<[], [llvm_anyfloat_ty, LLVMMatchType<0>], []>;
45      class TernaryIntInt :
46           Intrinsic<[llvm_anyint_ty], [LLVMMatchType<0>,
47           LLVMMatchType<0>, LLVMMatchType<0>], [IntrNoMem]>;
48      class TernaryIntFloat :
49           Intrinsic<[llvm_anyfloat_ty], [LLVMMatchType<0>,
50           LLVMMatchType<0>, LLVMMatchType<0>], [IntrNoMem]>;
51      class QuaternaryIntInt :
52           Intrinsic<[llvm_anyint_ty], [LLVMMatchType<0>,
53           LLVMMatchType<0>, LLVMMatchType<0>, LLVMMatchType<0>], [IntrNoMem]>;
54      class UnaryAtomicInt :
55           Intrinsic<[llvm_i32_ty], [llvm_ptr_ty, llvm_i32_ty], [IntrReadWriteArgMem]>;
56      class BinaryAtomicInt :
57           Intrinsic<[llvm_i32_ty], [llvm_ptr_ty, llvm_i32_ty, llvm_i32_ty], [IntrReadWriteArgMem]>;
58      class TernaryAtomicInt :
59           Intrinsic<[llvm_i32_ty], [llvm_ptr_ty, llvm_i32_ty, llvm_i32_ty, llvm_i32_ty]>;
60      class UnaryAtomicIntNoRet :
61           Intrinsic<[], [llvm_ptr_ty, llvm_i32_ty], [IntrReadWriteArgMem]>;
62      class BinaryAtomicIntNoRet :
63           Intrinsic<[], [llvm_ptr_ty, llvm_i32_ty, llvm_i32_ty], [IntrReadWriteArgMem]>;
64      class TernaryAtomicIntNoRet :
65           Intrinsic<[], [llvm_ptr_ty, llvm_i32_ty, llvm_i32_ty, llvm_i32_ty], [IntrReadWriteArgMem]>;
66 }
67
68 let TargetPrefix = "AMDIL", isTarget = 1 in {
69   def int_AMDIL_abs : GCCBuiltin<"__amdil_abs">, UnaryIntInt;
70
71   def int_AMDIL_bit_reverse_u32 : GCCBuiltin<"__amdil_ubit_reverse">,
72           UnaryIntInt;
73   def int_AMDIL_bit_count_i32 : GCCBuiltin<"__amdil_count_bits">,
74           UnaryIntInt;
75   def int_AMDIL_bit_find_first_lo : GCCBuiltin<"__amdil_ffb_lo">,
76           UnaryIntInt;
77   def int_AMDIL_bit_find_first_hi : GCCBuiltin<"__amdil_ffb_hi">,
78           UnaryIntInt;
79   def int_AMDIL_bit_find_first_sgn : GCCBuiltin<"__amdil_ffb_signed">,
80           UnaryIntInt;
81   def int_AMDIL_media_bitalign : GCCBuiltin<"__amdil_bitalign">,
82                     TernaryIntInt;
83   def int_AMDIL_media_bytealign : GCCBuiltin<"__amdil_bytealign">,
84                     TernaryIntInt;
85   def int_AMDIL_bit_insert_u32 : GCCBuiltin<"__amdil_ubit_insert">,
86                     QuaternaryIntInt;
87   def int_AMDIL_bfi : GCCBuiltin<"__amdil_bfi">,
88       TernaryIntInt;
89   def int_AMDIL_bfm : GCCBuiltin<"__amdil_bfm">,
90       BinaryIntInt;
91   def int_AMDIL_mulhi_i32 : GCCBuiltin<"__amdil_imul_high">,
92           BinaryIntInt;
93   def int_AMDIL_mulhi_u32 : GCCBuiltin<"__amdil_umul_high">,
94           BinaryIntInt;
95   def int_AMDIL_mulhi24_i32 : GCCBuiltin<"__amdil_imul24_high">,
96           BinaryIntInt;
97   def int_AMDIL_mulhi24_u32 : GCCBuiltin<"__amdil_umul24_high">,
98           BinaryIntInt;
99   def int_AMDIL_carry_i32 : GCCBuiltin<"__amdil_carry">,
100           BinaryIntInt;
101   def int_AMDIL_borrow_i32 : GCCBuiltin<"__amdil_borrow">,
102           BinaryIntInt;
103   def int_AMDIL_min_i32 : GCCBuiltin<"__amdil_imin">,
104           BinaryIntInt;
105   def int_AMDIL_min_u32 : GCCBuiltin<"__amdil_umin">,
106           BinaryIntInt;
107   def int_AMDIL_min     : GCCBuiltin<"__amdil_min">,
108           BinaryIntFloat;
109   def int_AMDIL_max_i32 : GCCBuiltin<"__amdil_imax">,
110           BinaryIntInt;
111   def int_AMDIL_max_u32 : GCCBuiltin<"__amdil_umax">,
112           BinaryIntInt;
113   def int_AMDIL_max     : GCCBuiltin<"__amdil_max">,
114           BinaryIntFloat;
115   def int_AMDIL_media_lerp_u4 : GCCBuiltin<"__amdil_u4lerp">,
116           TernaryIntInt;
117   def int_AMDIL_media_sad : GCCBuiltin<"__amdil_sad">,
118           TernaryIntInt;
119   def int_AMDIL_media_sad_hi : GCCBuiltin<"__amdil_sadhi">,
120           TernaryIntInt;
121   def int_AMDIL_fraction : GCCBuiltin<"__amdil_fraction">,
122           UnaryIntFloat;
123   def int_AMDIL_clamp : GCCBuiltin<"__amdil_clamp">,
124           TernaryIntFloat;
125   def int_AMDIL_pireduce : GCCBuiltin<"__amdil_pireduce">,
126           UnaryIntFloat;
127   def int_AMDIL_round_nearest : GCCBuiltin<"__amdil_round_nearest">,
128           UnaryIntFloat;
129   def int_AMDIL_round_neginf : GCCBuiltin<"__amdil_round_neginf">,
130           UnaryIntFloat;
131   def int_AMDIL_round_zero : GCCBuiltin<"__amdil_round_zero">,
132           UnaryIntFloat;
133   def int_AMDIL_acos : GCCBuiltin<"__amdil_acos">,
134           UnaryIntFloat;
135   def int_AMDIL_atan : GCCBuiltin<"__amdil_atan">,
136           UnaryIntFloat;
137   def int_AMDIL_asin : GCCBuiltin<"__amdil_asin">,
138           UnaryIntFloat;
139   def int_AMDIL_cos : GCCBuiltin<"__amdil_cos">,
140           UnaryIntFloat;
141   def int_AMDIL_cos_vec : GCCBuiltin<"__amdil_cos_vec">,
142           UnaryIntFloat;
143   def int_AMDIL_tan : GCCBuiltin<"__amdil_tan">,
144           UnaryIntFloat;
145   def int_AMDIL_sin : GCCBuiltin<"__amdil_sin">,
146           UnaryIntFloat;
147   def int_AMDIL_sin_vec : GCCBuiltin<"__amdil_sin_vec">,
148           UnaryIntFloat;
149   def int_AMDIL_pow : GCCBuiltin<"__amdil_pow">, BinaryIntFloat;
150   def int_AMDIL_div : GCCBuiltin<"__amdil_div">, BinaryIntFloat;
151   def int_AMDIL_udiv : GCCBuiltin<"__amdil_udiv">, BinaryIntInt;
152   def int_AMDIL_sqrt: GCCBuiltin<"__amdil_sqrt">,
153           UnaryIntFloat;
154   def int_AMDIL_sqrt_vec: GCCBuiltin<"__amdil_sqrt_vec">,
155           UnaryIntFloat;
156   def int_AMDIL_exp : GCCBuiltin<"__amdil_exp">,
157           UnaryIntFloat;
158   def int_AMDIL_exp_vec : GCCBuiltin<"__amdil_exp_vec">,
159           UnaryIntFloat;
160   def int_AMDIL_exn : GCCBuiltin<"__amdil_exn">,
161           UnaryIntFloat;
162   def int_AMDIL_log_vec : GCCBuiltin<"__amdil_log_vec">,
163           UnaryIntFloat;
164   def int_AMDIL_ln : GCCBuiltin<"__amdil_ln">,
165           UnaryIntFloat;
166   def int_AMDIL_sign: GCCBuiltin<"__amdil_sign">,
167           UnaryIntFloat;
168   def int_AMDIL_fma: GCCBuiltin<"__amdil_fma">,
169           TernaryIntFloat;
170   def int_AMDIL_rsq : GCCBuiltin<"__amdil_rsq">,
171           UnaryIntFloat;
172   def int_AMDIL_rsq_vec : GCCBuiltin<"__amdil_rsq_vec">,
173           UnaryIntFloat;
174   def int_AMDIL_length : GCCBuiltin<"__amdil_length">,
175           UnaryIntFloat;
176   def int_AMDIL_lerp : GCCBuiltin<"__amdil_lerp">,
177           TernaryIntFloat;
178   def int_AMDIL_media_sad4 : GCCBuiltin<"__amdil_sad4">,
179       Intrinsic<[llvm_i32_ty], [llvm_v4i32_ty,
180            llvm_v4i32_ty, llvm_i32_ty], []>;
181
182   def int_AMDIL_frexp_f64 : GCCBuiltin<"__amdil_frexp">,
183         Intrinsic<[llvm_v2i64_ty], [llvm_double_ty], []>;
184  def int_AMDIL_ldexp : GCCBuiltin<"__amdil_ldexp">,
185     Intrinsic<[llvm_anyfloat_ty], [llvm_anyfloat_ty, llvm_anyint_ty], []>;
186   def int_AMDIL_drcp : GCCBuiltin<"__amdil_rcp">,
187       Intrinsic<[llvm_double_ty], [llvm_double_ty], []>;
188   def int_AMDIL_convert_f16_f32 : GCCBuiltin<"__amdil_half_to_float">,
189       ConvertIntITOF;
190   def int_AMDIL_convert_f32_f16 : GCCBuiltin<"__amdil_float_to_half">,
191       ConvertIntFTOI;
192   def int_AMDIL_convert_f32_i32_rpi : GCCBuiltin<"__amdil_float_to_int_rpi">,
193       ConvertIntFTOI;
194   def int_AMDIL_convert_f32_i32_flr : GCCBuiltin<"__amdil_float_to_int_flr">,
195       ConvertIntFTOI;
196   def int_AMDIL_convert_f32_f16_near : GCCBuiltin<"__amdil_float_to_half_near">,
197       ConvertIntFTOI;
198   def int_AMDIL_convert_f32_f16_neg_inf : GCCBuiltin<"__amdil_float_to_half_neg_inf">,
199       ConvertIntFTOI;
200   def int_AMDIL_convert_f32_f16_plus_inf : GCCBuiltin<"__amdil_float_to_half_plus_inf">,
201       ConvertIntFTOI;
202  def int_AMDIL_media_convert_f2v4u8 : GCCBuiltin<"__amdil_f_2_u4">,
203       Intrinsic<[llvm_i32_ty], [llvm_v4f32_ty], []>;
204   def int_AMDIL_media_unpack_byte_0 : GCCBuiltin<"__amdil_unpack_0">,
205       ConvertIntITOF;
206   def int_AMDIL_media_unpack_byte_1 : GCCBuiltin<"__amdil_unpack_1">,
207       ConvertIntITOF;
208   def int_AMDIL_media_unpack_byte_2 : GCCBuiltin<"__amdil_unpack_2">,
209       ConvertIntITOF;
210   def int_AMDIL_media_unpack_byte_3 : GCCBuiltin<"__amdil_unpack_3">,
211       ConvertIntITOF;
212   def int_AMDIL_dp2_add : GCCBuiltin<"__amdil_dp2_add">,
213         Intrinsic<[llvm_float_ty], [llvm_v2f32_ty,
214           llvm_v2f32_ty, llvm_float_ty], []>;
215   def int_AMDIL_dp2 : GCCBuiltin<"__amdil_dp2">,
216         Intrinsic<[llvm_float_ty], [llvm_v2f32_ty,
217           llvm_v2f32_ty], []>;
218   def int_AMDIL_dp3 : GCCBuiltin<"__amdil_dp3">,
219         Intrinsic<[llvm_float_ty], [llvm_v4f32_ty,
220           llvm_v4f32_ty], []>;
221   def int_AMDIL_dp4 : GCCBuiltin<"__amdil_dp4">,
222         Intrinsic<[llvm_float_ty], [llvm_v4f32_ty,
223           llvm_v4f32_ty], []>;
224 }