meson: Add build Intel "anv" vulkan driver
[mesa.git] / src / compiler / nir / meson.build
1 # Copyright © 2017 Intel Corporation
2
3 # Permission is hereby granted, free of charge, to any person obtaining a copy
4 # of this software and associated documentation files (the "Software"), to deal
5 # in the Software without restriction, including without limitation the rights
6 # to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
7 # copies of the Software, and to permit persons to whom the Software is
8 # furnished to do so, subject to the following conditions:
9
10 # The above copyright notice and this permission notice shall be included in
11 # all copies or substantial portions of the Software.
12
13 # THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
14 # IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
15 # FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
16 # AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
17 # LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
18 # OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
19 # SOFTWARE.
20
21 nir_depends = files('nir_opcodes.py')
22
23 nir_builder_opcodes_h = custom_target(
24 'nir_builder_opcodes.h',
25 input : 'nir_builder_opcodes_h.py',
26 output : 'nir_builder_opcodes.h',
27 command : [prog_python2, '@INPUT@'],
28 capture : true,
29 depend_files : nir_depends,
30 )
31
32 nir_constant_expressions_c = custom_target(
33 'nir_constant_expressions.c',
34 input : 'nir_constant_expressions.py',
35 output : 'nir_constant_expressions.c',
36 command : [prog_python2, '@INPUT@'],
37 capture : true,
38 depend_files : nir_depends,
39 )
40
41 nir_opcodes_h = custom_target(
42 'nir_opcodes.h',
43 input : 'nir_opcodes_h.py',
44 output : 'nir_opcodes.h',
45 command : [prog_python2, '@INPUT@'],
46 capture : true,
47 depend_files : nir_depends,
48 )
49
50 nir_opcodes_c = custom_target(
51 'nir_opcodes.c',
52 input : 'nir_opcodes_c.py',
53 output : 'nir_opcodes.c',
54 command : [prog_python2, '@INPUT@'],
55 capture : true,
56 depend_files : nir_depends,
57 )
58
59 nir_opt_algebraic_c = custom_target(
60 'nir_opt_algebraic.c',
61 input : 'nir_opt_algebraic.py',
62 output : 'nir_opt_algebraic.c',
63 command : [prog_python2, '@INPUT@'],
64 capture : true,
65 depend_files : files('nir_algebraic.py'),
66 )
67
68 spirv_info_c = custom_target(
69 'spirv_info.c',
70 input : files('../spirv/spirv_info_c.py', '../spirv/spirv.core.grammar.json'),
71 output : 'spirv_info.c',
72 command : [prog_python2, '@INPUT0@', '@INPUT1@', '@OUTPUT@'],
73 )
74
75 files_libnir = files(
76 'nir.c',
77 'nir.h',
78 'nir_builder.h',
79 'nir_clone.c',
80 'nir_constant_expressions.h',
81 'nir_control_flow.c',
82 'nir_control_flow.h',
83 'nir_control_flow_private.h',
84 'nir_dominance.c',
85 'nir_from_ssa.c',
86 'nir_gather_info.c',
87 'nir_gs_count_vertices.c',
88 'nir_inline_functions.c',
89 'nir_instr_set.c',
90 'nir_instr_set.h',
91 'nir_intrinsics.c',
92 'nir_intrinsics.h',
93 'nir_liveness.c',
94 'nir_loop_analyze.c',
95 'nir_loop_analyze.h',
96 'nir_lower_64bit_packing.c',
97 'nir_lower_alu_to_scalar.c',
98 'nir_lower_atomics.c',
99 'nir_lower_atomics_to_ssbo.c',
100 'nir_lower_bitmap.c',
101 'nir_lower_clamp_color_outputs.c',
102 'nir_lower_clip.c',
103 'nir_lower_clip_cull_distance_arrays.c',
104 'nir_lower_constant_initializers.c',
105 'nir_lower_double_ops.c',
106 'nir_lower_drawpixels.c',
107 'nir_lower_global_vars_to_local.c',
108 'nir_lower_gs_intrinsics.c',
109 'nir_lower_load_const_to_scalar.c',
110 'nir_lower_locals_to_regs.c',
111 'nir_lower_idiv.c',
112 'nir_lower_indirect_derefs.c',
113 'nir_lower_int64.c',
114 'nir_lower_io.c',
115 'nir_lower_io_to_temporaries.c',
116 'nir_lower_io_to_scalar.c',
117 'nir_lower_io_types.c',
118 'nir_lower_passthrough_edgeflags.c',
119 'nir_lower_patch_vertices.c',
120 'nir_lower_phis_to_scalar.c',
121 'nir_lower_read_invocation_to_scalar.c',
122 'nir_lower_regs_to_ssa.c',
123 'nir_lower_returns.c',
124 'nir_lower_samplers.c',
125 'nir_lower_samplers_as_deref.c',
126 'nir_lower_system_values.c',
127 'nir_lower_tex.c',
128 'nir_lower_to_source_mods.c',
129 'nir_lower_two_sided_color.c',
130 'nir_lower_uniforms_to_ubo.c',
131 'nir_lower_vars_to_ssa.c',
132 'nir_lower_var_copies.c',
133 'nir_lower_vec_to_movs.c',
134 'nir_lower_wpos_center.c',
135 'nir_lower_wpos_ytransform.c',
136 'nir_metadata.c',
137 'nir_move_vec_src_uses_to_dest.c',
138 'nir_normalize_cubemap_coords.c',
139 'nir_opt_conditional_discard.c',
140 'nir_opt_constant_folding.c',
141 'nir_opt_copy_prop_vars.c',
142 'nir_opt_copy_propagate.c',
143 'nir_opt_cse.c',
144 'nir_opt_dce.c',
145 'nir_opt_dead_cf.c',
146 'nir_opt_gcm.c',
147 'nir_opt_global_to_local.c',
148 'nir_opt_if.c',
149 'nir_opt_intrinsics.c',
150 'nir_opt_loop_unroll.c',
151 'nir_opt_move_comparisons.c',
152 'nir_opt_peephole_select.c',
153 'nir_opt_remove_phis.c',
154 'nir_opt_trivial_continues.c',
155 'nir_opt_undef.c',
156 'nir_phi_builder.c',
157 'nir_phi_builder.h',
158 'nir_print.c',
159 'nir_propagate_invariant.c',
160 'nir_remove_dead_variables.c',
161 'nir_repair_ssa.c',
162 'nir_search.c',
163 'nir_search.h',
164 'nir_search_helpers.h',
165 'nir_split_var_copies.c',
166 'nir_sweep.c',
167 'nir_to_lcssa.c',
168 'nir_validate.c',
169 'nir_vla.h',
170 'nir_worklist.c',
171 'nir_worklist.h',
172 '../spirv/GLSL.std.450.h',
173 '../spirv/nir_spirv.h',
174 '../spirv/spirv.h',
175 '../spirv/spirv_info.h',
176 '../spirv/spirv_to_nir.c',
177 '../spirv/vtn_alu.c',
178 '../spirv/vtn_cfg.c',
179 '../spirv/vtn_glsl450.c',
180 '../spirv/vtn_private.h',
181 '../spirv/vtn_variables.c',
182 )
183
184 libnir = static_library(
185 'nir',
186 [files_libnir, spirv_info_c, nir_opt_algebraic_c, nir_opcodes_c,
187 nir_opcodes_h, nir_constant_expressions_c, nir_builder_opcodes_h],
188 include_directories : [inc_common, inc_compiler, include_directories('../spirv')],
189 c_args : [c_vis_args, c_msvc_compat_args, no_override_init_args],
190 link_with : libcompiler,
191 build_by_default : false,
192 )
193
194 if with_tests
195 nir_control_flow_test = executable(
196 'nir_control_flow_test',
197 [files('tests/control_flow_tests.cpp'), nir_opcodes_h],
198 c_args : [c_vis_args, c_msvc_compat_args, no_override_init_args],
199 include_directories : [inc_common],
200 dependencies : [dep_thread],
201 link_with : [libmesa_util, libnir, libgtest],
202 )
203
204 test('nir_control_flow', nir_control_flow_test)
205 endif