mesa: Remove dead program_parameter::Flags field.
[mesa.git] / src / mesa / program / prog_parameter.c
1 /*
2 * Mesa 3-D graphics library
3 * Version: 7.3
4 *
5 * Copyright (C) 1999-2008 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 prog_parameter.c
27 * Program parameter lists and functions.
28 * \author Brian Paul
29 */
30
31
32 #include "main/glheader.h"
33 #include "main/imports.h"
34 #include "main/macros.h"
35 #include "prog_instruction.h"
36 #include "prog_parameter.h"
37 #include "prog_statevars.h"
38
39
40 struct gl_program_parameter_list *
41 _mesa_new_parameter_list(void)
42 {
43 return CALLOC_STRUCT(gl_program_parameter_list);
44 }
45
46
47 struct gl_program_parameter_list *
48 _mesa_new_parameter_list_sized(unsigned size)
49 {
50 struct gl_program_parameter_list *p = _mesa_new_parameter_list();
51
52 if ((p != NULL) && (size != 0)) {
53 p->Size = size;
54
55 /* alloc arrays */
56 p->Parameters = (struct gl_program_parameter *)
57 calloc(1, size * sizeof(struct gl_program_parameter));
58
59 p->ParameterValues = (gl_constant_value (*)[4])
60 _mesa_align_malloc(size * 4 *sizeof(gl_constant_value), 16);
61
62
63 if ((p->Parameters == NULL) || (p->ParameterValues == NULL)) {
64 free(p->Parameters);
65 _mesa_align_free(p->ParameterValues);
66 free(p);
67 p = NULL;
68 }
69 }
70
71 return p;
72 }
73
74
75 /**
76 * Free a parameter list and all its parameters
77 */
78 void
79 _mesa_free_parameter_list(struct gl_program_parameter_list *paramList)
80 {
81 GLuint i;
82 for (i = 0; i < paramList->NumParameters; i++) {
83 free((void *)paramList->Parameters[i].Name);
84 }
85 free(paramList->Parameters);
86 if (paramList->ParameterValues)
87 _mesa_align_free(paramList->ParameterValues);
88 free(paramList);
89 }
90
91
92 /**
93 * Add a new parameter to a parameter list.
94 * Note that parameter values are usually 4-element GLfloat vectors.
95 * When size > 4 we'll allocate a sequential block of parameters to
96 * store all the values (in blocks of 4).
97 *
98 * \param paramList the list to add the parameter to
99 * \param type type of parameter, such as
100 * \param name the parameter name, will be duplicated/copied!
101 * \param size number of elements in 'values' vector (1..4, or more)
102 * \param datatype GL_FLOAT, GL_FLOAT_VECx, GL_INT, GL_INT_VECx or GL_NONE.
103 * \param values initial parameter value, up to 4 gl_constant_values, or NULL
104 * \param state state indexes, or NULL
105 * \return index of new parameter in the list, or -1 if error (out of mem)
106 */
107 GLint
108 _mesa_add_parameter(struct gl_program_parameter_list *paramList,
109 gl_register_file type, const char *name,
110 GLuint size, GLenum datatype,
111 const gl_constant_value *values,
112 const gl_state_index state[STATE_LENGTH])
113 {
114 const GLuint oldNum = paramList->NumParameters;
115 const GLuint sz4 = (size + 3) / 4; /* no. of new param slots needed */
116
117 assert(size > 0);
118
119 if (oldNum + sz4 > paramList->Size) {
120 /* Need to grow the parameter list array (alloc some extra) */
121 paramList->Size = paramList->Size + 4 * sz4;
122
123 /* realloc arrays */
124 paramList->Parameters = (struct gl_program_parameter *)
125 _mesa_realloc(paramList->Parameters,
126 oldNum * sizeof(struct gl_program_parameter),
127 paramList->Size * sizeof(struct gl_program_parameter));
128
129 paramList->ParameterValues = (gl_constant_value (*)[4])
130 _mesa_align_realloc(paramList->ParameterValues, /* old buf */
131 oldNum * 4 * sizeof(gl_constant_value),/* old sz */
132 paramList->Size*4*sizeof(gl_constant_value),/*new*/
133 16);
134 }
135
136 if (!paramList->Parameters ||
137 !paramList->ParameterValues) {
138 /* out of memory */
139 paramList->NumParameters = 0;
140 paramList->Size = 0;
141 return -1;
142 }
143 else {
144 GLuint i, j;
145
146 paramList->NumParameters = oldNum + sz4;
147
148 memset(&paramList->Parameters[oldNum], 0,
149 sz4 * sizeof(struct gl_program_parameter));
150
151 for (i = 0; i < sz4; i++) {
152 struct gl_program_parameter *p = paramList->Parameters + oldNum + i;
153 p->Name = name ? _mesa_strdup(name) : NULL;
154 p->Type = type;
155 p->Size = size;
156 p->DataType = datatype;
157 if (values) {
158 COPY_4V(paramList->ParameterValues[oldNum + i], values);
159 values += 4;
160 p->Initialized = GL_TRUE;
161 }
162 else {
163 /* silence valgrind */
164 for (j = 0; j < 4; j++)
165 paramList->ParameterValues[oldNum + i][j].f = 0;
166 }
167 size -= 4;
168 }
169
170 if (state) {
171 for (i = 0; i < STATE_LENGTH; i++)
172 paramList->Parameters[oldNum].StateIndexes[i] = state[i];
173 }
174
175 return (GLint) oldNum;
176 }
177 }
178
179
180 /**
181 * Add a new named constant to the parameter list.
182 * This will be used when the program contains something like this:
183 * PARAM myVals = { 0, 1, 2, 3 };
184 *
185 * \param paramList the parameter list
186 * \param name the name for the constant
187 * \param values four float values
188 * \return index/position of the new parameter in the parameter list
189 */
190 GLint
191 _mesa_add_named_constant(struct gl_program_parameter_list *paramList,
192 const char *name, const gl_constant_value values[4],
193 GLuint size)
194 {
195 /* first check if this is a duplicate constant */
196 GLint pos;
197 for (pos = 0; pos < (GLint)paramList->NumParameters; pos++) {
198 const gl_constant_value *pvals = paramList->ParameterValues[pos];
199 if (pvals[0].u == values[0].u &&
200 pvals[1].u == values[1].u &&
201 pvals[2].u == values[2].u &&
202 pvals[3].u == values[3].u &&
203 strcmp(paramList->Parameters[pos].Name, name) == 0) {
204 /* Same name and value is already in the param list - reuse it */
205 return pos;
206 }
207 }
208 /* not found, add new parameter */
209 return _mesa_add_parameter(paramList, PROGRAM_CONSTANT, name,
210 size, GL_NONE, values, NULL);
211 }
212
213
214 /**
215 * Add a new unnamed constant to the parameter list. This will be used
216 * when a fragment/vertex program contains something like this:
217 * MOV r, { 0, 1, 2, 3 };
218 * If swizzleOut is non-null we'll search the parameter list for an
219 * existing instance of the constant which matches with a swizzle.
220 *
221 * \param paramList the parameter list
222 * \param values four float values
223 * \param swizzleOut returns swizzle mask for accessing the constant
224 * \return index/position of the new parameter in the parameter list.
225 */
226 GLint
227 _mesa_add_typed_unnamed_constant(struct gl_program_parameter_list *paramList,
228 const gl_constant_value values[4], GLuint size,
229 GLenum datatype, GLuint *swizzleOut)
230 {
231 GLint pos;
232 ASSERT(size >= 1);
233 ASSERT(size <= 4);
234
235 if (swizzleOut &&
236 _mesa_lookup_parameter_constant(paramList, values,
237 size, &pos, swizzleOut)) {
238 return pos;
239 }
240
241 /* Look for empty space in an already unnamed constant parameter
242 * to add this constant. This will only work for single-element
243 * constants because we rely on smearing (i.e. .yyyy or .zzzz).
244 */
245 if (size == 1 && swizzleOut) {
246 for (pos = 0; pos < (GLint) paramList->NumParameters; pos++) {
247 struct gl_program_parameter *p = paramList->Parameters + pos;
248 if (p->Type == PROGRAM_CONSTANT && p->Size + size <= 4) {
249 /* ok, found room */
250 gl_constant_value *pVal = paramList->ParameterValues[pos];
251 GLuint swz = p->Size; /* 1, 2 or 3 for Y, Z, W */
252 pVal[p->Size] = values[0];
253 p->Size++;
254 *swizzleOut = MAKE_SWIZZLE4(swz, swz, swz, swz);
255 return pos;
256 }
257 }
258 }
259
260 /* add a new parameter to store this constant */
261 pos = _mesa_add_parameter(paramList, PROGRAM_CONSTANT, NULL,
262 size, datatype, values, NULL);
263 if (pos >= 0 && swizzleOut) {
264 if (size == 1)
265 *swizzleOut = SWIZZLE_XXXX;
266 else
267 *swizzleOut = SWIZZLE_NOOP;
268 }
269 return pos;
270 }
271
272 /**
273 * Add a new unnamed constant to the parameter list. This will be used
274 * when a fragment/vertex program contains something like this:
275 * MOV r, { 0, 1, 2, 3 };
276 * If swizzleOut is non-null we'll search the parameter list for an
277 * existing instance of the constant which matches with a swizzle.
278 *
279 * \param paramList the parameter list
280 * \param values four float values
281 * \param swizzleOut returns swizzle mask for accessing the constant
282 * \return index/position of the new parameter in the parameter list.
283 * \sa _mesa_add_typed_unnamed_constant
284 */
285 GLint
286 _mesa_add_unnamed_constant(struct gl_program_parameter_list *paramList,
287 const gl_constant_value values[4], GLuint size,
288 GLuint *swizzleOut)
289 {
290 return _mesa_add_typed_unnamed_constant(paramList, values, size, GL_NONE,
291 swizzleOut);
292 }
293
294 /**
295 * Add parameter representing a varying variable.
296 */
297 GLint
298 _mesa_add_varying(struct gl_program_parameter_list *paramList,
299 const char *name, GLuint size, GLenum datatype)
300 {
301 GLint i = _mesa_lookup_parameter_index(paramList, -1, name);
302 if (i >= 0 && paramList->Parameters[i].Type == PROGRAM_VARYING) {
303 /* already in list */
304 return i;
305 }
306 else {
307 /*assert(size == 4);*/
308 i = _mesa_add_parameter(paramList, PROGRAM_VARYING, name,
309 size, datatype, NULL, NULL);
310 return i;
311 }
312 }
313
314
315 /**
316 * Add parameter representing a vertex program attribute.
317 * \param size size of attribute (in floats), may be -1 if unknown
318 * \param attrib the attribute index, or -1 if unknown
319 */
320 GLint
321 _mesa_add_attribute(struct gl_program_parameter_list *paramList,
322 const char *name, GLint size, GLenum datatype, GLint attrib)
323 {
324 GLint i = _mesa_lookup_parameter_index(paramList, -1, name);
325 if (i >= 0) {
326 /* replace */
327 if (attrib < 0)
328 attrib = i;
329 paramList->Parameters[i].StateIndexes[0] = attrib;
330 }
331 else {
332 /* add */
333 gl_state_index state[STATE_LENGTH];
334 state[0] = (gl_state_index) attrib;
335 if (size < 0)
336 size = 4;
337 i = _mesa_add_parameter(paramList, PROGRAM_INPUT, name,
338 size, datatype, NULL, state);
339 }
340 return i;
341 }
342
343
344
345 #if 0 /* not used yet */
346 /**
347 * Returns the number of 4-component registers needed to store a piece
348 * of GL state. For matrices this may be as many as 4 registers,
349 * everything else needs
350 * just 1 register.
351 */
352 static GLuint
353 sizeof_state_reference(const GLint *stateTokens)
354 {
355 if (stateTokens[0] == STATE_MATRIX) {
356 GLuint rows = stateTokens[4] - stateTokens[3] + 1;
357 assert(rows >= 1);
358 assert(rows <= 4);
359 return rows;
360 }
361 else {
362 return 1;
363 }
364 }
365 #endif
366
367
368 /**
369 * Add a new state reference to the parameter list.
370 * This will be used when the program contains something like this:
371 * PARAM ambient = state.material.front.ambient;
372 *
373 * \param paramList the parameter list
374 * \param stateTokens an array of 5 (STATE_LENGTH) state tokens
375 * \return index of the new parameter.
376 */
377 GLint
378 _mesa_add_state_reference(struct gl_program_parameter_list *paramList,
379 const gl_state_index stateTokens[STATE_LENGTH])
380 {
381 const GLuint size = 4; /* XXX fix */
382 char *name;
383 GLint index;
384
385 /* Check if the state reference is already in the list */
386 for (index = 0; index < (GLint) paramList->NumParameters; index++) {
387 if (!memcmp(paramList->Parameters[index].StateIndexes,
388 stateTokens, STATE_LENGTH * sizeof(gl_state_index))) {
389 return index;
390 }
391 }
392
393 name = _mesa_program_state_string(stateTokens);
394 index = _mesa_add_parameter(paramList, PROGRAM_STATE_VAR, name,
395 size, GL_NONE,
396 NULL, (gl_state_index *) stateTokens);
397 paramList->StateFlags |= _mesa_program_state_flags(stateTokens);
398
399 /* free name string here since we duplicated it in add_parameter() */
400 free(name);
401
402 return index;
403 }
404
405
406 /**
407 * Lookup a parameter value by name in the given parameter list.
408 * \return pointer to the float[4] values.
409 */
410 gl_constant_value *
411 _mesa_lookup_parameter_value(const struct gl_program_parameter_list *paramList,
412 GLsizei nameLen, const char *name)
413 {
414 GLint i = _mesa_lookup_parameter_index(paramList, nameLen, name);
415 if (i < 0)
416 return NULL;
417 else
418 return paramList->ParameterValues[i];
419 }
420
421
422 /**
423 * Given a program parameter name, find its position in the list of parameters.
424 * \param paramList the parameter list to search
425 * \param nameLen length of name (in chars).
426 * If length is negative, assume that name is null-terminated.
427 * \param name the name to search for
428 * \return index of parameter in the list.
429 */
430 GLint
431 _mesa_lookup_parameter_index(const struct gl_program_parameter_list *paramList,
432 GLsizei nameLen, const char *name)
433 {
434 GLint i;
435
436 if (!paramList)
437 return -1;
438
439 if (nameLen == -1) {
440 /* name is null-terminated */
441 for (i = 0; i < (GLint) paramList->NumParameters; i++) {
442 if (paramList->Parameters[i].Name &&
443 strcmp(paramList->Parameters[i].Name, name) == 0)
444 return i;
445 }
446 }
447 else {
448 /* name is not null-terminated, use nameLen */
449 for (i = 0; i < (GLint) paramList->NumParameters; i++) {
450 if (paramList->Parameters[i].Name &&
451 strncmp(paramList->Parameters[i].Name, name, nameLen) == 0
452 && strlen(paramList->Parameters[i].Name) == (size_t)nameLen)
453 return i;
454 }
455 }
456 return -1;
457 }
458
459
460 /**
461 * Look for a float vector in the given parameter list. The float vector
462 * may be of length 1, 2, 3 or 4. If swizzleOut is non-null, we'll try
463 * swizzling to find a match.
464 * \param list the parameter list to search
465 * \param v the float vector to search for
466 * \param vSize number of element in v
467 * \param posOut returns the position of the constant, if found
468 * \param swizzleOut returns a swizzle mask describing location of the
469 * vector elements if found.
470 * \return GL_TRUE if found, GL_FALSE if not found
471 */
472 GLboolean
473 _mesa_lookup_parameter_constant(const struct gl_program_parameter_list *list,
474 const gl_constant_value v[], GLuint vSize,
475 GLint *posOut, GLuint *swizzleOut)
476 {
477 GLuint i;
478
479 assert(vSize >= 1);
480 assert(vSize <= 4);
481
482 if (!list) {
483 *posOut = -1;
484 return GL_FALSE;
485 }
486
487 for (i = 0; i < list->NumParameters; i++) {
488 if (list->Parameters[i].Type == PROGRAM_CONSTANT) {
489 if (!swizzleOut) {
490 /* swizzle not allowed */
491 GLuint j, match = 0;
492 for (j = 0; j < vSize; j++) {
493 if (v[j].u == list->ParameterValues[i][j].u)
494 match++;
495 }
496 if (match == vSize) {
497 *posOut = i;
498 return GL_TRUE;
499 }
500 }
501 else {
502 /* try matching w/ swizzle */
503 if (vSize == 1) {
504 /* look for v[0] anywhere within float[4] value */
505 GLuint j;
506 for (j = 0; j < list->Parameters[i].Size; j++) {
507 if (list->ParameterValues[i][j].u == v[0].u) {
508 /* found it */
509 *posOut = i;
510 *swizzleOut = MAKE_SWIZZLE4(j, j, j, j);
511 return GL_TRUE;
512 }
513 }
514 }
515 else if (vSize <= list->Parameters[i].Size) {
516 /* see if we can match this constant (with a swizzle) */
517 GLuint swz[4];
518 GLuint match = 0, j, k;
519 for (j = 0; j < vSize; j++) {
520 if (v[j].u == list->ParameterValues[i][j].u) {
521 swz[j] = j;
522 match++;
523 }
524 else {
525 for (k = 0; k < list->Parameters[i].Size; k++) {
526 if (v[j].u == list->ParameterValues[i][k].u) {
527 swz[j] = k;
528 match++;
529 break;
530 }
531 }
532 }
533 }
534 /* smear last value to remaining positions */
535 for (; j < 4; j++)
536 swz[j] = swz[j-1];
537
538 if (match == vSize) {
539 *posOut = i;
540 *swizzleOut = MAKE_SWIZZLE4(swz[0], swz[1], swz[2], swz[3]);
541 return GL_TRUE;
542 }
543 }
544 }
545 }
546 }
547
548 *posOut = -1;
549 return GL_FALSE;
550 }
551
552
553 struct gl_program_parameter_list *
554 _mesa_clone_parameter_list(const struct gl_program_parameter_list *list)
555 {
556 struct gl_program_parameter_list *clone;
557 GLuint i;
558
559 clone = _mesa_new_parameter_list();
560 if (!clone)
561 return NULL;
562
563 /** Not too efficient, but correct */
564 for (i = 0; i < list->NumParameters; i++) {
565 struct gl_program_parameter *p = list->Parameters + i;
566 struct gl_program_parameter *pCopy;
567 GLuint size = MIN2(p->Size, 4);
568 GLint j = _mesa_add_parameter(clone, p->Type, p->Name, size, p->DataType,
569 list->ParameterValues[i], NULL);
570 ASSERT(j >= 0);
571 pCopy = clone->Parameters + j;
572 /* copy state indexes */
573 if (p->Type == PROGRAM_STATE_VAR) {
574 GLint k;
575 for (k = 0; k < STATE_LENGTH; k++) {
576 pCopy->StateIndexes[k] = p->StateIndexes[k];
577 }
578 }
579 else {
580 clone->Parameters[j].Size = p->Size;
581 }
582
583 }
584
585 clone->StateFlags = list->StateFlags;
586
587 return clone;
588 }
589
590
591 /**
592 * Return a new parameter list which is listA + listB.
593 */
594 struct gl_program_parameter_list *
595 _mesa_combine_parameter_lists(const struct gl_program_parameter_list *listA,
596 const struct gl_program_parameter_list *listB)
597 {
598 struct gl_program_parameter_list *list;
599
600 if (listA) {
601 list = _mesa_clone_parameter_list(listA);
602 if (list && listB) {
603 GLuint i;
604 for (i = 0; i < listB->NumParameters; i++) {
605 struct gl_program_parameter *param = listB->Parameters + i;
606 _mesa_add_parameter(list, param->Type, param->Name, param->Size,
607 param->DataType,
608 listB->ParameterValues[i],
609 param->StateIndexes);
610 }
611 }
612 }
613 else if (listB) {
614 list = _mesa_clone_parameter_list(listB);
615 }
616 else {
617 list = NULL;
618 }
619 return list;
620 }
621
622
623 /**
624 * Count the number of parameters in the last that match the given type.
625 */
626 GLuint
627 _mesa_num_parameters_of_type(const struct gl_program_parameter_list *list,
628 gl_register_file type)
629 {
630 GLuint i, count = 0;
631 if (list) {
632 for (i = 0; i < list->NumParameters; i++) {
633 if (list->Parameters[i].Type == type)
634 count++;
635 }
636 }
637 return count;
638 }