source: src/SynTree/TypeSubstitution.cc @ 7bb6bd8

ADTarm-ehast-experimentalcleanup-dtorsenumforall-pointer-decayjacob/cs343-translationjenkins-sandboxnew-astnew-ast-unique-exprpthread-emulationqualifiedEnum
Last change on this file since 7bb6bd8 was 02fdb8e, checked in by Thierry Delisle <tdelisle@…>, 5 years ago

Added WithConstTypeSubstitution? accessory on pass visitor.
Mostly exploratory work, figuring out what can be const

  • Property mode set to 100644
File size: 7.5 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 <ostream>  // for ostream, basic_ostream, operator<<, endl
17
18#include "Type.h"   // for TypeInstType, Type, StructInstType, UnionInstType
19#include "TypeSubstitution.h"
20
21TypeSubstitution::TypeSubstitution() {
22}
23
24TypeSubstitution::TypeSubstitution( const TypeSubstitution &other ) {
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->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
58void 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
66void 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
74Type *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
104bool TypeSubstitution::empty() const {
105        return typeEnv.empty() && varEnv.empty();
106}
107
108namespace {
109        struct EnvTrimmer {
110                const TypeSubstitution * env;
111                TypeSubstitution * newEnv;
112                EnvTrimmer( const TypeSubstitution * env, TypeSubstitution * newEnv ) : env( env ), newEnv( newEnv ){}
113                void previsit( TypeDecl * tyDecl ) {
114                        // transfer known bindings for seen type variables
115                        if ( Type * t = env->lookup( tyDecl->name ) ) {
116                                newEnv->add( tyDecl->name, t );
117                        }
118                }
119        };
120} // namespace
121
122/// reduce environment to just the parts that are referenced in a given expression
123TypeSubstitution * TypeSubstitution::newFromExpr( Expression * expr, const TypeSubstitution * env ) {
124        if ( env ) {
125                TypeSubstitution * newEnv = new TypeSubstitution();
126                PassVisitor<EnvTrimmer> trimmer( env, newEnv );
127                expr->accept( trimmer );
128                return newEnv;
129        }
130        return nullptr;
131}
132
133void TypeSubstitution::normalize() {
134        PassVisitor<Substituter> sub( *this, true );
135        do {
136                sub.pass.subCount = 0;
137                sub.pass.freeOnly = true;
138                for ( TypeEnvType::iterator i = typeEnv.begin(); i != typeEnv.end(); ++i ) {
139                        i->second = i->second->acceptMutator( sub );
140                }
141        } while ( sub.pass.subCount );
142}
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->get_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 = dynamic_cast< TypeInstType * >( i->second ) ) {
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
217void TypeSubstitution::print( std::ostream &os, Indenter indent ) const {
218        os << indent << "Types:" << std::endl;
219        for ( TypeEnvType::const_iterator i = typeEnv.begin(); i != typeEnv.end(); ++i ) {
220                os << indent+1 << i->first << " -> ";
221                i->second->print( os, indent+2 );
222                os << std::endl;
223        } // for
224        os << indent << "Non-types:" << std::endl;
225        for ( VarEnvType::const_iterator i = varEnv.begin(); i != varEnv.end(); ++i ) {
226                os << indent+1 << i->first << " -> ";
227                i->second->print( os, indent+2 );
228                os << std::endl;
229        } // for
230}
231
232std::ostream & operator<<( std::ostream & out, const TypeSubstitution & sub ) {
233        sub.print( out );
234        return out;
235}
236
237
238// Local Variables: //
239// tab-width: 4 //
240// mode: c++ //
241// compile-command: "make install" //
242// End: //
Note: See TracBrowser for help on using the repository browser.