st/mesa: remove special-case cyl-wrap code
[mesa.git] / src / mesa / state_tracker / st_program.c
1 /**************************************************************************
2 *
3 * Copyright 2007 Tungsten Graphics, Inc., Cedar Park, Texas.
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 TUNGSTEN GRAPHICS 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 * Authors:
29 * Keith Whitwell <keith@tungstengraphics.com>
30 * Brian Paul
31 */
32
33
34 #include "main/imports.h"
35 #include "main/mtypes.h"
36 #include "shader/prog_print.h"
37 #include "shader/programopt.h"
38
39 #include "pipe/p_context.h"
40 #include "pipe/p_defines.h"
41 #include "pipe/p_shader_tokens.h"
42 #include "draw/draw_context.h"
43 #include "tgsi/tgsi_dump.h"
44
45 #include "st_debug.h"
46 #include "st_context.h"
47 #include "st_program.h"
48 #include "st_mesa_to_tgsi.h"
49 #include "cso_cache/cso_context.h"
50
51
52
53 /**
54 * Clean out any old compilations:
55 */
56 void
57 st_vp_release_varients( struct st_context *st,
58 struct st_vertex_program *stvp )
59 {
60 struct st_vp_varient *vpv;
61
62 for (vpv = stvp->varients; vpv; ) {
63 struct st_vp_varient *next = vpv->next;
64
65 if (vpv->driver_shader)
66 cso_delete_vertex_shader(st->cso_context, vpv->driver_shader);
67
68 if (vpv->draw_shader)
69 draw_delete_vertex_shader( st->draw, vpv->draw_shader );
70
71 if (vpv->state.tokens)
72 st_free_tokens(vpv->state.tokens);
73
74 FREE( vpv );
75
76 vpv = next;
77 }
78
79 stvp->varients = NULL;
80 }
81
82
83
84
85 /**
86 * Translate a Mesa vertex shader into a TGSI shader.
87 * \param outputMapping to map vertex program output registers (VERT_RESULT_x)
88 * to TGSI output slots
89 * \param tokensOut destination for TGSI tokens
90 * \return pointer to cached pipe_shader object.
91 */
92 void
93 st_prepare_vertex_program(struct st_context *st,
94 struct st_vertex_program *stvp)
95 {
96 GLuint attr;
97
98 stvp->num_inputs = 0;
99 stvp->num_outputs = 0;
100
101 if (stvp->Base.IsPositionInvariant)
102 _mesa_insert_mvp_code(st->ctx, &stvp->Base);
103
104 assert(stvp->Base.Base.NumInstructions > 1);
105
106 /*
107 * Determine number of inputs, the mappings between VERT_ATTRIB_x
108 * and TGSI generic input indexes, plus input attrib semantic info.
109 */
110 for (attr = 0; attr < VERT_ATTRIB_MAX; attr++) {
111 if (stvp->Base.Base.InputsRead & (1 << attr)) {
112 stvp->input_to_index[attr] = stvp->num_inputs;
113 stvp->index_to_input[stvp->num_inputs] = attr;
114 stvp->num_inputs++;
115 }
116 }
117 /* bit of a hack, presetup potentially unused edgeflag input */
118 stvp->input_to_index[VERT_ATTRIB_EDGEFLAG] = stvp->num_inputs;
119 stvp->index_to_input[stvp->num_inputs] = VERT_ATTRIB_EDGEFLAG;
120
121 /* Compute mapping of vertex program outputs to slots.
122 */
123 for (attr = 0; attr < VERT_RESULT_MAX; attr++) {
124 if ((stvp->Base.Base.OutputsWritten & (1 << attr)) == 0) {
125 stvp->result_to_output[attr] = ~0;
126 }
127 else {
128 unsigned slot = stvp->num_outputs++;
129
130 stvp->result_to_output[attr] = slot;
131
132 switch (attr) {
133 case VERT_RESULT_HPOS:
134 stvp->output_semantic_name[slot] = TGSI_SEMANTIC_POSITION;
135 stvp->output_semantic_index[slot] = 0;
136 break;
137 case VERT_RESULT_COL0:
138 stvp->output_semantic_name[slot] = TGSI_SEMANTIC_COLOR;
139 stvp->output_semantic_index[slot] = 0;
140 break;
141 case VERT_RESULT_COL1:
142 stvp->output_semantic_name[slot] = TGSI_SEMANTIC_COLOR;
143 stvp->output_semantic_index[slot] = 1;
144 break;
145 case VERT_RESULT_BFC0:
146 stvp->output_semantic_name[slot] = TGSI_SEMANTIC_BCOLOR;
147 stvp->output_semantic_index[slot] = 0;
148 break;
149 case VERT_RESULT_BFC1:
150 stvp->output_semantic_name[slot] = TGSI_SEMANTIC_BCOLOR;
151 stvp->output_semantic_index[slot] = 1;
152 break;
153 case VERT_RESULT_FOGC:
154 stvp->output_semantic_name[slot] = TGSI_SEMANTIC_FOG;
155 stvp->output_semantic_index[slot] = 0;
156 break;
157 case VERT_RESULT_PSIZ:
158 stvp->output_semantic_name[slot] = TGSI_SEMANTIC_PSIZE;
159 stvp->output_semantic_index[slot] = 0;
160 break;
161 case VERT_RESULT_EDGE:
162 assert(0);
163 break;
164
165 case VERT_RESULT_TEX0:
166 case VERT_RESULT_TEX1:
167 case VERT_RESULT_TEX2:
168 case VERT_RESULT_TEX3:
169 case VERT_RESULT_TEX4:
170 case VERT_RESULT_TEX5:
171 case VERT_RESULT_TEX6:
172 case VERT_RESULT_TEX7:
173 stvp->output_semantic_name[slot] = TGSI_SEMANTIC_GENERIC;
174 stvp->output_semantic_index[slot] = attr - VERT_RESULT_TEX0;
175 break;
176
177 case VERT_RESULT_VAR0:
178 default:
179 assert(attr < VERT_RESULT_MAX);
180 stvp->output_semantic_name[slot] = TGSI_SEMANTIC_GENERIC;
181 stvp->output_semantic_index[slot] = (FRAG_ATTRIB_VAR0 -
182 FRAG_ATTRIB_TEX0 +
183 attr -
184 VERT_RESULT_VAR0);
185 break;
186 }
187 }
188 }
189 /* similar hack to above, presetup potentially unused edgeflag output */
190 stvp->result_to_output[VERT_RESULT_EDGE] = stvp->num_outputs;
191 stvp->output_semantic_name[stvp->num_outputs] = TGSI_SEMANTIC_EDGEFLAG;
192 stvp->output_semantic_index[stvp->num_outputs] = 0;
193 }
194
195
196 struct st_vp_varient *
197 st_translate_vertex_program(struct st_context *st,
198 struct st_vertex_program *stvp,
199 const struct st_vp_varient_key *key)
200 {
201 struct st_vp_varient *vpv = CALLOC_STRUCT(st_vp_varient);
202 struct pipe_context *pipe = st->pipe;
203 struct ureg_program *ureg;
204 enum pipe_error error;
205 unsigned num_outputs;
206
207 ureg = ureg_create( TGSI_PROCESSOR_VERTEX );
208 if (ureg == NULL)
209 return NULL;
210
211 vpv->num_inputs = stvp->num_inputs;
212 num_outputs = stvp->num_outputs;
213 if (key->passthrough_edgeflags) {
214 vpv->num_inputs++;
215 num_outputs++;
216 }
217
218 error =
219 st_translate_mesa_program(st->ctx,
220 TGSI_PROCESSOR_VERTEX,
221 ureg,
222 &stvp->Base.Base,
223 /* inputs */
224 vpv->num_inputs,
225 stvp->input_to_index,
226 NULL, /* input semantic name */
227 NULL, /* input semantic index */
228 NULL,
229 /* outputs */
230 num_outputs,
231 stvp->result_to_output,
232 stvp->output_semantic_name,
233 stvp->output_semantic_index,
234 key->passthrough_edgeflags );
235
236 if (error)
237 goto fail;
238
239 vpv->state.tokens = ureg_get_tokens( ureg, NULL );
240 if (!vpv->state.tokens)
241 goto fail;
242
243 ureg_destroy( ureg );
244
245 vpv->driver_shader = pipe->create_vs_state(pipe, &vpv->state);
246
247 if ((ST_DEBUG & DEBUG_TGSI) && (ST_DEBUG & DEBUG_MESA)) {
248 _mesa_print_program(&stvp->Base.Base);
249 debug_printf("\n");
250 }
251
252 if (ST_DEBUG & DEBUG_TGSI) {
253 tgsi_dump( vpv->state.tokens, 0 );
254 debug_printf("\n");
255 }
256
257 return vpv;
258
259 fail:
260 debug_printf("%s: failed to translate Mesa program:\n", __FUNCTION__);
261 _mesa_print_program(&stvp->Base.Base);
262 debug_assert(0);
263
264 ureg_destroy( ureg );
265 return NULL;
266 }
267
268
269
270 /**
271 * Translate a Mesa fragment shader into a TGSI shader.
272 * \return pointer to cached pipe_shader object.
273 */
274 void
275 st_translate_fragment_program(struct st_context *st,
276 struct st_fragment_program *stfp )
277 {
278 struct pipe_context *pipe = st->pipe;
279 GLuint outputMapping[FRAG_RESULT_MAX];
280 GLuint inputMapping[FRAG_ATTRIB_MAX];
281 GLuint interpMode[16]; /* XXX size? */
282 GLuint attr;
283 enum pipe_error error;
284 const GLbitfield inputsRead = stfp->Base.Base.InputsRead;
285 struct ureg_program *ureg;
286
287 uint fs_num_inputs = 0;
288
289 ubyte fs_output_semantic_name[PIPE_MAX_SHADER_OUTPUTS];
290 ubyte fs_output_semantic_index[PIPE_MAX_SHADER_OUTPUTS];
291 uint fs_num_outputs = 0;
292
293 /*
294 * Convert Mesa program inputs to TGSI input register semantics.
295 */
296 for (attr = 0; attr < FRAG_ATTRIB_MAX; attr++) {
297 if (inputsRead & (1 << attr)) {
298 const GLuint slot = fs_num_inputs++;
299
300 inputMapping[attr] = slot;
301
302 switch (attr) {
303 case FRAG_ATTRIB_WPOS:
304 stfp->input_semantic_name[slot] = TGSI_SEMANTIC_POSITION;
305 stfp->input_semantic_index[slot] = 0;
306 interpMode[slot] = TGSI_INTERPOLATE_LINEAR;
307 break;
308 case FRAG_ATTRIB_COL0:
309 stfp->input_semantic_name[slot] = TGSI_SEMANTIC_COLOR;
310 stfp->input_semantic_index[slot] = 0;
311 interpMode[slot] = TGSI_INTERPOLATE_LINEAR;
312 break;
313 case FRAG_ATTRIB_COL1:
314 stfp->input_semantic_name[slot] = TGSI_SEMANTIC_COLOR;
315 stfp->input_semantic_index[slot] = 1;
316 interpMode[slot] = TGSI_INTERPOLATE_LINEAR;
317 break;
318 case FRAG_ATTRIB_FOGC:
319 stfp->input_semantic_name[slot] = TGSI_SEMANTIC_FOG;
320 stfp->input_semantic_index[slot] = 0;
321 interpMode[slot] = TGSI_INTERPOLATE_PERSPECTIVE;
322 break;
323 case FRAG_ATTRIB_FACE:
324 stfp->input_semantic_name[slot] = TGSI_SEMANTIC_FACE;
325 stfp->input_semantic_index[slot] = 0;
326 interpMode[slot] = TGSI_INTERPOLATE_CONSTANT;
327 break;
328 case FRAG_ATTRIB_PNTC:
329 /* This is a hack. We really need a new semantic label for
330 * point coord. The draw module needs to know which fragment
331 * shader input is the point coord attribute so that it can set
332 * up the right vertex attribute values.
333 */
334 stfp->input_semantic_name[slot] = TGSI_SEMANTIC_GENERIC;
335 stfp->input_semantic_index[slot] = 0;
336 interpMode[slot] = TGSI_INTERPOLATE_PERSPECTIVE;
337 break;
338
339 /* In most cases, there is nothing special about these
340 * inputs, so adopt a convention to use the generic
341 * semantic name and the mesa FRAG_ATTRIB_ number as the
342 * index.
343 *
344 * All that is required is that the vertex shader labels
345 * its own outputs similarly, and that the vertex shader
346 * generates at least every output required by the
347 * fragment shader plus fixed-function hardware (such as
348 * BFC).
349 *
350 * There is no requirement that semantic indexes start at
351 * zero or be restricted to a particular range -- nobody
352 * should be building tables based on semantic index.
353 */
354 case FRAG_ATTRIB_TEX0:
355 case FRAG_ATTRIB_TEX1:
356 case FRAG_ATTRIB_TEX2:
357 case FRAG_ATTRIB_TEX3:
358 case FRAG_ATTRIB_TEX4:
359 case FRAG_ATTRIB_TEX5:
360 case FRAG_ATTRIB_TEX6:
361 case FRAG_ATTRIB_TEX7:
362 case FRAG_ATTRIB_VAR0:
363 default:
364 /* Actually, let's try and zero-base this just for
365 * readability of the generated TGSI.
366 */
367 assert(attr >= FRAG_ATTRIB_TEX0);
368 stfp->input_semantic_index[slot] = (attr - FRAG_ATTRIB_TEX0);
369 stfp->input_semantic_name[slot] = TGSI_SEMANTIC_GENERIC;
370 interpMode[slot] = TGSI_INTERPOLATE_PERSPECTIVE;
371 break;
372 }
373 }
374 else {
375 inputMapping[attr] = -1;
376 }
377 }
378
379 /*
380 * Semantics and mapping for outputs
381 */
382 {
383 uint numColors = 0;
384 GLbitfield64 outputsWritten = stfp->Base.Base.OutputsWritten;
385
386 /* if z is written, emit that first */
387 if (outputsWritten & (1 << FRAG_RESULT_DEPTH)) {
388 fs_output_semantic_name[fs_num_outputs] = TGSI_SEMANTIC_POSITION;
389 fs_output_semantic_index[fs_num_outputs] = 0;
390 outputMapping[FRAG_RESULT_DEPTH] = fs_num_outputs;
391 fs_num_outputs++;
392 outputsWritten &= ~(1 << FRAG_RESULT_DEPTH);
393 }
394
395 /* handle remaning outputs (color) */
396 for (attr = 0; attr < FRAG_RESULT_MAX; attr++) {
397 if (outputsWritten & (1 << attr)) {
398 switch (attr) {
399 case FRAG_RESULT_DEPTH:
400 /* handled above */
401 assert(0);
402 break;
403 default:
404 assert(attr == FRAG_RESULT_COLOR ||
405 (FRAG_RESULT_DATA0 <= attr && attr < FRAG_RESULT_MAX));
406 fs_output_semantic_name[fs_num_outputs] = TGSI_SEMANTIC_COLOR;
407 fs_output_semantic_index[fs_num_outputs] = numColors;
408 outputMapping[attr] = fs_num_outputs;
409 numColors++;
410 break;
411 }
412
413 fs_num_outputs++;
414 }
415 }
416 }
417
418 ureg = ureg_create( TGSI_PROCESSOR_FRAGMENT );
419 if (ureg == NULL)
420 return;
421
422
423 error =
424 st_translate_mesa_program(st->ctx,
425 TGSI_PROCESSOR_FRAGMENT,
426 ureg,
427 &stfp->Base.Base,
428 /* inputs */
429 fs_num_inputs,
430 inputMapping,
431 stfp->input_semantic_name,
432 stfp->input_semantic_index,
433 interpMode,
434 /* outputs */
435 fs_num_outputs,
436 outputMapping,
437 fs_output_semantic_name,
438 fs_output_semantic_index, FALSE );
439
440 stfp->state.tokens = ureg_get_tokens( ureg, NULL );
441 ureg_destroy( ureg );
442 stfp->driver_shader = pipe->create_fs_state(pipe, &stfp->state);
443
444 if ((ST_DEBUG & DEBUG_TGSI) && (ST_DEBUG & DEBUG_MESA)) {
445 _mesa_print_program(&stfp->Base.Base);
446 debug_printf("\n");
447 }
448
449 if (ST_DEBUG & DEBUG_TGSI) {
450 tgsi_dump( stfp->state.tokens, 0/*TGSI_DUMP_VERBOSE*/ );
451 debug_printf("\n");
452 }
453 }
454
455
456 /**
457 * Debug- print current shader text
458 */
459 void
460 st_print_shaders(GLcontext *ctx)
461 {
462 struct gl_shader_program *shProg = ctx->Shader.CurrentProgram;
463 if (shProg) {
464 GLuint i;
465 for (i = 0; i < shProg->NumShaders; i++) {
466 printf("GLSL shader %u of %u:\n", i, shProg->NumShaders);
467 printf("%s\n", shProg->Shaders[i]->Source);
468 }
469 }
470 }