r300g: final fix for r3xx constant buffer emission
[mesa.git] / src / gallium / drivers / r300 / r300_debug.c
1 /*
2 * Copyright 2009 Nicolai Haehnle <nhaehnle@gmail.com>
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 * on the rights to use, copy, modify, merge, publish, distribute, sub
8 * license, and/or sell copies of the Software, and to permit persons to whom
9 * the 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 NON-INFRINGEMENT. IN NO EVENT SHALL
18 * THE AUTHOR(S) AND/OR THEIR SUPPLIERS BE LIABLE FOR ANY CLAIM,
19 * DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR
20 * OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE
21 * USE OR OTHER DEALINGS IN THE SOFTWARE. */
22
23 #include "r300_context.h"
24
25 #include "util/u_debug.h"
26
27 #include <stdio.h>
28
29 static const struct debug_named_value debug_options[] = {
30 { "fp", DBG_FP, "Fragment program handling (for debugging)" },
31 { "vp", DBG_VP, "Vertex program handling (for debugging)" },
32 { "draw", DBG_DRAW, "Draw calls (for debugging)" },
33 { "swtcl", DBG_SWTCL, "SWTCL-specific info (for debugging)" },
34 { "rsblock", DBG_RS_BLOCK, "Rasterizer registers (for debugging)" },
35 { "psc", DBG_PSC, "Vertex stream registers (for debugging)" },
36 { "tex", DBG_TEX, "Textures (for debugging)" },
37 { "texalloc", DBG_TEXALLOC, "Texture allocation (for debugging)" },
38 { "fall", DBG_FALL, "Fallbacks (for debugging)" },
39 { "rs", DBG_RS, "Rasterizer (for debugging)" },
40 { "fb", DBG_FB, "Framebuffer (for debugging)" },
41 { "fakeocc", DBG_FAKE_OCC, "Use fake occlusion queries (for debugging)" },
42 { "anisohq", DBG_ANISOHQ, "High quality anisotropic filtering (for benchmarking)" },
43 { "notiling", DBG_NO_TILING, "Disable tiling (for benchmarking)" },
44 { "noimmd", DBG_NO_IMMD, "Disable immediate mode (for benchmarking)" },
45 { "stats", DBG_STATS, "Gather statistics" },
46
47 /* must be last */
48 DEBUG_NAMED_VALUE_END
49 };
50
51 void r300_init_debug(struct r300_screen * screen)
52 {
53 screen->debug = debug_get_flags_option("RADEON_DEBUG", debug_options, 0);
54 }
55
56 void r500_dump_rs_block(struct r300_rs_block *rs)
57 {
58 unsigned count, ip, it_count, ic_count, i, j;
59 unsigned tex_ptr;
60 unsigned col_ptr, col_fmt;
61
62 count = rs->inst_count & 0xf;
63 count++;
64
65 it_count = rs->count & 0x7f;
66 ic_count = (rs->count >> 7) & 0xf;
67
68 fprintf(stderr, "RS Block: %d texcoords (linear), %d colors (perspective)\n",
69 it_count, ic_count);
70 fprintf(stderr, "%d instructions\n", count);
71
72 for (i = 0; i < count; i++) {
73 if (rs->inst[i] & 0x10) {
74 ip = rs->inst[i] & 0xf;
75 fprintf(stderr, "texture: ip %d to psf %d\n",
76 ip, (rs->inst[i] >> 5) & 0x7f);
77
78 tex_ptr = rs->ip[ip] & 0xffffff;
79 fprintf(stderr, " : ");
80
81 j = 3;
82 do {
83 if ((tex_ptr & 0x3f) == 63) {
84 fprintf(stderr, "1.0");
85 } else if ((tex_ptr & 0x3f) == 62) {
86 fprintf(stderr, "0.0");
87 } else {
88 fprintf(stderr, "[%d]", tex_ptr & 0x3f);
89 }
90 } while (j-- && fprintf(stderr, "/"));
91 fprintf(stderr, "\n");
92 }
93
94 if (rs->inst[i] & 0x10000) {
95 ip = (rs->inst[i] >> 12) & 0xf;
96 fprintf(stderr, "color: ip %d to psf %d\n",
97 ip, (rs->inst[i] >> 18) & 0x7f);
98
99 col_ptr = (rs->ip[ip] >> 24) & 0x7;
100 col_fmt = (rs->ip[ip] >> 27) & 0xf;
101 fprintf(stderr, " : offset %d ", col_ptr);
102
103 switch (col_fmt) {
104 case 0:
105 fprintf(stderr, "(R/G/B/A)");
106 break;
107 case 1:
108 fprintf(stderr, "(R/G/B/0)");
109 break;
110 case 2:
111 fprintf(stderr, "(R/G/B/1)");
112 break;
113 case 4:
114 fprintf(stderr, "(0/0/0/A)");
115 break;
116 case 5:
117 fprintf(stderr, "(0/0/0/0)");
118 break;
119 case 6:
120 fprintf(stderr, "(0/0/0/1)");
121 break;
122 case 8:
123 fprintf(stderr, "(1/1/1/A)");
124 break;
125 case 9:
126 fprintf(stderr, "(1/1/1/0)");
127 break;
128 case 10:
129 fprintf(stderr, "(1/1/1/1)");
130 break;
131 }
132 fprintf(stderr, "\n");
133 }
134 }
135 }