R600/SI: implement SI.load.const intrinsic
[oota-llvm.git] / lib / Target / R600 / SIIntrinsics.td
1 //===-- SIIntrinsics.td - SI Intrinsic defs ----------------*- 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 // SI Intrinsic Definitions
11 //
12 //===----------------------------------------------------------------------===//
13
14
15 let TargetPrefix = "SI", isTarget = 1 in {
16
17   def int_SI_packf16 : Intrinsic <[llvm_i32_ty], [llvm_float_ty, llvm_float_ty], [IntrNoMem]>;
18   def int_SI_export : Intrinsic <[], [llvm_i32_ty, llvm_i32_ty, llvm_i32_ty, llvm_i32_ty, llvm_i32_ty, llvm_float_ty, llvm_float_ty, llvm_float_ty, llvm_float_ty], []>;
19   def int_SI_load_const : Intrinsic <[llvm_float_ty], [llvm_v16i8_ty, llvm_i32_ty], [IntrReadMem]>;
20   def int_SI_vs_load_input : Intrinsic <[llvm_v4f32_ty], [llvm_v16i8_ty, llvm_i16_ty, llvm_i32_ty], [IntrReadMem]> ;
21   def int_SI_wqm : Intrinsic <[], [], []>;
22
23   class Sample : Intrinsic <[llvm_v4f32_ty], [llvm_i32_ty, llvm_anyvector_ty, llvm_v32i8_ty, llvm_v16i8_ty, llvm_i32_ty], [IntrReadMem]>;
24
25   def int_SI_sample : Sample;
26   def int_SI_sampleb : Sample;
27   def int_SI_samplel : Sample;
28
29   /* Interpolation Intrinsics */
30
31   def int_SI_fs_constant : Intrinsic <[llvm_float_ty], [llvm_i32_ty, llvm_i32_ty, llvm_i32_ty], [IntrReadMem]>;
32   def int_SI_fs_interp : Intrinsic <[llvm_float_ty], [llvm_i32_ty, llvm_i32_ty, llvm_i32_ty, llvm_v2i32_ty], [IntrReadMem]>;
33
34   /* Control flow Intrinsics */
35
36   def int_SI_if : Intrinsic<[llvm_i64_ty], [llvm_i1_ty, llvm_empty_ty], []>;
37   def int_SI_else : Intrinsic<[llvm_i64_ty], [llvm_i64_ty, llvm_empty_ty], []>;
38   def int_SI_break : Intrinsic<[llvm_i64_ty], [llvm_i64_ty], []>;
39   def int_SI_if_break : Intrinsic<[llvm_i64_ty], [llvm_i1_ty, llvm_i64_ty], []>;
40   def int_SI_else_break : Intrinsic<[llvm_i64_ty], [llvm_i64_ty, llvm_i64_ty], []>;
41   def int_SI_loop : Intrinsic<[], [llvm_i64_ty, llvm_empty_ty], []>;
42   def int_SI_end_cf : Intrinsic<[], [llvm_i64_ty], []>;
43 }