1
# Copyright © 2017 Intel Corporation
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:
10
# The above copyright notice and this permission notice shall be included in
11
# all copies or substantial portions of the Software.
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
23
'../registers/gfx6.json',
24
'../registers/gfx7.json',
25
'../registers/gfx8.json',
26
'../registers/gfx81.json',
27
'../registers/gfx9.json',
28
'../registers/gfx10.json',
29
'../registers/gfx103.json',
32
'../registers/pkt3.json',
33
'../registers/gfx10-rsrc.json',
34
'../registers/registers-manually-defined.json',
37
sid_tables_h = custom_target(
39
input : ['sid_tables.py', 'sid.h'] + amd_json_files,
40
output : 'sid_tables.h',
41
command : [prog_python, '@INPUT@'],
45
amdgfxregs_h = custom_target(
47
input : ['../registers/makeregheader.py'] + amd_json_files,
48
output : 'amdgfxregs.h',
49
command : [prog_python, '@INPUT@', '--sort', 'address', '--guard', 'AMDGFXREGS_H'],
53
gfx10_format_table_c = custom_target(
54
'gfx10_format_table.c',
56
'gfx10_format_table.py',
57
'../../util/format/u_format.csv', '../registers/gfx10-rsrc.json'
59
output : 'gfx10_format_table.c',
60
command : [prog_python, '@INPUT@'],
62
depend_files : ['../registers/regdb.py']
65
amd_common_files = files(
90
'ac_rgp_elf_object_pack.c',
94
'ac_nir_lower_esgs_io_to_mem.c',
95
'ac_nir_lower_global_access.c',
96
'ac_nir_lower_tess_io_to_mem.c',
103
libamd_common = static_library(
105
[amd_common_files, sid_tables_h, amdgfxregs_h, gfx10_format_table_c],
106
include_directories : [
107
inc_include, inc_src, inc_mapi, inc_mesa, inc_gallium, inc_gallium_aux, inc_compiler, inc_mapi, inc_amd,
110
dep_thread, dep_elf, dep_libdrm_amdgpu, dep_valgrind,
111
idep_mesautil, idep_nir_headers, idep_nir
113
gnu_symbol_visibility : 'hidden',
114
c_args : ['-DADDR_FASTCALL=']
117
idep_amdgfxregs_h = declare_dependency(sources : [amdgfxregs_h])
120
if with_tests and not with_platform_windows
122
'ac_surface_modifier_test',
124
'ac_surface_modifier_test',
125
['ac_surface_modifier_test.c'],
126
link_with: [libamd_common, libamdgpu_addrlib],
127
include_directories : [
128
inc_amd, inc_gallium, inc_include, inc_src,
130
dependencies: [idep_amdgfxregs_h, dep_libdrm_amdgpu, idep_mesautil],
135
# Limit this to only a few architectures for the Gitlab CI.
136
if ['x86', 'x86_64', 'aarch64'].contains(host_machine.cpu_family())
138
'ac_surface_meta_address_test',
140
'ac_surface_meta_address_test',
141
['ac_surface_meta_address_test.c'],
142
link_with: [libamd_common, libamdgpu_addrlib],
143
include_directories : [
144
inc_amd, inc_gallium, inc_include, inc_src,
146
dependencies: [idep_amdgfxregs_h, dep_libdrm_amdgpu, idep_mesautil, dep_openmp],