source: src/SynTree/TypeSubstitution.h @ 574894d

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 574894d was e9a715d3, checked in by Rob Schluntz <rschlunt@…>, 6 years ago

Convert TypeSubstitution?'s apply functionality to PassVisitor?

  • Property mode set to 100644
File size: 7.2 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.h --
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 : Sat Jul 22 09:52:24 2017
13// Update Count     : 3
14//
15
16#pragma once
17
18#include <cassert>                 // for assert
19#include <iosfwd>                  // for ostream
20#include <list>                    // for list<>::iterator, _List_iterator
21#include <map>                     // for _Rb_tree_iterator, map, map<>::val...
22#include <set>                     // for set
23#include <string>                  // for string, operator!=
24#include <utility>                 // for pair
25
26#include "Common/SemanticError.h"  // for SemanticError
27#include "SynTree/Declaration.h"   // for TypeDecl, Declaration (ptr only)
28#include "SynTree/Expression.h"    // for Expression (ptr only), NameExpr (p...
29#include "SynTree/Type.h"          // for Type, ArrayType (ptr only), BasicT...
30
31class TypeSubstitution {
32  public:
33        TypeSubstitution();
34        template< typename FormalIterator, typename ActualIterator >
35        TypeSubstitution( FormalIterator formalBegin, FormalIterator formalEnd, ActualIterator actualBegin );
36        TypeSubstitution( const TypeSubstitution &other );
37        virtual ~TypeSubstitution();
38
39        TypeSubstitution &operator=( const TypeSubstitution &other );
40
41        template< typename SynTreeClass > int apply( SynTreeClass *&input );
42        template< typename SynTreeClass > int applyFree( SynTreeClass *&input );
43
44        void add( std::string formalType, Type *actualType );
45        void add( const TypeSubstitution &other );
46        void remove( std::string formalType );
47        Type *lookup( std::string formalType ) const;
48        bool empty() const;
49
50        template< typename FormalIterator, typename ActualIterator >
51        void add( FormalIterator formalBegin, FormalIterator formalEnd, ActualIterator actualBegin );
52
53        /// this function is unused...
54        template< typename TypeInstListIterator >
55        void extract( TypeInstListIterator begin, TypeInstListIterator end, TypeSubstitution &result );
56
57        void normalize();
58
59        TypeSubstitution * acceptMutator( Mutator & m ) { return m.mutate( this ); }
60
61        void print( std::ostream &os, Indenter indent = {} ) const;
62        TypeSubstitution *clone() const { return new TypeSubstitution( *this ); }
63  private:
64
65        // Mutator that performs the substitution
66        struct Substituter;
67
68        // TODO: worry about traversing into a forall-qualified function type or type decl with assertions
69
70        void initialize( const TypeSubstitution &src, TypeSubstitution &dest );
71
72        friend class Mutator;
73
74        template<typename pass_type>
75        friend class PassVisitor;
76
77        typedef std::map< std::string, Type* > TypeEnvType;
78        typedef std::map< std::string, Expression* > VarEnvType;
79        TypeEnvType typeEnv;
80        VarEnvType varEnv;
81};
82
83template< typename FormalIterator, typename ActualIterator >
84void TypeSubstitution::add( FormalIterator formalBegin, FormalIterator formalEnd, ActualIterator actualBegin ) {
85        // FormalIterator points to a TypeDecl
86        // ActualIterator points to a Type
87        FormalIterator formalIt = formalBegin;
88        ActualIterator actualIt = actualBegin;
89        for ( ; formalIt != formalEnd; ++formalIt, ++actualIt ) {
90                if ( TypeDecl *formal = dynamic_cast< TypeDecl* >( *formalIt ) ) {
91                        if ( TypeExpr *actual = dynamic_cast< TypeExpr* >( *actualIt ) ) {
92                                if ( formal->get_name() != "" ) {
93                                        TypeEnvType::iterator i = typeEnv.find( formal->get_name() );
94                                        if ( i != typeEnv.end() ) {
95                                                delete i->second;
96                                        } // if
97                                        typeEnv[ formal->get_name() ] = actual->get_type()->clone();
98                                } // if
99                        } else {
100                                throw SemanticError( toString( "Attempt to provide non-type parameter: ", toString( *actualIt ).c_str(), " for type parameter " ), formal );
101                        } // if
102                } else {
103                        // TODO: type check the formal and actual parameters
104                        if ( (*formalIt)->get_name() != "" ) {
105                                varEnv[ (*formalIt)->get_name() ] = (*actualIt)->clone();
106                        } // if
107                } // if
108        } // for
109}
110
111template< typename FormalIterator, typename ActualIterator >
112TypeSubstitution::TypeSubstitution( FormalIterator formalBegin, FormalIterator formalEnd, ActualIterator actualBegin ) {
113        add( formalBegin, formalEnd, actualBegin );
114}
115
116// include needs to happen after TypeSubstitution is defined so that both TypeSubstitution and
117// PassVisitor are defined before PassVisitor implementation accesses TypeSubstitution internals.
118#include "Common/PassVisitor.h"
119
120// definitition must happen after PassVisitor is included so that WithGuards can be used
121struct TypeSubstitution::Substituter : public WithGuards {
122                Substituter( TypeSubstitution & sub, bool freeOnly ) : sub( sub ), freeOnly( freeOnly ) {}
123
124                Type * postmutate( TypeInstType * aggregateUseType );
125                Expression * postmutate( NameExpr * nameExpr );
126
127                /// Records type variable bindings from forall-statements
128                void premutate( Type * type );
129                /// Records type variable bindings from forall-statements and instantiations of generic types
130                template< typename TypeClass > void handleAggregateType( TypeClass * type );
131
132                void premutate( StructInstType * aggregateUseType );
133                void premutate( UnionInstType * aggregateUseType );
134
135                TypeSubstitution & sub;
136                int subCount = 0;
137                bool freeOnly;
138                typedef std::set< std::string > BoundVarsType;
139                BoundVarsType boundVars;
140};
141
142template< typename SynTreeClass >
143int TypeSubstitution::apply( SynTreeClass *&input ) {
144        assert( input );
145        PassVisitor<Substituter> sub( *this, false );
146        input = dynamic_cast< SynTreeClass * >( input->acceptMutator( sub ) );
147        assert( input );
148///     std::cerr << "substitution result is: ";
149///     newType->print( std::cerr );
150///     std::cerr << std::endl;
151        return sub.pass.subCount;
152}
153
154template< typename SynTreeClass >
155int TypeSubstitution::applyFree( SynTreeClass *&input ) {
156        assert( input );
157        PassVisitor<Substituter> sub( *this, true );
158        input = dynamic_cast< SynTreeClass * >( input->acceptMutator( sub ) );
159        assert( input );
160///     std::cerr << "substitution result is: ";
161///     newType->print( std::cerr );
162///     std::cerr << std::endl;
163        return sub.pass.subCount;
164}
165
166template< typename TypeInstListIterator >
167void TypeSubstitution::extract( TypeInstListIterator begin, TypeInstListIterator end, TypeSubstitution &result ) {
168        // xxx - this function doesn't extract varEnv - is this intentional?
169        while ( begin != end ) {
170                TypeEnvType::iterator cur = typeEnv.find( (*begin++)->get_name() );
171                if ( cur != typeEnv.end() ) {
172                        result.typeEnv[ cur->first ] = cur->second;
173                        typeEnv.erase( cur );
174                } // if
175        } // while
176}
177
178/// Instantiate each member of the context given the actual parameters specified, and store the
179/// instantiations for use by the indexer
180template< typename FormalIterator, typename ActualIterator, typename MemberIterator, typename OutputIterator >
181void applySubstitution( FormalIterator formalBegin, FormalIterator formalEnd, ActualIterator actual, MemberIterator memberBegin, MemberIterator memberEnd, OutputIterator out ) {
182        TypeSubstitution sub = TypeSubstitution( formalBegin, formalEnd, actual );
183        for ( auto i = memberBegin; i != memberEnd; ++i ) {
184                sub.apply( *i );
185                *out++ = *i;
186        } // for
187}
188
189std::ostream & operator<<( std::ostream & out, const TypeSubstitution & sub );
190
191// Local Variables: //
192// tab-width: 4 //
193// mode: c++ //
194// compile-command: "make install" //
195// End: //
Note: See TracBrowser for help on using the repository browser.