diff options
author | Jason Ekstrand <[email protected]> | 2018-03-20 11:11:25 -0700 |
---|---|---|
committer | Jason Ekstrand <[email protected]> | 2018-06-22 20:15:54 -0700 |
commit | a406f7e0c9ab1ff36ae2d9fe377415bf41bace5a (patch) | |
tree | 21ab59aaf789e5ea244d673dc58c0fb22f99dcd1 /src/compiler/nir/meson.build | |
parent | 535289a3a97b104dc128d633785fae3936e3b120 (diff) |
nir: Add a deref path helper struct
This commit introduces a new nir_deref.h header for helpers that are
less common and really only needed by a few heavy-duty passes. In this
header is a new struct for representing a full deref path which can be
walked in either direction.
v2 (Jason Ekstrand):
- Assert that deref != NULL (Caio)
- Fill _short_path with 0xdeadbeef in debug builds when not used (Caio)
- Make nir_deref_path a typedef (Rob)
Reviewed-by: Caio Marcelo de Oliveira Filho <[email protected]>
Acked-by: Rob Clark <[email protected]>
Acked-by: Bas Nieuwenhuizen <[email protected]>
Acked-by: Dave Airlie <[email protected]>
Reviewed-by: Kenneth Graunke <[email protected]>
Diffstat (limited to 'src/compiler/nir/meson.build')
-rw-r--r-- | src/compiler/nir/meson.build | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/src/compiler/nir/meson.build b/src/compiler/nir/meson.build index 089a3787b8d..9d50782513e 100644 --- a/src/compiler/nir/meson.build +++ b/src/compiler/nir/meson.build @@ -93,6 +93,7 @@ files_libnir = files( 'nir_control_flow.h', 'nir_control_flow_private.h', 'nir_deref.c', + 'nir_deref.h', 'nir_dominance.c', 'nir_format_convert.h', 'nir_from_ssa.c', |