Updated GLSL uniform/sampler handling from gallium-0.1 branch
[mesa.git] / src / mesa / shader / slang / slang_link.c
1 /*
2 * Mesa 3-D graphics library
3 * Version: 6.5.3
4 *
5 * Copyright (C) 2007 Brian Paul All Rights Reserved.
6 *
7 * Permission is hereby granted, free of charge, to any person obtaining a
8 * copy of this software and associated documentation files (the "Software"),
9 * to deal in the Software without restriction, including without limitation
10 * the rights to use, copy, modify, merge, publish, distribute, sublicense,
11 * and/or sell copies of the Software, and to permit persons to whom the
12 * Software is furnished to do so, subject to the following conditions:
13 *
14 * The above copyright notice and this permission notice shall be included
15 * in all copies or substantial portions of the Software.
16 *
17 * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS
18 * OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
19 * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL
20 * BRIAN PAUL BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN
21 * AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN
22 * CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
23 */
24
25 /**
26 * \file slang_link.c
27 * GLSL linker
28 * \author Brian Paul
29 */
30
31 #include "main/imports.h"
32 #include "main/context.h"
33 #include "main/hash.h"
34 #include "main/macros.h"
35 #include "shader/program.h"
36 #include "shader/prog_instruction.h"
37 #include "shader/prog_parameter.h"
38 #include "shader/prog_print.h"
39 #include "shader/prog_statevars.h"
40 #include "shader/prog_uniform.h"
41 #include "shader/shader_api.h"
42 #include "slang_link.h"
43
44
45
46 /**
47 * Linking varying vars involves rearranging varying vars so that the
48 * vertex program's output varyings matches the order of the fragment
49 * program's input varyings.
50 */
51 static GLboolean
52 link_varying_vars(struct gl_shader_program *shProg, struct gl_program *prog)
53 {
54 GLuint *map, i, firstVarying, newFile;
55 GLbitfield varsWritten, varsRead;
56
57 map = (GLuint *) malloc(prog->Varying->NumParameters * sizeof(GLuint));
58 if (!map)
59 return GL_FALSE;
60
61 for (i = 0; i < prog->Varying->NumParameters; i++) {
62 /* see if this varying is in the linked varying list */
63 const struct gl_program_parameter *var
64 = prog->Varying->Parameters + i;
65
66 GLint j = _mesa_lookup_parameter_index(shProg->Varying, -1, var->Name);
67 if (j >= 0) {
68 /* already in list, check size */
69 if (var->Size != shProg->Varying->Parameters[j].Size) {
70 /* error */
71 return GL_FALSE;
72 }
73 }
74 else {
75 /* not already in linked list */
76 j = _mesa_add_varying(shProg->Varying, var->Name, var->Size);
77 }
78 ASSERT(j >= 0);
79
80 map[i] = j;
81 }
82
83
84 /* Varying variables are treated like other vertex program outputs
85 * (and like other fragment program inputs). The position of the
86 * first varying differs for vertex/fragment programs...
87 * Also, replace File=PROGRAM_VARYING with File=PROGRAM_INPUT/OUTPUT.
88 */
89 if (prog->Target == GL_VERTEX_PROGRAM_ARB) {
90 firstVarying = VERT_RESULT_VAR0;
91 newFile = PROGRAM_OUTPUT;
92 }
93 else {
94 assert(prog->Target == GL_FRAGMENT_PROGRAM_ARB);
95 firstVarying = FRAG_ATTRIB_VAR0;
96 newFile = PROGRAM_INPUT;
97 }
98
99 /* keep track of which varying vars we read and write */
100 varsWritten = varsRead = 0x0;
101
102 /* OK, now scan the program/shader instructions looking for varying vars,
103 * replacing the old index with the new index.
104 */
105 for (i = 0; i < prog->NumInstructions; i++) {
106 struct prog_instruction *inst = prog->Instructions + i;
107 GLuint j;
108
109 if (inst->DstReg.File == PROGRAM_VARYING) {
110 inst->DstReg.File = newFile;
111 inst->DstReg.Index = map[ inst->DstReg.Index ] + firstVarying;
112 varsWritten |= (1 << inst->DstReg.Index);
113 }
114
115 for (j = 0; j < 3; j++) {
116 if (inst->SrcReg[j].File == PROGRAM_VARYING) {
117 inst->SrcReg[j].File = newFile;
118 inst->SrcReg[j].Index = map[ inst->SrcReg[j].Index ] + firstVarying;
119 varsRead |= (1 << inst->SrcReg[j].Index);
120 }
121 }
122 }
123
124 if (prog->Target == GL_VERTEX_PROGRAM_ARB) {
125 prog->OutputsWritten |= varsWritten;
126 /*printf("VERT OUTPUTS: 0x%x \n", varsWritten);*/
127 }
128 else {
129 assert(prog->Target == GL_FRAGMENT_PROGRAM_ARB);
130 prog->InputsRead |= varsRead;
131 /*printf("FRAG INPUTS: 0x%x\n", varsRead);*/
132 }
133
134 free(map);
135
136 return GL_TRUE;
137 }
138
139
140 /**
141 * Build the shProg->Uniforms list.
142 * This is basically a list/index of all uniforms found in either/both of
143 * the vertex and fragment shaders.
144 */
145 static void
146 link_uniform_vars(struct gl_shader_program *shProg,
147 struct gl_program *prog,
148 GLuint *numSamplers)
149 {
150 GLuint samplerMap[MAX_SAMPLERS];
151 GLuint i;
152
153 for (i = 0; i < prog->Parameters->NumParameters; i++) {
154 const struct gl_program_parameter *p = prog->Parameters->Parameters + i;
155
156 /*
157 * XXX FIX NEEDED HERE
158 * We should also be adding a uniform if p->Type == PROGRAM_STATE_VAR.
159 * For example, modelview matrix, light pos, etc.
160 * Also, we need to update the state-var name-generator code to
161 * generate GLSL-style names, like "gl_LightSource[0].position".
162 * Furthermore, we'll need to fix the state-var's size/datatype info.
163 */
164
165 if (p->Type == PROGRAM_UNIFORM ||
166 p->Type == PROGRAM_SAMPLER) {
167 _mesa_append_uniform(shProg->Uniforms, p->Name, prog->Target, i);
168 }
169
170 if (p->Type == PROGRAM_SAMPLER) {
171 /* Allocate a new sampler index */
172 GLuint sampNum = *numSamplers;
173 GLuint oldSampNum = (GLuint) prog->Parameters->ParameterValues[i][0];
174 assert(oldSampNum < MAX_SAMPLERS);
175 samplerMap[oldSampNum] = sampNum;
176 (*numSamplers)++;
177 }
178 }
179
180
181 /* OK, now scan the program/shader instructions looking for sampler vars,
182 * replacing the old index with the new index.
183 */
184 prog->SamplersUsed = 0x0;
185 for (i = 0; i < prog->NumInstructions; i++) {
186 struct prog_instruction *inst = prog->Instructions + i;
187 if (_mesa_is_tex_instruction(inst->Opcode)) {
188 /*
189 printf("====== remap sampler from %d to %d\n",
190 inst->Sampler, map[ inst->Sampler ]);
191 */
192 /* here, texUnit is really samplerUnit */
193 inst->TexSrcUnit = samplerMap[inst->TexSrcUnit];
194 prog->SamplerTargets[inst->TexSrcUnit] = inst->TexSrcTarget;
195 prog->SamplersUsed |= (1 << inst->TexSrcUnit);
196 }
197 }
198
199 }
200
201
202 /**
203 * Resolve binding of generic vertex attributes.
204 * For example, if the vertex shader declared "attribute vec4 foobar" we'll
205 * allocate a generic vertex attribute for "foobar" and plug that value into
206 * the vertex program instructions.
207 */
208 static GLboolean
209 _slang_resolve_attributes(struct gl_shader_program *shProg,
210 struct gl_program *prog)
211 {
212 GLuint i, j;
213 GLbitfield usedAttributes;
214 GLint size = 4; /* XXX fix */
215
216 assert(prog->Target == GL_VERTEX_PROGRAM_ARB);
217
218 if (!shProg->Attributes)
219 shProg->Attributes = _mesa_new_parameter_list();
220
221 /* Build a bitmask indicating which attribute indexes have been
222 * explicitly bound by the user with glBindAttributeLocation().
223 */
224 usedAttributes = 0x0;
225 for (i = 0; i < shProg->Attributes->NumParameters; i++) {
226 GLint attr = shProg->Attributes->Parameters[i].StateIndexes[0];
227 usedAttributes |= attr;
228 }
229
230 /*
231 * Scan program for generic attribute references
232 */
233 for (i = 0; i < prog->NumInstructions; i++) {
234 struct prog_instruction *inst = prog->Instructions + i;
235 for (j = 0; j < 3; j++) {
236 if (inst->SrcReg[j].File == PROGRAM_INPUT &&
237 inst->SrcReg[j].Index >= VERT_ATTRIB_GENERIC0) {
238 /* this is a generic attrib */
239 const GLint k = inst->SrcReg[j].Index - VERT_ATTRIB_GENERIC0;
240 const char *name = prog->Attributes->Parameters[k].Name;
241 /* See if this attrib name is in the program's attribute list
242 * (i.e. was bound by the user).
243 */
244 GLint index = _mesa_lookup_parameter_index(shProg->Attributes,
245 -1, name);
246 GLint attr;
247 if (index >= 0) {
248 /* found, user must have specified a binding */
249 attr = shProg->Attributes->Parameters[index].StateIndexes[0];
250 }
251 else {
252 /* Not found, choose our own attribute number.
253 * Start at 1 since generic attribute 0 always aliases
254 * glVertex/position.
255 */
256 for (attr = 1; attr < MAX_VERTEX_ATTRIBS; attr++) {
257 if (((1 << attr) & usedAttributes) == 0)
258 break;
259 }
260 if (attr == MAX_VERTEX_ATTRIBS) {
261 /* too many! XXX record error log */
262 return GL_FALSE;
263 }
264 _mesa_add_attribute(shProg->Attributes, name, size, attr);
265 }
266
267 inst->SrcReg[j].Index = VERT_ATTRIB_GENERIC0 + attr;
268 }
269 }
270 }
271 return GL_TRUE;
272 }
273
274
275 /**
276 * Scan program instructions to update the program's InputsRead and
277 * OutputsWritten fields.
278 */
279 static void
280 _slang_update_inputs_outputs(struct gl_program *prog)
281 {
282 GLuint i, j;
283
284 prog->InputsRead = 0x0;
285 prog->OutputsWritten = 0x0;
286
287 for (i = 0; i < prog->NumInstructions; i++) {
288 const struct prog_instruction *inst = prog->Instructions + i;
289 const GLuint numSrc = _mesa_num_inst_src_regs(inst->Opcode);
290 for (j = 0; j < numSrc; j++) {
291 if (inst->SrcReg[j].File == PROGRAM_INPUT) {
292 prog->InputsRead |= 1 << inst->SrcReg[j].Index;
293 }
294 }
295 if (inst->DstReg.File == PROGRAM_OUTPUT) {
296 prog->OutputsWritten |= 1 << inst->DstReg.Index;
297 }
298 }
299 }
300
301
302 /**
303 * Scan a vertex program looking for instances of
304 * (PROGRAM_INPUT, VERT_ATTRIB_GENERIC0 + oldAttrib) and replace with
305 * (PROGRAM_INPUT, VERT_ATTRIB_GENERIC0 + newAttrib).
306 * This is used when the user calls glBindAttribLocation on an already linked
307 * shader program.
308 */
309 void
310 _slang_remap_attribute(struct gl_program *prog, GLuint oldAttrib, GLuint newAttrib)
311 {
312 GLuint i, j;
313
314 assert(prog->Target == GL_VERTEX_PROGRAM_ARB);
315
316 for (i = 0; i < prog->NumInstructions; i++) {
317 struct prog_instruction *inst = prog->Instructions + i;
318 for (j = 0; j < 3; j++) {
319 if (inst->SrcReg[j].File == PROGRAM_INPUT) {
320 if (inst->SrcReg[j].Index == VERT_ATTRIB_GENERIC0 + oldAttrib) {
321 inst->SrcReg[j].Index = VERT_ATTRIB_GENERIC0 + newAttrib;
322 }
323 }
324 }
325 }
326
327 _slang_update_inputs_outputs(prog);
328 }
329
330
331
332 /** cast wrapper */
333 static struct gl_vertex_program *
334 vertex_program(struct gl_program *prog)
335 {
336 assert(prog->Target == GL_VERTEX_PROGRAM_ARB);
337 return (struct gl_vertex_program *) prog;
338 }
339
340
341 /** cast wrapper */
342 static struct gl_fragment_program *
343 fragment_program(struct gl_program *prog)
344 {
345 assert(prog->Target == GL_FRAGMENT_PROGRAM_ARB);
346 return (struct gl_fragment_program *) prog;
347 }
348
349
350 /**
351 * Record a linking error.
352 */
353 static void
354 link_error(struct gl_shader_program *shProg, const char *msg)
355 {
356 if (shProg->InfoLog) {
357 _mesa_free(shProg->InfoLog);
358 }
359 shProg->InfoLog = _mesa_strdup(msg);
360 shProg->LinkStatus = GL_FALSE;
361 }
362
363
364
365 /**
366 * Shader linker. Currently:
367 *
368 * 1. The last attached vertex shader and fragment shader are linked.
369 * 2. Varying vars in the two shaders are combined so their locations
370 * agree between the vertex and fragment stages. They're treated as
371 * vertex program output attribs and as fragment program input attribs.
372 * 3. The vertex and fragment programs are cloned and modified to update
373 * src/dst register references so they use the new, linked varying
374 * storage locations.
375 */
376 void
377 _slang_link(GLcontext *ctx,
378 GLhandleARB programObj,
379 struct gl_shader_program *shProg)
380 {
381 const struct gl_vertex_program *vertProg;
382 const struct gl_fragment_program *fragProg;
383 GLuint numSamplers = 0;
384 GLuint i;
385
386 _mesa_clear_shader_program_data(ctx, shProg);
387
388 shProg->Uniforms = _mesa_new_uniform_list();
389 shProg->Varying = _mesa_new_parameter_list();
390
391 /**
392 * Find attached vertex shader, fragment shader
393 */
394 vertProg = NULL;
395 fragProg = NULL;
396 for (i = 0; i < shProg->NumShaders; i++) {
397 if (shProg->Shaders[i]->Type == GL_VERTEX_SHADER)
398 vertProg = vertex_program(shProg->Shaders[i]->Programs[0]);
399 else if (shProg->Shaders[i]->Type == GL_FRAGMENT_SHADER)
400 fragProg = fragment_program(shProg->Shaders[i]->Programs[0]);
401 else
402 _mesa_problem(ctx, "unexpected shader target in slang_link()");
403 }
404
405 /*
406 * Make copies of the vertex/fragment programs now since we'll be
407 * changing src/dst registers after merging the uniforms and varying vars.
408 */
409 if (vertProg) {
410 _mesa_reference_vertprog(ctx, &shProg->VertexProgram,
411 vertex_program(_mesa_clone_program(ctx, &vertProg->Base)));
412 }
413 else {
414 _mesa_reference_vertprog(ctx, &shProg->VertexProgram, NULL);
415 }
416
417 if (fragProg) {
418 _mesa_reference_fragprog(ctx, &shProg->FragmentProgram,
419 fragment_program(_mesa_clone_program(ctx, &fragProg->Base)));
420 }
421 else {
422 _mesa_reference_fragprog(ctx, &shProg->FragmentProgram, NULL);
423 }
424
425 /* link varying vars */
426 if (shProg->VertexProgram)
427 link_varying_vars(shProg, &shProg->VertexProgram->Base);
428 if (shProg->FragmentProgram)
429 link_varying_vars(shProg, &shProg->FragmentProgram->Base);
430
431 /* link uniform vars */
432 if (shProg->VertexProgram)
433 link_uniform_vars(shProg, &shProg->VertexProgram->Base, &numSamplers);
434 if (shProg->FragmentProgram)
435 link_uniform_vars(shProg, &shProg->FragmentProgram->Base, &numSamplers);
436
437 /*_mesa_print_uniforms(shProg->Uniforms);*/
438
439 if (shProg->VertexProgram) {
440 /* Rather than cloning the parameter list here, just share it.
441 * We need to be careful _mesa_clear_shader_program_data() in
442 * to avoid double-freeing.
443 */
444 shProg->VertexProgram->Base.Parameters = vertProg->Base.Parameters;
445 }
446 if (shProg->FragmentProgram) {
447 /* see comment just above */
448 shProg->FragmentProgram->Base.Parameters = fragProg->Base.Parameters;
449 }
450
451 if (shProg->VertexProgram) {
452 if (!_slang_resolve_attributes(shProg, &shProg->VertexProgram->Base)) {
453 /*goto cleanup;*/
454 _mesa_problem(ctx, "_slang_resolve_attributes() failed");
455 return;
456 }
457 }
458
459 if (shProg->VertexProgram) {
460 _slang_update_inputs_outputs(&shProg->VertexProgram->Base);
461 if (!(shProg->VertexProgram->Base.OutputsWritten & (1 << VERT_RESULT_HPOS))) {
462 /* the vertex program did not compute a vertex position */
463 link_error(shProg,
464 "gl_Position was not written by vertex shader\n");
465 return;
466 }
467 }
468 if (shProg->FragmentProgram)
469 _slang_update_inputs_outputs(&shProg->FragmentProgram->Base);
470
471 /* Check that all the varying vars needed by the fragment shader are
472 * actually produced by the vertex shader.
473 */
474 if (shProg->FragmentProgram) {
475 const GLbitfield varyingRead
476 = shProg->FragmentProgram->Base.InputsRead >> FRAG_ATTRIB_VAR0;
477 const GLbitfield varyingWritten = shProg->VertexProgram ?
478 shProg->VertexProgram->Base.OutputsWritten >> VERT_RESULT_VAR0 : 0x0;
479 if ((varyingRead & varyingWritten) != varyingRead) {
480 link_error(shProg,
481 "Fragment program using varying vars not written by vertex shader\n");
482 return;
483 }
484 }
485
486
487 if (fragProg && shProg->FragmentProgram) {
488 /* notify driver that a new fragment program has been compiled/linked */
489 ctx->Driver.ProgramStringNotify(ctx, GL_FRAGMENT_PROGRAM_ARB,
490 &shProg->FragmentProgram->Base);
491 #if 0
492 printf("************** original fragment program\n");
493 _mesa_print_program(&fragProg->Base);
494 _mesa_print_program_parameters(ctx, &fragProg->Base);
495 #endif
496 #if 0
497 printf("************** linked fragment prog\n");
498 _mesa_print_program(&shProg->FragmentProgram->Base);
499 _mesa_print_program_parameters(ctx, &shProg->FragmentProgram->Base);
500 #endif
501 }
502
503 if (vertProg && shProg->VertexProgram) {
504 /* notify driver that a new vertex program has been compiled/linked */
505 ctx->Driver.ProgramStringNotify(ctx, GL_VERTEX_PROGRAM_ARB,
506 &shProg->VertexProgram->Base);
507 #if 0
508 printf("************** original vertex program\n");
509 _mesa_print_program(&vertProg->Base);
510 _mesa_print_program_parameters(ctx, &vertProg->Base);
511 #endif
512 #if 0
513 printf("************** linked vertex prog\n");
514 _mesa_print_program(&shProg->VertexProgram->Base);
515 _mesa_print_program_parameters(ctx, &shProg->VertexProgram->Base);
516 #endif
517 }
518
519 shProg->LinkStatus = (shProg->VertexProgram || shProg->FragmentProgram);
520 }
521