1# Copyright © 2020 Valve 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. 20aco_tests_files = files( 21 'framework.h', 22 'helpers.cpp', 23 'helpers.h', 24 'main.cpp', 25 'test_assembler.cpp', 26 'test_builder.cpp', 27 'test_d3d11_derivs.cpp', 28 'test_hard_clause.cpp', 29 'test_insert_nops.cpp', 30 'test_insert_waitcnt.cpp', 31 'test_isel.cpp', 32 'test_optimizer.cpp', 33 'test_reduce_assign.cpp', 34 'test_regalloc.cpp', 35 'test_optimizer_postRA.cpp', 36 'test_scheduler.cpp', 37 'test_sdwa.cpp', 38 'test_to_hw_instr.cpp', 39 'test_tests.cpp', 40) 41 42spirv_files = files( 43 'test_isel.cpp', 44 'test_d3d11_derivs.cpp', 45) 46 47gen_spirv = generator(prog_python, 48 output : '@BASENAME@-spirv.h', 49 arguments : [join_paths(meson.current_source_dir(), 'glsl_scraper.py'), 50 '@INPUT@', '--with-glslang', prog_glslang.full_path(), '-o', '@OUTPUT@']) 51gen_spirv_files = gen_spirv.process(spirv_files) 52 53test( 54 'aco_tests', 55 executable( 56 'aco_tests', 57 [aco_tests_files, gen_spirv_files], 58 cpp_args : ['-DACO_TEST_SOURCE_DIR="@0@"'.format(meson.current_source_dir()), 59 '-DACO_TEST_BUILD_ROOT="@0@"'.format(meson.project_build_root()), 60 '-DACO_TEST_PYTHON_BIN="@0@"'.format(prog_python.full_path())] + 61 cpp_args_aco, 62 include_directories : [ 63 inc_include, inc_src, inc_amd, inc_amd_common, inc_amd_common_llvm, 64 ], 65 link_with : [ 66 libamd_common, libamd_common_llvm, libvulkan_radeon, 67 ], 68 dependencies : [ 69 dep_llvm, dep_thread, idep_aco, idep_nir, idep_mesautil, idep_vulkan_util_headers, idep_amdgfxregs_h, 70 ], 71 gnu_symbol_visibility : 'hidden', 72 build_by_default : true, 73 ), 74 suite : ['amd', 'compiler'], 75) 76