summaryrefslogtreecommitdiff
path: root/lib/Target/AMDGPU/R600Intrinsics.td
blob: 9c81310d2ce25565b1ad3b690231cd19101ba260 (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
//===-- 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_load_input_position :
    Intrinsic<[llvm_float_ty], [llvm_i32_ty], [IntrReadMem]>;
  def int_R600_load_input_face :
    Intrinsic<[llvm_i1_ty], [llvm_i32_ty], [IntrReadMem]>;
}