glsl/preprocessor: Extract version directive processing into a function.
[mesa.git] / src / glsl / ast_function.cpp
1 /*
2 * Copyright © 2010 Intel Corporation
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 * the rights to use, copy, modify, merge, publish, distribute, sublicense,
8 * and/or sell copies of the Software, and to permit persons to whom the
9 * 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 NONINFRINGEMENT. IN NO EVENT SHALL
18 * THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
19 * LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING
20 * FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER
21 * DEALINGS IN THE SOFTWARE.
22 */
23
24 #include "glsl_symbol_table.h"
25 #include "ast.h"
26 #include "glsl_types.h"
27 #include "ir.h"
28 #include "main/core.h" /* for MIN2 */
29
30 static ir_rvalue *
31 convert_component(ir_rvalue *src, const glsl_type *desired_type);
32
33 bool
34 apply_implicit_conversion(const glsl_type *to, ir_rvalue * &from,
35 struct _mesa_glsl_parse_state *state);
36
37 static unsigned
38 process_parameters(exec_list *instructions, exec_list *actual_parameters,
39 exec_list *parameters,
40 struct _mesa_glsl_parse_state *state)
41 {
42 unsigned count = 0;
43
44 foreach_list (n, parameters) {
45 ast_node *const ast = exec_node_data(ast_node, n, link);
46 ir_rvalue *result = ast->hir(instructions, state);
47
48 ir_constant *const constant = result->constant_expression_value();
49 if (constant != NULL)
50 result = constant;
51
52 actual_parameters->push_tail(result);
53 count++;
54 }
55
56 return count;
57 }
58
59
60 /**
61 * Generate a source prototype for a function signature
62 *
63 * \param return_type Return type of the function. May be \c NULL.
64 * \param name Name of the function.
65 * \param parameters List of \c ir_instruction nodes representing the
66 * parameter list for the function. This may be either a
67 * formal (\c ir_variable) or actual (\c ir_rvalue)
68 * parameter list. Only the type is used.
69 *
70 * \return
71 * A ralloced string representing the prototype of the function.
72 */
73 char *
74 prototype_string(const glsl_type *return_type, const char *name,
75 exec_list *parameters)
76 {
77 char *str = NULL;
78
79 if (return_type != NULL)
80 str = ralloc_asprintf(NULL, "%s ", return_type->name);
81
82 ralloc_asprintf_append(&str, "%s(", name);
83
84 const char *comma = "";
85 foreach_list(node, parameters) {
86 const ir_variable *const param = (ir_variable *) node;
87
88 ralloc_asprintf_append(&str, "%s%s", comma, param->type->name);
89 comma = ", ";
90 }
91
92 ralloc_strcat(&str, ")");
93 return str;
94 }
95
96 /**
97 * Verify that 'out' and 'inout' actual parameters are lvalues. Also, verify
98 * that 'const_in' formal parameters (an extension in our IR) correspond to
99 * ir_constant actual parameters.
100 */
101 static bool
102 verify_parameter_modes(_mesa_glsl_parse_state *state,
103 ir_function_signature *sig,
104 exec_list &actual_ir_parameters,
105 exec_list &actual_ast_parameters)
106 {
107 exec_node *actual_ir_node = actual_ir_parameters.head;
108 exec_node *actual_ast_node = actual_ast_parameters.head;
109
110 foreach_list(formal_node, &sig->parameters) {
111 /* The lists must be the same length. */
112 assert(!actual_ir_node->is_tail_sentinel());
113 assert(!actual_ast_node->is_tail_sentinel());
114
115 const ir_variable *const formal = (ir_variable *) formal_node;
116 const ir_rvalue *const actual = (ir_rvalue *) actual_ir_node;
117 const ast_expression *const actual_ast =
118 exec_node_data(ast_expression, actual_ast_node, link);
119
120 /* FIXME: 'loc' is incorrect (as of 2011-01-21). It is always
121 * FIXME: 0:0(0).
122 */
123 YYLTYPE loc = actual_ast->get_location();
124
125 /* Verify that 'const_in' parameters are ir_constants. */
126 if (formal->mode == ir_var_const_in &&
127 actual->ir_type != ir_type_constant) {
128 _mesa_glsl_error(&loc, state,
129 "parameter `in %s' must be a constant expression",
130 formal->name);
131 return false;
132 }
133
134 /* Verify that 'out' and 'inout' actual parameters are lvalues. */
135 if (formal->mode == ir_var_out || formal->mode == ir_var_inout) {
136 const char *mode = NULL;
137 switch (formal->mode) {
138 case ir_var_out: mode = "out"; break;
139 case ir_var_inout: mode = "inout"; break;
140 default: assert(false); break;
141 }
142
143 /* This AST-based check catches errors like f(i++). The IR-based
144 * is_lvalue() is insufficient because the actual parameter at the
145 * IR-level is just a temporary value, which is an l-value.
146 */
147 if (actual_ast->non_lvalue_description != NULL) {
148 _mesa_glsl_error(&loc, state,
149 "function parameter '%s %s' references a %s",
150 mode, formal->name,
151 actual_ast->non_lvalue_description);
152 return false;
153 }
154
155 ir_variable *var = actual->variable_referenced();
156 if (var)
157 var->assigned = true;
158
159 if (var && var->read_only) {
160 _mesa_glsl_error(&loc, state,
161 "function parameter '%s %s' references the "
162 "read-only variable '%s'",
163 mode, formal->name,
164 actual->variable_referenced()->name);
165 return false;
166 } else if (!actual->is_lvalue()) {
167 _mesa_glsl_error(&loc, state,
168 "function parameter '%s %s' is not an lvalue",
169 mode, formal->name);
170 return false;
171 }
172 }
173
174 actual_ir_node = actual_ir_node->next;
175 actual_ast_node = actual_ast_node->next;
176 }
177 return true;
178 }
179
180 /**
181 * If a function call is generated, \c call_ir will point to it on exit.
182 * Otherwise \c call_ir will be set to \c NULL.
183 */
184 static ir_rvalue *
185 generate_call(exec_list *instructions, ir_function_signature *sig,
186 YYLTYPE *loc, exec_list *actual_parameters,
187 ir_call **call_ir,
188 struct _mesa_glsl_parse_state *state)
189 {
190 void *ctx = state;
191 exec_list post_call_conversions;
192
193 *call_ir = NULL;
194
195 /* Perform implicit conversion of arguments. For out parameters, we need
196 * to place them in a temporary variable and do the conversion after the
197 * call takes place. Since we haven't emitted the call yet, we'll place
198 * the post-call conversions in a temporary exec_list, and emit them later.
199 */
200 exec_list_iterator actual_iter = actual_parameters->iterator();
201 exec_list_iterator formal_iter = sig->parameters.iterator();
202
203 while (actual_iter.has_next()) {
204 ir_rvalue *actual = (ir_rvalue *) actual_iter.get();
205 ir_variable *formal = (ir_variable *) formal_iter.get();
206
207 assert(actual != NULL);
208 assert(formal != NULL);
209
210 if (formal->type->is_numeric() || formal->type->is_boolean()) {
211 switch (formal->mode) {
212 case ir_var_const_in:
213 case ir_var_in: {
214 ir_rvalue *converted
215 = convert_component(actual, formal->type);
216 actual->replace_with(converted);
217 break;
218 }
219 case ir_var_out:
220 if (actual->type != formal->type) {
221 /* To convert an out parameter, we need to create a
222 * temporary variable to hold the value before conversion,
223 * and then perform the conversion after the function call
224 * returns.
225 *
226 * This has the effect of transforming code like this:
227 *
228 * void f(out int x);
229 * float value;
230 * f(value);
231 *
232 * Into IR that's equivalent to this:
233 *
234 * void f(out int x);
235 * float value;
236 * int out_parameter_conversion;
237 * f(out_parameter_conversion);
238 * value = float(out_parameter_conversion);
239 */
240 ir_variable *tmp =
241 new(ctx) ir_variable(formal->type,
242 "out_parameter_conversion",
243 ir_var_temporary);
244 instructions->push_tail(tmp);
245 ir_dereference_variable *deref_tmp_1
246 = new(ctx) ir_dereference_variable(tmp);
247 ir_dereference_variable *deref_tmp_2
248 = new(ctx) ir_dereference_variable(tmp);
249 ir_rvalue *converted_tmp
250 = convert_component(deref_tmp_1, actual->type);
251 ir_assignment *assignment
252 = new(ctx) ir_assignment(actual, converted_tmp);
253 post_call_conversions.push_tail(assignment);
254 actual->replace_with(deref_tmp_2);
255 }
256 break;
257 case ir_var_inout:
258 /* Inout parameters should never require conversion, since that
259 * would require an implicit conversion to exist both to and
260 * from the formal parameter type, and there are no
261 * bidirectional implicit conversions.
262 */
263 assert (actual->type == formal->type);
264 break;
265 default:
266 assert (!"Illegal formal parameter mode");
267 break;
268 }
269 }
270
271 actual_iter.next();
272 formal_iter.next();
273 }
274
275 /* If the function call is a constant expression, don't generate any
276 * instructions; just generate an ir_constant.
277 *
278 * Function calls were first allowed to be constant expressions in GLSL
279 * 1.20 and GLSL ES 3.00.
280 */
281 if (state->is_version(120, 300)) {
282 ir_constant *value = sig->constant_expression_value(actual_parameters, NULL);
283 if (value != NULL) {
284 return value;
285 }
286 }
287
288 ir_dereference_variable *deref = NULL;
289 if (!sig->return_type->is_void()) {
290 /* Create a new temporary to hold the return value. */
291 ir_variable *var;
292
293 var = new(ctx) ir_variable(sig->return_type,
294 ralloc_asprintf(ctx, "%s_retval",
295 sig->function_name()),
296 ir_var_temporary);
297 instructions->push_tail(var);
298
299 deref = new(ctx) ir_dereference_variable(var);
300 }
301 ir_call *call = new(ctx) ir_call(sig, deref, actual_parameters);
302 instructions->push_tail(call);
303
304 /* Also emit any necessary out-parameter conversions. */
305 instructions->append_list(&post_call_conversions);
306
307 return deref ? deref->clone(ctx, NULL) : NULL;
308 }
309
310 /**
311 * Given a function name and parameter list, find the matching signature.
312 */
313 static ir_function_signature *
314 match_function_by_name(const char *name,
315 exec_list *actual_parameters,
316 struct _mesa_glsl_parse_state *state)
317 {
318 void *ctx = state;
319 ir_function *f = state->symbols->get_function(name);
320 ir_function_signature *local_sig = NULL;
321 ir_function_signature *sig = NULL;
322
323 /* Is the function hidden by a record type constructor? */
324 if (state->symbols->get_type(name))
325 goto done; /* no match */
326
327 /* Is the function hidden by a variable (impossible in 1.10)? */
328 if (!state->symbols->separate_function_namespace
329 && state->symbols->get_variable(name))
330 goto done; /* no match */
331
332 if (f != NULL) {
333 /* Look for a match in the local shader. If exact, we're done. */
334 bool is_exact = false;
335 sig = local_sig = f->matching_signature(actual_parameters, &is_exact);
336 if (is_exact)
337 goto done;
338
339 if (!state->es_shader && f->has_user_signature()) {
340 /* In desktop GL, the presence of a user-defined signature hides any
341 * built-in signatures, so we must ignore them. In contrast, in ES2
342 * user-defined signatures add new overloads, so we must proceed.
343 */
344 goto done;
345 }
346 }
347
348 /* Local shader has no exact candidates; check the built-ins. */
349 _mesa_glsl_initialize_functions(state);
350 for (unsigned i = 0; i < state->num_builtins_to_link; i++) {
351 ir_function *builtin =
352 state->builtins_to_link[i]->symbols->get_function(name);
353 if (builtin == NULL)
354 continue;
355
356 bool is_exact = false;
357 ir_function_signature *builtin_sig =
358 builtin->matching_signature(actual_parameters, &is_exact);
359
360 if (builtin_sig == NULL)
361 continue;
362
363 /* If the built-in signature is exact, we can stop. */
364 if (is_exact) {
365 sig = builtin_sig;
366 goto done;
367 }
368
369 if (sig == NULL) {
370 /* We found an inexact match, which is better than nothing. However,
371 * we should keep searching for an exact match.
372 */
373 sig = builtin_sig;
374 }
375 }
376
377 done:
378 if (sig != NULL) {
379 /* If the match is from a linked built-in shader, import the prototype. */
380 if (sig != local_sig) {
381 if (f == NULL) {
382 f = new(ctx) ir_function(name);
383 state->symbols->add_global_function(f);
384 emit_function(state, f);
385 }
386 f->add_signature(sig->clone_prototype(f, NULL));
387 }
388 }
389 return sig;
390 }
391
392 /**
393 * Raise a "no matching function" error, listing all possible overloads the
394 * compiler considered so developers can figure out what went wrong.
395 */
396 static void
397 no_matching_function_error(const char *name,
398 YYLTYPE *loc,
399 exec_list *actual_parameters,
400 _mesa_glsl_parse_state *state)
401 {
402 char *str = prototype_string(NULL, name, actual_parameters);
403 _mesa_glsl_error(loc, state, "no matching function for call to `%s'", str);
404 ralloc_free(str);
405
406 const char *prefix = "candidates are: ";
407
408 for (int i = -1; i < (int) state->num_builtins_to_link; i++) {
409 glsl_symbol_table *syms = i >= 0 ? state->builtins_to_link[i]->symbols
410 : state->symbols;
411 ir_function *f = syms->get_function(name);
412 if (f == NULL)
413 continue;
414
415 foreach_list (node, &f->signatures) {
416 ir_function_signature *sig = (ir_function_signature *) node;
417
418 str = prototype_string(sig->return_type, f->name, &sig->parameters);
419 _mesa_glsl_error(loc, state, "%s%s", prefix, str);
420 ralloc_free(str);
421
422 prefix = " ";
423 }
424 }
425 }
426
427 /**
428 * Perform automatic type conversion of constructor parameters
429 *
430 * This implements the rules in the "Conversion and Scalar Constructors"
431 * section (GLSL 1.10 section 5.4.1), not the "Implicit Conversions" rules.
432 */
433 static ir_rvalue *
434 convert_component(ir_rvalue *src, const glsl_type *desired_type)
435 {
436 void *ctx = ralloc_parent(src);
437 const unsigned a = desired_type->base_type;
438 const unsigned b = src->type->base_type;
439 ir_expression *result = NULL;
440
441 if (src->type->is_error())
442 return src;
443
444 assert(a <= GLSL_TYPE_BOOL);
445 assert(b <= GLSL_TYPE_BOOL);
446
447 if (a == b)
448 return src;
449
450 switch (a) {
451 case GLSL_TYPE_UINT:
452 switch (b) {
453 case GLSL_TYPE_INT:
454 result = new(ctx) ir_expression(ir_unop_i2u, src);
455 break;
456 case GLSL_TYPE_FLOAT:
457 result = new(ctx) ir_expression(ir_unop_f2u, src);
458 break;
459 case GLSL_TYPE_BOOL:
460 result = new(ctx) ir_expression(ir_unop_i2u,
461 new(ctx) ir_expression(ir_unop_b2i, src));
462 break;
463 }
464 break;
465 case GLSL_TYPE_INT:
466 switch (b) {
467 case GLSL_TYPE_UINT:
468 result = new(ctx) ir_expression(ir_unop_u2i, src);
469 break;
470 case GLSL_TYPE_FLOAT:
471 result = new(ctx) ir_expression(ir_unop_f2i, src);
472 break;
473 case GLSL_TYPE_BOOL:
474 result = new(ctx) ir_expression(ir_unop_b2i, src);
475 break;
476 }
477 break;
478 case GLSL_TYPE_FLOAT:
479 switch (b) {
480 case GLSL_TYPE_UINT:
481 result = new(ctx) ir_expression(ir_unop_u2f, desired_type, src, NULL);
482 break;
483 case GLSL_TYPE_INT:
484 result = new(ctx) ir_expression(ir_unop_i2f, desired_type, src, NULL);
485 break;
486 case GLSL_TYPE_BOOL:
487 result = new(ctx) ir_expression(ir_unop_b2f, desired_type, src, NULL);
488 break;
489 }
490 break;
491 case GLSL_TYPE_BOOL:
492 switch (b) {
493 case GLSL_TYPE_UINT:
494 result = new(ctx) ir_expression(ir_unop_i2b,
495 new(ctx) ir_expression(ir_unop_u2i, src));
496 break;
497 case GLSL_TYPE_INT:
498 result = new(ctx) ir_expression(ir_unop_i2b, desired_type, src, NULL);
499 break;
500 case GLSL_TYPE_FLOAT:
501 result = new(ctx) ir_expression(ir_unop_f2b, desired_type, src, NULL);
502 break;
503 }
504 break;
505 }
506
507 assert(result != NULL);
508 assert(result->type == desired_type);
509
510 /* Try constant folding; it may fold in the conversion we just added. */
511 ir_constant *const constant = result->constant_expression_value();
512 return (constant != NULL) ? (ir_rvalue *) constant : (ir_rvalue *) result;
513 }
514
515 /**
516 * Dereference a specific component from a scalar, vector, or matrix
517 */
518 static ir_rvalue *
519 dereference_component(ir_rvalue *src, unsigned component)
520 {
521 void *ctx = ralloc_parent(src);
522 assert(component < src->type->components());
523
524 /* If the source is a constant, just create a new constant instead of a
525 * dereference of the existing constant.
526 */
527 ir_constant *constant = src->as_constant();
528 if (constant)
529 return new(ctx) ir_constant(constant, component);
530
531 if (src->type->is_scalar()) {
532 return src;
533 } else if (src->type->is_vector()) {
534 return new(ctx) ir_swizzle(src, component, 0, 0, 0, 1);
535 } else {
536 assert(src->type->is_matrix());
537
538 /* Dereference a row of the matrix, then call this function again to get
539 * a specific element from that row.
540 */
541 const int c = component / src->type->column_type()->vector_elements;
542 const int r = component % src->type->column_type()->vector_elements;
543 ir_constant *const col_index = new(ctx) ir_constant(c);
544 ir_dereference *const col = new(ctx) ir_dereference_array(src, col_index);
545
546 col->type = src->type->column_type();
547
548 return dereference_component(col, r);
549 }
550
551 assert(!"Should not get here.");
552 return NULL;
553 }
554
555
556 static ir_rvalue *
557 process_array_constructor(exec_list *instructions,
558 const glsl_type *constructor_type,
559 YYLTYPE *loc, exec_list *parameters,
560 struct _mesa_glsl_parse_state *state)
561 {
562 void *ctx = state;
563 /* Array constructors come in two forms: sized and unsized. Sized array
564 * constructors look like 'vec4[2](a, b)', where 'a' and 'b' are vec4
565 * variables. In this case the number of parameters must exactly match the
566 * specified size of the array.
567 *
568 * Unsized array constructors look like 'vec4[](a, b)', where 'a' and 'b'
569 * are vec4 variables. In this case the size of the array being constructed
570 * is determined by the number of parameters.
571 *
572 * From page 52 (page 58 of the PDF) of the GLSL 1.50 spec:
573 *
574 * "There must be exactly the same number of arguments as the size of
575 * the array being constructed. If no size is present in the
576 * constructor, then the array is explicitly sized to the number of
577 * arguments provided. The arguments are assigned in order, starting at
578 * element 0, to the elements of the constructed array. Each argument
579 * must be the same type as the element type of the array, or be a type
580 * that can be converted to the element type of the array according to
581 * Section 4.1.10 "Implicit Conversions.""
582 */
583 exec_list actual_parameters;
584 const unsigned parameter_count =
585 process_parameters(instructions, &actual_parameters, parameters, state);
586
587 if ((parameter_count == 0)
588 || ((constructor_type->length != 0)
589 && (constructor_type->length != parameter_count))) {
590 const unsigned min_param = (constructor_type->length == 0)
591 ? 1 : constructor_type->length;
592
593 _mesa_glsl_error(loc, state, "array constructor must have %s %u "
594 "parameter%s",
595 (constructor_type->length != 0) ? "at least" : "exactly",
596 min_param, (min_param <= 1) ? "" : "s");
597 return ir_rvalue::error_value(ctx);
598 }
599
600 if (constructor_type->length == 0) {
601 constructor_type =
602 glsl_type::get_array_instance(constructor_type->element_type(),
603 parameter_count);
604 assert(constructor_type != NULL);
605 assert(constructor_type->length == parameter_count);
606 }
607
608 bool all_parameters_are_constant = true;
609
610 /* Type cast each parameter and, if possible, fold constants. */
611 foreach_list_safe(n, &actual_parameters) {
612 ir_rvalue *ir = (ir_rvalue *) n;
613 ir_rvalue *result = ir;
614
615 /* Apply implicit conversions (not the scalar constructor rules!). See
616 * the spec quote above. */
617 if (constructor_type->element_type()->is_float()) {
618 const glsl_type *desired_type =
619 glsl_type::get_instance(GLSL_TYPE_FLOAT,
620 ir->type->vector_elements,
621 ir->type->matrix_columns);
622 if (result->type->can_implicitly_convert_to(desired_type)) {
623 /* Even though convert_component() implements the constructor
624 * conversion rules (not the implicit conversion rules), its safe
625 * to use it here because we already checked that the implicit
626 * conversion is legal.
627 */
628 result = convert_component(ir, desired_type);
629 }
630 }
631
632 if (result->type != constructor_type->element_type()) {
633 _mesa_glsl_error(loc, state, "type error in array constructor: "
634 "expected: %s, found %s",
635 constructor_type->element_type()->name,
636 result->type->name);
637 }
638
639 /* Attempt to convert the parameter to a constant valued expression.
640 * After doing so, track whether or not all the parameters to the
641 * constructor are trivially constant valued expressions.
642 */
643 ir_rvalue *const constant = result->constant_expression_value();
644
645 if (constant != NULL)
646 result = constant;
647 else
648 all_parameters_are_constant = false;
649
650 ir->replace_with(result);
651 }
652
653 if (all_parameters_are_constant)
654 return new(ctx) ir_constant(constructor_type, &actual_parameters);
655
656 ir_variable *var = new(ctx) ir_variable(constructor_type, "array_ctor",
657 ir_var_temporary);
658 instructions->push_tail(var);
659
660 int i = 0;
661 foreach_list(node, &actual_parameters) {
662 ir_rvalue *rhs = (ir_rvalue *) node;
663 ir_rvalue *lhs = new(ctx) ir_dereference_array(var,
664 new(ctx) ir_constant(i));
665
666 ir_instruction *assignment = new(ctx) ir_assignment(lhs, rhs, NULL);
667 instructions->push_tail(assignment);
668
669 i++;
670 }
671
672 return new(ctx) ir_dereference_variable(var);
673 }
674
675
676 /**
677 * Try to convert a record constructor to a constant expression
678 */
679 static ir_constant *
680 constant_record_constructor(const glsl_type *constructor_type,
681 exec_list *parameters, void *mem_ctx)
682 {
683 foreach_list(node, parameters) {
684 ir_constant *constant = ((ir_instruction *) node)->as_constant();
685 if (constant == NULL)
686 return NULL;
687 node->replace_with(constant);
688 }
689
690 return new(mem_ctx) ir_constant(constructor_type, parameters);
691 }
692
693
694 /**
695 * Determine if a list consists of a single scalar r-value
696 */
697 bool
698 single_scalar_parameter(exec_list *parameters)
699 {
700 const ir_rvalue *const p = (ir_rvalue *) parameters->head;
701 assert(((ir_rvalue *)p)->as_rvalue() != NULL);
702
703 return (p->type->is_scalar() && p->next->is_tail_sentinel());
704 }
705
706
707 /**
708 * Generate inline code for a vector constructor
709 *
710 * The generated constructor code will consist of a temporary variable
711 * declaration of the same type as the constructor. A sequence of assignments
712 * from constructor parameters to the temporary will follow.
713 *
714 * \return
715 * An \c ir_dereference_variable of the temprorary generated in the constructor
716 * body.
717 */
718 ir_rvalue *
719 emit_inline_vector_constructor(const glsl_type *type,
720 exec_list *instructions,
721 exec_list *parameters,
722 void *ctx)
723 {
724 assert(!parameters->is_empty());
725
726 ir_variable *var = new(ctx) ir_variable(type, "vec_ctor", ir_var_temporary);
727 instructions->push_tail(var);
728
729 /* There are two kinds of vector constructors.
730 *
731 * - Construct a vector from a single scalar by replicating that scalar to
732 * all components of the vector.
733 *
734 * - Construct a vector from an arbirary combination of vectors and
735 * scalars. The components of the constructor parameters are assigned
736 * to the vector in order until the vector is full.
737 */
738 const unsigned lhs_components = type->components();
739 if (single_scalar_parameter(parameters)) {
740 ir_rvalue *first_param = (ir_rvalue *)parameters->head;
741 ir_rvalue *rhs = new(ctx) ir_swizzle(first_param, 0, 0, 0, 0,
742 lhs_components);
743 ir_dereference_variable *lhs = new(ctx) ir_dereference_variable(var);
744 const unsigned mask = (1U << lhs_components) - 1;
745
746 assert(rhs->type == lhs->type);
747
748 ir_instruction *inst = new(ctx) ir_assignment(lhs, rhs, NULL, mask);
749 instructions->push_tail(inst);
750 } else {
751 unsigned base_component = 0;
752 unsigned base_lhs_component = 0;
753 ir_constant_data data;
754 unsigned constant_mask = 0, constant_components = 0;
755
756 memset(&data, 0, sizeof(data));
757
758 foreach_list(node, parameters) {
759 ir_rvalue *param = (ir_rvalue *) node;
760 unsigned rhs_components = param->type->components();
761
762 /* Do not try to assign more components to the vector than it has!
763 */
764 if ((rhs_components + base_lhs_component) > lhs_components) {
765 rhs_components = lhs_components - base_lhs_component;
766 }
767
768 const ir_constant *const c = param->as_constant();
769 if (c != NULL) {
770 for (unsigned i = 0; i < rhs_components; i++) {
771 switch (c->type->base_type) {
772 case GLSL_TYPE_UINT:
773 data.u[i + base_component] = c->get_uint_component(i);
774 break;
775 case GLSL_TYPE_INT:
776 data.i[i + base_component] = c->get_int_component(i);
777 break;
778 case GLSL_TYPE_FLOAT:
779 data.f[i + base_component] = c->get_float_component(i);
780 break;
781 case GLSL_TYPE_BOOL:
782 data.b[i + base_component] = c->get_bool_component(i);
783 break;
784 default:
785 assert(!"Should not get here.");
786 break;
787 }
788 }
789
790 /* Mask of fields to be written in the assignment.
791 */
792 constant_mask |= ((1U << rhs_components) - 1) << base_lhs_component;
793 constant_components += rhs_components;
794
795 base_component += rhs_components;
796 }
797 /* Advance the component index by the number of components
798 * that were just assigned.
799 */
800 base_lhs_component += rhs_components;
801 }
802
803 if (constant_mask != 0) {
804 ir_dereference *lhs = new(ctx) ir_dereference_variable(var);
805 const glsl_type *rhs_type = glsl_type::get_instance(var->type->base_type,
806 constant_components,
807 1);
808 ir_rvalue *rhs = new(ctx) ir_constant(rhs_type, &data);
809
810 ir_instruction *inst =
811 new(ctx) ir_assignment(lhs, rhs, NULL, constant_mask);
812 instructions->push_tail(inst);
813 }
814
815 base_component = 0;
816 foreach_list(node, parameters) {
817 ir_rvalue *param = (ir_rvalue *) node;
818 unsigned rhs_components = param->type->components();
819
820 /* Do not try to assign more components to the vector than it has!
821 */
822 if ((rhs_components + base_component) > lhs_components) {
823 rhs_components = lhs_components - base_component;
824 }
825
826 const ir_constant *const c = param->as_constant();
827 if (c == NULL) {
828 /* Mask of fields to be written in the assignment.
829 */
830 const unsigned write_mask = ((1U << rhs_components) - 1)
831 << base_component;
832
833 ir_dereference *lhs = new(ctx) ir_dereference_variable(var);
834
835 /* Generate a swizzle so that LHS and RHS sizes match.
836 */
837 ir_rvalue *rhs =
838 new(ctx) ir_swizzle(param, 0, 1, 2, 3, rhs_components);
839
840 ir_instruction *inst =
841 new(ctx) ir_assignment(lhs, rhs, NULL, write_mask);
842 instructions->push_tail(inst);
843 }
844
845 /* Advance the component index by the number of components that were
846 * just assigned.
847 */
848 base_component += rhs_components;
849 }
850 }
851 return new(ctx) ir_dereference_variable(var);
852 }
853
854
855 /**
856 * Generate assignment of a portion of a vector to a portion of a matrix column
857 *
858 * \param src_base First component of the source to be used in assignment
859 * \param column Column of destination to be assiged
860 * \param row_base First component of the destination column to be assigned
861 * \param count Number of components to be assigned
862 *
863 * \note
864 * \c src_base + \c count must be less than or equal to the number of components
865 * in the source vector.
866 */
867 ir_instruction *
868 assign_to_matrix_column(ir_variable *var, unsigned column, unsigned row_base,
869 ir_rvalue *src, unsigned src_base, unsigned count,
870 void *mem_ctx)
871 {
872 ir_constant *col_idx = new(mem_ctx) ir_constant(column);
873 ir_dereference *column_ref = new(mem_ctx) ir_dereference_array(var, col_idx);
874
875 assert(column_ref->type->components() >= (row_base + count));
876 assert(src->type->components() >= (src_base + count));
877
878 /* Generate a swizzle that extracts the number of components from the source
879 * that are to be assigned to the column of the matrix.
880 */
881 if (count < src->type->vector_elements) {
882 src = new(mem_ctx) ir_swizzle(src,
883 src_base + 0, src_base + 1,
884 src_base + 2, src_base + 3,
885 count);
886 }
887
888 /* Mask of fields to be written in the assignment.
889 */
890 const unsigned write_mask = ((1U << count) - 1) << row_base;
891
892 return new(mem_ctx) ir_assignment(column_ref, src, NULL, write_mask);
893 }
894
895
896 /**
897 * Generate inline code for a matrix constructor
898 *
899 * The generated constructor code will consist of a temporary variable
900 * declaration of the same type as the constructor. A sequence of assignments
901 * from constructor parameters to the temporary will follow.
902 *
903 * \return
904 * An \c ir_dereference_variable of the temprorary generated in the constructor
905 * body.
906 */
907 ir_rvalue *
908 emit_inline_matrix_constructor(const glsl_type *type,
909 exec_list *instructions,
910 exec_list *parameters,
911 void *ctx)
912 {
913 assert(!parameters->is_empty());
914
915 ir_variable *var = new(ctx) ir_variable(type, "mat_ctor", ir_var_temporary);
916 instructions->push_tail(var);
917
918 /* There are three kinds of matrix constructors.
919 *
920 * - Construct a matrix from a single scalar by replicating that scalar to
921 * along the diagonal of the matrix and setting all other components to
922 * zero.
923 *
924 * - Construct a matrix from an arbirary combination of vectors and
925 * scalars. The components of the constructor parameters are assigned
926 * to the matrix in colum-major order until the matrix is full.
927 *
928 * - Construct a matrix from a single matrix. The source matrix is copied
929 * to the upper left portion of the constructed matrix, and the remaining
930 * elements take values from the identity matrix.
931 */
932 ir_rvalue *const first_param = (ir_rvalue *) parameters->head;
933 if (single_scalar_parameter(parameters)) {
934 /* Assign the scalar to the X component of a vec4, and fill the remaining
935 * components with zero.
936 */
937 ir_variable *rhs_var =
938 new(ctx) ir_variable(glsl_type::vec4_type, "mat_ctor_vec",
939 ir_var_temporary);
940 instructions->push_tail(rhs_var);
941
942 ir_constant_data zero;
943 zero.f[0] = 0.0;
944 zero.f[1] = 0.0;
945 zero.f[2] = 0.0;
946 zero.f[3] = 0.0;
947
948 ir_instruction *inst =
949 new(ctx) ir_assignment(new(ctx) ir_dereference_variable(rhs_var),
950 new(ctx) ir_constant(rhs_var->type, &zero),
951 NULL);
952 instructions->push_tail(inst);
953
954 ir_dereference *const rhs_ref = new(ctx) ir_dereference_variable(rhs_var);
955
956 inst = new(ctx) ir_assignment(rhs_ref, first_param, NULL, 0x01);
957 instructions->push_tail(inst);
958
959 /* Assign the temporary vector to each column of the destination matrix
960 * with a swizzle that puts the X component on the diagonal of the
961 * matrix. In some cases this may mean that the X component does not
962 * get assigned into the column at all (i.e., when the matrix has more
963 * columns than rows).
964 */
965 static const unsigned rhs_swiz[4][4] = {
966 { 0, 1, 1, 1 },
967 { 1, 0, 1, 1 },
968 { 1, 1, 0, 1 },
969 { 1, 1, 1, 0 }
970 };
971
972 const unsigned cols_to_init = MIN2(type->matrix_columns,
973 type->vector_elements);
974 for (unsigned i = 0; i < cols_to_init; i++) {
975 ir_constant *const col_idx = new(ctx) ir_constant(i);
976 ir_rvalue *const col_ref = new(ctx) ir_dereference_array(var, col_idx);
977
978 ir_rvalue *const rhs_ref = new(ctx) ir_dereference_variable(rhs_var);
979 ir_rvalue *const rhs = new(ctx) ir_swizzle(rhs_ref, rhs_swiz[i],
980 type->vector_elements);
981
982 inst = new(ctx) ir_assignment(col_ref, rhs, NULL);
983 instructions->push_tail(inst);
984 }
985
986 for (unsigned i = cols_to_init; i < type->matrix_columns; i++) {
987 ir_constant *const col_idx = new(ctx) ir_constant(i);
988 ir_rvalue *const col_ref = new(ctx) ir_dereference_array(var, col_idx);
989
990 ir_rvalue *const rhs_ref = new(ctx) ir_dereference_variable(rhs_var);
991 ir_rvalue *const rhs = new(ctx) ir_swizzle(rhs_ref, 1, 1, 1, 1,
992 type->vector_elements);
993
994 inst = new(ctx) ir_assignment(col_ref, rhs, NULL);
995 instructions->push_tail(inst);
996 }
997 } else if (first_param->type->is_matrix()) {
998 /* From page 50 (56 of the PDF) of the GLSL 1.50 spec:
999 *
1000 * "If a matrix is constructed from a matrix, then each component
1001 * (column i, row j) in the result that has a corresponding
1002 * component (column i, row j) in the argument will be initialized
1003 * from there. All other components will be initialized to the
1004 * identity matrix. If a matrix argument is given to a matrix
1005 * constructor, it is an error to have any other arguments."
1006 */
1007 assert(first_param->next->is_tail_sentinel());
1008 ir_rvalue *const src_matrix = first_param;
1009
1010 /* If the source matrix is smaller, pre-initialize the relavent parts of
1011 * the destination matrix to the identity matrix.
1012 */
1013 if ((src_matrix->type->matrix_columns < var->type->matrix_columns)
1014 || (src_matrix->type->vector_elements < var->type->vector_elements)) {
1015
1016 /* If the source matrix has fewer rows, every column of the destination
1017 * must be initialized. Otherwise only the columns in the destination
1018 * that do not exist in the source must be initialized.
1019 */
1020 unsigned col =
1021 (src_matrix->type->vector_elements < var->type->vector_elements)
1022 ? 0 : src_matrix->type->matrix_columns;
1023
1024 const glsl_type *const col_type = var->type->column_type();
1025 for (/* empty */; col < var->type->matrix_columns; col++) {
1026 ir_constant_data ident;
1027
1028 ident.f[0] = 0.0;
1029 ident.f[1] = 0.0;
1030 ident.f[2] = 0.0;
1031 ident.f[3] = 0.0;
1032
1033 ident.f[col] = 1.0;
1034
1035 ir_rvalue *const rhs = new(ctx) ir_constant(col_type, &ident);
1036
1037 ir_rvalue *const lhs =
1038 new(ctx) ir_dereference_array(var, new(ctx) ir_constant(col));
1039
1040 ir_instruction *inst = new(ctx) ir_assignment(lhs, rhs, NULL);
1041 instructions->push_tail(inst);
1042 }
1043 }
1044
1045 /* Assign columns from the source matrix to the destination matrix.
1046 *
1047 * Since the parameter will be used in the RHS of multiple assignments,
1048 * generate a temporary and copy the paramter there.
1049 */
1050 ir_variable *const rhs_var =
1051 new(ctx) ir_variable(first_param->type, "mat_ctor_mat",
1052 ir_var_temporary);
1053 instructions->push_tail(rhs_var);
1054
1055 ir_dereference *const rhs_var_ref =
1056 new(ctx) ir_dereference_variable(rhs_var);
1057 ir_instruction *const inst =
1058 new(ctx) ir_assignment(rhs_var_ref, first_param, NULL);
1059 instructions->push_tail(inst);
1060
1061 const unsigned last_row = MIN2(src_matrix->type->vector_elements,
1062 var->type->vector_elements);
1063 const unsigned last_col = MIN2(src_matrix->type->matrix_columns,
1064 var->type->matrix_columns);
1065
1066 unsigned swiz[4] = { 0, 0, 0, 0 };
1067 for (unsigned i = 1; i < last_row; i++)
1068 swiz[i] = i;
1069
1070 const unsigned write_mask = (1U << last_row) - 1;
1071
1072 for (unsigned i = 0; i < last_col; i++) {
1073 ir_dereference *const lhs =
1074 new(ctx) ir_dereference_array(var, new(ctx) ir_constant(i));
1075 ir_rvalue *const rhs_col =
1076 new(ctx) ir_dereference_array(rhs_var, new(ctx) ir_constant(i));
1077
1078 /* If one matrix has columns that are smaller than the columns of the
1079 * other matrix, wrap the column access of the larger with a swizzle
1080 * so that the LHS and RHS of the assignment have the same size (and
1081 * therefore have the same type).
1082 *
1083 * It would be perfectly valid to unconditionally generate the
1084 * swizzles, this this will typically result in a more compact IR tree.
1085 */
1086 ir_rvalue *rhs;
1087 if (lhs->type->vector_elements != rhs_col->type->vector_elements) {
1088 rhs = new(ctx) ir_swizzle(rhs_col, swiz, last_row);
1089 } else {
1090 rhs = rhs_col;
1091 }
1092
1093 ir_instruction *inst =
1094 new(ctx) ir_assignment(lhs, rhs, NULL, write_mask);
1095 instructions->push_tail(inst);
1096 }
1097 } else {
1098 const unsigned cols = type->matrix_columns;
1099 const unsigned rows = type->vector_elements;
1100 unsigned col_idx = 0;
1101 unsigned row_idx = 0;
1102
1103 foreach_list (node, parameters) {
1104 ir_rvalue *const rhs = (ir_rvalue *) node;
1105 const unsigned components_remaining_this_column = rows - row_idx;
1106 unsigned rhs_components = rhs->type->components();
1107 unsigned rhs_base = 0;
1108
1109 /* Since the parameter might be used in the RHS of two assignments,
1110 * generate a temporary and copy the paramter there.
1111 */
1112 ir_variable *rhs_var =
1113 new(ctx) ir_variable(rhs->type, "mat_ctor_vec", ir_var_temporary);
1114 instructions->push_tail(rhs_var);
1115
1116 ir_dereference *rhs_var_ref =
1117 new(ctx) ir_dereference_variable(rhs_var);
1118 ir_instruction *inst = new(ctx) ir_assignment(rhs_var_ref, rhs, NULL);
1119 instructions->push_tail(inst);
1120
1121 /* Assign the current parameter to as many components of the matrix
1122 * as it will fill.
1123 *
1124 * NOTE: A single vector parameter can span two matrix columns. A
1125 * single vec4, for example, can completely fill a mat2.
1126 */
1127 if (rhs_components >= components_remaining_this_column) {
1128 const unsigned count = MIN2(rhs_components,
1129 components_remaining_this_column);
1130
1131 rhs_var_ref = new(ctx) ir_dereference_variable(rhs_var);
1132
1133 ir_instruction *inst = assign_to_matrix_column(var, col_idx,
1134 row_idx,
1135 rhs_var_ref, 0,
1136 count, ctx);
1137 instructions->push_tail(inst);
1138
1139 rhs_base = count;
1140
1141 col_idx++;
1142 row_idx = 0;
1143 }
1144
1145 /* If there is data left in the parameter and components left to be
1146 * set in the destination, emit another assignment. It is possible
1147 * that the assignment could be of a vec4 to the last element of the
1148 * matrix. In this case col_idx==cols, but there is still data
1149 * left in the source parameter. Obviously, don't emit an assignment
1150 * to data outside the destination matrix.
1151 */
1152 if ((col_idx < cols) && (rhs_base < rhs_components)) {
1153 const unsigned count = rhs_components - rhs_base;
1154
1155 rhs_var_ref = new(ctx) ir_dereference_variable(rhs_var);
1156
1157 ir_instruction *inst = assign_to_matrix_column(var, col_idx,
1158 row_idx,
1159 rhs_var_ref,
1160 rhs_base,
1161 count, ctx);
1162 instructions->push_tail(inst);
1163
1164 row_idx += count;
1165 }
1166 }
1167 }
1168
1169 return new(ctx) ir_dereference_variable(var);
1170 }
1171
1172
1173 ir_rvalue *
1174 emit_inline_record_constructor(const glsl_type *type,
1175 exec_list *instructions,
1176 exec_list *parameters,
1177 void *mem_ctx)
1178 {
1179 ir_variable *const var =
1180 new(mem_ctx) ir_variable(type, "record_ctor", ir_var_temporary);
1181 ir_dereference_variable *const d = new(mem_ctx) ir_dereference_variable(var);
1182
1183 instructions->push_tail(var);
1184
1185 exec_node *node = parameters->head;
1186 for (unsigned i = 0; i < type->length; i++) {
1187 assert(!node->is_tail_sentinel());
1188
1189 ir_dereference *const lhs =
1190 new(mem_ctx) ir_dereference_record(d->clone(mem_ctx, NULL),
1191 type->fields.structure[i].name);
1192
1193 ir_rvalue *const rhs = ((ir_instruction *) node)->as_rvalue();
1194 assert(rhs != NULL);
1195
1196 ir_instruction *const assign = new(mem_ctx) ir_assignment(lhs, rhs, NULL);
1197
1198 instructions->push_tail(assign);
1199 node = node->next;
1200 }
1201
1202 return d;
1203 }
1204
1205
1206 ir_rvalue *
1207 ast_function_expression::hir(exec_list *instructions,
1208 struct _mesa_glsl_parse_state *state)
1209 {
1210 void *ctx = state;
1211 /* There are three sorts of function calls.
1212 *
1213 * 1. constructors - The first subexpression is an ast_type_specifier.
1214 * 2. methods - Only the .length() method of array types.
1215 * 3. functions - Calls to regular old functions.
1216 *
1217 * Method calls are actually detected when the ast_field_selection
1218 * expression is handled.
1219 */
1220 if (is_constructor()) {
1221 const ast_type_specifier *type = (ast_type_specifier *) subexpressions[0];
1222 YYLTYPE loc = type->get_location();
1223 const char *name;
1224
1225 const glsl_type *const constructor_type = type->glsl_type(& name, state);
1226
1227 /* constructor_type can be NULL if a variable with the same name as the
1228 * structure has come into scope.
1229 */
1230 if (constructor_type == NULL) {
1231 _mesa_glsl_error(& loc, state, "unknown type `%s' (structure name "
1232 "may be shadowed by a variable with the same name)",
1233 type->type_name);
1234 return ir_rvalue::error_value(ctx);
1235 }
1236
1237
1238 /* Constructors for samplers are illegal.
1239 */
1240 if (constructor_type->is_sampler()) {
1241 _mesa_glsl_error(& loc, state, "cannot construct sampler type `%s'",
1242 constructor_type->name);
1243 return ir_rvalue::error_value(ctx);
1244 }
1245
1246 if (constructor_type->is_array()) {
1247 if (!state->check_version(120, 300, &loc,
1248 "array constructors forbidden")) {
1249 return ir_rvalue::error_value(ctx);
1250 }
1251
1252 return process_array_constructor(instructions, constructor_type,
1253 & loc, &this->expressions, state);
1254 }
1255
1256
1257 /* There are two kinds of constructor call. Constructors for built-in
1258 * language types, such as mat4 and vec2, are free form. The only
1259 * requirement is that the parameters must provide enough values of the
1260 * correct scalar type. Constructors for arrays and structures must
1261 * have the exact number of parameters with matching types in the
1262 * correct order. These constructors follow essentially the same type
1263 * matching rules as functions.
1264 */
1265 if (constructor_type->is_record()) {
1266 exec_list actual_parameters;
1267
1268 process_parameters(instructions, &actual_parameters,
1269 &this->expressions, state);
1270
1271 exec_node *node = actual_parameters.head;
1272 for (unsigned i = 0; i < constructor_type->length; i++) {
1273 ir_rvalue *ir = (ir_rvalue *) node;
1274
1275 if (node->is_tail_sentinel()) {
1276 _mesa_glsl_error(&loc, state,
1277 "insufficient parameters to constructor "
1278 "for `%s'",
1279 constructor_type->name);
1280 return ir_rvalue::error_value(ctx);
1281 }
1282
1283 if (apply_implicit_conversion(constructor_type->fields.structure[i].type,
1284 ir, state)) {
1285 node->replace_with(ir);
1286 } else {
1287 _mesa_glsl_error(&loc, state,
1288 "parameter type mismatch in constructor "
1289 "for `%s.%s' (%s vs %s)",
1290 constructor_type->name,
1291 constructor_type->fields.structure[i].name,
1292 ir->type->name,
1293 constructor_type->fields.structure[i].type->name);
1294 return ir_rvalue::error_value(ctx);;
1295 }
1296
1297 node = node->next;
1298 }
1299
1300 if (!node->is_tail_sentinel()) {
1301 _mesa_glsl_error(&loc, state, "too many parameters in constructor "
1302 "for `%s'", constructor_type->name);
1303 return ir_rvalue::error_value(ctx);
1304 }
1305
1306 ir_rvalue *const constant =
1307 constant_record_constructor(constructor_type, &actual_parameters,
1308 state);
1309
1310 return (constant != NULL)
1311 ? constant
1312 : emit_inline_record_constructor(constructor_type, instructions,
1313 &actual_parameters, state);
1314 }
1315
1316 if (!constructor_type->is_numeric() && !constructor_type->is_boolean())
1317 return ir_rvalue::error_value(ctx);
1318
1319 /* Total number of components of the type being constructed. */
1320 const unsigned type_components = constructor_type->components();
1321
1322 /* Number of components from parameters that have actually been
1323 * consumed. This is used to perform several kinds of error checking.
1324 */
1325 unsigned components_used = 0;
1326
1327 unsigned matrix_parameters = 0;
1328 unsigned nonmatrix_parameters = 0;
1329 exec_list actual_parameters;
1330
1331 foreach_list (n, &this->expressions) {
1332 ast_node *ast = exec_node_data(ast_node, n, link);
1333 ir_rvalue *result = ast->hir(instructions, state)->as_rvalue();
1334
1335 /* From page 50 (page 56 of the PDF) of the GLSL 1.50 spec:
1336 *
1337 * "It is an error to provide extra arguments beyond this
1338 * last used argument."
1339 */
1340 if (components_used >= type_components) {
1341 _mesa_glsl_error(& loc, state, "too many parameters to `%s' "
1342 "constructor",
1343 constructor_type->name);
1344 return ir_rvalue::error_value(ctx);
1345 }
1346
1347 if (!result->type->is_numeric() && !result->type->is_boolean()) {
1348 _mesa_glsl_error(& loc, state, "cannot construct `%s' from a "
1349 "non-numeric data type",
1350 constructor_type->name);
1351 return ir_rvalue::error_value(ctx);
1352 }
1353
1354 /* Count the number of matrix and nonmatrix parameters. This
1355 * is used below to enforce some of the constructor rules.
1356 */
1357 if (result->type->is_matrix())
1358 matrix_parameters++;
1359 else
1360 nonmatrix_parameters++;
1361
1362 actual_parameters.push_tail(result);
1363 components_used += result->type->components();
1364 }
1365
1366 /* From page 28 (page 34 of the PDF) of the GLSL 1.10 spec:
1367 *
1368 * "It is an error to construct matrices from other matrices. This
1369 * is reserved for future use."
1370 */
1371 if (matrix_parameters > 0
1372 && constructor_type->is_matrix()
1373 && !state->check_version(120, 100, &loc,
1374 "cannot construct `%s' from a matrix",
1375 constructor_type->name)) {
1376 return ir_rvalue::error_value(ctx);
1377 }
1378
1379 /* From page 50 (page 56 of the PDF) of the GLSL 1.50 spec:
1380 *
1381 * "If a matrix argument is given to a matrix constructor, it is
1382 * an error to have any other arguments."
1383 */
1384 if ((matrix_parameters > 0)
1385 && ((matrix_parameters + nonmatrix_parameters) > 1)
1386 && constructor_type->is_matrix()) {
1387 _mesa_glsl_error(& loc, state, "for matrix `%s' constructor, "
1388 "matrix must be only parameter",
1389 constructor_type->name);
1390 return ir_rvalue::error_value(ctx);
1391 }
1392
1393 /* From page 28 (page 34 of the PDF) of the GLSL 1.10 spec:
1394 *
1395 * "In these cases, there must be enough components provided in the
1396 * arguments to provide an initializer for every component in the
1397 * constructed value."
1398 */
1399 if (components_used < type_components && components_used != 1
1400 && matrix_parameters == 0) {
1401 _mesa_glsl_error(& loc, state, "too few components to construct "
1402 "`%s'",
1403 constructor_type->name);
1404 return ir_rvalue::error_value(ctx);
1405 }
1406
1407 /* Later, we cast each parameter to the same base type as the
1408 * constructor. Since there are no non-floating point matrices, we
1409 * need to break them up into a series of column vectors.
1410 */
1411 if (constructor_type->base_type != GLSL_TYPE_FLOAT) {
1412 foreach_list_safe(n, &actual_parameters) {
1413 ir_rvalue *matrix = (ir_rvalue *) n;
1414
1415 if (!matrix->type->is_matrix())
1416 continue;
1417
1418 /* Create a temporary containing the matrix. */
1419 ir_variable *var = new(ctx) ir_variable(matrix->type, "matrix_tmp",
1420 ir_var_temporary);
1421 instructions->push_tail(var);
1422 instructions->push_tail(new(ctx) ir_assignment(new(ctx)
1423 ir_dereference_variable(var), matrix, NULL));
1424 var->constant_value = matrix->constant_expression_value();
1425
1426 /* Replace the matrix with dereferences of its columns. */
1427 for (int i = 0; i < matrix->type->matrix_columns; i++) {
1428 matrix->insert_before(new (ctx) ir_dereference_array(var,
1429 new(ctx) ir_constant(i)));
1430 }
1431 matrix->remove();
1432 }
1433 }
1434
1435 bool all_parameters_are_constant = true;
1436
1437 /* Type cast each parameter and, if possible, fold constants.*/
1438 foreach_list_safe(n, &actual_parameters) {
1439 ir_rvalue *ir = (ir_rvalue *) n;
1440
1441 const glsl_type *desired_type =
1442 glsl_type::get_instance(constructor_type->base_type,
1443 ir->type->vector_elements,
1444 ir->type->matrix_columns);
1445 ir_rvalue *result = convert_component(ir, desired_type);
1446
1447 /* Attempt to convert the parameter to a constant valued expression.
1448 * After doing so, track whether or not all the parameters to the
1449 * constructor are trivially constant valued expressions.
1450 */
1451 ir_rvalue *const constant = result->constant_expression_value();
1452
1453 if (constant != NULL)
1454 result = constant;
1455 else
1456 all_parameters_are_constant = false;
1457
1458 if (result != ir) {
1459 ir->replace_with(result);
1460 }
1461 }
1462
1463 /* If all of the parameters are trivially constant, create a
1464 * constant representing the complete collection of parameters.
1465 */
1466 if (all_parameters_are_constant) {
1467 return new(ctx) ir_constant(constructor_type, &actual_parameters);
1468 } else if (constructor_type->is_scalar()) {
1469 return dereference_component((ir_rvalue *) actual_parameters.head,
1470 0);
1471 } else if (constructor_type->is_vector()) {
1472 return emit_inline_vector_constructor(constructor_type,
1473 instructions,
1474 &actual_parameters,
1475 ctx);
1476 } else {
1477 assert(constructor_type->is_matrix());
1478 return emit_inline_matrix_constructor(constructor_type,
1479 instructions,
1480 &actual_parameters,
1481 ctx);
1482 }
1483 } else {
1484 const ast_expression *id = subexpressions[0];
1485 const char *func_name = id->primary_expression.identifier;
1486 YYLTYPE loc = id->get_location();
1487 exec_list actual_parameters;
1488
1489 process_parameters(instructions, &actual_parameters, &this->expressions,
1490 state);
1491
1492 ir_function_signature *sig =
1493 match_function_by_name(func_name, &actual_parameters, state);
1494
1495 ir_call *call = NULL;
1496 ir_rvalue *value = NULL;
1497 if (sig == NULL) {
1498 no_matching_function_error(func_name, &loc, &actual_parameters, state);
1499 value = ir_rvalue::error_value(ctx);
1500 } else if (!verify_parameter_modes(state, sig, actual_parameters, this->expressions)) {
1501 /* an error has already been emitted */
1502 value = ir_rvalue::error_value(ctx);
1503 } else {
1504 value = generate_call(instructions, sig, &loc, &actual_parameters,
1505 &call, state);
1506 }
1507
1508 return value;
1509 }
1510
1511 return ir_rvalue::error_value(ctx);
1512 }