| [a32b204] | 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 | //
 | 
|---|
| [c92bdcc] | 7 | // Resolver.hpp --
 | 
|---|
| [a32b204] | 8 | //
 | 
|---|
 | 9 | // Author           : Richard C. Bilson
 | 
|---|
 | 10 | // Created On       : Sun May 17 12:18:34 2015
 | 
|---|
| [39d8950] | 11 | // Last Modified By : Andrew Beach
 | 
|---|
 | 12 | // Last Modified On : Wed Mar 16 11:32:00 2022
 | 
|---|
 | 13 | // Update Count     : 5
 | 
|---|
| [a32b204] | 14 | //
 | 
|---|
 | 15 | 
 | 
|---|
| [6b0b624] | 16 | #pragma once
 | 
|---|
| [51b73452] | 17 | 
 | 
|---|
| [4b7cce6] | 18 | #include "AST/Node.hpp"  // for ptr
 | 
|---|
| [ea6332d] | 19 | 
 | 
|---|
| [d76c588] | 20 | namespace ast {
 | 
|---|
| [234b1cb] | 21 |         class ConstructorInit;
 | 
|---|
| [d76c588] | 22 |         class Decl;
 | 
|---|
| [d57e349] | 23 |         class DeletedExpr;
 | 
|---|
| [8f06277] | 24 |         class Expr;
 | 
|---|
| [234b1cb] | 25 |         class Init;
 | 
|---|
| [17a0ede2] | 26 |         class StmtExpr;
 | 
|---|
| [4b7cce6] | 27 |         class SymbolTable;
 | 
|---|
| [39d8950] | 28 |         class TranslationGlobal;
 | 
|---|
| [1f7dc61] | 29 |         class TranslationUnit;
 | 
|---|
| [18e683b] | 30 |         class Type;
 | 
|---|
| [4b7cce6] | 31 |         class TypeEnvironment;
 | 
|---|
| [d76c588] | 32 | } // namespace ast
 | 
|---|
| [51b73452] | 33 | 
 | 
|---|
 | 34 | namespace ResolvExpr {
 | 
|---|
| [d76c588] | 35 | 
 | 
|---|
| [2908f08] | 36 | /// Helper Type: Passes around information between various sub-calls.
 | 
|---|
 | 37 | struct ResolveContext {
 | 
|---|
 | 38 |         const ast::SymbolTable & symtab;
 | 
|---|
 | 39 |         const ast::TranslationGlobal & global;
 | 
|---|
 | 40 | };
 | 
|---|
 | 41 | 
 | 
|---|
 | 42 | /// Checks types and binds syntactic constructs to typed representations
 | 
|---|
 | 43 | void resolve( ast::TranslationUnit& translationUnit );
 | 
|---|
 | 44 | /// Searches expr and returns the first DeletedExpr found, otherwise nullptr
 | 
|---|
 | 45 | const ast::DeletedExpr * findDeletedExpr( const ast::Expr * expr );
 | 
|---|
 | 46 | /// Find the expression candidate that is the unique
 | 
|---|
 | 47 | /// best match for `untyped` in a `void` context.
 | 
|---|
 | 48 | ast::ptr< ast::Expr > resolveInVoidContext(
 | 
|---|
 | 49 |         const ast::Expr * expr, const ResolveContext &, ast::TypeEnvironment & env );
 | 
|---|
 | 50 | /// Resolve `untyped` to the single expression whose
 | 
|---|
 | 51 | /// candidate is the best match for the given type.
 | 
|---|
 | 52 | ast::ptr< ast::Expr > findSingleExpression(
 | 
|---|
 | 53 |         const ast::Expr * untyped, const ast::Type * type, const ResolveContext & );
 | 
|---|
 | 54 | ast::ptr< ast::Expr > findVoidExpression(
 | 
|---|
 | 55 |         const ast::Expr * untyped, const ResolveContext & );
 | 
|---|
 | 56 | /// Resolves a constructor init expression
 | 
|---|
 | 57 | ast::ptr< ast::Init > resolveCtorInit(
 | 
|---|
 | 58 |         const ast::ConstructorInit * ctorInit, const ResolveContext & context );
 | 
|---|
 | 59 | /// Resolves a statement expression
 | 
|---|
 | 60 | const ast::Expr * resolveStmtExpr(
 | 
|---|
 | 61 |         const ast::StmtExpr * stmtExpr, const ResolveContext & context );
 | 
|---|
| [39d8950] | 62 | 
 | 
|---|
| [51b73452] | 63 | } // namespace ResolvExpr
 | 
|---|
 | 64 | 
 | 
|---|
| [a32b204] | 65 | // Local Variables: //
 | 
|---|
 | 66 | // tab-width: 4 //
 | 
|---|
 | 67 | // mode: c++ //
 | 
|---|
 | 68 | // compile-command: "make install" //
 | 
|---|
 | 69 | // End: //
 | 
|---|