mirror of
https://gitlab.freedesktop.org/mesa/mesa.git
synced 2026-05-04 01:08:03 +02:00
v3d: instructions with the ldtlb and ldtlbu signals are tlb instructions
Reviewed-by: Eric Anholt <eric@anholt.net>
This commit is contained in:
parent
83a66e10de
commit
4793e2c888
1 changed files with 3 additions and 0 deletions
|
|
@ -128,6 +128,9 @@ add_write_dep(struct schedule_state *state,
|
|||
static bool
|
||||
qpu_inst_is_tlb(const struct v3d_qpu_instr *inst)
|
||||
{
|
||||
if (inst->sig.ldtlb || inst->sig.ldtlbu)
|
||||
return true;
|
||||
|
||||
if (inst->type != V3D_QPU_INSTR_TYPE_ALU)
|
||||
return false;
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue