source: src/ResolvExpr/AlternativeFinder.cc @ 3da7c19

ADTarm-ehast-experimentalenumforall-pointer-decayjacob/cs343-translationjenkins-sandboxnew-astnew-ast-unique-exprpthread-emulationqualifiedEnum
Last change on this file since 3da7c19 was 396037d, checked in by Aaron Moss <a3moss@…>, 5 years ago

Start stubbing CandidateFinder? in

  • Property mode set to 100644
File size: 71.7 KB
Line 
1//
2// Cforall Version 1.0.0 Copyright (C) 2015 University of Waterloo
3//
4// The contents of this file are covered under the licence agreement in the
5// file "LICENCE" distributed with Cforall.
6//
7// AlternativeFinder.cc --
8//
9// Author           : Richard C. Bilson
10// Created On       : Sat May 16 23:52:08 2015
11// Last Modified By : Peter A. Buhr
12// Last Modified On : Thu Nov  1 21:00:56 2018
13// Update Count     : 35
14//
15
16#include <algorithm>               // for copy
17#include <cassert>                 // for strict_dynamic_cast, assert, assertf
18#include <cstddef>                 // for size_t
19#include <iostream>                // for operator<<, cerr, ostream, endl
20#include <iterator>                // for back_insert_iterator, back_inserter
21#include <list>                    // for _List_iterator, list, _List_const_...
22#include <map>                     // for _Rb_tree_iterator, map, _Rb_tree_c...
23#include <memory>                  // for allocator_traits<>::value_type, unique_ptr
24#include <utility>                 // for pair
25#include <vector>                  // for vector
26
27#include "CompilationState.h"      // for resolvep
28#include "Alternative.h"           // for AltList, Alternative
29#include "AlternativeFinder.h"
30#include "AST/Expr.hpp"
31#include "AST/Type.hpp"
32#include "Common/SemanticError.h"  // for SemanticError
33#include "Common/utility.h"        // for deleteAll, printAll, CodeLocation
34#include "Cost.h"                  // for Cost, Cost::zero, operator<<, Cost...
35#include "ExplodedActual.h"        // for ExplodedActual
36#include "InitTweak/InitTweak.h"   // for getFunctionName
37#include "RenameVars.h"            // for RenameVars, global_renamer
38#include "ResolveAssertions.h"     // for resolveAssertions
39#include "ResolveTypeof.h"         // for resolveTypeof
40#include "Resolver.h"              // for resolveStmtExpr
41#include "SymTab/Indexer.h"        // for Indexer
42#include "SymTab/Mangler.h"        // for Mangler
43#include "SymTab/Validate.h"       // for validateType
44#include "SynTree/Constant.h"      // for Constant
45#include "SynTree/Declaration.h"   // for DeclarationWithType, TypeDecl, Dec...
46#include "SynTree/Expression.h"    // for Expression, CastExpr, NameExpr
47#include "SynTree/Initializer.h"   // for SingleInit, operator<<, Designation
48#include "SynTree/SynTree.h"       // for UniqueId
49#include "SynTree/Type.h"          // for Type, FunctionType, PointerType
50#include "Tuples/Explode.h"        // for explode
51#include "Tuples/Tuples.h"         // for isTtype, handleTupleAssignment
52#include "Unify.h"                 // for unify
53#include "typeops.h"               // for adjustExprType, polyCost, castCost
54
55#define PRINT( text ) if ( resolvep ) { text }
56//#define DEBUG_COST
57
58using std::move;
59
60/// copies any copyable type
61template<typename T>
62T copy(const T& x) { return x; }
63
64namespace ResolvExpr {
65        struct AlternativeFinder::Finder : public WithShortCircuiting {
66                Finder( AlternativeFinder & altFinder ) : altFinder( altFinder ), indexer( altFinder.indexer ), alternatives( altFinder.alternatives ), env( altFinder.env ), targetType( altFinder.targetType )  {}
67
68                void previsit( BaseSyntaxNode * ) { visit_children = false; }
69
70                void postvisit( ApplicationExpr * applicationExpr );
71                void postvisit( UntypedExpr * untypedExpr );
72                void postvisit( AddressExpr * addressExpr );
73                void postvisit( LabelAddressExpr * labelExpr );
74                void postvisit( CastExpr * castExpr );
75                void postvisit( VirtualCastExpr * castExpr );
76                void postvisit( UntypedMemberExpr * memberExpr );
77                void postvisit( MemberExpr * memberExpr );
78                void postvisit( NameExpr * variableExpr );
79                void postvisit( VariableExpr * variableExpr );
80                void postvisit( ConstantExpr * constantExpr );
81                void postvisit( SizeofExpr * sizeofExpr );
82                void postvisit( AlignofExpr * alignofExpr );
83                void postvisit( UntypedOffsetofExpr * offsetofExpr );
84                void postvisit( OffsetofExpr * offsetofExpr );
85                void postvisit( OffsetPackExpr * offsetPackExpr );
86                void postvisit( AttrExpr * attrExpr );
87                void postvisit( LogicalExpr * logicalExpr );
88                void postvisit( ConditionalExpr * conditionalExpr );
89                void postvisit( CommaExpr * commaExpr );
90                void postvisit( ImplicitCopyCtorExpr  * impCpCtorExpr );
91                void postvisit( ConstructorExpr  * ctorExpr );
92                void postvisit( RangeExpr  * rangeExpr );
93                void postvisit( UntypedTupleExpr * tupleExpr );
94                void postvisit( TupleExpr * tupleExpr );
95                void postvisit( TupleIndexExpr * tupleExpr );
96                void postvisit( TupleAssignExpr * tupleExpr );
97                void postvisit( UniqueExpr * unqExpr );
98                void postvisit( StmtExpr * stmtExpr );
99                void postvisit( UntypedInitExpr * initExpr );
100                void postvisit( InitExpr * initExpr );
101                void postvisit( DeletedExpr * delExpr );
102                void postvisit( GenericExpr * genExpr );
103
104                /// Adds alternatives for anonymous members
105                void addAnonConversions( const Alternative & alt );
106                /// Adds alternatives for member expressions, given the aggregate, conversion cost for that aggregate, and name of the member
107                template< typename StructOrUnionType > void addAggMembers( StructOrUnionType *aggInst, Expression *expr, const Alternative &alt, const Cost &newCost, const std::string & name );
108                /// Adds alternatives for member expressions where the left side has tuple type
109                void addTupleMembers( TupleType *tupleType, Expression *expr, const Alternative &alt, const Cost &newCost, Expression *member );
110                /// Adds alternatives for offsetof expressions, given the base type and name of the member
111                template< typename StructOrUnionType > void addOffsetof( StructOrUnionType *aggInst, const std::string &name );
112                /// Takes a final result and checks if its assertions can be satisfied
113                template<typename OutputIterator>
114                void validateFunctionAlternative( const Alternative &func, ArgPack& result, const std::vector<ArgPack>& results, OutputIterator out );
115                /// Finds matching alternatives for a function, given a set of arguments
116                template<typename OutputIterator>
117                void makeFunctionAlternatives( const Alternative &func, FunctionType *funcType, const ExplodedArgs& args, OutputIterator out );
118                /// Sets up parameter inference for an output alternative
119                template< typename OutputIterator >
120                void inferParameters( Alternative &newAlt, OutputIterator out );
121        private:
122                AlternativeFinder & altFinder;
123                const SymTab::Indexer &indexer;
124                AltList & alternatives;
125                const TypeEnvironment &env;
126                Type *& targetType;
127        };
128
129        Cost sumCost( const AltList &in ) {
130                Cost total = Cost::zero;
131                for ( AltList::const_iterator i = in.begin(); i != in.end(); ++i ) {
132                        total += i->cost;
133                }
134                return total;
135        }
136
137        void printAlts( const AltList &list, std::ostream &os, unsigned int indentAmt ) {
138                Indenter indent = { indentAmt };
139                for ( AltList::const_iterator i = list.begin(); i != list.end(); ++i ) {
140                        i->print( os, indent );
141                        os << std::endl;
142                }
143        }
144
145        namespace {
146                void makeExprList( const AltList &in, std::list< Expression* > &out ) {
147                        for ( AltList::const_iterator i = in.begin(); i != in.end(); ++i ) {
148                                out.push_back( i->expr->clone() );
149                        }
150                }
151
152                struct PruneStruct {
153                        bool isAmbiguous;
154                        AltList::iterator candidate;
155                        PruneStruct() {}
156                        PruneStruct( AltList::iterator candidate ): isAmbiguous( false ), candidate( candidate ) {}
157                };
158
159                /// Prunes a list of alternatives down to those that have the minimum conversion cost for a given return type; skips ambiguous interpretations
160                template< typename InputIterator, typename OutputIterator >
161                void pruneAlternatives( InputIterator begin, InputIterator end, OutputIterator out ) {
162                        // select the alternatives that have the minimum conversion cost for a particular set of result types
163                        std::map< std::string, PruneStruct > selected;
164                        for ( AltList::iterator candidate = begin; candidate != end; ++candidate ) {
165                                PruneStruct current( candidate );
166                                std::string mangleName;
167                                {
168                                        Type * newType = candidate->expr->get_result()->clone();
169                                        candidate->env.apply( newType );
170                                        mangleName = SymTab::Mangler::mangle( newType );
171                                        delete newType;
172                                }
173                                std::map< std::string, PruneStruct >::iterator mapPlace = selected.find( mangleName );
174                                if ( mapPlace != selected.end() ) {
175                                        if ( candidate->cost < mapPlace->second.candidate->cost ) {
176                                                PRINT(
177                                                        std::cerr << "cost " << candidate->cost << " beats " << mapPlace->second.candidate->cost << std::endl;
178                                                )
179                                                selected[ mangleName ] = current;
180                                        } else if ( candidate->cost == mapPlace->second.candidate->cost ) {
181                                                // if one of the candidates contains a deleted identifier, can pick the other, since
182                                                // deleted expressions should not be ambiguous if there is another option that is at least as good
183                                                if ( findDeletedExpr( candidate->expr ) ) {
184                                                        // do nothing
185                                                        PRINT( std::cerr << "candidate is deleted" << std::endl; )
186                                                } else if ( findDeletedExpr( mapPlace->second.candidate->expr ) ) {
187                                                        PRINT( std::cerr << "current is deleted" << std::endl; )
188                                                        selected[ mangleName ] = current;
189                                                } else {
190                                                        PRINT(
191                                                                std::cerr << "marking ambiguous" << std::endl;
192                                                        )
193                                                        mapPlace->second.isAmbiguous = true;
194                                                }
195                                        } else {
196                                                PRINT(
197                                                        std::cerr << "cost " << candidate->cost << " loses to " << mapPlace->second.candidate->cost << std::endl;
198                                                )
199                                        }
200                                } else {
201                                        selected[ mangleName ] = current;
202                                }
203                        }
204
205                        // accept the alternatives that were unambiguous
206                        for ( std::map< std::string, PruneStruct >::iterator target = selected.begin(); target != selected.end(); ++target ) {
207                                if ( ! target->second.isAmbiguous ) {
208                                        Alternative &alt = *target->second.candidate;
209                                        alt.env.applyFree( alt.expr->get_result() );
210                                        *out++ = alt;
211                                }
212                        }
213                }
214
215                void renameTypes( Expression *expr ) {
216                        renameTyVars( expr->result );
217                }
218        } // namespace
219
220        void referenceToRvalueConversion( Expression *& expr, Cost & cost ) {
221                if ( dynamic_cast< ReferenceType * >( expr->get_result() ) ) {
222                        // cast away reference from expr
223                        expr = new CastExpr( expr, expr->get_result()->stripReferences()->clone() );
224                        cost.incReference();
225                }
226        }
227
228        const ast::Expr * referenceToRvalueConversion( const ast::Expr * expr, Cost & cost ) {
229                if ( expr->result.as< ast::ReferenceType >() ) {
230                        // cast away reference from expr
231                        cost.incReference();
232                        return new ast::CastExpr{ expr->location, expr, expr->result->stripReferences() };
233                }
234               
235                return expr;
236        }
237
238        template< typename InputIterator, typename OutputIterator >
239        void AlternativeFinder::findSubExprs( InputIterator begin, InputIterator end, OutputIterator out ) {
240                while ( begin != end ) {
241                        AlternativeFinder finder( indexer, env );
242                        finder.findWithAdjustment( *begin );
243                        // XXX  either this
244                        //Designators::fixDesignations( finder, (*begin++)->get_argName() );
245                        // or XXX this
246                        begin++;
247                        PRINT(
248                                std::cerr << "findSubExprs" << std::endl;
249                                printAlts( finder.alternatives, std::cerr );
250                        )
251                        *out++ = finder;
252                }
253        }
254
255        AlternativeFinder::AlternativeFinder( const SymTab::Indexer &indexer, const TypeEnvironment &env )
256                : indexer( indexer ), env( env ) {
257        }
258
259        void AlternativeFinder::find( Expression *expr, ResolvMode mode ) {
260                PassVisitor<Finder> finder( *this );
261                expr->accept( finder );
262                if ( mode.failFast && alternatives.empty() ) {
263                        PRINT(
264                                std::cerr << "No reasonable alternatives for expression " << expr << std::endl;
265                        )
266                        SemanticError( expr, "No reasonable alternatives for expression " );
267                }
268                if ( mode.satisfyAssns || mode.prune ) {
269                        // trim candidates just to those where the assertions resolve
270                        // - necessary pre-requisite to pruning
271                        AltList candidates;
272                        std::list<std::string> errors;
273                        for ( unsigned i = 0; i < alternatives.size(); ++i ) {
274                                resolveAssertions( alternatives[i], indexer, candidates, errors );
275                        }
276                        // fail early if none such
277                        if ( mode.failFast && candidates.empty() ) {
278                                std::ostringstream stream;
279                                stream << "No alternatives with satisfiable assertions for " << expr << "\n";
280                                //        << "Alternatives with failing assertions are:\n";
281                                // printAlts( alternatives, stream, 1 );
282                                for ( const auto& err : errors ) {
283                                        stream << err;
284                                }
285                                SemanticError( expr->location, stream.str() );
286                        }
287                        // reset alternatives
288                        alternatives = std::move( candidates );
289                }
290                if ( mode.prune ) {
291                        auto oldsize = alternatives.size();
292                        PRINT(
293                                std::cerr << "alternatives before prune:" << std::endl;
294                                printAlts( alternatives, std::cerr );
295                        )
296                        AltList pruned;
297                        pruneAlternatives( alternatives.begin(), alternatives.end(), back_inserter( pruned ) );
298                        if ( mode.failFast && pruned.empty() ) {
299                                std::ostringstream stream;
300                                AltList winners;
301                                findMinCost( alternatives.begin(), alternatives.end(), back_inserter( winners ) );
302                                stream << "Cannot choose between " << winners.size() << " alternatives for expression\n";
303                                expr->print( stream );
304                                stream << " Alternatives are:\n";
305                                printAlts( winners, stream, 1 );
306                                SemanticError( expr->location, stream.str() );
307                        }
308                        alternatives = move(pruned);
309                        PRINT(
310                                std::cerr << "there are " << oldsize << " alternatives before elimination" << std::endl;
311                        )
312                        PRINT(
313                                std::cerr << "there are " << alternatives.size() << " alternatives after elimination" << std::endl;
314                        )
315                }
316                // adjust types after pruning so that types substituted by pruneAlternatives are correctly adjusted
317                if ( mode.adjust ) {
318                        for ( Alternative& i : alternatives ) {
319                                adjustExprType( i.expr->get_result(), i.env, indexer );
320                        }
321                }
322
323                // Central location to handle gcc extension keyword, etc. for all expression types.
324                for ( Alternative &iter: alternatives ) {
325                        iter.expr->set_extension( expr->get_extension() );
326                        iter.expr->location = expr->location;
327                } // for
328        }
329
330        void AlternativeFinder::findWithAdjustment( Expression *expr ) {
331                find( expr, ResolvMode::withAdjustment() );
332        }
333
334        void AlternativeFinder::findWithoutPrune( Expression * expr ) {
335                find( expr, ResolvMode::withoutPrune() );
336        }
337
338        void AlternativeFinder::maybeFind( Expression * expr ) {
339                find( expr, ResolvMode::withoutFailFast() );
340        }
341
342        void AlternativeFinder::Finder::addAnonConversions( const Alternative & alt ) {
343                // adds anonymous member interpretations whenever an aggregate value type is seen.
344                // it's okay for the aggregate expression to have reference type -- cast it to the base type to treat the aggregate as the referenced value
345                std::unique_ptr<Expression> aggrExpr( alt.expr->clone() );
346                alt.env.apply( aggrExpr->result );
347                Type * aggrType = aggrExpr->result;
348                if ( dynamic_cast< ReferenceType * >( aggrType ) ) {
349                        aggrType = aggrType->stripReferences();
350                        aggrExpr.reset( new CastExpr( aggrExpr.release(), aggrType->clone() ) );
351                }
352
353                if ( StructInstType *structInst = dynamic_cast< StructInstType* >( aggrExpr->result ) ) {
354                        addAggMembers( structInst, aggrExpr.get(), alt, alt.cost+Cost::safe, "" );
355                } else if ( UnionInstType *unionInst = dynamic_cast< UnionInstType* >( aggrExpr->result ) ) {
356                        addAggMembers( unionInst, aggrExpr.get(), alt, alt.cost+Cost::safe, "" );
357                } // if
358        }
359
360        template< typename StructOrUnionType >
361        void AlternativeFinder::Finder::addAggMembers( StructOrUnionType *aggInst, Expression *expr, const Alternative& alt, const Cost &newCost, const std::string & name ) {
362                std::list< Declaration* > members;
363                aggInst->lookup( name, members );
364
365                for ( Declaration * decl : members ) {
366                        if ( DeclarationWithType *dwt = dynamic_cast< DeclarationWithType* >( decl ) ) {
367                                // addAnonAlternatives uses vector::push_back, which invalidates references to existing elements, so
368                                // can't construct in place and use vector::back
369                                Alternative newAlt{ alt, new MemberExpr{ dwt, expr->clone() }, newCost };
370                                renameTypes( newAlt.expr );
371                                addAnonConversions( newAlt ); // add anonymous member interpretations whenever an aggregate value type is seen as a member expression.
372                                alternatives.push_back( std::move(newAlt) );
373                        } else {
374                                assert( false );
375                        }
376                }
377        }
378
379        void AlternativeFinder::Finder::addTupleMembers( TupleType *tupleType, Expression *expr,                        const Alternative &alt, const Cost &newCost, Expression *member ) {
380                if ( ConstantExpr * constantExpr = dynamic_cast< ConstantExpr * >( member ) ) {
381                        // get the value of the constant expression as an int, must be between 0 and the length of the tuple type to have meaning
382                        auto val = constantExpr->intValue();
383                        std::string tmp;
384                        if ( val >= 0 && (unsigned long long)val < tupleType->size() ) {
385                                alternatives.push_back( Alternative{ 
386                                        alt, new TupleIndexExpr( expr->clone(), val ), newCost } );
387                        } // if
388                } // if
389        }
390
391        void AlternativeFinder::Finder::postvisit( ApplicationExpr *applicationExpr ) {
392                alternatives.push_back( Alternative{ applicationExpr->clone(), env } );
393        }
394
395        Cost computeConversionCost( Type * actualType, Type * formalType, const SymTab::Indexer &indexer, const TypeEnvironment & env ) {
396                PRINT(
397                        std::cerr << std::endl << "converting ";
398                        actualType->print( std::cerr, 8 );
399                        std::cerr << std::endl << " to ";
400                        formalType->print( std::cerr, 8 );
401                        std::cerr << std::endl << "environment is: ";
402                        env.print( std::cerr, 8 );
403                        std::cerr << std::endl;
404                )
405                Cost convCost = conversionCost( actualType, formalType, indexer, env );
406                PRINT(
407                        std::cerr << std::endl << "cost is " << convCost << std::endl;
408                )
409                if ( convCost == Cost::infinity ) {
410                        return convCost;
411                }
412                convCost.incPoly( polyCost( formalType, env, indexer ) + polyCost( actualType, env, indexer ) );
413                PRINT(
414                        std::cerr << "cost with polycost is " << convCost << std::endl;
415                )
416                return convCost;
417        }
418
419        Cost computeExpressionConversionCost( Expression *& actualExpr, Type * formalType, const SymTab::Indexer &indexer, const TypeEnvironment & env ) {
420                Cost convCost = computeConversionCost( actualExpr->result, formalType, indexer, env );
421
422                // if there is a non-zero conversion cost, ignoring poly cost, then the expression requires conversion.
423                // ignore poly cost for now, since this requires resolution of the cast to infer parameters and this
424                // does not currently work for the reason stated below.
425                Cost tmpCost = convCost;
426                tmpCost.incPoly( -tmpCost.get_polyCost() );
427                if ( tmpCost != Cost::zero ) {
428                        Type *newType = formalType->clone();
429                        env.apply( newType );
430                        actualExpr = new CastExpr( actualExpr, newType );
431                        // xxx - SHOULD be able to resolve this cast, but at the moment pointers are not castable to zero_t, but are implicitly convertible. This is clearly
432                        // inconsistent, once this is fixed it should be possible to resolve the cast.
433                        // xxx - this isn't working, it appears because type1 (the formal type) is seen as widenable, but it shouldn't be, because this makes the conversion from DT* to DT* since commontype(zero_t, DT*) is DT*, rather than just nothing.
434
435                        // AlternativeFinder finder( indexer, env );
436                        // finder.findWithAdjustment( actualExpr );
437                        // assertf( finder.get_alternatives().size() > 0, "Somehow castable expression failed to find alternatives." );
438                        // assertf( finder.get_alternatives().size() == 1, "Somehow got multiple alternatives for known cast expression." );
439                        // Alternative & alt = finder.get_alternatives().front();
440                        // delete actualExpr;
441                        // actualExpr = alt.expr->clone();
442                }
443                return convCost;
444        }
445
446        Cost computeApplicationConversionCost( Alternative &alt, const SymTab::Indexer &indexer ) {
447                ApplicationExpr *appExpr = strict_dynamic_cast< ApplicationExpr* >( alt.expr );
448                PointerType *pointer = strict_dynamic_cast< PointerType* >( appExpr->function->result );
449                FunctionType *function = strict_dynamic_cast< FunctionType* >( pointer->base );
450
451                Cost convCost = Cost::zero;
452                std::list< DeclarationWithType* >& formals = function->parameters;
453                std::list< DeclarationWithType* >::iterator formal = formals.begin();
454                std::list< Expression* >& actuals = appExpr->args;
455
456                for ( Expression*& actualExpr : actuals ) {
457                        Type * actualType = actualExpr->result;
458                        PRINT(
459                                std::cerr << "actual expression:" << std::endl;
460                                actualExpr->print( std::cerr, 8 );
461                                std::cerr << "--- results are" << std::endl;
462                                actualType->print( std::cerr, 8 );
463                        )
464                        if ( formal == formals.end() ) {
465                                if ( function->isVarArgs ) {
466                                        convCost.incUnsafe();
467                                        PRINT( std::cerr << "end of formals with varargs function: inc unsafe: " << convCost << std::endl; ; )
468                                        // convert reference-typed expressions to value-typed expressions
469                                        referenceToRvalueConversion( actualExpr, convCost );
470                                        continue;
471                                } else {
472                                        return Cost::infinity;
473                                }
474                        }
475                        if ( DefaultArgExpr * def = dynamic_cast< DefaultArgExpr * >( actualExpr ) ) {
476                                // default arguments should be free - don't include conversion cost.
477                                // Unwrap them here because they are not relevant to the rest of the system.
478                                actualExpr = def->expr;
479                                ++formal;
480                                continue;
481                        }
482                        // mark conversion cost to formal and also specialization cost of formal type
483                        Type * formalType = (*formal)->get_type();
484                        convCost += computeExpressionConversionCost( actualExpr, formalType, indexer, alt.env );
485                        convCost.decSpec( specCost( formalType ) );
486                        ++formal; // can't be in for-loop update because of the continue
487                }
488                if ( formal != formals.end() ) {
489                        return Cost::infinity;
490                }
491
492                // specialization cost of return types can't be accounted for directly, it disables
493                // otherwise-identical calls, like this example based on auto-newline in the I/O lib:
494                //
495                //   forall(otype OS) {
496                //     void ?|?(OS&, int);  // with newline
497                //     OS&  ?|?(OS&, int);  // no newline, always chosen due to more specialization
498                //   }
499
500                // mark type variable and specialization cost of forall clause
501                convCost.incVar( function->forall.size() );
502                for ( TypeDecl* td : function->forall ) {
503                        convCost.decSpec( td->assertions.size() );
504                }
505
506                return convCost;
507        }
508
509        /// Adds type variables to the open variable set and marks their assertions
510        void makeUnifiableVars( Type *type, OpenVarSet &unifiableVars, AssertionSet &needAssertions ) {
511                for ( Type::ForallList::const_iterator tyvar = type->forall.begin(); tyvar != type->forall.end(); ++tyvar ) {
512                        unifiableVars[ (*tyvar)->get_name() ] = TypeDecl::Data{ *tyvar };
513                        for ( std::list< DeclarationWithType* >::iterator assert = (*tyvar)->assertions.begin(); assert != (*tyvar)->assertions.end(); ++assert ) {
514                                needAssertions[ *assert ].isUsed = true;
515                        }
516                }
517        }
518
519        /// Unique identifier for matching expression resolutions to their requesting expression
520        UniqueId globalResnSlot = 0;
521
522        template< typename OutputIterator >
523        void AlternativeFinder::Finder::inferParameters( Alternative &newAlt, OutputIterator out ) {
524                // Set need bindings for any unbound assertions
525                UniqueId crntResnSlot = 0;  // matching ID for this expression's assertions
526                for ( auto& assn : newAlt.need ) {
527                        // skip already-matched assertions
528                        if ( assn.info.resnSlot != 0 ) continue;
529                        // assign slot for expression if needed
530                        if ( crntResnSlot == 0 ) { crntResnSlot = ++globalResnSlot; }
531                        // fix slot to assertion
532                        assn.info.resnSlot = crntResnSlot;
533                }
534                // pair slot to expression
535                if ( crntResnSlot != 0 ) { newAlt.expr->resnSlots.push_back( crntResnSlot ); }
536
537                // add to output list, assertion resolution is deferred
538                *out++ = newAlt;
539        }
540
541        /// Gets a default value from an initializer, nullptr if not present
542        ConstantExpr* getDefaultValue( Initializer* init ) {
543                if ( SingleInit* si = dynamic_cast<SingleInit*>( init ) ) {
544                        if ( CastExpr* ce = dynamic_cast<CastExpr*>( si->value ) ) {
545                                return dynamic_cast<ConstantExpr*>( ce->arg );
546                        } else {
547                                return dynamic_cast<ConstantExpr*>( si->value );
548                        }
549                }
550                return nullptr;
551        }
552
553        /// State to iteratively build a match of parameter expressions to arguments
554        struct ArgPack {
555                std::size_t parent;                ///< Index of parent pack
556                std::unique_ptr<Expression> expr;  ///< The argument stored here
557                Cost cost;                         ///< The cost of this argument
558                TypeEnvironment env;               ///< Environment for this pack
559                AssertionSet need;                 ///< Assertions outstanding for this pack
560                AssertionSet have;                 ///< Assertions found for this pack
561                OpenVarSet openVars;               ///< Open variables for this pack
562                unsigned nextArg;                  ///< Index of next argument in arguments list
563                unsigned tupleStart;               ///< Number of tuples that start at this index
564                unsigned nextExpl;                 ///< Index of next exploded element
565                unsigned explAlt;                  ///< Index of alternative for nextExpl > 0
566
567                ArgPack()
568                        : parent(0), expr(), cost(Cost::zero), env(), need(), have(), openVars(), nextArg(0),
569                          tupleStart(0), nextExpl(0), explAlt(0) {}
570
571                ArgPack(const TypeEnvironment& env, const AssertionSet& need, const AssertionSet& have,
572                                const OpenVarSet& openVars)
573                        : parent(0), expr(), cost(Cost::zero), env(env), need(need), have(have),
574                          openVars(openVars), nextArg(0), tupleStart(0), nextExpl(0), explAlt(0) {}
575
576                ArgPack(std::size_t parent, Expression* expr, TypeEnvironment&& env, AssertionSet&& need,
577                                AssertionSet&& have, OpenVarSet&& openVars, unsigned nextArg,
578                                unsigned tupleStart = 0, Cost cost = Cost::zero, unsigned nextExpl = 0,
579                                unsigned explAlt = 0 )
580                        : parent(parent), expr(expr->clone()), cost(cost), env(move(env)), need(move(need)),
581                          have(move(have)), openVars(move(openVars)), nextArg(nextArg), tupleStart(tupleStart),
582                          nextExpl(nextExpl), explAlt(explAlt) {}
583
584                ArgPack(const ArgPack& o, TypeEnvironment&& env, AssertionSet&& need, AssertionSet&& have,
585                                OpenVarSet&& openVars, unsigned nextArg, Cost added )
586                        : parent(o.parent), expr(o.expr ? o.expr->clone() : nullptr), cost(o.cost + added),
587                          env(move(env)), need(move(need)), have(move(have)), openVars(move(openVars)),
588                          nextArg(nextArg), tupleStart(o.tupleStart), nextExpl(0), explAlt(0) {}
589
590                /// true iff this pack is in the middle of an exploded argument
591                bool hasExpl() const { return nextExpl > 0; }
592
593                /// Gets the list of exploded alternatives for this pack
594                const ExplodedActual& getExpl( const ExplodedArgs& args ) const {
595                        return args[nextArg-1][explAlt];
596                }
597
598                /// Ends a tuple expression, consolidating the appropriate actuals
599                void endTuple( const std::vector<ArgPack>& packs ) {
600                        // add all expressions in tuple to list, summing cost
601                        std::list<Expression*> exprs;
602                        const ArgPack* pack = this;
603                        if ( expr ) { exprs.push_front( expr.release() ); }
604                        while ( pack->tupleStart == 0 ) {
605                                pack = &packs[pack->parent];
606                                exprs.push_front( pack->expr->clone() );
607                                cost += pack->cost;
608                        }
609                        // reset pack to appropriate tuple
610                        expr.reset( new TupleExpr( exprs ) );
611                        tupleStart = pack->tupleStart - 1;
612                        parent = pack->parent;
613                }
614        };
615
616        /// Instantiates an argument to match a formal, returns false if no results left
617        bool instantiateArgument( Type* formalType, Initializer* initializer,
618                        const ExplodedArgs& args, std::vector<ArgPack>& results, std::size_t& genStart,
619                        const SymTab::Indexer& indexer, unsigned nTuples = 0 ) {
620                if ( TupleType * tupleType = dynamic_cast<TupleType*>( formalType ) ) {
621                        // formalType is a TupleType - group actuals into a TupleExpr
622                        ++nTuples;
623                        for ( Type* type : *tupleType ) {
624                                // xxx - dropping initializer changes behaviour from previous, but seems correct
625                                // ^^^ need to handle the case where a tuple has a default argument
626                                if ( ! instantiateArgument(
627                                                type, nullptr, args, results, genStart, indexer, nTuples ) )
628                                        return false;
629                                nTuples = 0;
630                        }
631                        // re-consititute tuples for final generation
632                        for ( auto i = genStart; i < results.size(); ++i ) {
633                                results[i].endTuple( results );
634                        }
635                        return true;
636                } else if ( TypeInstType * ttype = Tuples::isTtype( formalType ) ) {
637                        // formalType is a ttype, consumes all remaining arguments
638                        // xxx - mixing default arguments with variadic??
639
640                        // completed tuples; will be spliced to end of results to finish
641                        std::vector<ArgPack> finalResults{};
642
643                        // iterate until all results completed
644                        std::size_t genEnd;
645                        ++nTuples;
646                        do {
647                                genEnd = results.size();
648
649                                // add another argument to results
650                                for ( std::size_t i = genStart; i < genEnd; ++i ) {
651                                        auto nextArg = results[i].nextArg;
652
653                                        // use next element of exploded tuple if present
654                                        if ( results[i].hasExpl() ) {
655                                                const ExplodedActual& expl = results[i].getExpl( args );
656
657                                                unsigned nextExpl = results[i].nextExpl + 1;
658                                                if ( nextExpl == expl.exprs.size() ) {
659                                                        nextExpl = 0;
660                                                }
661
662                                                results.emplace_back(
663                                                        i, expl.exprs[results[i].nextExpl].get(), copy(results[i].env),
664                                                        copy(results[i].need), copy(results[i].have),
665                                                        copy(results[i].openVars), nextArg, nTuples, Cost::zero, nextExpl,
666                                                        results[i].explAlt );
667
668                                                continue;
669                                        }
670
671                                        // finish result when out of arguments
672                                        if ( nextArg >= args.size() ) {
673                                                ArgPack newResult{
674                                                        results[i].env, results[i].need, results[i].have,
675                                                        results[i].openVars };
676                                                newResult.nextArg = nextArg;
677                                                Type* argType;
678
679                                                if ( nTuples > 0 || ! results[i].expr ) {
680                                                        // first iteration or no expression to clone,
681                                                        // push empty tuple expression
682                                                        newResult.parent = i;
683                                                        std::list<Expression*> emptyList;
684                                                        newResult.expr.reset( new TupleExpr( emptyList ) );
685                                                        argType = newResult.expr->get_result();
686                                                } else {
687                                                        // clone result to collect tuple
688                                                        newResult.parent = results[i].parent;
689                                                        newResult.cost = results[i].cost;
690                                                        newResult.tupleStart = results[i].tupleStart;
691                                                        newResult.expr.reset( results[i].expr->clone() );
692                                                        argType = newResult.expr->get_result();
693
694                                                        if ( results[i].tupleStart > 0 && Tuples::isTtype( argType ) ) {
695                                                                // the case where a ttype value is passed directly is special,
696                                                                // e.g. for argument forwarding purposes
697                                                                // xxx - what if passing multiple arguments, last of which is
698                                                                //       ttype?
699                                                                // xxx - what would happen if unify was changed so that unifying
700                                                                //       tuple
701                                                                // types flattened both before unifying lists? then pass in
702                                                                // TupleType (ttype) below.
703                                                                --newResult.tupleStart;
704                                                        } else {
705                                                                // collapse leftover arguments into tuple
706                                                                newResult.endTuple( results );
707                                                                argType = newResult.expr->get_result();
708                                                        }
709                                                }
710
711                                                // check unification for ttype before adding to final
712                                                if ( unify( ttype, argType, newResult.env, newResult.need, newResult.have,
713                                                                newResult.openVars, indexer ) ) {
714                                                        finalResults.push_back( move(newResult) );
715                                                }
716
717                                                continue;
718                                        }
719
720                                        // add each possible next argument
721                                        for ( std::size_t j = 0; j < args[nextArg].size(); ++j ) {
722                                                const ExplodedActual& expl = args[nextArg][j];
723
724                                                // fresh copies of parent parameters for this iteration
725                                                TypeEnvironment env = results[i].env;
726                                                OpenVarSet openVars = results[i].openVars;
727
728                                                env.addActual( expl.env, openVars );
729
730                                                // skip empty tuple arguments by (near-)cloning parent into next gen
731                                                if ( expl.exprs.empty() ) {
732                                                        results.emplace_back(
733                                                                results[i], move(env), copy(results[i].need),
734                                                                copy(results[i].have), move(openVars), nextArg + 1, expl.cost );
735
736                                                        continue;
737                                                }
738
739                                                // add new result
740                                                results.emplace_back(
741                                                        i, expl.exprs.front().get(), move(env), copy(results[i].need),
742                                                        copy(results[i].have), move(openVars), nextArg + 1,
743                                                        nTuples, expl.cost, expl.exprs.size() == 1 ? 0 : 1, j );
744                                        }
745                                }
746
747                                // reset for next round
748                                genStart = genEnd;
749                                nTuples = 0;
750                        } while ( genEnd != results.size() );
751
752                        // splice final results onto results
753                        for ( std::size_t i = 0; i < finalResults.size(); ++i ) {
754                                results.push_back( move(finalResults[i]) );
755                        }
756                        return ! finalResults.empty();
757                }
758
759                // iterate each current subresult
760                std::size_t genEnd = results.size();
761                for ( std::size_t i = genStart; i < genEnd; ++i ) {
762                        auto nextArg = results[i].nextArg;
763
764                        // use remainder of exploded tuple if present
765                        if ( results[i].hasExpl() ) {
766                                const ExplodedActual& expl = results[i].getExpl( args );
767                                Expression* expr = expl.exprs[results[i].nextExpl].get();
768
769                                TypeEnvironment env = results[i].env;
770                                AssertionSet need = results[i].need, have = results[i].have;
771                                OpenVarSet openVars = results[i].openVars;
772
773                                Type* actualType = expr->get_result();
774
775                                PRINT(
776                                        std::cerr << "formal type is ";
777                                        formalType->print( std::cerr );
778                                        std::cerr << std::endl << "actual type is ";
779                                        actualType->print( std::cerr );
780                                        std::cerr << std::endl;
781                                )
782
783                                if ( unify( formalType, actualType, env, need, have, openVars, indexer ) ) {
784                                        unsigned nextExpl = results[i].nextExpl + 1;
785                                        if ( nextExpl == expl.exprs.size() ) {
786                                                nextExpl = 0;
787                                        }
788
789                                        results.emplace_back(
790                                                i, expr, move(env), move(need), move(have), move(openVars), nextArg,
791                                                nTuples, Cost::zero, nextExpl, results[i].explAlt );
792                                }
793
794                                continue;
795                        }
796
797                        // use default initializers if out of arguments
798                        if ( nextArg >= args.size() ) {
799                                if ( ConstantExpr* cnstExpr = getDefaultValue( initializer ) ) {
800                                        if ( Constant* cnst = dynamic_cast<Constant*>( cnstExpr->get_constant() ) ) {
801                                                TypeEnvironment env = results[i].env;
802                                                AssertionSet need = results[i].need, have = results[i].have;
803                                                OpenVarSet openVars = results[i].openVars;
804
805                                                if ( unify( formalType, cnst->get_type(), env, need, have, openVars,
806                                                                indexer ) ) {
807                                                        results.emplace_back(
808                                                                i, new DefaultArgExpr( cnstExpr ), move(env), move(need), move(have),
809                                                                move(openVars), nextArg, nTuples );
810                                                }
811                                        }
812                                }
813
814                                continue;
815                        }
816
817                        // Check each possible next argument
818                        for ( std::size_t j = 0; j < args[nextArg].size(); ++j ) {
819                                const ExplodedActual& expl = args[nextArg][j];
820
821                                // fresh copies of parent parameters for this iteration
822                                TypeEnvironment env = results[i].env;
823                                AssertionSet need = results[i].need, have = results[i].have;
824                                OpenVarSet openVars = results[i].openVars;
825
826                                env.addActual( expl.env, openVars );
827
828                                // skip empty tuple arguments by (near-)cloning parent into next gen
829                                if ( expl.exprs.empty() ) {
830                                        results.emplace_back(
831                                                results[i], move(env), move(need), move(have), move(openVars),
832                                                nextArg + 1, expl.cost );
833
834                                        continue;
835                                }
836
837                                // consider only first exploded actual
838                                Expression* expr = expl.exprs.front().get();
839                                Type* actualType = expr->result->clone();
840
841                                PRINT(
842                                        std::cerr << "formal type is ";
843                                        formalType->print( std::cerr );
844                                        std::cerr << std::endl << "actual type is ";
845                                        actualType->print( std::cerr );
846                                        std::cerr << std::endl;
847                                )
848
849                                // attempt to unify types
850                                if ( unify( formalType, actualType, env, need, have, openVars, indexer ) ) {
851                                        // add new result
852                                        results.emplace_back(
853                                                i, expr, move(env), move(need), move(have), move(openVars), nextArg + 1,
854                                                nTuples, expl.cost, expl.exprs.size() == 1 ? 0 : 1, j );
855                                }
856                        }
857                }
858
859                // reset for next parameter
860                genStart = genEnd;
861
862                return genEnd != results.size();
863        }
864
865        template<typename OutputIterator>
866        void AlternativeFinder::Finder::validateFunctionAlternative( const Alternative &func, ArgPack& result,
867                        const std::vector<ArgPack>& results, OutputIterator out ) {
868                ApplicationExpr *appExpr = new ApplicationExpr( func.expr->clone() );
869                // sum cost and accumulate actuals
870                std::list<Expression*>& args = appExpr->args;
871                Cost cost = func.cost;
872                const ArgPack* pack = &result;
873                while ( pack->expr ) {
874                        args.push_front( pack->expr->clone() );
875                        cost += pack->cost;
876                        pack = &results[pack->parent];
877                }
878                // build and validate new alternative
879                Alternative newAlt{ appExpr, result.env, result.openVars, result.need, cost };
880                PRINT(
881                        std::cerr << "instantiate function success: " << appExpr << std::endl;
882                        std::cerr << "need assertions:" << std::endl;
883                        printAssertionSet( result.need, std::cerr, 8 );
884                )
885                inferParameters( newAlt, out );
886        }
887
888        template<typename OutputIterator>
889        void AlternativeFinder::Finder::makeFunctionAlternatives( const Alternative &func,
890                        FunctionType *funcType, const ExplodedArgs &args, OutputIterator out ) {
891                OpenVarSet funcOpenVars;
892                AssertionSet funcNeed, funcHave;
893                TypeEnvironment funcEnv( func.env );
894                makeUnifiableVars( funcType, funcOpenVars, funcNeed );
895                // add all type variables as open variables now so that those not used in the parameter
896                // list are still considered open.
897                funcEnv.add( funcType->forall );
898
899                if ( targetType && ! targetType->isVoid() && ! funcType->returnVals.empty() ) {
900                        // attempt to narrow based on expected target type
901                        Type * returnType = funcType->returnVals.front()->get_type();
902                        if ( ! unify( returnType, targetType, funcEnv, funcNeed, funcHave, funcOpenVars,
903                                        indexer ) ) {
904                                // unification failed, don't pursue this function alternative
905                                return;
906                        }
907                }
908
909                // iteratively build matches, one parameter at a time
910                std::vector<ArgPack> results;
911                results.push_back( ArgPack{ funcEnv, funcNeed, funcHave, funcOpenVars } );
912                std::size_t genStart = 0;
913
914                for ( DeclarationWithType* formal : funcType->parameters ) {
915                        ObjectDecl* obj = strict_dynamic_cast< ObjectDecl* >( formal );
916                        if ( ! instantiateArgument(
917                                        obj->type, obj->init, args, results, genStart, indexer ) )
918                                return;
919                }
920
921                if ( funcType->get_isVarArgs() ) {
922                        // append any unused arguments to vararg pack
923                        std::size_t genEnd;
924                        do {
925                                genEnd = results.size();
926
927                                // iterate results
928                                for ( std::size_t i = genStart; i < genEnd; ++i ) {
929                                        auto nextArg = results[i].nextArg;
930
931                                        // use remainder of exploded tuple if present
932                                        if ( results[i].hasExpl() ) {
933                                                const ExplodedActual& expl = results[i].getExpl( args );
934
935                                                unsigned nextExpl = results[i].nextExpl + 1;
936                                                if ( nextExpl == expl.exprs.size() ) {
937                                                        nextExpl = 0;
938                                                }
939
940                                                results.emplace_back(
941                                                        i, expl.exprs[results[i].nextExpl].get(), copy(results[i].env),
942                                                        copy(results[i].need), copy(results[i].have),
943                                                        copy(results[i].openVars), nextArg, 0, Cost::zero, nextExpl,
944                                                        results[i].explAlt );
945
946                                                continue;
947                                        }
948
949                                        // finish result when out of arguments
950                                        if ( nextArg >= args.size() ) {
951                                                validateFunctionAlternative( func, results[i], results, out );
952
953                                                continue;
954                                        }
955
956                                        // add each possible next argument
957                                        for ( std::size_t j = 0; j < args[nextArg].size(); ++j ) {
958                                                const ExplodedActual& expl = args[nextArg][j];
959
960                                                // fresh copies of parent parameters for this iteration
961                                                TypeEnvironment env = results[i].env;
962                                                OpenVarSet openVars = results[i].openVars;
963
964                                                env.addActual( expl.env, openVars );
965
966                                                // skip empty tuple arguments by (near-)cloning parent into next gen
967                                                if ( expl.exprs.empty() ) {
968                                                        results.emplace_back(
969                                                                results[i], move(env), copy(results[i].need),
970                                                                copy(results[i].have), move(openVars), nextArg + 1, expl.cost );
971
972                                                        continue;
973                                                }
974
975                                                // add new result
976                                                results.emplace_back(
977                                                        i, expl.exprs.front().get(), move(env), copy(results[i].need),
978                                                        copy(results[i].have), move(openVars), nextArg + 1, 0,
979                                                        expl.cost, expl.exprs.size() == 1 ? 0 : 1, j );
980                                        }
981                                }
982
983                                genStart = genEnd;
984                        } while ( genEnd != results.size() );
985                } else {
986                        // filter out results that don't use all the arguments
987                        for ( std::size_t i = genStart; i < results.size(); ++i ) {
988                                ArgPack& result = results[i];
989                                if ( ! result.hasExpl() && result.nextArg >= args.size() ) {
990                                        validateFunctionAlternative( func, result, results, out );
991                                }
992                        }
993                }
994        }
995
996        void AlternativeFinder::Finder::postvisit( UntypedExpr *untypedExpr ) {
997                AlternativeFinder funcFinder( indexer, env );
998                funcFinder.findWithAdjustment( untypedExpr->function );
999                // if there are no function alternatives, then proceeding is a waste of time.
1000                // xxx - findWithAdjustment throws, so this check and others like it shouldn't be necessary.
1001                if ( funcFinder.alternatives.empty() ) return;
1002
1003                std::vector< AlternativeFinder > argAlternatives;
1004                altFinder.findSubExprs( untypedExpr->begin_args(), untypedExpr->end_args(),
1005                        back_inserter( argAlternatives ) );
1006
1007                // take care of possible tuple assignments
1008                // if not tuple assignment, assignment is taken care of as a normal function call
1009                Tuples::handleTupleAssignment( altFinder, untypedExpr, argAlternatives );
1010
1011                // find function operators
1012                static NameExpr *opExpr = new NameExpr( "?()" );
1013                AlternativeFinder funcOpFinder( indexer, env );
1014                // it's ok if there aren't any defined function ops
1015                funcOpFinder.maybeFind( opExpr );
1016                PRINT(
1017                        std::cerr << "known function ops:" << std::endl;
1018                        printAlts( funcOpFinder.alternatives, std::cerr, 1 );
1019                )
1020
1021                // pre-explode arguments
1022                ExplodedArgs argExpansions;
1023                argExpansions.reserve( argAlternatives.size() );
1024
1025                for ( const AlternativeFinder& arg : argAlternatives ) {
1026                        argExpansions.emplace_back();
1027                        auto& argE = argExpansions.back();
1028                        // argE.reserve( arg.alternatives.size() );
1029
1030                        for ( const Alternative& actual : arg ) {
1031                                argE.emplace_back( actual, indexer );
1032                        }
1033                }
1034
1035                AltList candidates;
1036                SemanticErrorException errors;
1037                for ( AltList::iterator func = funcFinder.alternatives.begin(); func != funcFinder.alternatives.end(); ++func ) {
1038                        try {
1039                                PRINT(
1040                                        std::cerr << "working on alternative: " << std::endl;
1041                                        func->print( std::cerr, 8 );
1042                                )
1043                                // check if the type is pointer to function
1044                                if ( PointerType *pointer = dynamic_cast< PointerType* >( func->expr->result->stripReferences() ) ) {
1045                                        if ( FunctionType *function = dynamic_cast< FunctionType* >( pointer->base ) ) {
1046                                                Alternative newFunc( *func );
1047                                                referenceToRvalueConversion( newFunc.expr, newFunc.cost );
1048                                                makeFunctionAlternatives( newFunc, function, argExpansions,
1049                                                        std::back_inserter( candidates ) );
1050                                        }
1051                                } else if ( TypeInstType *typeInst = dynamic_cast< TypeInstType* >( func->expr->result->stripReferences() ) ) { // handle ftype (e.g. *? on function pointer)
1052                                        if ( const EqvClass *eqvClass = func->env.lookup( typeInst->name ) ) {
1053                                                if ( FunctionType *function = dynamic_cast< FunctionType* >( eqvClass->type ) ) {
1054                                                        Alternative newFunc( *func );
1055                                                        referenceToRvalueConversion( newFunc.expr, newFunc.cost );
1056                                                        makeFunctionAlternatives( newFunc, function, argExpansions,
1057                                                                std::back_inserter( candidates ) );
1058                                                } // if
1059                                        } // if
1060                                }
1061                        } catch ( SemanticErrorException &e ) {
1062                                errors.append( e );
1063                        }
1064                } // for
1065
1066                // try each function operator ?() with each function alternative
1067                if ( ! funcOpFinder.alternatives.empty() ) {
1068                        // add exploded function alternatives to front of argument list
1069                        std::vector<ExplodedActual> funcE;
1070                        funcE.reserve( funcFinder.alternatives.size() );
1071                        for ( const Alternative& actual : funcFinder ) {
1072                                funcE.emplace_back( actual, indexer );
1073                        }
1074                        argExpansions.insert( argExpansions.begin(), move(funcE) );
1075
1076                        for ( AltList::iterator funcOp = funcOpFinder.alternatives.begin();
1077                                        funcOp != funcOpFinder.alternatives.end(); ++funcOp ) {
1078                                try {
1079                                        // check if type is a pointer to function
1080                                        if ( PointerType* pointer = dynamic_cast<PointerType*>(
1081                                                        funcOp->expr->result->stripReferences() ) ) {
1082                                                if ( FunctionType* function =
1083                                                                dynamic_cast<FunctionType*>( pointer->base ) ) {
1084                                                        Alternative newFunc( *funcOp );
1085                                                        referenceToRvalueConversion( newFunc.expr, newFunc.cost );
1086                                                        makeFunctionAlternatives( newFunc, function, argExpansions,
1087                                                                std::back_inserter( candidates ) );
1088                                                }
1089                                        }
1090                                } catch ( SemanticErrorException &e ) {
1091                                        errors.append( e );
1092                                }
1093                        }
1094                }
1095
1096                // Implement SFINAE; resolution errors are only errors if there aren't any non-erroneous resolutions
1097                if ( candidates.empty() && ! errors.isEmpty() ) { throw errors; }
1098
1099                // compute conversionsion costs
1100                for ( Alternative& withFunc : candidates ) {
1101                        Cost cvtCost = computeApplicationConversionCost( withFunc, indexer );
1102
1103                        PRINT(
1104                                ApplicationExpr *appExpr = strict_dynamic_cast< ApplicationExpr* >( withFunc.expr );
1105                                PointerType *pointer = strict_dynamic_cast< PointerType* >( appExpr->function->result );
1106                                FunctionType *function = strict_dynamic_cast< FunctionType* >( pointer->base );
1107                                std::cerr << "Case +++++++++++++ " << appExpr->function << std::endl;
1108                                std::cerr << "formals are:" << std::endl;
1109                                printAll( function->parameters, std::cerr, 8 );
1110                                std::cerr << "actuals are:" << std::endl;
1111                                printAll( appExpr->args, std::cerr, 8 );
1112                                std::cerr << "bindings are:" << std::endl;
1113                                withFunc.env.print( std::cerr, 8 );
1114                                std::cerr << "cost is: " << withFunc.cost << std::endl;
1115                                std::cerr << "cost of conversion is:" << cvtCost << std::endl;
1116                        )
1117                        if ( cvtCost != Cost::infinity ) {
1118                                withFunc.cvtCost = cvtCost;
1119                                alternatives.push_back( withFunc );
1120                        } // if
1121                } // for
1122
1123                candidates = move(alternatives);
1124
1125                // use a new list so that alternatives are not examined by addAnonConversions twice.
1126                AltList winners;
1127                findMinCost( candidates.begin(), candidates.end(), std::back_inserter( winners ) );
1128
1129                // function may return struct or union value, in which case we need to add alternatives
1130                // for implicit conversions to each of the anonymous members, must happen after findMinCost
1131                // since anon conversions are never the cheapest expression
1132                for ( const Alternative & alt : winners ) {
1133                        addAnonConversions( alt );
1134                }
1135                spliceBegin( alternatives, winners );
1136
1137                if ( alternatives.empty() && targetType && ! targetType->isVoid() ) {
1138                        // xxx - this is a temporary hack. If resolution is unsuccessful with a target type, try again without a
1139                        // target type, since it will sometimes succeed when it wouldn't easily with target type binding. For example,
1140                        //   forall( otype T ) lvalue T ?[?]( T *, ptrdiff_t );
1141                        //   const char * x = "hello world";
1142                        //   unsigned char ch = x[0];
1143                        // Fails with simple return type binding. First, T is bound to unsigned char, then (x: const char *) is unified
1144                        // with unsigned char *, which fails because pointer base types must be unified exactly. The new resolver should
1145                        // fix this issue in a more robust way.
1146                        targetType = nullptr;
1147                        postvisit( untypedExpr );
1148                }
1149        }
1150
1151        bool isLvalue( Expression *expr ) {
1152                // xxx - recurse into tuples?
1153                return expr->result && ( expr->result->get_lvalue() || dynamic_cast< ReferenceType * >( expr->result ) );
1154        }
1155
1156        void AlternativeFinder::Finder::postvisit( AddressExpr *addressExpr ) {
1157                AlternativeFinder finder( indexer, env );
1158                finder.find( addressExpr->get_arg() );
1159                for ( Alternative& alt : finder.alternatives ) {
1160                        if ( isLvalue( alt.expr ) ) {
1161                                alternatives.push_back(
1162                                        Alternative{ alt, new AddressExpr( alt.expr->clone() ), alt.cost } );
1163                        } // if
1164                } // for
1165        }
1166
1167        void AlternativeFinder::Finder::postvisit( LabelAddressExpr * expr ) {
1168                alternatives.push_back( Alternative{ expr->clone(), env } );
1169        }
1170
1171        Expression * restructureCast( Expression * argExpr, Type * toType, bool isGenerated ) {
1172                if ( argExpr->get_result()->size() > 1 && ! toType->isVoid() && ! dynamic_cast<ReferenceType *>( toType ) ) {
1173                        // Argument expression is a tuple and the target type is not void and not a reference type.
1174                        // Cast each member of the tuple to its corresponding target type, producing the tuple of those
1175                        // cast expressions. If there are more components of the tuple than components in the target type,
1176                        // then excess components do not come out in the result expression (but UniqueExprs ensure that
1177                        // side effects will still be done).
1178                        if ( Tuples::maybeImpureIgnoreUnique( argExpr ) ) {
1179                                // expressions which may contain side effects require a single unique instance of the expression.
1180                                argExpr = new UniqueExpr( argExpr );
1181                        }
1182                        std::list< Expression * > componentExprs;
1183                        for ( unsigned int i = 0; i < toType->size(); i++ ) {
1184                                // cast each component
1185                                TupleIndexExpr * idx = new TupleIndexExpr( argExpr->clone(), i );
1186                                componentExprs.push_back( restructureCast( idx, toType->getComponent( i ), isGenerated ) );
1187                        }
1188                        delete argExpr;
1189                        assert( componentExprs.size() > 0 );
1190                        // produce the tuple of casts
1191                        return new TupleExpr( componentExprs );
1192                } else {
1193                        // handle normally
1194                        CastExpr * ret = new CastExpr( argExpr, toType->clone() );
1195                        ret->isGenerated = isGenerated;
1196                        return ret;
1197                }
1198        }
1199
1200        void AlternativeFinder::Finder::postvisit( CastExpr *castExpr ) {
1201                Type *& toType = castExpr->get_result();
1202                assert( toType );
1203                toType = resolveTypeof( toType, indexer );
1204                SymTab::validateType( toType, &indexer );
1205                adjustExprType( toType, env, indexer );
1206
1207                AlternativeFinder finder( indexer, env );
1208                finder.targetType = toType;
1209                finder.findWithAdjustment( castExpr->arg );
1210
1211                AltList candidates;
1212                for ( Alternative & alt : finder.alternatives ) {
1213                        AssertionSet needAssertions( alt.need.begin(), alt.need.end() );
1214                        AssertionSet haveAssertions;
1215                        OpenVarSet openVars{ alt.openVars };
1216
1217                        alt.env.extractOpenVars( openVars );
1218
1219                        // It's possible that a cast can throw away some values in a multiply-valued expression.  (An example is a
1220                        // cast-to-void, which casts from one value to zero.)  Figure out the prefix of the subexpression results
1221                        // that are cast directly.  The candidate is invalid if it has fewer results than there are types to cast
1222                        // to.
1223                        int discardedValues = alt.expr->result->size() - castExpr->result->size();
1224                        if ( discardedValues < 0 ) continue;
1225                        // xxx - may need to go into tuple types and extract relevant types and use unifyList. Note that currently, this does not
1226                        // allow casting a tuple to an atomic type (e.g. (int)([1, 2, 3]))
1227                        // unification run for side-effects
1228                        unify( castExpr->result, alt.expr->result, alt.env, needAssertions,
1229                                haveAssertions, openVars, indexer );
1230                        Cost thisCost = castCost( alt.expr->result, castExpr->result, indexer,
1231                                alt.env );
1232                        PRINT(
1233                                std::cerr << "working on cast with result: " << castExpr->result << std::endl;
1234                                std::cerr << "and expr type: " << alt.expr->result << std::endl;
1235                                std::cerr << "env: " << alt.env << std::endl;
1236                        )
1237                        if ( thisCost != Cost::infinity ) {
1238                                PRINT(
1239                                        std::cerr << "has finite cost." << std::endl;
1240                                )
1241                                // count one safe conversion for each value that is thrown away
1242                                thisCost.incSafe( discardedValues );
1243                                Alternative newAlt{ 
1244                                        restructureCast( alt.expr->clone(), toType, castExpr->isGenerated ), 
1245                                        alt.env, openVars, needAssertions, alt.cost, alt.cost + thisCost };
1246                                inferParameters( newAlt, back_inserter( candidates ) );
1247                        } // if
1248                } // for
1249
1250                // findMinCost selects the alternatives with the lowest "cost" members, but has the side effect of copying the
1251                // cvtCost member to the cost member (since the old cost is now irrelevant).  Thus, calling findMinCost twice
1252                // selects first based on argument cost, then on conversion cost.
1253                AltList minArgCost;
1254                findMinCost( candidates.begin(), candidates.end(), std::back_inserter( minArgCost ) );
1255                findMinCost( minArgCost.begin(), minArgCost.end(), std::back_inserter( alternatives ) );
1256        }
1257
1258        void AlternativeFinder::Finder::postvisit( VirtualCastExpr * castExpr ) {
1259                assertf( castExpr->get_result(), "Implicit virtual cast targets not yet supported." );
1260                AlternativeFinder finder( indexer, env );
1261                // don't prune here, since it's guaranteed all alternatives will have the same type
1262                finder.findWithoutPrune( castExpr->get_arg() );
1263                for ( Alternative & alt : finder.alternatives ) {
1264                        alternatives.push_back( Alternative{
1265                                alt, new VirtualCastExpr{ alt.expr->clone(), castExpr->get_result()->clone() },
1266                                alt.cost } );
1267                }
1268        }
1269
1270        namespace {
1271                /// Gets name from untyped member expression (member must be NameExpr)
1272                const std::string& get_member_name( UntypedMemberExpr *memberExpr ) {
1273                        if ( dynamic_cast< ConstantExpr * >( memberExpr->get_member() ) ) {
1274                                SemanticError( memberExpr, "Indexed access to struct fields unsupported: " );
1275                        } // if
1276                        NameExpr * nameExpr = dynamic_cast< NameExpr * >( memberExpr->get_member() );
1277                        assert( nameExpr );
1278                        return nameExpr->get_name();
1279                }
1280        }
1281
1282        void AlternativeFinder::Finder::postvisit( UntypedMemberExpr *memberExpr ) {
1283                AlternativeFinder funcFinder( indexer, env );
1284                funcFinder.findWithAdjustment( memberExpr->get_aggregate() );
1285                for ( AltList::const_iterator agg = funcFinder.alternatives.begin(); agg != funcFinder.alternatives.end(); ++agg ) {
1286                        // it's okay for the aggregate expression to have reference type -- cast it to the base type to treat the aggregate as the referenced value
1287                        Cost cost = agg->cost;
1288                        Expression * aggrExpr = agg->expr->clone();
1289                        referenceToRvalueConversion( aggrExpr, cost );
1290                        std::unique_ptr<Expression> guard( aggrExpr );
1291
1292                        // find member of the given type
1293                        if ( StructInstType *structInst = dynamic_cast< StructInstType* >( aggrExpr->get_result() ) ) {
1294                                addAggMembers( structInst, aggrExpr, *agg, cost, get_member_name(memberExpr) );
1295                        } else if ( UnionInstType *unionInst = dynamic_cast< UnionInstType* >( aggrExpr->get_result() ) ) {
1296                                addAggMembers( unionInst, aggrExpr, *agg, cost, get_member_name(memberExpr) );
1297                        } else if ( TupleType * tupleType = dynamic_cast< TupleType * >( aggrExpr->get_result() ) ) {
1298                                addTupleMembers( tupleType, aggrExpr, *agg, cost, memberExpr->get_member() );
1299                        } // if
1300                } // for
1301        }
1302
1303        void AlternativeFinder::Finder::postvisit( MemberExpr *memberExpr ) {
1304                alternatives.push_back( Alternative{ memberExpr->clone(), env } );
1305        }
1306
1307        void AlternativeFinder::Finder::postvisit( NameExpr *nameExpr ) {
1308                std::list< SymTab::Indexer::IdData > declList;
1309                indexer.lookupId( nameExpr->name, declList );
1310                PRINT( std::cerr << "nameExpr is " << nameExpr->name << std::endl; )
1311                for ( auto & data : declList ) {
1312                        Cost cost = Cost::zero;
1313                        Expression * newExpr = data.combine( cost );
1314
1315                        // addAnonAlternatives uses vector::push_back, which invalidates references to existing elements, so
1316                        // can't construct in place and use vector::back
1317                        Alternative newAlt{ newExpr, env, OpenVarSet{}, AssertionList{}, Cost::zero, cost };
1318                        PRINT(
1319                                std::cerr << "decl is ";
1320                                data.id->print( std::cerr );
1321                                std::cerr << std::endl;
1322                                std::cerr << "newExpr is ";
1323                                newExpr->print( std::cerr );
1324                                std::cerr << std::endl;
1325                        )
1326                        renameTypes( newAlt.expr );
1327                        addAnonConversions( newAlt ); // add anonymous member interpretations whenever an aggregate value type is seen as a name expression.
1328                        alternatives.push_back( std::move(newAlt) );
1329                } // for
1330        }
1331
1332        void AlternativeFinder::Finder::postvisit( VariableExpr *variableExpr ) {
1333                // not sufficient to clone here, because variable's type may have changed
1334                // since the VariableExpr was originally created.
1335                alternatives.push_back( Alternative{ new VariableExpr{ variableExpr->var }, env } );
1336        }
1337
1338        void AlternativeFinder::Finder::postvisit( ConstantExpr *constantExpr ) {
1339                alternatives.push_back( Alternative{ constantExpr->clone(), env } );
1340        }
1341
1342        void AlternativeFinder::Finder::postvisit( SizeofExpr *sizeofExpr ) {
1343                if ( sizeofExpr->get_isType() ) {
1344                        Type * newType = sizeofExpr->get_type()->clone();
1345                        alternatives.push_back( Alternative{ 
1346                                new SizeofExpr{ resolveTypeof( newType, indexer ) }, env } );
1347                } else {
1348                        // find all alternatives for the argument to sizeof
1349                        AlternativeFinder finder( indexer, env );
1350                        finder.find( sizeofExpr->get_expr() );
1351                        // find the lowest cost alternative among the alternatives, otherwise ambiguous
1352                        AltList winners;
1353                        findMinCost( finder.alternatives.begin(), finder.alternatives.end(), back_inserter( winners ) );
1354                        if ( winners.size() != 1 ) {
1355                                SemanticError( sizeofExpr->get_expr(), "Ambiguous expression in sizeof operand: " );
1356                        } // if
1357                        // return the lowest cost alternative for the argument
1358                        Alternative &choice = winners.front();
1359                        referenceToRvalueConversion( choice.expr, choice.cost );
1360                        alternatives.push_back( Alternative{ 
1361                                choice, new SizeofExpr( choice.expr->clone() ), Cost::zero } );
1362                } // if
1363        }
1364
1365        void AlternativeFinder::Finder::postvisit( AlignofExpr *alignofExpr ) {
1366                if ( alignofExpr->get_isType() ) {
1367                        Type * newType = alignofExpr->get_type()->clone();
1368                        alternatives.push_back( Alternative{ 
1369                                new AlignofExpr{ resolveTypeof( newType, indexer ) }, env } );
1370                } else {
1371                        // find all alternatives for the argument to sizeof
1372                        AlternativeFinder finder( indexer, env );
1373                        finder.find( alignofExpr->get_expr() );
1374                        // find the lowest cost alternative among the alternatives, otherwise ambiguous
1375                        AltList winners;
1376                        findMinCost( finder.alternatives.begin(), finder.alternatives.end(), back_inserter( winners ) );
1377                        if ( winners.size() != 1 ) {
1378                                SemanticError( alignofExpr->get_expr(), "Ambiguous expression in alignof operand: " );
1379                        } // if
1380                        // return the lowest cost alternative for the argument
1381                        Alternative &choice = winners.front();
1382                        referenceToRvalueConversion( choice.expr, choice.cost );
1383                        alternatives.push_back( Alternative{ 
1384                                choice, new AlignofExpr{ choice.expr->clone() }, Cost::zero } );
1385                } // if
1386        }
1387
1388        template< typename StructOrUnionType >
1389        void AlternativeFinder::Finder::addOffsetof( StructOrUnionType *aggInst, const std::string &name ) {
1390                std::list< Declaration* > members;
1391                aggInst->lookup( name, members );
1392                for ( std::list< Declaration* >::const_iterator i = members.begin(); i != members.end(); ++i ) {
1393                        if ( DeclarationWithType *dwt = dynamic_cast< DeclarationWithType* >( *i ) ) {
1394                                alternatives.push_back( Alternative{ 
1395                                        new OffsetofExpr{ aggInst->clone(), dwt }, env } );
1396                                renameTypes( alternatives.back().expr );
1397                        } else {
1398                                assert( false );
1399                        }
1400                }
1401        }
1402
1403        void AlternativeFinder::Finder::postvisit( UntypedOffsetofExpr *offsetofExpr ) {
1404                AlternativeFinder funcFinder( indexer, env );
1405                // xxx - resolveTypeof?
1406                if ( StructInstType *structInst = dynamic_cast< StructInstType* >( offsetofExpr->get_type() ) ) {
1407                        addOffsetof( structInst, offsetofExpr->member );
1408                } else if ( UnionInstType *unionInst = dynamic_cast< UnionInstType* >( offsetofExpr->get_type() ) ) {
1409                        addOffsetof( unionInst, offsetofExpr->member );
1410                }
1411        }
1412
1413        void AlternativeFinder::Finder::postvisit( OffsetofExpr *offsetofExpr ) {
1414                alternatives.push_back( Alternative{ offsetofExpr->clone(), env } );
1415        }
1416
1417        void AlternativeFinder::Finder::postvisit( OffsetPackExpr *offsetPackExpr ) {
1418                alternatives.push_back( Alternative{ offsetPackExpr->clone(), env } );
1419        }
1420
1421        namespace {
1422                void resolveAttr( SymTab::Indexer::IdData data, FunctionType *function, Type *argType, const TypeEnvironment &env, AlternativeFinder & finder ) {
1423                        // assume no polymorphism
1424                        // assume no implicit conversions
1425                        assert( function->get_parameters().size() == 1 );
1426                        PRINT(
1427                                std::cerr << "resolvAttr: funcDecl is ";
1428                                data.id->print( std::cerr );
1429                                std::cerr << " argType is ";
1430                                argType->print( std::cerr );
1431                                std::cerr << std::endl;
1432                        )
1433                        const SymTab::Indexer & indexer = finder.get_indexer();
1434                        AltList & alternatives = finder.get_alternatives();
1435                        if ( typesCompatibleIgnoreQualifiers( argType, function->get_parameters().front()->get_type(), indexer, env ) ) {
1436                                Cost cost = Cost::zero;
1437                                Expression * newExpr = data.combine( cost );
1438                                alternatives.push_back( Alternative{ 
1439                                        new AttrExpr{ newExpr, argType->clone() }, env, OpenVarSet{}, 
1440                                        AssertionList{}, Cost::zero, cost } );
1441                                for ( DeclarationWithType * retVal : function->returnVals ) {
1442                                        alternatives.back().expr->result = retVal->get_type()->clone();
1443                                } // for
1444                        } // if
1445                }
1446        }
1447
1448        void AlternativeFinder::Finder::postvisit( AttrExpr *attrExpr ) {
1449                // assume no 'pointer-to-attribute'
1450                NameExpr *nameExpr = dynamic_cast< NameExpr* >( attrExpr->get_attr() );
1451                assert( nameExpr );
1452                std::list< SymTab::Indexer::IdData > attrList;
1453                indexer.lookupId( nameExpr->get_name(), attrList );
1454                if ( attrExpr->get_isType() || attrExpr->get_expr() ) {
1455                        for ( auto & data : attrList ) {
1456                                DeclarationWithType * id = data.id;
1457                                // check if the type is function
1458                                if ( FunctionType *function = dynamic_cast< FunctionType* >( id->get_type() ) ) {
1459                                        // assume exactly one parameter
1460                                        if ( function->get_parameters().size() == 1 ) {
1461                                                if ( attrExpr->get_isType() ) {
1462                                                        resolveAttr( data, function, attrExpr->get_type(), env, altFinder);
1463                                                } else {
1464                                                        AlternativeFinder finder( indexer, env );
1465                                                        finder.find( attrExpr->get_expr() );
1466                                                        for ( AltList::iterator choice = finder.alternatives.begin(); choice != finder.alternatives.end(); ++choice ) {
1467                                                                if ( choice->expr->get_result()->size() == 1 ) {
1468                                                                        resolveAttr(data, function, choice->expr->get_result(), choice->env, altFinder );
1469                                                                } // fi
1470                                                        } // for
1471                                                } // if
1472                                        } // if
1473                                } // if
1474                        } // for
1475                } else {
1476                        for ( auto & data : attrList ) {
1477                                Cost cost = Cost::zero;
1478                                Expression * newExpr = data.combine( cost );
1479                                alternatives.push_back( Alternative{ 
1480                                        newExpr, env, OpenVarSet{}, AssertionList{}, Cost::zero, cost } );
1481                                renameTypes( alternatives.back().expr );
1482                        } // for
1483                } // if
1484        }
1485
1486        void AlternativeFinder::Finder::postvisit( LogicalExpr *logicalExpr ) {
1487                AlternativeFinder firstFinder( indexer, env );
1488                firstFinder.findWithAdjustment( logicalExpr->get_arg1() );
1489                if ( firstFinder.alternatives.empty() ) return;
1490                AlternativeFinder secondFinder( indexer, env );
1491                secondFinder.findWithAdjustment( logicalExpr->get_arg2() );
1492                if ( secondFinder.alternatives.empty() ) return;
1493                for ( const Alternative & first : firstFinder.alternatives ) {
1494                        for ( const Alternative & second : secondFinder.alternatives ) {
1495                                TypeEnvironment compositeEnv{ first.env };
1496                                compositeEnv.simpleCombine( second.env );
1497                                OpenVarSet openVars{ first.openVars };
1498                                mergeOpenVars( openVars, second.openVars );
1499                                AssertionSet need;
1500                                cloneAll( first.need, need );
1501                                cloneAll( second.need, need );
1502
1503                                LogicalExpr *newExpr = new LogicalExpr{ 
1504                                        first.expr->clone(), second.expr->clone(), logicalExpr->get_isAnd() };
1505                                alternatives.push_back( Alternative{ 
1506                                        newExpr, std::move(compositeEnv), std::move(openVars), 
1507                                        AssertionList( need.begin(), need.end() ), first.cost + second.cost } );
1508                        }
1509                }
1510        }
1511
1512        void AlternativeFinder::Finder::postvisit( ConditionalExpr *conditionalExpr ) {
1513                // find alternatives for condition
1514                AlternativeFinder firstFinder( indexer, env );
1515                firstFinder.findWithAdjustment( conditionalExpr->arg1 );
1516                if ( firstFinder.alternatives.empty() ) return;
1517                // find alternatives for true expression
1518                AlternativeFinder secondFinder( indexer, env );
1519                secondFinder.findWithAdjustment( conditionalExpr->arg2 );
1520                if ( secondFinder.alternatives.empty() ) return;
1521                // find alterantives for false expression
1522                AlternativeFinder thirdFinder( indexer, env );
1523                thirdFinder.findWithAdjustment( conditionalExpr->arg3 );
1524                if ( thirdFinder.alternatives.empty() ) return;
1525                for ( const Alternative & first : firstFinder.alternatives ) {
1526                        for ( const Alternative & second : secondFinder.alternatives ) {
1527                                for ( const Alternative & third : thirdFinder.alternatives ) {
1528                                        TypeEnvironment compositeEnv{ first.env };
1529                                        compositeEnv.simpleCombine( second.env );
1530                                        compositeEnv.simpleCombine( third.env );
1531                                        OpenVarSet openVars{ first.openVars };
1532                                        mergeOpenVars( openVars, second.openVars );
1533                                        mergeOpenVars( openVars, third.openVars );
1534                                        AssertionSet need;
1535                                        cloneAll( first.need, need );
1536                                        cloneAll( second.need, need );
1537                                        cloneAll( third.need, need );
1538                                        AssertionSet have;
1539                                       
1540                                        // unify true and false types, then infer parameters to produce new alternatives
1541                                        Type* commonType = nullptr;
1542                                        if ( unify( second.expr->result, third.expr->result, compositeEnv, 
1543                                                        need, have, openVars, indexer, commonType ) ) {
1544                                                ConditionalExpr *newExpr = new ConditionalExpr{ 
1545                                                        first.expr->clone(), second.expr->clone(), third.expr->clone() };
1546                                                newExpr->result = commonType ? commonType : second.expr->result->clone();
1547                                                // convert both options to the conditional result type
1548                                                Cost cost = first.cost + second.cost + third.cost;
1549                                                cost += computeExpressionConversionCost( 
1550                                                        newExpr->arg2, newExpr->result, indexer, compositeEnv );
1551                                                cost += computeExpressionConversionCost( 
1552                                                        newExpr->arg3, newExpr->result, indexer, compositeEnv );
1553                                                // output alternative
1554                                                Alternative newAlt{ 
1555                                                        newExpr, std::move(compositeEnv), std::move(openVars), 
1556                                                        AssertionList( need.begin(), need.end() ), cost };
1557                                                inferParameters( newAlt, back_inserter( alternatives ) );
1558                                        } // if
1559                                } // for
1560                        } // for
1561                } // for
1562        }
1563
1564        void AlternativeFinder::Finder::postvisit( CommaExpr *commaExpr ) {
1565                TypeEnvironment newEnv( env );
1566                Expression *newFirstArg = resolveInVoidContext( commaExpr->get_arg1(), indexer, newEnv );
1567                AlternativeFinder secondFinder( indexer, newEnv );
1568                secondFinder.findWithAdjustment( commaExpr->get_arg2() );
1569                for ( const Alternative & alt : secondFinder.alternatives ) {
1570                        alternatives.push_back( Alternative{ 
1571                                alt, new CommaExpr{ newFirstArg->clone(), alt.expr->clone() }, alt.cost } );
1572                } // for
1573                delete newFirstArg;
1574        }
1575
1576        void AlternativeFinder::Finder::postvisit( RangeExpr * rangeExpr ) {
1577                // resolve low and high, accept alternatives whose low and high types unify
1578                AlternativeFinder firstFinder( indexer, env );
1579                firstFinder.findWithAdjustment( rangeExpr->low );
1580                if ( firstFinder.alternatives.empty() ) return;
1581                AlternativeFinder secondFinder( indexer, env );
1582                secondFinder.findWithAdjustment( rangeExpr->high );
1583                if ( secondFinder.alternatives.empty() ) return;
1584                for ( const Alternative & first : firstFinder.alternatives ) {
1585                        for ( const Alternative & second : secondFinder.alternatives ) {
1586                                TypeEnvironment compositeEnv{ first.env };
1587                                compositeEnv.simpleCombine( second.env );
1588                                OpenVarSet openVars{ first.openVars };
1589                                mergeOpenVars( openVars, second.openVars );
1590                                AssertionSet need;
1591                                cloneAll( first.need, need );
1592                                cloneAll( second.need, need );
1593                                AssertionSet have;
1594
1595                                Type* commonType = nullptr;
1596                                if ( unify( first.expr->result, second.expr->result, compositeEnv, need, have, 
1597                                                openVars, indexer, commonType ) ) {
1598                                        RangeExpr * newExpr = 
1599                                                new RangeExpr{ first.expr->clone(), second.expr->clone() };
1600                                        newExpr->result = commonType ? commonType : first.expr->result->clone();
1601                                        Alternative newAlt{ 
1602                                                newExpr, std::move(compositeEnv), std::move(openVars), 
1603                                                AssertionList( need.begin(), need.end() ), first.cost + second.cost };
1604                                        inferParameters( newAlt, back_inserter( alternatives ) );
1605                                } // if
1606                        } // for
1607                } // for
1608        }
1609
1610        void AlternativeFinder::Finder::postvisit( UntypedTupleExpr *tupleExpr ) {
1611                std::vector< AlternativeFinder > subExprAlternatives;
1612                altFinder.findSubExprs( tupleExpr->get_exprs().begin(), tupleExpr->get_exprs().end(),
1613                        back_inserter( subExprAlternatives ) );
1614                std::vector< AltList > possibilities;
1615                combos( subExprAlternatives.begin(), subExprAlternatives.end(),
1616                        back_inserter( possibilities ) );
1617                for ( const AltList& alts : possibilities ) {
1618                        std::list< Expression * > exprs;
1619                        makeExprList( alts, exprs );
1620
1621                        TypeEnvironment compositeEnv;
1622                        OpenVarSet openVars;
1623                        AssertionSet need;
1624                        for ( const Alternative& alt : alts ) {
1625                                compositeEnv.simpleCombine( alt.env );
1626                                mergeOpenVars( openVars, alt.openVars );
1627                                cloneAll( alt.need, need );
1628                        }
1629                       
1630                        alternatives.push_back( Alternative{ 
1631                                new TupleExpr{ exprs }, std::move(compositeEnv), std::move(openVars), 
1632                                AssertionList( need.begin(), need.end() ), sumCost( alts ) } );
1633                } // for
1634        }
1635
1636        void AlternativeFinder::Finder::postvisit( TupleExpr *tupleExpr ) {
1637                alternatives.push_back( Alternative{ tupleExpr->clone(), env } );
1638        }
1639
1640        void AlternativeFinder::Finder::postvisit( ImplicitCopyCtorExpr * impCpCtorExpr ) {
1641                alternatives.push_back( Alternative{ impCpCtorExpr->clone(), env } );
1642        }
1643
1644        void AlternativeFinder::Finder::postvisit( ConstructorExpr * ctorExpr ) {
1645                AlternativeFinder finder( indexer, env );
1646                // don't prune here, since it's guaranteed all alternatives will have the same type
1647                // (giving the alternatives different types is half of the point of ConstructorExpr nodes)
1648                finder.findWithoutPrune( ctorExpr->get_callExpr() );
1649                for ( Alternative & alt : finder.alternatives ) {
1650                        alternatives.push_back( Alternative{ 
1651                                alt, new ConstructorExpr( alt.expr->clone() ), alt.cost } );
1652                }
1653        }
1654
1655        void AlternativeFinder::Finder::postvisit( TupleIndexExpr *tupleExpr ) {
1656                alternatives.push_back( Alternative{ tupleExpr->clone(), env } );
1657        }
1658
1659        void AlternativeFinder::Finder::postvisit( TupleAssignExpr *tupleAssignExpr ) {
1660                alternatives.push_back( Alternative{ tupleAssignExpr->clone(), env } );
1661        }
1662
1663        void AlternativeFinder::Finder::postvisit( UniqueExpr *unqExpr ) {
1664                AlternativeFinder finder( indexer, env );
1665                finder.findWithAdjustment( unqExpr->get_expr() );
1666                for ( Alternative & alt : finder.alternatives ) {
1667                        // ensure that the id is passed on to the UniqueExpr alternative so that the expressions are "linked"
1668                        UniqueExpr * newUnqExpr = new UniqueExpr( alt.expr->clone(), unqExpr->get_id() );
1669                        alternatives.push_back( Alternative{ alt, newUnqExpr, alt.cost } );
1670                }
1671        }
1672
1673        void AlternativeFinder::Finder::postvisit( StmtExpr *stmtExpr ) {
1674                StmtExpr * newStmtExpr = stmtExpr->clone();
1675                ResolvExpr::resolveStmtExpr( newStmtExpr, indexer );
1676                // xxx - this env is almost certainly wrong, and needs to somehow contain the combined environments from all of the statements in the stmtExpr...
1677                alternatives.push_back( Alternative{ newStmtExpr, env } );
1678        }
1679
1680        void AlternativeFinder::Finder::postvisit( UntypedInitExpr *initExpr ) {
1681                // handle each option like a cast
1682                AltList candidates;
1683                PRINT(
1684                        std::cerr << "untyped init expr: " << initExpr << std::endl;
1685                )
1686                // O(N^2) checks of d-types with e-types
1687                for ( InitAlternative & initAlt : initExpr->get_initAlts() ) {
1688                        Type * toType = resolveTypeof( initAlt.type->clone(), indexer );
1689                        SymTab::validateType( toType, &indexer );
1690                        adjustExprType( toType, env, indexer );
1691                        // Ideally the call to findWithAdjustment could be moved out of the loop, but unfortunately it currently has to occur inside or else
1692                        // polymorphic return types are not properly bound to the initialization type, since return type variables are only open for the duration of resolving
1693                        // the UntypedExpr. This is only actually an issue in initialization contexts that allow more than one possible initialization type, but it is still suboptimal.
1694                        AlternativeFinder finder( indexer, env );
1695                        finder.targetType = toType;
1696                        finder.findWithAdjustment( initExpr->expr );
1697                        for ( Alternative & alt : finder.get_alternatives() ) {
1698                                TypeEnvironment newEnv( alt.env );
1699                                AssertionSet need;
1700                                cloneAll( alt.need, need );
1701                                AssertionSet have;
1702                                OpenVarSet openVars( alt.openVars ); 
1703                                // xxx - find things in env that don't have a "representative type" and claim
1704                                // those are open vars?
1705                                PRINT(
1706                                        std::cerr << "  @ " << toType << " " << initAlt.designation << std::endl;
1707                                )
1708                                // It's possible that a cast can throw away some values in a multiply-valued
1709                                // expression. (An example is a cast-to-void, which casts from one value to
1710                                // zero.)  Figure out the prefix of the subexpression results that are cast
1711                                // directly.  The candidate is invalid if it has fewer results than there are
1712                                // types to cast to.
1713                                int discardedValues = alt.expr->result->size() - toType->size();
1714                                if ( discardedValues < 0 ) continue;
1715                                // xxx - may need to go into tuple types and extract relevant types and use
1716                                // unifyList. Note that currently, this does not allow casting a tuple to an
1717                                // atomic type (e.g. (int)([1, 2, 3]))
1718                               
1719                                // unification run for side-effects
1720                                unify( toType, alt.expr->result, newEnv, need, have, openVars, indexer );
1721                                // xxx - do some inspecting on this line... why isn't result bound to initAlt.type?
1722
1723                                Cost thisCost = castCost( alt.expr->result, toType, indexer, newEnv );
1724                                if ( thisCost != Cost::infinity ) {
1725                                        // count one safe conversion for each value that is thrown away
1726                                        thisCost.incSafe( discardedValues );
1727                                        Alternative newAlt{ 
1728                                                new InitExpr{ 
1729                                                        restructureCast( alt.expr->clone(), toType, true ), initAlt.designation->clone() }, 
1730                                                std::move(newEnv), std::move(openVars), 
1731                                                AssertionList( need.begin(), need.end() ), alt.cost, thisCost };
1732                                        inferParameters( newAlt, back_inserter( candidates ) );
1733                                }
1734                        }
1735                }
1736
1737                // findMinCost selects the alternatives with the lowest "cost" members, but has the side effect of copying the
1738                // cvtCost member to the cost member (since the old cost is now irrelevant).  Thus, calling findMinCost twice
1739                // selects first based on argument cost, then on conversion cost.
1740                AltList minArgCost;
1741                findMinCost( candidates.begin(), candidates.end(), std::back_inserter( minArgCost ) );
1742                findMinCost( minArgCost.begin(), minArgCost.end(), std::back_inserter( alternatives ) );
1743        }
1744
1745        void AlternativeFinder::Finder::postvisit( InitExpr * ) {
1746                assertf( false, "AlternativeFinder should never see a resolved InitExpr." );
1747        }
1748
1749        void AlternativeFinder::Finder::postvisit( DeletedExpr * ) {
1750                assertf( false, "AlternativeFinder should never see a DeletedExpr." );
1751        }
1752
1753        void AlternativeFinder::Finder::postvisit( GenericExpr * ) {
1754                assertf( false, "_Generic is not yet supported." );
1755        }
1756} // namespace ResolvExpr
1757
1758// Local Variables: //
1759// tab-width: 4 //
1760// mode: c++ //
1761// compile-command: "make install" //
1762// End: //
Note: See TracBrowser for help on using the repository browser.