From: Rhys Perry Date: Mon, 14 Oct 2019 16:19:19 +0000 (+0100) Subject: aco: add a few missing checks in value numbering X-Git-Url: https://git.libre-soc.org/?a=commitdiff_plain;h=57c2cfb6080bce2222ef5f5ca72c444e878411bc;p=mesa.git aco: add a few missing checks in value numbering Signed-off-by: Rhys Perry Reviewed-by: Daniel Schürmann --- diff --git a/src/amd/compiler/aco_opt_value_numbering.cpp b/src/amd/compiler/aco_opt_value_numbering.cpp index e19f125e29f..fe094ebb219 100644 --- a/src/amd/compiler/aco_opt_value_numbering.cpp +++ b/src/amd/compiler/aco_opt_value_numbering.cpp @@ -191,7 +191,9 @@ struct InstrPred { /* this is fine since they are only used for vertex input fetches */ MTBUF_instruction* aM = static_cast(a); MTBUF_instruction* bM = static_cast(b); - return aM->dfmt == bM->dfmt && + return aM->can_reorder == bM->can_reorder && + aM->barrier == bM->barrier && + aM->dfmt == bM->dfmt && aM->nfmt == bM->nfmt && aM->offset == bM->offset && aM->offen == bM->offen && @@ -221,6 +223,7 @@ struct InstrPred { MIMG_instruction* aM = static_cast(a); MIMG_instruction* bM = static_cast(b); return aM->can_reorder && bM->can_reorder && + aM->barrier == bM->barrier && aM->dmask == bM->dmask && aM->unrm == bM->unrm && aM->glc == bM->glc &&