Merge branch '7.8'
[mesa.git] / src / gallium / drivers / r300 / r300_fs.c
1 /*
2 * Copyright 2008 Corbin Simpson <MostAwesomeDude@gmail.com>
3 * Joakim Sindholt <opensource@zhasha.com>
4 * Copyright 2009 Marek Olšák <maraeo@gmail.com>
5 *
6 * Permission is hereby granted, free of charge, to any person obtaining a
7 * copy of this software and associated documentation files (the "Software"),
8 * to deal in the Software without restriction, including without limitation
9 * on the rights to use, copy, modify, merge, publish, distribute, sub
10 * license, and/or sell copies of the Software, and to permit persons to whom
11 * the Software is furnished to do so, subject to the following conditions:
12 *
13 * The above copyright notice and this permission notice (including the next
14 * paragraph) shall be included in all copies or substantial portions of the
15 * Software.
16 *
17 * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
18 * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
19 * FITNESS FOR A PARTICULAR PURPOSE AND NON-INFRINGEMENT. IN NO EVENT SHALL
20 * THE AUTHOR(S) AND/OR THEIR SUPPLIERS BE LIABLE FOR ANY CLAIM,
21 * DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR
22 * OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE
23 * USE OR OTHER DEALINGS IN THE SOFTWARE. */
24
25 #include "util/u_math.h"
26 #include "util/u_memory.h"
27
28 #include "tgsi/tgsi_dump.h"
29 #include "tgsi/tgsi_ureg.h"
30
31 #include "r300_context.h"
32 #include "r300_screen.h"
33 #include "r300_fs.h"
34 #include "r300_reg.h"
35 #include "r300_tgsi_to_rc.h"
36
37 #include "radeon_code.h"
38 #include "radeon_compiler.h"
39
40 /* Convert info about FS input semantics to r300_shader_semantics. */
41 void r300_shader_read_fs_inputs(struct tgsi_shader_info* info,
42 struct r300_shader_semantics* fs_inputs)
43 {
44 int i;
45 unsigned index;
46
47 r300_shader_semantics_reset(fs_inputs);
48
49 for (i = 0; i < info->num_inputs; i++) {
50 index = info->input_semantic_index[i];
51
52 switch (info->input_semantic_name[i]) {
53 case TGSI_SEMANTIC_COLOR:
54 assert(index < ATTR_COLOR_COUNT);
55 fs_inputs->color[index] = i;
56 break;
57
58 case TGSI_SEMANTIC_GENERIC:
59 assert(index < ATTR_GENERIC_COUNT);
60 fs_inputs->generic[index] = i;
61 break;
62
63 case TGSI_SEMANTIC_FOG:
64 assert(index == 0);
65 fs_inputs->fog = i;
66 break;
67
68 case TGSI_SEMANTIC_POSITION:
69 assert(index == 0);
70 fs_inputs->wpos = i;
71 break;
72
73 default:
74 fprintf(stderr, "r300: FP: Unknown input semantic: %i\n",
75 info->input_semantic_name[i]);
76 }
77 }
78 }
79
80 static void find_output_registers(struct r300_fragment_program_compiler * compiler,
81 struct r300_fragment_shader_code *shader)
82 {
83 unsigned i, colorbuf_count = 0;
84
85 /* Mark the outputs as not present initially */
86 compiler->OutputColor[0] = shader->info.num_outputs;
87 compiler->OutputColor[1] = shader->info.num_outputs;
88 compiler->OutputColor[2] = shader->info.num_outputs;
89 compiler->OutputColor[3] = shader->info.num_outputs;
90 compiler->OutputDepth = shader->info.num_outputs;
91
92 /* Now see where they really are. */
93 for(i = 0; i < shader->info.num_outputs; ++i) {
94 switch(shader->info.output_semantic_name[i]) {
95 case TGSI_SEMANTIC_COLOR:
96 compiler->OutputColor[colorbuf_count] = i;
97 colorbuf_count++;
98 break;
99 case TGSI_SEMANTIC_POSITION:
100 compiler->OutputDepth = i;
101 break;
102 }
103 }
104 }
105
106 static void allocate_hardware_inputs(
107 struct r300_fragment_program_compiler * c,
108 void (*allocate)(void * data, unsigned input, unsigned hwreg),
109 void * mydata)
110 {
111 struct r300_shader_semantics* inputs =
112 (struct r300_shader_semantics*)c->UserData;
113 int i, reg = 0;
114
115 /* Allocate input registers. */
116 for (i = 0; i < ATTR_COLOR_COUNT; i++) {
117 if (inputs->color[i] != ATTR_UNUSED) {
118 allocate(mydata, inputs->color[i], reg++);
119 }
120 }
121 for (i = 0; i < ATTR_GENERIC_COUNT; i++) {
122 if (inputs->generic[i] != ATTR_UNUSED) {
123 allocate(mydata, inputs->generic[i], reg++);
124 }
125 }
126 if (inputs->fog != ATTR_UNUSED) {
127 allocate(mydata, inputs->fog, reg++);
128 }
129 if (inputs->wpos != ATTR_UNUSED) {
130 allocate(mydata, inputs->wpos, reg++);
131 }
132 }
133
134 static void get_external_state(
135 struct r300_context* r300,
136 struct r300_fragment_program_external_state* state)
137 {
138 struct r300_textures_state *texstate = r300->textures_state.state;
139 unsigned i;
140
141 for (i = 0; i < texstate->sampler_state_count; i++) {
142 struct r300_sampler_state* s = texstate->sampler_states[i];
143
144 if (!s) {
145 continue;
146 }
147
148 if (s->state.compare_mode == PIPE_TEX_COMPARE_R_TO_TEXTURE) {
149 /* XXX Gallium doesn't provide us with any information regarding
150 * this mode, so we are screwed. I'm setting 0 = LUMINANCE. */
151 state->unit[i].depth_texture_mode = 0;
152
153 /* Fortunately, no need to translate this. */
154 state->unit[i].texture_compare_func = s->state.compare_func;
155 }
156
157 state->unit[i].non_normalized_coords = !s->state.normalized_coords;
158
159 if (texstate->sampler_views[i]) {
160 struct r300_texture *t;
161 t = (struct r300_texture*)texstate->sampler_views[i]->base.texture;
162
163 /* XXX this should probably take into account STR, not just S. */
164 if (t->uses_pitch) {
165 switch (s->state.wrap_s) {
166 case PIPE_TEX_WRAP_REPEAT:
167 state->unit[i].wrap_mode = RC_WRAP_REPEAT;
168 state->unit[i].fake_npot = TRUE;
169 break;
170
171 case PIPE_TEX_WRAP_MIRROR_REPEAT:
172 state->unit[i].wrap_mode = RC_WRAP_MIRRORED_REPEAT;
173 state->unit[i].fake_npot = TRUE;
174 break;
175
176 case PIPE_TEX_WRAP_MIRROR_CLAMP:
177 case PIPE_TEX_WRAP_MIRROR_CLAMP_TO_EDGE:
178 case PIPE_TEX_WRAP_MIRROR_CLAMP_TO_BORDER:
179 state->unit[i].wrap_mode = RC_WRAP_MIRRORED_CLAMP;
180 state->unit[i].fake_npot = TRUE;
181 break;
182
183 default:
184 state->unit[i].wrap_mode = RC_WRAP_NONE;
185 break;
186 }
187 }
188 }
189 }
190 }
191
192 static void r300_translate_fragment_shader(
193 struct r300_context* r300,
194 struct r300_fragment_shader_code* shader,
195 const struct tgsi_token *tokens);
196
197 static void r300_dummy_fragment_shader(
198 struct r300_context* r300,
199 struct r300_fragment_shader_code* shader)
200 {
201 struct pipe_shader_state state;
202 struct ureg_program *ureg;
203 struct ureg_dst out;
204 struct ureg_src imm;
205
206 /* Make a simple fragment shader which outputs (0, 0, 0, 1) */
207 ureg = ureg_create(TGSI_PROCESSOR_FRAGMENT);
208 out = ureg_DECL_output(ureg, TGSI_SEMANTIC_COLOR, 0);
209 imm = ureg_imm4f(ureg, 0, 0, 0, 1);
210
211 ureg_MOV(ureg, out, imm);
212 ureg_END(ureg);
213
214 state.tokens = ureg_finalize(ureg);
215
216 shader->dummy = TRUE;
217 r300_translate_fragment_shader(r300, shader, state.tokens);
218
219 ureg_destroy(ureg);
220 }
221
222 static void r300_translate_fragment_shader(
223 struct r300_context* r300,
224 struct r300_fragment_shader_code* shader,
225 const struct tgsi_token *tokens)
226 {
227 struct r300_fragment_program_compiler compiler;
228 struct tgsi_to_rc ttr;
229 int wpos;
230 unsigned i;
231
232 tgsi_scan_shader(tokens, &shader->info);
233 r300_shader_read_fs_inputs(&shader->info, &shader->inputs);
234
235 wpos = shader->inputs.wpos;
236
237 /* Setup the compiler. */
238 memset(&compiler, 0, sizeof(compiler));
239 rc_init(&compiler.Base);
240 compiler.Base.Debug = DBG_ON(r300, DBG_FP);
241
242 compiler.code = &shader->code;
243 compiler.state = shader->compare_state;
244 compiler.is_r500 = r300->screen->caps.is_r500;
245 compiler.max_temp_regs = compiler.is_r500 ? 128 : 32;
246 compiler.AllocateHwInputs = &allocate_hardware_inputs;
247 compiler.UserData = &shader->inputs;
248
249 find_output_registers(&compiler, shader);
250
251 if (compiler.Base.Debug) {
252 debug_printf("r300: Initial fragment program\n");
253 tgsi_dump(tokens, 0);
254 }
255
256 /* Translate TGSI to our internal representation */
257 ttr.compiler = &compiler.Base;
258 ttr.info = &shader->info;
259 ttr.use_half_swizzles = TRUE;
260
261 r300_tgsi_to_rc(&ttr, tokens);
262
263 /**
264 * Transform the program to support WPOS.
265 *
266 * Introduce a small fragment at the start of the program that will be
267 * the only code that directly reads the WPOS input.
268 * All other code pieces that reference that input will be rewritten
269 * to read from a newly allocated temporary. */
270 if (wpos != ATTR_UNUSED) {
271 /* Moving the input to some other reg is not really necessary. */
272 rc_transform_fragment_wpos(&compiler.Base, wpos, wpos, TRUE);
273 }
274
275 /* Invoke the compiler */
276 r3xx_compile_fragment_program(&compiler);
277
278 /* Shaders with zero instructions are invalid,
279 * use the dummy shader instead. */
280 if (shader->code.code.r500.inst_end == -1) {
281 rc_destroy(&compiler.Base);
282 r300_dummy_fragment_shader(r300, shader);
283 return;
284 }
285
286 if (compiler.Base.Error) {
287 fprintf(stderr, "r300 FP: Compiler Error:\n%sUsing a dummy shader"
288 " instead.\n", compiler.Base.ErrorMsg);
289
290 if (shader->dummy) {
291 fprintf(stderr, "r300 FP: Cannot compile the dummy shader! "
292 "Giving up...\n");
293 abort();
294 }
295
296 rc_destroy(&compiler.Base);
297 r300_dummy_fragment_shader(r300, shader);
298 return;
299 }
300
301 /* Initialize numbers of constants for each type. */
302 shader->externals_count = ttr.immediate_offset;
303 shader->immediates_count = 0;
304 shader->rc_state_count = 0;
305
306 for (i = shader->externals_count; i < shader->code.constants.Count; i++) {
307 switch (shader->code.constants.Constants[i].Type) {
308 case RC_CONSTANT_IMMEDIATE:
309 ++shader->immediates_count;
310 break;
311 case RC_CONSTANT_STATE:
312 ++shader->rc_state_count;
313 break;
314 default:
315 assert(0);
316 }
317 }
318
319 /* Setup shader depth output. */
320 if (shader->code.writes_depth) {
321 shader->fg_depth_src = R300_FG_DEPTH_SRC_SHADER;
322 shader->us_out_w = R300_W_FMT_W24 | R300_W_SRC_US;
323 } else {
324 shader->fg_depth_src = R300_FG_DEPTH_SRC_SCAN;
325 shader->us_out_w = R300_W_FMT_W0 | R300_W_SRC_US;
326 }
327
328 /* And, finally... */
329 rc_destroy(&compiler.Base);
330 }
331
332 boolean r300_pick_fragment_shader(struct r300_context* r300)
333 {
334 struct r300_fragment_shader* fs = r300_fs(r300);
335 struct r300_fragment_program_external_state state = {{{ 0 }}};
336 struct r300_fragment_shader_code* ptr;
337
338 get_external_state(r300, &state);
339
340 if (!fs->first) {
341 /* Build the fragment shader for the first time. */
342 fs->first = fs->shader = CALLOC_STRUCT(r300_fragment_shader_code);
343
344 memcpy(&fs->shader->compare_state, &state,
345 sizeof(struct r300_fragment_program_external_state));
346 r300_translate_fragment_shader(r300, fs->shader, fs->state.tokens);
347 return TRUE;
348
349 } else {
350 /* Check if the currently-bound shader has been compiled
351 * with the texture-compare state we need. */
352 if (memcmp(&fs->shader->compare_state, &state, sizeof(state)) != 0) {
353 /* Search for the right shader. */
354 ptr = fs->first;
355 while (ptr) {
356 if (memcmp(&ptr->compare_state, &state, sizeof(state)) == 0) {
357 if (fs->shader != ptr) {
358 fs->shader = ptr;
359 return TRUE;
360 }
361 /* The currently-bound one is OK. */
362 return FALSE;
363 }
364 ptr = ptr->next;
365 }
366
367 /* Not found, gotta compile a new one. */
368 ptr = CALLOC_STRUCT(r300_fragment_shader_code);
369 ptr->next = fs->first;
370 fs->first = fs->shader = ptr;
371
372 ptr->compare_state = state;
373 r300_translate_fragment_shader(r300, ptr, fs->state.tokens);
374 return TRUE;
375 }
376 }
377
378 return FALSE;
379 }