From 1bbb64f300f66fbb292078072f89f04231ffd541 Mon Sep 17 00:00:00 2001 From: Rhys Perry Date: Fri, 24 Jul 2020 15:49:43 +0100 Subject: [PATCH] aco: add missing add_to_hazard_query MIME-Version: 1.0 Content-Type: text/plain; charset=utf8 Content-Transfer-Encoding: 8bit Signed-off-by: Rhys Perry Reviewed-by: Daniel Schürmann Part-of: --- src/amd/compiler/aco_scheduler.cpp | 3 +++ 1 file changed, 3 insertions(+) diff --git a/src/amd/compiler/aco_scheduler.cpp b/src/amd/compiler/aco_scheduler.cpp index cb22491bf64..d837059cfd4 100644 --- a/src/amd/compiler/aco_scheduler.cpp +++ b/src/amd/compiler/aco_scheduler.cpp @@ -701,6 +701,7 @@ void schedule_VMEM(sched_ctx& ctx, Block* block, continue; } + Instruction *candidate_ptr = candidate.get(); MoveResult res = ctx.mv.downwards_move(part_of_clause); if (res == move_fail_ssa || res == move_fail_rar) { add_to_hazard_query(&indep_hq, candidate.get()); @@ -710,6 +711,8 @@ void schedule_VMEM(sched_ctx& ctx, Block* block, } else if (res == move_fail_pressure) { break; } + if (part_of_clause) + add_to_hazard_query(&indep_hq, candidate_ptr); k++; if (candidate_idx < ctx.last_SMEM_dep_idx) ctx.last_SMEM_stall++; -- 2.30.2