source: src/AST/TypeSubstitution.cpp@ f23de79d

ADT arm-eh ast-experimental cleanup-dtors enum forall-pointer-decay jacob/cs343-translation jenkins-sandbox new-ast new-ast-unique-expr pthread-emulation qualifiedEnum
Last change on this file since f23de79d was 172d9342, checked in by Michael Brooks <mlbrooks@…>, 6 years ago

added old-to-new conversion for TypeSubstitution, within a framework for expressions

  • Property mode set to 100644
File size: 6.8 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// 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 "Type.hpp" // for TypeInstType, Type, StructInstType, UnionInstType
17#include "TypeSubstitution.hpp"
18
19namespace ast {
20
21TypeSubstitution::TypeSubstitution() {
22}
23
24TypeSubstitution::TypeSubstitution( const TypeSubstitution &other ) : Node() {
25 initialize( other, *this );
26}
27
28TypeSubstitution::~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
37TypeSubstitution &TypeSubstitution::operator=( const TypeSubstitution &other ) {
38 if ( this == &other ) return *this;
39 initialize( other, *this );
40 return *this;
41}
42
43void TypeSubstitution::initialize( const TypeSubstitution &src, TypeSubstitution &dest ) {
44 dest.typeEnv.clear();
45 dest.varEnv.clear();
46 dest.add( src );
47}
48
49void 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;
52 } // for
53 for ( VarEnvType::const_iterator i = other.varEnv.begin(); i != other.varEnv.end(); ++i ) {
54 varEnv[ i->first ] = i->second;
55 } // for
56}
57
58void TypeSubstitution::add( std::string formalType, const Type *actualType ) {
59 typeEnv[ formalType ] = actualType;
60}
61
62void TypeSubstitution::addVar( std::string formalExpr, const Expr *actualExpr ) {
63 varEnv[ formalExpr ] = actualExpr;
64}
65
66void TypeSubstitution::remove( std::string formalType ) {
67 TypeEnvType::iterator i = typeEnv.find( formalType );
68 if ( i != typeEnv.end() ) {
69 typeEnv.erase( formalType );
70 } // if
71}
72
73const Type *TypeSubstitution::lookup( std::string formalType ) const {
74 TypeEnvType::const_iterator i = typeEnv.find( formalType );
75
76 // break on not in substitution set
77 if ( i == typeEnv.end() ) return 0;
78
79 // attempt to transitively follow TypeInstType links.
80 while ( const TypeInstType *actualType = i->second.as<TypeInstType>()) {
81 const std::string& typeName = actualType->name;
82
83 // break cycles in the transitive follow
84 if ( formalType == typeName ) break;
85
86 // Look for the type this maps to, returning previous mapping if none-such
87 i = typeEnv.find( typeName );
88 if ( i == typeEnv.end() ) return actualType;
89 }
90
91 // return type from substitution set
92 return i->second;
93}
94
95bool TypeSubstitution::empty() const {
96 return typeEnv.empty() && varEnv.empty();
97}
98
99namespace {
100 struct EnvTrimmer {
101 ptr<TypeSubstitution> env;
102 TypeSubstitution * newEnv;
103 EnvTrimmer( const TypeSubstitution * env, TypeSubstitution * newEnv ) : env( env ), newEnv( newEnv ){}
104 void previsit( TypeDecl * tyDecl ) {
105 // transfer known bindings for seen type variables
106 if ( const Type * t = env->lookup( tyDecl->name ) ) {
107 newEnv->add( tyDecl->name, t );
108 }
109 }
110 };
111} // namespace
112
113/// reduce environment to just the parts that are referenced in a given expression
114TypeSubstitution * TypeSubstitution::newFromExpr( const Expr * expr, const TypeSubstitution * env ) {
115 if ( env ) {
116 TypeSubstitution * newEnv = new TypeSubstitution();
117#if TIME_TO_CONVERT_PASSES
118 Pass<EnvTrimmer> trimmer( env, newEnv );
119 expr->accept( trimmer );
120#else
121 (void)expr;
122 (void)env;
123#endif
124 return newEnv;
125 }
126 return nullptr;
127}
128
129void TypeSubstitution::normalize() {
130#if TIME_TO_CONVERT_PASSES
131 PassVisitor<Substituter> sub( *this, true );
132 do {
133 sub.pass.subCount = 0;
134 sub.pass.freeOnly = true;
135 for ( TypeEnvType::iterator i = typeEnv.begin(); i != typeEnv.end(); ++i ) {
136 i->second = i->second->acceptMutator( sub );
137 }
138 } while ( sub.pass.subCount );
139#endif
140}
141
142#if TIME_TO_CONVERT_PASSES
143
144Type * TypeSubstitution::Substituter::postmutate( TypeInstType *inst ) {
145 BoundVarsType::const_iterator bound = boundVars.find( inst->name );
146 if ( bound != boundVars.end() ) return inst;
147
148 TypeEnvType::const_iterator i = sub.typeEnv.find( inst->name );
149 if ( i == sub.typeEnv.end() ) {
150 return inst;
151 } else {
152 // cut off infinite loop for the case where a type is bound to itself.
153 // Note: this does not prevent cycles in the general case, so it may be necessary to do something more sophisticated here.
154 // TODO: investigate preventing type variables from being bound to themselves in the first place.
155 if ( TypeInstType * replacement = i->second.as<TypeInstType>() ) {
156 if ( inst->name == replacement->name ) {
157 return inst;
158 }
159 }
160 // std::cerr << "found " << inst->name << ", replacing with " << i->second << std::endl;
161 subCount++;
162 Type * newtype = i->second->clone();
163 newtype->get_qualifiers() |= inst->get_qualifiers();
164 delete inst;
165 // Note: need to recursively apply substitution to the new type because normalize does not substitute bound vars, but bound vars must be substituted when not in freeOnly mode.
166 return newtype->acceptMutator( *visitor );
167 } // if
168}
169
170Expression * TypeSubstitution::Substituter::postmutate( NameExpr * nameExpr ) {
171 VarEnvType::const_iterator i = sub.varEnv.find( nameExpr->name );
172 if ( i == sub.varEnv.end() ) {
173 return nameExpr;
174 } else {
175 subCount++;
176 delete nameExpr;
177 return i->second->clone();
178 } // if
179}
180
181void TypeSubstitution::Substituter::premutate( Type * type ) {
182 GuardValue( boundVars );
183 // bind type variables from forall-qualifiers
184 if ( freeOnly ) {
185 for ( Type::ForallList::const_iterator tyvar = type->forall.begin(); tyvar != type->forall.end(); ++tyvar ) {
186 boundVars.insert( (*tyvar)->name );
187 } // for
188 } // if
189}
190
191template< typename TypeClass >
192void TypeSubstitution::Substituter::handleAggregateType( TypeClass * type ) {
193 GuardValue( boundVars );
194 // bind type variables from forall-qualifiers
195 if ( freeOnly ) {
196 for ( Type::ForallList::const_iterator tyvar = type->forall.begin(); tyvar != type->forall.end(); ++tyvar ) {
197 boundVars.insert( (*tyvar)->name );
198 } // for
199 // bind type variables from generic type instantiations
200 std::list< TypeDecl* > *baseParameters = type->get_baseParameters();
201 if ( baseParameters && ! type->parameters.empty() ) {
202 for ( std::list< TypeDecl* >::const_iterator tyvar = baseParameters->begin(); tyvar != baseParameters->end(); ++tyvar ) {
203 boundVars.insert( (*tyvar)->name );
204 } // for
205 } // if
206 } // if
207}
208
209void TypeSubstitution::Substituter::premutate( StructInstType * aggregateUseType ) {
210 handleAggregateType( aggregateUseType );
211}
212
213void TypeSubstitution::Substituter::premutate( UnionInstType *aggregateUseType ) {
214 handleAggregateType( aggregateUseType );
215}
216
217#endif
218
219} // namespace ast
220
221// Local Variables: //
222// tab-width: 4 //
223// mode: c++ //
224// compile-command: "make install" //
225// End: //
Note: See TracBrowser for help on using the repository browser.