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 | // TypeSubstitution.cc --
|
---|
8 | //
|
---|
9 | // Author : Richard C. Bilson
|
---|
10 | // Created On : Mon May 18 07:44:20 2015
|
---|
11 | // Last Modified By : Peter A. Buhr
|
---|
12 | // Last Modified On : Thu Mar 16 15:54:35 2017
|
---|
13 | // Update Count : 4
|
---|
14 | //
|
---|
15 |
|
---|
16 | #include <ostream> // for ostream, basic_ostream, operator<<, endl
|
---|
17 |
|
---|
18 | #include "Type.h" // for TypeInstType, Type, StructInstType, UnionInstType
|
---|
19 | #include "TypeSubstitution.h"
|
---|
20 |
|
---|
21 | TypeSubstitution::TypeSubstitution() {
|
---|
22 | }
|
---|
23 |
|
---|
24 | TypeSubstitution::TypeSubstitution( const TypeSubstitution &other ) {
|
---|
25 | initialize( other, *this );
|
---|
26 | }
|
---|
27 |
|
---|
28 | TypeSubstitution::~TypeSubstitution() {
|
---|
29 | for ( TypeEnvType::iterator i = typeEnv.begin(); i != typeEnv.end(); ++i ) {
|
---|
30 | delete( i->second );
|
---|
31 | }
|
---|
32 | for ( VarEnvType::iterator i = varEnv.begin(); i != varEnv.end(); ++i ) {
|
---|
33 | delete( i->second );
|
---|
34 | }
|
---|
35 | }
|
---|
36 |
|
---|
37 | TypeSubstitution &TypeSubstitution::operator=( const TypeSubstitution &other ) {
|
---|
38 | if ( this == &other ) return *this;
|
---|
39 | initialize( other, *this );
|
---|
40 | return *this;
|
---|
41 | }
|
---|
42 |
|
---|
43 | void TypeSubstitution::initialize( const TypeSubstitution &src, TypeSubstitution &dest ) {
|
---|
44 | dest.typeEnv.clear();
|
---|
45 | dest.varEnv.clear();
|
---|
46 | dest.add( src );
|
---|
47 | }
|
---|
48 |
|
---|
49 | void TypeSubstitution::add( const TypeSubstitution &other ) {
|
---|
50 | for ( TypeEnvType::const_iterator i = other.typeEnv.begin(); i != other.typeEnv.end(); ++i ) {
|
---|
51 | typeEnv[ i->first ] = i->second->clone();
|
---|
52 | } // for
|
---|
53 | for ( VarEnvType::const_iterator i = other.varEnv.begin(); i != other.varEnv.end(); ++i ) {
|
---|
54 | varEnv[ i->first ] = i->second->clone();
|
---|
55 | } // for
|
---|
56 | }
|
---|
57 |
|
---|
58 | void TypeSubstitution::add( std::string formalType, Type *actualType ) {
|
---|
59 | TypeEnvType::iterator i = typeEnv.find( formalType );
|
---|
60 | if ( i != typeEnv.end() ) {
|
---|
61 | delete i->second;
|
---|
62 | } // if
|
---|
63 | typeEnv[ formalType ] = actualType->clone();
|
---|
64 | }
|
---|
65 |
|
---|
66 | void TypeSubstitution::remove( std::string formalType ) {
|
---|
67 | TypeEnvType::iterator i = typeEnv.find( formalType );
|
---|
68 | if ( i != typeEnv.end() ) {
|
---|
69 | delete i->second;
|
---|
70 | typeEnv.erase( formalType );
|
---|
71 | } // if
|
---|
72 | }
|
---|
73 |
|
---|
74 | Type *TypeSubstitution::lookup( std::string formalType ) const {
|
---|
75 | TypeEnvType::const_iterator i = typeEnv.find( formalType );
|
---|
76 |
|
---|
77 | // break on not in substitution set
|
---|
78 | if ( i == typeEnv.end() ) return 0;
|
---|
79 |
|
---|
80 | // attempt to transitively follow TypeInstType links.
|
---|
81 | while ( TypeInstType *actualType = dynamic_cast< TypeInstType* >( i->second ) ) {
|
---|
82 | const std::string& typeName = actualType->get_name();
|
---|
83 |
|
---|
84 | // break cycles in the transitive follow
|
---|
85 | if ( formalType == typeName ) break;
|
---|
86 |
|
---|
87 | // Look for the type this maps to, returning previous mapping if none-such
|
---|
88 | i = typeEnv.find( typeName );
|
---|
89 | if ( i == typeEnv.end() ) return actualType;
|
---|
90 | }
|
---|
91 |
|
---|
92 | // return type from substitution set
|
---|
93 | return i->second;
|
---|
94 |
|
---|
95 | #if 0
|
---|
96 | if ( i == typeEnv.end() ) {
|
---|
97 | return 0;
|
---|
98 | } else {
|
---|
99 | return i->second;
|
---|
100 | } // if
|
---|
101 | #endif
|
---|
102 | }
|
---|
103 |
|
---|
104 | bool TypeSubstitution::empty() const {
|
---|
105 | return typeEnv.empty() && varEnv.empty();
|
---|
106 | }
|
---|
107 |
|
---|
108 | void TypeSubstitution::normalize() {
|
---|
109 | do {
|
---|
110 | subCount = 0;
|
---|
111 | freeOnly = true;
|
---|
112 | for ( TypeEnvType::iterator i = typeEnv.begin(); i != typeEnv.end(); ++i ) {
|
---|
113 | i->second = i->second->acceptMutator( *this );
|
---|
114 | }
|
---|
115 | } while ( subCount );
|
---|
116 | }
|
---|
117 |
|
---|
118 | Type * TypeSubstitution::mutate( TypeInstType *inst ) {
|
---|
119 | BoundVarsType::const_iterator bound = boundVars.find( inst->get_name() );
|
---|
120 | if ( bound != boundVars.end() ) return inst;
|
---|
121 |
|
---|
122 | TypeEnvType::const_iterator i = typeEnv.find( inst->get_name() );
|
---|
123 | if ( i == typeEnv.end() ) {
|
---|
124 | return inst;
|
---|
125 | } else {
|
---|
126 | /// std::cout << "found " << inst->get_name() << ", replacing with ";
|
---|
127 | /// i->second->print( std::cout );
|
---|
128 | /// std::cout << std::endl;
|
---|
129 | subCount++;
|
---|
130 | Type *newtype = i->second->clone();
|
---|
131 | newtype->get_qualifiers() |= inst->get_qualifiers();
|
---|
132 | delete inst;
|
---|
133 | return newtype;
|
---|
134 | } // if
|
---|
135 | }
|
---|
136 |
|
---|
137 | Expression * TypeSubstitution::mutate( NameExpr *nameExpr ) {
|
---|
138 | VarEnvType::const_iterator i = varEnv.find( nameExpr->get_name() );
|
---|
139 | if ( i == varEnv.end() ) {
|
---|
140 | return nameExpr;
|
---|
141 | } else {
|
---|
142 | subCount++;
|
---|
143 | delete nameExpr;
|
---|
144 | return i->second->clone();
|
---|
145 | } // if
|
---|
146 | }
|
---|
147 |
|
---|
148 | template< typename TypeClass >
|
---|
149 | Type *TypeSubstitution::handleType( TypeClass *type ) {
|
---|
150 | ValueGuard<BoundVarsType> oldBoundVars( boundVars );
|
---|
151 | // bind type variables from forall-qualifiers
|
---|
152 | if ( freeOnly ) {
|
---|
153 | for ( Type::ForallList::const_iterator tyvar = type->get_forall().begin(); tyvar != type->get_forall().end(); ++tyvar ) {
|
---|
154 | boundVars.insert( (*tyvar )->get_name() );
|
---|
155 | } // for
|
---|
156 | } // if
|
---|
157 | Type *ret = Mutator::mutate( type );
|
---|
158 | return ret;
|
---|
159 | }
|
---|
160 |
|
---|
161 | template< typename TypeClass >
|
---|
162 | Type *TypeSubstitution::handleAggregateType( TypeClass *type ) {
|
---|
163 | ValueGuard<BoundVarsType> oldBoundVars( boundVars );
|
---|
164 | // bind type variables from forall-qualifiers
|
---|
165 | if ( freeOnly ) {
|
---|
166 | for ( Type::ForallList::const_iterator tyvar = type->get_forall().begin(); tyvar != type->get_forall().end(); ++tyvar ) {
|
---|
167 | boundVars.insert( (*tyvar )->get_name() );
|
---|
168 | } // for
|
---|
169 | // bind type variables from generic type instantiations
|
---|
170 | std::list< TypeDecl* > *baseParameters = type->get_baseParameters();
|
---|
171 | if ( baseParameters && ! type->get_parameters().empty() ) {
|
---|
172 | for ( std::list< TypeDecl* >::const_iterator tyvar = baseParameters->begin(); tyvar != baseParameters->end(); ++tyvar ) {
|
---|
173 | boundVars.insert( (*tyvar)->get_name() );
|
---|
174 | } // for
|
---|
175 | } // if
|
---|
176 | } // if
|
---|
177 | Type *ret = Mutator::mutate( type );
|
---|
178 | return ret;
|
---|
179 | }
|
---|
180 |
|
---|
181 | Type * TypeSubstitution::mutate( VoidType *voidType ) {
|
---|
182 | return handleType( voidType );
|
---|
183 | }
|
---|
184 |
|
---|
185 | Type * TypeSubstitution::mutate( BasicType *basicType ) {
|
---|
186 | return handleType( basicType );
|
---|
187 | }
|
---|
188 |
|
---|
189 | Type * TypeSubstitution::mutate( PointerType *pointerType ) {
|
---|
190 | return handleType( pointerType );
|
---|
191 | }
|
---|
192 |
|
---|
193 | Type * TypeSubstitution::mutate( ArrayType *arrayType ) {
|
---|
194 | return handleType( arrayType );
|
---|
195 | }
|
---|
196 |
|
---|
197 | Type * TypeSubstitution::mutate( FunctionType *functionType ) {
|
---|
198 | return handleType( functionType );
|
---|
199 | }
|
---|
200 |
|
---|
201 | Type * TypeSubstitution::mutate( StructInstType *aggregateUseType ) {
|
---|
202 | return handleAggregateType( aggregateUseType );
|
---|
203 | }
|
---|
204 |
|
---|
205 | Type * TypeSubstitution::mutate( UnionInstType *aggregateUseType ) {
|
---|
206 | return handleAggregateType( aggregateUseType );
|
---|
207 | }
|
---|
208 |
|
---|
209 | Type * TypeSubstitution::mutate( EnumInstType *aggregateUseType ) {
|
---|
210 | return handleType( aggregateUseType );
|
---|
211 | }
|
---|
212 |
|
---|
213 | Type * TypeSubstitution::mutate( TraitInstType *aggregateUseType ) {
|
---|
214 | return handleType( aggregateUseType );
|
---|
215 | }
|
---|
216 |
|
---|
217 | Type * TypeSubstitution::mutate( TupleType *tupleType ) {
|
---|
218 | return handleType( tupleType );
|
---|
219 | }
|
---|
220 |
|
---|
221 | Type * TypeSubstitution::mutate( VarArgsType *varArgsType ) {
|
---|
222 | return handleType( varArgsType );
|
---|
223 | }
|
---|
224 |
|
---|
225 | Type * TypeSubstitution::mutate( ZeroType *zeroType ) {
|
---|
226 | return handleType( zeroType );
|
---|
227 | }
|
---|
228 |
|
---|
229 | Type * TypeSubstitution::mutate( OneType *oneType ) {
|
---|
230 | return handleType( oneType );
|
---|
231 | }
|
---|
232 |
|
---|
233 | void TypeSubstitution::print( std::ostream &os, Indenter indent ) const {
|
---|
234 | os << indent << "Types:" << std::endl;
|
---|
235 | for ( TypeEnvType::const_iterator i = typeEnv.begin(); i != typeEnv.end(); ++i ) {
|
---|
236 | os << indent+1 << i->first << " -> ";
|
---|
237 | i->second->print( os, indent+2 );
|
---|
238 | os << std::endl;
|
---|
239 | } // for
|
---|
240 | os << indent << "Non-types:" << std::endl;
|
---|
241 | for ( VarEnvType::const_iterator i = varEnv.begin(); i != varEnv.end(); ++i ) {
|
---|
242 | os << indent+1 << i->first << " -> ";
|
---|
243 | i->second->print( os, indent+2 );
|
---|
244 | os << std::endl;
|
---|
245 | } // for
|
---|
246 | }
|
---|
247 |
|
---|
248 | std::ostream & operator<<( std::ostream & out, const TypeSubstitution & sub ) {
|
---|
249 | sub.print( out );
|
---|
250 | return out;
|
---|
251 | }
|
---|
252 |
|
---|
253 |
|
---|
254 | // Local Variables: //
|
---|
255 | // tab-width: 4 //
|
---|
256 | // mode: c++ //
|
---|
257 | // compile-command: "make install" //
|
---|
258 | // End: //
|
---|