aboutsummaryrefslogtreecommitdiffstats
path: root/src/compiler/nir/nir_opt_dead_write_vars.c
diff options
context:
space:
mode:
authorCaio Marcelo de Oliveira Filho <[email protected]>2019-07-18 16:14:03 -0700
committerCaio Marcelo de Oliveira Filho <[email protected]>2019-10-24 11:39:55 -0700
commit73572abc2a7a15bc16d2e7e4df6aa6096fd1985b (patch)
tree3517c79eb13a1e0cf1ba2267ebca85f53a3c391d /src/compiler/nir/nir_opt_dead_write_vars.c
parent0ebe89459cca8a3b50a97377a92c7fb194147051 (diff)
nir: Add scoped_memory_barrier intrinsic
Add a NIR instrinsic that represent a memory barrier in SPIR-V / Vulkan Memory Model, with extra attributes that describe the barrier: - Ordering: whether is an Acquire or Release; - "Cache control": availability ("ensure this gets written in the memory") and visibility ("ensure my cache is up to date when I'm reading"); - Variable modes: which memory types this barrier applies to; - Scope: how far this barrier applies. Note that unlike in SPIR-V, the "Storage Semantics" and the "Memory Semantics" are split into two different attributes so we can use variable modes for the former. NIR passes that took barriers in consideration were also changed - nir_opt_copy_prop_vars: clean up the values for the mode of an ACQUIRE barrier. Copy propagation effect is to "pull up a load" (by not performing it), which is what ACQUIRE restricts. - nir_opt_dead_write_vars and nir_opt_combine_writes: clean up the pending writes for the modes of an RELEASE barrier. Dead writes effect is to "push down a store", which is what RELEASE restricts. - nir_opt_access: treat the ACQUIRE and RELEASE as a full barrier for the modes. This is conservative, but since this is a GL-specific pass, doesn't make a difference for now. v2: Fix the scoped barrier handling in copy propagation. (Jason) Add scoped barrier handling to nir_opt_access and nir_opt_combine_writes. (Rhys) Reviewed-by: Jason Ekstrand <[email protected]> Reviewed-by: Bas Nieuwenhuizen <[email protected]>
Diffstat (limited to 'src/compiler/nir/nir_opt_dead_write_vars.c')
-rw-r--r--src/compiler/nir/nir_opt_dead_write_vars.c8
1 files changed, 8 insertions, 0 deletions
diff --git a/src/compiler/nir/nir_opt_dead_write_vars.c b/src/compiler/nir/nir_opt_dead_write_vars.c
index d2062a01ac0..201e0847ce9 100644
--- a/src/compiler/nir/nir_opt_dead_write_vars.c
+++ b/src/compiler/nir/nir_opt_dead_write_vars.c
@@ -139,6 +139,14 @@ remove_dead_write_vars_local(void *mem_ctx, nir_block *block)
break;
}
+ case nir_intrinsic_scoped_memory_barrier: {
+ if (nir_intrinsic_memory_semantics(intrin) & NIR_MEMORY_RELEASE) {
+ clear_unused_for_modes(&unused_writes,
+ nir_intrinsic_memory_modes(intrin));
+ }
+ break;
+ }
+
case nir_intrinsic_emit_vertex:
case nir_intrinsic_emit_vertex_with_counter: {
clear_unused_for_modes(&unused_writes, nir_var_shader_out);