2012-12-12 05:25:42 +08:00
|
|
|
//===-- 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]>;
|
2013-01-24 05:39:49 +08:00
|
|
|
def int_R600_store_swizzle :
|
|
|
|
Intrinsic<[], [llvm_v4f32_ty, llvm_i32_ty, llvm_i32_ty], []>;
|
2012-12-12 05:25:42 +08:00
|
|
|
def int_R600_store_stream_output :
|
2013-01-24 05:39:47 +08:00
|
|
|
Intrinsic<[], [llvm_v4f32_ty, llvm_i32_ty, llvm_i32_ty, llvm_i32_ty], []>;
|
2012-12-12 05:25:42 +08:00
|
|
|
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<[], [], []>;
|
|
|
|
}
|