tgsi: print TGSI_PROPERTY_NEXT_SHADER value as string, not an integer
[mesa.git] / src / gallium / auxiliary / tgsi / tgsi_dump.c
1 /**************************************************************************
2 *
3 * Copyright 2007-2008 VMware, Inc.
4 * All Rights Reserved.
5 *
6 * Permission is hereby granted, free of charge, to any person obtaining a
7 * copy of this software and associated documentation files (the
8 * "Software"), to deal in the Software without restriction, including
9 * without limitation the rights to use, copy, modify, merge, publish,
10 * distribute, sub license, and/or sell copies of the Software, and to
11 * permit persons to whom the Software is furnished to do so, subject to
12 * the following conditions:
13 *
14 * The above copyright notice and this permission notice (including the
15 * next paragraph) shall be included in all copies or substantial portions
16 * of the Software.
17 *
18 * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS
19 * OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
20 * MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NON-INFRINGEMENT.
21 * IN NO EVENT SHALL VMWARE AND/OR ITS SUPPLIERS BE LIABLE FOR
22 * ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT,
23 * TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE
24 * SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
25 *
26 **************************************************************************/
27
28 #include "util/u_debug.h"
29 #include "util/u_string.h"
30 #include "util/u_math.h"
31 #include "util/u_memory.h"
32 #include "util/u_math.h"
33 #include "tgsi_dump.h"
34 #include "tgsi_info.h"
35 #include "tgsi_iterate.h"
36 #include "tgsi_strings.h"
37
38
39 /** Number of spaces to indent for IF/LOOP/etc */
40 static const int indent_spaces = 3;
41
42
43 struct dump_ctx
44 {
45 struct tgsi_iterate_context iter;
46
47 boolean dump_float_as_hex;
48
49 uint instno;
50 uint immno;
51 int indent;
52
53 uint indentation;
54 FILE *file;
55
56 void (*dump_printf)(struct dump_ctx *ctx, const char *format, ...);
57 };
58
59 static void
60 dump_ctx_printf(struct dump_ctx *ctx, const char *format, ...)
61 {
62 va_list ap;
63 (void)ctx;
64 va_start(ap, format);
65 if (ctx->file)
66 vfprintf(ctx->file, format, ap);
67 else
68 _debug_vprintf(format, ap);
69 va_end(ap);
70 }
71
72 static void
73 dump_enum(
74 struct dump_ctx *ctx,
75 uint e,
76 const char **enums,
77 uint enum_count )
78 {
79 if (e >= enum_count)
80 ctx->dump_printf( ctx, "%u", e );
81 else
82 ctx->dump_printf( ctx, "%s", enums[e] );
83 }
84
85 #define EOL() ctx->dump_printf( ctx, "\n" )
86 #define TXT(S) ctx->dump_printf( ctx, "%s", S )
87 #define CHR(C) ctx->dump_printf( ctx, "%c", C )
88 #define UIX(I) ctx->dump_printf( ctx, "0x%x", I )
89 #define UID(I) ctx->dump_printf( ctx, "%u", I )
90 #define INSTID(I) ctx->dump_printf( ctx, "% 3u", I )
91 #define SID(I) ctx->dump_printf( ctx, "%d", I )
92 #define FLT(F) ctx->dump_printf( ctx, "%10.4f", F )
93 #define DBL(D) ctx->dump_printf( ctx, "%10.8f", D )
94 #define HFLT(F) ctx->dump_printf( ctx, "0x%08x", fui((F)) )
95 #define ENM(E,ENUMS) dump_enum( ctx, E, ENUMS, sizeof( ENUMS ) / sizeof( *ENUMS ) )
96
97 const char *
98 tgsi_swizzle_names[4] =
99 {
100 "x",
101 "y",
102 "z",
103 "w"
104 };
105
106 static void
107 _dump_register_src(
108 struct dump_ctx *ctx,
109 const struct tgsi_full_src_register *src )
110 {
111 TXT(tgsi_file_name(src->Register.File));
112 if (src->Register.Dimension) {
113 if (src->Dimension.Indirect) {
114 CHR( '[' );
115 TXT(tgsi_file_name(src->DimIndirect.File));
116 CHR( '[' );
117 SID( src->DimIndirect.Index );
118 TXT( "]." );
119 ENM( src->DimIndirect.Swizzle, tgsi_swizzle_names );
120 if (src->Dimension.Index != 0) {
121 if (src->Dimension.Index > 0)
122 CHR( '+' );
123 SID( src->Dimension.Index );
124 }
125 CHR( ']' );
126 if (src->DimIndirect.ArrayID) {
127 CHR( '(' );
128 SID( src->DimIndirect.ArrayID );
129 CHR( ')' );
130 }
131 } else {
132 CHR('[');
133 SID(src->Dimension.Index);
134 CHR(']');
135 }
136 }
137 if (src->Register.Indirect) {
138 CHR( '[' );
139 TXT(tgsi_file_name(src->Indirect.File));
140 CHR( '[' );
141 SID( src->Indirect.Index );
142 TXT( "]." );
143 ENM( src->Indirect.Swizzle, tgsi_swizzle_names );
144 if (src->Register.Index != 0) {
145 if (src->Register.Index > 0)
146 CHR( '+' );
147 SID( src->Register.Index );
148 }
149 CHR( ']' );
150 if (src->Indirect.ArrayID) {
151 CHR( '(' );
152 SID( src->Indirect.ArrayID );
153 CHR( ')' );
154 }
155 } else {
156 CHR( '[' );
157 SID( src->Register.Index );
158 CHR( ']' );
159 }
160 }
161
162
163 static void
164 _dump_register_dst(
165 struct dump_ctx *ctx,
166 const struct tgsi_full_dst_register *dst )
167 {
168 TXT(tgsi_file_name(dst->Register.File));
169 if (dst->Register.Dimension) {
170 if (dst->Dimension.Indirect) {
171 CHR( '[' );
172 TXT(tgsi_file_name(dst->DimIndirect.File));
173 CHR( '[' );
174 SID( dst->DimIndirect.Index );
175 TXT( "]." );
176 ENM( dst->DimIndirect.Swizzle, tgsi_swizzle_names );
177 if (dst->Dimension.Index != 0) {
178 if (dst->Dimension.Index > 0)
179 CHR( '+' );
180 SID( dst->Dimension.Index );
181 }
182 CHR( ']' );
183 if (dst->DimIndirect.ArrayID) {
184 CHR( '(' );
185 SID( dst->DimIndirect.ArrayID );
186 CHR( ')' );
187 }
188 } else {
189 CHR('[');
190 SID(dst->Dimension.Index);
191 CHR(']');
192 }
193 }
194 if (dst->Register.Indirect) {
195 CHR( '[' );
196 TXT(tgsi_file_name(dst->Indirect.File));
197 CHR( '[' );
198 SID( dst->Indirect.Index );
199 TXT( "]." );
200 ENM( dst->Indirect.Swizzle, tgsi_swizzle_names );
201 if (dst->Register.Index != 0) {
202 if (dst->Register.Index > 0)
203 CHR( '+' );
204 SID( dst->Register.Index );
205 }
206 CHR( ']' );
207 if (dst->Indirect.ArrayID) {
208 CHR( '(' );
209 SID( dst->Indirect.ArrayID );
210 CHR( ')' );
211 }
212 } else {
213 CHR( '[' );
214 SID( dst->Register.Index );
215 CHR( ']' );
216 }
217 }
218 static void
219 _dump_writemask(
220 struct dump_ctx *ctx,
221 uint writemask )
222 {
223 if (writemask != TGSI_WRITEMASK_XYZW) {
224 CHR( '.' );
225 if (writemask & TGSI_WRITEMASK_X)
226 CHR( 'x' );
227 if (writemask & TGSI_WRITEMASK_Y)
228 CHR( 'y' );
229 if (writemask & TGSI_WRITEMASK_Z)
230 CHR( 'z' );
231 if (writemask & TGSI_WRITEMASK_W)
232 CHR( 'w' );
233 }
234 }
235
236 static void
237 dump_imm_data(struct tgsi_iterate_context *iter,
238 union tgsi_immediate_data *data,
239 unsigned num_tokens,
240 unsigned data_type)
241 {
242 struct dump_ctx *ctx = (struct dump_ctx *)iter;
243 unsigned i ;
244
245 TXT( " {" );
246
247 assert( num_tokens <= 4 );
248 for (i = 0; i < num_tokens; i++) {
249 switch (data_type) {
250 case TGSI_IMM_FLOAT64: {
251 union di d;
252 d.ui = data[i].Uint | (uint64_t)data[i+1].Uint << 32;
253 DBL( d.d );
254 i++;
255 break;
256 }
257 case TGSI_IMM_FLOAT32:
258 if (ctx->dump_float_as_hex)
259 HFLT( data[i].Float );
260 else
261 FLT( data[i].Float );
262 break;
263 case TGSI_IMM_UINT32:
264 UID(data[i].Uint);
265 break;
266 case TGSI_IMM_INT32:
267 SID(data[i].Int);
268 break;
269 default:
270 assert( 0 );
271 }
272
273 if (i < num_tokens - 1)
274 TXT( ", " );
275 }
276 TXT( "}" );
277 }
278
279 static boolean
280 iter_declaration(
281 struct tgsi_iterate_context *iter,
282 struct tgsi_full_declaration *decl )
283 {
284 struct dump_ctx *ctx = (struct dump_ctx *)iter;
285 boolean patch = decl->Semantic.Name == TGSI_SEMANTIC_PATCH ||
286 decl->Semantic.Name == TGSI_SEMANTIC_TESSINNER ||
287 decl->Semantic.Name == TGSI_SEMANTIC_TESSOUTER ||
288 decl->Semantic.Name == TGSI_SEMANTIC_PRIMID;
289
290 TXT( "DCL " );
291
292 TXT(tgsi_file_name(decl->Declaration.File));
293
294 /* all geometry shader inputs and non-patch tessellation shader inputs are
295 * two dimensional
296 */
297 if (decl->Declaration.File == TGSI_FILE_INPUT &&
298 (iter->processor.Processor == PIPE_SHADER_GEOMETRY ||
299 (!patch &&
300 (iter->processor.Processor == PIPE_SHADER_TESS_CTRL ||
301 iter->processor.Processor == PIPE_SHADER_TESS_EVAL)))) {
302 TXT("[]");
303 }
304
305 /* all non-patch tess ctrl shader outputs are two dimensional */
306 if (decl->Declaration.File == TGSI_FILE_OUTPUT &&
307 !patch &&
308 iter->processor.Processor == PIPE_SHADER_TESS_CTRL) {
309 TXT("[]");
310 }
311
312 if (decl->Declaration.Dimension) {
313 CHR('[');
314 SID(decl->Dim.Index2D);
315 CHR(']');
316 }
317
318 CHR('[');
319 SID(decl->Range.First);
320 if (decl->Range.First != decl->Range.Last) {
321 TXT("..");
322 SID(decl->Range.Last);
323 }
324 CHR(']');
325
326 _dump_writemask(
327 ctx,
328 decl->Declaration.UsageMask );
329
330 if (decl->Declaration.Array) {
331 TXT( ", ARRAY(" );
332 SID(decl->Array.ArrayID);
333 CHR(')');
334 }
335
336 if (decl->Declaration.Local)
337 TXT( ", LOCAL" );
338
339 if (decl->Declaration.Semantic) {
340 TXT( ", " );
341 ENM( decl->Semantic.Name, tgsi_semantic_names );
342 if (decl->Semantic.Index != 0 ||
343 decl->Semantic.Name == TGSI_SEMANTIC_TEXCOORD ||
344 decl->Semantic.Name == TGSI_SEMANTIC_GENERIC) {
345 CHR( '[' );
346 UID( decl->Semantic.Index );
347 CHR( ']' );
348 }
349 }
350
351 if (decl->Declaration.File == TGSI_FILE_IMAGE) {
352 TXT(", ");
353 ENM(decl->Image.Resource, tgsi_texture_names);
354 TXT(", ");
355 TXT(util_format_name(decl->Image.Format));
356 if (decl->Image.Writable)
357 TXT(", WR");
358 if (decl->Image.Raw)
359 TXT(", RAW");
360 }
361
362 if (decl->Declaration.File == TGSI_FILE_BUFFER) {
363 if (decl->Declaration.Atomic)
364 TXT(", ATOMIC");
365 }
366
367 if (decl->Declaration.File == TGSI_FILE_MEMORY) {
368 switch (decl->Declaration.MemType) {
369 /* Note: ,GLOBAL is optional / the default */
370 case TGSI_MEMORY_TYPE_GLOBAL: TXT(", GLOBAL"); break;
371 case TGSI_MEMORY_TYPE_SHARED: TXT(", SHARED"); break;
372 case TGSI_MEMORY_TYPE_PRIVATE: TXT(", PRIVATE"); break;
373 case TGSI_MEMORY_TYPE_INPUT: TXT(", INPUT"); break;
374 }
375 }
376
377 if (decl->Declaration.File == TGSI_FILE_SAMPLER_VIEW) {
378 TXT(", ");
379 ENM(decl->SamplerView.Resource, tgsi_texture_names);
380 TXT(", ");
381 if ((decl->SamplerView.ReturnTypeX == decl->SamplerView.ReturnTypeY) &&
382 (decl->SamplerView.ReturnTypeX == decl->SamplerView.ReturnTypeZ) &&
383 (decl->SamplerView.ReturnTypeX == decl->SamplerView.ReturnTypeW)) {
384 ENM(decl->SamplerView.ReturnTypeX, tgsi_return_type_names);
385 } else {
386 ENM(decl->SamplerView.ReturnTypeX, tgsi_return_type_names);
387 TXT(", ");
388 ENM(decl->SamplerView.ReturnTypeY, tgsi_return_type_names);
389 TXT(", ");
390 ENM(decl->SamplerView.ReturnTypeZ, tgsi_return_type_names);
391 TXT(", ");
392 ENM(decl->SamplerView.ReturnTypeW, tgsi_return_type_names);
393 }
394 }
395
396 if (decl->Declaration.Interpolate) {
397 if (iter->processor.Processor == PIPE_SHADER_FRAGMENT &&
398 decl->Declaration.File == TGSI_FILE_INPUT)
399 {
400 TXT( ", " );
401 ENM( decl->Interp.Interpolate, tgsi_interpolate_names );
402 }
403
404 if (decl->Interp.Location != TGSI_INTERPOLATE_LOC_CENTER) {
405 TXT( ", " );
406 ENM( decl->Interp.Location, tgsi_interpolate_locations );
407 }
408
409 if (decl->Interp.CylindricalWrap) {
410 TXT(", CYLWRAP_");
411 if (decl->Interp.CylindricalWrap & TGSI_CYLINDRICAL_WRAP_X) {
412 CHR('X');
413 }
414 if (decl->Interp.CylindricalWrap & TGSI_CYLINDRICAL_WRAP_Y) {
415 CHR('Y');
416 }
417 if (decl->Interp.CylindricalWrap & TGSI_CYLINDRICAL_WRAP_Z) {
418 CHR('Z');
419 }
420 if (decl->Interp.CylindricalWrap & TGSI_CYLINDRICAL_WRAP_W) {
421 CHR('W');
422 }
423 }
424 }
425
426 if (decl->Declaration.Invariant) {
427 TXT( ", INVARIANT" );
428 }
429
430 EOL();
431
432 return TRUE;
433 }
434
435 void
436 tgsi_dump_declaration(
437 const struct tgsi_full_declaration *decl )
438 {
439 struct dump_ctx ctx;
440 memset(&ctx, 0, sizeof(ctx));
441
442 ctx.dump_printf = dump_ctx_printf;
443
444 iter_declaration( &ctx.iter, (struct tgsi_full_declaration *)decl );
445 }
446
447 static boolean
448 iter_property(
449 struct tgsi_iterate_context *iter,
450 struct tgsi_full_property *prop )
451 {
452 unsigned i;
453 struct dump_ctx *ctx = (struct dump_ctx *)iter;
454
455 TXT( "PROPERTY " );
456 ENM(prop->Property.PropertyName, tgsi_property_names);
457
458 if (prop->Property.NrTokens > 1)
459 TXT(" ");
460
461 for (i = 0; i < prop->Property.NrTokens - 1; ++i) {
462 switch (prop->Property.PropertyName) {
463 case TGSI_PROPERTY_GS_INPUT_PRIM:
464 case TGSI_PROPERTY_GS_OUTPUT_PRIM:
465 ENM(prop->u[i].Data, tgsi_primitive_names);
466 break;
467 case TGSI_PROPERTY_FS_COORD_ORIGIN:
468 ENM(prop->u[i].Data, tgsi_fs_coord_origin_names);
469 break;
470 case TGSI_PROPERTY_FS_COORD_PIXEL_CENTER:
471 ENM(prop->u[i].Data, tgsi_fs_coord_pixel_center_names);
472 break;
473 case TGSI_PROPERTY_NEXT_SHADER:
474 ENM(prop->u[i].Data, tgsi_processor_type_names);
475 break;
476 default:
477 SID( prop->u[i].Data );
478 break;
479 }
480 if (i < prop->Property.NrTokens - 2)
481 TXT( ", " );
482 }
483 EOL();
484
485 return TRUE;
486 }
487
488 void tgsi_dump_property(
489 const struct tgsi_full_property *prop )
490 {
491 struct dump_ctx ctx;
492 memset(&ctx, 0, sizeof(ctx));
493
494 ctx.dump_printf = dump_ctx_printf;
495
496 iter_property( &ctx.iter, (struct tgsi_full_property *)prop );
497 }
498
499 static boolean
500 iter_immediate(
501 struct tgsi_iterate_context *iter,
502 struct tgsi_full_immediate *imm )
503 {
504 struct dump_ctx *ctx = (struct dump_ctx *) iter;
505
506 TXT( "IMM[" );
507 SID( ctx->immno++ );
508 TXT( "] " );
509 ENM( imm->Immediate.DataType, tgsi_immediate_type_names );
510
511 dump_imm_data(iter, imm->u, imm->Immediate.NrTokens - 1,
512 imm->Immediate.DataType);
513
514 EOL();
515
516 return TRUE;
517 }
518
519 void
520 tgsi_dump_immediate(
521 const struct tgsi_full_immediate *imm )
522 {
523 struct dump_ctx ctx;
524 memset(&ctx, 0, sizeof(ctx));
525
526 ctx.dump_printf = dump_ctx_printf;
527
528 iter_immediate( &ctx.iter, (struct tgsi_full_immediate *)imm );
529 }
530
531 static boolean
532 iter_instruction(
533 struct tgsi_iterate_context *iter,
534 struct tgsi_full_instruction *inst )
535 {
536 struct dump_ctx *ctx = (struct dump_ctx *) iter;
537 uint instno = ctx->instno++;
538 const struct tgsi_opcode_info *info = tgsi_get_opcode_info( inst->Instruction.Opcode );
539 uint i;
540 boolean first_reg = TRUE;
541
542 INSTID( instno );
543 TXT( ": " );
544
545 ctx->indent -= info->pre_dedent;
546 for(i = 0; (int)i < ctx->indent; ++i)
547 TXT( " " );
548 ctx->indent += info->post_indent;
549
550 if (inst->Instruction.Predicate) {
551 CHR( '(' );
552
553 if (inst->Predicate.Negate)
554 CHR( '!' );
555
556 TXT( "PRED[" );
557 SID( inst->Predicate.Index );
558 CHR( ']' );
559
560 if (inst->Predicate.SwizzleX != TGSI_SWIZZLE_X ||
561 inst->Predicate.SwizzleY != TGSI_SWIZZLE_Y ||
562 inst->Predicate.SwizzleZ != TGSI_SWIZZLE_Z ||
563 inst->Predicate.SwizzleW != TGSI_SWIZZLE_W) {
564 CHR( '.' );
565 ENM( inst->Predicate.SwizzleX, tgsi_swizzle_names );
566 ENM( inst->Predicate.SwizzleY, tgsi_swizzle_names );
567 ENM( inst->Predicate.SwizzleZ, tgsi_swizzle_names );
568 ENM( inst->Predicate.SwizzleW, tgsi_swizzle_names );
569 }
570
571 TXT( ") " );
572 }
573
574 TXT( info->mnemonic );
575
576 if (inst->Instruction.Saturate) {
577 TXT( "_SAT" );
578 }
579
580 for (i = 0; i < inst->Instruction.NumDstRegs; i++) {
581 const struct tgsi_full_dst_register *dst = &inst->Dst[i];
582
583 if (!first_reg)
584 CHR( ',' );
585 CHR( ' ' );
586
587 _dump_register_dst( ctx, dst );
588 _dump_writemask( ctx, dst->Register.WriteMask );
589
590 first_reg = FALSE;
591 }
592
593 for (i = 0; i < inst->Instruction.NumSrcRegs; i++) {
594 const struct tgsi_full_src_register *src = &inst->Src[i];
595
596 if (!first_reg)
597 CHR( ',' );
598 CHR( ' ' );
599
600 if (src->Register.Negate)
601 CHR( '-' );
602 if (src->Register.Absolute)
603 CHR( '|' );
604
605 _dump_register_src(ctx, src);
606
607 if (src->Register.SwizzleX != TGSI_SWIZZLE_X ||
608 src->Register.SwizzleY != TGSI_SWIZZLE_Y ||
609 src->Register.SwizzleZ != TGSI_SWIZZLE_Z ||
610 src->Register.SwizzleW != TGSI_SWIZZLE_W) {
611 CHR( '.' );
612 ENM( src->Register.SwizzleX, tgsi_swizzle_names );
613 ENM( src->Register.SwizzleY, tgsi_swizzle_names );
614 ENM( src->Register.SwizzleZ, tgsi_swizzle_names );
615 ENM( src->Register.SwizzleW, tgsi_swizzle_names );
616 }
617
618 if (src->Register.Absolute)
619 CHR( '|' );
620
621 first_reg = FALSE;
622 }
623
624 if (inst->Instruction.Texture) {
625 if (!(inst->Instruction.Opcode >= TGSI_OPCODE_SAMPLE &&
626 inst->Instruction.Opcode <= TGSI_OPCODE_GATHER4)) {
627 TXT( ", " );
628 ENM( inst->Texture.Texture, tgsi_texture_names );
629 }
630 for (i = 0; i < inst->Texture.NumOffsets; i++) {
631 TXT( ", " );
632 TXT(tgsi_file_name(inst->TexOffsets[i].File));
633 CHR( '[' );
634 SID( inst->TexOffsets[i].Index );
635 CHR( ']' );
636 CHR( '.' );
637 ENM( inst->TexOffsets[i].SwizzleX, tgsi_swizzle_names);
638 ENM( inst->TexOffsets[i].SwizzleY, tgsi_swizzle_names);
639 ENM( inst->TexOffsets[i].SwizzleZ, tgsi_swizzle_names);
640 }
641 }
642
643 if (inst->Instruction.Memory) {
644 uint32_t qualifier = inst->Memory.Qualifier;
645 while (qualifier) {
646 int bit = ffs(qualifier) - 1;
647 qualifier &= ~(1U << bit);
648 TXT(", ");
649 ENM(bit, tgsi_memory_names);
650 }
651 if (inst->Memory.Texture) {
652 TXT( ", " );
653 ENM( inst->Memory.Texture, tgsi_texture_names );
654 }
655 if (inst->Memory.Format) {
656 TXT( ", " );
657 TXT( util_format_name(inst->Memory.Format) );
658 }
659 }
660
661 switch (inst->Instruction.Opcode) {
662 case TGSI_OPCODE_IF:
663 case TGSI_OPCODE_UIF:
664 case TGSI_OPCODE_ELSE:
665 case TGSI_OPCODE_BGNLOOP:
666 case TGSI_OPCODE_ENDLOOP:
667 case TGSI_OPCODE_CAL:
668 case TGSI_OPCODE_BGNSUB:
669 TXT( " :" );
670 UID( inst->Label.Label );
671 break;
672 }
673
674 /* update indentation */
675 if (inst->Instruction.Opcode == TGSI_OPCODE_IF ||
676 inst->Instruction.Opcode == TGSI_OPCODE_UIF ||
677 inst->Instruction.Opcode == TGSI_OPCODE_ELSE ||
678 inst->Instruction.Opcode == TGSI_OPCODE_BGNLOOP) {
679 ctx->indentation += indent_spaces;
680 }
681
682 EOL();
683
684 return TRUE;
685 }
686
687 void
688 tgsi_dump_instruction(
689 const struct tgsi_full_instruction *inst,
690 uint instno )
691 {
692 struct dump_ctx ctx;
693 memset(&ctx, 0, sizeof(ctx));
694
695 ctx.instno = instno;
696 ctx.immno = instno;
697 ctx.indent = 0;
698 ctx.dump_printf = dump_ctx_printf;
699 ctx.indentation = 0;
700 ctx.file = NULL;
701
702 iter_instruction( &ctx.iter, (struct tgsi_full_instruction *)inst );
703 }
704
705 static boolean
706 prolog(
707 struct tgsi_iterate_context *iter )
708 {
709 struct dump_ctx *ctx = (struct dump_ctx *) iter;
710 ENM( iter->processor.Processor, tgsi_processor_type_names );
711 EOL();
712 return TRUE;
713 }
714
715 static void
716 init_dump_ctx(struct dump_ctx *ctx, uint flags)
717 {
718 memset(ctx, 0, sizeof(*ctx));
719
720 ctx->iter.prolog = prolog;
721 ctx->iter.iterate_instruction = iter_instruction;
722 ctx->iter.iterate_declaration = iter_declaration;
723 ctx->iter.iterate_immediate = iter_immediate;
724 ctx->iter.iterate_property = iter_property;
725
726 if (flags & TGSI_DUMP_FLOAT_AS_HEX)
727 ctx->dump_float_as_hex = TRUE;
728 }
729
730 void
731 tgsi_dump_to_file(const struct tgsi_token *tokens, uint flags, FILE *file)
732 {
733 struct dump_ctx ctx;
734 memset(&ctx, 0, sizeof(ctx));
735
736 init_dump_ctx(&ctx, flags);
737
738 ctx.dump_printf = dump_ctx_printf;
739 ctx.file = file;
740
741 tgsi_iterate_shader( tokens, &ctx.iter );
742 }
743
744 void
745 tgsi_dump(const struct tgsi_token *tokens, uint flags)
746 {
747 tgsi_dump_to_file(tokens, flags, NULL);
748 }
749
750 struct str_dump_ctx
751 {
752 struct dump_ctx base;
753 char *str;
754 char *ptr;
755 int left;
756 bool nospace;
757 };
758
759 static void
760 str_dump_ctx_printf(struct dump_ctx *ctx, const char *format, ...)
761 {
762 struct str_dump_ctx *sctx = (struct str_dump_ctx *)ctx;
763
764 if (!sctx->nospace) {
765 int written;
766 va_list ap;
767 va_start(ap, format);
768 written = util_vsnprintf(sctx->ptr, sctx->left, format, ap);
769 va_end(ap);
770
771 /* Some complicated logic needed to handle the return value of
772 * vsnprintf:
773 */
774 if (written > 0) {
775 if (written >= sctx->left) {
776 sctx->nospace = true;
777 written = sctx->left;
778 }
779 sctx->ptr += written;
780 sctx->left -= written;
781 }
782 }
783 }
784
785 bool
786 tgsi_dump_str(
787 const struct tgsi_token *tokens,
788 uint flags,
789 char *str,
790 size_t size)
791 {
792 struct str_dump_ctx ctx;
793 memset(&ctx, 0, sizeof(ctx));
794
795 init_dump_ctx(&ctx.base, flags);
796
797 ctx.base.dump_printf = &str_dump_ctx_printf;
798
799 ctx.str = str;
800 ctx.str[0] = 0;
801 ctx.ptr = str;
802 ctx.left = (int)size;
803 ctx.nospace = false;
804
805 tgsi_iterate_shader( tokens, &ctx.base.iter );
806
807 return !ctx.nospace;
808 }
809
810 void
811 tgsi_dump_instruction_str(
812 const struct tgsi_full_instruction *inst,
813 uint instno,
814 char *str,
815 size_t size)
816 {
817 struct str_dump_ctx ctx;
818 memset(&ctx, 0, sizeof(ctx));
819
820 ctx.base.instno = instno;
821 ctx.base.immno = instno;
822 ctx.base.indent = 0;
823 ctx.base.dump_printf = &str_dump_ctx_printf;
824 ctx.base.indentation = 0;
825 ctx.base.file = NULL;
826
827 ctx.str = str;
828 ctx.str[0] = 0;
829 ctx.ptr = str;
830 ctx.left = (int)size;
831 ctx.nospace = false;
832
833 iter_instruction( &ctx.base.iter, (struct tgsi_full_instruction *)inst );
834 }