nir: add support for removing redundant stores to copy prop var
[mesa.git] / src / compiler / Makefile.nir.am
1 #
2 # Copyright © 2012 Jon TURNEY
3 # Copyright (C) 2015 Intel Corporation
4 #
5 # Permission is hereby granted, free of charge, to any person obtaining a
6 # copy of this software and associated documentation files (the "Software"),
7 # to deal in the Software without restriction, including without limitation
8 # the rights to use, copy, modify, merge, publish, distribute, sublicense,
9 # and/or sell copies of the Software, and to permit persons to whom the
10 # Software is furnished to do so, subject to the following conditions:
11 #
12 # The above copyright notice and this permission notice (including the next
13 # paragraph) shall be included in all copies or substantial portions of the
14 # Software.
15 #
16 # THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
17 # IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
18 # FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL
19 # THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
20 # LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING
21 # FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS
22 # IN THE SOFTWARE.
23
24 noinst_LTLIBRARIES += nir/libnir.la
25
26 nir_libnir_la_LIBADD = \
27 libcompiler.la
28
29 nir_libnir_la_SOURCES = \
30 $(NIR_FILES) \
31 $(SPIRV_FILES) \
32 $(SPIRV_GENERATED_FILES) \
33 $(NIR_GENERATED_FILES)
34
35 nir/nir_builder_opcodes.h: nir/nir_opcodes.py nir/nir_builder_opcodes_h.py nir/nir_intrinsics.py
36 $(MKDIR_GEN)
37 $(PYTHON_GEN) $(srcdir)/nir/nir_builder_opcodes_h.py > $@ || ($(RM) $@; false)
38
39 nir/nir_constant_expressions.c: nir/nir_opcodes.py nir/nir_constant_expressions.py
40 $(MKDIR_GEN)
41 $(PYTHON_GEN) $(srcdir)/nir/nir_constant_expressions.py > $@ || ($(RM) $@; false)
42
43 nir/nir_intrinsics.h: nir/nir_intrinsics.py nir/nir_intrinsics_h.py
44 $(MKDIR_GEN)
45 $(PYTHON_GEN) $(srcdir)/nir/nir_intrinsics_h.py --outdir nir || ($(RM) $@; false)
46
47 nir/nir_intrinsics.c: nir/nir_intrinsics.py nir/nir_intrinsics_c.py
48 $(MKDIR_GEN)
49 $(PYTHON_GEN) $(srcdir)/nir/nir_intrinsics_c.py --outdir nir || ($(RM) $@; false)
50
51 nir/nir_opcodes.h: nir/nir_opcodes.py nir/nir_opcodes_h.py
52 $(MKDIR_GEN)
53 $(PYTHON_GEN) $(srcdir)/nir/nir_opcodes_h.py > $@ || ($(RM) $@; false)
54
55 nir/nir_opcodes.c: nir/nir_opcodes.py nir/nir_opcodes_c.py
56 $(MKDIR_GEN)
57 $(PYTHON_GEN) $(srcdir)/nir/nir_opcodes_c.py > $@ || ($(RM) $@; false)
58
59 nir/nir_opt_algebraic.c: nir/nir_opt_algebraic.py nir/nir_algebraic.py
60 $(MKDIR_GEN)
61 $(PYTHON_GEN) $(srcdir)/nir/nir_opt_algebraic.py > $@ || ($(RM) $@; false)
62
63 check_PROGRAMS += \
64 nir/tests/control_flow_tests \
65 nir/tests/vars_tests
66
67 NIR_TESTS_CPPFLAGS = \
68 $(AM_CPPFLAGS) \
69 -I$(top_builddir)/src/compiler/nir \
70 -I$(top_srcdir)/src/compiler/nir
71 NIR_TESTS_CFLAGS = \
72 $(PTHREAD_CFLAGS)
73 NIR_TESTS_LDADD = \
74 $(top_builddir)/src/gtest/libgtest.la \
75 nir/libnir.la \
76 $(top_builddir)/src/util/libmesautil.la \
77 $(PTHREAD_LIBS)
78
79
80 nir_tests_control_flow_tests_CPPFLAGS = $(NIR_TESTS_CPPFLAGS)
81 nir_tests_control_flow_tests_SOURCES = nir/tests/control_flow_tests.cpp
82 nir_tests_control_flow_tests_CFLAGS = $(NIR_TESTS_CFLAGS)
83 nir_tests_control_flow_tests_LDADD = $(NIR_TESTS_LDADD)
84
85 nir_tests_vars_tests_CPPFLAGS = $(NIR_TESTS_CPPFLAGS)
86 nir_tests_vars_tests_SOURCES = nir/tests/vars_tests.cpp
87 nir_tests_vars_tests_CFLAGS = $(NIR_TESTS_CFLAGS)
88 nir_tests_vars_tests_LDADD = $(NIR_TESTS_LDADD)
89
90
91 TESTS += \
92 nir/tests/control_flow_tests \
93 nir/tests/vars_tests
94
95
96 BUILT_SOURCES += \
97 $(NIR_GENERATED_FILES)
98
99 CLEANFILES += \
100 $(NIR_GENERATED_FILES)
101
102 EXTRA_DIST += \
103 nir/nir_algebraic.py \
104 nir/nir_builder_opcodes_h.py \
105 nir/nir_constant_expressions.py \
106 nir/nir_intrinsics.py \
107 nir/nir_intrinsics_c.py \
108 nir/nir_intrinsics_h.py \
109 nir/nir_opcodes.py \
110 nir/nir_opcodes_c.py \
111 nir/nir_opcodes_h.py \
112 nir/nir_opt_algebraic.py \
113 nir/tests \
114 nir/README \
115 SConscript.nir \
116 SConscript.spirv