• Home
  • Line#
  • Scopes#
  • Navigate#
  • Raw
  • Download
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@', '-p', dir_compiler_nir,
27  ],
28  capture : true,
29  depend_files : nir_algebraic_depends,
30)
31
32ir3_nir_imul_c = custom_target(
33  'ir3_nir_imul.c',
34  input : 'ir3_nir_imul.py',
35  output : 'ir3_nir_imul.c',
36  command : [
37    prog_python, '@INPUT@', '-p', dir_compiler_nir,
38  ],
39  capture : true,
40  depend_files : nir_algebraic_depends,
41)
42
43ir3_parser = custom_target(
44  'ir3_parser.[ch]',
45  input: 'ir3_parser.y',
46  output: ['ir3_parser.c', 'ir3_parser.h'],
47  command: [
48    prog_bison, '@INPUT@', '--name-prefix=ir3_yy', '--defines=@OUTPUT1@', '--output=@OUTPUT0@'
49  ]
50)
51
52ir3_lexer = custom_target(
53  'ir3_lexer.c',
54  input: 'ir3_lexer.l',
55  output: 'ir3_lexer.c',
56  command: [
57    prog_flex, '-o', '@OUTPUT@', '@INPUT@'
58  ]
59)
60
61libfreedreno_ir3_files = files(
62  'disasm-a3xx.c',
63  'instr-a3xx.h',
64  'ir3.c',
65  'ir3_a4xx.c',
66  'ir3_a6xx.c',
67  'ir3_array_to_ssa.c',
68  'ir3_assembler.c',
69  'ir3_assembler.h',
70  'ir3_compiler_nir.c',
71  'ir3_compiler.c',
72  'ir3_compiler.h',
73  'ir3_context.c',
74  'ir3_context.h',
75  'ir3_cf.c',
76  'ir3_cp.c',
77  'ir3_cse.c',
78  'ir3_dce.c',
79  'ir3_delay.c',
80  'ir3_dominance.c',
81  'ir3_disk_cache.c',
82  'ir3_image.c',
83  'ir3_image.h',
84  'ir3.h',
85  'ir3_legalize.c',
86  'ir3_legalize_relative.c',
87  'ir3_liveness.c',
88  'ir3_lower_parallelcopy.c',
89  'ir3_lower_spill.c',
90  'ir3_lower_subgroups.c',
91  'ir3_merge_regs.c',
92  'ir3_nir.c',
93  'ir3_nir.h',
94  'ir3_nir_analyze_ubo_ranges.c',
95  'ir3_nir_lower_64b.c',
96  'ir3_nir_lower_driver_params_to_ubo.c',
97  'ir3_nir_lower_load_barycentric_at_sample.c',
98  'ir3_nir_lower_load_barycentric_at_offset.c',
99  'ir3_nir_lower_push_consts_to_preamble.c',
100  'ir3_nir_lower_io_offsets.c',
101  'ir3_nir_lower_tess.c',
102  'ir3_nir_lower_tex_prefetch.c',
103  'ir3_nir_lower_wide_load_store.c',
104  'ir3_nir_move_varying_inputs.c',
105  'ir3_nir_lower_layer_id.c',
106  'ir3_nir_opt_preamble.c',
107  'ir3_postsched.c',
108  'ir3_print.c',
109  'ir3_ra.c',
110  'ir3_ra.h',
111  'ir3_ra_validate.c',
112  'ir3_reconvergence.c',
113  'ir3_remove_unreachable.c',
114  'ir3_sched.c',
115  'ir3_shader.c',
116  'ir3_shader.h',
117  'ir3_shared_ra.c',
118  'ir3_spill.c',
119  'ir3_validate.c',
120)
121
122libfreedreno_ir3 = static_library(
123  'freedreno_ir3',
124  [libfreedreno_ir3_files, ir3_nir_trig_c, ir3_nir_imul_c, ir3_parser[0], ir3_parser[1], ir3_lexer],
125  include_directories : [inc_freedreno, inc_include, inc_src],
126  c_args : [no_override_init_args],
127  gnu_symbol_visibility : 'hidden',
128  link_with: [libir3decode, libir3encode, libfreedreno_common],
129  dependencies : [idep_nir_headers, dep_dl, idep_mesautil],
130  build_by_default : false,
131)
132
133test('ir3_disasm',
134  executable(
135    'ir3_disasm',
136    'tests/disasm.c',
137    link_args : [ld_args_build_id],
138    link_with: [libfreedreno_ir3, libir3decode],
139    dependencies: [idep_mesautil, idep_nir],
140    include_directories: [inc_freedreno, inc_include, inc_src],
141  ),
142  suite: ['freedreno'],
143)
144
145test('ir3_delay_test',
146  executable(
147    'ir3_delay_test',
148    'tests/delay.c',
149    link_with: libfreedreno_ir3,
150    link_args: ld_args_build_id,
151    dependencies: [idep_mesautil, idep_nir],
152    include_directories: [inc_freedreno, inc_include, inc_src],
153  ),
154  suite: ['freedreno'],
155)
156