summaryrefslogtreecommitdiff
path: root/lib/Target/R600/R600Intrinsics.td
blob: 3825bc4d3b0121207a3b4835932d7c6e26845934 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
//===-- R600Intrinsics.td - R600 Instrinsic defs -------*- tablegen -*-----===//
//
//                     The LLVM Compiler Infrastructure
//
// This file is distributed under the University of Illinois Open Source
// License. See LICENSE.TXT for details.
//
//===----------------------------------------------------------------------===//
//
// R600 Intrinsic Definitions
//
//===----------------------------------------------------------------------===//

let TargetPrefix = "R600", isTarget = 1 in {
  def int_R600_load_input : Intrinsic<[llvm_float_ty], [llvm_i32_ty], [IntrNoMem]>;
  def int_R600_load_input_perspective :
    Intrinsic<[llvm_float_ty], [llvm_i32_ty], [IntrReadMem]>;
  def int_R600_load_input_constant :
    Intrinsic<[llvm_float_ty], [llvm_i32_ty], [IntrReadMem]>;
  def int_R600_load_input_linear :
    Intrinsic<[llvm_float_ty], [llvm_i32_ty], [IntrReadMem]>;
  def int_R600_store_stream_output :
    Intrinsic<[], [llvm_float_ty, llvm_i32_ty, llvm_i32_ty], []>;
  def int_R600_store_pixel_color :
      Intrinsic<[], [llvm_float_ty, llvm_i32_ty], []>;
  def int_R600_store_pixel_depth :
      Intrinsic<[], [llvm_float_ty], []>;
  def int_R600_store_pixel_stencil :
      Intrinsic<[], [llvm_float_ty], []>;
  def int_R600_store_pixel_dummy :
      Intrinsic<[], [], []>;
}