mirror of
https://gitee.com/openharmony/third_party_mesa3d
synced 2024-11-27 09:31:03 +00:00
panfrost: Maintain a bitmap of active batches
This is on the context, so no concurrency issues. This will allow us to efficiently iterate active batches. Signed-off-by: Alyssa Rosenzweig <alyssa@collabora.com> Cc: mesa-stable Part-of: <https://gitlab.freedesktop.org/mesa/mesa/-/merge_requests/12528>
This commit is contained in:
parent
b8da5b1b7f
commit
79dd1a4e63
@ -141,6 +141,9 @@ struct panfrost_context {
|
||||
struct {
|
||||
uint64_t seqnum;
|
||||
struct panfrost_batch slots[PAN_MAX_BATCHES];
|
||||
|
||||
/** Set of active batches for faster traversal */
|
||||
BITSET_DECLARE(active, PAN_MAX_BATCHES);
|
||||
} batches;
|
||||
|
||||
/* Bound job batch */
|
||||
|
@ -143,6 +143,7 @@ panfrost_batch_cleanup(struct panfrost_batch *batch)
|
||||
util_sparse_array_finish(&batch->bos);
|
||||
|
||||
memset(batch, 0, sizeof(*batch));
|
||||
BITSET_CLEAR(ctx->batches.active, batch_idx);
|
||||
}
|
||||
|
||||
static void
|
||||
@ -177,6 +178,9 @@ panfrost_get_batch(struct panfrost_context *ctx,
|
||||
|
||||
panfrost_batch_init(ctx, key, batch);
|
||||
|
||||
unsigned batch_idx = panfrost_batch_idx(batch);
|
||||
BITSET_SET(ctx->batches.active, batch_idx);
|
||||
|
||||
return batch;
|
||||
}
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user