tgsi: clean up tgsi_scan_shader() function
[mesa.git] / src / gallium / auxiliary / tgsi / tgsi_scan.c
1 /**************************************************************************
2 *
3 * Copyright 2008 Tungsten Graphics, Inc., Cedar Park, Texas.
4 * All Rights Reserved.
5 * Copyright 2008 VMware, Inc. All rights Reserved.
6 *
7 * Permission is hereby granted, free of charge, to any person obtaining a
8 * copy of this software and associated documentation files (the
9 * "Software"), to deal in the Software without restriction, including
10 * without limitation the rights to use, copy, modify, merge, publish,
11 * distribute, sub license, and/or sell copies of the Software, and to
12 * permit persons to whom the Software is furnished to do so, subject to
13 * the following conditions:
14 *
15 * The above copyright notice and this permission notice (including the
16 * next paragraph) shall be included in all copies or substantial portions
17 * of the Software.
18 *
19 * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS
20 * OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
21 * MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NON-INFRINGEMENT.
22 * IN NO EVENT SHALL TUNGSTEN GRAPHICS AND/OR ITS SUPPLIERS BE LIABLE FOR
23 * ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT,
24 * TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE
25 * SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
26 *
27 **************************************************************************/
28
29 /**
30 * TGSI program scan utility.
31 * Used to determine which registers and instructions are used by a shader.
32 *
33 * Authors: Brian Paul
34 */
35
36
37 #include "util/u_debug.h"
38 #include "util/u_math.h"
39 #include "util/u_prim.h"
40 #include "tgsi/tgsi_parse.h"
41 #include "tgsi/tgsi_util.h"
42 #include "tgsi/tgsi_scan.h"
43
44
45
46
47 /**
48 * Scan the given TGSI shader to collect information such as number of
49 * registers used, special instructions used, etc.
50 * \return info the result of the scan
51 */
52 void
53 tgsi_scan_shader(const struct tgsi_token *tokens,
54 struct tgsi_shader_info *info)
55 {
56 uint procType, i;
57 struct tgsi_parse_context parse;
58
59 memset(info, 0, sizeof(*info));
60 for (i = 0; i < TGSI_FILE_COUNT; i++)
61 info->file_max[i] = -1;
62
63 /**
64 ** Setup to begin parsing input shader
65 **/
66 if (tgsi_parse_init( &parse, tokens ) != TGSI_PARSE_OK) {
67 debug_printf("tgsi_parse_init() failed in tgsi_scan_shader()!\n");
68 return;
69 }
70 procType = parse.FullHeader.Processor.Processor;
71 assert(procType == TGSI_PROCESSOR_FRAGMENT ||
72 procType == TGSI_PROCESSOR_VERTEX ||
73 procType == TGSI_PROCESSOR_GEOMETRY ||
74 procType == TGSI_PROCESSOR_COMPUTE);
75 info->processor = procType;
76
77
78 /**
79 ** Loop over incoming program tokens/instructions
80 */
81 while( !tgsi_parse_end_of_tokens( &parse ) ) {
82
83 info->num_tokens++;
84
85 tgsi_parse_token( &parse );
86
87 switch( parse.FullToken.Token.Type ) {
88 case TGSI_TOKEN_TYPE_INSTRUCTION:
89 {
90 const struct tgsi_full_instruction *fullinst
91 = &parse.FullToken.FullInstruction;
92 uint i;
93
94 assert(fullinst->Instruction.Opcode < TGSI_OPCODE_LAST);
95 info->opcode_count[fullinst->Instruction.Opcode]++;
96
97 for (i = 0; i < fullinst->Instruction.NumSrcRegs; i++) {
98 const struct tgsi_full_src_register *src =
99 &fullinst->Src[i];
100 int ind = src->Register.Index;
101
102 /* Mark which inputs are effectively used */
103 if (src->Register.File == TGSI_FILE_INPUT) {
104 unsigned usage_mask;
105 usage_mask = tgsi_util_get_inst_usage_mask(fullinst, i);
106 if (src->Register.Indirect) {
107 for (ind = 0; ind < info->num_inputs; ++ind) {
108 info->input_usage_mask[ind] |= usage_mask;
109 }
110 } else {
111 assert(ind >= 0);
112 assert(ind < PIPE_MAX_SHADER_INPUTS);
113 info->input_usage_mask[ind] |= usage_mask;
114 }
115
116 if (procType == TGSI_PROCESSOR_FRAGMENT &&
117 src->Register.File == TGSI_FILE_INPUT &&
118 info->reads_position &&
119 src->Register.Index == 0 &&
120 (src->Register.SwizzleX == TGSI_SWIZZLE_Z ||
121 src->Register.SwizzleY == TGSI_SWIZZLE_Z ||
122 src->Register.SwizzleZ == TGSI_SWIZZLE_Z ||
123 src->Register.SwizzleW == TGSI_SWIZZLE_Z)) {
124 info->reads_z = TRUE;
125 }
126 }
127
128 /* check for indirect register reads */
129 if (src->Register.Indirect) {
130 info->indirect_files |= (1 << src->Register.File);
131 }
132 }
133
134 /* check for indirect register writes */
135 for (i = 0; i < fullinst->Instruction.NumDstRegs; i++) {
136 const struct tgsi_full_dst_register *dst = &fullinst->Dst[i];
137 if (dst->Register.Indirect) {
138 info->indirect_files |= (1 << dst->Register.File);
139 }
140 }
141
142 info->num_instructions++;
143 }
144 break;
145
146 case TGSI_TOKEN_TYPE_DECLARATION:
147 {
148 const struct tgsi_full_declaration *fulldecl
149 = &parse.FullToken.FullDeclaration;
150 const uint file = fulldecl->Declaration.File;
151 uint reg;
152 for (reg = fulldecl->Range.First;
153 reg <= fulldecl->Range.Last;
154 reg++) {
155 unsigned semName = fulldecl->Semantic.Name;
156 unsigned semIndex = fulldecl->Semantic.Index;
157
158 /* only first 32 regs will appear in this bitfield */
159 info->file_mask[file] |= (1 << reg);
160 info->file_count[file]++;
161 info->file_max[file] = MAX2(info->file_max[file], (int)reg);
162
163 if (file == TGSI_FILE_INPUT) {
164 info->input_semantic_name[reg] = (ubyte) semName;
165 info->input_semantic_index[reg] = (ubyte) semIndex;
166 info->input_interpolate[reg] = (ubyte)fulldecl->Interp.Interpolate;
167 info->input_centroid[reg] = (ubyte)fulldecl->Interp.Centroid;
168 info->input_cylindrical_wrap[reg] = (ubyte)fulldecl->Interp.CylindricalWrap;
169 info->num_inputs++;
170
171 if (procType == TGSI_PROCESSOR_FRAGMENT) {
172 if (semName == TGSI_SEMANTIC_POSITION)
173 info->reads_position = TRUE;
174 else if (semName == TGSI_SEMANTIC_PRIMID)
175 info->uses_primid = TRUE;
176 else if (semName == TGSI_SEMANTIC_FACE)
177 info->uses_frontface = TRUE;
178 }
179 }
180 else if (file == TGSI_FILE_SYSTEM_VALUE) {
181 unsigned index = fulldecl->Range.First;
182
183 info->system_value_semantic_name[index] = semName;
184 info->num_system_values = MAX2(info->num_system_values,
185 index + 1);
186
187 if (semName == TGSI_SEMANTIC_INSTANCEID) {
188 info->uses_instanceid = TRUE;
189 }
190 else if (semName == TGSI_SEMANTIC_VERTEXID) {
191 info->uses_vertexid = TRUE;
192 }
193 else if (semName == TGSI_SEMANTIC_PRIMID) {
194 info->uses_primid = TRUE;
195 }
196 }
197 else if (file == TGSI_FILE_OUTPUT) {
198 info->output_semantic_name[reg] = (ubyte) semName;
199 info->output_semantic_index[reg] = (ubyte) semIndex;
200 info->num_outputs++;
201
202 if (procType == TGSI_PROCESSOR_VERTEX ||
203 procType == TGSI_PROCESSOR_GEOMETRY) {
204 if (semName == TGSI_SEMANTIC_CLIPDIST) {
205 info->num_written_clipdistance +=
206 util_bitcount(fulldecl->Declaration.UsageMask);
207 }
208 else if (semName == TGSI_SEMANTIC_CULLDIST) {
209 info->num_written_culldistance +=
210 util_bitcount(fulldecl->Declaration.UsageMask);
211 }
212 }
213
214 if (procType == TGSI_PROCESSOR_FRAGMENT) {
215 if (semName == TGSI_SEMANTIC_POSITION) {
216 info->writes_z = TRUE;
217 }
218 else if (semName == TGSI_SEMANTIC_STENCIL) {
219 info->writes_stencil = TRUE;
220 }
221 }
222
223 if (procType == TGSI_PROCESSOR_VERTEX) {
224 if (semName == TGSI_SEMANTIC_EDGEFLAG) {
225 info->writes_edgeflag = TRUE;
226 }
227 }
228
229 if (procType == TGSI_PROCESSOR_GEOMETRY) {
230 if (semName == TGSI_SEMANTIC_VIEWPORT_INDEX) {
231 info->writes_viewport_index = TRUE;
232 }
233 else if (semName == TGSI_SEMANTIC_LAYER) {
234 info->writes_layer = TRUE;
235 }
236 }
237 }
238 }
239 }
240 break;
241
242 case TGSI_TOKEN_TYPE_IMMEDIATE:
243 {
244 uint reg = info->immediate_count++;
245 uint file = TGSI_FILE_IMMEDIATE;
246
247 info->file_mask[file] |= (1 << reg);
248 info->file_count[file]++;
249 info->file_max[file] = MAX2(info->file_max[file], (int)reg);
250 }
251 break;
252
253 case TGSI_TOKEN_TYPE_PROPERTY:
254 {
255 const struct tgsi_full_property *fullprop
256 = &parse.FullToken.FullProperty;
257
258 info->properties[info->num_properties].name =
259 fullprop->Property.PropertyName;
260 memcpy(info->properties[info->num_properties].data,
261 fullprop->u, 8 * sizeof(unsigned));;
262
263 ++info->num_properties;
264 }
265 break;
266
267 default:
268 assert( 0 );
269 }
270 }
271
272 info->uses_kill = (info->opcode_count[TGSI_OPCODE_KILL_IF] ||
273 info->opcode_count[TGSI_OPCODE_KILL]);
274
275 /* extract simple properties */
276 for (i = 0; i < info->num_properties; ++i) {
277 switch (info->properties[i].name) {
278 case TGSI_PROPERTY_FS_COORD_ORIGIN:
279 info->origin_lower_left = info->properties[i].data[0];
280 break;
281 case TGSI_PROPERTY_FS_COORD_PIXEL_CENTER:
282 info->pixel_center_integer = info->properties[i].data[0];
283 break;
284 case TGSI_PROPERTY_FS_COLOR0_WRITES_ALL_CBUFS:
285 info->color0_writes_all_cbufs = info->properties[i].data[0];
286 break;
287 case TGSI_PROPERTY_GS_INPUT_PRIM:
288 /* The dimensions of the IN decleration in geometry shader have
289 * to be deduced from the type of the input primitive.
290 */
291 if (procType == TGSI_PROCESSOR_GEOMETRY) {
292 unsigned input_primitive = info->properties[i].data[0];
293 int num_verts = u_vertices_per_prim(input_primitive);
294 int j;
295 info->file_count[TGSI_FILE_INPUT] = num_verts;
296 info->file_max[TGSI_FILE_INPUT] =
297 MAX2(info->file_max[TGSI_FILE_INPUT], num_verts - 1);
298 for (j = 0; j < num_verts; ++j) {
299 info->file_mask[TGSI_FILE_INPUT] |= (1 << j);
300 }
301 }
302 break;
303 default:
304 ;
305 }
306 }
307
308 tgsi_parse_free (&parse);
309 }
310
311
312
313 /**
314 * Check if the given shader is a "passthrough" shader consisting of only
315 * MOV instructions of the form: MOV OUT[n], IN[n]
316 *
317 */
318 boolean
319 tgsi_is_passthrough_shader(const struct tgsi_token *tokens)
320 {
321 struct tgsi_parse_context parse;
322
323 /**
324 ** Setup to begin parsing input shader
325 **/
326 if (tgsi_parse_init(&parse, tokens) != TGSI_PARSE_OK) {
327 debug_printf("tgsi_parse_init() failed in tgsi_is_passthrough_shader()!\n");
328 return FALSE;
329 }
330
331 /**
332 ** Loop over incoming program tokens/instructions
333 */
334 while (!tgsi_parse_end_of_tokens(&parse)) {
335
336 tgsi_parse_token(&parse);
337
338 switch (parse.FullToken.Token.Type) {
339 case TGSI_TOKEN_TYPE_INSTRUCTION:
340 {
341 struct tgsi_full_instruction *fullinst =
342 &parse.FullToken.FullInstruction;
343 const struct tgsi_full_src_register *src =
344 &fullinst->Src[0];
345 const struct tgsi_full_dst_register *dst =
346 &fullinst->Dst[0];
347
348 /* Do a whole bunch of checks for a simple move */
349 if (fullinst->Instruction.Opcode != TGSI_OPCODE_MOV ||
350 (src->Register.File != TGSI_FILE_INPUT &&
351 src->Register.File != TGSI_FILE_SYSTEM_VALUE) ||
352 dst->Register.File != TGSI_FILE_OUTPUT ||
353 src->Register.Index != dst->Register.Index ||
354
355 src->Register.Negate ||
356 src->Register.Absolute ||
357
358 src->Register.SwizzleX != TGSI_SWIZZLE_X ||
359 src->Register.SwizzleY != TGSI_SWIZZLE_Y ||
360 src->Register.SwizzleZ != TGSI_SWIZZLE_Z ||
361 src->Register.SwizzleW != TGSI_SWIZZLE_W ||
362
363 dst->Register.WriteMask != TGSI_WRITEMASK_XYZW)
364 {
365 tgsi_parse_free(&parse);
366 return FALSE;
367 }
368 }
369 break;
370
371 case TGSI_TOKEN_TYPE_DECLARATION:
372 /* fall-through */
373 case TGSI_TOKEN_TYPE_IMMEDIATE:
374 /* fall-through */
375 case TGSI_TOKEN_TYPE_PROPERTY:
376 /* fall-through */
377 default:
378 ; /* no-op */
379 }
380 }
381
382 tgsi_parse_free(&parse);
383
384 /* if we get here, it's a pass-through shader */
385 return TRUE;
386 }