1 /**************************************************************************
3 * Copyright 2008 Tungsten Graphics, Inc., Cedar Park, Texas.
4 * Copyright (c) 2008 VMware, Inc.
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:
15 * The above copyright notice and this permission notice (including the
16 * next paragraph) shall be included in all copies or substantial portions
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.
27 **************************************************************************/
30 #include "pipe/p_config.h"
32 #include "pipe/p_compiler.h"
33 #include "os/os_stream.h"
34 #include "util/u_debug.h"
35 #include "pipe/p_format.h"
36 #include "pipe/p_state.h"
37 #include "util/u_inlines.h"
38 #include "util/u_format.h"
39 #include "util/u_memory.h"
40 #include "util/u_string.h"
41 #include "util/u_math.h"
42 #include "util/u_tile.h"
43 #include "util/u_prim.h"
44 #include "util/u_surface.h"
46 #include <limits.h> /* CHAR_BIT */
47 #include <ctype.h> /* isalnum */
49 void _debug_vprintf(const char *format
, va_list ap
)
51 #if defined(PIPE_OS_WINDOWS) || defined(PIPE_OS_EMBEDDED)
52 /* We buffer until we find a newline. */
53 static char buf
[4096] = {'\0'};
54 size_t len
= strlen(buf
);
55 int ret
= util_vsnprintf(buf
+ len
, sizeof(buf
) - len
, format
, ap
);
56 if(ret
> (int)(sizeof(buf
) - len
- 1) || util_strchr(buf
+ len
, '\n')) {
61 /* Just print as-is to stderr */
62 vfprintf(stderr
, format
, ap
);
68 void debug_print_blob( const char *name
,
72 const unsigned *ublob
= (const unsigned *)blob
;
75 debug_printf("%s (%d dwords%s)\n", name
, size
/4,
76 size
%4 ? "... plus a few bytes" : "");
78 for (i
= 0; i
< size
/4; i
++) {
79 debug_printf("%d:\t%08x\n", i
, ublob
[i
]);
86 debug_get_option_should_print(void)
88 static boolean first
= TRUE
;
89 static boolean value
= FALSE
;
94 /* Oh hey this will call into this function,
95 * but its cool since we set first to false
98 value
= debug_get_bool_option("GALLIUM_PRINT_OPTIONS", FALSE
);
99 /* XXX should we print this option? Currently it wont */
104 debug_get_option(const char *name
, const char *dfault
)
108 result
= os_get_option(name
);
112 if (debug_get_option_should_print())
113 debug_printf("%s: %s = %s\n", __FUNCTION__
, name
, result
? result
: "(null)");
119 debug_get_bool_option(const char *name
, boolean dfault
)
121 const char *str
= os_get_option(name
);
126 else if(!util_strcmp(str
, "n"))
128 else if(!util_strcmp(str
, "no"))
130 else if(!util_strcmp(str
, "0"))
132 else if(!util_strcmp(str
, "f"))
134 else if(!util_strcmp(str
, "F"))
136 else if(!util_strcmp(str
, "false"))
138 else if(!util_strcmp(str
, "FALSE"))
143 if (debug_get_option_should_print())
144 debug_printf("%s: %s = %s\n", __FUNCTION__
, name
, result
? "TRUE" : "FALSE");
151 debug_get_num_option(const char *name
, long dfault
)
156 str
= os_get_option(name
);
171 while('0' <= c
&& c
<= '9') {
172 result
= result
*10 + (c
- '0');
178 if (debug_get_option_should_print())
179 debug_printf("%s: %s = %li\n", __FUNCTION__
, name
, result
);
184 static boolean
str_has_option(const char *str
, const char *name
)
192 if (!util_strcmp(str
, "all")) {
196 /* Find 'name' in 'str' surrounded by non-alphanumeric characters. */
198 const char *start
= str
;
199 unsigned name_len
= strlen(name
);
201 /* 'start' is the beginning of the currently-parsed word,
202 * we increment 'str' each iteration.
203 * if we find either the end of string or a non-alphanumeric character,
204 * we compare 'start' up to 'str-1' with 'name'. */
207 if (!*str
|| !isalnum(*str
)) {
208 if (str
-start
== name_len
&&
209 !memcmp(start
, name
, name_len
)) {
228 debug_get_flags_option(const char *name
,
229 const struct debug_named_value
*flags
,
230 unsigned long dfault
)
232 unsigned long result
;
234 const struct debug_named_value
*orig
= flags
;
237 str
= os_get_option(name
);
240 else if (!util_strcmp(str
, "help")) {
242 _debug_printf("%s: help for %s:\n", __FUNCTION__
, name
);
243 for (; flags
->name
; ++flags
)
244 namealign
= MAX2(namealign
, strlen(flags
->name
));
245 for (flags
= orig
; flags
->name
; ++flags
)
246 _debug_printf("| %*s [0x%0*lx]%s%s\n", namealign
, flags
->name
,
247 (int)sizeof(unsigned long)*CHAR_BIT
/4, flags
->value
,
248 flags
->desc
? " " : "", flags
->desc
? flags
->desc
: "");
252 while( flags
->name
) {
253 if (str_has_option(str
, flags
->name
))
254 result
|= flags
->value
;
259 if (debug_get_option_should_print()) {
261 debug_printf("%s: %s = 0x%lx (%s)\n", __FUNCTION__
, name
, result
, str
);
263 debug_printf("%s: %s = 0x%lx\n", __FUNCTION__
, name
, result
);
271 void _debug_assert_fail(const char *expr
,
274 const char *function
)
276 _debug_printf("%s:%u:%s: Assertion `%s' failed.\n", file
, line
, function
, expr
);
277 #if defined(PIPE_OS_WINDOWS) && !defined(PIPE_SUBSYSTEM_WINDOWS_USER)
278 if (debug_get_bool_option("GALLIUM_ABORT_ON_ASSERT", FALSE
))
280 if (debug_get_bool_option("GALLIUM_ABORT_ON_ASSERT", TRUE
))
284 _debug_printf("continuing...\n");
289 debug_dump_enum(const struct debug_named_value
*names
,
292 static char rest
[64];
295 if(names
->value
== value
)
300 util_snprintf(rest
, sizeof(rest
), "0x%08lx", value
);
306 debug_dump_enum_noprefix(const struct debug_named_value
*names
,
310 static char rest
[64];
313 if(names
->value
== value
) {
314 const char *name
= names
->name
;
315 while (*name
== *prefix
) {
326 util_snprintf(rest
, sizeof(rest
), "0x%08lx", value
);
332 debug_dump_flags(const struct debug_named_value
*names
,
335 static char output
[4096];
336 static char rest
[256];
342 if((names
->value
& value
) == names
->value
) {
344 util_strncat(output
, "|", sizeof(output
));
347 util_strncat(output
, names
->name
, sizeof(output
) - 1);
348 output
[sizeof(output
) - 1] = '\0';
349 value
&= ~names
->value
;
356 util_strncat(output
, "|", sizeof(output
));
360 util_snprintf(rest
, sizeof(rest
), "0x%08lx", value
);
361 util_strncat(output
, rest
, sizeof(output
) - 1);
362 output
[sizeof(output
) - 1] = '\0';
373 void debug_print_format(const char *msg
, unsigned fmt
)
375 debug_printf("%s: %s\n", msg
, util_format_name(fmt
));
381 static const struct debug_named_value pipe_prim_names
[] = {
383 DEBUG_NAMED_VALUE(PIPE_PRIM_POINTS
),
384 DEBUG_NAMED_VALUE(PIPE_PRIM_LINES
),
385 DEBUG_NAMED_VALUE(PIPE_PRIM_LINE_LOOP
),
386 DEBUG_NAMED_VALUE(PIPE_PRIM_LINE_STRIP
),
387 DEBUG_NAMED_VALUE(PIPE_PRIM_TRIANGLES
),
388 DEBUG_NAMED_VALUE(PIPE_PRIM_TRIANGLE_STRIP
),
389 DEBUG_NAMED_VALUE(PIPE_PRIM_TRIANGLE_FAN
),
390 DEBUG_NAMED_VALUE(PIPE_PRIM_QUADS
),
391 DEBUG_NAMED_VALUE(PIPE_PRIM_QUAD_STRIP
),
392 DEBUG_NAMED_VALUE(PIPE_PRIM_POLYGON
),
394 DEBUG_NAMED_VALUE_END
398 const char *u_prim_name( unsigned prim
)
400 return debug_dump_enum(pipe_prim_names
, prim
);
407 const char* fl_function
[1024];
409 int debug_funclog_enter(const char* f
, const int line
, const char* file
)
413 for (i
= 0; i
< fl_indent
; i
++)
415 debug_printf("%s\n", f
);
417 assert(fl_indent
< 1023);
418 fl_function
[fl_indent
++] = f
;
423 void debug_funclog_exit(const char* f
, const int line
, const char* file
)
426 assert(fl_indent
>= 0);
427 assert(fl_function
[fl_indent
] == f
);
430 void debug_funclog_enter_exit(const char* f
, const int line
, const char* file
)
433 for (i
= 0; i
< fl_indent
; i
++)
435 debug_printf("%s\n", f
);
443 * Dump an image to a .raw or .ppm file (depends on OS).
444 * \param format PIPE_FORMAT_x
445 * \param cpp bytes per pixel
446 * \param width width in pixels
447 * \param height height in pixels
448 * \param stride row stride in bytes
450 void debug_dump_image(const char *prefix
,
451 unsigned format
, unsigned cpp
,
452 unsigned width
, unsigned height
,
456 #ifdef PIPE_SUBSYSTEM_WINDOWS_DISPLAY
457 static unsigned no
= 0;
459 WCHAR wfilename
[sizeof(filename
)];
467 unsigned char *pMap
= NULL
;
470 util_snprintf(filename
, sizeof(filename
), "\\??\\c:\\%03u%s.raw", ++no
, prefix
);
471 for(i
= 0; i
< sizeof(filename
); ++i
)
472 wfilename
[i
] = (WCHAR
)filename
[i
];
474 pMap
= (unsigned char *)EngMapFile(wfilename
, sizeof(header
) + height
*width
*cpp
, &iFile
);
478 header
.format
= format
;
480 header
.width
= width
;
481 header
.height
= height
;
482 memcpy(pMap
, &header
, sizeof(header
));
483 pMap
+= sizeof(header
);
485 for(i
= 0; i
< height
; ++i
) {
486 memcpy(pMap
, (unsigned char *)data
+ stride
*i
, cpp
*width
);
491 #elif defined(PIPE_OS_UNIX)
492 /* write a ppm file */
496 util_snprintf(filename
, sizeof(filename
), "%s.ppm", prefix
);
498 f
= fopen(filename
, "w");
502 const uint8_t *ptr
= (uint8_t *) data
;
504 /* XXX this is a hack */
506 case PIPE_FORMAT_B8G8R8A8_UNORM
:
518 fprintf(f
, "# ppm-file created by osdemo.c\n");
519 fprintf(f
, "%i %i\n", width
, height
);
523 f
= fopen(filename
, "ab"); /* reopen in binary append mode */
524 for (y
= 0; y
< height
; y
++) {
525 for (x
= 0; x
< width
; x
++) {
526 i
= y
* stride
+ x
* cpp
;
527 fputc(ptr
[i
+ r
], f
); /* write red */
528 fputc(ptr
[i
+ g
], f
); /* write green */
529 fputc(ptr
[i
+ b
], f
); /* write blue */
535 fprintf(stderr
, "Can't open %s for writing\n", filename
);
540 /* FIXME: dump resources, not surfaces... */
541 void debug_dump_surface(struct pipe_context
*pipe
,
543 struct pipe_surface
*surface
)
545 struct pipe_resource
*texture
;
546 struct pipe_transfer
*transfer
;
552 /* XXX: this doesn't necessarily work, as the driver may be using
553 * temporary storage for the surface which hasn't been propagated
554 * back into the texture. Need to nail down the semantics of views
555 * and transfers a bit better before we can say if extra work needs
558 texture
= surface
->texture
;
560 transfer
= pipe_get_transfer(pipe
, texture
, surface
->u
.tex
.level
,
561 surface
->u
.tex
.first_layer
,
563 0, 0, surface
->width
, surface
->height
);
565 data
= pipe
->transfer_map(pipe
, transfer
);
569 debug_dump_image(prefix
,
571 util_format_get_blocksize(texture
->format
),
572 util_format_get_nblocksx(texture
->format
, surface
->width
),
573 util_format_get_nblocksy(texture
->format
, surface
->height
),
577 pipe
->transfer_unmap(pipe
, transfer
);
579 pipe
->transfer_destroy(pipe
, transfer
);
583 void debug_dump_texture(struct pipe_context
*pipe
,
585 struct pipe_resource
*texture
)
587 struct pipe_surface
*surface
, surf_tmpl
;
592 /* XXX for now, just dump image for layer=0, level=0 */
593 memset(&surf_tmpl
, 0, sizeof(surf_tmpl
));
594 u_surface_default_template(&surf_tmpl
, texture
, 0 /* no bind flag - not a surface */);
595 surface
= pipe
->create_surface(pipe
, texture
, &surf_tmpl
);
597 debug_dump_surface(pipe
, prefix
, surface
);
598 pipe
->surface_destroy(pipe
, surface
);
604 struct bmp_file_header
{
607 uint16_t bfReserved1
;
608 uint16_t bfReserved2
;
613 struct bmp_info_header
{
619 uint32_t biCompression
;
620 uint32_t biSizeImage
;
621 int32_t biXPelsPerMeter
;
622 int32_t biYPelsPerMeter
;
624 uint32_t biClrImportant
;
627 struct bmp_rgb_quad
{
635 debug_dump_surface_bmp(struct pipe_context
*pipe
,
636 const char *filename
,
637 struct pipe_surface
*surface
)
639 #ifndef PIPE_SUBSYSTEM_WINDOWS_MINIPORT
640 struct pipe_transfer
*transfer
;
641 struct pipe_resource
*texture
= surface
->texture
;
643 transfer
= pipe_get_transfer(pipe
, texture
, surface
->u
.tex
.level
,
644 surface
->u
.tex
.first_layer
, PIPE_TRANSFER_READ
,
645 0, 0, surface
->width
, surface
->height
);
647 debug_dump_transfer_bmp(pipe
, filename
, transfer
);
649 pipe
->transfer_destroy(pipe
, transfer
);
654 debug_dump_transfer_bmp(struct pipe_context
*pipe
,
655 const char *filename
,
656 struct pipe_transfer
*transfer
)
658 #ifndef PIPE_SUBSYSTEM_WINDOWS_MINIPORT
664 rgba
= MALLOC(transfer
->box
.width
*
665 transfer
->box
.height
*
666 transfer
->box
.depth
*
671 pipe_get_tile_rgba(pipe
, transfer
, 0, 0,
672 transfer
->box
.width
, transfer
->box
.height
,
675 debug_dump_float_rgba_bmp(filename
,
676 transfer
->box
.width
, transfer
->box
.height
,
677 rgba
, transfer
->box
.width
);
686 debug_dump_float_rgba_bmp(const char *filename
,
687 unsigned width
, unsigned height
,
688 float *rgba
, unsigned stride
)
690 #ifndef PIPE_SUBSYSTEM_WINDOWS_MINIPORT
691 struct os_stream
*stream
;
692 struct bmp_file_header bmfh
;
693 struct bmp_info_header bmih
;
699 bmfh
.bfType
= 0x4d42;
700 bmfh
.bfSize
= 14 + 40 + height
*width
*4;
701 bmfh
.bfReserved1
= 0;
702 bmfh
.bfReserved2
= 0;
703 bmfh
.bfOffBits
= 14 + 40;
706 bmih
.biWidth
= width
;
707 bmih
.biHeight
= height
;
709 bmih
.biBitCount
= 32;
710 bmih
.biCompression
= 0;
711 bmih
.biSizeImage
= height
*width
*4;
712 bmih
.biXPelsPerMeter
= 0;
713 bmih
.biYPelsPerMeter
= 0;
715 bmih
.biClrImportant
= 0;
717 stream
= os_file_stream_create(filename
);
721 os_stream_write(stream
, &bmfh
, 14);
722 os_stream_write(stream
, &bmih
, 40);
726 float *ptr
= rgba
+ (stride
* y
* 4);
727 for(x
= 0; x
< width
; ++x
)
729 struct bmp_rgb_quad pixel
;
730 pixel
.rgbRed
= float_to_ubyte(ptr
[x
*4 + 0]);
731 pixel
.rgbGreen
= float_to_ubyte(ptr
[x
*4 + 1]);
732 pixel
.rgbBlue
= float_to_ubyte(ptr
[x
*4 + 2]);
733 pixel
.rgbAlpha
= 255;
734 os_stream_write(stream
, &pixel
, 4);
738 os_stream_close(stream
);