anv: Split anv_extensions.py into two files
[mesa.git] / src / intel / vulkan / 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 anv_entrypoints = custom_target(
22 'anv_entrypoints.[ch]',
23 input : ['anv_entrypoints_gen.py', vk_api_xml, vk_android_native_buffer_xml,
24 'anv_extensions.py'],
25 output : ['anv_entrypoints.h', 'anv_entrypoints.c'],
26 command : [
27 prog_python2, '@INPUT0@', '--xml', '@INPUT1@', '--xml', '@INPUT2@',
28 '--outdir', meson.current_build_dir(),
29 ],
30 depend_files : files('anv_extensions.py'),
31 )
32
33 anv_extensions_c = custom_target(
34 'anv_extensions.c',
35 input : ['anv_extensions_gen.py', vk_api_xml, vk_android_native_buffer_xml,
36 'anv_extensions.py'],
37 output : 'anv_extensions.c',
38 command : [
39 prog_python2, '@INPUT0@', '--xml', '@INPUT1@', '--xml', '@INPUT2@',
40 '--out', '@OUTPUT@',
41 ],
42 )
43
44 intel_icd = custom_target(
45 'intel_icd',
46 input : 'anv_icd.py',
47 output : 'intel_icd.@0@.json'.format(host_machine.cpu()),
48 command : [
49 prog_python2, '@INPUT@',
50 '--lib-path', join_paths(get_option('prefix'), get_option('libdir')),
51 '--out', '@OUTPUT@',
52 ],
53 depend_files : files('anv_extensions.py'),
54 build_by_default : true,
55 install_dir : with_vulkan_icd_dir,
56 install : true,
57 )
58
59 dev_icd = custom_target(
60 'dev_icd',
61 input : 'anv_icd.py',
62 output : 'dev_icd.@0@.json'.format(host_machine.cpu()),
63 command : [
64 prog_python2, '@INPUT@', '--lib-path', meson.current_build_dir(),
65 '--out', '@OUTPUT@'
66 ],
67 depend_files : files('anv_extensions.py'),
68 build_by_default : true,
69 install : false,
70 )
71
72 # TODO: workaround for anv_entrypoints combining the .h and .c files in it's
73 # output. See issue #2346
74 block_entrypoints = custom_target(
75 'block_entrypoints',
76 command : [prog_touch, '@OUTPUT@'],
77 output : 'null',
78 depends : anv_entrypoints,
79 )
80
81 libanv_gen_libs = []
82 anv_gen_files = files(
83 'genX_blorp_exec.c',
84 'genX_cmd_buffer.c',
85 'genX_gpu_memcpy.c',
86 'genX_pipeline.c',
87 'genX_query.c',
88 'genX_state.c',
89 )
90 foreach g : [['70', ['gen7_cmd_buffer.c']], ['75', ['gen7_cmd_buffer.c']],
91 ['80', ['gen8_cmd_buffer.c']], ['90', ['gen8_cmd_buffer.c']],
92 ['100', ['gen8_cmd_buffer.c']]]
93 _gen = g[0]
94 libanv_gen_libs += static_library(
95 'libanv_gen@0@'.format(_gen),
96 [anv_gen_files, g[1], block_entrypoints],
97 include_directories : [
98 inc_common, inc_compiler, inc_drm_uapi, inc_intel, inc_vulkan_util,
99 inc_vulkan_wsi,
100 ],
101 c_args : [
102 c_vis_args, no_override_init_args, '-msse2',
103 '-DGEN_VERSIONx10=@0@'.format(_gen),
104 ],
105 dependencies : [dep_libdrm, dep_valgrind, idep_nir_headers],
106 )
107 endforeach
108
109 libanv_files = files(
110 'anv_allocator.c',
111 'anv_batch_chain.c',
112 'anv_blorp.c',
113 'anv_cmd_buffer.c',
114 'anv_descriptor_set.c',
115 'anv_device.c',
116 'anv_dump.c',
117 'anv_formats.c',
118 'anv_genX.h',
119 'anv_image.c',
120 'anv_intel.c',
121 'anv_nir.h',
122 'anv_nir_apply_pipeline_layout.c',
123 'anv_nir_lower_input_attachments.c',
124 'anv_nir_lower_multiview.c',
125 'anv_nir_lower_push_constants.c',
126 'anv_nir_lower_ycbcr_textures.c',
127 'anv_pass.c',
128 'anv_pipeline.c',
129 'anv_pipeline_cache.c',
130 'anv_private.h',
131 'anv_queue.c',
132 'anv_util.c',
133 'anv_wsi.c',
134 'vk_format_info.h',
135 )
136
137 anv_deps = []
138 anv_flags = []
139
140 if with_platform_x11
141 anv_deps += dep_xcb_dri3
142 anv_flags += [
143 '-DVK_USE_PLATFORM_XCB_KHR',
144 '-DVK_USE_PLATFORM_XLIB_KHR',
145 ]
146 libanv_files += files('anv_wsi_x11.c')
147 endif
148
149 if with_platform_wayland
150 anv_deps += dep_wayland_client
151 anv_flags += '-DVK_USE_PLATFORM_WAYLAND_KHR'
152 libanv_files += files('anv_wsi_wayland.c')
153 endif
154
155 libanv_common = static_library(
156 'anv_common',
157 [libanv_files, anv_entrypoints, anv_extensions_c],
158 include_directories : [
159 inc_common, inc_intel, inc_compiler, inc_drm_uapi, inc_vulkan_util,
160 inc_vulkan_wsi,
161 ],
162 c_args : [c_vis_args, no_override_init_args, '-msse2', anv_flags],
163 dependencies : [dep_valgrind, anv_deps, dep_libdrm, idep_nir_headers],
164 )
165
166 libvulkan_intel = shared_library(
167 'vulkan_intel',
168 [files('anv_gem.c'), block_entrypoints],
169 include_directories : [
170 inc_common, inc_intel, inc_compiler, inc_drm_uapi, inc_vulkan_util,
171 inc_vulkan_wsi,
172 ],
173 link_whole : [libanv_common, libanv_gen_libs],
174 link_with : [
175 libintel_compiler, libintel_common, libisl, libblorp, libvulkan_util,
176 libvulkan_wsi, libmesa_util,
177 ],
178 dependencies : [
179 dep_libdrm, dep_thread, dep_dl, dep_m, anv_deps, dep_valgrind, idep_nir,
180 ],
181 c_args : [c_vis_args, no_override_init_args, '-msse2', anv_flags],
182 link_args : ['-Wl,--build-id=sha1', ld_args_bsymbolic, ld_args_gc_sections],
183 install : true,
184 )
185
186 if with_tests
187 libvulkan_intel_test = static_library(
188 'vulkan_intel_test',
189 [files('anv_gem_stubs.c'), block_entrypoints],
190 include_directories : [
191 inc_common, inc_intel, inc_compiler, inc_drm_uapi, inc_vulkan_util,
192 inc_vulkan_wsi,
193 ],
194 link_whole : libanv_common,
195 link_with : [
196 libanv_gen_libs, libintel_compiler, libintel_common, libisl, libblorp,
197 libvulkan_util, libvulkan_wsi, libmesa_util,
198 ],
199 dependencies : [
200 dep_libdrm, dep_thread, dep_dl, dep_m, anv_deps, dep_valgrind,
201 idep_nir,
202 ],
203 c_args : [c_vis_args, no_override_init_args, '-msse2', anv_flags],
204 )
205
206 foreach t : ['block_pool_no_free', 'state_pool_no_free',
207 'state_pool_free_list_only', 'state_pool']
208 test(
209 'anv_@0@'.format(t),
210 executable(
211 t,
212 ['tests/@0@.c'.format(t), dummy_cpp, block_entrypoints],
213 link_with : libvulkan_intel_test,
214 dependencies : [dep_libdrm, dep_thread, dep_m, dep_valgrind],
215 include_directories : [
216 inc_common, inc_intel, inc_compiler, inc_vulkan_util, inc_vulkan_wsi,
217 ],
218 )
219 )
220 endforeach
221 endif