mirror of
https://gitlab.freedesktop.org/mesa/mesa.git
synced 2026-06-10 05:38:18 +02:00
intel/aubinator_error_decode: Decode more registers.
Decode SC_INSTDONE, ROW_INSTDONE and SAMPLER_INSTDONE. Reviewed-by: Lionel Landwerlin <lionel.g.landwerlin@intel.com>
This commit is contained in:
parent
70d7c70e8d
commit
27581d18bc
1 changed files with 12 additions and 0 deletions
|
|
@ -540,6 +540,18 @@ read_data_file(FILE *file)
|
|||
print_register(spec, reg_name, reg);
|
||||
}
|
||||
|
||||
matched = sscanf(line, " SC_INSTDONE: 0x%08x\n", ®);
|
||||
if (matched == 1)
|
||||
print_register(spec, "SC_INSTDONE", reg);
|
||||
|
||||
matched = sscanf(line, " SAMPLER_INSTDONE[%*d][%*d]: 0x%08x\n", ®);
|
||||
if (matched == 1)
|
||||
print_register(spec, "SAMPLER_INSTDONE", reg);
|
||||
|
||||
matched = sscanf(line, " ROW_INSTDONE[%*d][%*d]: 0x%08x\n", ®);
|
||||
if (matched == 1)
|
||||
print_register(spec, "ROW_INSTDONE", reg);
|
||||
|
||||
matched = sscanf(line, " INSTDONE1: 0x%08x\n", ®);
|
||||
if (matched == 1)
|
||||
print_register(spec, "INSTDONE_1", reg);
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue