source: src/ResolvExpr/AlternativeFinder.cc @ 7933351

ADTaaron-thesisarm-ehast-experimentalcleanup-dtorsdeferred_resndemanglerenumforall-pointer-decayjacob/cs343-translationjenkins-sandboxnew-astnew-ast-unique-exprnew-envno_listpersistent-indexerpthread-emulationqualifiedEnumresolv-newwith_gc
Last change on this file since 7933351 was 7933351, checked in by Rob Schluntz <rschlunt@…>, 8 years ago

add tuple cast resolution code

  • Property mode set to 100644
File size: 47.1 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 : Mon Jul  4 17:02:51 2016
13// Update Count     : 29
14//
15
16#include <list>
17#include <iterator>
18#include <algorithm>
19#include <functional>
20#include <cassert>
21#include <unordered_map>
22#include <utility>
23#include <vector>
24
25#include "AlternativeFinder.h"
26#include "Alternative.h"
27#include "Cost.h"
28#include "typeops.h"
29#include "Unify.h"
30#include "RenameVars.h"
31#include "SynTree/Type.h"
32#include "SynTree/Declaration.h"
33#include "SynTree/Expression.h"
34#include "SynTree/Initializer.h"
35#include "SynTree/Visitor.h"
36#include "SymTab/Indexer.h"
37#include "SymTab/Mangler.h"
38#include "SynTree/TypeSubstitution.h"
39#include "SymTab/Validate.h"
40#include "Tuples/Tuples.h"
41#include "Tuples/Explode.h"
42#include "Common/utility.h"
43#include "InitTweak/InitTweak.h"
44#include "InitTweak/GenInit.h"
45#include "ResolveTypeof.h"
46
47extern bool resolvep;
48#define PRINT( text ) if ( resolvep ) { text }
49//#define DEBUG_COST
50
51namespace ResolvExpr {
52        Expression *resolveInVoidContext( Expression *expr, const SymTab::Indexer &indexer, TypeEnvironment &env ) {
53                CastExpr *castToVoid = new CastExpr( expr );
54
55                AlternativeFinder finder( indexer, env );
56                finder.findWithAdjustment( castToVoid );
57
58                // it's a property of the language that a cast expression has either 1 or 0 interpretations; if it has 0
59                // interpretations, an exception has already been thrown.
60                assert( finder.get_alternatives().size() == 1 );
61                CastExpr *newExpr = dynamic_cast< CastExpr* >( finder.get_alternatives().front().expr );
62                assert( newExpr );
63                env = finder.get_alternatives().front().env;
64                return newExpr->get_arg()->clone();
65        }
66
67        Cost sumCost( const AltList &in ) {
68                Cost total;
69                for ( AltList::const_iterator i = in.begin(); i != in.end(); ++i ) {
70                        total += i->cost;
71                }
72                return total;
73        }
74
75        namespace {
76                void printAlts( const AltList &list, std::ostream &os, int indent = 0 ) {
77                        for ( AltList::const_iterator i = list.begin(); i != list.end(); ++i ) {
78                                i->print( os, indent );
79                                os << std::endl;
80                        }
81                }
82
83                void makeExprList( const AltList &in, std::list< Expression* > &out ) {
84                        for ( AltList::const_iterator i = in.begin(); i != in.end(); ++i ) {
85                                out.push_back( i->expr->clone() );
86                        }
87                }
88
89                struct PruneStruct {
90                        bool isAmbiguous;
91                        AltList::iterator candidate;
92                        PruneStruct() {}
93                        PruneStruct( AltList::iterator candidate ): isAmbiguous( false ), candidate( candidate ) {}
94                };
95
96                /// Prunes a list of alternatives down to those that have the minimum conversion cost for a given return type; skips ambiguous interpretations
97                template< typename InputIterator, typename OutputIterator >
98                void pruneAlternatives( InputIterator begin, InputIterator end, OutputIterator out, const SymTab::Indexer &indexer ) {
99                        // select the alternatives that have the minimum conversion cost for a particular set of result types
100                        std::map< std::string, PruneStruct > selected;
101                        for ( AltList::iterator candidate = begin; candidate != end; ++candidate ) {
102                                PruneStruct current( candidate );
103                                std::string mangleName;
104                                {
105                                        Type * newType = candidate->expr->get_result()->clone();
106                                        candidate->env.apply( newType );
107                                        mangleName = SymTab::Mangler::mangle( newType );
108                                        delete newType;
109                                }
110                                std::map< std::string, PruneStruct >::iterator mapPlace = selected.find( mangleName );
111                                if ( mapPlace != selected.end() ) {
112                                        if ( candidate->cost < mapPlace->second.candidate->cost ) {
113                                                PRINT(
114                                                        std::cerr << "cost " << candidate->cost << " beats " << mapPlace->second.candidate->cost << std::endl;
115                                                )
116                                                selected[ mangleName ] = current;
117                                        } else if ( candidate->cost == mapPlace->second.candidate->cost ) {
118                                                PRINT(
119                                                        std::cerr << "marking ambiguous" << std::endl;
120                                                )
121                                                mapPlace->second.isAmbiguous = true;
122                                        }
123                                } else {
124                                        selected[ mangleName ] = current;
125                                }
126                        }
127
128                        PRINT(
129                                std::cerr << "there are " << selected.size() << " alternatives before elimination" << std::endl;
130                        )
131
132                        // accept the alternatives that were unambiguous
133                        for ( std::map< std::string, PruneStruct >::iterator target = selected.begin(); target != selected.end(); ++target ) {
134                                if ( ! target->second.isAmbiguous ) {
135                                        Alternative &alt = *target->second.candidate;
136                                        alt.env.applyFree( alt.expr->get_result() );
137                                        *out++ = alt;
138                                }
139                        }
140                }
141
142                void renameTypes( Expression *expr ) {
143                        expr->get_result()->accept( global_renamer );
144                }
145        }
146
147        template< typename InputIterator, typename OutputIterator >
148        void AlternativeFinder::findSubExprs( InputIterator begin, InputIterator end, OutputIterator out ) {
149                while ( begin != end ) {
150                        AlternativeFinder finder( indexer, env );
151                        finder.findWithAdjustment( *begin );
152                        // XXX  either this
153                        //Designators::fixDesignations( finder, (*begin++)->get_argName() );
154                        // or XXX this
155                        begin++;
156                        PRINT(
157                                std::cerr << "findSubExprs" << std::endl;
158                                printAlts( finder.alternatives, std::cerr );
159                        )
160                        *out++ = finder;
161                }
162        }
163
164        AlternativeFinder::AlternativeFinder( const SymTab::Indexer &indexer, const TypeEnvironment &env )
165                : indexer( indexer ), env( env ) {
166        }
167
168        void AlternativeFinder::find( Expression *expr, bool adjust, bool prune ) {
169                expr->accept( *this );
170                if ( alternatives.empty() ) {
171                        throw SemanticError( "No reasonable alternatives for expression ", expr );
172                }
173                for ( AltList::iterator i = alternatives.begin(); i != alternatives.end(); ++i ) {
174                        if ( adjust ) {
175                                adjustExprType( i->expr->get_result(), i->env, indexer );
176                        }
177                }
178                if ( prune ) {
179                        PRINT(
180                                std::cerr << "alternatives before prune:" << std::endl;
181                                printAlts( alternatives, std::cerr );
182                        )
183                        AltList::iterator oldBegin = alternatives.begin();
184                        pruneAlternatives( alternatives.begin(), alternatives.end(), front_inserter( alternatives ), indexer );
185                        if ( alternatives.begin() == oldBegin ) {
186                                std::ostringstream stream;
187                                stream << "Can't choose between " << alternatives.size() << " alternatives for expression ";
188                                expr->print( stream );
189                                stream << "Alternatives are:";
190                                AltList winners;
191                                findMinCost( alternatives.begin(), alternatives.end(), back_inserter( winners ) );
192                                printAlts( winners, stream, 8 );
193                                throw SemanticError( stream.str() );
194                        }
195                        alternatives.erase( oldBegin, alternatives.end() );
196                        PRINT(
197                                std::cerr << "there are " << alternatives.size() << " alternatives after elimination" << std::endl;
198                        )
199                }
200
201                // Central location to handle gcc extension keyword for all expression types.
202                for ( Alternative &iter: alternatives ) {
203                        iter.expr->set_extension( expr->get_extension() );
204                } // for
205        }
206
207        void AlternativeFinder::findWithAdjustment( Expression *expr, bool prune ) {
208                find( expr, true, prune );
209        }
210
211        // std::unordered_map< Expression *, UniqueExpr * > ;
212
213        template< typename StructOrUnionType >
214        void AlternativeFinder::addAggMembers( StructOrUnionType *aggInst, Expression *expr, const Cost &newCost, const TypeEnvironment & env, Expression * member ) {
215                // by this point, member must be a name expr
216                NameExpr * nameExpr = safe_dynamic_cast< NameExpr * >( member );
217                const std::string & name = nameExpr->get_name();
218                std::list< Declaration* > members;
219                aggInst->lookup( name, members );
220                for ( std::list< Declaration* >::const_iterator i = members.begin(); i != members.end(); ++i ) {
221                        if ( DeclarationWithType *dwt = dynamic_cast< DeclarationWithType* >( *i ) ) {
222                                alternatives.push_back( Alternative( new MemberExpr( dwt, expr->clone() ), env, newCost ) );
223                                renameTypes( alternatives.back().expr );
224                        } else {
225                                assert( false );
226                        }
227                }
228        }
229
230        void AlternativeFinder::addTupleMembers( TupleType * tupleType, Expression *expr, const Cost &newCost, const TypeEnvironment & env, Expression * member ) {
231                if ( ConstantExpr * constantExpr = dynamic_cast< ConstantExpr * >( member ) ) {
232                        // get the value of the constant expression as an int, must be between 0 and the length of the tuple type to have meaning
233                        // xxx - this should be improved by memoizing the value of constant exprs
234                        // during parsing and reusing that information here.
235                        std::stringstream ss( constantExpr->get_constant()->get_value() );
236                        int val;
237                        std::string tmp;
238                        if ( ss >> val && ! (ss >> tmp) ) {
239                                if ( val >= 0 && (unsigned int)val < tupleType->size() ) {
240                                        alternatives.push_back( Alternative( new TupleIndexExpr( expr->clone(), val ), env, newCost ) );
241                                } // if
242                        } // if
243                } else if ( NameExpr * nameExpr = dynamic_cast< NameExpr * >( member ) ) {
244                        // xxx - temporary hack until 0/1 are int constants
245                        if ( nameExpr->get_name() == "0" || nameExpr->get_name() == "1" ) {
246                                std::stringstream ss( nameExpr->get_name() );
247                                int val;
248                                ss >> val;
249                                alternatives.push_back( Alternative( new TupleIndexExpr( expr->clone(), val ), env, newCost ) );
250                        }
251                } // if
252        }
253
254        void AlternativeFinder::visit( ApplicationExpr *applicationExpr ) {
255                alternatives.push_back( Alternative( applicationExpr->clone(), env, Cost::zero ) );
256        }
257
258        Cost computeConversionCost( Alternative &alt, const SymTab::Indexer &indexer ) {
259                ApplicationExpr *appExpr = safe_dynamic_cast< ApplicationExpr* >( alt.expr );
260                PointerType *pointer = safe_dynamic_cast< PointerType* >( appExpr->get_function()->get_result() );
261                FunctionType *function = safe_dynamic_cast< FunctionType* >( pointer->get_base() );
262
263                Cost convCost( 0, 0, 0 );
264                std::list< DeclarationWithType* >& formals = function->get_parameters();
265                std::list< DeclarationWithType* >::iterator formal = formals.begin();
266                std::list< Expression* >& actuals = appExpr->get_args();
267
268                std::list< Type * > formalTypes;
269                std::list< Type * >::iterator formalType = formalTypes.end();
270
271                for ( std::list< Expression* >::iterator actualExpr = actuals.begin(); actualExpr != actuals.end(); ++actualExpr ) {
272
273                        PRINT(
274                                std::cerr << "actual expression:" << std::endl;
275                                (*actualExpr)->print( std::cerr, 8 );
276                                std::cerr << "--- results are" << std::endl;
277                                (*actualExpr)->get_result()->print( std::cerr, 8 );
278                        )
279                        std::list< DeclarationWithType* >::iterator startFormal = formal;
280                        Cost actualCost;
281                        std::list< Type * > flatActualTypes;
282                        flatten( (*actualExpr)->get_result(), back_inserter( flatActualTypes ) );
283                        for ( std::list< Type* >::iterator actualType = flatActualTypes.begin(); actualType != flatActualTypes.end(); ++actualType ) {
284
285
286                                // tuple handling code
287                                if ( formalType == formalTypes.end() ) {
288                                        // the type of the formal parameter may be a tuple type. To make this easier to work with,
289                                        // flatten the tuple type and traverse the resulting list of types, incrementing the formal
290                                        // iterator once its types have been extracted. Once a particular formal parameter's type has
291                                        // been exhausted load the next formal parameter's type.
292                                        if ( formal == formals.end() ) {
293                                                if ( function->get_isVarArgs() ) {
294                                                        convCost += Cost( 1, 0, 0 );
295                                                        break;
296                                                } else {
297                                                        return Cost::infinity;
298                                                }
299                                        }
300                                        formalTypes.clear();
301                                        flatten( (*formal)->get_type(), back_inserter( formalTypes ) );
302                                        formalType = formalTypes.begin();
303                                        ++formal;
304                                }
305
306                                PRINT(
307                                        std::cerr << std::endl << "converting ";
308                                        (*actualType)->print( std::cerr, 8 );
309                                        std::cerr << std::endl << " to ";
310                                        (*formalType)->print( std::cerr, 8 );
311                                )
312                                Cost newCost = conversionCost( *actualType, *formalType, indexer, alt.env );
313                                PRINT(
314                                        std::cerr << std::endl << "cost is" << newCost << std::endl;
315                                )
316
317                                if ( newCost == Cost::infinity ) {
318                                        return newCost;
319                                }
320                                convCost += newCost;
321                                actualCost += newCost;
322
323                                convCost += Cost( 0, polyCost( *formalType, alt.env, indexer ) + polyCost( *actualType, alt.env, indexer ), 0 );
324
325                                formalType++;
326                        }
327                        if ( actualCost != Cost( 0, 0, 0 ) ) {
328                                std::list< DeclarationWithType* >::iterator startFormalPlusOne = startFormal;
329                                startFormalPlusOne++;
330                                if ( formal == startFormalPlusOne ) {
331                                        // not a tuple type
332                                        Type *newType = (*startFormal)->get_type()->clone();
333                                        alt.env.apply( newType );
334                                        *actualExpr = new CastExpr( *actualExpr, newType );
335                                } else {
336                                        TupleType *newType = new TupleType( Type::Qualifiers() );
337                                        for ( std::list< DeclarationWithType* >::iterator i = startFormal; i != formal; ++i ) {
338                                                newType->get_types().push_back( (*i)->get_type()->clone() );
339                                        }
340                                        alt.env.apply( newType );
341                                        *actualExpr = new CastExpr( *actualExpr, newType );
342                                }
343                        }
344
345                }
346                if ( formal != formals.end() ) {
347                        return Cost::infinity;
348                }
349
350                for ( InferredParams::const_iterator assert = appExpr->get_inferParams().begin(); assert != appExpr->get_inferParams().end(); ++assert ) {
351                        PRINT(
352                                std::cerr << std::endl << "converting ";
353                                assert->second.actualType->print( std::cerr, 8 );
354                                std::cerr << std::endl << " to ";
355                                assert->second.formalType->print( std::cerr, 8 );
356                        )
357                        Cost newCost = conversionCost( assert->second.actualType, assert->second.formalType, indexer, alt.env );
358                        PRINT(
359                                std::cerr << std::endl << "cost of conversion is " << newCost << std::endl;
360                        )
361                        if ( newCost == Cost::infinity ) {
362                                return newCost;
363                        }
364                        convCost += newCost;
365
366                        convCost += Cost( 0, polyCost( assert->second.formalType, alt.env, indexer ) + polyCost( assert->second.actualType, alt.env, indexer ), 0 );
367                }
368
369                return convCost;
370        }
371
372        /// Adds type variables to the open variable set and marks their assertions
373        void makeUnifiableVars( Type *type, OpenVarSet &unifiableVars, AssertionSet &needAssertions ) {
374                for ( Type::ForallList::const_iterator tyvar = type->get_forall().begin(); tyvar != type->get_forall().end(); ++tyvar ) {
375                        unifiableVars[ (*tyvar)->get_name() ] = TypeDecl::Data{ *tyvar };
376                        for ( std::list< DeclarationWithType* >::iterator assert = (*tyvar)->get_assertions().begin(); assert != (*tyvar)->get_assertions().end(); ++assert ) {
377                                needAssertions[ *assert ] = true;
378                        }
379///     needAssertions.insert( needAssertions.end(), (*tyvar)->get_assertions().begin(), (*tyvar)->get_assertions().end() );
380                }
381        }
382
383        /// instantiate a single argument by matching actuals from [actualIt, actualEnd) against formalType,
384        /// producing expression(s) in out and their total cost in cost.
385        template< typename AltIterator, typename OutputIterator >
386        bool instantiateArgument( Type * formalType, Initializer * defaultValue, AltIterator & actualIt, AltIterator actualEnd, OpenVarSet & openVars, TypeEnvironment & resultEnv, AssertionSet & resultNeed, AssertionSet & resultHave, const SymTab::Indexer & indexer, Cost & cost, OutputIterator out ) {
387                if ( TupleType * tupleType = dynamic_cast< TupleType * >( formalType ) ) {
388                        // formalType is a TupleType - group actuals into a TupleExpr whose type unifies with the TupleType
389                        TupleExpr * tupleExpr = new TupleExpr();
390                        for ( Type * type : *tupleType ) {
391                                if ( ! instantiateArgument( type, defaultValue, actualIt, actualEnd, openVars, resultEnv, resultNeed, resultHave, indexer, cost, back_inserter( tupleExpr->get_exprs() ) ) ) {
392                                        delete tupleExpr;
393                                        return false;
394                                }
395                        }
396                        tupleExpr->set_result( Tuples::makeTupleType( tupleExpr->get_exprs() ) );
397                        *out++ = tupleExpr;
398                } else if ( actualIt != actualEnd ) {
399                        // both actualType and formalType are atomic (non-tuple) types - if they unify
400                        // then accept actual as an argument, otherwise return false (fail to instantiate argument)
401                        Expression * actual = actualIt->expr;
402                        Type * actualType = actual->get_result();
403                        PRINT(
404                                std::cerr << "formal type is ";
405                                formalType->print( std::cerr );
406                                std::cerr << std::endl << "actual type is ";
407                                actualType->print( std::cerr );
408                                std::cerr << std::endl;
409                        )
410                        if ( ! unify( formalType, actualType, resultEnv, resultNeed, resultHave, openVars, indexer ) ) {
411                                return false;
412                        }
413                        // move the expression from the alternative to the output iterator
414                        *out++ = actual;
415                        actualIt->expr = nullptr;
416                        cost += actualIt->cost;
417                        ++actualIt;
418                } else {
419                        // End of actuals - Handle default values
420                        if ( SingleInit *si = dynamic_cast<SingleInit *>( defaultValue )) {
421                                // so far, only constant expressions are accepted as default values
422                                if ( ConstantExpr *cnstexpr = dynamic_cast<ConstantExpr *>( si->get_value()) ) {
423                                        if ( Constant *cnst = dynamic_cast<Constant *>( cnstexpr->get_constant() ) ) {
424                                                if ( unify( formalType, cnst->get_type(), resultEnv, resultNeed, resultHave, openVars, indexer ) ) {
425                                                        // xxx - Don't know if this is right
426                                                        *out++ = cnstexpr->clone();
427                                                        return true;
428                                                } // if
429                                        } // if
430                                } // if
431                        } // if
432                        return false;
433                } // if
434                return true;
435        }
436
437        bool AlternativeFinder::instantiateFunction( std::list< DeclarationWithType* >& formals, const AltList &actuals, bool isVarArgs, OpenVarSet& openVars, TypeEnvironment &resultEnv, AssertionSet &resultNeed, AssertionSet &resultHave, AltList & out ) {
438                simpleCombineEnvironments( actuals.begin(), actuals.end(), resultEnv );
439                // make sure we don't widen any existing bindings
440                for ( TypeEnvironment::iterator i = resultEnv.begin(); i != resultEnv.end(); ++i ) {
441                        i->allowWidening = false;
442                }
443                resultEnv.extractOpenVars( openVars );
444
445                // flatten actuals so that each actual has an atomic (non-tuple) type
446                AltList exploded;
447                Tuples::explode( actuals, indexer, back_inserter( exploded ) );
448
449                AltList::iterator actualExpr = exploded.begin();
450                AltList::iterator actualEnd = exploded.end();
451                for ( DeclarationWithType * formal : formals ) {
452                        // match flattened actuals with formal parameters - actuals will be grouped to match
453                        // with formals as appropriate
454                        Cost cost;
455                        std::list< Expression * > newExprs;
456                        ObjectDecl * obj = safe_dynamic_cast< ObjectDecl * >( formal );
457                        if ( ! instantiateArgument( obj->get_type(), obj->get_init(), actualExpr, actualEnd, openVars, resultEnv, resultNeed, resultHave, indexer, cost, back_inserter( newExprs ) ) ) {
458                                deleteAll( newExprs );
459                                return false;
460                        }
461                        // success - produce argument as a new alternative
462                        assert( newExprs.size() == 1 );
463                        out.push_back( Alternative( newExprs.front(), resultEnv, cost ) );
464                }
465                if ( actualExpr != actualEnd ) {
466                        // there are still actuals remaining, but we've run out of formal parameters to match against
467                        // this is okay only if the function is variadic
468                        if ( ! isVarArgs ) {
469                                return false;
470                        }
471                        out.splice( out.end(), exploded, actualExpr, actualEnd );
472                }
473                return true;
474        }
475
476        // /// Map of declaration uniqueIds (intended to be the assertions in an AssertionSet) to their parents and the number of times they've been included
477        //typedef std::unordered_map< UniqueId, std::unordered_map< UniqueId, unsigned > > AssertionParentSet;
478
479        static const int recursionLimit = /*10*/ 4;  ///< Limit to depth of recursion satisfaction
480        //static const unsigned recursionParentLimit = 1;  ///< Limit to the number of times an assertion can recursively use itself
481
482        void addToIndexer( AssertionSet &assertSet, SymTab::Indexer &indexer ) {
483                for ( AssertionSet::iterator i = assertSet.begin(); i != assertSet.end(); ++i ) {
484                        if ( i->second == true ) {
485                                i->first->accept( indexer );
486                        }
487                }
488        }
489
490        template< typename ForwardIterator, typename OutputIterator >
491        void inferRecursive( ForwardIterator begin, ForwardIterator end, const Alternative &newAlt, OpenVarSet &openVars, const SymTab::Indexer &decls, const AssertionSet &newNeed, /*const AssertionParentSet &needParents,*/
492                                                 int level, const SymTab::Indexer &indexer, OutputIterator out ) {
493                if ( begin == end ) {
494                        if ( newNeed.empty() ) {
495                                *out++ = newAlt;
496                                return;
497                        } else if ( level >= recursionLimit ) {
498                                throw SemanticError( "Too many recursive assertions" );
499                        } else {
500                                AssertionSet newerNeed;
501                                PRINT(
502                                        std::cerr << "recursing with new set:" << std::endl;
503                                        printAssertionSet( newNeed, std::cerr, 8 );
504                                )
505                                inferRecursive( newNeed.begin(), newNeed.end(), newAlt, openVars, decls, newerNeed, /*needParents,*/ level+1, indexer, out );
506                                return;
507                        }
508                }
509
510                ForwardIterator cur = begin++;
511                if ( ! cur->second ) {
512                        inferRecursive( begin, end, newAlt, openVars, decls, newNeed, /*needParents,*/ level, indexer, out );
513                        return; // xxx - should this continue? previously this wasn't here, and it looks like it should be
514                }
515                DeclarationWithType *curDecl = cur->first;
516
517                PRINT(
518                        std::cerr << "inferRecursive: assertion is ";
519                        curDecl->print( std::cerr );
520                        std::cerr << std::endl;
521                )
522                std::list< DeclarationWithType* > candidates;
523                decls.lookupId( curDecl->get_name(), candidates );
524///   if ( candidates.empty() ) { std::cerr << "no candidates!" << std::endl; }
525                for ( std::list< DeclarationWithType* >::const_iterator candidate = candidates.begin(); candidate != candidates.end(); ++candidate ) {
526                        PRINT(
527                                std::cerr << "inferRecursive: candidate is ";
528                                (*candidate)->print( std::cerr );
529                                std::cerr << std::endl;
530                        )
531
532                        AssertionSet newHave, newerNeed( newNeed );
533                        TypeEnvironment newEnv( newAlt.env );
534                        OpenVarSet newOpenVars( openVars );
535                        Type *adjType = (*candidate)->get_type()->clone();
536                        adjustExprType( adjType, newEnv, indexer );
537                        adjType->accept( global_renamer );
538                        PRINT(
539                                std::cerr << "unifying ";
540                                curDecl->get_type()->print( std::cerr );
541                                std::cerr << " with ";
542                                adjType->print( std::cerr );
543                                std::cerr << std::endl;
544                        )
545                        if ( unify( curDecl->get_type(), adjType, newEnv, newerNeed, newHave, newOpenVars, indexer ) ) {
546                                PRINT(
547                                        std::cerr << "success!" << std::endl;
548                                )
549                                SymTab::Indexer newDecls( decls );
550                                addToIndexer( newHave, newDecls );
551                                Alternative newerAlt( newAlt );
552                                newerAlt.env = newEnv;
553                                assert( (*candidate)->get_uniqueId() );
554                                DeclarationWithType *candDecl = static_cast< DeclarationWithType* >( Declaration::declFromId( (*candidate)->get_uniqueId() ) );
555                                //AssertionParentSet newNeedParents( needParents );
556                                // skip repeatingly-self-recursive assertion satisfaction
557                                // DOESN'T WORK: grandchild nodes conflict with their cousins
558                                //if ( newNeedParents[ curDecl->get_uniqueId() ][ candDecl->get_uniqueId() ]++ > recursionParentLimit ) continue;
559                                Expression *varExpr = new VariableExpr( candDecl );
560                                delete varExpr->get_result();
561                                varExpr->set_result( adjType->clone() );
562                                PRINT(
563                                        std::cerr << "satisfying assertion " << curDecl->get_uniqueId() << " ";
564                                        curDecl->print( std::cerr );
565                                        std::cerr << " with declaration " << (*candidate)->get_uniqueId() << " ";
566                                        (*candidate)->print( std::cerr );
567                                        std::cerr << std::endl;
568                                )
569                                ApplicationExpr *appExpr = static_cast< ApplicationExpr* >( newerAlt.expr );
570                                // XXX: this is a memory leak, but adjType can't be deleted because it might contain assertions
571                                appExpr->get_inferParams()[ curDecl->get_uniqueId() ] = ParamEntry( (*candidate)->get_uniqueId(), adjType->clone(), curDecl->get_type()->clone(), varExpr );
572                                inferRecursive( begin, end, newerAlt, newOpenVars, newDecls, newerNeed, /*newNeedParents,*/ level, indexer, out );
573                        } else {
574                                delete adjType;
575                        }
576                }
577        }
578
579        template< typename OutputIterator >
580        void AlternativeFinder::inferParameters( const AssertionSet &need, AssertionSet &have, const Alternative &newAlt, OpenVarSet &openVars, OutputIterator out ) {
581//      PRINT(
582//          std::cerr << "inferParameters: assertions needed are" << std::endl;
583//          printAll( need, std::cerr, 8 );
584//          )
585                SymTab::Indexer decls( indexer );
586                PRINT(
587                        std::cerr << "============= original indexer" << std::endl;
588                        indexer.print( std::cerr );
589                        std::cerr << "============= new indexer" << std::endl;
590                        decls.print( std::cerr );
591                )
592                addToIndexer( have, decls );
593                AssertionSet newNeed;
594                //AssertionParentSet needParents;
595                inferRecursive( need.begin(), need.end(), newAlt, openVars, decls, newNeed, /*needParents,*/ 0, indexer, out );
596//      PRINT(
597//          std::cerr << "declaration 14 is ";
598//          Declaration::declFromId
599//          *out++ = newAlt;
600//          )
601        }
602
603        template< typename OutputIterator >
604        void AlternativeFinder::makeFunctionAlternatives( const Alternative &func, FunctionType *funcType, const AltList &actualAlt, OutputIterator out ) {
605                OpenVarSet openVars;
606                AssertionSet resultNeed, resultHave;
607                TypeEnvironment resultEnv;
608                makeUnifiableVars( funcType, openVars, resultNeed );
609                AltList instantiatedActuals; // filled by instantiate function
610                if ( instantiateFunction( funcType->get_parameters(), actualAlt, funcType->get_isVarArgs(), openVars, resultEnv, resultNeed, resultHave, instantiatedActuals ) ) {
611                        ApplicationExpr *appExpr = new ApplicationExpr( func.expr->clone() );
612                        Alternative newAlt( appExpr, resultEnv, sumCost( instantiatedActuals ) );
613                        makeExprList( instantiatedActuals, appExpr->get_args() );
614                        PRINT(
615                                std::cerr << "need assertions:" << std::endl;
616                                printAssertionSet( resultNeed, std::cerr, 8 );
617                        )
618                        inferParameters( resultNeed, resultHave, newAlt, openVars, out );
619                }
620        }
621
622        void AlternativeFinder::visit( UntypedExpr *untypedExpr ) {
623                bool doneInit = false;
624                AlternativeFinder funcOpFinder( indexer, env );
625
626                AlternativeFinder funcFinder( indexer, env );
627
628                {
629                        std::string fname = InitTweak::getFunctionName( untypedExpr );
630                        if ( fname == "&&" ) {
631                                VoidType v = Type::Qualifiers();                // resolve to type void *
632                                PointerType pt( Type::Qualifiers(), v.clone() );
633                                UntypedExpr *vexpr = untypedExpr->clone();
634                                vexpr->set_result( pt.clone() );
635                                alternatives.push_back( Alternative( vexpr, env, Cost()) );
636                                return;
637                        }
638                }
639
640                funcFinder.findWithAdjustment( untypedExpr->get_function() );
641                std::list< AlternativeFinder > argAlternatives;
642                findSubExprs( untypedExpr->begin_args(), untypedExpr->end_args(), back_inserter( argAlternatives ) );
643
644                std::list< AltList > possibilities;
645                combos( argAlternatives.begin(), argAlternatives.end(), back_inserter( possibilities ) );
646
647                // take care of possible tuple assignments
648                // if not tuple assignment, assignment is taken care of as a normal function call
649                Tuples::handleTupleAssignment( *this, untypedExpr, possibilities );
650
651                AltList candidates;
652                SemanticError errors;
653                for ( AltList::const_iterator func = funcFinder.alternatives.begin(); func != funcFinder.alternatives.end(); ++func ) {
654                        try {
655                                PRINT(
656                                        std::cerr << "working on alternative: " << std::endl;
657                                        func->print( std::cerr, 8 );
658                                )
659                                // check if the type is pointer to function
660                                PointerType *pointer;
661                                if ( ( pointer = dynamic_cast< PointerType* >( func->expr->get_result() ) ) ) {
662                                        if ( FunctionType *function = dynamic_cast< FunctionType* >( pointer->get_base() ) ) {
663                                                for ( std::list< AltList >::iterator actualAlt = possibilities.begin(); actualAlt != possibilities.end(); ++actualAlt ) {
664                                                        // XXX
665                                                        //Designators::check_alternative( function, *actualAlt );
666                                                        makeFunctionAlternatives( *func, function, *actualAlt, std::back_inserter( candidates ) );
667                                                }
668                                        } else if ( TypeInstType *typeInst = dynamic_cast< TypeInstType* >( pointer->get_base() ) ) {
669                                                EqvClass eqvClass;
670                                                if ( func->env.lookup( typeInst->get_name(), eqvClass ) && eqvClass.type ) {
671                                                        if ( FunctionType *function = dynamic_cast< FunctionType* >( eqvClass.type ) ) {
672                                                                for ( std::list< AltList >::iterator actualAlt = possibilities.begin(); actualAlt != possibilities.end(); ++actualAlt ) {
673                                                                        makeFunctionAlternatives( *func, function, *actualAlt, std::back_inserter( candidates ) );
674                                                                } // for
675                                                        } // if
676                                                } // if
677                                        } // if
678                                } else {
679                                        // seek a function operator that's compatible
680                                        if ( ! doneInit ) {
681                                                doneInit = true;
682                                                NameExpr *opExpr = new NameExpr( "?()" );
683                                                try {
684                                                        funcOpFinder.findWithAdjustment( opExpr );
685                                                } catch( SemanticError &e ) {
686                                                        // it's ok if there aren't any defined function ops
687                                                }
688                                                PRINT(
689                                                        std::cerr << "known function ops:" << std::endl;
690                                                        printAlts( funcOpFinder.alternatives, std::cerr, 8 );
691                                                )
692                                        }
693
694                                        for ( AltList::const_iterator funcOp = funcOpFinder.alternatives.begin(); funcOp != funcOpFinder.alternatives.end(); ++funcOp ) {
695                                                // check if the type is pointer to function
696                                                PointerType *pointer;
697                                                if ( ( pointer = dynamic_cast< PointerType* >( funcOp->expr->get_result() ) ) ) {
698                                                        if ( FunctionType *function = dynamic_cast< FunctionType* >( pointer->get_base() ) ) {
699                                                                for ( std::list< AltList >::iterator actualAlt = possibilities.begin(); actualAlt != possibilities.end(); ++actualAlt ) {
700                                                                        AltList currentAlt;
701                                                                        currentAlt.push_back( *func );
702                                                                        currentAlt.insert( currentAlt.end(), actualAlt->begin(), actualAlt->end() );
703                                                                        makeFunctionAlternatives( *funcOp, function, currentAlt, std::back_inserter( candidates ) );
704                                                                } // for
705                                                        } // if
706                                                } // if
707                                        } // for
708                                } // if
709                        } catch ( SemanticError &e ) {
710                                errors.append( e );
711                        }
712                } // for
713
714                // Implement SFINAE; resolution errors are only errors if there aren't any non-erroneous resolutions
715                if ( candidates.empty() && ! errors.isEmpty() ) { throw errors; }
716
717                for ( AltList::iterator withFunc = candidates.begin(); withFunc != candidates.end(); ++withFunc ) {
718                        Cost cvtCost = computeConversionCost( *withFunc, indexer );
719
720                        PRINT(
721                                ApplicationExpr *appExpr = safe_dynamic_cast< ApplicationExpr* >( withFunc->expr );
722                                PointerType *pointer = safe_dynamic_cast< PointerType* >( appExpr->get_function()->get_result() );
723                                FunctionType *function = safe_dynamic_cast< FunctionType* >( pointer->get_base() );
724                                std::cerr << "Case +++++++++++++" << std::endl;
725                                std::cerr << "formals are:" << std::endl;
726                                printAll( function->get_parameters(), std::cerr, 8 );
727                                std::cerr << "actuals are:" << std::endl;
728                                printAll( appExpr->get_args(), std::cerr, 8 );
729                                std::cerr << "bindings are:" << std::endl;
730                                withFunc->env.print( std::cerr, 8 );
731                                std::cerr << "cost of conversion is:" << cvtCost << std::endl;
732                        )
733                        if ( cvtCost != Cost::infinity ) {
734                                withFunc->cvtCost = cvtCost;
735                                alternatives.push_back( *withFunc );
736                        } // if
737                } // for
738                candidates.clear();
739                candidates.splice( candidates.end(), alternatives );
740
741                findMinCost( candidates.begin(), candidates.end(), std::back_inserter( alternatives ) );
742        }
743
744        bool isLvalue( Expression *expr ) {
745                // xxx - recurse into tuples?
746                return expr->has_result() && expr->get_result()->get_isLvalue();
747        }
748
749        void AlternativeFinder::visit( AddressExpr *addressExpr ) {
750                AlternativeFinder finder( indexer, env );
751                finder.find( addressExpr->get_arg() );
752                for ( std::list< Alternative >::iterator i = finder.alternatives.begin(); i != finder.alternatives.end(); ++i ) {
753                        if ( isLvalue( i->expr ) ) {
754                                alternatives.push_back( Alternative( new AddressExpr( i->expr->clone() ), i->env, i->cost ) );
755                        } // if
756                } // for
757        }
758
759        void AlternativeFinder::visit( CastExpr *castExpr ) {
760                Type *& toType = castExpr->get_result();
761                assert( toType );
762                toType = resolveTypeof( toType, indexer );
763                SymTab::validateType( toType, &indexer );
764                adjustExprType( toType, env, indexer );
765
766                AlternativeFinder finder( indexer, env );
767                finder.targetType = toType;
768                finder.findWithAdjustment( castExpr->get_arg() );
769
770                AltList candidates;
771                for ( std::list< Alternative >::iterator i = finder.alternatives.begin(); i != finder.alternatives.end(); ++i ) {
772                        AssertionSet needAssertions, haveAssertions;
773                        OpenVarSet openVars;
774
775                        // It's possible that a cast can throw away some values in a multiply-valued expression.  (An example is a
776                        // cast-to-void, which casts from one value to zero.)  Figure out the prefix of the subexpression results
777                        // that are cast directly.  The candidate is invalid if it has fewer results than there are types to cast
778                        // to.
779                        int discardedValues = (*i).expr->get_result()->size() - castExpr->get_result()->size();
780                        if ( discardedValues < 0 ) continue;
781                        // xxx - may need to go into tuple types and extract relevant types and use unifyList. Note that currently, this does not
782                        // allow casting a tuple to an atomic type (e.g. (int)([1, 2, 3]))
783                        // unification run for side-effects
784                        unify( castExpr->get_result(), (*i).expr->get_result(), i->env, needAssertions, haveAssertions, openVars, indexer );
785                        Cost thisCost = castCost( (*i).expr->get_result(), castExpr->get_result(), indexer, i->env );
786                        if ( thisCost != Cost::infinity ) {
787                                // count one safe conversion for each value that is thrown away
788                                thisCost += Cost( 0, 0, discardedValues );
789
790                                Expression * argExpr = i->expr->clone();
791                                if ( argExpr->get_result()->size() > 1 && ! castExpr->get_result()->isVoid() ) {
792                                        // Argument expression is a tuple and the target type is not void. Cast each member of the tuple
793                                        // to its corresponding target type, producing the tuple of those cast expressions. If there are
794                                        // more components of the tuple than components in the target type, then excess components do not
795                                        // come out in the result expression (but UniqueExprs ensure that side effects will still be done).
796                                        if ( Tuples::maybeImpure( argExpr ) && ! dynamic_cast< UniqueExpr * >( argExpr ) ) {
797                                                // expressions which may contain side effects require a single unique instance of the expression.
798                                                argExpr = new UniqueExpr( argExpr );
799                                        }
800                                        std::list< Expression * > componentExprs;
801                                        for ( unsigned int i = 0; i < castExpr->get_result()->size(); i++ ) {
802                                                // cast each component
803                                                TupleIndexExpr * idx = new TupleIndexExpr( argExpr->clone(), i );
804                                                componentExprs.push_back( new CastExpr( idx, castExpr->get_result()->getComponent( i )->clone() ) );
805                                        }
806                                        delete argExpr;
807                                        assert( componentExprs.size() > 0 );
808                                        // produce the tuple of casts
809                                        candidates.push_back( Alternative( new TupleExpr( componentExprs ), i->env, i->cost, thisCost ) );
810                                } else {
811                                        // handle normally
812                                        candidates.push_back( Alternative( new CastExpr( argExpr->clone(), toType->clone() ), i->env, i->cost, thisCost ) );
813                                }
814                        } // if
815                } // for
816
817                // findMinCost selects the alternatives with the lowest "cost" members, but has the side effect of copying the
818                // cvtCost member to the cost member (since the old cost is now irrelevant).  Thus, calling findMinCost twice
819                // selects first based on argument cost, then on conversion cost.
820                AltList minArgCost;
821                findMinCost( candidates.begin(), candidates.end(), std::back_inserter( minArgCost ) );
822                findMinCost( minArgCost.begin(), minArgCost.end(), std::back_inserter( alternatives ) );
823        }
824
825        void AlternativeFinder::visit( UntypedMemberExpr *memberExpr ) {
826                AlternativeFinder funcFinder( indexer, env );
827                funcFinder.findWithAdjustment( memberExpr->get_aggregate() );
828                for ( AltList::const_iterator agg = funcFinder.alternatives.begin(); agg != funcFinder.alternatives.end(); ++agg ) {
829                        if ( StructInstType *structInst = dynamic_cast< StructInstType* >( agg->expr->get_result() ) ) {
830                                addAggMembers( structInst, agg->expr, agg->cost, agg->env, memberExpr->get_member() );
831                        } else if ( UnionInstType *unionInst = dynamic_cast< UnionInstType* >( agg->expr->get_result() ) ) {
832                                addAggMembers( unionInst, agg->expr, agg->cost, agg->env, memberExpr->get_member() );
833                        } else if ( TupleType * tupleType = dynamic_cast< TupleType * >( agg->expr->get_result() ) ) {
834                                addTupleMembers( tupleType, agg->expr, agg->cost, agg->env, memberExpr->get_member() );
835                        } // if
836                } // for
837        }
838
839        void AlternativeFinder::visit( MemberExpr *memberExpr ) {
840                alternatives.push_back( Alternative( memberExpr->clone(), env, Cost::zero ) );
841        }
842
843        void AlternativeFinder::visit( NameExpr *nameExpr ) {
844                std::list< DeclarationWithType* > declList;
845                indexer.lookupId( nameExpr->get_name(), declList );
846                PRINT( std::cerr << "nameExpr is " << nameExpr->get_name() << std::endl; )
847                for ( std::list< DeclarationWithType* >::iterator i = declList.begin(); i != declList.end(); ++i ) {
848                        VariableExpr newExpr( *i, nameExpr->get_argName() );
849                        alternatives.push_back( Alternative( newExpr.clone(), env, Cost() ) );
850                        PRINT(
851                                std::cerr << "decl is ";
852                                (*i)->print( std::cerr );
853                                std::cerr << std::endl;
854                                std::cerr << "newExpr is ";
855                                newExpr.print( std::cerr );
856                                std::cerr << std::endl;
857                        )
858                        renameTypes( alternatives.back().expr );
859                        if ( StructInstType *structInst = dynamic_cast< StructInstType* >( (*i)->get_type() ) ) {
860                                NameExpr nameExpr( "" );
861                                addAggMembers( structInst, &newExpr, Cost( 0, 0, 1 ), env, &nameExpr );
862                        } else if ( UnionInstType *unionInst = dynamic_cast< UnionInstType* >( (*i)->get_type() ) ) {
863                                NameExpr nameExpr( "" );
864                                addAggMembers( unionInst, &newExpr, Cost( 0, 0, 1 ), env, &nameExpr );
865                        } // if
866                } // for
867        }
868
869        void AlternativeFinder::visit( VariableExpr *variableExpr ) {
870                // not sufficient to clone here, because variable's type may have changed
871                // since the VariableExpr was originally created.
872                alternatives.push_back( Alternative( new VariableExpr( variableExpr->get_var() ), env, Cost::zero ) );
873        }
874
875        void AlternativeFinder::visit( ConstantExpr *constantExpr ) {
876                alternatives.push_back( Alternative( constantExpr->clone(), env, Cost::zero ) );
877        }
878
879        void AlternativeFinder::visit( SizeofExpr *sizeofExpr ) {
880                if ( sizeofExpr->get_isType() ) {
881                        // xxx - resolveTypeof?
882                        alternatives.push_back( Alternative( sizeofExpr->clone(), env, Cost::zero ) );
883                } else {
884                        // find all alternatives for the argument to sizeof
885                        AlternativeFinder finder( indexer, env );
886                        finder.find( sizeofExpr->get_expr() );
887                        // find the lowest cost alternative among the alternatives, otherwise ambiguous
888                        AltList winners;
889                        findMinCost( finder.alternatives.begin(), finder.alternatives.end(), back_inserter( winners ) );
890                        if ( winners.size() != 1 ) {
891                                throw SemanticError( "Ambiguous expression in sizeof operand: ", sizeofExpr->get_expr() );
892                        } // if
893                        // return the lowest cost alternative for the argument
894                        Alternative &choice = winners.front();
895                        alternatives.push_back( Alternative( new SizeofExpr( choice.expr->clone() ), choice.env, Cost::zero ) );
896                } // if
897        }
898
899        void AlternativeFinder::visit( AlignofExpr *alignofExpr ) {
900                if ( alignofExpr->get_isType() ) {
901                        // xxx - resolveTypeof?
902                        alternatives.push_back( Alternative( alignofExpr->clone(), env, Cost::zero ) );
903                } else {
904                        // find all alternatives for the argument to sizeof
905                        AlternativeFinder finder( indexer, env );
906                        finder.find( alignofExpr->get_expr() );
907                        // find the lowest cost alternative among the alternatives, otherwise ambiguous
908                        AltList winners;
909                        findMinCost( finder.alternatives.begin(), finder.alternatives.end(), back_inserter( winners ) );
910                        if ( winners.size() != 1 ) {
911                                throw SemanticError( "Ambiguous expression in alignof operand: ", alignofExpr->get_expr() );
912                        } // if
913                        // return the lowest cost alternative for the argument
914                        Alternative &choice = winners.front();
915                        alternatives.push_back( Alternative( new AlignofExpr( choice.expr->clone() ), choice.env, Cost::zero ) );
916                } // if
917        }
918
919        template< typename StructOrUnionType >
920        void AlternativeFinder::addOffsetof( StructOrUnionType *aggInst, const std::string &name ) {
921                std::list< Declaration* > members;
922                aggInst->lookup( name, members );
923                for ( std::list< Declaration* >::const_iterator i = members.begin(); i != members.end(); ++i ) {
924                        if ( DeclarationWithType *dwt = dynamic_cast< DeclarationWithType* >( *i ) ) {
925                                alternatives.push_back( Alternative( new OffsetofExpr( aggInst->clone(), dwt ), env, Cost::zero ) );
926                                renameTypes( alternatives.back().expr );
927                        } else {
928                                assert( false );
929                        }
930                }
931        }
932
933        void AlternativeFinder::visit( UntypedOffsetofExpr *offsetofExpr ) {
934                AlternativeFinder funcFinder( indexer, env );
935                // xxx - resolveTypeof?
936                if ( StructInstType *structInst = dynamic_cast< StructInstType* >( offsetofExpr->get_type() ) ) {
937                        addOffsetof( structInst, offsetofExpr->get_member() );
938                } else if ( UnionInstType *unionInst = dynamic_cast< UnionInstType* >( offsetofExpr->get_type() ) ) {
939                        addOffsetof( unionInst, offsetofExpr->get_member() );
940                }
941        }
942
943        void AlternativeFinder::visit( OffsetofExpr *offsetofExpr ) {
944                alternatives.push_back( Alternative( offsetofExpr->clone(), env, Cost::zero ) );
945        }
946
947        void AlternativeFinder::visit( OffsetPackExpr *offsetPackExpr ) {
948                alternatives.push_back( Alternative( offsetPackExpr->clone(), env, Cost::zero ) );
949        }
950
951        void AlternativeFinder::resolveAttr( DeclarationWithType *funcDecl, FunctionType *function, Type *argType, const TypeEnvironment &env ) {
952                // assume no polymorphism
953                // assume no implicit conversions
954                assert( function->get_parameters().size() == 1 );
955                PRINT(
956                        std::cerr << "resolvAttr: funcDecl is ";
957                        funcDecl->print( std::cerr );
958                        std::cerr << " argType is ";
959                        argType->print( std::cerr );
960                        std::cerr << std::endl;
961                )
962                if ( typesCompatibleIgnoreQualifiers( argType, function->get_parameters().front()->get_type(), indexer, env ) ) {
963                        alternatives.push_back( Alternative( new AttrExpr( new VariableExpr( funcDecl ), argType->clone() ), env, Cost::zero ) );
964                        for ( std::list< DeclarationWithType* >::iterator i = function->get_returnVals().begin(); i != function->get_returnVals().end(); ++i ) {
965                                alternatives.back().expr->set_result( (*i)->get_type()->clone() );
966                        } // for
967                } // if
968        }
969
970        void AlternativeFinder::visit( AttrExpr *attrExpr ) {
971                // assume no 'pointer-to-attribute'
972                NameExpr *nameExpr = dynamic_cast< NameExpr* >( attrExpr->get_attr() );
973                assert( nameExpr );
974                std::list< DeclarationWithType* > attrList;
975                indexer.lookupId( nameExpr->get_name(), attrList );
976                if ( attrExpr->get_isType() || attrExpr->get_expr() ) {
977                        for ( std::list< DeclarationWithType* >::iterator i = attrList.begin(); i != attrList.end(); ++i ) {
978                                // check if the type is function
979                                if ( FunctionType *function = dynamic_cast< FunctionType* >( (*i)->get_type() ) ) {
980                                        // assume exactly one parameter
981                                        if ( function->get_parameters().size() == 1 ) {
982                                                if ( attrExpr->get_isType() ) {
983                                                        resolveAttr( *i, function, attrExpr->get_type(), env );
984                                                } else {
985                                                        AlternativeFinder finder( indexer, env );
986                                                        finder.find( attrExpr->get_expr() );
987                                                        for ( AltList::iterator choice = finder.alternatives.begin(); choice != finder.alternatives.end(); ++choice ) {
988                                                                if ( choice->expr->get_result()->size() == 1 ) {
989                                                                        resolveAttr(*i, function, choice->expr->get_result(), choice->env );
990                                                                } // fi
991                                                        } // for
992                                                } // if
993                                        } // if
994                                } // if
995                        } // for
996                } else {
997                        for ( std::list< DeclarationWithType* >::iterator i = attrList.begin(); i != attrList.end(); ++i ) {
998                                VariableExpr newExpr( *i );
999                                alternatives.push_back( Alternative( newExpr.clone(), env, Cost() ) );
1000                                renameTypes( alternatives.back().expr );
1001                        } // for
1002                } // if
1003        }
1004
1005        void AlternativeFinder::visit( LogicalExpr *logicalExpr ) {
1006                AlternativeFinder firstFinder( indexer, env );
1007                firstFinder.findWithAdjustment( logicalExpr->get_arg1() );
1008                for ( AltList::const_iterator first = firstFinder.alternatives.begin(); first != firstFinder.alternatives.end(); ++first ) {
1009                        AlternativeFinder secondFinder( indexer, first->env );
1010                        secondFinder.findWithAdjustment( logicalExpr->get_arg2() );
1011                        for ( AltList::const_iterator second = secondFinder.alternatives.begin(); second != secondFinder.alternatives.end(); ++second ) {
1012                                LogicalExpr *newExpr = new LogicalExpr( first->expr->clone(), second->expr->clone(), logicalExpr->get_isAnd() );
1013                                alternatives.push_back( Alternative( newExpr, second->env, first->cost + second->cost ) );
1014                        }
1015                }
1016        }
1017
1018        void AlternativeFinder::visit( ConditionalExpr *conditionalExpr ) {
1019                AlternativeFinder firstFinder( indexer, env );
1020                firstFinder.findWithAdjustment( conditionalExpr->get_arg1() );
1021                for ( AltList::const_iterator first = firstFinder.alternatives.begin(); first != firstFinder.alternatives.end(); ++first ) {
1022                        AlternativeFinder secondFinder( indexer, first->env );
1023                        secondFinder.findWithAdjustment( conditionalExpr->get_arg2() );
1024                        for ( AltList::const_iterator second = secondFinder.alternatives.begin(); second != secondFinder.alternatives.end(); ++second ) {
1025                                AlternativeFinder thirdFinder( indexer, second->env );
1026                                thirdFinder.findWithAdjustment( conditionalExpr->get_arg3() );
1027                                for ( AltList::const_iterator third = thirdFinder.alternatives.begin(); third != thirdFinder.alternatives.end(); ++third ) {
1028                                        OpenVarSet openVars;
1029                                        AssertionSet needAssertions, haveAssertions;
1030                                        Alternative newAlt( 0, third->env, first->cost + second->cost + third->cost );
1031                                        Type* commonType = nullptr;
1032                                        if ( unify( second->expr->get_result(), third->expr->get_result(), newAlt.env, needAssertions, haveAssertions, openVars, indexer, commonType ) ) {
1033                                                ConditionalExpr *newExpr = new ConditionalExpr( first->expr->clone(), second->expr->clone(), third->expr->clone() );
1034                                                newExpr->set_result( commonType ? commonType : second->expr->get_result()->clone() );
1035                                                newAlt.expr = newExpr;
1036                                                inferParameters( needAssertions, haveAssertions, newAlt, openVars, back_inserter( alternatives ) );
1037                                        } // if
1038                                } // for
1039                        } // for
1040                } // for
1041        }
1042
1043        void AlternativeFinder::visit( CommaExpr *commaExpr ) {
1044                TypeEnvironment newEnv( env );
1045                Expression *newFirstArg = resolveInVoidContext( commaExpr->get_arg1(), indexer, newEnv );
1046                AlternativeFinder secondFinder( indexer, newEnv );
1047                secondFinder.findWithAdjustment( commaExpr->get_arg2() );
1048                for ( AltList::const_iterator alt = secondFinder.alternatives.begin(); alt != secondFinder.alternatives.end(); ++alt ) {
1049                        alternatives.push_back( Alternative( new CommaExpr( newFirstArg->clone(), alt->expr->clone() ), alt->env, alt->cost ) );
1050                } // for
1051                delete newFirstArg;
1052        }
1053
1054        void AlternativeFinder::visit( TupleExpr *tupleExpr ) {
1055                std::list< AlternativeFinder > subExprAlternatives;
1056                findSubExprs( tupleExpr->get_exprs().begin(), tupleExpr->get_exprs().end(), back_inserter( subExprAlternatives ) );
1057                std::list< AltList > possibilities;
1058                combos( subExprAlternatives.begin(), subExprAlternatives.end(), back_inserter( possibilities ) );
1059                for ( std::list< AltList >::const_iterator i = possibilities.begin(); i != possibilities.end(); ++i ) {
1060                        TupleExpr *newExpr = new TupleExpr;
1061                        makeExprList( *i, newExpr->get_exprs() );
1062                        newExpr->set_result( Tuples::makeTupleType( newExpr->get_exprs() ) );
1063
1064                        TypeEnvironment compositeEnv;
1065                        simpleCombineEnvironments( i->begin(), i->end(), compositeEnv );
1066                        alternatives.push_back( Alternative( newExpr, compositeEnv, sumCost( *i ) ) );
1067                } // for
1068        }
1069
1070        void AlternativeFinder::visit( ImplicitCopyCtorExpr * impCpCtorExpr ) {
1071                alternatives.push_back( Alternative( impCpCtorExpr->clone(), env, Cost::zero ) );
1072        }
1073
1074        void AlternativeFinder::visit( ConstructorExpr * ctorExpr ) {
1075                AlternativeFinder finder( indexer, env );
1076                // don't prune here, since it's guaranteed all alternatives will have the same type
1077                // (giving the alternatives different types is half of the point of ConstructorExpr nodes)
1078                finder.findWithAdjustment( ctorExpr->get_callExpr(), false );
1079                for ( Alternative & alt : finder.alternatives ) {
1080                        alternatives.push_back( Alternative( new ConstructorExpr( alt.expr->clone() ), alt.env, alt.cost ) );
1081                }
1082        }
1083
1084        void AlternativeFinder::visit( TupleIndexExpr *tupleExpr ) {
1085                alternatives.push_back( Alternative( tupleExpr->clone(), env, Cost::zero ) );
1086        }
1087
1088        void AlternativeFinder::visit( TupleAssignExpr *tupleAssignExpr ) {
1089                alternatives.push_back( Alternative( tupleAssignExpr->clone(), env, Cost::zero ) );
1090        }
1091
1092        void AlternativeFinder::visit( UniqueExpr *unqExpr ) {
1093                AlternativeFinder finder( indexer, env );
1094                finder.findWithAdjustment( unqExpr->get_expr() );
1095                for ( Alternative & alt : finder.alternatives ) {
1096                        // ensure that the id is passed on to the UniqueExpr alternative so that the expressions are "linked"
1097                        UniqueExpr * newUnqExpr = new UniqueExpr( alt.expr->clone(), unqExpr->get_id() );
1098                        alternatives.push_back( Alternative( newUnqExpr, alt.env, alt.cost ) );
1099                }
1100        }
1101
1102} // namespace ResolvExpr
1103
1104// Local Variables: //
1105// tab-width: 4 //
1106// mode: c++ //
1107// compile-command: "make install" //
1108// End: //
Note: See TracBrowser for help on using the repository browser.