pan/bi: Link clauses back to their blocks

Signed-off-by: Alyssa Rosenzweig <alyssa.rosenzweig@collabora.com>
Part-of: <https://gitlab.freedesktop.org/mesa/mesa/-/merge_requests/5260>
This commit is contained in:
Alyssa Rosenzweig 2020-05-28 13:48:46 -04:00 committed by Marge Bot
parent 9c32956750
commit 64bedbfa67
2 changed files with 6 additions and 0 deletions

View File

@ -204,6 +204,7 @@ bi_schedule(bi_context *ctx)
u->branch_constant = true;
u->clause_type = bi_clause_type_for_ins(ins);
u->block = (struct bi_block *) block;
list_addtail(&u->link, &bblock->clauses);
}

View File

@ -335,9 +335,14 @@ typedef struct {
bi_instruction *add;
} bi_bundle;
struct bi_block;
typedef struct {
struct list_head link;
/* Link back up for branch calculations */
struct bi_block *block;
/* A clause can have 8 instructions in bundled FMA/ADD sense, so there
* can be 8 bundles. */