r300g: fix microtiling on RS6xx
[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 { "cbzb", DBG_CBZB, "Fast color clear info (for debugging)" },
42 { "fakeocc", DBG_FAKE_OCC, "Use fake occlusion queries (for debugging)" },
43 { "anisohq", DBG_ANISOHQ, "High quality anisotropic filtering (for benchmarking)" },
44 { "notiling", DBG_NO_TILING, "Disable tiling (for benchmarking)" },
45 { "noimmd", DBG_NO_IMMD, "Disable immediate mode (for benchmarking)" },
46 { "stats", DBG_STATS, "Gather statistics" },
47
48 /* must be last */
49 DEBUG_NAMED_VALUE_END
50 };
51
52 void r300_init_debug(struct r300_screen * screen)
53 {
54 screen->debug = debug_get_flags_option("RADEON_DEBUG", debug_options, 0);
55 }
56
57 void r500_dump_rs_block(struct r300_rs_block *rs)
58 {
59 unsigned count, ip, it_count, ic_count, i, j;
60 unsigned tex_ptr;
61 unsigned col_ptr, col_fmt;
62
63 count = rs->inst_count & 0xf;
64 count++;
65
66 it_count = rs->count & 0x7f;
67 ic_count = (rs->count >> 7) & 0xf;
68
69 fprintf(stderr, "RS Block: %d texcoords (linear), %d colors (perspective)\n",
70 it_count, ic_count);
71 fprintf(stderr, "%d instructions\n", count);
72
73 for (i = 0; i < count; i++) {
74 if (rs->inst[i] & 0x10) {
75 ip = rs->inst[i] & 0xf;
76 fprintf(stderr, "texture: ip %d to psf %d\n",
77 ip, (rs->inst[i] >> 5) & 0x7f);
78
79 tex_ptr = rs->ip[ip] & 0xffffff;
80 fprintf(stderr, " : ");
81
82 j = 3;
83 do {
84 if ((tex_ptr & 0x3f) == 63) {
85 fprintf(stderr, "1.0");
86 } else if ((tex_ptr & 0x3f) == 62) {
87 fprintf(stderr, "0.0");
88 } else {
89 fprintf(stderr, "[%d]", tex_ptr & 0x3f);
90 }
91 } while (j-- && fprintf(stderr, "/"));
92 fprintf(stderr, "\n");
93 }
94
95 if (rs->inst[i] & 0x10000) {
96 ip = (rs->inst[i] >> 12) & 0xf;
97 fprintf(stderr, "color: ip %d to psf %d\n",
98 ip, (rs->inst[i] >> 18) & 0x7f);
99
100 col_ptr = (rs->ip[ip] >> 24) & 0x7;
101 col_fmt = (rs->ip[ip] >> 27) & 0xf;
102 fprintf(stderr, " : offset %d ", col_ptr);
103
104 switch (col_fmt) {
105 case 0:
106 fprintf(stderr, "(R/G/B/A)");
107 break;
108 case 1:
109 fprintf(stderr, "(R/G/B/0)");
110 break;
111 case 2:
112 fprintf(stderr, "(R/G/B/1)");
113 break;
114 case 4:
115 fprintf(stderr, "(0/0/0/A)");
116 break;
117 case 5:
118 fprintf(stderr, "(0/0/0/0)");
119 break;
120 case 6:
121 fprintf(stderr, "(0/0/0/1)");
122 break;
123 case 8:
124 fprintf(stderr, "(1/1/1/A)");
125 break;
126 case 9:
127 fprintf(stderr, "(1/1/1/0)");
128 break;
129 case 10:
130 fprintf(stderr, "(1/1/1/1)");
131 break;
132 }
133 fprintf(stderr, "\n");
134 }
135 }
136 }