| 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 "ResolveMode.hpp" | 
|---|
| 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 | bool strictMode = false;           ///< If set to true, requires targetType to be exact match (inside return cast) | 
|---|
| 36 | bool allowVoid = false;            ///< If set to true, allow void-returning function calls (only top level, cast to void and first in comma) | 
|---|
| 37 | std::set< std::string > otypeKeys; ///< different type may map to same key | 
|---|
| 38 |  | 
|---|
| 39 | CandidateFinder( | 
|---|
| 40 | const ResolveContext & context, const ast::TypeEnvironment & env, | 
|---|
| 41 | const ast::Type * tt = nullptr ) | 
|---|
| 42 | : candidates(), context( context ), env( env ), targetType( tt ) {} | 
|---|
| 43 |  | 
|---|
| 44 | /// Fill candidates with feasible resolutions for `expr` | 
|---|
| 45 | void find( const ast::Expr * expr, ResolveMode mode = {} ); | 
|---|
| 46 | bool pruneCandidates( CandidateList & candidates, CandidateList & out, std::vector<std::string> & errors ); | 
|---|
| 47 |  | 
|---|
| 48 | /// Runs new candidate finder on each element in xs, returning the list of finders | 
|---|
| 49 | std::vector< CandidateFinder > findSubExprs( const std::vector< ast::ptr< ast::Expr > > & xs ); | 
|---|
| 50 |  | 
|---|
| 51 | using value_type = CandidateList::value_type; | 
|---|
| 52 | using iterator = CandidateList::iterator; | 
|---|
| 53 | using const_iterator = CandidateList::const_iterator; | 
|---|
| 54 |  | 
|---|
| 55 | iterator begin() { return candidates.begin(); } | 
|---|
| 56 | const_iterator begin() const { return candidates.begin(); } | 
|---|
| 57 |  | 
|---|
| 58 | iterator end() { return candidates.end(); } | 
|---|
| 59 | const_iterator end() const { return candidates.end(); } | 
|---|
| 60 |  | 
|---|
| 61 | const ast::Expr * makeEnumOffsetCast( const ast::EnumInstType * src, | 
|---|
| 62 | const ast::EnumInstType * dst, const ast::Expr * expr, Cost minCost ); | 
|---|
| 63 | }; | 
|---|
| 64 |  | 
|---|
| 65 | /// Computes conversion cost between two types | 
|---|
| 66 | Cost computeConversionCost( | 
|---|
| 67 | const ast::Type * argType, const ast::Type * paramType, bool argIsLvalue, | 
|---|
| 68 | const ast::SymbolTable & symtab, const ast::TypeEnvironment & env ); | 
|---|
| 69 |  | 
|---|
| 70 | /// Create an expression that preforms reference to rvalue conversion on | 
|---|
| 71 | /// the given expression and update the cost of the expression. | 
|---|
| 72 | const ast::Expr * referenceToRvalueConversion( | 
|---|
| 73 | const ast::Expr * expr, Cost & cost ); | 
|---|
| 74 |  | 
|---|
| 75 | /// Wrap an expression to convert the result to a conditional result. | 
|---|
| 76 | const ast::Expr * createCondExpr( const ast::Expr * expr ); | 
|---|
| 77 |  | 
|---|
| 78 | } // namespace ResolvExpr | 
|---|
| 79 |  | 
|---|
| 80 | // Local Variables: // | 
|---|
| 81 | // tab-width: 4 // | 
|---|
| 82 | // mode: c++ // | 
|---|
| 83 | // compile-command: "make install" // | 
|---|
| 84 | // End: // | 
|---|