source: src/ResolvExpr/Resolver.h

Last change on this file was 2908f08, checked in by Andrew Beach <ajbeach@…>, 5 months ago

Most of ResolvExpr? was written before the new style standard. Some files updated, focus on headers.

  • Property mode set to 100644
File size: 2.1 KB
Line 
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// Resolver.h --
8//
9// Author           : Richard C. Bilson
10// Created On       : Sun May 17 12:18:34 2015
11// Last Modified By : Andrew Beach
12// Last Modified On : Wed Mar 16 11:32:00 2022
13// Update Count     : 5
14//
15
16#pragma once
17
18#include "AST/Node.hpp"  // for ptr
19
20namespace ast {
21        class ConstructorInit;
22        class Decl;
23        class DeletedExpr;
24        class Expr;
25        class Init;
26        class StmtExpr;
27        class SymbolTable;
28        class TranslationGlobal;
29        class TranslationUnit;
30        class Type;
31        class TypeEnvironment;
32} // namespace ast
33
34namespace ResolvExpr {
35
36/// Helper Type: Passes around information between various sub-calls.
37struct ResolveContext {
38        const ast::SymbolTable & symtab;
39        const ast::TranslationGlobal & global;
40};
41
42/// Checks types and binds syntactic constructs to typed representations
43void resolve( ast::TranslationUnit& translationUnit );
44/// Searches expr and returns the first DeletedExpr found, otherwise nullptr
45const 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.
48ast::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.
52ast::ptr< ast::Expr > findSingleExpression(
53        const ast::Expr * untyped, const ast::Type * type, const ResolveContext & );
54ast::ptr< ast::Expr > findVoidExpression(
55        const ast::Expr * untyped, const ResolveContext & );
56/// Resolves a constructor init expression
57ast::ptr< ast::Init > resolveCtorInit(
58        const ast::ConstructorInit * ctorInit, const ResolveContext & context );
59/// Resolves a statement expression
60const ast::Expr * resolveStmtExpr(
61        const ast::StmtExpr * stmtExpr, const ResolveContext & context );
62
63} // namespace ResolvExpr
64
65// Local Variables: //
66// tab-width: 4 //
67// mode: c++ //
68// compile-command: "make install" //
69// End: //
Note: See TracBrowser for help on using the repository browser.