R600: Fix formatting of intrinsic definitions.
[oota-llvm.git] / include / llvm / IR / IntrinsicsR600.td
1 //===- IntrinsicsR600.td - Defines R600 intrinsics ---------*- 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 R600-specific intrinsics.
11 //
12 //===----------------------------------------------------------------------===//
13
14 let TargetPrefix = "r600" in {
15
16 class R600ReadPreloadRegisterIntrinsic<string name>
17   : Intrinsic<[llvm_i32_ty], [], [IntrNoMem]>,
18     GCCBuiltin<name>;
19
20 multiclass R600ReadPreloadRegisterIntrinsic_xyz<string prefix> {
21   def _x : R600ReadPreloadRegisterIntrinsic<!strconcat(prefix, "_x")>;
22   def _y : R600ReadPreloadRegisterIntrinsic<!strconcat(prefix, "_y")>;
23   def _z : R600ReadPreloadRegisterIntrinsic<!strconcat(prefix, "_z")>;
24 }
25
26 defm int_r600_read_global_size : R600ReadPreloadRegisterIntrinsic_xyz <
27                                        "__builtin_r600_read_global_size">;
28 defm int_r600_read_local_size : R600ReadPreloadRegisterIntrinsic_xyz <
29                                        "__builtin_r600_read_local_size">;
30 defm int_r600_read_ngroups : R600ReadPreloadRegisterIntrinsic_xyz <
31                                        "__builtin_r600_read_ngroups">;
32 defm int_r600_read_tgid : R600ReadPreloadRegisterIntrinsic_xyz <
33                                        "__builtin_r600_read_tgid">;
34 defm int_r600_read_tidig : R600ReadPreloadRegisterIntrinsic_xyz <
35                                        "__builtin_r600_read_tidig">;
36
37 } // End TargetPrefix = "r600"
38
39 let TargetPrefix = "AMDGPU" in {
40 def int_AMDGPU_div_scale : GCCBuiltin<"__builtin_amdgpu_div_scale">,
41   Intrinsic<[llvm_anyfloat_ty, llvm_i1_ty],
42             [LLVMMatchType<0>, LLVMMatchType<0>], [IntrNoMem]>;
43
44 def int_AMDGPU_div_fmas : GCCBuiltin<"__builtin_amdgpu_div_fmas">,
45   Intrinsic<[llvm_anyfloat_ty],
46             [LLVMMatchType<0>, LLVMMatchType<0>, LLVMMatchType<0>],
47             [IntrNoMem]>;
48
49 def int_AMDGPU_div_fixup : GCCBuiltin<"__builtin_amdgpu_div_fixup">,
50   Intrinsic<[llvm_anyfloat_ty],
51             [LLVMMatchType<0>, LLVMMatchType<0>, LLVMMatchType<0>],
52             [IntrNoMem]>;
53
54 def int_AMDGPU_trig_preop : GCCBuiltin<"__builtin_amdgpu_trig_preop">,
55   Intrinsic<[llvm_anyfloat_ty], [LLVMMatchType<0>, llvm_i32_ty],
56             [IntrNoMem]>;
57
58 def int_AMDGPU_rcp : GCCBuiltin<"__builtin_amdgpu_rcp">,
59   Intrinsic<[llvm_anyfloat_ty], [LLVMMatchType<0>], [IntrNoMem]>;
60
61 def int_AMDGPU_rsq : GCCBuiltin<"__builtin_amdgpu_rsq">,
62   Intrinsic<[llvm_anyfloat_ty], [LLVMMatchType<0>], [IntrNoMem]>;
63
64 } // End TargetPrefix = "AMDGPU"