diff options
author | Samuel Pitoiset <[email protected]> | 2019-02-26 13:42:26 +0100 |
---|---|---|
committer | Samuel Pitoiset <[email protected]> | 2019-03-13 13:31:06 +0100 |
commit | 489dac0d21baf069cf0045e785330eb1b16094a4 (patch) | |
tree | 5ed4df91ec2b6a7d88a13e53315df87b6a89ff60 /src/amd/common/ac_llvm_build.h | |
parent | 56e04f67f906aea6101ba6081c5b0efcc25999cc (diff) |
ac: rework typed buffers loads for LLVM 7
Be more generic, this will be used by an upcoming series.
Signed-off-by: Samuel Pitoiset <[email protected]>
Reviewed-by: Bas Nieuwenhuizen <[email protected]>
Diffstat (limited to 'src/amd/common/ac_llvm_build.h')
-rw-r--r-- | src/amd/common/ac_llvm_build.h | 30 |
1 files changed, 15 insertions, 15 deletions
diff --git a/src/amd/common/ac_llvm_build.h b/src/amd/common/ac_llvm_build.h index fd5c4295abf..d746c864229 100644 --- a/src/amd/common/ac_llvm_build.h +++ b/src/amd/common/ac_llvm_build.h @@ -302,23 +302,23 @@ ac_build_tbuffer_load_short(struct ac_llvm_context *ctx, LLVMValueRef rsrc, LLVMValueRef vindex, LLVMValueRef voffset, - LLVMValueRef soffset, - LLVMValueRef immoffset, - LLVMValueRef glc); + LLVMValueRef soffset, + LLVMValueRef immoffset, + bool glc); LLVMValueRef -ac_build_llvm8_tbuffer_load(struct ac_llvm_context *ctx, - LLVMValueRef rsrc, - LLVMValueRef vindex, - LLVMValueRef voffset, - LLVMValueRef soffset, - unsigned num_channels, - unsigned dfmt, - unsigned nfmt, - bool glc, - bool slc, - bool can_speculate, - bool structurized); +ac_build_tbuffer_load(struct ac_llvm_context *ctx, + LLVMValueRef rsrc, + LLVMValueRef vindex, + LLVMValueRef voffset, + LLVMValueRef soffset, + LLVMValueRef immoffset, + unsigned num_channels, + unsigned dfmt, + unsigned nfmt, + bool glc, + bool slc, + bool can_speculate); LLVMValueRef ac_get_thread_id(struct ac_llvm_context *ctx); |