source: src/SynTree/TypeSubstitution.h @ aefcc3b

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 aefcc3b was 79970ed, checked in by Rob Schluntz <rschlunt@…>, 8 years ago

implement warnings for missing struct member constructor calls, remove bad clones

  • Property mode set to 100644
File size: 6.5 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.h --
[0dd3a2f]8//
9// Author           : Richard C. Bilson
10// Created On       : Mon May 18 07:44:20 2015
[5382492]11// Last Modified By : Rob Schluntz
[540de412]12// Last Modified On : Fri Apr 29 15:00:20 2016
[4040425]13// Update Count     : 2
[0dd3a2f]14//
[51b7345]15
[0dd3a2f]16#ifndef TYPESUBSTITUTION_H
17#define TYPESUBSTITUTION_H
[51b7345]18
19#include <map>
20#include <set>
21#include <cassert>
22
23#include "SynTree/Mutator.h"
24#include "SynTree/Declaration.h"
25#include "SynTree/Expression.h"
26
[0dd3a2f]27class TypeSubstitution : public Mutator {
28        typedef Mutator Parent;
29  public:
30        TypeSubstitution();
31        template< typename FormalIterator, typename ActualIterator >
32        TypeSubstitution( FormalIterator formalBegin, FormalIterator formalEnd, ActualIterator actualBegin );
33        TypeSubstitution( const TypeSubstitution &other );
34        virtual ~TypeSubstitution();
[5382492]35
[0dd3a2f]36        TypeSubstitution &operator=( const TypeSubstitution &other );
[5382492]37
[0dd3a2f]38        template< typename SynTreeClass > int apply( SynTreeClass *&input );
39        template< typename SynTreeClass > int applyFree( SynTreeClass *&input );
[5382492]40
[0dd3a2f]41        void add( std::string formalType, Type *actualType );
42        void add( const TypeSubstitution &other );
43        void remove( std::string formalType );
44        Type *lookup( std::string formalType ) const;
45        bool empty() const;
[5382492]46
[0dd3a2f]47        template< typename FormalIterator, typename ActualIterator >
48        void add( FormalIterator formalBegin, FormalIterator formalEnd, ActualIterator actualBegin );
[5382492]49
[540de412]50        /// this function is unused...
[0dd3a2f]51        template< typename TypeInstListIterator >
52        void extract( TypeInstListIterator begin, TypeInstListIterator end, TypeSubstitution &result );
[5382492]53
[0dd3a2f]54        void normalize();
[51b7345]55
[0dd3a2f]56        void print( std::ostream &os, int indent = 0 ) const;
57        TypeSubstitution *clone() const { return new TypeSubstitution( *this ); }
58  private:
59        virtual Type* mutate(TypeInstType *aggregateUseType);
60        virtual Expression* mutate(NameExpr *nameExpr);
[37a3b8f9]61
62        /// Records type variable bindings from forall-statements
[0dd3a2f]63        template< typename TypeClass > Type *handleType( TypeClass *type );
[37a3b8f9]64        /// Records type variable bindings from forall-statements and instantiations of generic types
65        template< typename TypeClass > Type *handleAggregateType( TypeClass *type );
[5382492]66
[0dd3a2f]67        virtual Type* mutate(VoidType *basicType);
68        virtual Type* mutate(BasicType *basicType);
69        virtual Type* mutate(PointerType *pointerType);
70        virtual Type* mutate(ArrayType *arrayType);
71        virtual Type* mutate(FunctionType *functionType);
72        virtual Type* mutate(StructInstType *aggregateUseType);
73        virtual Type* mutate(UnionInstType *aggregateUseType);
74        virtual Type* mutate(EnumInstType *aggregateUseType);
[4040425]75        virtual Type* mutate(TraitInstType *aggregateUseType);
[0dd3a2f]76        virtual Type* mutate(TupleType *tupleType);
[44b7088]77        virtual Type* mutate(VarArgsType *varArgsType);
[5382492]78
[0dd3a2f]79        // TODO: worry about traversing into a forall-qualified function type or type decl with assertions
[5382492]80
[0dd3a2f]81        void initialize( const TypeSubstitution &src, TypeSubstitution &dest );
[51b7345]82
[0dd3a2f]83        typedef std::map< std::string, Type* > TypeEnvType;
84        typedef std::map< std::string, Expression* > VarEnvType;
85        typedef std::set< std::string > BoundVarsType;
86        TypeEnvType typeEnv;
87        VarEnvType varEnv;
88        BoundVarsType boundVars;
89        int subCount;
90        bool freeOnly;
[51b7345]91};
92
93template< typename FormalIterator, typename ActualIterator >
[0dd3a2f]94void TypeSubstitution::add( FormalIterator formalBegin, FormalIterator formalEnd, ActualIterator actualBegin ) {
95        // FormalIterator points to a TypeDecl
96        // ActualIterator points to a Type
97        FormalIterator formalIt = formalBegin;
98        ActualIterator actualIt = actualBegin;
99        for ( ; formalIt != formalEnd; ++formalIt, ++actualIt ) {
100                if ( TypeDecl *formal = dynamic_cast< TypeDecl* >( *formalIt ) ) {
101                        if ( TypeExpr *actual = dynamic_cast< TypeExpr* >( *actualIt ) ) {
102                                if ( formal->get_name() != "" ) {
103                                        TypeEnvType::iterator i = typeEnv.find( formal->get_name() );
104                                        if ( i != typeEnv.end() ) {
105                                                delete i->second;
106                                        } // if
107                                        typeEnv[ formal->get_name() ] = actual->get_type()->clone();
108                                } // if
109                        } else {
110                                throw SemanticError( "Attempt to provide non-type parameter for type parameter", formal );
111                        } // if
112                } else {
113                        // TODO: type check the formal and actual parameters
114                        if ( (*formalIt)->get_name() != "" ) {
115                                varEnv[ (*formalIt)->get_name() ] = (*actualIt)->clone();
116                        } // if
117                } // if
118        } // for
[51b7345]119}
120
121template< typename FormalIterator, typename ActualIterator >
122TypeSubstitution::TypeSubstitution( FormalIterator formalBegin, FormalIterator formalEnd, ActualIterator actualBegin )
123{
[0dd3a2f]124        add( formalBegin, formalEnd, actualBegin );
[51b7345]125}
126
127template< typename SynTreeClass >
[0dd3a2f]128int TypeSubstitution::apply( SynTreeClass *&input ) {
129        assert( input );
130        subCount = 0;
131        freeOnly = false;
132        input = dynamic_cast< SynTreeClass *>( input->acceptMutator( *this ) );
133        assert( input );
[51b7345]134///     std::cout << "substitution result is: ";
135///     newType->print( std::cout );
136///     std::cout << std::endl;
[0dd3a2f]137        return subCount;
[51b7345]138}
[5382492]139
[51b7345]140template< typename SynTreeClass >
[0dd3a2f]141int TypeSubstitution::applyFree( SynTreeClass *&input ) {
142        assert( input );
143        subCount = 0;
144        freeOnly = true;
145        input = dynamic_cast< SynTreeClass *>( input->acceptMutator( *this ) );
146        assert( input );
[51b7345]147///     std::cout << "substitution result is: ";
148///     newType->print( std::cout );
149///     std::cout << std::endl;
[0dd3a2f]150        return subCount;
[51b7345]151}
[5382492]152
[51b7345]153template< typename TypeInstListIterator >
[0dd3a2f]154void TypeSubstitution::extract( TypeInstListIterator begin, TypeInstListIterator end, TypeSubstitution &result ) {
[d8ba086]155        // xxx - this function doesn't extract varEnv - is this intentional?
[0dd3a2f]156        while ( begin != end ) {
157                TypeEnvType::iterator cur = typeEnv.find( (*begin++)->get_name() );
158                if ( cur != typeEnv.end() ) {
159                        result.typeEnv[ cur->first ] = cur->second;
160                        typeEnv.erase( cur );
161                } // if
162        } // while
[51b7345]163}
164
[82dd287]165/// Instantiate each member of the context given the actual parameters specified, and store the
166/// instantiations for use by the indexer
[51b7345]167template< typename FormalIterator, typename ActualIterator, typename MemberIterator, typename OutputIterator >
[0dd3a2f]168void applySubstitution( FormalIterator formalBegin, FormalIterator formalEnd, ActualIterator actual, MemberIterator memberBegin, MemberIterator memberEnd, OutputIterator out ) {
169        TypeSubstitution sub = TypeSubstitution( formalBegin, formalEnd, actual );
170        for ( std::list< Declaration* >::iterator i = memberBegin; i != memberEnd; ++i ) {
[79970ed]171                sub.apply( *i );
172                *out++ = *i;
[0dd3a2f]173        } // for
[51b7345]174}
175
[5382492]176std::ostream & operator<<( std::ostream & out, const TypeSubstitution & sub );
177
[0dd3a2f]178#endif // TYPESUBSTITUTION_H
[51b7345]179
[0dd3a2f]180// Local Variables: //
181// tab-width: 4 //
182// mode: c++ //
183// compile-command: "make install" //
184// End: //
Note: See TracBrowser for help on using the repository browser.