tgsi: show textual format representation
[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 == TGSI_PROCESSOR_GEOMETRY ||
299 (!patch &&
300 (iter->processor.Processor == TGSI_PROCESSOR_TESS_CTRL ||
301 iter->processor.Processor == TGSI_PROCESSOR_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 == TGSI_PROCESSOR_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 if (decl->Declaration.Shared)
369 TXT(", SHARED");
370 }
371
372 if (decl->Declaration.File == TGSI_FILE_SAMPLER_VIEW) {
373 TXT(", ");
374 ENM(decl->SamplerView.Resource, tgsi_texture_names);
375 TXT(", ");
376 if ((decl->SamplerView.ReturnTypeX == decl->SamplerView.ReturnTypeY) &&
377 (decl->SamplerView.ReturnTypeX == decl->SamplerView.ReturnTypeZ) &&
378 (decl->SamplerView.ReturnTypeX == decl->SamplerView.ReturnTypeW)) {
379 ENM(decl->SamplerView.ReturnTypeX, tgsi_return_type_names);
380 } else {
381 ENM(decl->SamplerView.ReturnTypeX, tgsi_return_type_names);
382 TXT(", ");
383 ENM(decl->SamplerView.ReturnTypeY, tgsi_return_type_names);
384 TXT(", ");
385 ENM(decl->SamplerView.ReturnTypeZ, tgsi_return_type_names);
386 TXT(", ");
387 ENM(decl->SamplerView.ReturnTypeW, tgsi_return_type_names);
388 }
389 }
390
391 if (decl->Declaration.Interpolate) {
392 if (iter->processor.Processor == TGSI_PROCESSOR_FRAGMENT &&
393 decl->Declaration.File == TGSI_FILE_INPUT)
394 {
395 TXT( ", " );
396 ENM( decl->Interp.Interpolate, tgsi_interpolate_names );
397 }
398
399 if (decl->Interp.Location != TGSI_INTERPOLATE_LOC_CENTER) {
400 TXT( ", " );
401 ENM( decl->Interp.Location, tgsi_interpolate_locations );
402 }
403
404 if (decl->Interp.CylindricalWrap) {
405 TXT(", CYLWRAP_");
406 if (decl->Interp.CylindricalWrap & TGSI_CYLINDRICAL_WRAP_X) {
407 CHR('X');
408 }
409 if (decl->Interp.CylindricalWrap & TGSI_CYLINDRICAL_WRAP_Y) {
410 CHR('Y');
411 }
412 if (decl->Interp.CylindricalWrap & TGSI_CYLINDRICAL_WRAP_Z) {
413 CHR('Z');
414 }
415 if (decl->Interp.CylindricalWrap & TGSI_CYLINDRICAL_WRAP_W) {
416 CHR('W');
417 }
418 }
419 }
420
421 if (decl->Declaration.Invariant) {
422 TXT( ", INVARIANT" );
423 }
424
425 EOL();
426
427 return TRUE;
428 }
429
430 void
431 tgsi_dump_declaration(
432 const struct tgsi_full_declaration *decl )
433 {
434 struct dump_ctx ctx;
435
436 ctx.dump_printf = dump_ctx_printf;
437
438 iter_declaration( &ctx.iter, (struct tgsi_full_declaration *)decl );
439 }
440
441 static boolean
442 iter_property(
443 struct tgsi_iterate_context *iter,
444 struct tgsi_full_property *prop )
445 {
446 unsigned i;
447 struct dump_ctx *ctx = (struct dump_ctx *)iter;
448
449 TXT( "PROPERTY " );
450 ENM(prop->Property.PropertyName, tgsi_property_names);
451
452 if (prop->Property.NrTokens > 1)
453 TXT(" ");
454
455 for (i = 0; i < prop->Property.NrTokens - 1; ++i) {
456 switch (prop->Property.PropertyName) {
457 case TGSI_PROPERTY_GS_INPUT_PRIM:
458 case TGSI_PROPERTY_GS_OUTPUT_PRIM:
459 ENM(prop->u[i].Data, tgsi_primitive_names);
460 break;
461 case TGSI_PROPERTY_FS_COORD_ORIGIN:
462 ENM(prop->u[i].Data, tgsi_fs_coord_origin_names);
463 break;
464 case TGSI_PROPERTY_FS_COORD_PIXEL_CENTER:
465 ENM(prop->u[i].Data, tgsi_fs_coord_pixel_center_names);
466 break;
467 default:
468 SID( prop->u[i].Data );
469 break;
470 }
471 if (i < prop->Property.NrTokens - 2)
472 TXT( ", " );
473 }
474 EOL();
475
476 return TRUE;
477 }
478
479 void tgsi_dump_property(
480 const struct tgsi_full_property *prop )
481 {
482 struct dump_ctx ctx;
483
484 ctx.dump_printf = dump_ctx_printf;
485
486 iter_property( &ctx.iter, (struct tgsi_full_property *)prop );
487 }
488
489 static boolean
490 iter_immediate(
491 struct tgsi_iterate_context *iter,
492 struct tgsi_full_immediate *imm )
493 {
494 struct dump_ctx *ctx = (struct dump_ctx *) iter;
495
496 TXT( "IMM[" );
497 SID( ctx->immno++ );
498 TXT( "] " );
499 ENM( imm->Immediate.DataType, tgsi_immediate_type_names );
500
501 dump_imm_data(iter, imm->u, imm->Immediate.NrTokens - 1,
502 imm->Immediate.DataType);
503
504 EOL();
505
506 return TRUE;
507 }
508
509 void
510 tgsi_dump_immediate(
511 const struct tgsi_full_immediate *imm )
512 {
513 struct dump_ctx ctx;
514
515 ctx.dump_printf = dump_ctx_printf;
516
517 iter_immediate( &ctx.iter, (struct tgsi_full_immediate *)imm );
518 }
519
520 static boolean
521 iter_instruction(
522 struct tgsi_iterate_context *iter,
523 struct tgsi_full_instruction *inst )
524 {
525 struct dump_ctx *ctx = (struct dump_ctx *) iter;
526 uint instno = ctx->instno++;
527 const struct tgsi_opcode_info *info = tgsi_get_opcode_info( inst->Instruction.Opcode );
528 uint i;
529 boolean first_reg = TRUE;
530
531 INSTID( instno );
532 TXT( ": " );
533
534 ctx->indent -= info->pre_dedent;
535 for(i = 0; (int)i < ctx->indent; ++i)
536 TXT( " " );
537 ctx->indent += info->post_indent;
538
539 if (inst->Instruction.Predicate) {
540 CHR( '(' );
541
542 if (inst->Predicate.Negate)
543 CHR( '!' );
544
545 TXT( "PRED[" );
546 SID( inst->Predicate.Index );
547 CHR( ']' );
548
549 if (inst->Predicate.SwizzleX != TGSI_SWIZZLE_X ||
550 inst->Predicate.SwizzleY != TGSI_SWIZZLE_Y ||
551 inst->Predicate.SwizzleZ != TGSI_SWIZZLE_Z ||
552 inst->Predicate.SwizzleW != TGSI_SWIZZLE_W) {
553 CHR( '.' );
554 ENM( inst->Predicate.SwizzleX, tgsi_swizzle_names );
555 ENM( inst->Predicate.SwizzleY, tgsi_swizzle_names );
556 ENM( inst->Predicate.SwizzleZ, tgsi_swizzle_names );
557 ENM( inst->Predicate.SwizzleW, tgsi_swizzle_names );
558 }
559
560 TXT( ") " );
561 }
562
563 TXT( info->mnemonic );
564
565 if (inst->Instruction.Saturate) {
566 TXT( "_SAT" );
567 }
568
569 for (i = 0; i < inst->Instruction.NumDstRegs; i++) {
570 const struct tgsi_full_dst_register *dst = &inst->Dst[i];
571
572 if (!first_reg)
573 CHR( ',' );
574 CHR( ' ' );
575
576 _dump_register_dst( ctx, dst );
577 _dump_writemask( ctx, dst->Register.WriteMask );
578
579 first_reg = FALSE;
580 }
581
582 for (i = 0; i < inst->Instruction.NumSrcRegs; i++) {
583 const struct tgsi_full_src_register *src = &inst->Src[i];
584
585 if (!first_reg)
586 CHR( ',' );
587 CHR( ' ' );
588
589 if (src->Register.Negate)
590 CHR( '-' );
591 if (src->Register.Absolute)
592 CHR( '|' );
593
594 _dump_register_src(ctx, src);
595
596 if (src->Register.SwizzleX != TGSI_SWIZZLE_X ||
597 src->Register.SwizzleY != TGSI_SWIZZLE_Y ||
598 src->Register.SwizzleZ != TGSI_SWIZZLE_Z ||
599 src->Register.SwizzleW != TGSI_SWIZZLE_W) {
600 CHR( '.' );
601 ENM( src->Register.SwizzleX, tgsi_swizzle_names );
602 ENM( src->Register.SwizzleY, tgsi_swizzle_names );
603 ENM( src->Register.SwizzleZ, tgsi_swizzle_names );
604 ENM( src->Register.SwizzleW, tgsi_swizzle_names );
605 }
606
607 if (src->Register.Absolute)
608 CHR( '|' );
609
610 first_reg = FALSE;
611 }
612
613 if (inst->Instruction.Texture) {
614 if (!(inst->Instruction.Opcode >= TGSI_OPCODE_SAMPLE &&
615 inst->Instruction.Opcode <= TGSI_OPCODE_GATHER4)) {
616 TXT( ", " );
617 ENM( inst->Texture.Texture, tgsi_texture_names );
618 }
619 for (i = 0; i < inst->Texture.NumOffsets; i++) {
620 TXT( ", " );
621 TXT(tgsi_file_name(inst->TexOffsets[i].File));
622 CHR( '[' );
623 SID( inst->TexOffsets[i].Index );
624 CHR( ']' );
625 CHR( '.' );
626 ENM( inst->TexOffsets[i].SwizzleX, tgsi_swizzle_names);
627 ENM( inst->TexOffsets[i].SwizzleY, tgsi_swizzle_names);
628 ENM( inst->TexOffsets[i].SwizzleZ, tgsi_swizzle_names);
629 }
630 }
631
632 if (inst->Instruction.Memory) {
633 uint32_t qualifier = inst->Memory.Qualifier;
634 while (qualifier) {
635 int bit = ffs(qualifier) - 1;
636 qualifier &= ~(1U << bit);
637 TXT(", ");
638 ENM(bit, tgsi_memory_names);
639 }
640 }
641
642 switch (inst->Instruction.Opcode) {
643 case TGSI_OPCODE_IF:
644 case TGSI_OPCODE_UIF:
645 case TGSI_OPCODE_ELSE:
646 case TGSI_OPCODE_BGNLOOP:
647 case TGSI_OPCODE_ENDLOOP:
648 case TGSI_OPCODE_CAL:
649 case TGSI_OPCODE_BGNSUB:
650 TXT( " :" );
651 UID( inst->Label.Label );
652 break;
653 }
654
655 /* update indentation */
656 if (inst->Instruction.Opcode == TGSI_OPCODE_IF ||
657 inst->Instruction.Opcode == TGSI_OPCODE_UIF ||
658 inst->Instruction.Opcode == TGSI_OPCODE_ELSE ||
659 inst->Instruction.Opcode == TGSI_OPCODE_BGNLOOP) {
660 ctx->indentation += indent_spaces;
661 }
662
663 EOL();
664
665 return TRUE;
666 }
667
668 void
669 tgsi_dump_instruction(
670 const struct tgsi_full_instruction *inst,
671 uint instno )
672 {
673 struct dump_ctx ctx;
674
675 ctx.instno = instno;
676 ctx.immno = instno;
677 ctx.indent = 0;
678 ctx.dump_printf = dump_ctx_printf;
679 ctx.indentation = 0;
680 ctx.file = NULL;
681
682 iter_instruction( &ctx.iter, (struct tgsi_full_instruction *)inst );
683 }
684
685 static boolean
686 prolog(
687 struct tgsi_iterate_context *iter )
688 {
689 struct dump_ctx *ctx = (struct dump_ctx *) iter;
690 ENM( iter->processor.Processor, tgsi_processor_type_names );
691 EOL();
692 return TRUE;
693 }
694
695 void
696 tgsi_dump_to_file(const struct tgsi_token *tokens, uint flags, FILE *file)
697 {
698 struct dump_ctx ctx;
699
700 ctx.iter.prolog = prolog;
701 ctx.iter.iterate_instruction = iter_instruction;
702 ctx.iter.iterate_declaration = iter_declaration;
703 ctx.iter.iterate_immediate = iter_immediate;
704 ctx.iter.iterate_property = iter_property;
705 ctx.iter.epilog = NULL;
706
707 ctx.instno = 0;
708 ctx.immno = 0;
709 ctx.indent = 0;
710 ctx.dump_printf = dump_ctx_printf;
711 ctx.indentation = 0;
712 ctx.file = file;
713
714 if (flags & TGSI_DUMP_FLOAT_AS_HEX)
715 ctx.dump_float_as_hex = TRUE;
716 else
717 ctx.dump_float_as_hex = FALSE;
718
719 tgsi_iterate_shader( tokens, &ctx.iter );
720 }
721
722 void
723 tgsi_dump(const struct tgsi_token *tokens, uint flags)
724 {
725 tgsi_dump_to_file(tokens, flags, NULL);
726 }
727
728 struct str_dump_ctx
729 {
730 struct dump_ctx base;
731 char *str;
732 char *ptr;
733 int left;
734 bool nospace;
735 };
736
737 static void
738 str_dump_ctx_printf(struct dump_ctx *ctx, const char *format, ...)
739 {
740 struct str_dump_ctx *sctx = (struct str_dump_ctx *)ctx;
741
742 if(sctx->left > 1) {
743 int written;
744 va_list ap;
745 va_start(ap, format);
746 written = util_vsnprintf(sctx->ptr, sctx->left, format, ap);
747 va_end(ap);
748
749 /* Some complicated logic needed to handle the return value of
750 * vsnprintf:
751 */
752 if (written > 0) {
753 written = MIN2(sctx->left, written);
754 sctx->ptr += written;
755 sctx->left -= written;
756 }
757 } else
758 sctx->nospace = true;
759 }
760
761 bool
762 tgsi_dump_str(
763 const struct tgsi_token *tokens,
764 uint flags,
765 char *str,
766 size_t size)
767 {
768 struct str_dump_ctx ctx;
769
770 ctx.base.iter.prolog = prolog;
771 ctx.base.iter.iterate_instruction = iter_instruction;
772 ctx.base.iter.iterate_declaration = iter_declaration;
773 ctx.base.iter.iterate_immediate = iter_immediate;
774 ctx.base.iter.iterate_property = iter_property;
775 ctx.base.iter.epilog = NULL;
776
777 ctx.base.instno = 0;
778 ctx.base.immno = 0;
779 ctx.base.indent = 0;
780 ctx.base.dump_printf = &str_dump_ctx_printf;
781 ctx.base.indentation = 0;
782 ctx.base.file = NULL;
783
784 ctx.str = str;
785 ctx.str[0] = 0;
786 ctx.ptr = str;
787 ctx.left = (int)size;
788 ctx.nospace = false;
789
790 if (flags & TGSI_DUMP_FLOAT_AS_HEX)
791 ctx.base.dump_float_as_hex = TRUE;
792 else
793 ctx.base.dump_float_as_hex = FALSE;
794
795 tgsi_iterate_shader( tokens, &ctx.base.iter );
796
797 return !ctx.nospace;
798 }
799
800 void
801 tgsi_dump_instruction_str(
802 const struct tgsi_full_instruction *inst,
803 uint instno,
804 char *str,
805 size_t size)
806 {
807 struct str_dump_ctx ctx;
808
809 ctx.base.instno = instno;
810 ctx.base.immno = instno;
811 ctx.base.indent = 0;
812 ctx.base.dump_printf = &str_dump_ctx_printf;
813 ctx.base.indentation = 0;
814 ctx.base.file = NULL;
815
816 ctx.str = str;
817 ctx.str[0] = 0;
818 ctx.ptr = str;
819 ctx.left = (int)size;
820 ctx.nospace = false;
821
822 iter_instruction( &ctx.base.iter, (struct tgsi_full_instruction *)inst );
823 }