mirror of
https://gitlab.freedesktop.org/mesa/mesa.git
synced 2026-05-05 13:58:04 +02:00
freedreno/ir3: immediately schedule meta instructions
The aren't real instructions, and don't change # of live values, so no point in them competing with real instructions. Signed-off-by: Rob Clark <robdclark@chromium.org> Reviewed-by: Eric Anholt <eric@anholt.net>
This commit is contained in:
parent
771d04c82d
commit
7bbf21e898
1 changed files with 3 additions and 0 deletions
|
|
@ -571,6 +571,9 @@ find_eligible_instr(struct ir3_sched_ctx *ctx, struct ir3_sched_notes *notes,
|
|||
if (!candidate)
|
||||
continue;
|
||||
|
||||
if (is_meta(candidate))
|
||||
return candidate;
|
||||
|
||||
deepest = MAX2(deepest, candidate->depth);
|
||||
}
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue