1# Copyright © 2018 Rob Clark 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 21ir3_nir_trig_c = custom_target( 22 'ir3_nir_trig.c', 23 input : 'ir3_nir_trig.py', 24 output : 'ir3_nir_trig.c', 25 command : [ 26 prog_python, '@INPUT@', 27 '-p', join_paths(meson.source_root(), 'src/compiler/nir/'), 28 ], 29 capture : true, 30 depend_files : nir_algebraic_py, 31) 32 33libfreedreno_ir3_files = files( 34 'disasm-a3xx.c', 35 'instr-a3xx.h', 36 'ir3.c', 37 'ir3_a4xx.c', 38 'ir3_a6xx.c', 39 'ir3_compiler_nir.c', 40 'ir3_compiler.c', 41 'ir3_compiler.h', 42 'ir3_context.c', 43 'ir3_context.h', 44 'ir3_cp.c', 45 'ir3_depth.c', 46 'ir3_group.c', 47 'ir3_image.c', 48 'ir3_image.h', 49 'ir3.h', 50 'ir3_legalize.c', 51 'ir3_nir.c', 52 'ir3_nir.h', 53 'ir3_nir_analyze_ubo_ranges.c', 54 'ir3_nir_lower_load_barycentric_at_sample.c', 55 'ir3_nir_lower_load_barycentric_at_offset.c', 56 'ir3_nir_lower_io_offsets.c', 57 'ir3_nir_lower_tg4_to_tex.c', 58 'ir3_nir_move_varying_inputs.c', 59 'ir3_print.c', 60 'ir3_ra.c', 61 'ir3_sched.c', 62 'ir3_shader.c', 63 'ir3_shader.h', 64 'ir3_sun.c', 65) 66 67libfreedreno_ir3 = static_library( 68 'freedreno_ir3', 69 [libfreedreno_ir3_files, ir3_nir_trig_c], 70 include_directories : [inc_freedreno, inc_common], 71 c_args : [c_vis_args, no_override_init_args], 72 cpp_args : [cpp_vis_args], 73 dependencies : idep_nir_headers, 74 build_by_default : false, 75) 76 77