ADT
arm-eh
ast-experimental
enum
forall-pointer-decay
jacob/cs343-translation
jenkins-sandbox
new-ast
new-ast-unique-expr
pthread-emulation
qualifiedEnum
Last change
on this file since 3cd5fdd was 99d4584, checked in by Aaron Moss <a3moss@…>, 6 years ago |
Further stubs for resolver port
- also switched order of constructor params on Indenter
|
-
Property mode
set to
100644
|
File size:
1.3 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 | // CandidateFinder.hpp --
|
---|
8 | //
|
---|
9 | // Author : Aaron B. Moss
|
---|
10 | // Created On : Wed Jun 5 14:30:00 2019
|
---|
11 | // Last Modified By : Aaron B. Moss
|
---|
12 | // Last Modified On : Wed Jun 5 14:30:00 2019
|
---|
13 | // Update Count : 1
|
---|
14 | //
|
---|
15 |
|
---|
16 | #pragma once
|
---|
17 |
|
---|
18 | #include "Candidate.hpp"
|
---|
19 | #include "ResolvMode.h"
|
---|
20 | #include "AST/Fwd.hpp"
|
---|
21 | #include "AST/SymbolTable.hpp"
|
---|
22 | #include "AST/TypeEnvironment.hpp"
|
---|
23 |
|
---|
24 | namespace ResolvExpr {
|
---|
25 |
|
---|
26 | /// Data to perform expression resolution
|
---|
27 | struct CandidateFinder {
|
---|
28 | CandidateList candidates; ///< List of candidate resolutions
|
---|
29 | const ast::SymbolTable & symtab; ///< Symbol table to lookup candidates
|
---|
30 | const ast::TypeEnvironment & env; ///< Substitutions performed in this resolution
|
---|
31 | const ast::Type * targetType = nullptr; ///< Target type for resolution
|
---|
32 |
|
---|
33 | CandidateFinder( const ast::SymbolTable & symtab, const ast::TypeEnvironment & env )
|
---|
34 | : candidates(), symtab( symtab ), env( env ) {}
|
---|
35 |
|
---|
36 | /// Fill candidates with feasible resolutions for `expr`
|
---|
37 | void find( const ast::Expr * expr, ResolvMode mode = {} );
|
---|
38 | };
|
---|
39 |
|
---|
40 | } // namespace ResolvExpr
|
---|
41 |
|
---|
42 | // Local Variables: //
|
---|
43 | // tab-width: 4 //
|
---|
44 | // mode: c++ //
|
---|
45 | // compile-command: "make install" //
|
---|
46 | // End: //
|
---|
Note:
See
TracBrowser
for help on using the repository browser.