source: src/ResolvExpr/ResolveAssertions.cc @ aca6a54c

ADTarm-ehast-experimentalenumforall-pointer-decayjacob/cs343-translationnew-ast-unique-exprpthread-emulationqualifiedEnum
Last change on this file since aca6a54c was aca6a54c, checked in by Dmitry Kobets <dkobets@…>, 4 years ago

Increase trait recursion limit

  • Property mode set to 100644
File size: 18.0 KB
RevLine 
[6d6e829]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// ResolveAssertions.cc --
8//
9// Author           : Aaron B. Moss
10// Created On       : Fri Oct 05 13:46:00 2018
[7d01cf44]11// Last Modified By : Andrew Beach
12// Last Modified On : Thu Aug  8 16:47:00 2019
13// Update Count     : 3
[6d6e829]14//
15
16#include "ResolveAssertions.h"
17
[b3bd772]18#include <algorithm>                // for sort
[83ab931]19#include <cassert>                  // for assertf
20#include <list>                     // for list
[b3bd772]21#include <memory>                   // for unique_ptr
[4d2d45f9]22#include <sstream>                  // for ostringstream
23#include <string>                   // for string
[83ab931]24#include <unordered_map>            // for unordered_map, unordered_multimap
25#include <utility>                  // for move
26#include <vector>                   // for vector
27
28#include "Alternative.h"            // for Alternative, AssertionItem, AssertionList
29#include "Common/FilterCombos.h"    // for filterCombos
[4d2d45f9]30#include "Common/Indenter.h"        // for Indenter
[83ab931]31#include "Common/utility.h"         // for sort_mins
[d76c588]32#include "GenPoly/GenPoly.h"        // for getFunctionType
[83ab931]33#include "ResolvExpr/RenameVars.h"  // for renameTyVars
34#include "SymTab/Indexer.h"         // for Indexer
[b3bd772]35#include "SymTab/Mangler.h"         // for Mangler
[83ab931]36#include "SynTree/Expression.h"     // for InferredParams
37#include "TypeEnvironment.h"        // for TypeEnvironment, etc.
[052cd71]38#include "typeops.h"                // for adjustExprType, specCost
[83ab931]39#include "Unify.h"                  // for unify
[6d6e829]40
41namespace ResolvExpr {
42        /// Unified assertion candidate
43        struct AssnCandidate {
44                SymTab::Indexer::IdData cdata;  ///< Satisfying declaration
45                Type* adjType;                  ///< Satisfying type
46                TypeEnvironment env;            ///< Post-unification environment
47                AssertionSet have;              ///< Post-unification have-set
48                AssertionSet need;              ///< Post-unification need-set
49                OpenVarSet openVars;            ///< Post-unification open-var set
[0b00df0]50                UniqueId resnSlot;              ///< Slot for any recursive assertion IDs
[6d6e829]51
[aaeacf4]52                AssnCandidate( const SymTab::Indexer::IdData& cdata, Type* adjType, TypeEnvironment&& env,
53                        AssertionSet&& have, AssertionSet&& need, OpenVarSet&& openVars, UniqueId resnSlot )
54                : cdata(cdata), adjType(adjType), env(std::move(env)), have(std::move(have)),
[0b00df0]55                        need(std::move(need)), openVars(std::move(openVars)), resnSlot(resnSlot) {}
[6d6e829]56        };
57
58        /// List of candidate assertion resolutions
59        using CandidateList = std::vector<AssnCandidate>;
60
61        /// Reference to single deferred item
62        struct DeferRef {
[052cd71]63                const DeclarationWithType* decl;
64                const AssertionSetValue& info;
[6d6e829]65                const AssnCandidate& match;
66        };
67
68        /// Wrapper for the deferred items from a single assertion resolution.
69        /// Acts like indexed list of DeferRef
70        struct DeferItem {
[052cd71]71                const DeclarationWithType* decl;
72                const AssertionSetValue& info;
73                CandidateList matches;
[6d6e829]74
[85dac33]75                DeferItem( const DeclarationWithType* decl, const AssertionSetValue& info, CandidateList&& matches )
[052cd71]76                : decl(decl), info(info), matches(std::move(matches)) {}
[6d6e829]77
[052cd71]78                bool empty() const { return matches.empty(); }
[6d6e829]79
[052cd71]80                CandidateList::size_type size() const { return matches.size(); }
[4d2d45f9]81
[052cd71]82                DeferRef operator[] ( unsigned i ) const { return { decl, info, matches[i] }; }
[6d6e829]83        };
84
85        /// List of deferred resolution items
86        using DeferList = std::vector<DeferItem>;
87
[aaeacf4]88        /// Combo iterator that combines candidates into an output list, merging their environments.
[6d6e829]89        /// Rejects an appended candidate if the environments cannot be merged.
90        class CandidateEnvMerger {
91                /// Current list of merged candidates
92                std::vector<DeferRef> crnt;
93                /// Stack of environments to support backtracking
94                std::vector<TypeEnvironment> envs;
95                /// Stack of open variables to support backtracking
96                std::vector<OpenVarSet> varSets;
97                /// Indexer to use for merges
98                const SymTab::Indexer& indexer;
[aaeacf4]99
[6d6e829]100        public:
101                /// The merged environment/open variables and the list of candidates
102                struct OutType {
103                        TypeEnvironment env;
104                        OpenVarSet openVars;
105                        std::vector<DeferRef> assns;
[c519942]106                        Cost cost;
[6d6e829]107
[aaeacf4]108                        OutType( const TypeEnvironment& env, const OpenVarSet& openVars,
[6d6e829]109                                const std::vector<DeferRef>& assns )
[c519942]110                        : env(env), openVars(openVars), assns(assns), cost(Cost::infinity) {}
[6d6e829]111                };
112
[aaeacf4]113                CandidateEnvMerger( const TypeEnvironment& env, const OpenVarSet& openVars,
[6d6e829]114                        const SymTab::Indexer& indexer )
115                : crnt(), envs{ env }, varSets{ openVars }, indexer(indexer) {}
116
117                bool append( DeferRef i ) {
118                        TypeEnvironment env = envs.back();
119                        OpenVarSet openVars = varSets.back();
120                        mergeOpenVars( openVars, i.match.openVars );
121
122                        if ( ! env.combine( i.match.env, openVars, indexer ) ) return false;
123
124                        crnt.emplace_back( i );
125                        envs.emplace_back( env );
126                        varSets.emplace_back( openVars );
127                        return true;
128                }
129
130                void backtrack() {
131                        crnt.pop_back();
132                        envs.pop_back();
133                        varSets.pop_back();
134                }
135
136                OutType finalize() { return { envs.back(), varSets.back(), crnt }; }
137        };
138
[aaeacf4]139        /// Comparator for CandidateEnvMerger outputs that sums their costs and caches the stored
[fbecee5]140        /// sums
141        struct CandidateCost {
142                using Element = CandidateEnvMerger::OutType;
143        private:
144                const SymTab::Indexer& indexer;  ///< Indexer for costing
145
146        public:
147                CandidateCost( const SymTab::Indexer& indexer ) : indexer(indexer) {}
148
149                /// reports the cost of an element
[c519942]150                Cost get( Element& x ) const {
151                        // check cached cost
152                        if ( x.cost != Cost::infinity ) return x.cost;
153
154                        // generate cost
155                        Cost k = Cost::zero;
156                        for ( const auto& assn : x.assns ) {
[d76c588]157                                // compute conversion cost from satisfying decl to assertion
[aaeacf4]158                                k += computeConversionCost(
[7d01cf44]159                                        assn.match.adjType, assn.decl->get_type(), false, indexer, x.env );
[aaeacf4]160
[c519942]161                                // mark vars+specialization cost on function-type assertions
[d76c588]162                                FunctionType* func = GenPoly::getFunctionType( assn.match.cdata.id->get_type() );
[c519942]163                                if ( ! func ) continue;
[aaeacf4]164
[c519942]165                                for ( DeclarationWithType* formal : func->parameters ) {
166                                        k.decSpec( specCost( formal->get_type() ) );
167                                }
168                                k.incVar( func->forall.size() );
169                                for ( TypeDecl* td : func->forall ) {
170                                        k.decSpec( td->assertions.size() );
[fbecee5]171                                }
172                        }
[c519942]173
174                        // cache and return
175                        x.cost = k;
176                        return k;
[fbecee5]177                }
[aaeacf4]178
[fbecee5]179                /// compares elements by cost
[c519942]180                bool operator() ( Element& a, Element& b ) const {
[fbecee5]181                        return get( a ) < get( b );
182                }
183        };
184
[0b00df0]185        /// Set of assertion resolutions, grouped by resolution ID
186        using InferCache = std::unordered_map< UniqueId, InferredParams >;
187
[b408364]188        /// Lexicographically-ordered vector of costs
189        using CostVec = std::vector< Cost >;
190
191        int compare( const CostVec & a, const CostVec & b ) {
192                unsigned i = 0;
193                do {
194                        // lex-compare where shorter one is less
195                        if ( i == a.size() ) {
196                                return i == b.size() ? 0 : -1;
197                        }
198                        if ( i == b.size() /* && i < a.size() */ ) return 1;
[6f096d2]199
[b408364]200                        int c = a[i].compare( b[i] );
201                        if ( c != 0 ) return c;
202                } while ( ++i );
203                assert(!"unreachable");
204        }
205
206        bool operator< ( const CostVec & a, const CostVec & b ) { return compare( a, b ) < 0; }
207
[6d6e829]208        /// Flag for state iteration
209        enum IterateFlag { IterateState };
210
211        /// State needed to resolve a set of assertions
212        struct ResnState {
[0b00df0]213                Alternative alt;           ///< Alternative assertion is rooted on
214                AssertionList need;        ///< Assertions to find
215                AssertionSet newNeed;      ///< New assertions for current resolutions
216                DeferList deferred;        ///< Deferred matches
217                InferCache inferred;       ///< Cache of already-inferred parameters
[b408364]218                CostVec costs;             ///< Costs of recursive assertion satisfaction for disambiguation
[0b00df0]219                SymTab::Indexer& indexer;  ///< Name lookup (depends on previous assertions)
[6d6e829]220
221                /// Initial resolution state for an alternative
[6f096d2]222                ResnState( Alternative & a, SymTab::Indexer & indexer )
[b408364]223                : alt(a), need(), newNeed(), deferred(), inferred(), costs{ Cost::zero }, indexer(indexer) {
[6d6e829]224                        need.swap( a.need );
225                }
226
227                /// Updated resolution state with new need-list
[6f096d2]228                ResnState( ResnState && o, IterateFlag )
[aaeacf4]229                : alt(std::move(o.alt)), need(o.newNeed.begin(), o.newNeed.end()), newNeed(), deferred(),
[b408364]230                  inferred(std::move(o.inferred)), costs(o.costs), indexer(o.indexer) {
231                        costs.emplace_back( Cost::zero );
232                }
[6d6e829]233        };
234
235        /// Binds a single assertion, updating resolution state
[6f096d2]236        void bindAssertion( const DeclarationWithType * decl, AssertionSetValue info, Alternative & alt,
237                        AssnCandidate & match, InferCache & inferred ) {
[aaeacf4]238
[6f096d2]239                const DeclarationWithType * candidate = match.cdata.id;
240                assertf( candidate->uniqueId, "Assertion candidate does not have a unique ID: %s", toString( candidate ).c_str() );
[6d6e829]241
[6f096d2]242                Expression * varExpr = match.cdata.combine( alt.cvtCost );
[2c187378]243                delete varExpr->result;
244                varExpr->result = match.adjType->clone();
[0b00df0]245                if ( match.resnSlot ) { varExpr->resnSlots.push_back( match.resnSlot ); }
[6d6e829]246
[0b00df0]247                // place newly-inferred assertion in proper place in cache
248                inferred[ info.resnSlot ][ decl->get_uniqueId() ] = ParamEntry{
[6f096d2]249                                candidate->uniqueId, candidate->clone(), match.adjType->clone(), decl->get_type()->clone(),
[9aaacc27]250                                varExpr };
[6d6e829]251        }
252
253        /// Adds a captured assertion to the symbol table
[6f096d2]254        void addToIndexer( AssertionSet & assertSet, SymTab::Indexer & indexer ) {
[e1f7eef]255                for ( auto&  i : assertSet ) {
256                        if ( i.second.isUsed ) {
257                                indexer.addId( i.first );
[6d6e829]258                        }
259                }
260        }
261
[0b00df0]262        // in AlternativeFinder.cc; unique ID for assertion resolutions
263        extern UniqueId globalResnSlot;
264
[6d6e829]265        /// Resolve a single assertion, in context
[6f096d2]266        bool resolveAssertion( AssertionItem & assn, ResnState & resn ) {
[6d6e829]267                // skip unused assertions
268                if ( ! assn.info.isUsed ) return true;
269
[052cd71]270                // lookup candidates for this assertion
271                std::list< SymTab::Indexer::IdData > candidates;
272                resn.indexer.lookupId( assn.decl->name, candidates );
273
274                // find the candidates that unify with the desired type
275                CandidateList matches;
[6f096d2]276                for ( const auto & cdata : candidates ) {
277                        const DeclarationWithType * candidate = cdata.id;
[052cd71]278
279                        // build independent unification context for candidate
280                        AssertionSet have, newNeed;
281                        TypeEnvironment newEnv{ resn.alt.env };
282                        OpenVarSet newOpenVars{ resn.alt.openVars };
[6f096d2]283                        Type * adjType = candidate->get_type()->clone();
[052cd71]284                        adjustExprType( adjType, newEnv, resn.indexer );
285                        renameTyVars( adjType );
286
287                        // keep unifying candidates
[aaeacf4]288                        if ( unify( assn.decl->get_type(), adjType, newEnv, newNeed, have, newOpenVars,
[052cd71]289                                        resn.indexer ) ) {
290                                // set up binding slot for recursive assertions
291                                UniqueId crntResnSlot = 0;
292                                if ( ! newNeed.empty() ) {
293                                        crntResnSlot = ++globalResnSlot;
294                                        for ( auto& a : newNeed ) {
295                                                a.second.resnSlot = crntResnSlot;
[0b00df0]296                                        }
[2fd9f24]297                                }
[e1f7eef]298
[aaeacf4]299                                matches.emplace_back( cdata, adjType, std::move(newEnv), std::move(have),
[052cd71]300                                        std::move(newNeed), std::move(newOpenVars), crntResnSlot );
301                        } else {
302                                delete adjType;
303                        }
[6d6e829]304                }
305
306                // break if no suitable assertion
307                if ( matches.empty() ) return false;
308
309                // defer if too many suitable assertions
310                if ( matches.size() > 1 ) {
[052cd71]311                        resn.deferred.emplace_back( assn.decl, assn.info, std::move(matches) );
[6d6e829]312                        return true;
313                }
314
315                // otherwise bind current match in ongoing scope
316                AssnCandidate& match = matches.front();
317                addToIndexer( match.have, resn.indexer );
318                resn.newNeed.insert( match.need.begin(), match.need.end() );
[052cd71]319                resn.alt.env = std::move(match.env);
320                resn.alt.openVars = std::move(match.openVars);
[6d6e829]321
[0b00df0]322                bindAssertion( assn.decl, assn.info, resn.alt, match, resn.inferred );
[6d6e829]323                return true;
324        }
325
[0b00df0]326        /// Associates inferred parameters with an expression
327        struct InferMatcher {
328                InferCache& inferred;
329
330                InferMatcher( InferCache& inferred ) : inferred( inferred ) {}
331
332                Expression* postmutate( Expression* expr ) {
[40290497]333                        // defer missing inferred parameters until they are hopefully found later
334                        std::vector<UniqueId> missingSlots;
[0b00df0]335                        // place inferred parameters into resolution slots
336                        for ( UniqueId slot : expr->resnSlots ) {
337                                // fail if no matching parameters found
[40290497]338                                auto it = inferred.find( slot );
339                                if ( it == inferred.end() ) {
340                                        missingSlots.push_back( slot );
341                                        continue;
342                                }
343                                InferredParams& inferParams = it->second;
[aaeacf4]344
[0b00df0]345                                // place inferred parameters into proper place in expression
346                                for ( auto& entry : inferParams ) {
347                                        // recurse on inferParams of resolved expressions
348                                        entry.second.expr = postmutate( entry.second.expr );
349                                        // xxx - look at entry.second.inferParams?
[462a7c7]350                                        auto res = expr->inferParams.emplace( entry.first, entry.second );
351                                        assert(res.second);
[0b00df0]352                                }
353                        }
354
355                        // clear resolution slots and return
[40290497]356                        expr->resnSlots.swap( missingSlots );
[0b00df0]357                        return expr;
358                }
359        };
360
[b408364]361        /// Map of alternative return types to recursive assertion satisfaction costs
362        using PruneMap = std::unordered_map<std::string, CostVec>;
363
364        /// Gets the pruning key for an alternative
365        std::string pruneKey( const Alternative & alt ) {
366                Type* resType = alt.expr->result->clone();
367                alt.env.apply( resType );
368                std::string resKey = SymTab::Mangler::mangleType( resType );
369                delete resType;
[1d760934]370                return resKey;
[b408364]371        }
[6f096d2]372
373        /// Replace resnSlots with inferParams and add alternative to output list, if meets pruning
[b408364]374        /// threshold.
375        void finalizeAssertions( ResnState& resn, PruneMap & pruneThresholds, AltList& out ) {
376                // prune if cheaper alternative for same key has already been generated
377                std::string resKey = pruneKey( resn.alt );
378                auto it = pruneThresholds.find( resKey );
379                if ( it != pruneThresholds.end() ) {
380                        if ( it->second < resn.costs ) return;
381                } else {
382                        pruneThresholds.emplace_hint( it, resKey, resn.costs );
383                }
384
385                // replace resolution slots with inferred params, add to output
386                PassVisitor<InferMatcher> matcher{ resn.inferred };
387                resn.alt.expr = resn.alt.expr->acceptMutator( matcher );
388                out.emplace_back( resn.alt );
[0b00df0]389        }
390
391        /// Limit to depth of recursion of assertion satisfaction
[aca6a54c]392        static const int recursionLimit = 7;
[d3b2c32a]393        /// Maximum number of simultaneously-deferred assertions to attempt concurrent satisfaction of
394        static const int deferLimit = 10;
[6d6e829]395
[4d2d45f9]396        void resolveAssertions( Alternative& alt, const SymTab::Indexer& indexer, AltList& out, std::list<std::string>& errors ) {
[6d6e829]397                // finish early if no assertions to resolve
398                if ( alt.need.empty() ) {
399                        out.emplace_back( alt );
400                        return;
401                }
402
403                // build list of possible resolutions
404                using ResnList = std::vector<ResnState>;
405                SymTab::Indexer root_indexer{ indexer };
406                ResnList resns{ ResnState{ alt, root_indexer } };
407                ResnList new_resns{};
[6f096d2]408
[b408364]409                // Pruning thresholds by result type of the output alternatives.
410                // Alternatives *should* be generated in sorted order, so no need to retroactively prune
411                PruneMap thresholds;
[6d6e829]412
413                // resolve assertions in breadth-first-order up to a limited number of levels deep
414                for ( unsigned level = 0; level < recursionLimit; ++level ) {
415                        // scan over all mutually-compatible resolutions
416                        for ( auto& resn : resns ) {
[b408364]417                                // stop this branch if already found a better option
418                                auto it = thresholds.find( pruneKey( resn.alt ) );
419                                if ( it != thresholds.end() && it->second < resn.costs ) goto nextResn;
420
[6d6e829]421                                // make initial pass at matching assertions
422                                for ( auto& assn : resn.need ) {
423                                        // fail early if any assertion is not resolvable
[052cd71]424                                        if ( ! resolveAssertion( assn, resn ) ) {
[99d4584]425                                                Indenter tabs{ 3 };
[4d2d45f9]426                                                std::ostringstream ss;
427                                                ss << tabs << "Unsatisfiable alternative:\n";
428                                                resn.alt.print( ss, ++tabs );
[d3b2c32a]429                                                ss << (tabs-1) << "Could not satisfy assertion:\n";
430                                                assn.decl->print( ss, tabs );
[aaeacf4]431
[4d2d45f9]432                                                errors.emplace_back( ss.str() );
433                                                goto nextResn;
434                                        }
[6d6e829]435                                }
436
437                                if ( resn.deferred.empty() ) {
438                                        // either add successful match or push back next state
439                                        if ( resn.newNeed.empty() ) {
[b408364]440                                                finalizeAssertions( resn, thresholds, out );
[6d6e829]441                                        } else {
442                                                new_resns.emplace_back( std::move(resn), IterateState );
443                                        }
[d3b2c32a]444                                } else if ( resn.deferred.size() > deferLimit ) {
445                                        // too many deferred assertions to attempt mutual compatibility
446                                        Indenter tabs{ 3 };
447                                        std::ostringstream ss;
448                                        ss << tabs << "Unsatisfiable alternative:\n";
449                                        resn.alt.print( ss, ++tabs );
450                                        ss << (tabs-1) << "Too many non-unique satisfying assignments for "
451                                                "assertions:\n";
452                                        for ( const auto& d : resn.deferred ) {
453                                                d.decl->print( ss, tabs );
454                                        }
455
456                                        errors.emplace_back( ss.str() );
457                                        goto nextResn;
[6d6e829]458                                } else {
[b3bd772]459                                        // resolve deferred assertions by mutual compatibility
[6d6e829]460                                        std::vector<CandidateEnvMerger::OutType> compatible = filterCombos(
[aaeacf4]461                                                resn.deferred,
[6d6e829]462                                                CandidateEnvMerger{ resn.alt.env, resn.alt.openVars, resn.indexer } );
[4d2d45f9]463                                        // fail early if no mutually-compatible assertion satisfaction
464                                        if ( compatible.empty() ) {
[99d4584]465                                                Indenter tabs{ 3 };
[4d2d45f9]466                                                std::ostringstream ss;
467                                                ss << tabs << "Unsatisfiable alternative:\n";
468                                                resn.alt.print( ss, ++tabs );
[d3b2c32a]469                                                ss << (tabs-1) << "No mutually-compatible satisfaction for assertions:\n";
[4d2d45f9]470                                                for ( const auto& d : resn.deferred ) {
[052cd71]471                                                        d.decl->print( ss, tabs );
[4d2d45f9]472                                                }
473
474                                                errors.emplace_back( ss.str() );
475                                                goto nextResn;
476                                        }
[b408364]477                                        // sort by cost for overall pruning
[b3bd772]478                                        CandidateCost coster{ resn.indexer };
479                                        std::sort( compatible.begin(), compatible.end(), coster );
480
481                                        for ( auto& compat : compatible ) {
[6d6e829]482                                                ResnState new_resn = resn;
483
484                                                // add compatible assertions to new resolution state
485                                                for ( DeferRef r : compat.assns ) {
486                                                        AssnCandidate match = r.match;
487                                                        addToIndexer( match.have, new_resn.indexer );
488                                                        new_resn.newNeed.insert( match.need.begin(), match.need.end() );
489
[052cd71]490                                                        bindAssertion( r.decl, r.info, new_resn.alt, match, new_resn.inferred );
[6d6e829]491                                                }
492
493                                                // set mutual environment into resolution state
494                                                new_resn.alt.env = std::move(compat.env);
495                                                new_resn.alt.openVars = std::move(compat.openVars);
496
[b408364]497                                                // mark cost of this path
498                                                new_resn.costs.back() += compat.cost;
499
[6d6e829]500                                                // either add sucessful match or push back next state
501                                                if ( new_resn.newNeed.empty() ) {
[b408364]502                                                        finalizeAssertions( new_resn, thresholds, out );
[6d6e829]503                                                } else {
504                                                        new_resns.emplace_back( std::move(new_resn), IterateState );
505                                                }
506                                        }
507                                }
508                        nextResn:; }
509
510                        // finish or reset for next round
511                        if ( new_resns.empty() ) return;
512                        resns.swap( new_resns );
513                        new_resns.clear();
514                }
[aaeacf4]515
[6d6e829]516                // exceeded recursion limit if reaches here
517                if ( out.empty() ) {
518                        SemanticError( alt.expr->location, "Too many recursive assertions" );
519                }
520        }
521} // namespace ResolvExpr
522
523// Local Variables: //
524// tab-width: 4 //
525// mode: c++ //
526// compile-command: "make install" //
527// End: //
Note: See TracBrowser for help on using the repository browser.