OSDN Git Service

R600/SI: rework input interpolation v2
[android-x86/external-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   /* XXX: We may need a seperate intrinsic here for loading integer values */
20   def int_SI_load_const : Intrinsic <[llvm_float_ty], [llvm_i64_ty, llvm_i32_ty], []>;
21   def int_SI_vs_load_input : Intrinsic <[llvm_v4f32_ty], [llvm_v16i8_ty, llvm_i16_ty, llvm_i32_ty], [IntrReadMem]> ;
22   def int_SI_wqm : Intrinsic <[], [], []>;
23
24   class Sample : Intrinsic <[llvm_v4f32_ty], [llvm_i32_ty, llvm_anyvector_ty, llvm_v32i8_ty, llvm_v16i8_ty, llvm_i32_ty], [IntrReadMem]>;
25
26   def int_SI_sample : Sample;
27   def int_SI_sampleb : Sample;
28   def int_SI_samplel : Sample;
29
30   /* Interpolation Intrinsics */
31
32   def int_SI_fs_constant : Intrinsic <[llvm_float_ty], [llvm_i32_ty, llvm_i32_ty, llvm_i32_ty], [IntrReadMem]>;
33   def int_SI_fs_interp : Intrinsic <[llvm_float_ty], [llvm_i32_ty, llvm_i32_ty, llvm_i32_ty, llvm_v2i32_ty], [IntrReadMem]>;
34
35   /* Control flow Intrinsics */
36
37   def int_SI_if : Intrinsic<[llvm_i64_ty], [llvm_i1_ty, llvm_empty_ty], []>;
38   def int_SI_else : Intrinsic<[llvm_i64_ty], [llvm_i64_ty, llvm_empty_ty], []>;
39   def int_SI_break : Intrinsic<[llvm_i64_ty], [llvm_i64_ty], []>;
40   def int_SI_if_break : Intrinsic<[llvm_i64_ty], [llvm_i1_ty, llvm_i64_ty], []>;
41   def int_SI_else_break : Intrinsic<[llvm_i64_ty], [llvm_i64_ty, llvm_i64_ty], []>;
42   def int_SI_loop : Intrinsic<[], [llvm_i64_ty, llvm_empty_ty], []>;
43   def int_SI_end_cf : Intrinsic<[], [llvm_i64_ty], []>;
44 }