]> git.tdb.fi Git - libs/gl.git/blob - source/glsl/resolve.cpp
Leave no-op constructors as they are
[libs/gl.git] / source / glsl / resolve.cpp
1 #include <algorithm>
2 #include <msp/core/raii.h>
3 #include <msp/strings/utils.h>
4 #include "resolve.h"
5
6 using namespace std;
7
8 namespace Msp {
9 namespace GL {
10 namespace SL {
11
12 void BlockHierarchyResolver::enter(Block &block)
13 {
14         r_any_resolved |= (current_block!=block.parent);
15         block.parent = current_block;
16 }
17
18
19 TypeResolver::TypeResolver():
20         stage(0),
21         iface_block(0),
22         r_any_resolved(false)
23 { }
24
25 bool TypeResolver::apply(Stage &s)
26 {
27         stage = &s;
28         s.types.clear();
29         r_any_resolved = false;
30         s.content.visit(*this);
31         return r_any_resolved;
32 }
33
34 TypeDeclaration *TypeResolver::get_or_create_array_type(TypeDeclaration &type)
35 {
36         map<TypeDeclaration *, TypeDeclaration *>::iterator i = array_types.find(&type);
37         if(i!=array_types.end())
38                 return i->second;
39
40         BasicTypeDeclaration *array = new BasicTypeDeclaration;
41         array->source = INTERNAL_SOURCE;
42         array->name = type.name+"[]";
43         array->kind = BasicTypeDeclaration::ARRAY;
44         array->base = type.name;
45         array->base_type = &type;
46         stage->content.body.insert(type_insert_point, array);
47         array_types[&type] = array;
48         return array;
49 }
50
51 void TypeResolver::resolve_type(TypeDeclaration *&type, const string &name, bool array)
52 {
53         TypeDeclaration *resolved = 0;
54         map<string, TypeDeclaration *>::iterator i = stage->types.find(name);
55         if(i!=stage->types.end())
56         {
57                 map<TypeDeclaration *, TypeDeclaration *>::iterator j = alias_map.find(i->second);
58                 resolved = (j!=alias_map.end() ? j->second : i->second);
59         }
60
61         if(resolved && array)
62                 resolved = get_or_create_array_type(*resolved);
63
64         r_any_resolved |= (resolved!=type);
65         type=resolved;
66 }
67
68 void TypeResolver::visit(Block &block)
69 {
70         for(NodeList<Statement>::iterator i=block.body.begin(); i!=block.body.end(); ++i)
71         {
72                 if(!block.parent)
73                         type_insert_point = i;
74                 (*i)->visit(*this);
75         }
76 }
77
78 void TypeResolver::visit(BasicTypeDeclaration &type)
79 {
80         resolve_type(type.base_type, type.base, false);
81
82         if(type.kind==BasicTypeDeclaration::VECTOR && type.base_type)
83                 if(BasicTypeDeclaration *basic_base = dynamic_cast<BasicTypeDeclaration *>(type.base_type))
84                         if(basic_base->kind==BasicTypeDeclaration::VECTOR)
85                         {
86                                 type.kind = BasicTypeDeclaration::MATRIX;
87                                 /* A matrix's base type is its column vector type.  This will put
88                                 the column vector's size, i.e. the matrix's row count, in the high
89                                 half of the size. */
90                                 type.size |= basic_base->size<<16;
91                         }
92
93         if(type.kind==BasicTypeDeclaration::ALIAS && type.base_type)
94                 alias_map[&type] = type.base_type;
95         else if(type.kind==BasicTypeDeclaration::ARRAY && type.base_type)
96                 array_types[type.base_type] = &type;
97
98         stage->types.insert(make_pair(type.name, &type));
99 }
100
101 void TypeResolver::visit(ImageTypeDeclaration &type)
102 {
103         resolve_type(type.base_type, type.base, false);
104         stage->types.insert(make_pair(type.name, &type));
105 }
106
107 void TypeResolver::visit(StructDeclaration &strct)
108 {
109         stage->types.insert(make_pair(strct.name, &strct));
110         TraversingVisitor::visit(strct);
111 }
112
113 void TypeResolver::visit(VariableDeclaration &var)
114 {
115         resolve_type(var.type_declaration, var.type, var.array);
116         if(iface_block && var.interface==iface_block->interface)
117                 var.interface.clear();
118 }
119
120 void TypeResolver::visit(InterfaceBlock &iface)
121 {
122         if(iface.members)
123         {
124                 SetForScope<InterfaceBlock *> set_iface(iface_block, &iface);
125                 iface.members->visit(*this);
126
127                 StructDeclaration *strct = new StructDeclaration;
128                 strct->source = INTERNAL_SOURCE;
129                 strct->name = format("_%s_%s", iface.interface, iface.block_name);
130                 strct->members.body.splice(strct->members.body.begin(), iface.members->body);
131                 stage->content.body.insert(type_insert_point, strct);
132                 stage->types.insert(make_pair(strct->name, strct));
133
134                 iface.members = 0;
135                 strct->interface_block = &iface;
136                 iface.struct_declaration = strct;
137         }
138
139         TypeDeclaration *type = iface.struct_declaration;
140         if(type && iface.array)
141                 type = get_or_create_array_type(*type);
142         r_any_resolved = (type!=iface.type_declaration);
143         iface.type_declaration = type;
144 }
145
146 void TypeResolver::visit(FunctionDeclaration &func)
147 {
148         resolve_type(func.return_type_declaration, func.return_type, false);
149         TraversingVisitor::visit(func);
150 }
151
152
153 VariableResolver::VariableResolver():
154         stage(0),
155         r_any_resolved(false),
156         record_target(false),
157         r_self_referencing(false)
158 { }
159
160 bool VariableResolver::apply(Stage &s)
161 {
162         stage = &s;
163         s.interface_blocks.clear();
164         r_any_resolved = false;
165         s.content.visit(*this);
166         for(vector<VariableDeclaration *>::const_iterator i=redeclared_builtins.begin(); i!=redeclared_builtins.end(); ++i)
167                 (*i)->source = GENERATED_SOURCE;
168         NodeRemover().apply(s, nodes_to_remove);
169         return r_any_resolved;
170 }
171
172 void VariableResolver::enter(Block &block)
173 {
174         block.variables.clear();
175 }
176
177 void VariableResolver::visit(RefPtr<Expression> &expr)
178 {
179         r_replacement_expr = 0;
180         expr->visit(*this);
181         if(r_replacement_expr)
182         {
183                 expr = r_replacement_expr;
184                 /* Don't record assignment target when doing a replacement, because chain
185                 information won't be correct. */
186                 r_assignment_target.declaration = 0;
187                 r_any_resolved = true;
188         }
189         r_replacement_expr = 0;
190 }
191
192 void VariableResolver::check_assignment_target(Statement *declaration)
193 {
194         if(record_target)
195         {
196                 if(r_assignment_target.declaration)
197                 {
198                         /* More than one reference found in assignment target.  Unable to
199                         determine what the primary target is. */
200                         record_target = false;
201                         r_assignment_target.declaration = 0;
202                 }
203                 else
204                         r_assignment_target.declaration = declaration;
205         }
206         // TODO This check is overly broad and may prevent some optimizations.
207         else if(declaration && declaration==r_assignment_target.declaration)
208                 r_self_referencing = true;
209 }
210
211 void VariableResolver::visit(VariableReference &var)
212 {
213         VariableDeclaration *declaration = 0;
214
215         /* Look for variable declarations in the block hierarchy first.  Interface
216         blocks are always defined in the top level so we can't accidentally skip
217         one. */
218         for(Block *block=current_block; (!declaration && block); block=block->parent)
219         {
220                 map<string, VariableDeclaration *>::iterator i = block->variables.find(var.name);
221                 if(i!=block->variables.end())
222                         declaration = i->second;
223         }
224
225         if(!declaration)
226         {
227                 const map<string, InterfaceBlock *> &blocks = stage->interface_blocks;
228                 map<string, InterfaceBlock *>::const_iterator i = blocks.find(var.name);
229                 if(i==blocks.end())
230                 {
231                         // Look for the variable in anonymous interface blocks.
232                         for(i=blocks.begin(); i!=blocks.end(); ++i)
233                                 if(i->second->instance_name.empty() && i->second->struct_declaration)
234                                         if(i->second->struct_declaration->members.variables.count(var.name))
235                                                 break;
236                 }
237
238                 if(i!=blocks.end())
239                 {
240                         /* The name refers to either an interface block with an instance name
241                         or a variable declared inside an anonymous interface block.  Prepare
242                         new syntax tree nodes accordingly. */
243                         InterfaceBlockReference *iface_ref = new InterfaceBlockReference;
244                         iface_ref->source = var.source;
245                         iface_ref->line = var.line;
246                         iface_ref->declaration = i->second;
247
248                         if(i->second->instance_name.empty())
249                         {
250                                 iface_ref->name = format("%s %s", i->second->interface, i->second->block_name);
251
252                                 MemberAccess *memacc = new MemberAccess;
253                                 memacc->source = var.source;
254                                 memacc->line = var.line;
255                                 memacc->left = iface_ref;
256                                 memacc->member = var.name;
257
258                                 r_replacement_expr = memacc;
259                         }
260                         else
261                         {
262                                 iface_ref->name = var.name;
263                                 r_replacement_expr = iface_ref;
264                         }
265                 }
266         }
267
268         r_any_resolved |= (declaration!=var.declaration);
269         var.declaration = declaration;
270
271         check_assignment_target(var.declaration);
272 }
273
274 void VariableResolver::visit(InterfaceBlockReference &iface)
275 {
276         map<string, InterfaceBlock *>::iterator i = stage->interface_blocks.find(iface.name);
277         InterfaceBlock *declaration = (i!=stage->interface_blocks.end() ? i->second : 0);
278         r_any_resolved |= (declaration!=iface.declaration);
279         iface.declaration = declaration;
280
281         check_assignment_target(iface.declaration);
282 }
283
284 void VariableResolver::visit(MemberAccess &memacc)
285 {
286         TraversingVisitor::visit(memacc);
287
288         VariableDeclaration *declaration = 0;
289         int index = -1;
290         if(StructDeclaration *strct = dynamic_cast<StructDeclaration *>(memacc.left->type))
291         {
292                 map<string, VariableDeclaration *>::iterator i = strct->members.variables.find(memacc.member);
293                 if(i!=strct->members.variables.end())
294                 {
295                         declaration = i->second;
296                         index = 0;
297                         for(NodeList<Statement>::const_iterator j=strct->members.body.begin(); (j!=strct->members.body.end() && j->get()!=i->second); ++j)
298                                 ++index;
299
300                         if(record_target)
301                                 add_to_chain(r_assignment_target, Assignment::Target::MEMBER, index);
302                 }
303         }
304         else if(BasicTypeDeclaration *basic = dynamic_cast<BasicTypeDeclaration *>(memacc.left->type))
305         {
306                 bool scalar_swizzle = ((basic->kind==BasicTypeDeclaration::INT || basic->kind==BasicTypeDeclaration::FLOAT) && memacc.member.size()==1);
307                 bool vector_swizzle = (basic->kind==BasicTypeDeclaration::VECTOR && memacc.member.size()<=4);
308                 if(scalar_swizzle || vector_swizzle)
309                 {
310                         static const char component_names[] = { 'x', 'r', 's', 'y', 'g', 't', 'z', 'b', 'p', 'w', 'a', 'q' };
311
312                         bool ok = true;
313                         UInt8 components[4] = { };
314                         for(unsigned i=0; (ok && i<memacc.member.size()); ++i)
315                                 ok = ((components[i] = (find(component_names, component_names+12, memacc.member[i])-component_names)/3) < 4);
316
317                         if(ok)
318                         {
319                                 Swizzle *swizzle = new Swizzle;
320                                 swizzle->source = memacc.source;
321                                 swizzle->line = memacc.line;
322                                 swizzle->oper = memacc.oper;
323                                 swizzle->left = memacc.left;
324                                 swizzle->component_group = memacc.member;
325                                 swizzle->count = memacc.member.size();
326                                 copy(components, components+memacc.member.size(), swizzle->components);
327                                 r_replacement_expr = swizzle;
328                         }
329                 }
330         }
331
332         r_any_resolved |= (declaration!=memacc.declaration || index!=memacc.index);
333         memacc.declaration = declaration;
334         memacc.index = index;
335 }
336
337 void VariableResolver::visit(Swizzle &swizzle)
338 {
339         TraversingVisitor::visit(swizzle);
340
341         if(record_target)
342         {
343                 unsigned mask = 0;
344                 for(unsigned i=0; i<swizzle.count; ++i)
345                         mask |= 1<<swizzle.components[i];
346                 add_to_chain(r_assignment_target, Assignment::Target::SWIZZLE, mask);
347         }
348 }
349
350 void VariableResolver::visit(BinaryExpression &binary)
351 {
352         if(binary.oper->token[0]=='[')
353         {
354                 {
355                         /* The subscript expression is not a part of the primary assignment
356                         target. */
357                         SetFlag set(record_target, false);
358                         visit(binary.right);
359                 }
360                 visit(binary.left);
361
362                 if(record_target)
363                 {
364                         unsigned index = 0x3F;
365                         if(Literal *literal_subscript = dynamic_cast<Literal *>(binary.right.get()))
366                                 if(literal_subscript->value.check_type<int>())
367                                         index = literal_subscript->value.value<int>();
368                         add_to_chain(r_assignment_target, Assignment::Target::ARRAY, index);
369                 }
370         }
371         else
372                 TraversingVisitor::visit(binary);
373 }
374
375 void VariableResolver::visit(Assignment &assign)
376 {
377         {
378                 SetFlag set(record_target);
379                 r_assignment_target = Assignment::Target();
380                 visit(assign.left);
381                 r_any_resolved |= (r_assignment_target<assign.target || assign.target<r_assignment_target);
382                 assign.target = r_assignment_target;
383         }
384
385         r_self_referencing = false;
386         visit(assign.right);
387         assign.self_referencing = (r_self_referencing || assign.oper->token[0]!='=');
388 }
389
390 void VariableResolver::merge_layouts(Layout &to_layout, const Layout &from_layout)
391 {
392         for(vector<Layout::Qualifier>::const_iterator i=from_layout.qualifiers.begin(); i!=from_layout.qualifiers.end(); ++i)
393         {
394                 bool found = false;
395                 for(vector<Layout::Qualifier>::iterator j=to_layout.qualifiers.begin(); (!found && j!=to_layout.qualifiers.end()); ++j)
396                         if(j->name==i->name)
397                         {
398                                 j->has_value = i->value;
399                                 j->value = i->value;
400                                 found = true;
401                         }
402
403                 if(!found)
404                         to_layout.qualifiers.push_back(*i);
405         }
406 }
407
408 void VariableResolver::visit(VariableDeclaration &var)
409 {
410         TraversingVisitor::visit(var);
411         VariableDeclaration *&ptr = current_block->variables[var.name];
412         if(!ptr)
413                 ptr = &var;
414         else if(!current_block->parent && ptr->interface==var.interface && ptr->type==var.type)
415         {
416                 if(ptr->source==BUILTIN_SOURCE)
417                         redeclared_builtins.push_back(&var);
418                 else
419                         stage->diagnostics.push_back(Diagnostic(Diagnostic::WARN, var.source, var.line,
420                                 format("Redeclaring non-builtin variable '%s' is deprecated", var.name)));
421
422                 if(var.init_expression)
423                         ptr->init_expression = var.init_expression;
424                 if(var.layout)
425                 {
426                         if(ptr->layout)
427                                 merge_layouts(*ptr->layout, *var.layout);
428                         else
429                                 ptr->layout = var.layout;
430                 }
431                 nodes_to_remove.insert(&var);
432
433                 r_any_resolved = true;
434         }
435 }
436
437 void VariableResolver::visit(InterfaceBlock &iface)
438 {
439         /* Block names can be reused in different interfaces.  Prefix the name with
440         the first character of the interface to avoid conflicts. */
441         stage->interface_blocks.insert(make_pair(format("%s %s", iface.interface, iface.block_name), &iface));
442         if(!iface.instance_name.empty())
443                 stage->interface_blocks.insert(make_pair(iface.instance_name, &iface));
444
445         TraversingVisitor::visit(iface);
446 }
447
448
449 ExpressionResolver::ExpressionResolver():
450         stage(0),
451         r_any_resolved(false)
452 { }
453
454 bool ExpressionResolver::apply(Stage &s)
455 {
456         stage = &s;
457         r_any_resolved = false;
458         s.content.visit(*this);
459         return r_any_resolved;
460 }
461
462 bool ExpressionResolver::is_scalar(BasicTypeDeclaration &type)
463 {
464         return (type.kind==BasicTypeDeclaration::INT || type.kind==BasicTypeDeclaration::FLOAT);
465 }
466
467 bool ExpressionResolver::is_vector_or_matrix(BasicTypeDeclaration &type)
468 {
469         return (type.kind==BasicTypeDeclaration::VECTOR || type.kind==BasicTypeDeclaration::MATRIX);
470 }
471
472 BasicTypeDeclaration *ExpressionResolver::get_element_type(BasicTypeDeclaration &type)
473 {
474         if(is_vector_or_matrix(type) || type.kind==BasicTypeDeclaration::ARRAY)
475         {
476                 BasicTypeDeclaration *basic_base = dynamic_cast<BasicTypeDeclaration *>(type.base_type);
477                 return (basic_base ? get_element_type(*basic_base) : 0);
478         }
479         else
480                 return &type;
481 }
482
483 bool ExpressionResolver::can_convert(BasicTypeDeclaration &from, BasicTypeDeclaration &to)
484 {
485         if(from.kind==BasicTypeDeclaration::INT && to.kind==BasicTypeDeclaration::FLOAT)
486                 return from.size<=to.size;
487         else if(from.kind!=to.kind)
488                 return false;
489         else if((from.kind==BasicTypeDeclaration::VECTOR || from.kind==BasicTypeDeclaration::MATRIX) && from.size==to.size)
490         {
491                 BasicTypeDeclaration *from_base = dynamic_cast<BasicTypeDeclaration *>(from.base_type);
492                 BasicTypeDeclaration *to_base = dynamic_cast<BasicTypeDeclaration *>(to.base_type);
493                 return (from_base && to_base && can_convert(*from_base, *to_base));
494         }
495         else
496                 return false;
497 }
498
499 ExpressionResolver::Compatibility ExpressionResolver::get_compatibility(BasicTypeDeclaration &left, BasicTypeDeclaration &right)
500 {
501         if(&left==&right)
502                 return SAME_TYPE;
503         else if(can_convert(left, right))
504                 return LEFT_CONVERTIBLE;
505         else if(can_convert(right, left))
506                 return RIGHT_CONVERTIBLE;
507         else
508                 return NOT_COMPATIBLE;
509 }
510
511 BasicTypeDeclaration *ExpressionResolver::find_type(BasicTypeDeclaration::Kind kind, unsigned size)
512 {
513         for(vector<BasicTypeDeclaration *>::const_iterator i=basic_types.begin(); i!=basic_types.end(); ++i)
514                 if((*i)->kind==kind && (*i)->size==size)
515                         return *i;
516         return 0;
517 }
518
519 BasicTypeDeclaration *ExpressionResolver::find_type(BasicTypeDeclaration &elem_type, BasicTypeDeclaration::Kind kind, unsigned size)
520 {
521         for(vector<BasicTypeDeclaration *>::const_iterator i=basic_types.begin(); i!=basic_types.end(); ++i)
522                 if(get_element_type(**i)==&elem_type && (*i)->kind==kind && (*i)->size==size)
523                         return *i;
524         return 0;
525 }
526
527 void ExpressionResolver::convert_to(RefPtr<Expression> &expr, BasicTypeDeclaration &type)
528 {
529         RefPtr<FunctionCall> call = new FunctionCall;
530         call->name = type.name;
531         call->constructor = true;
532         call->arguments.push_back_nocopy(expr);
533         call->type = &type;
534         expr = call;
535 }
536
537 bool ExpressionResolver::convert_to_element(RefPtr<Expression> &expr, BasicTypeDeclaration &elem_type)
538 {
539         if(BasicTypeDeclaration *expr_basic = dynamic_cast<BasicTypeDeclaration *>(expr->type))
540         {
541                 BasicTypeDeclaration *to_type = &elem_type;
542                 if(is_vector_or_matrix(*expr_basic))
543                         to_type = find_type(elem_type, expr_basic->kind, expr_basic->size);
544                 if(to_type)
545                 {
546                         convert_to(expr, *to_type);
547                         return true;
548                 }
549         }
550
551         return false;
552 }
553
554 bool ExpressionResolver::truncate_vector(RefPtr<Expression> &expr, unsigned size)
555 {
556         if(BasicTypeDeclaration *expr_basic = dynamic_cast<BasicTypeDeclaration *>(expr->type))
557                 if(BasicTypeDeclaration *expr_elem = get_element_type(*expr_basic))
558                 {
559                         RefPtr<Swizzle> swizzle = new Swizzle;
560                         swizzle->left = expr;
561                         swizzle->oper = &Operator::get_operator(".", Operator::POSTFIX);
562                         swizzle->component_group = string("xyzw", size);
563                         swizzle->count = size;
564                         for(unsigned i=0; i<size; ++i)
565                                 swizzle->components[i] = i;
566                         if(size==1)
567                                 swizzle->type = expr_elem;
568                         else
569                                 swizzle->type = find_type(*expr_elem, BasicTypeDeclaration::VECTOR, size);
570                         expr = swizzle;
571
572                         return true;
573                 }
574
575         return false;
576 }
577
578 void ExpressionResolver::resolve(Expression &expr, TypeDeclaration *type, bool lvalue)
579 {
580         r_any_resolved |= (type!=expr.type || lvalue!=expr.lvalue);
581         expr.type = type;
582         expr.lvalue = lvalue;
583 }
584
585 void ExpressionResolver::visit(Block &block)
586 {
587         SetForScope<Block *> set_block(current_block, &block);
588         for(NodeList<Statement>::iterator i=block.body.begin(); i!=block.body.end(); ++i)
589         {
590                 insert_point = i;
591                 (*i)->visit(*this);
592         }
593 }
594
595 void ExpressionResolver::visit(Literal &literal)
596 {
597         if(literal.value.check_type<bool>())
598                 resolve(literal, find_type(BasicTypeDeclaration::BOOL, 1), false);
599         else if(literal.value.check_type<int>())
600                 resolve(literal, find_type(BasicTypeDeclaration::INT, 32), false);
601         else if(literal.value.check_type<float>())
602                 resolve(literal, find_type(BasicTypeDeclaration::FLOAT, 32), false);
603 }
604
605 void ExpressionResolver::visit(VariableReference &var)
606 {
607         if(var.declaration)
608                 resolve(var, var.declaration->type_declaration, true);
609 }
610
611 void ExpressionResolver::visit(InterfaceBlockReference &iface)
612 {
613         if(iface.declaration)
614                 resolve(iface, iface.declaration->type_declaration, true);
615 }
616
617 void ExpressionResolver::visit(MemberAccess &memacc)
618 {
619         TraversingVisitor::visit(memacc);
620
621         if(memacc.declaration)
622                 resolve(memacc, memacc.declaration->type_declaration, memacc.left->lvalue);
623 }
624
625 void ExpressionResolver::visit(Swizzle &swizzle)
626 {
627         TraversingVisitor::visit(swizzle);
628
629         if(BasicTypeDeclaration *left_basic = dynamic_cast<BasicTypeDeclaration *>(swizzle.left->type))
630         {
631                 BasicTypeDeclaration *left_elem = get_element_type(*left_basic);
632                 if(swizzle.count==1)
633                         resolve(swizzle, left_elem, swizzle.left->lvalue);
634                 else if(left_basic->kind==BasicTypeDeclaration::VECTOR && left_elem)
635                         resolve(swizzle, find_type(*left_elem, left_basic->kind, swizzle.count), swizzle.left->lvalue);
636         }
637 }
638
639 void ExpressionResolver::visit(UnaryExpression &unary)
640 {
641         TraversingVisitor::visit(unary);
642
643         BasicTypeDeclaration *basic = dynamic_cast<BasicTypeDeclaration *>(unary.expression->type);
644         if(!basic)
645                 return;
646
647         char oper = unary.oper->token[0];
648         if(oper=='!')
649         {
650                 if(basic->kind!=BasicTypeDeclaration::BOOL)
651                         return;
652         }
653         else if(oper=='~')
654         {
655                 if(basic->kind!=BasicTypeDeclaration::INT)
656                         return;
657         }
658         else if(oper=='+' || oper=='-')
659         {
660                 BasicTypeDeclaration *elem = get_element_type(*basic);
661                 if(!elem || !is_scalar(*elem))
662                         return;
663         }
664         resolve(unary, basic, unary.expression->lvalue);
665 }
666
667 void ExpressionResolver::visit(BinaryExpression &binary, bool assign)
668 {
669         /* Binary operators are only defined for basic types (not for image or
670         structure types). */
671         BasicTypeDeclaration *basic_left = dynamic_cast<BasicTypeDeclaration *>(binary.left->type);
672         BasicTypeDeclaration *basic_right = dynamic_cast<BasicTypeDeclaration *>(binary.right->type);
673         if(!basic_left || !basic_right)
674                 return;
675
676         char oper = binary.oper->token[0];
677         if(oper=='[')
678         {
679                 /* Subscripting operates on vectors, matrices and arrays, and the right
680                 operand must be an integer. */
681                 if((!is_vector_or_matrix(*basic_left) && basic_left->kind!=BasicTypeDeclaration::ARRAY) || basic_right->kind!=BasicTypeDeclaration::INT)
682                         return;
683
684                 resolve(binary, basic_left->base_type, binary.left->lvalue);
685                 return;
686         }
687         else if(basic_left->kind==BasicTypeDeclaration::ARRAY || basic_right->kind==BasicTypeDeclaration::ARRAY)
688                 // No other binary operator can be used with arrays.
689                 return;
690
691         BasicTypeDeclaration *elem_left = get_element_type(*basic_left);
692         BasicTypeDeclaration *elem_right = get_element_type(*basic_right);
693         if(!elem_left || !elem_right)
694                 return;
695
696         Compatibility compat = get_compatibility(*basic_left, *basic_right);
697         Compatibility elem_compat = get_compatibility(*elem_left, *elem_right);
698         if(elem_compat==NOT_COMPATIBLE)
699                 return;
700         if(assign && (compat==LEFT_CONVERTIBLE || elem_compat==LEFT_CONVERTIBLE))
701                 return;
702
703         TypeDeclaration *type = 0;
704         char oper2 = binary.oper->token[1];
705         if((oper=='<' && oper2!='<') || (oper=='>' && oper2!='>'))
706         {
707                 /* Relational operators compare two scalar integer or floating-point
708                 values. */
709                 if(!is_scalar(*elem_left) || !is_scalar(*elem_right) || compat==NOT_COMPATIBLE)
710                         return;
711
712                 type = find_type(BasicTypeDeclaration::BOOL, 1);
713         }
714         else if((oper=='=' || oper=='!') && oper2=='=')
715         {
716                 // Equality comparison can be done on any compatible types.
717                 if(compat==NOT_COMPATIBLE)
718                         return;
719
720                 type = find_type(BasicTypeDeclaration::BOOL, 1);
721         }
722         else if(oper2=='&' || oper2=='|' || oper2=='^')
723         {
724                 // Logical operators can only be applied to booleans.
725                 if(basic_left->kind!=BasicTypeDeclaration::BOOL || basic_right->kind!=BasicTypeDeclaration::BOOL)
726                         return;
727
728                 type = basic_left;
729         }
730         else if((oper=='&' || oper=='|' || oper=='^' || oper=='%') && !oper2)
731         {
732                 // Bitwise operators and modulo can only be applied to integers.
733                 if(basic_left->kind!=BasicTypeDeclaration::INT || basic_right->kind!=BasicTypeDeclaration::INT)
734                         return;
735
736                 type = (compat==LEFT_CONVERTIBLE ? basic_right : basic_left);
737         }
738         else if((oper=='<' || oper=='>') && oper2==oper)
739         {
740                 // Shifts apply to integer scalars and vectors, with some restrictions.
741                 if(elem_left->kind!=BasicTypeDeclaration::INT || elem_right->kind!=BasicTypeDeclaration::INT)
742                         return;
743                 unsigned left_size = (basic_left->kind==BasicTypeDeclaration::INT ? 1 : basic_left->kind==BasicTypeDeclaration::VECTOR ? basic_left->size : 0);
744                 unsigned right_size = (basic_right->kind==BasicTypeDeclaration::INT ? 1 : basic_right->kind==BasicTypeDeclaration::VECTOR ? basic_right->size : 0);
745                 if(!left_size || (left_size==1 && right_size!=1) || (left_size>1 && right_size!=1 && right_size!=left_size))
746                         return;
747
748                 type = basic_left;
749                 // Don't perform conversion even if the operands are of different sizes.
750                 compat = SAME_TYPE;
751         }
752         else if(oper=='+' || oper=='-' || oper=='*' || oper=='/')
753         {
754                 // Arithmetic operators require scalar elements.
755                 if(!is_scalar(*elem_left) || !is_scalar(*elem_right))
756                         return;
757
758                 if(oper=='*' && is_vector_or_matrix(*basic_left) && is_vector_or_matrix(*basic_right) &&
759                         (basic_left->kind==BasicTypeDeclaration::MATRIX || basic_right->kind==BasicTypeDeclaration::MATRIX))
760                 {
761                         /* Multiplication has special rules when at least one operand is a
762                         matrix and the other is a vector or a matrix. */
763                         unsigned left_columns = basic_left->size&0xFFFF;
764                         unsigned right_rows = basic_right->size;
765                         if(basic_right->kind==BasicTypeDeclaration::MATRIX)
766                                 right_rows >>= 16;
767                         if(left_columns!=right_rows)
768                                 return;
769
770                         BasicTypeDeclaration *elem_result = (elem_compat==LEFT_CONVERTIBLE ? elem_right : elem_left);
771
772                         if(basic_left->kind==BasicTypeDeclaration::VECTOR)
773                                 type = find_type(*elem_result, BasicTypeDeclaration::VECTOR, basic_right->size&0xFFFF);
774                         else if(basic_right->kind==BasicTypeDeclaration::VECTOR)
775                                 type = find_type(*elem_result, BasicTypeDeclaration::VECTOR, basic_left->size>>16);
776                         else
777                                 type = find_type(*elem_result, BasicTypeDeclaration::MATRIX, (basic_left->size&0xFFFF0000)|(basic_right->size&0xFFFF));
778                 }
779                 else if(compat==NOT_COMPATIBLE)
780                 {
781                         // Arithmetic between scalars and matrices or vectors is supported.
782                         if(is_scalar(*basic_left) && is_vector_or_matrix(*basic_right))
783                                 type = (elem_compat==RIGHT_CONVERTIBLE ? find_type(*elem_left, basic_right->kind, basic_right->size) : basic_right);
784                         else if(is_vector_or_matrix(*basic_left) && is_scalar(*basic_right))
785                                 type = (elem_compat==LEFT_CONVERTIBLE ? find_type(*elem_right, basic_left->kind, basic_left->size) : basic_left);
786                         else
787                                 return;
788                 }
789                 else if(compat==LEFT_CONVERTIBLE)
790                         type = basic_right;
791                 else
792                         type = basic_left;
793         }
794         else
795                 return;
796
797         if(assign && type!=basic_left)
798                 return;
799
800         bool converted = true;
801         if(compat==LEFT_CONVERTIBLE)
802                 convert_to(binary.left, *basic_right);
803         else if(compat==RIGHT_CONVERTIBLE)
804                 convert_to(binary.right, *basic_left);
805         else if(elem_compat==LEFT_CONVERTIBLE)
806                 converted = convert_to_element(binary.left, *elem_right);
807         else if(elem_compat==RIGHT_CONVERTIBLE)
808                 converted = convert_to_element(binary.right, *elem_left);
809
810         if(!converted)
811                 type = 0;
812
813         resolve(binary, type, assign);
814 }
815
816 void ExpressionResolver::visit(BinaryExpression &binary)
817 {
818         TraversingVisitor::visit(binary);
819         visit(binary, false);
820 }
821
822 void ExpressionResolver::visit(Assignment &assign)
823 {
824         TraversingVisitor::visit(assign);
825
826         if(assign.oper->token[0]!='=')
827                 return visit(assign, true);
828         else if(assign.left->type!=assign.right->type)
829         {
830                 BasicTypeDeclaration *basic_left = dynamic_cast<BasicTypeDeclaration *>(assign.left->type);
831                 BasicTypeDeclaration *basic_right = dynamic_cast<BasicTypeDeclaration *>(assign.right->type);
832                 if(!basic_left || !basic_right)
833                         return;
834
835                 Compatibility compat = get_compatibility(*basic_left, *basic_right);
836                 if(compat==RIGHT_CONVERTIBLE)
837                         convert_to(assign.right, *basic_left);
838                 else if(compat!=SAME_TYPE)
839                         return;
840         }
841
842         resolve(assign, assign.left->type, true);
843 }
844
845 void ExpressionResolver::visit(TernaryExpression &ternary)
846 {
847         TraversingVisitor::visit(ternary);
848
849         BasicTypeDeclaration *basic_cond = dynamic_cast<BasicTypeDeclaration *>(ternary.condition->type);
850         if(!basic_cond || basic_cond->kind!=BasicTypeDeclaration::BOOL)
851                 return;
852
853         TypeDeclaration *type = 0;
854         if(ternary.true_expr->type==ternary.false_expr->type)
855                 type = ternary.true_expr->type;
856         else
857         {
858                 BasicTypeDeclaration *basic_true = dynamic_cast<BasicTypeDeclaration *>(ternary.true_expr->type);
859                 BasicTypeDeclaration *basic_false = dynamic_cast<BasicTypeDeclaration *>(ternary.false_expr->type);
860                 if(!basic_true || !basic_false)
861                         return;
862
863                 Compatibility compat = get_compatibility(*basic_true, *basic_false);
864                 if(compat==NOT_COMPATIBLE)
865                         return;
866
867                 type = (compat==LEFT_CONVERTIBLE ? basic_true : basic_false);
868
869                 if(compat==LEFT_CONVERTIBLE)
870                         convert_to(ternary.true_expr, *basic_false);
871                 else if(compat==RIGHT_CONVERTIBLE)
872                         convert_to(ternary.false_expr, *basic_true);
873         }
874
875         resolve(ternary, type, false);
876 }
877
878 void ExpressionResolver::visit_constructor(FunctionCall &call)
879 {
880         if(call.arguments.empty())
881                 return;
882
883         map<string, TypeDeclaration *>::const_iterator i = stage->types.find(call.name);
884         if(i==stage->types.end())
885                 return;
886         else if(call.arguments.size()==1 && i->second==call.arguments[0]->type)
887                 ;
888         else if(BasicTypeDeclaration *basic = dynamic_cast<BasicTypeDeclaration *>(i->second))
889         {
890                 BasicTypeDeclaration *elem = get_element_type(*basic);
891                 if(!elem)
892                         return;
893
894                 vector<ArgumentInfo> args;
895                 args.reserve(call.arguments.size());
896                 unsigned arg_component_total = 0;
897                 bool has_matrices = false;
898                 for(NodeArray<Expression>::const_iterator j=call.arguments.begin(); j!=call.arguments.end(); ++j)
899                 {
900                         ArgumentInfo info;
901                         if(!(info.type=dynamic_cast<BasicTypeDeclaration *>((*j)->type)))
902                                 return;
903                         if(is_scalar(*info.type) || info.type->kind==BasicTypeDeclaration::BOOL)
904                                 info.component_count = 1;
905                         else if(info.type->kind==BasicTypeDeclaration::VECTOR)
906                                 info.component_count = info.type->size;
907                         else if(info.type->kind==BasicTypeDeclaration::MATRIX)
908                         {
909                                 info.component_count = (info.type->size>>16)*(info.type->size&0xFFFF);
910                                 has_matrices = true;
911                         }
912                         else
913                                 return;
914                         arg_component_total += info.component_count;
915                         args.push_back(info);
916                 }
917
918                 bool convert_args = false;
919                 if((is_scalar(*basic) || basic->kind==BasicTypeDeclaration::BOOL) && call.arguments.size()==1 && !has_matrices)
920                 {
921                         if(arg_component_total>1)
922                                 truncate_vector(call.arguments.front(), 1);
923
924                         /* Single-element type constructors never need to convert their
925                         arguments because the constructor *is* the conversion. */
926                 }
927                 else if(basic->kind==BasicTypeDeclaration::VECTOR && !has_matrices)
928                 {
929                         /* Vector constructors need either a single scalar argument or
930                         enough components to fill out the vector. */
931                         if(arg_component_total!=1 && arg_component_total<basic->size)
932                                 return;
933
934                         /* A vector of same size can be converted directly.  For other
935                         combinations the individual arguments need to be converted. */
936                         if(call.arguments.size()==1)
937                         {
938                                 if(arg_component_total==1)
939                                         convert_args = true;
940                                 else if(arg_component_total>basic->size)
941                                         truncate_vector(call.arguments.front(), basic->size);
942                         }
943                         else if(arg_component_total==basic->size)
944                                 convert_args = true;
945                         else
946                                 return;
947                 }
948                 else if(basic->kind==BasicTypeDeclaration::MATRIX)
949                 {
950                         unsigned column_count = basic->size&0xFFFF;
951                         unsigned row_count = basic->size>>16;
952                         if(call.arguments.size()==1)
953                         {
954                                 /* A matrix can be constructed from a single element or another
955                                 matrix of sufficient size. */
956                                 if(arg_component_total==1)
957                                         convert_args = true;
958                                 else if(args.front().type->kind==BasicTypeDeclaration::MATRIX)
959                                 {
960                                         unsigned arg_columns = args.front().type->size&0xFFFF;
961                                         unsigned arg_rows = args.front().type->size>>16;
962                                         if(arg_columns<column_count || arg_rows<row_count)
963                                                 return;
964
965                                         /* Always generate a temporary here and let the optimization
966                                         stage inline it if that's reasonable. */
967                                         RefPtr<VariableDeclaration> temporary = new VariableDeclaration;
968                                         temporary->type = args.front().type->name;
969                                         temporary->name = get_unused_variable_name(*current_block, "_temp");
970                                         temporary->init_expression = call.arguments.front();
971                                         current_block->body.insert(insert_point, temporary);
972
973                                         // Create expressions to build each column.
974                                         vector<RefPtr<Expression> > columns;
975                                         columns.reserve(column_count);
976                                         for(unsigned j=0; j<column_count; ++j)
977                                         {
978                                                 RefPtr<VariableReference> ref = new VariableReference;
979                                                 ref->name = temporary->name;
980
981                                                 RefPtr<Literal> index = new Literal;
982                                                 index->token = lexical_cast<string>(j);
983                                                 index->value = static_cast<int>(j);
984
985                                                 RefPtr<BinaryExpression> subscript = new BinaryExpression;
986                                                 subscript->left = ref;
987                                                 subscript->oper = &Operator::get_operator("[", Operator::BINARY);
988                                                 subscript->right = index;
989                                                 subscript->type = args.front().type->base_type;
990
991                                                 columns.push_back(subscript);
992                                                 if(arg_rows>row_count)
993                                                         truncate_vector(columns.back(), row_count);
994                                         }
995
996                                         call.arguments.resize(column_count);
997                                         copy(columns.begin(), columns.end(), call.arguments.begin());
998
999                                         /* Let VariableResolver process the new nodes and finish
1000                                         resolving the constructor on the next pass. */
1001                                         r_any_resolved = true;
1002                                         return;
1003                                 }
1004                                 else
1005                                         return;
1006                         }
1007                         else if(arg_component_total==column_count*row_count && !has_matrices)
1008                         {
1009                                 /* Construct a matrix from individual components in column-major
1010                                 order.  Arguments must align at column boundaries. */
1011                                 vector<RefPtr<Expression> > columns;
1012                                 columns.reserve(column_count);
1013
1014                                 vector<RefPtr<Expression> > column_args;
1015                                 column_args.reserve(row_count);
1016                                 unsigned column_component_count = 0;
1017
1018                                 for(unsigned j=0; j<call.arguments.size(); ++j)
1019                                 {
1020                                         const ArgumentInfo &info = args[j];
1021                                         if(!column_component_count && info.type->kind==BasicTypeDeclaration::VECTOR && info.component_count==row_count)
1022                                                 // A vector filling the entire column can be used as is.
1023                                                 columns.push_back(call.arguments[j]);
1024                                         else
1025                                         {
1026                                                 column_args.push_back(call.arguments[j]);
1027                                                 column_component_count += info.component_count;
1028                                                 if(column_component_count==row_count)
1029                                                 {
1030                                                         /* The column has filled up.  Create a vector constructor
1031                                                         for it.*/
1032                                                         RefPtr<FunctionCall> column_call = new FunctionCall;
1033                                                         column_call->name = basic->base_type->name;
1034                                                         column_call->constructor = true;
1035                                                         column_call->arguments.resize(column_args.size());
1036                                                         copy(column_args.begin(), column_args.end(), column_call->arguments.begin());
1037                                                         column_call->type = basic->base_type;
1038                                                         visit_constructor(*column_call);
1039                                                         columns.push_back(column_call);
1040
1041                                                         column_args.clear();
1042                                                         column_component_count = 0;
1043                                                 }
1044                                                 else if(column_component_count>row_count)
1045                                                         // Argument alignment mismatch.
1046                                                         return;
1047                                         }
1048                                 }
1049                         }
1050                         else
1051                                 return;
1052                 }
1053                 else
1054                         return;
1055
1056                 if(convert_args)
1057                 {
1058                         // The argument list may have changed so can't rely on args.
1059                         for(NodeArray<Expression>::iterator j=call.arguments.begin(); j!=call.arguments.end(); ++j)
1060                                 if(BasicTypeDeclaration *basic_arg = dynamic_cast<BasicTypeDeclaration *>((*j)->type))
1061                                 {
1062                                         BasicTypeDeclaration *elem_arg = get_element_type(*basic_arg);
1063                                         if(elem_arg!=elem)
1064                                                 convert_to_element(*j, *elem);
1065                                 }
1066                 }
1067         }
1068         else if(StructDeclaration *strct = dynamic_cast<StructDeclaration *>(i->second))
1069         {
1070                 if(call.arguments.size()!=strct->members.body.size())
1071                         return;
1072
1073                 unsigned k = 0;
1074                 for(NodeList<Statement>::const_iterator j=strct->members.body.begin(); j!=strct->members.body.end(); ++j, ++k)
1075                 {
1076                         if(VariableDeclaration *var = dynamic_cast<VariableDeclaration *>(j->get()))
1077                         {
1078                                 if(!call.arguments[k]->type || call.arguments[k]->type!=var->type_declaration)
1079                                         return;
1080                         }
1081                         else
1082                                 return;
1083                 }
1084         }
1085
1086         resolve(call, i->second, false);
1087 }
1088
1089 void ExpressionResolver::visit(FunctionCall &call)
1090 {
1091         TraversingVisitor::visit(call);
1092
1093         if(call.declaration)
1094                 resolve(call, call.declaration->return_type_declaration, false);
1095         else if(call.constructor)
1096                 visit_constructor(call);
1097 }
1098
1099 void ExpressionResolver::visit(BasicTypeDeclaration &type)
1100 {
1101         basic_types.push_back(&type);
1102 }
1103
1104 void ExpressionResolver::visit(VariableDeclaration &var)
1105 {
1106         TraversingVisitor::visit(var);
1107         if(!var.init_expression)
1108                 return;
1109
1110         BasicTypeDeclaration *var_basic = dynamic_cast<BasicTypeDeclaration *>(var.type_declaration);
1111         BasicTypeDeclaration *init_basic = dynamic_cast<BasicTypeDeclaration *>(var.init_expression->type);
1112         if(!var_basic || !init_basic)
1113                 return;
1114
1115         Compatibility compat = get_compatibility(*var_basic, *init_basic);
1116         if(compat==RIGHT_CONVERTIBLE)
1117                 convert_to(var.init_expression, *var_basic);
1118 }
1119
1120
1121 bool FunctionResolver::apply(Stage &s)
1122 {
1123         stage = &s;
1124         s.functions.clear();
1125         r_any_resolved = false;
1126         s.content.visit(*this);
1127         return r_any_resolved;
1128 }
1129
1130 void FunctionResolver::visit(FunctionCall &call)
1131 {
1132         FunctionDeclaration *declaration = 0;
1133         if(stage->types.count(call.name))
1134                 call.constructor = true;
1135         else
1136         {
1137                 string arg_types;
1138                 bool has_signature = true;
1139                 for(NodeArray<Expression>::const_iterator i=call.arguments.begin(); (has_signature && i!=call.arguments.end()); ++i)
1140                 {
1141                         if((*i)->type)
1142                                 append(arg_types, ",", (*i)->type->name);
1143                         else
1144                                 has_signature = false;
1145                 }
1146
1147                 if(has_signature)
1148                 {
1149                         map<string, FunctionDeclaration *>::iterator i = stage->functions.find(format("%s(%s)", call.name, arg_types));
1150                         declaration = (i!=stage->functions.end() ? i->second : 0);
1151                 }
1152         }
1153
1154         r_any_resolved |= (declaration!=call.declaration);
1155         call.declaration = declaration;
1156
1157         TraversingVisitor::visit(call);
1158 }
1159
1160 void FunctionResolver::visit(FunctionDeclaration &func)
1161 {
1162         if(func.signature.empty())
1163         {
1164                 string param_types;
1165                 for(NodeArray<VariableDeclaration>::const_iterator i=func.parameters.begin(); i!=func.parameters.end(); ++i)
1166                 {
1167                         if((*i)->type_declaration)
1168                                 append(param_types, ",", (*i)->type_declaration->name);
1169                         else
1170                                 return;
1171                 }
1172                 func.signature = format("(%s)", param_types);
1173                 r_any_resolved = true;
1174         }
1175
1176         string key = func.name+func.signature;
1177         FunctionDeclaration *&stage_decl = stage->functions[key];
1178         vector<FunctionDeclaration *> &decls = declarations[key];
1179         if(func.definition==&func)
1180         {
1181                 if(stage_decl && stage_decl->definition)
1182                 {
1183                         if(!func.overrd)
1184                                 stage->diagnostics.push_back(Diagnostic(Diagnostic::WARN, func.source, func.line,
1185                                         format("Overriding function '%s' without the override keyword is deprecated", key)));
1186                         if(!stage_decl->definition->virtua)
1187                                 stage->diagnostics.push_back(Diagnostic(Diagnostic::WARN, func.source, func.line,
1188                                         format("Overriding function '%s' not declared as virtual is deprecated", key)));
1189                 }
1190                 stage_decl = &func;
1191
1192                 // Set all previous declarations to use this definition.
1193                 for(vector<FunctionDeclaration *>::iterator i=decls.begin(); i!=decls.end(); ++i)
1194                 {
1195                         r_any_resolved |= (func.definition!=(*i)->definition);
1196                         (*i)->definition = func.definition;
1197                         (*i)->body.body.clear();
1198                 }
1199         }
1200         else
1201         {
1202                 FunctionDeclaration *definition = (stage_decl ? stage_decl->definition : 0);
1203                 r_any_resolved |= (definition!=func.definition);
1204                 func.definition = definition;
1205
1206                 if(!stage_decl)
1207                         stage_decl = &func;
1208         }
1209         decls.push_back(&func);
1210
1211         TraversingVisitor::visit(func);
1212 }
1213
1214 } // namespace SL
1215 } // namespace GL
1216 } // namespace Msp