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 | // PolyCost.cc -- |
---|
8 | // |
---|
9 | // Author : Richard C. Bilson |
---|
10 | // Created On : Sun May 17 09:50:12 2015 |
---|
11 | // Last Modified By : Andrew Beach |
---|
12 | // Last Modified On : Wed Jun 19 10:45:00 2019 |
---|
13 | // Update Count : 4 |
---|
14 | // |
---|
15 | |
---|
16 | #include "AST/SymbolTable.hpp" |
---|
17 | #include "AST/Pass.hpp" |
---|
18 | #include "AST/Type.hpp" |
---|
19 | #include "AST/TypeEnvironment.hpp" |
---|
20 | |
---|
21 | namespace ResolvExpr { |
---|
22 | |
---|
23 | // TODO: When the old PolyCost is torn out get rid of the _new suffix. |
---|
24 | class PolyCost_new { |
---|
25 | const ast::SymbolTable &symtab; |
---|
26 | public: |
---|
27 | int result; |
---|
28 | const ast::TypeEnvironment &env_; |
---|
29 | |
---|
30 | PolyCost_new( const ast::SymbolTable & symtab, const ast::TypeEnvironment & env ) |
---|
31 | : symtab( symtab ), result( 0 ), env_( env ) {} |
---|
32 | |
---|
33 | void previsit( const ast::TypeInstType * type ) { |
---|
34 | if ( const ast::EqvClass * eqv = env_.lookup( *type ) ) /* && */ if ( eqv->bound ) { |
---|
35 | if ( const ast::TypeInstType * otherType = eqv->bound.as< ast::TypeInstType >() ) { |
---|
36 | if ( symtab.lookupType( otherType->name ) ) { |
---|
37 | // Bound to opaque type. |
---|
38 | result += 1; |
---|
39 | } |
---|
40 | } else { |
---|
41 | // Bound to concrete type. |
---|
42 | result += 1; |
---|
43 | } |
---|
44 | } |
---|
45 | } |
---|
46 | }; |
---|
47 | |
---|
48 | int polyCost( |
---|
49 | const ast::Type * type, const ast::SymbolTable & symtab, const ast::TypeEnvironment & env |
---|
50 | ) { |
---|
51 | ast::Pass<PolyCost_new> costing( symtab, env ); |
---|
52 | type->accept( costing ); |
---|
53 | return (costing.core.result > 0) ? 1 : 0; |
---|
54 | } |
---|
55 | |
---|
56 | } // namespace ResolvExpr |
---|
57 | |
---|
58 | // Local Variables: // |
---|
59 | // tab-width: 4 // |
---|
60 | // mode: c++ // |
---|
61 | // compile-command: "make install" // |
---|
62 | // End: // |
---|