amd/common: use generated register header
[mesa.git] / src / amd / common / 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 sid_tables_h = custom_target(
22 'sid_tables_h',
23 input : ['sid_tables.py', 'sid.h', '../registers/amdgfxregs.json', '../registers/pkt3.json'],
24 output : 'sid_tables.h',
25 command : [prog_python, '@INPUT@'],
26 capture : true,
27 )
28
29 amdgfxregs_h = custom_target(
30 'amdgfxregs_h',
31 input : ['../registers/makeregheader.py', '../registers/amdgfxregs.json', '../registers/pkt3.json'],
32 output : 'amdgfxregs.h',
33 command : [prog_python, '@INPUT@', '--sort', 'address', '--guard', 'AMDGFXREGS_H'],
34 capture : true,
35 )
36
37 amd_common_files = files(
38 'ac_binary.c',
39 'ac_binary.h',
40 'ac_exp_param.h',
41 'ac_llvm_build.c',
42 'ac_llvm_build.h',
43 'ac_llvm_cull.c',
44 'ac_llvm_cull.h',
45 'ac_llvm_helper.cpp',
46 'ac_llvm_util.c',
47 'ac_llvm_util.h',
48 'ac_shader_abi.h',
49 'ac_shader_util.c',
50 'ac_shader_util.h',
51 'ac_nir_to_llvm.c',
52 'ac_nir_to_llvm.h',
53 'ac_gpu_info.c',
54 'ac_gpu_info.h',
55 'ac_surface.c',
56 'ac_surface.h',
57 'ac_debug.c',
58 'ac_debug.h',
59 )
60
61 libamd_common = static_library(
62 'amd_common',
63 [amd_common_files, sid_tables_h, amdgfxregs_h],
64 include_directories : [
65 inc_common, inc_compiler, inc_mesa, inc_mapi, inc_amd,
66 ],
67 dependencies : [
68 dep_llvm, dep_thread, dep_elf, dep_libdrm_amdgpu, dep_valgrind,
69 idep_nir_headers,
70 ],
71 c_args : [c_vis_args],
72 cpp_args : [cpp_vis_args],
73 )
74
75 idep_amdgfxregs_h = declare_dependency(sources : [amdgfxregs_h])