mirror of
https://gitlab.freedesktop.org/mesa/mesa.git
synced 2026-05-07 17:58:26 +02:00
nv50: fix can_load check for 3rd source
This commit is contained in:
parent
6b14a3eb19
commit
6997da9f3c
1 changed files with 5 additions and 7 deletions
|
|
@ -112,13 +112,11 @@ nv50_nvi_can_load(struct nv_instruction *nvi, int s, struct nv_value *value)
|
|||
if (s == 0 && (value->reg.file == NV_FILE_MEM_S ||
|
||||
value->reg.file == NV_FILE_MEM_P))
|
||||
return TRUE;
|
||||
if (s == 1 &&
|
||||
value->reg.file >= NV_FILE_MEM_C(0) &&
|
||||
value->reg.file <= NV_FILE_MEM_C(15))
|
||||
return TRUE;
|
||||
if (s == 2 && nvi->src[1]->value->reg.file == NV_FILE_GPR)
|
||||
return TRUE;
|
||||
return FALSE;
|
||||
if (value->reg.file < NV_FILE_MEM_C(0) ||
|
||||
value->reg.file > NV_FILE_MEM_C(15))
|
||||
return FALSE;
|
||||
return (s == 1) ||
|
||||
((s == 2) && (nvi->src[1]->value->reg.file == NV_FILE_GPR));
|
||||
case NV_OP_MOV:
|
||||
assert(s == 0);
|
||||
return /* TRUE */ FALSE; /* don't turn MOVs into loads */
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue