| # Copyright © 2018 Rob Clark |
| # Copyright © 2019 Collabora |
| |
| # Permission is hereby granted, free of charge, to any person obtaining a copy |
| # of this software and associated documentation files (the "Software"), to deal |
| # in the Software without restriction, including without limitation the rights |
| # to use, copy, modify, merge, publish, distribute, sublicense, and/or sell |
| # copies of the Software, and to permit persons to whom the Software is |
| # furnished to do so, subject to the following conditions: |
| |
| # The above copyright notice and this permission notice shall be included in |
| # all copies or substantial portions of the Software. |
| |
| # THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR |
| # IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, |
| # FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE |
| # AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER |
| # LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, |
| # OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE |
| # SOFTWARE. |
| |
| libasahi_agx_files = files( |
| 'agx_compile.c', |
| 'agx_dce.c', |
| 'agx_liveness.c', |
| 'agx_nir_lower_array_texture.c', |
| 'agx_nir_opt_preamble.c', |
| 'agx_lower_64bit.c', |
| 'agx_lower_resinfo.c', |
| 'agx_lower_parallel_copy.c', |
| 'agx_lower_pseudo.c', |
| 'agx_pack.c', |
| 'agx_print.c', |
| 'agx_optimizer.c', |
| 'agx_register_allocate.c', |
| 'agx_uniforms.c', |
| 'agx_validate.c', |
| ) |
| |
| agx_opcodes_h = custom_target( |
| 'agx_opcodes.h', |
| input : ['agx_opcodes.h.py'], |
| output : 'agx_opcodes.h', |
| command : [prog_python, '@INPUT@'], |
| capture : true, |
| depend_files : files('agx_opcodes.py'), |
| ) |
| |
| idep_agx_opcodes_h = declare_dependency( |
| sources : [agx_opcodes_h], |
| include_directories : include_directories('.'), |
| ) |
| |
| agx_opcodes_c = custom_target( |
| 'agx_opcodes.c', |
| input : ['agx_opcodes.c.py'], |
| output : 'agx_opcodes.c', |
| command : [prog_python, '@INPUT@'], |
| capture : true, |
| depend_files : files('agx_opcodes.py'), |
| ) |
| |
| agx_builder_h = custom_target( |
| 'agx_builder.h', |
| input : ['agx_builder.h.py'], |
| output : 'agx_builder.h', |
| command : [prog_python, '@INPUT@'], |
| capture : true, |
| depend_files : files('agx_opcodes.py'), |
| ) |
| |
| idep_agx_builder_h = declare_dependency( |
| sources : [agx_builder_h], |
| include_directories : include_directories('.'), |
| ) |
| |
| libasahi_compiler = static_library( |
| 'asahi_compiler', |
| [libasahi_agx_files, agx_opcodes_c], |
| include_directories : [inc_include, inc_src, inc_mesa, inc_gallium, inc_gallium_aux, inc_mapi], |
| dependencies: [idep_nir, idep_agx_opcodes_h, idep_agx_builder_h, idep_agx_pack], |
| c_args : [no_override_init_args], |
| gnu_symbol_visibility : 'hidden', |
| build_by_default : false, |
| ) |
| |
| if with_tests |
| test( |
| 'agx_tests', |
| executable( |
| 'agx_tests', |
| files( |
| 'test/test-minifloat.cpp', |
| 'test/test-optimizer.cpp', |
| 'test/test-lower-pseudo.cpp', |
| 'test/test-lower-parallel-copy.cpp', |
| ), |
| c_args : [c_msvc_compat_args, no_override_init_args], |
| gnu_symbol_visibility : 'hidden', |
| include_directories : [inc_include, inc_src, inc_mesa], |
| dependencies: [idep_gtest, idep_nir, idep_agx_opcodes_h, idep_agx_builder_h], |
| link_with : [libasahi_compiler], |
| ), |
| suite : ['asahi'], |
| protocol : gtest_test_protocol, |
| ) |
| endif |