nir/spirv: Add support for device groups
[mesa.git] / src / compiler / shader_info.h
1 /*
2 * Copyright © 2016 Intel Corporation
3 *
4 * Permission is hereby granted, free of charge, to any person obtaining a
5 * copy of this software and associated documentation files (the "Software"),
6 * to deal in the Software without restriction, including without limitation
7 * the rights to use, copy, modify, merge, publish, distribute, sublicense,
8 * and/or sell copies of the Software, and to permit persons to whom the
9 * Software is furnished to do so, subject to the following conditions:
10 *
11 * The above copyright notice and this permission notice (including the next
12 * paragraph) shall be included in all copies or substantial portions of the
13 * Software.
14 *
15 * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
16 * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
17 * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL
18 * THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
19 * LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING
20 * FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS
21 * IN THE SOFTWARE.
22 *
23 */
24
25 #ifndef SHADER_INFO_H
26 #define SHADER_INFO_H
27
28 #include "shader_enums.h"
29 #include <stdint.h>
30
31 #ifdef __cplusplus
32 extern "C" {
33 #endif
34
35 struct spirv_supported_capabilities {
36 bool float64;
37 bool image_ms_array;
38 bool tessellation;
39 bool device_group;
40 bool draw_parameters;
41 bool image_read_without_format;
42 bool image_write_without_format;
43 bool int64;
44 bool multiview;
45 bool variable_pointers;
46 bool storage_16bit;
47 bool shader_viewport_index_layer;
48 };
49
50 typedef struct shader_info {
51 const char *name;
52
53 /* Descriptive name provided by the client; may be NULL */
54 const char *label;
55
56 /** The shader stage, such as MESA_SHADER_VERTEX. */
57 gl_shader_stage stage;
58
59 /* Number of textures used by this shader */
60 unsigned num_textures;
61 /* Number of uniform buffers used by this shader */
62 unsigned num_ubos;
63 /* Number of atomic buffers used by this shader */
64 unsigned num_abos;
65 /* Number of shader storage buffers used by this shader */
66 unsigned num_ssbos;
67 /* Number of images used by this shader */
68 unsigned num_images;
69
70 /* Which inputs are actually read */
71 uint64_t inputs_read;
72 /* Which outputs are actually written */
73 uint64_t outputs_written;
74 /* Which outputs are actually read */
75 uint64_t outputs_read;
76 /* Which system values are actually read */
77 uint64_t system_values_read;
78
79 /* Which patch inputs are actually read */
80 uint32_t patch_inputs_read;
81 /* Which patch outputs are actually written */
82 uint32_t patch_outputs_written;
83 /* Which patch outputs are read */
84 uint32_t patch_outputs_read;
85
86 /* Whether or not this shader ever uses textureGather() */
87 bool uses_texture_gather;
88
89 /** Bitfield of which textures are used by texelFetch() */
90 uint32_t textures_used_by_txf;
91
92 /**
93 * True if this shader uses the fddx/fddy opcodes.
94 *
95 * Note that this does not include the "fine" and "coarse" variants.
96 */
97 bool uses_fddx_fddy;
98
99 /* The size of the gl_ClipDistance[] array, if declared. */
100 unsigned clip_distance_array_size;
101
102 /* The size of the gl_CullDistance[] array, if declared. */
103 unsigned cull_distance_array_size;
104
105 /* Whether or not separate shader objects were used */
106 bool separate_shader;
107
108 /** Was this shader linked with any transform feedback varyings? */
109 bool has_transform_feedback_varyings;
110
111 union {
112 struct {
113 /* Which inputs are doubles */
114 uint64_t double_inputs;
115
116 /* Which inputs are actually read and are double */
117 uint64_t double_inputs_read;
118 } vs;
119
120 struct {
121 /** The number of vertices recieves per input primitive */
122 unsigned vertices_in;
123
124 /** The output primitive type (GL enum value) */
125 unsigned output_primitive;
126
127 /** The input primitive type (GL enum value) */
128 unsigned input_primitive;
129
130 /** The maximum number of vertices the geometry shader might write. */
131 unsigned vertices_out;
132
133 /** 1 .. MAX_GEOMETRY_SHADER_INVOCATIONS */
134 unsigned invocations;
135
136 /** Whether or not this shader uses EndPrimitive */
137 bool uses_end_primitive;
138
139 /** Whether or not this shader uses non-zero streams */
140 bool uses_streams;
141 } gs;
142
143 struct {
144 bool uses_discard;
145
146 /**
147 * Whether any inputs are declared with the "sample" qualifier.
148 */
149 bool uses_sample_qualifier;
150
151 /**
152 * Whether early fragment tests are enabled as defined by
153 * ARB_shader_image_load_store.
154 */
155 bool early_fragment_tests;
156
157 /**
158 * Defined by INTEL_conservative_rasterization.
159 */
160 bool inner_coverage;
161
162 bool post_depth_coverage;
163
164 bool pixel_center_integer;
165
166 /** gl_FragDepth layout for ARB_conservative_depth. */
167 enum gl_frag_depth_layout depth_layout;
168 } fs;
169
170 struct {
171 unsigned local_size[3];
172
173 bool local_size_variable;
174
175 /**
176 * Size of shared variables accessed by the compute shader.
177 */
178 unsigned shared_size;
179 } cs;
180
181 /* Applies to both TCS and TES. */
182 struct {
183 /** The number of vertices in the TCS output patch. */
184 unsigned tcs_vertices_out;
185
186 uint32_t primitive_mode; /* GL_TRIANGLES, GL_QUADS or GL_ISOLINES */
187 enum gl_tess_spacing spacing;
188 /** Is the vertex order counterclockwise? */
189 bool ccw;
190 bool point_mode;
191 } tess;
192 };
193 } shader_info;
194
195 #ifdef __cplusplus
196 }
197 #endif
198
199 #endif /* SHADER_INFO_H */