nir: Add alpha_to_coverage lowering pass
[mesa.git] / src / intel / compiler / 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 libintel_compiler_files = files(
22 'brw_cfg.cpp',
23 'brw_cfg.h',
24 'brw_clip.h',
25 'brw_clip_line.c',
26 'brw_clip_point.c',
27 'brw_clip_tri.c',
28 'brw_clip_unfilled.c',
29 'brw_clip_util.c',
30 'brw_compile_clip.c',
31 'brw_compile_sf.c',
32 'brw_compiler.c',
33 'brw_compiler.h',
34 'brw_dead_control_flow.cpp',
35 'brw_dead_control_flow.h',
36 'brw_debug_recompile.c',
37 'brw_disasm.c',
38 'brw_disasm_info.c',
39 'brw_disasm_info.h',
40 'brw_eu.cpp',
41 'brw_eu_compact.c',
42 'brw_eu_defines.h',
43 'brw_eu_emit.c',
44 'brw_eu.h',
45 'brw_eu_util.c',
46 'brw_eu_validate.c',
47 'brw_fs_bank_conflicts.cpp',
48 'brw_fs_builder.h',
49 'brw_fs_cmod_propagation.cpp',
50 'brw_fs_combine_constants.cpp',
51 'brw_fs_copy_propagation.cpp',
52 'brw_fs.cpp',
53 'brw_fs_cse.cpp',
54 'brw_fs_dead_code_eliminate.cpp',
55 'brw_fs_generator.cpp',
56 'brw_fs.h',
57 'brw_fs_live_variables.cpp',
58 'brw_fs_live_variables.h',
59 'brw_fs_lower_pack.cpp',
60 'brw_fs_lower_regioning.cpp',
61 'brw_fs_nir.cpp',
62 'brw_fs_reg_allocate.cpp',
63 'brw_fs_register_coalesce.cpp',
64 'brw_fs_saturate_propagation.cpp',
65 'brw_fs_scoreboard.cpp',
66 'brw_fs_sel_peephole.cpp',
67 'brw_fs_validate.cpp',
68 'brw_fs_visitor.cpp',
69 'brw_inst.h',
70 'brw_interpolation_map.c',
71 'brw_ir_allocator.h',
72 'brw_ir_fs.h',
73 'brw_ir_vec4.h',
74 'brw_nir.h',
75 'brw_nir.c',
76 'brw_nir_analyze_boolean_resolves.c',
77 'brw_nir_analyze_ubo_ranges.c',
78 'brw_nir_attribute_workarounds.c',
79 'brw_nir_lower_conversions.c',
80 'brw_nir_lower_cs_intrinsics.c',
81 'brw_nir_lower_alpha_to_coverage.c',
82 'brw_nir_lower_image_load_store.c',
83 'brw_nir_lower_mem_access_bit_sizes.c',
84 'brw_nir_opt_peephole_ffma.c',
85 'brw_nir_tcs_workarounds.c',
86 'brw_packed_float.c',
87 'brw_predicated_break.cpp',
88 'brw_reg.h',
89 'brw_reg_type.c',
90 'brw_reg_type.h',
91 'brw_schedule_instructions.cpp',
92 'brw_shader.cpp',
93 'brw_shader.h',
94 'brw_vec4_builder.h',
95 'brw_vec4_cmod_propagation.cpp',
96 'brw_vec4_copy_propagation.cpp',
97 'brw_vec4.cpp',
98 'brw_vec4_cse.cpp',
99 'brw_vec4_dead_code_eliminate.cpp',
100 'brw_vec4_generator.cpp',
101 'brw_vec4_gs_visitor.cpp',
102 'brw_vec4_gs_visitor.h',
103 'brw_vec4.h',
104 'brw_vec4_live_variables.cpp',
105 'brw_vec4_live_variables.h',
106 'brw_vec4_nir.cpp',
107 'brw_vec4_gs_nir.cpp',
108 'brw_vec4_reg_allocate.cpp',
109 'brw_vec4_surface_builder.cpp',
110 'brw_vec4_surface_builder.h',
111 'brw_vec4_tcs.cpp',
112 'brw_vec4_tcs.h',
113 'brw_vec4_tes.cpp',
114 'brw_vec4_tes.h',
115 'brw_vec4_visitor.cpp',
116 'brw_vec4_vs_visitor.cpp',
117 'brw_vec4_vs.h',
118 'brw_vue_map.c',
119 'brw_wm_iz.cpp',
120 'gen6_gs_visitor.cpp',
121 'gen6_gs_visitor.h',
122 )
123
124 brw_nir_trig = custom_target(
125 'brw_nir_trig_workarounds.c',
126 input : 'brw_nir_trig_workarounds.py',
127 output : 'brw_nir_trig_workarounds.c',
128 command : [
129 prog_python, '@INPUT@',
130 '-p', join_paths(meson.source_root(), 'src/compiler/nir/'),
131 ],
132 depend_files : nir_algebraic_py,
133 capture : true,
134 )
135
136 libintel_compiler = static_library(
137 'intel_compiler',
138 [libintel_compiler_files, brw_nir_trig, ir_expression_operation_h],
139 include_directories : [inc_common, inc_intel],
140 c_args : [c_vis_args, no_override_init_args],
141 cpp_args : [cpp_vis_args],
142 dependencies : idep_nir_headers,
143 build_by_default : false,
144 )
145
146 if with_tests
147 # The last two tests are not C++ or gtest, pre comment in autotools make
148 foreach t : ['fs_cmod_propagation', 'fs_copy_propagation',
149 'fs_saturate_propagation', 'vf_float_conversions',
150 'vec4_register_coalesce', 'vec4_copy_propagation',
151 'vec4_cmod_propagation', 'vec4_dead_code_eliminate',
152 'eu_compact', 'eu_validate', 'fs_scoreboard']
153 test(
154 t,
155 executable(
156 [t, ir_expression_operation_h],
157 'test_@0@.cpp'.format(t),
158 include_directories : [inc_common, inc_intel],
159 link_with : [
160 libintel_compiler, libintel_common, libintel_dev, libisl,
161 ],
162 dependencies : [idep_gtest, idep_nir, idep_mesautil],
163 ),
164 suite : ['intel'],
165 )
166 endforeach
167 endif