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 | // typeops.h -- |
---|
8 | // |
---|
9 | // Author : Richard C. Bilson |
---|
10 | // Created On : Sun May 17 07:28:22 2015 |
---|
11 | // Last Modified By : Peter A. Buhr |
---|
12 | // Last Modified On : Fri Feb 8 09:30:34 2019 |
---|
13 | // Update Count : 4 |
---|
14 | // |
---|
15 | |
---|
16 | #pragma once |
---|
17 | |
---|
18 | #include <vector> |
---|
19 | |
---|
20 | #include "Cost.h" |
---|
21 | #include "TypeEnvironment.h" |
---|
22 | #include "WidenMode.h" |
---|
23 | #include "AST/Fwd.hpp" |
---|
24 | #include "AST/Node.hpp" |
---|
25 | #include "AST/SymbolTable.hpp" |
---|
26 | #include "AST/Type.hpp" |
---|
27 | #include "AST/TypeEnvironment.hpp" |
---|
28 | #include "SynTree/SynTree.h" |
---|
29 | #include "SynTree/Type.h" |
---|
30 | #include "SymTab/Indexer.h" |
---|
31 | |
---|
32 | namespace ResolvExpr { |
---|
33 | // combos: takes a list of sets and returns a set of lists representing every possible way of forming a list by |
---|
34 | // picking one element out of each set |
---|
35 | template< typename InputIterator, typename OutputIterator > |
---|
36 | void combos( InputIterator begin, InputIterator end, OutputIterator out ) { |
---|
37 | typedef typename InputIterator::value_type SetType; |
---|
38 | typedef typename std::vector< typename SetType::value_type > ListType; |
---|
39 | |
---|
40 | if ( begin == end ) { |
---|
41 | *out++ = ListType(); |
---|
42 | return; |
---|
43 | } // if |
---|
44 | |
---|
45 | InputIterator current = begin; |
---|
46 | begin++; |
---|
47 | |
---|
48 | std::vector< ListType > recursiveResult; |
---|
49 | combos( begin, end, back_inserter( recursiveResult ) ); |
---|
50 | |
---|
51 | for ( const auto& i : recursiveResult ) for ( const auto& j : *current ) { |
---|
52 | ListType result; |
---|
53 | std::back_insert_iterator< ListType > inserter = back_inserter( result ); |
---|
54 | *inserter++ = j; |
---|
55 | std::copy( i.begin(), i.end(), inserter ); |
---|
56 | *out++ = result; |
---|
57 | } |
---|
58 | } |
---|
59 | |
---|
60 | // in AdjustExprType.cc |
---|
61 | /// Replaces array types with the equivalent pointer, and function types with a pointer-to-function |
---|
62 | void adjustExprType( Type *&type, const TypeEnvironment &env, const SymTab::Indexer &indexer ); |
---|
63 | |
---|
64 | /// Replaces array types with the equivalent pointer, and function types with a pointer-to-function using empty TypeEnvironment and Indexer |
---|
65 | void adjustExprType( Type *& type ); |
---|
66 | |
---|
67 | template< typename ForwardIterator > |
---|
68 | void adjustExprTypeList( ForwardIterator begin, ForwardIterator end, const TypeEnvironment &env, const SymTab::Indexer &indexer ) { |
---|
69 | while ( begin != end ) { |
---|
70 | adjustExprType( *begin++, env, indexer ); |
---|
71 | } // while |
---|
72 | } |
---|
73 | |
---|
74 | /// Replaces array types with equivalent pointer, and function types with a pointer-to-function |
---|
75 | const ast::Type * adjustExprType( |
---|
76 | const ast::Type * type, const ast::TypeEnvironment & env, const ast::SymbolTable & symtab ); |
---|
77 | |
---|
78 | // in CastCost.cc |
---|
79 | Cost castCost( Type *src, Type *dest, const SymTab::Indexer &indexer, const TypeEnvironment &env ); |
---|
80 | Cost castCost( |
---|
81 | const ast::Type * src, const ast::Type * dst, const ast::SymbolTable & symtab, |
---|
82 | const ast::TypeEnvironment & env ); |
---|
83 | |
---|
84 | // in ConversionCost.cc |
---|
85 | Cost conversionCost( Type *src, Type *dest, const SymTab::Indexer &indexer, const TypeEnvironment &env ); |
---|
86 | Cost conversionCost( |
---|
87 | const ast::Type * src, const ast::Type * dst, const ast::SymbolTable & symtab, |
---|
88 | const ast::TypeEnvironment & env ); |
---|
89 | |
---|
90 | // in AlternativeFinder.cc |
---|
91 | Cost computeConversionCost( Type *actualType, Type *formalType, |
---|
92 | const SymTab::Indexer &indexer, const TypeEnvironment &env ); |
---|
93 | |
---|
94 | // in PtrsAssignable.cc |
---|
95 | int ptrsAssignable( Type *src, Type *dest, const TypeEnvironment &env ); |
---|
96 | |
---|
97 | // in PtrsCastable.cc |
---|
98 | int ptrsCastable( Type *src, Type *dest, const TypeEnvironment &env, const SymTab::Indexer &indexer ); |
---|
99 | |
---|
100 | // in Unify.cc |
---|
101 | bool typesCompatible( Type *, Type *, const SymTab::Indexer &indexer, const TypeEnvironment &env ); |
---|
102 | bool typesCompatibleIgnoreQualifiers( Type *, Type *, const SymTab::Indexer &indexer, const TypeEnvironment &env ); |
---|
103 | |
---|
104 | inline bool typesCompatible( Type *t1, Type *t2, const SymTab::Indexer &indexer ) { |
---|
105 | TypeEnvironment env; |
---|
106 | return typesCompatible( t1, t2, indexer, env ); |
---|
107 | } |
---|
108 | |
---|
109 | inline bool typesCompatibleIgnoreQualifiers( Type *t1, Type *t2, const SymTab::Indexer &indexer ) { |
---|
110 | TypeEnvironment env; |
---|
111 | return typesCompatibleIgnoreQualifiers( t1, t2, indexer, env ); |
---|
112 | } |
---|
113 | |
---|
114 | bool typesCompatible( |
---|
115 | const ast::Type *, const ast::Type *, const ast::SymbolTable & symtab = {}, |
---|
116 | const ast::TypeEnvironment & env = {} ); |
---|
117 | |
---|
118 | bool typesCompatibleIgnoreQualifiers( |
---|
119 | const ast::Type *, const ast::Type *, const ast::SymbolTable &, |
---|
120 | const ast::TypeEnvironment & env = {} ); |
---|
121 | |
---|
122 | /// creates the type represented by the list of returnVals in a FunctionType. The caller owns the return value. |
---|
123 | Type * extractResultType( FunctionType * functionType ); |
---|
124 | /// Creates or extracts the type represented by the list of returns in a `FunctionType`. |
---|
125 | ast::ptr<ast::Type> extractResultType( const ast::FunctionType * func ); |
---|
126 | |
---|
127 | // in CommonType.cc |
---|
128 | Type * commonType( Type *type1, Type *type2, bool widenFirst, bool widenSecond, const SymTab::Indexer &indexer, TypeEnvironment &env, const OpenVarSet &openVars ); |
---|
129 | ast::ptr< ast::Type > commonType( |
---|
130 | const ast::ptr< ast::Type > & type1, const ast::ptr< ast::Type > & type2, WidenMode widen, |
---|
131 | const ast::SymbolTable & symtab, ast::TypeEnvironment & env, const ast::OpenVarSet & open ); |
---|
132 | |
---|
133 | // in PolyCost.cc |
---|
134 | int polyCost( Type *type, const TypeEnvironment &env, const SymTab::Indexer &indexer ); |
---|
135 | int polyCost( |
---|
136 | const ast::Type * type, const ast::SymbolTable & symtab, const ast::TypeEnvironment & env ); |
---|
137 | |
---|
138 | // in SpecCost.cc |
---|
139 | int specCost( Type *type ); |
---|
140 | int specCost( const ast::Type * type ); |
---|
141 | |
---|
142 | // in Occurs.cc |
---|
143 | bool occurs( Type *type, std::string varName, const TypeEnvironment &env ); |
---|
144 | // new AST version in TypeEnvironment.cpp (only place it was used in old AST) |
---|
145 | |
---|
146 | template<typename Iter> |
---|
147 | bool occursIn( Type* ty, Iter begin, Iter end, const TypeEnvironment &env ) { |
---|
148 | while ( begin != end ) { |
---|
149 | if ( occurs( ty, *begin, env ) ) return true; |
---|
150 | ++begin; |
---|
151 | } |
---|
152 | return false; |
---|
153 | } |
---|
154 | |
---|
155 | // in AlternativeFinder.cc |
---|
156 | void referenceToRvalueConversion( Expression *& expr, Cost & cost ); |
---|
157 | // in CandidateFinder.cpp |
---|
158 | const ast::Expr * referenceToRvalueConversion( const ast::Expr * expr, Cost & cost ); |
---|
159 | |
---|
160 | /// flatten tuple type into list of types |
---|
161 | template< typename OutputIterator > |
---|
162 | void flatten( Type * type, OutputIterator out ) { |
---|
163 | if ( TupleType * tupleType = dynamic_cast< TupleType * >( type ) ) { |
---|
164 | for ( Type * t : tupleType->get_types() ) { |
---|
165 | flatten( t, out ); |
---|
166 | } |
---|
167 | } else { |
---|
168 | *out++ = type->clone(); |
---|
169 | } |
---|
170 | } |
---|
171 | |
---|
172 | /// flatten tuple type into existing list of types |
---|
173 | static inline void flatten( |
---|
174 | const ast::Type * type, std::vector< ast::ptr< ast::Type > > & out |
---|
175 | ) { |
---|
176 | if ( auto tupleType = dynamic_cast< const ast::TupleType * >( type ) ) { |
---|
177 | for ( const ast::Type * t : tupleType->types ) { |
---|
178 | flatten( t, out ); |
---|
179 | } |
---|
180 | } else { |
---|
181 | out.emplace_back( type ); |
---|
182 | } |
---|
183 | } |
---|
184 | |
---|
185 | /// flatten tuple type into list of types |
---|
186 | static inline std::vector< ast::ptr< ast::Type > > flatten( const ast::Type * type ) { |
---|
187 | std::vector< ast::ptr< ast::Type > > out; |
---|
188 | out.reserve( type->size() ); |
---|
189 | flatten( type, out ); |
---|
190 | return out; |
---|
191 | } |
---|
192 | |
---|
193 | // in TypeEnvironment.cc |
---|
194 | bool isFtype( Type *type ); |
---|
195 | } // namespace ResolvExpr |
---|
196 | |
---|
197 | namespace ast { |
---|
198 | // in TypeEnvironment.cpp |
---|
199 | bool isFtype( const ast::Type * type ); |
---|
200 | } // namespace ast |
---|
201 | |
---|
202 | // Local Variables: // |
---|
203 | // tab-width: 4 // |
---|
204 | // mode: c++ // |
---|
205 | // compile-command: "make install" // |
---|
206 | // End: // |
---|