diff options
author | Eric Anholt <[email protected]> | 2016-03-15 17:53:36 -0700 |
---|---|---|
committer | Eric Anholt <[email protected]> | 2016-07-13 23:54:15 -0700 |
commit | a59da513d3229c883809ac2088c9612abcec1470 (patch) | |
tree | 7222acfc65dedc15b7831e73f923b72fe7ce4fe2 /src/gallium/drivers/vc4/vc4_qir.h | |
parent | 37ecc616628d3d5fb75e53135f2f31b11e0cce74 (diff) |
vc4: Move the QPU instructions to schedule into each block.
We'll want to schedule them individually, to handle delay slots.
Diffstat (limited to 'src/gallium/drivers/vc4/vc4_qir.h')
-rw-r--r-- | src/gallium/drivers/vc4/vc4_qir.h | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/src/gallium/drivers/vc4/vc4_qir.h b/src/gallium/drivers/vc4/vc4_qir.h index fe85b769775..fabdf10e24d 100644 --- a/src/gallium/drivers/vc4/vc4_qir.h +++ b/src/gallium/drivers/vc4/vc4_qir.h @@ -355,6 +355,7 @@ struct qblock { struct list_head link; struct list_head instructions; + struct list_head qpu_inst_list; struct set *predecessors; struct qblock *successors[2]; @@ -467,6 +468,7 @@ struct vc4_compile { struct qblock *loop_break_block; struct list_head qpu_inst_list; + uint64_t *qpu_insts; uint32_t qpu_inst_count; uint32_t qpu_inst_size; |