panfrost/midgard: Flush undefineds to zero
[mesa.git] / src / gallium / drivers / panfrost / meson.build
1 # Copyright © 2017 Intel Corporation
2 # Copyright © 2018 Alyssa Rosenzweig
3
4 # Permission is hereby granted, free of charge, to any person obtaining a copy
5 # of this software and associated documentation files (the "Software"), to deal
6 # in the Software without restriction, including without limitation the rights
7 # to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
8 # copies of the Software, and to permit persons to whom the Software is
9 # furnished to do so, subject to the following conditions:
10
11 # The above copyright notice and this permission notice shall be included in
12 # all copies or substantial portions of the Software.
13
14 # THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
15 # IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
16 # FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
17 # AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
18 # LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
19 # OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
20 # SOFTWARE.
21
22 files_panfrost = files(
23 'pan_public.h',
24 'pan_screen.c',
25 'pan_screen.h',
26 'pan_resource.c',
27 'pan_resource.h',
28
29 'midgard/midgard_compile.c',
30 'midgard/mir.c',
31 'midgard/midgard_print.c',
32 'midgard/midgard_schedule.c',
33 'midgard/midgard_emit.c',
34 'midgard/midgard_ra.c',
35 'midgard/midgard_ra_pipeline.c',
36 'midgard/midgard_liveness.c',
37 'midgard/midgard_ops.c',
38
39 'midgard/nir_undef_to_zero.c',
40 'midgard/nir_lower_blend.c',
41 'midgard/nir_lower_framebuffer.c',
42 'midgard/cppwrap.cpp',
43 'midgard/disassemble.c',
44
45 'bifrost/disassemble.c',
46
47 'pandecode/common.c',
48 'pandecode/decode.c',
49
50 'pan_context.c',
51 'pan_afbc.c',
52 'pan_blit.c',
53 'pan_job.c',
54 'pan_drm.c',
55 'pan_allocate.c',
56 'pan_assemble.c',
57 'pan_format.c',
58 'pan_blending.c',
59 'pan_blend_shaders.c',
60 'pan_blend_cso.c',
61 'pan_pretty_print.c',
62 'pan_fragment.c',
63 'pan_invocation.c',
64 'pan_instancing.c',
65 'pan_scoreboard.c',
66 'pan_sfbd.c',
67 'pan_mfbd.c',
68 'pan_tiler.c',
69 )
70
71 panfrost_includes = [
72 inc_common,
73 inc_gallium,
74 inc_gallium_aux,
75 inc_include,
76 inc_src,
77 inc_panfrost,
78 include_directories('include'),
79 include_directories('midgard'),
80 include_directories('bifrost'),
81 ]
82
83 compile_args_panfrost = [
84 '-DGALLIUM_PANFROST',
85 '-Wno-pointer-arith'
86 ]
87
88 midgard_nir_algebraic_c = custom_target(
89 'midgard_nir_algebraic.c',
90 input : 'midgard/midgard_nir_algebraic.py',
91 output : 'midgard_nir_algebraic.c',
92 command : [
93 prog_python, '@INPUT@',
94 '-p', join_paths(meson.source_root(), 'src/compiler/nir/'),
95 ],
96 capture : true,
97 depend_files : nir_algebraic_py,
98 )
99
100 libpanfrost = static_library(
101 'panfrost',
102 [files_panfrost, midgard_nir_algebraic_c],
103 dependencies: [
104 dep_thread,
105 dep_libdrm,
106 idep_nir
107 ],
108 include_directories : panfrost_includes,
109 c_args : [c_vis_args, c_msvc_compat_args, compile_args_panfrost],
110 )
111
112 driver_panfrost = declare_dependency(
113 compile_args : compile_args_panfrost,
114 link_with : [libpanfrost, libpanfrostwinsys, libpanfrost_shared],
115 )
116
117 files_bifrost = files(
118 'bifrost/disassemble.c',
119 'bifrost/cmdline.c',
120 )
121
122 bifrost_compiler = executable(
123 'bifrost_compiler',
124 [files_bifrost],
125 include_directories : [
126 inc_common,
127 inc_src,
128 inc_include,
129 inc_gallium,
130 inc_gallium_aux,
131 include_directories('bifrost')
132 ],
133 dependencies : [
134 dep_thread,
135 idep_nir
136 ],
137 link_with : [
138 libgallium,
139 libglsl_standalone,
140 libmesa_util
141 ],
142 build_by_default : true
143 )
144
145 files_pandecode = files(
146 'pandecode/cmdline.c',
147 'pandecode/common.c',
148 'pandecode/decode.c',
149
150 'pan_pretty_print.c',
151
152 'midgard/disassemble.c',
153 'midgard/midgard_ops.c',
154 'bifrost/disassemble.c',
155 )
156
157 pandecode = executable(
158 'pandecode',
159 files_pandecode,
160 include_directories : panfrost_includes,
161 dependencies : [
162 dep_thread,
163 ],
164 link_with : [
165 libmesa_util
166 ],
167 build_by_default : true
168 )