[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 | // |
---|
[db4ecc5] | 7 | // Resolver.h -- |
---|
[a32b204] | 8 | // |
---|
| 9 | // Author : Richard C. Bilson |
---|
| 10 | // Created On : Sun May 17 12:18:34 2015 |
---|
[6b0b624] | 11 | // Last Modified By : Peter A. Buhr |
---|
[5170d95] | 12 | // Last Modified On : Mon Feb 18 20:40:38 2019 |
---|
| 13 | // Update Count : 4 |
---|
[a32b204] | 14 | // |
---|
| 15 | |
---|
[6b0b624] | 16 | #pragma once |
---|
[51b7345] | 17 | |
---|
[d76c588] | 18 | #include <list> // for list |
---|
| 19 | #include <AST/Node.hpp> // for ptr |
---|
[ea6332d] | 20 | |
---|
| 21 | class ConstructorInit; |
---|
| 22 | class Declaration; |
---|
| 23 | class Expression; |
---|
| 24 | class StmtExpr; |
---|
| 25 | namespace SymTab { |
---|
[d76c588] | 26 | class Indexer; |
---|
| 27 | } // namespace SymTab |
---|
| 28 | |
---|
| 29 | namespace ast { |
---|
| 30 | class Decl; |
---|
[d57e349] | 31 | class DeletedExpr; |
---|
[d76c588] | 32 | } // namespace ast |
---|
[51b7345] | 33 | |
---|
| 34 | namespace ResolvExpr { |
---|
[82dd287] | 35 | /// Checks types and binds syntactic constructs to typed representations |
---|
[a32b204] | 36 | void resolve( std::list< Declaration * > translationUnit ); |
---|
[5170d95] | 37 | void resolveDecl( Declaration *, const SymTab::Indexer & indexer ); |
---|
| 38 | Expression *resolveInVoidContext( Expression * expr, const SymTab::Indexer & indexer ); |
---|
| 39 | void findVoidExpression( Expression *& untyped, const SymTab::Indexer & indexer ); |
---|
| 40 | void findSingleExpression( Expression *& untyped, const SymTab::Indexer & indexer ); |
---|
| 41 | void findSingleExpression( Expression *& untyped, Type * type, const SymTab::Indexer & indexer ); |
---|
[1d2b64f] | 42 | void resolveCtorInit( ConstructorInit * ctorInit, const SymTab::Indexer & indexer ); |
---|
| 43 | void resolveStmtExpr( StmtExpr * stmtExpr, const SymTab::Indexer & indexer ); |
---|
[630bcb5] | 44 | /// Searches expr and returns the first DeletedExpr found, otherwise nullptr |
---|
| 45 | DeletedExpr * findDeletedExpr( Expression * expr ); |
---|
[2a6292d] | 46 | /// Resolves with-stmts and with-clauses on functions |
---|
| 47 | void resolveWithExprs( std::list< Declaration * > & translationUnit ); |
---|
[d76c588] | 48 | |
---|
| 49 | /// Checks types and binds syntactic constructs to typed representations |
---|
| 50 | void resolve( std::list< ast::ptr<ast::Decl> >& translationUnit ); |
---|
[d57e349] | 51 | /// Searches expr and returns the first DeletedExpr found, otherwise nullptr |
---|
| 52 | const ast::DeletedExpr * findDeletedExpr( const ast::Expr * expr ); |
---|
[51b7345] | 53 | } // namespace ResolvExpr |
---|
| 54 | |
---|
[a32b204] | 55 | // Local Variables: // |
---|
| 56 | // tab-width: 4 // |
---|
| 57 | // mode: c++ // |
---|
| 58 | // compile-command: "make install" // |
---|
| 59 | // End: // |
---|