Ignore:
File:
1 edited

Legend:

Unmodified
Added
Removed
  • src/ResolvExpr/CandidateFinder.cpp

    r0536c03 r361bf01  
    212212                // mark type variable and specialization cost of forall clause
    213213                convCost.incVar( function->forall.size() );
    214                 convCost.decSpec( function->assertions.size() );
     214                for ( const ast::TypeDecl * td : function->forall ) {
     215                        convCost.decSpec( td->assertions.size() );
     216                }
    215217
    216218                return convCost;
     
    221223                ast::AssertionSet & need
    222224        ) {
    223                 for ( auto & tyvar : type->forall ) {
    224                         unifiableVars[ *tyvar ] = ast::TypeDecl::Data{ tyvar->base };
    225                 }
    226                 for ( auto & assn : type->assertions ) {
    227                         need[ assn ].isUsed = true;
     225                for ( const ast::TypeDecl * tyvar : type->forall ) {
     226                        unifiableVars[ tyvar->name ] = ast::TypeDecl::Data{ tyvar };
     227                        for ( const ast::DeclWithType * assn : tyvar->assertions ) {
     228                                need[ assn ].isUsed = true;
     229                        }
    228230                }
    229231        }
     
    905907                        // xxx - is it possible that handleTupleAssignment and main finder both produce candidates?
    906908                        // this means there exists ctor/assign functions with a tuple as first parameter.
    907                         ResolvMode mode = {
    908                                 true, // adjust
    909                                 !untypedExpr->func.as<ast::NameExpr>(), // prune if not calling by name
    910                                 selfFinder.candidates.empty() // failfast if other options are not found
    911                         };
    912                         funcFinder.find( untypedExpr->func, mode );
     909                        funcFinder.find( untypedExpr->func, selfFinder.candidates.empty() ? ResolvMode::withAdjustment() : ResolvMode::withoutFailFast() );
    913910                        // short-circuit if no candidates
    914911                        // if ( funcFinder.candidates.empty() ) return;
     
    956953                                                auto inst = dynamic_cast< const ast::TypeInstType * >( funcResult )
    957954                                        ) {
    958                                                 if ( const ast::EqvClass * clz = func->env.lookup( *inst ) ) {
     955                                                if ( const ast::EqvClass * clz = func->env.lookup( inst->name ) ) {
    959956                                                        if ( auto function = clz->bound.as< ast::FunctionType >() ) {
    960957                                                                CandidateRef newFunc{ new Candidate{ *func } };
     
    10801077                        assert( toType );
    10811078                        toType = resolveTypeof( toType, symtab );
    1082                         // toType = SymTab::validateType( castExpr->location, toType, symtab );
     1079                        toType = SymTab::validateType( castExpr->location, toType, symtab );
    10831080                        toType = adjustExprType( toType, tenv, symtab );
    10841081
     
    11651162
    11661163                                        if(auto insttype = dynamic_cast<const ast::TypeInstType*>(expr)) {
    1167                                                 auto td = cand->env.lookup(*insttype);
     1164                                                auto td = cand->env.lookup(insttype->name);
    11681165                                                if(!td) { continue; }
    11691166                                                expr = td->bound.get();
     
    15711568                                // calculate target type
    15721569                                const ast::Type * toType = resolveTypeof( initAlt.type, symtab );
    1573                                 // toType = SymTab::validateType( initExpr->location, toType, symtab );
     1570                                toType = SymTab::validateType( initExpr->location, toType, symtab );
    15741571                                toType = adjustExprType( toType, tenv, symtab );
    15751572                                // The call to find must occur inside this loop, otherwise polymorphic return
Note: See TracChangeset for help on using the changeset viewer.