mirror of
https://github.com/c64scene-ar/llvm-6502.git
synced 2025-04-11 00:39:36 +00:00
R600/SI: Take target parameter for sample intrinsics.
Patch by: Michel Dänzer Reviewed-by: Tom Stellard <thomas.stellard@amd.com> Reviewed-by: Christian König <christian.koenig@amd.com> Signed-off-by: Michel Dänzer <michel.daenzer@amd.com> git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@173052 91177308-0d34-0410-b5e6-96231b3b80d8
This commit is contained in:
parent
c0e01ddda0
commit
ca0e340f79
lib/Target/R600
@ -1186,21 +1186,21 @@ def : Pat <
|
||||
|
||||
/* int_SI_sample */
|
||||
def : Pat <
|
||||
(int_SI_sample imm:$writemask, VReg_128:$coord, SReg_256:$rsrc, SReg_128:$sampler),
|
||||
(int_SI_sample imm:$writemask, VReg_128:$coord, SReg_256:$rsrc, SReg_128:$sampler, imm),
|
||||
(IMAGE_SAMPLE imm:$writemask, 0, 0, 0, 0, 0, 0, 0, VReg_128:$coord,
|
||||
SReg_256:$rsrc, SReg_128:$sampler)
|
||||
>;
|
||||
|
||||
/* int_SI_sample_lod */
|
||||
def : Pat <
|
||||
(int_SI_sample_lod imm:$writemask, VReg_128:$coord, SReg_256:$rsrc, SReg_128:$sampler),
|
||||
(int_SI_sample_lod imm:$writemask, VReg_128:$coord, SReg_256:$rsrc, SReg_128:$sampler, imm),
|
||||
(IMAGE_SAMPLE_L imm:$writemask, 0, 0, 0, 0, 0, 0, 0, VReg_128:$coord,
|
||||
SReg_256:$rsrc, SReg_128:$sampler)
|
||||
>;
|
||||
|
||||
/* int_SI_sample_bias */
|
||||
def : Pat <
|
||||
(int_SI_sample_bias imm:$writemask, VReg_128:$coord, SReg_256:$rsrc, SReg_128:$sampler),
|
||||
(int_SI_sample_bias imm:$writemask, VReg_128:$coord, SReg_256:$rsrc, SReg_128:$sampler, imm),
|
||||
(IMAGE_SAMPLE_B imm:$writemask, 0, 0, 0, 0, 0, 0, 0, VReg_128:$coord,
|
||||
SReg_256:$rsrc, SReg_128:$sampler)
|
||||
>;
|
||||
|
@ -22,7 +22,7 @@ let TargetPrefix = "SI", isTarget = 1 in {
|
||||
def int_SI_vs_load_input : Intrinsic <[llvm_v4f32_ty], [llvm_v4i32_ty, llvm_i16_ty, llvm_i32_ty], [IntrReadMem]> ;
|
||||
def int_SI_wqm : Intrinsic <[], [], []>;
|
||||
|
||||
class Sample : Intrinsic <[llvm_v4f32_ty], [llvm_i32_ty, llvm_v4f32_ty, llvm_v8i32_ty, llvm_v4i32_ty], [IntrReadMem]>;
|
||||
class Sample : Intrinsic <[llvm_v4f32_ty], [llvm_i32_ty, llvm_v4f32_ty, llvm_v8i32_ty, llvm_v4i32_ty, llvm_i32_ty], [IntrReadMem]>;
|
||||
|
||||
def int_SI_sample : Sample;
|
||||
def int_SI_sample_bias : Sample;
|
||||
|
Loading…
x
Reference in New Issue
Block a user