diff options
author | Alyssa Rosenzweig <[email protected]> | 2020-03-11 13:58:10 -0400 |
---|---|---|
committer | Marge Bot <[email protected]> | 2020-03-11 20:28:21 +0000 |
commit | 933e44dd435f285e652d29389456dbafca121482 (patch) | |
tree | f7ca131d936463bbfa7358eb48a8f1ce960978c5 /src/panfrost/midgard | |
parent | 5aaaf7b12c037b25f4c0a06af4744a8893c25e50 (diff) |
panfrost: Move liveness analysis to root panfrost/
This way we can share the code with Bifrost.
Signed-off-by: Alyssa Rosenzweig <[email protected]>
Part-of: <https://gitlab.freedesktop.org/mesa/mesa/-/merge_requests/4150>
Diffstat (limited to 'src/panfrost/midgard')
-rw-r--r-- | src/panfrost/midgard/compiler.h | 56 | ||||
-rw-r--r-- | src/panfrost/midgard/midgard_liveness.c | 141 |
2 files changed, 8 insertions, 189 deletions
diff --git a/src/panfrost/midgard/compiler.h b/src/panfrost/midgard/compiler.h index f9b0c8c2198..34a53cd1ac3 100644 --- a/src/panfrost/midgard/compiler.h +++ b/src/panfrost/midgard/compiler.h @@ -165,29 +165,6 @@ typedef struct midgard_instruction { }; } midgard_instruction; -typedef struct pan_block { - /* Link to next block. Must be first for mir_get_block */ - struct list_head link; - - /* List of instructions emitted for the current block */ - struct list_head instructions; - - /* Index of the block in source order */ - unsigned name; - - /* Control flow graph */ - struct pan_block *successors[2]; - unsigned nr_successors; - - struct set *predecessors; - - /* In liveness analysis, these are live masks (per-component) for - * indices for the block. Scalar compilers have the luxury of using - * simple bit fields, but for us, liveness is a vector idea. */ - uint16_t *live_in; - uint16_t *live_out; -} pan_block; - typedef struct midgard_block { pan_block base; @@ -377,9 +354,6 @@ mir_next_op(struct midgard_instruction *ins) #define mir_foreach_instr_in_block_rev(block, v) \ list_for_each_entry_rev(struct midgard_instruction, v, &block->base.instructions, link) -#define pan_foreach_instr_in_block_rev(block, v) \ - list_for_each_entry_rev(struct midgard_instruction, v, &block->instructions, link) - #define mir_foreach_instr_in_block_safe(block, v) \ list_for_each_entry_safe(struct midgard_instruction, v, &block->base.instructions, link) @@ -422,14 +396,6 @@ mir_next_op(struct midgard_instruction *ins) v != NULL && _v < &blk->base.successors[2]; \ _v++, v = *_v) \ -#define pan_foreach_successor(blk, v) \ - pan_block *v; \ - pan_block **_v; \ - for (_v = (pan_block **) &blk->successors[0], \ - v = *_v; \ - v != NULL && _v < (pan_block **) &blk->successors[2]; \ - _v++, v = *_v) \ - /* Based on set_foreach, expanded with automatic type casts */ #define mir_foreach_predecessor(blk, v) \ @@ -441,15 +407,6 @@ mir_next_op(struct midgard_instruction *ins) _entry_##v = _mesa_set_next_entry(blk->base.predecessors, _entry_##v), \ v = (struct midgard_block *) (_entry_##v ? _entry_##v->key : NULL)) -#define pan_foreach_predecessor(blk, v) \ - struct set_entry *_entry_##v; \ - struct pan_block *v; \ - for (_entry_##v = _mesa_set_next_entry(blk->predecessors, NULL), \ - v = (struct pan_block *) (_entry_##v ? _entry_##v->key : NULL); \ - _entry_##v != NULL; \ - _entry_##v = _mesa_set_next_entry(blk->predecessors, _entry_##v), \ - v = (struct pan_block *) (_entry_##v ? _entry_##v->key : NULL)) - #define mir_foreach_src(ins, v) \ for (unsigned v = 0; v < ARRAY_SIZE(ins->src); ++v) @@ -470,19 +427,6 @@ mir_get_block(compiler_context *ctx, int idx) return (struct midgard_block *) lst; } -static inline midgard_block * -mir_exit_block(struct compiler_context *ctx) -{ - pan_block *last = list_last_entry(&ctx->blocks, pan_block, link); - - /* The last block must be empty logically but contains branch writeout - * for fragment shaders */ - - assert(last->nr_successors == 0); - - return (midgard_block *) last; -} - static inline bool mir_is_alu_bundle(midgard_bundle *bundle) { diff --git a/src/panfrost/midgard/midgard_liveness.c b/src/panfrost/midgard/midgard_liveness.c index 9481cded56a..af7fba9939c 100644 --- a/src/panfrost/midgard/midgard_liveness.c +++ b/src/panfrost/midgard/midgard_liveness.c @@ -22,99 +22,28 @@ */ #include "compiler.h" -#include "util/u_memory.h" - -/* Routines for liveness analysis. Liveness is tracked per byte per node. Per - * byte granularity is necessary for proper handling of int8 */ - -static void -liveness_gen(uint16_t *live, unsigned node, unsigned max, uint16_t mask) -{ - if (node >= max) - return; - - live[node] |= mask; -} - -static void -liveness_kill(uint16_t *live, unsigned node, unsigned max, uint16_t mask) -{ - if (node >= max) - return; - - live[node] &= ~mask; -} - -static bool -liveness_get(uint16_t *live, unsigned node, uint16_t max) { - if (node >= max) - return false; - - return live[node]; -} - -/* Updates live_in for a single instruction */ void mir_liveness_ins_update(uint16_t *live, midgard_instruction *ins, unsigned max) { /* live_in[s] = GEN[s] + (live_out[s] - KILL[s]) */ - liveness_kill(live, ins->dest, max, mir_bytemask(ins)); + pan_liveness_kill(live, ins->dest, max, mir_bytemask(ins)); mir_foreach_src(ins, src) { unsigned node = ins->src[src]; unsigned bytemask = mir_bytemask_of_read_components(ins, node); - liveness_gen(live, node, max, bytemask); + pan_liveness_gen(live, node, max, bytemask); } } -/* live_out[s] = sum { p in succ[s] } ( live_in[p] ) */ - static void -liveness_block_live_out(pan_block *blk, unsigned temp_count) +mir_liveness_ins_update_wrap(uint16_t *live, void *ins, unsigned max) { - pan_foreach_successor(blk, succ) { - for (unsigned i = 0; i < temp_count; ++i) - blk->live_out[i] |= succ->live_in[i]; - } + mir_liveness_ins_update(live, (midgard_instruction *) ins, max); } -/* Liveness analysis is a backwards-may dataflow analysis pass. Within a block, - * we compute live_out from live_in. The intrablock pass is linear-time. It - * returns whether progress was made. */ - -static bool -liveness_block_update(pan_block *blk, unsigned temp_count) -{ - bool progress = false; - - liveness_block_live_out(blk, temp_count); - - uint16_t *live = ralloc_array(blk, uint16_t, temp_count); - memcpy(live, blk->live_out, temp_count * sizeof(uint16_t)); - - pan_foreach_instr_in_block_rev(blk, ins) - mir_liveness_ins_update(live, ins, temp_count); - - /* To figure out progress, diff live_in */ - - for (unsigned i = 0; (i < temp_count) && !progress; ++i) - progress |= (blk->live_in[i] != live[i]); - - ralloc_free(blk->live_in); - blk->live_in = live; - - return progress; -} - -/* Globally, liveness analysis uses a fixed-point algorithm based on a - * worklist. We initialize a work list with the exit block. We iterate the work - * list to compute live_in from live_out for each block on the work list, - * adding the predecessors of the block to the work list if we made progress. - */ - void mir_compute_liveness(compiler_context *ctx) { @@ -123,52 +52,7 @@ mir_compute_liveness(compiler_context *ctx) return; mir_compute_temp_count(ctx); - unsigned temp_count = ctx->temp_count; - - /* List of midgard_block */ - struct set *work_list = _mesa_set_create(ctx, - _mesa_hash_pointer, - _mesa_key_pointer_equal); - - struct set *visited = _mesa_set_create(ctx, - _mesa_hash_pointer, - _mesa_key_pointer_equal); - - /* Allocate */ - - mir_foreach_block(ctx, block) { - block->live_in = rzalloc_array(NULL, uint16_t, temp_count); - block->live_out = rzalloc_array(NULL, uint16_t, temp_count); - } - - /* Initialize the work list with the exit block */ - struct set_entry *cur; - - midgard_block *exit = mir_exit_block(ctx); - cur = _mesa_set_add(work_list, exit); - - /* Iterate the work list */ - - do { - /* Pop off a block */ - pan_block *blk = (struct pan_block *) cur->key; - _mesa_set_remove(work_list, cur); - - /* Update its liveness information */ - bool progress = liveness_block_update(blk, temp_count); - - /* If we made progress, we need to process the predecessors */ - - if (progress || !_mesa_set_search(visited, blk)) { - pan_foreach_predecessor(blk, pred) - _mesa_set_add(work_list, pred); - } - - _mesa_set_add(visited, blk); - } while((cur = _mesa_set_next_entry(work_list, NULL)) != NULL); - - _mesa_set_destroy(visited, NULL); - _mesa_set_destroy(work_list, NULL); + pan_compute_liveness(&ctx->blocks, ctx->temp_count, mir_liveness_ins_update_wrap); /* Liveness is now valid */ ctx->metadata |= MIDGARD_METADATA_LIVENESS; @@ -183,19 +67,10 @@ mir_invalidate_liveness(compiler_context *ctx) if (!(ctx->metadata & MIDGARD_METADATA_LIVENESS)) return; + pan_free_liveness(&ctx->blocks); + /* It's now invalid regardless */ ctx->metadata &= ~MIDGARD_METADATA_LIVENESS; - - mir_foreach_block(ctx, block) { - if (block->live_in) - ralloc_free(block->live_in); - - if (block->live_out) - ralloc_free(block->live_out); - - block->live_in = NULL; - block->live_out = NULL; - } } bool @@ -205,7 +80,7 @@ mir_is_live_after(compiler_context *ctx, midgard_block *block, midgard_instructi /* Check whether we're live in the successors */ - if (liveness_get(block->base.live_out, src, ctx->temp_count)) + if (pan_liveness_get(block->base.live_out, src, ctx->temp_count)) return true; /* Check the rest of the block for liveness */ |