| 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 | // CandidateFinder.hpp --
 | 
|---|
| 8 | //
 | 
|---|
| 9 | // Author           : Aaron B. Moss
 | 
|---|
| 10 | // Created On       : Wed Jun 5 14:30:00 2019
 | 
|---|
| 11 | // Last Modified By : Andrew Beach
 | 
|---|
| 12 | // Last Modified On : Wed Mar 16 15:22:00 2022
 | 
|---|
| 13 | // Update Count     : 3
 | 
|---|
| 14 | //
 | 
|---|
| 15 | 
 | 
|---|
| 16 | #pragma once
 | 
|---|
| 17 | 
 | 
|---|
| 18 | #include "Candidate.hpp"
 | 
|---|
| 19 | #include "ResolvMode.h"
 | 
|---|
| 20 | #include "AST/Fwd.hpp"
 | 
|---|
| 21 | #include "AST/Node.hpp"
 | 
|---|
| 22 | #include "AST/SymbolTable.hpp"
 | 
|---|
| 23 | #include "AST/TypeEnvironment.hpp"
 | 
|---|
| 24 | 
 | 
|---|
| 25 | namespace ResolvExpr {
 | 
|---|
| 26 | 
 | 
|---|
| 27 | struct ResolveContext;
 | 
|---|
| 28 | 
 | 
|---|
| 29 | /// Data to perform expression resolution
 | 
|---|
| 30 | struct CandidateFinder {
 | 
|---|
| 31 |         CandidateList candidates;          ///< List of candidate resolutions
 | 
|---|
| 32 |         const ResolveContext & context;  ///< Information about where the canditates are being found.
 | 
|---|
| 33 |         const ast::TypeEnvironment & env;  ///< Substitutions performed in this resolution
 | 
|---|
| 34 |         ast::ptr< ast::Type > targetType;  ///< Target type for resolution
 | 
|---|
| 35 |         std::set< std::string > otypeKeys;  /// different type may map to same key
 | 
|---|
| 36 | 
 | 
|---|
| 37 |         CandidateFinder(
 | 
|---|
| 38 |                 const ResolveContext & context, const ast::TypeEnvironment & env,
 | 
|---|
| 39 |                 const ast::Type * tt = nullptr )
 | 
|---|
| 40 |         : candidates(), context( context ), env( env ), targetType( tt ) {}
 | 
|---|
| 41 | 
 | 
|---|
| 42 |         /// Fill candidates with feasible resolutions for `expr`
 | 
|---|
| 43 |         void find( const ast::Expr * expr, ResolvMode mode = {} );
 | 
|---|
| 44 |         bool pruneCandidates( CandidateList & candidates, CandidateList & out, std::vector<std::string> & errors );
 | 
|---|
| 45 | 
 | 
|---|
| 46 |         /// Runs new candidate finder on each element in xs, returning the list of finders
 | 
|---|
| 47 |         std::vector< CandidateFinder > findSubExprs( const std::vector< ast::ptr< ast::Expr > > & xs );
 | 
|---|
| 48 | 
 | 
|---|
| 49 |         using value_type = CandidateList::value_type;
 | 
|---|
| 50 |         using iterator = CandidateList::iterator;
 | 
|---|
| 51 |         using const_iterator = CandidateList::const_iterator;
 | 
|---|
| 52 | 
 | 
|---|
| 53 |         iterator begin() { return candidates.begin(); }
 | 
|---|
| 54 |         const_iterator begin() const { return candidates.begin(); }
 | 
|---|
| 55 | 
 | 
|---|
| 56 |         iterator end() { return candidates.end(); }
 | 
|---|
| 57 |         const_iterator end() const { return candidates.end(); }
 | 
|---|
| 58 | };
 | 
|---|
| 59 | 
 | 
|---|
| 60 | /// Computes conversion cost between two types
 | 
|---|
| 61 | Cost computeConversionCost(
 | 
|---|
| 62 |         const ast::Type * argType, const ast::Type * paramType, bool argIsLvalue,
 | 
|---|
| 63 |         const ast::SymbolTable & symtab, const ast::TypeEnvironment & env );
 | 
|---|
| 64 | 
 | 
|---|
| 65 | } // namespace ResolvExpr
 | 
|---|
| 66 | 
 | 
|---|
| 67 | // Local Variables: //
 | 
|---|
| 68 | // tab-width: 4 //
 | 
|---|
| 69 | // mode: c++ //
 | 
|---|
| 70 | // compile-command: "make install" //
 | 
|---|
| 71 | // End: //
 | 
|---|