diff options
author | Jason Ekstrand <[email protected]> | 2014-12-19 11:05:02 -0800 |
---|---|---|
committer | Jason Ekstrand <[email protected]> | 2015-01-15 16:54:21 -0800 |
commit | 4839d1aed167d904ebd5827d7c01d87ad5b0fca1 (patch) | |
tree | 4d1ce99f4735eb955b9d0a670e42ff18863af6c2 /src/glsl/Makefile.sources | |
parent | 0aaaa13ec9b67939d119dcabf6136bc0fcae859d (diff) |
nir: Add a worklist helper structure
A worklist is a common concept in optimizations. This adds a structure
that we can reuse for many different types of optimizations.
Reviewed-by: Connor Abbott <[email protected]>
Diffstat (limited to 'src/glsl/Makefile.sources')
-rw-r--r-- | src/glsl/Makefile.sources | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/src/glsl/Makefile.sources b/src/glsl/Makefile.sources index 006e9472188..a951ca7dbc6 100644 --- a/src/glsl/Makefile.sources +++ b/src/glsl/Makefile.sources @@ -50,6 +50,8 @@ NIR_FILES = \ $(GLSL_SRCDIR)/nir/nir_split_var_copies.c \ $(GLSL_SRCDIR)/nir/nir_to_ssa.c \ $(GLSL_SRCDIR)/nir/nir_validate.c \ + $(GLSL_SRCDIR)/nir/nir_worklist.c \ + $(GLSL_SRCDIR)/nir/nir_worklist.h \ $(GLSL_SRCDIR)/nir/nir_types.cpp \ $(GLSL_SRCDIR)/nir/glsl_to_nir.cpp \ $(NIR_GENERATED_FILES) |