diff options
author | Pierre-Eric Pelloux-Prayer <[email protected]> | 2020-03-05 11:15:57 +0100 |
---|---|---|
committer | Pierre-Eric Pelloux-Prayer <[email protected]> | 2020-03-06 11:35:12 +0100 |
commit | 771f16cf6166a3911d374c3de6c19687605f1fef (patch) | |
tree | 47c5aec9b9a81e17002485f83649f3fcc195e1c0 /src/amd | |
parent | 913d2dcd231ed9c744970875883c185090389ea7 (diff) |
radeonsi: remove AMD_DEBUG=sisched option
sisched is not maintained anymore in LLVM.
Reviewed-by: Marek Olšák <[email protected]>
Reviewed-by: Samuel Pitoiset <[email protected]>
Tested-by: Marge Bot <https://gitlab.freedesktop.org/mesa/mesa/-/merge_requests/4059>
Part-of: <https://gitlab.freedesktop.org/mesa/mesa/-/merge_requests/4059>
Diffstat (limited to 'src/amd')
-rw-r--r-- | src/amd/llvm/ac_llvm_util.c | 3 | ||||
-rw-r--r-- | src/amd/llvm/ac_llvm_util.h | 17 |
2 files changed, 9 insertions, 11 deletions
diff --git a/src/amd/llvm/ac_llvm_util.c b/src/amd/llvm/ac_llvm_util.c index ddc8fee839b..5cdb51242b2 100644 --- a/src/amd/llvm/ac_llvm_util.c +++ b/src/amd/llvm/ac_llvm_util.c @@ -169,10 +169,9 @@ static LLVMTargetMachineRef ac_create_target_machine(enum radeon_family family, LLVMTargetRef target = ac_get_llvm_target(triple); snprintf(features, sizeof(features), - "+DumpCode,-fp32-denormals,+fp64-denormals%s%s%s%s%s%s", + "+DumpCode,-fp32-denormals,+fp64-denormals%s%s%s%s%s", family >= CHIP_NAVI10 && !(tm_options & AC_TM_WAVE32) ? ",+wavefrontsize64,-wavefrontsize32" : "", - tm_options & AC_TM_SISCHED ? ",+si-scheduler" : "", tm_options & AC_TM_FORCE_ENABLE_XNACK ? ",+xnack" : "", tm_options & AC_TM_FORCE_DISABLE_XNACK ? ",-xnack" : "", tm_options & AC_TM_PROMOTE_ALLOCA_TO_SCRATCH ? ",-promote-alloca" : "", diff --git a/src/amd/llvm/ac_llvm_util.h b/src/amd/llvm/ac_llvm_util.h index de4ccfb2b99..00372476d8e 100644 --- a/src/amd/llvm/ac_llvm_util.h +++ b/src/amd/llvm/ac_llvm_util.h @@ -58,15 +58,14 @@ enum ac_func_attr { enum ac_target_machine_options { AC_TM_SUPPORTS_SPILL = (1 << 0), - AC_TM_SISCHED = (1 << 1), - AC_TM_FORCE_ENABLE_XNACK = (1 << 2), - AC_TM_FORCE_DISABLE_XNACK = (1 << 3), - AC_TM_PROMOTE_ALLOCA_TO_SCRATCH = (1 << 4), - AC_TM_CHECK_IR = (1 << 5), - AC_TM_ENABLE_GLOBAL_ISEL = (1 << 6), - AC_TM_CREATE_LOW_OPT = (1 << 7), - AC_TM_NO_LOAD_STORE_OPT = (1 << 8), - AC_TM_WAVE32 = (1 << 9), + AC_TM_FORCE_ENABLE_XNACK = (1 << 1), + AC_TM_FORCE_DISABLE_XNACK = (1 << 2), + AC_TM_PROMOTE_ALLOCA_TO_SCRATCH = (1 << 3), + AC_TM_CHECK_IR = (1 << 4), + AC_TM_ENABLE_GLOBAL_ISEL = (1 << 5), + AC_TM_CREATE_LOW_OPT = (1 << 6), + AC_TM_NO_LOAD_STORE_OPT = (1 << 7), + AC_TM_WAVE32 = (1 << 8), }; enum ac_float_mode { |