freedreno/ir3: Move ir3 assembler to backend compiler
[mesa.git] / src / freedreno / ir3 / meson.build
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
21 ir3_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
33 ir3_nir_imul_c = custom_target(
34 'ir3_nir_imul.c',
35 input : 'ir3_nir_imul.py',
36 output : 'ir3_nir_imul.c',
37 command : [
38 prog_python, '@INPUT@',
39 '-p', join_paths(meson.source_root(), 'src/compiler/nir/'),
40 ],
41 capture : true,
42 depend_files : nir_algebraic_py,
43 )
44
45 ir3_parser = custom_target(
46 'ir3_parser.[ch]',
47 input: 'ir3_parser.y',
48 output: ['ir3_parser.c', 'ir3_parser.h'],
49 command: [
50 prog_bison, '@INPUT@', '--name-prefix=ir3_yy', '--defines=@OUTPUT1@', '--output=@OUTPUT0@'
51 ]
52 )
53
54 ir3_lexer = custom_target(
55 'ir3_lexer.c',
56 input: 'ir3_lexer.l',
57 output: 'ir3_lexer.c',
58 command: [
59 prog_flex, '-o', '@OUTPUT@', '@INPUT@'
60 ]
61 )
62
63 libfreedreno_ir3_files = files(
64 'disasm-a3xx.c',
65 'instr-a3xx.h',
66 'ir3.c',
67 'ir3_a4xx.c',
68 'ir3_a6xx.c',
69 'ir3_compiler_nir.c',
70 'ir3_compiler.c',
71 'ir3_compiler.h',
72 'ir3_context.c',
73 'ir3_context.h',
74 'ir3_cf.c',
75 'ir3_cp.c',
76 'ir3_dce.c',
77 'ir3_delay.c',
78 'ir3_group.c',
79 'ir3_image.c',
80 'ir3_image.h',
81 'ir3.h',
82 'ir3_legalize.c',
83 'ir3_nir.c',
84 'ir3_nir.h',
85 'ir3_nir_analyze_ubo_ranges.c',
86 'ir3_nir_lower_load_barycentric_at_sample.c',
87 'ir3_nir_lower_load_barycentric_at_offset.c',
88 'ir3_nir_lower_io_offsets.c',
89 'ir3_nir_lower_tess.c',
90 'ir3_nir_lower_tex_prefetch.c',
91 'ir3_nir_lower_tg4_to_tex.c',
92 'ir3_nir_move_varying_inputs.c',
93 'ir3_postsched.c',
94 'ir3_print.c',
95 'ir3_ra.c',
96 'ir3_ra.h',
97 'ir3_ra_regset.c',
98 'ir3_sched.c',
99 'ir3_shader.c',
100 'ir3_shader.h',
101 'ir3_sun.c',
102 )
103
104 libfreedreno_ir3 = static_library(
105 'freedreno_ir3',
106 [libfreedreno_ir3_files, ir3_nir_trig_c, ir3_nir_imul_c, ir3_parser[0], ir3_parser[1], ir3_lexer],
107 include_directories : [inc_freedreno, inc_include, inc_src, inc_mapi, inc_mesa, inc_gallium, inc_gallium_aux],
108 c_args : [c_vis_args, no_override_init_args],
109 cpp_args : [cpp_vis_args],
110 dependencies : idep_nir_headers,
111 build_by_default : false,
112 )
113