source: src/SynTree/TypeSubstitution.cc @ 447c356

ADTaaron-thesisarm-ehast-experimentalcleanup-dtorsdeferred_resndemanglerenumforall-pointer-decayjacob/cs343-translationjenkins-sandboxnew-astnew-ast-unique-exprnew-envno_listpersistent-indexerpthread-emulationqualifiedEnumresolv-newwith_gc
Last change on this file since 447c356 was 447c356, checked in by Rob Schluntz <rschlunt@…>, 7 years ago

Add support for TypeSubstitution? in PassVisitor?

  • Property mode set to 100644
File size: 7.3 KB
RevLine 
[0dd3a2f]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//
[5382492]7// TypeSubstitution.cc --
[0dd3a2f]8//
9// Author           : Richard C. Bilson
10// Created On       : Mon May 18 07:44:20 2015
[6f95000]11// Last Modified By : Peter A. Buhr
12// Last Modified On : Thu Mar 16 15:54:35 2017
13// Update Count     : 4
[0dd3a2f]14//
[51b7345]15
[ea6332d]16#include <ostream>  // for ostream, basic_ostream, operator<<, endl
17
18#include "Type.h"   // for TypeInstType, Type, StructInstType, UnionInstType
[51b7345]19#include "TypeSubstitution.h"
20
[0dd3a2f]21TypeSubstitution::TypeSubstitution() {
22}
[51b7345]23
[0dd3a2f]24TypeSubstitution::TypeSubstitution( const TypeSubstitution &other ) {
25        initialize( other, *this );
[51b7345]26}
27
[0dd3a2f]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        }
[51b7345]35}
36
[0dd3a2f]37TypeSubstitution &TypeSubstitution::operator=( const TypeSubstitution &other ) {
38        if ( this == &other ) return *this;
39        initialize( other, *this );
40        return *this;
[51b7345]41}
42
[0dd3a2f]43void TypeSubstitution::initialize( const TypeSubstitution &src, TypeSubstitution &dest ) {
44        dest.typeEnv.clear();
45        dest.varEnv.clear();
46        dest.add( src );
[51b7345]47}
48
[0dd3a2f]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
[51b7345]56}
57
[0dd3a2f]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();
[51b7345]64}
65
[0dd3a2f]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
[51b7345]72}
73
[0dd3a2f]74Type *TypeSubstitution::lookup( std::string formalType ) const {
75        TypeEnvType::const_iterator i = typeEnv.find( formalType );
[8c49c0e]76
[084184b]77        // break on not in substitution set
78        if ( i == typeEnv.end() ) return 0;
[8c49c0e]79
[084184b]80        // attempt to transitively follow TypeInstType links.
81        while ( TypeInstType *actualType = dynamic_cast< TypeInstType* >( i->second ) ) {
82                const std::string& typeName = actualType->get_name();
[8c49c0e]83
[084184b]84                // break cycles in the transitive follow
85                if ( formalType == typeName ) break;
[8c49c0e]86
[084184b]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        }
[8c49c0e]91
[084184b]92        // return type from substitution set
93        return i->second;
[8c49c0e]94
[084184b]95#if 0
[0dd3a2f]96        if ( i == typeEnv.end() ) {
97                return 0;
98        } else {
99                return i->second;
100        } // if
[084184b]101#endif
[51b7345]102}
103
[0dd3a2f]104bool TypeSubstitution::empty() const {
105        return typeEnv.empty() && varEnv.empty();
[51b7345]106}
107
[0dd3a2f]108void 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 );
[51b7345]116}
117
[0dd3a2f]118Type * TypeSubstitution::mutate( TypeInstType *inst ) {
119        BoundVarsType::const_iterator bound = boundVars.find( inst->get_name() );
120        if ( bound != boundVars.end() ) return inst;
[5382492]121
[0dd3a2f]122        TypeEnvType::const_iterator i = typeEnv.find( inst->get_name() );
123        if ( i == typeEnv.end() ) {
124                return inst;
125        } else {
[51b7345]126///         std::cout << "found " << inst->get_name() << ", replacing with ";
127///         i->second->print( std::cout );
128///         std::cout << std::endl;
[0dd3a2f]129                subCount++;
130                Type *newtype = i->second->clone();
[6f95000]131                newtype->get_qualifiers() |= inst->get_qualifiers();
[0dd3a2f]132                delete inst;
133                return newtype;
134        } // if
135}
136
137Expression * 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
[51b7345]146}
147
148template< typename TypeClass >
[0dd3a2f]149Type *TypeSubstitution::handleType( TypeClass *type ) {
[447c356]150        ValueGuard<BoundVarsType> oldBoundVars( boundVars );
[37a3b8f9]151        // bind type variables from forall-qualifiers
[0dd3a2f]152        if ( freeOnly ) {
[8c49c0e]153                for ( Type::ForallList::const_iterator tyvar = type->get_forall().begin(); tyvar != type->get_forall().end(); ++tyvar ) {
[0dd3a2f]154                        boundVars.insert( (*tyvar )->get_name() );
155                } // for
156        } // if
157        Type *ret = Mutator::mutate( type );
158        return ret;
[51b7345]159}
160
[37a3b8f9]161template< typename TypeClass >
162Type *TypeSubstitution::handleAggregateType( TypeClass *type ) {
[447c356]163        ValueGuard<BoundVarsType> oldBoundVars( boundVars );
[37a3b8f9]164        // bind type variables from forall-qualifiers
165        if ( freeOnly ) {
[8c49c0e]166                for ( Type::ForallList::const_iterator tyvar = type->get_forall().begin(); tyvar != type->get_forall().end(); ++tyvar ) {
[37a3b8f9]167                        boundVars.insert( (*tyvar )->get_name() );
168                } // for
[c7a3081]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
[ed94eac]176        } // if
[37a3b8f9]177        Type *ret = Mutator::mutate( type );
178        return ret;
179}
180
[89e6ffc]181Type * TypeSubstitution::mutate( VoidType *voidType ) {
182        return handleType( voidType );
[51b7345]183}
184
[0dd3a2f]185Type * TypeSubstitution::mutate( BasicType *basicType ) {
186        return handleType( basicType );
[51b7345]187}
188
[0dd3a2f]189Type * TypeSubstitution::mutate( PointerType *pointerType ) {
190        return handleType( pointerType );
[51b7345]191}
192
[0dd3a2f]193Type * TypeSubstitution::mutate( ArrayType *arrayType ) {
194        return handleType( arrayType );
[51b7345]195}
196
[0dd3a2f]197Type * TypeSubstitution::mutate( FunctionType *functionType ) {
198        return handleType( functionType );
[51b7345]199}
200
[0dd3a2f]201Type * TypeSubstitution::mutate( StructInstType *aggregateUseType ) {
[37a3b8f9]202        return handleAggregateType( aggregateUseType );
[51b7345]203}
204
[0dd3a2f]205Type * TypeSubstitution::mutate( UnionInstType *aggregateUseType ) {
[37a3b8f9]206        return handleAggregateType( aggregateUseType );
[51b7345]207}
208
[0dd3a2f]209Type * TypeSubstitution::mutate( EnumInstType *aggregateUseType ) {
210        return handleType( aggregateUseType );
[51b7345]211}
212
[4040425]213Type * TypeSubstitution::mutate( TraitInstType *aggregateUseType ) {
[0dd3a2f]214        return handleType( aggregateUseType );
[51b7345]215}
216
[0dd3a2f]217Type * TypeSubstitution::mutate( TupleType *tupleType ) {
218        return handleType( tupleType );
[51b7345]219}
220
[44b7088]221Type * TypeSubstitution::mutate( VarArgsType *varArgsType ) {
222        return handleType( varArgsType );
223}
224
[89e6ffc]225Type * TypeSubstitution::mutate( ZeroType *zeroType ) {
226        return handleType( zeroType );
227}
228
229Type * TypeSubstitution::mutate( OneType *oneType ) {
230        return handleType( oneType );
231}
232
[50377a4]233void TypeSubstitution::print( std::ostream &os, Indenter indent ) const {
234        os << indent << "Types:" << std::endl;
[0dd3a2f]235        for ( TypeEnvType::const_iterator i = typeEnv.begin(); i != typeEnv.end(); ++i ) {
[50377a4]236                os << indent+1 << i->first << " -> ";
237                i->second->print( os, indent+2 );
[0dd3a2f]238                os << std::endl;
239        } // for
[50377a4]240        os << indent << "Non-types:" << std::endl;
[0dd3a2f]241        for ( VarEnvType::const_iterator i = varEnv.begin(); i != varEnv.end(); ++i ) {
[50377a4]242                os << indent+1 << i->first << " -> ";
243                i->second->print( os, indent+2 );
[0dd3a2f]244                os << std::endl;
245        } // for
[51b7345]246}
247
[5382492]248std::ostream & operator<<( std::ostream & out, const TypeSubstitution & sub ) {
249        sub.print( out );
250        return out;
251}
252
253
[0dd3a2f]254// Local Variables: //
255// tab-width: 4 //
256// mode: c++ //
257// compile-command: "make install" //
258// End: //
Note: See TracBrowser for help on using the repository browser.