aboutsummaryrefslogtreecommitdiffstats
path: root/src/gallium/drivers/zink/nir_to_spirv
diff options
context:
space:
mode:
authorErik Faye-Lund <[email protected]>2019-06-24 10:58:42 +0200
committerErik Faye-Lund <[email protected]>2019-10-28 08:51:45 +0000
commitfe34a35333f5927ed6ce1ed726d533e9056a18e7 (patch)
tree46263ec46b89610cf1c90a53bfe350f1a48c6973 /src/gallium/drivers/zink/nir_to_spirv
parentca074edc7f462d09ea35437979c7d241675d12ed (diff)
zink: do not use hash-table for regs
Acked-by: Jordan Justen <[email protected]>
Diffstat (limited to 'src/gallium/drivers/zink/nir_to_spirv')
-rw-r--r--src/gallium/drivers/zink/nir_to_spirv/nir_to_spirv.c17
1 files changed, 9 insertions, 8 deletions
diff --git a/src/gallium/drivers/zink/nir_to_spirv/nir_to_spirv.c b/src/gallium/drivers/zink/nir_to_spirv/nir_to_spirv.c
index e5792694f43..5b6a3191add 100644
--- a/src/gallium/drivers/zink/nir_to_spirv/nir_to_spirv.c
+++ b/src/gallium/drivers/zink/nir_to_spirv/nir_to_spirv.c
@@ -50,7 +50,8 @@ struct ntv_context {
SpvId *defs;
size_t num_defs;
- struct hash_table *vars;
+ SpvId *vars;
+ size_t num_vars;
const SpvId *block_ids;
size_t num_blocks;
@@ -407,9 +408,9 @@ get_src_uint_ssa(struct ntv_context *ctx, const nir_ssa_def *ssa)
static SpvId
get_var_from_reg(struct ntv_context *ctx, nir_register *reg)
{
- struct hash_entry *he = _mesa_hash_table_search(ctx->vars, reg);
- assert(he);
- return (SpvId)(intptr_t)he->data;
+ assert(reg->index < ctx->num_vars);
+ assert(ctx->vars[reg->index] != 0);
+ return ctx->vars[reg->index];
}
static SpvId
@@ -1465,10 +1466,11 @@ nir_to_spirv(struct nir_shader *s)
goto fail;
ctx.num_defs = entry->ssa_alloc;
- ctx.vars = _mesa_hash_table_create(NULL, _mesa_hash_pointer,
- _mesa_key_pointer_equal);
+ nir_index_local_regs(entry);
+ ctx.vars = malloc(sizeof(SpvId) * entry->reg_alloc);
if (!ctx.vars)
goto fail;
+ ctx.num_vars = entry->reg_alloc;
SpvId *block_ids = (SpvId *)malloc(sizeof(SpvId) * entry->num_blocks);
if (!block_ids)
@@ -1490,8 +1492,7 @@ nir_to_spirv(struct nir_shader *s)
SpvId var = spirv_builder_emit_var(&ctx.builder, pointer_type,
SpvStorageClassFunction);
- if (!_mesa_hash_table_insert(ctx.vars, reg, (void *)(intptr_t)var))
- goto fail;
+ ctx.vars[reg->index] = var;
}
emit_cf_list(&ctx, &entry->body);