agx: Add nest field to IR

Needed to model control flow instructions.

Signed-off-by: Alyssa Rosenzweig <alyssa@collabora.com>
Part-of: <https://gitlab.freedesktop.org/mesa/mesa/-/merge_requests/11023>
This commit is contained in:
Alyssa Rosenzweig
2021-05-23 12:35:58 -04:00
committed by Alyssa Rosenzweig
parent 6f54385b0a
commit 21cf528e76
3 changed files with 13 additions and 0 deletions

View File

@@ -167,6 +167,15 @@ agx_print_instr(agx_instr *I, FILE *fp)
fprintf(fp, "slot %u", I->scoreboard);
}
if (info.immediates & AGX_IMMEDIATE_NEST) {
if (print_comma)
fprintf(fp, ", ");
else
print_comma = true;
fprintf(fp, "n=%u", I->nest);
}
fprintf(fp, "\n");
}