mirror of
https://gitlab.freedesktop.org/mesa/mesa.git
synced 2026-05-05 05:18:08 +02:00
i965/disasm: Disassemble tdr and tm registers properly.
Reviewed-by: Kenneth Graunke <kenneth@whitecape.org>
This commit is contained in:
parent
cd1b0f04be
commit
937ddb419d
1 changed files with 6 additions and 0 deletions
|
|
@ -697,6 +697,12 @@ reg(FILE *file, unsigned _reg_file, unsigned _reg_nr)
|
|||
string(file, "ip");
|
||||
return -1;
|
||||
break;
|
||||
case BRW_ARF_TDR:
|
||||
format(file, "tdr0");
|
||||
return -1;
|
||||
case BRW_ARF_TIMESTAMP:
|
||||
format(file, "tm%d", _reg_nr & 0x0f);
|
||||
break;
|
||||
default:
|
||||
format(file, "ARF%d", _reg_nr);
|
||||
break;
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue