Ignore:
File:
1 edited

Legend:

Unmodified
Added
Removed
  • src/GenPoly/Box.cc

    r8a34677 r4e284ea6  
    3030#include "FindFunction.h"
    3131#include "ScopedMap.h"
    32 #include "ScopedSet.h"
    3332#include "ScrubTyVars.h"
    3433
     
    6362                FunctionType *makeAdapterType( FunctionType *adaptee, const TyVarMap &tyVars );
    6463
    65                 /// Abstracts type equality for a list of parameter types
    66                 struct TypeList {
    67                         TypeList() : params() {}
    68                         TypeList( const std::list< Type* > &_params ) : params() { cloneAll(_params, params); }
    69                         TypeList( std::list< Type* > &&_params ) : params( _params ) {}
    70 
    71                         TypeList( const TypeList &that ) : params() { cloneAll(that.params, params); }
    72                         TypeList( TypeList &&that ) : params( std::move( that.params ) ) {}
     64                /// Key for a unique concrete type; generic base type paired with type parameter list
     65                struct ConcreteType {
     66                        ConcreteType() : base(NULL), params() {}
     67
     68                        ConcreteType(AggregateDecl *_base, const std::list< Type* >& _params) : base(_base), params() { cloneAll(_params, params); }
     69
     70                        ConcreteType(const ConcreteType& that) : base(that.base), params() { cloneAll(that.params, params); }
    7371
    7472                        /// Extracts types from a list of TypeExpr*
    75                         TypeList( const std::list< TypeExpr* >& _params ) : params() {
     73                        ConcreteType(AggregateDecl *_base, const std::list< TypeExpr* >& _params) : base(_base), params() {
    7674                                for ( std::list< TypeExpr* >::const_iterator param = _params.begin(); param != _params.end(); ++param ) {
    7775                                        params.push_back( (*param)->get_type()->clone() );
     
    7977                        }
    8078
    81                         TypeList& operator= ( const TypeList &that ) {
     79                        ConcreteType& operator= (const ConcreteType& that) {
    8280                                deleteAll( params );
    83 
    8481                                params.clear();
     82
     83                                base = that.base;
    8584                                cloneAll( that.params, params );
    8685
     
    8887                        }
    8988
    90                         TypeList& operator= ( TypeList &&that ) {
    91                                 deleteAll( params );
    92 
    93                                 params = std::move( that.params );
    94 
    95                                 return *this;
    96                         }
    97 
    98                         ~TypeList() { deleteAll( params ); }
    99 
    100                         bool operator== ( const TypeList& that ) const {
     89                        ~ConcreteType() { deleteAll( params ); }
     90
     91                        bool operator== (const ConcreteType& that) const {
     92                                if ( base != that.base ) return false;
     93
     94                                SymTab::Indexer dummy;
    10195                                if ( params.size() != that.params.size() ) return false;
    102 
    103                                 SymTab::Indexer dummy;
    10496                                for ( std::list< Type* >::const_iterator it = params.begin(), jt = that.params.begin(); it != params.end(); ++it, ++jt ) {
    10597                                        if ( ! ResolvExpr::typesCompatible( *it, *jt, dummy ) ) return false;
     
    108100                        }
    109101
     102                        AggregateDecl *base;        ///< Base generic type
    110103                        std::list< Type* > params;  ///< Instantiation parameters
    111104                };
    112105
    113                 /// Maps a key and a TypeList to the some value, accounting for scope
    114                 template< typename Key, typename Value >
     106                /// Maps a concrete type to the some value, accounting for scope
     107                template< typename Value >
    115108                class InstantiationMap {
    116                         /// Wraps value for a specific (Key, TypeList) combination
    117                         typedef std::pair< TypeList, Value* > Instantiation;
    118                         /// List of TypeLists paired with their appropriate values
    119                         typedef std::vector< Instantiation > ValueList;
    120                         /// Underlying map type; maps keys to a linear list of corresponding TypeLists and values
    121                         typedef ScopedMap< Key*, ValueList > InnerMap;
    122 
    123                         InnerMap instantiations;  ///< instantiations
     109                        /// Information about a specific instantiation of a generic type
     110                        struct Instantiation {
     111                                ConcreteType key;  ///< Instantiation parameters for this type
     112                                Value *value;      ///< Value for this instantiation
     113
     114                                Instantiation() : key(), value(0) {}
     115                                Instantiation(const ConcreteType &_key, Value *_value) : key(_key), value(_value) {}
     116                        };
     117                        /// Map of generic types to instantiations of them
     118                        typedef std::map< AggregateDecl*, std::vector< Instantiation > > Scope;
     119
     120                        std::vector< Scope > scopes;  ///< list of scopes, from outermost to innermost
    124121
    125122                public:
    126123                        /// Starts a new scope
    127                         void beginScope() { instantiations.beginScope(); }
     124                        void beginScope() {
     125                                Scope scope;
     126                                scopes.push_back(scope);
     127                        }
    128128
    129129                        /// Ends a scope
    130                         void endScope() { instantiations.endScope(); }
    131 
    132                         /// Gets the value for the (key, typeList) pair, returns NULL on none such.
    133                         Value *lookup( Key *key, const std::list< TypeExpr* >& params ) const {
    134                                 TypeList typeList( params );
    135                                
    136                                 // scan scopes for matches to the key
    137                                 for ( typename InnerMap::const_iterator insts = instantiations.find( key ); insts != instantiations.end(); insts = instantiations.findNext( insts, key ) ) {
    138                                         for ( typename ValueList::const_reverse_iterator inst = insts->second.rbegin(); inst != insts->second.rend(); ++inst ) {
    139                                                 if ( inst->first == typeList ) return inst->second;
     130                        void endScope() {
     131                                scopes.pop_back();
     132                        }
     133
     134                        /// Default constructor initializes with one scope
     135                        InstantiationMap() { beginScope(); }
     136
     137//              private:
     138                        /// Gets the value for the concrete instantiation of this type, assuming it has already been instantiated in the current scope.
     139                        /// Returns NULL on none such.
     140                        Value *lookup( AggregateDecl *generic, const std::list< TypeExpr* >& params ) {
     141                                ConcreteType key(generic, params);
     142                                // scan scopes from innermost out
     143                                for ( typename std::vector< Scope >::const_reverse_iterator scope = scopes.rbegin(); scope != scopes.rend(); ++scope ) {
     144                                        // skip scope if no instantiations of this generic type
     145                                        typename Scope::const_iterator insts = scope->find( generic );
     146                                        if ( insts == scope->end() ) continue;
     147                                        // look through instantiations for matches to concrete type
     148                                        for ( typename std::vector< Instantiation >::const_iterator inst = insts->second.begin(); inst != insts->second.end(); ++inst ) {
     149                                                if ( inst->key == key ) return inst->value;
    140150                                        }
    141151                                }
    142                                 // no matching instantiations found
     152                                // no matching instantiation found
    143153                                return 0;
    144154                        }
    145 
    146                         /// Adds a value for a (key, typeList) pair to the current scope
    147                         void insert( Key *key, const std::list< TypeExpr* > &params, Value *value ) {
    148                                 instantiations[ key ].push_back( Instantiation( TypeList( params ), value ) );
    149                         }
     155                public:
     156//                      StructDecl* lookup( StructInstType *inst, const std::list< TypeExpr* > &typeSubs ) { return (StructDecl*)lookup( inst->get_baseStruct(), typeSubs ); }
     157//                      UnionDecl* lookup( UnionInstType *inst, const std::list< TypeExpr* > &typeSubs ) { return (UnionDecl*)lookup( inst->get_baseUnion(), typeSubs ); }
     158
     159//              private:
     160                        /// Adds a value for a concrete type to the current scope
     161                        void insert( AggregateDecl *generic, const std::list< TypeExpr* > &params, Value *value ) {
     162                                ConcreteType key(generic, params);
     163                                scopes.back()[generic].push_back( Instantiation( key, value ) );
     164                        }
     165//              public:
     166//                      void insert( StructInstType *inst, const std::list< TypeExpr* > &typeSubs, StructDecl *decl ) { insert( inst->get_baseStruct(), typeSubs, decl ); }
     167//                      void insert( UnionInstType *inst, const std::list< TypeExpr* > &typeSubs, UnionDecl *decl ) { insert( inst->get_baseUnion(), typeSubs, decl ); }
    150168                };
    151169
     
    179197                        virtual void doEndScope();
    180198                  private:
     199                        /// Makes a new temporary array holding the offsets of the fields of `type`, and returns a new variable expression referencing it
     200                        Expression *makeOffsetArray( StructInstType *type );
    181201                        /// Pass the extra type parameters from polymorphic generic arguments or return types into a function application
    182202                        void passArgTypeVars( ApplicationExpr *appExpr, Type *parmType, Type *argBaseType, std::list< Expression *>::iterator &arg, const TyVarMap &exprTyVars, std::set< std::string > &seenTypes );
     
    205225                        ObjectDecl *makeTemporary( Type *type );
    206226
    207                         std::map< std::string, DeclarationWithType *> assignOps;     ///< Currently known type variable assignment operators
    208                         ResolvExpr::TypeMap< DeclarationWithType > scopedAssignOps;  ///< Currently known assignment operators
    209                         ScopedMap< std::string, DeclarationWithType* > adapters;     ///< Set of adapter functions in the current scope
    210                        
     227                        std::map< std::string, DeclarationWithType *> assignOps;
     228                        ResolvExpr::TypeMap< DeclarationWithType > scopedAssignOps;
     229                        ScopedMap< std::string, DeclarationWithType* > adapters;
    211230                        DeclarationWithType *retval;
    212231                        bool useRetval;
     
    214233                };
    215234
    216                 /// * Moves polymorphic returns in function types to pointer-type parameters
    217                 /// * adds type size and assertion parameters to parameter lists
     235                /// Moves polymorphic returns in function types to pointer-type parameters, adds type size and assertion parameters to parameter lists as well
    218236                class Pass2 : public PolyMutator {
    219237                  public:
     
    226244                        virtual Type *mutate( PointerType *pointerType );
    227245                        virtual Type *mutate( FunctionType *funcType );
    228                        
    229246                  private:
    230247                        void addAdapters( FunctionType *functionType );
     
    236253                class GenericInstantiator : public DeclMutator {
    237254                        /// Map of (generic type, parameter list) pairs to concrete type instantiations
    238                         InstantiationMap< AggregateDecl, AggregateDecl > instantiations;
     255                        InstantiationMap< AggregateDecl > instantiations;
    239256                        /// Namer for concrete types
    240257                        UniqueName typeNamer;
     
    261278                };
    262279
    263                 /// Replaces member and size/align/offsetof expressions on polymorphic generic types with calculated expressions.
    264                 /// * Replaces member expressions for polymorphic types with calculated add-field-offset-and-dereference
    265                 /// * Calculates polymorphic offsetof expressions from offset array
    266                 /// * Inserts dynamic calculation of polymorphic type layouts where needed
    267                 class PolyGenericCalculator : public PolyMutator {
    268                 public:
     280                /// Replaces member expressions for polymorphic types with calculated add-field-offset-and-dereference;
     281                /// also fixes offsetof expressions.
     282                class MemberExprFixer : public PolyMutator {
     283                  public:
    269284                        template< typename DeclClass >
    270285                        DeclClass *handleDecl( DeclClass *decl, Type *type );
     
    277292                        virtual Type *mutate( FunctionType *funcType );
    278293                        virtual Expression *mutate( MemberExpr *memberExpr );
    279                         virtual Expression *mutate( SizeofExpr *sizeofExpr );
    280                         virtual Expression *mutate( AlignofExpr *alignofExpr );
    281294                        virtual Expression *mutate( OffsetofExpr *offsetofExpr );
    282                         virtual Expression *mutate( OffsetPackExpr *offsetPackExpr );
    283 
    284                         virtual void doBeginScope();
    285                         virtual void doEndScope();
    286 
    287                 private:
    288                         /// Makes a new variable in the current scope with the given name, type & optional initializer
    289                         ObjectDecl *makeVar( const std::string &name, Type *type, Initializer *init = 0 );
    290                         /// returns true if the type has a dynamic layout; such a layout will be stored in appropriately-named local variables when the function returns
    291                         bool findGeneric( Type *ty );
    292                         /// adds type parameters to the layout call; will generate the appropriate parameters if needed
    293                         void addOtypeParamsToLayoutCall( UntypedExpr *layoutCall, const std::list< Type* > &otypeParams );
    294                        
    295                         ScopedSet< std::string > knownLayouts;          ///< Set of generic type layouts known in the current scope, indexed by sizeofName
    296                         ScopedSet< std::string > knownOffsets;          ///< Set of non-generic types for which the offset array exists in the current scope, indexed by offsetofName
    297295                };
    298296
     
    344342                Pass2 pass2;
    345343                GenericInstantiator instantiator;
    346                 PolyGenericCalculator polyCalculator;
     344                MemberExprFixer memberFixer;
    347345                Pass3 pass3;
    348346               
     
    350348                mutateTranslationUnit/*All*/( translationUnit, pass1 );
    351349                mutateTranslationUnit/*All*/( translationUnit, pass2 );
     350//              instantiateGeneric( translationUnit );
    352351                instantiator.mutateDeclarationList( translationUnit );
    353                 mutateTranslationUnit/*All*/( translationUnit, polyCalculator );
     352                mutateTranslationUnit/*All*/( translationUnit, memberFixer );
    354353                mutateTranslationUnit/*All*/( translationUnit, pass3 );
    355354        }
     
    654653
    655654                DeclarationWithType *Pass1::mutate( FunctionDecl *functionDecl ) {
    656                         // if this is a assignment function, put it in the map for this scope
     655                        // if this is a polymorphic assignment function, put it in the map for this scope
    657656                        if ( Type *assignedType = isAssignment( functionDecl ) ) {
    658657                                if ( ! dynamic_cast< TypeInstType* >( assignedType ) ) {
     
    744743                }
    745744
     745                Expression *Pass1::makeOffsetArray( StructInstType *ty ) {
     746                        std::list< Declaration* > &baseMembers = ty->get_baseStruct()->get_members();
     747
     748                        // make a new temporary array
     749                        Type *offsetType = new BasicType( Type::Qualifiers(), BasicType::LongUnsignedInt );
     750                        std::stringstream lenGen;
     751                        lenGen << baseMembers.size();
     752                        ConstantExpr *lenExpr = new ConstantExpr( Constant( offsetType->clone(), lenGen.str() ) );
     753                        ObjectDecl *arrayTemp = makeTemporary( new ArrayType( Type::Qualifiers(), offsetType, lenExpr, false, false ) );
     754
     755                        // build initializer list for temporary
     756                        std::list< Initializer* > inits;
     757                        for ( std::list< Declaration* >::const_iterator member = baseMembers.begin(); member != baseMembers.end(); ++member ) {
     758                                DeclarationWithType *memberDecl;
     759                                if ( DeclarationWithType *origMember = dynamic_cast< DeclarationWithType* >( *member ) ) {
     760                                        memberDecl = origMember->clone();
     761                                } else {
     762                                        memberDecl = new ObjectDecl( (*member)->get_name(), DeclarationNode::NoStorageClass, LinkageSpec::Cforall, 0, offsetType->clone(), 0 );
     763                                }
     764                                inits.push_back( new SingleInit( new OffsetofExpr( ty->clone(), memberDecl ) ) );
     765                        }
     766                        arrayTemp->set_init( new ListInit( inits ) );
     767
     768                        // return variable pointing to temporary
     769                        return new VariableExpr( arrayTemp );
     770                }
     771
    746772                void Pass1::passArgTypeVars( ApplicationExpr *appExpr, Type *parmType, Type *argBaseType, std::list< Expression *>::iterator &arg, const TyVarMap &exprTyVars, std::set< std::string > &seenTypes ) {
    747773                        Type *polyBase = hasPolyBase( parmType, exprTyVars );
     
    756782                                if ( dynamic_cast< StructInstType* >( polyBase ) ) {
    757783                                        if ( StructInstType *argBaseStructType = dynamic_cast< StructInstType* >( argBaseType ) ) {
    758                                                 // zero-length arrays are forbidden by C, so don't pass offset for empty struct
    759                                                 if ( ! argBaseStructType->get_baseStruct()->get_members().empty() ) {
    760                                                         arg = appExpr->get_args().insert( arg, new OffsetPackExpr( argBaseStructType->clone() ) );
    761                                                         arg++;
    762                                                 }
     784                                                arg = appExpr->get_args().insert( arg, makeOffsetArray( argBaseStructType ) );
     785                                                arg++;
    763786                                        } else {
    764787                                                throw SemanticError( "Cannot pass non-struct type for generic struct" );
     
    908931                                        return;
    909932                                } else if ( arg->get_results().front()->get_isLvalue() ) {
    910                                         // VariableExpr and MemberExpr are lvalues; need to check this isn't coming from the second arg of a comma expression though (not an lvalue)
    911                                         if ( CommaExpr *commaArg = dynamic_cast< CommaExpr* >( arg ) ) {
    912                                                 commaArg->set_arg2( new AddressExpr( commaArg->get_arg2() ) );
    913                                         } else {
    914                                                 arg = new AddressExpr( arg );
    915                                         }
     933                                        // VariableExpr and MemberExpr are lvalues
     934                                        arg = new AddressExpr( arg );
    916935                                } else {
    917936                                        // use type computed in unification to declare boxed variables
     
    10081027                        } // for
    10091028                }
     1029
     1030
    10101031
    10111032                FunctionDecl *Pass1::makeAdapter( FunctionType *adaptee, FunctionType *realType, const std::string &mangleName, const TyVarMap &tyVars ) {
     
    14071428                                        std::list< TypeDecl* >::const_iterator forallIt = forallParams.begin();
    14081429                                        for ( ; tyIt != tyParams.end() && forallIt != forallParams.end(); ++tyIt, ++forallIt ) {
    1409                                                 // Add appropriate mapping to assignment expression environment
     1430                                                if ( (*forallIt)->get_kind() != TypeDecl::Any ) continue; // skip types with no assign op (ftype/dtype)
     1431
     1432                                                std::list< DeclarationWithType* > &asserts = (*forallIt)->get_assertions();
     1433                                                assert( ! asserts.empty() && "Type param needs assignment operator assertion" );
     1434                                                DeclarationWithType *actualDecl = asserts.front();
     1435                                                TypeInstType *actualType = isTypeInstAssignment( actualDecl );
     1436                                                assert( actualType && "First assertion of type with assertions should be assignment operator" );
    14101437                                                TypeExpr *formalTypeExpr = dynamic_cast< TypeExpr* >( *tyIt );
    14111438                                                assert( formalTypeExpr && "type parameters must be type expressions" );
    14121439                                                Type *formalType = formalTypeExpr->get_type();
    1413                                                 assignExpr->get_env()->add( (*forallIt)->get_name(), formalType );
    1414 
    1415                                                 // skip types with no assign op (ftype/dtype)
    1416                                                 if ( (*forallIt)->get_kind() != TypeDecl::Any ) continue;
    1417 
    1418                                                 // find assignment operator for formal type
     1440                                                assignExpr->get_env()->add( actualType->get_name(), formalType );
     1441                                               
    14191442                                                DeclarationWithType *assertAssign = 0;
    14201443                                                if ( TypeInstType *formalTypeInstType = dynamic_cast< TypeInstType* >( formalType ) ) {
     
    14301453                                                        }
    14311454                                                }
    1432 
    1433                                                 // add inferred parameter for field assignment operator to assignment expression
    1434                                                 std::list< DeclarationWithType* > &asserts = (*forallIt)->get_assertions();
    1435                                                 assert( ! asserts.empty() && "Type param needs assignment operator assertion" );
    1436                                                 DeclarationWithType *actualDecl = asserts.front();
     1455                                               
     1456
    14371457                                                assignExpr->get_inferParams()[ actualDecl->get_uniqueId() ]
    14381458                                                        = ParamEntry( assertAssign->get_uniqueId(), assertAssign->get_type()->clone(), actualDecl->get_type()->clone(), wrapFunctionDecl( assertAssign ) );
     
    15671587                        ObjectDecl newPtr( "", DeclarationNode::NoStorageClass, LinkageSpec::C, 0,
    15681588                                           new PointerType( Type::Qualifiers(), new BasicType( Type::Qualifiers(), BasicType::LongUnsignedInt ) ), 0 );
     1589//   ObjectDecl *newFunPtr = new ObjectDecl( "", DeclarationNode::NoStorageClass, LinkageSpec::Cforall, 0, new PointerType( Type::Qualifiers(), new FunctionType( Type::Qualifiers(), true ) ), 0 );
    15691590                        for ( std::list< TypeDecl *>::const_iterator tyParm = funcType->get_forall().begin(); tyParm != funcType->get_forall().end(); ++tyParm ) {
    15701591                                ObjectDecl *sizeParm, *alignParm;
     
    16101631                                        ++last;
    16111632
    1612                                         if ( StructInstType *polyBaseStruct = dynamic_cast< StructInstType* >( polyBase ) ) {
    1613                                                 // NOTE zero-length arrays are illegal in C, so empty structs have no offset array
    1614                                                 if ( ! polyBaseStruct->get_baseStruct()->get_members().empty() ) {
    1615                                                         offsetParm = newPtr.clone();
    1616                                                         offsetParm->set_name( offsetofName( polyBase ) );
    1617                                                         last = funcType->get_parameters().insert( last, offsetParm );
    1618                                                         ++last;
    1619                                                 }
     1633                                        if ( dynamic_cast< StructInstType* >( polyBase ) ) {
     1634                                                offsetParm = newPtr.clone();
     1635                                                offsetParm->set_name( offsetofName( polyBase ) );
     1636                                                last = funcType->get_parameters().insert( last, offsetParm );
     1637                                                ++last;
    16201638                                        }
    16211639
     
    18261844
    18271845                template< typename DeclClass >
    1828                 DeclClass * PolyGenericCalculator::handleDecl( DeclClass *decl, Type *type ) {
     1846                DeclClass * MemberExprFixer::handleDecl( DeclClass *decl, Type *type ) {
    18291847                        TyVarMap oldtyVars = scopeTyVars;
    18301848                        makeTyVarMap( type, scopeTyVars );
     
    18361854                }
    18371855
    1838                 ObjectDecl * PolyGenericCalculator::mutate( ObjectDecl *objectDecl ) {
     1856                ObjectDecl * MemberExprFixer::mutate( ObjectDecl *objectDecl ) {
    18391857                        return handleDecl( objectDecl, objectDecl->get_type() );
    18401858                }
    18411859
    1842                 DeclarationWithType * PolyGenericCalculator::mutate( FunctionDecl *functionDecl ) {
     1860                DeclarationWithType * MemberExprFixer::mutate( FunctionDecl *functionDecl ) {
    18431861                        return handleDecl( functionDecl, functionDecl->get_functionType() );
    18441862                }
    18451863
    1846                 TypedefDecl * PolyGenericCalculator::mutate( TypedefDecl *typedefDecl ) {
     1864                TypedefDecl * MemberExprFixer::mutate( TypedefDecl *typedefDecl ) {
    18471865                        return handleDecl( typedefDecl, typedefDecl->get_base() );
    18481866                }
    18491867
    1850                 TypeDecl * PolyGenericCalculator::mutate( TypeDecl *typeDecl ) {
     1868                TypeDecl * MemberExprFixer::mutate( TypeDecl *typeDecl ) {
    18511869                        scopeTyVars[ typeDecl->get_name() ] = typeDecl->get_kind();
    18521870                        return Mutator::mutate( typeDecl );
    18531871                }
    18541872
    1855                 Type * PolyGenericCalculator::mutate( PointerType *pointerType ) {
     1873                Type * MemberExprFixer::mutate( PointerType *pointerType ) {
    18561874                        TyVarMap oldtyVars = scopeTyVars;
    18571875                        makeTyVarMap( pointerType, scopeTyVars );
     
    18631881                }
    18641882
    1865                 Type * PolyGenericCalculator::mutate( FunctionType *funcType ) {
     1883                Type * MemberExprFixer::mutate( FunctionType *functionType ) {
    18661884                        TyVarMap oldtyVars = scopeTyVars;
    1867                         makeTyVarMap( funcType, scopeTyVars );
    1868 
    1869                         // make sure that any type information passed into the function is accounted for
    1870                         for ( std::list< DeclarationWithType* >::const_iterator fnParm = funcType->get_parameters().begin(); fnParm != funcType->get_parameters().end(); ++fnParm ) {
    1871                                 // condition here duplicates that in Pass2::mutate( FunctionType* )
    1872                                 Type *polyBase = hasPolyBase( (*fnParm)->get_type(), scopeTyVars );
    1873                                 if ( polyBase && ! dynamic_cast< TypeInstType* >( polyBase ) ) {
    1874                                         knownLayouts.insert( sizeofName( polyBase ) );
    1875                                 }
    1876                         }
    1877                        
    1878                         Type *ret = Mutator::mutate( funcType );
     1885                        makeTyVarMap( functionType, scopeTyVars );
     1886
     1887                        Type *ret = Mutator::mutate( functionType );
    18791888
    18801889                        scopeTyVars = oldtyVars;
     
    18821891                }
    18831892
    1884                 Statement *PolyGenericCalculator::mutate( DeclStmt *declStmt ) {
     1893                Statement *MemberExprFixer::mutate( DeclStmt *declStmt ) {
    18851894                        if ( ObjectDecl *objectDecl = dynamic_cast< ObjectDecl *>( declStmt->get_decl() ) ) {
    1886                                 if ( findGeneric( objectDecl->get_type() ) ) {
     1895                                if ( isPolyType( objectDecl->get_type(), scopeTyVars ) ) {
    18871896                                        // change initialization of a polymorphic value object
    18881897                                        // to allocate storage with alloca
     
    19361945                }
    19371946               
    1938                 Expression *PolyGenericCalculator::mutate( MemberExpr *memberExpr ) {
     1947                Expression *MemberExprFixer::mutate( MemberExpr *memberExpr ) {
    19391948                        // mutate, exiting early if no longer MemberExpr
    19401949                        Expression *expr = Mutator::mutate( memberExpr );
     
    19531962                        Type *objectType = hasPolyBase( objectDecl->get_type(), scopeTyVars, &tyDepth );
    19541963                        if ( ! objectType ) return memberExpr;
    1955                         findGeneric( objectType ); // ensure layout for this type is available
    19561964
    19571965                        Expression *newMemberExpr = 0;
     
    19851993                }
    19861994
    1987                 ObjectDecl *PolyGenericCalculator::makeVar( const std::string &name, Type *type, Initializer *init ) {
    1988                         ObjectDecl *newObj = new ObjectDecl( name, DeclarationNode::NoStorageClass, LinkageSpec::C, 0, type, init );
    1989                         stmtsToAdd.push_back( new DeclStmt( noLabels, newObj ) );
    1990                         return newObj;
    1991                 }
    1992 
    1993                 void PolyGenericCalculator::addOtypeParamsToLayoutCall( UntypedExpr *layoutCall, const std::list< Type* > &otypeParams ) {
    1994                         for ( std::list< Type* >::const_iterator param = otypeParams.begin(); param != otypeParams.end(); ++param ) {
    1995                                 if ( findGeneric( *param ) ) {
    1996                                         // push size/align vars for a generic parameter back
    1997                                         layoutCall->get_args().push_back( new NameExpr( sizeofName( *param ) ) );
    1998                                         layoutCall->get_args().push_back( new NameExpr( alignofName( *param ) ) );
    1999                                 } else {
    2000                                         layoutCall->get_args().push_back( new SizeofExpr( (*param)->clone() ) );
    2001                                         layoutCall->get_args().push_back( new AlignofExpr( (*param)->clone() ) );
    2002                                 }
    2003                         }
    2004                 }
    2005 
    2006                 /// returns true if any of the otype parameters have a dynamic layout and puts all otype parameters in the output list
    2007                 bool findGenericParams( std::list< TypeDecl* > &baseParams, std::list< Expression* > &typeParams, std::list< Type* > &out ) {
    2008                         bool hasDynamicLayout = false;
    2009 
    2010                         std::list< TypeDecl* >::const_iterator baseParam = baseParams.begin();
    2011                         std::list< Expression* >::const_iterator typeParam = typeParams.begin();
    2012                         for ( ; baseParam != baseParams.end() && typeParam != typeParams.end(); ++baseParam, ++typeParam ) {
    2013                                 // skip non-otype parameters
    2014                                 if ( (*baseParam)->get_kind() != TypeDecl::Any ) continue;
    2015                                 TypeExpr *typeExpr = dynamic_cast< TypeExpr* >( *typeParam );
    2016                                 assert( typeExpr && "all otype parameters should be type expressions" );
    2017 
    2018                                 Type *type = typeExpr->get_type();
    2019                                 out.push_back( type );
    2020                                 if ( isPolyType( type ) ) hasDynamicLayout = true;
    2021                         }
    2022                         assert( baseParam == baseParams.end() && typeParam == typeParams.end() );
    2023 
    2024                         return hasDynamicLayout;
    2025                 }
    2026 
    2027                 bool PolyGenericCalculator::findGeneric( Type *ty ) {
    2028                         if ( TypeInstType *typeInst = dynamic_cast< TypeInstType* >( ty ) ) {
    2029                                 // duplicate logic from isPolyType()
    2030                                 if ( env ) {
    2031                                         if ( Type *newType = env->lookup( typeInst->get_name() ) ) {
    2032                                                 return findGeneric( newType );
    2033                                         } // if
    2034                                 } // if
    2035                                 if ( scopeTyVars.find( typeInst->get_name() ) != scopeTyVars.end() ) {
    2036                                         // NOTE assumes here that getting put in the scopeTyVars included having the layout variables set
    2037                                         return true;
    2038                                 }
    2039                                 return false;
    2040                         } else if ( StructInstType *structTy = dynamic_cast< StructInstType* >( ty ) ) {
    2041                                 // check if this type already has a layout generated for it
    2042                                 std::string sizeName = sizeofName( ty );
    2043                                 if ( knownLayouts.find( sizeName ) != knownLayouts.end() ) return true;
    2044 
    2045                                 // check if any of the type parameters have dynamic layout; if none do, this type is (or will be) monomorphized
    2046                                 std::list< Type* > otypeParams;
    2047                                 if ( ! findGenericParams( *structTy->get_baseParameters(), structTy->get_parameters(), otypeParams ) ) return false;
    2048 
    2049                                 // insert local variables for layout and generate call to layout function
    2050                                 knownLayouts.insert( sizeName );  // done early so as not to interfere with the later addition of parameters to the layout call
    2051                                 Type *layoutType = new BasicType( Type::Qualifiers(), BasicType::LongUnsignedInt );
    2052 
    2053                                 int n_members = structTy->get_baseStruct()->get_members().size();
    2054                                 if ( n_members == 0 ) {
    2055                                         // all empty structs have the same layout - size 1, align 1
    2056                                         makeVar( sizeName, layoutType, new SingleInit( new ConstantExpr( Constant::from( (unsigned long)1 ) ) ) );
    2057                                         makeVar( alignofName( ty ), layoutType->clone(), new SingleInit( new ConstantExpr( Constant::from( (unsigned long)1 ) ) ) );
    2058                                         // NOTE zero-length arrays are forbidden in C, so empty structs have no offsetof array
    2059                                 } else {
    2060                                         ObjectDecl *sizeVar = makeVar( sizeName, layoutType );
    2061                                         ObjectDecl *alignVar = makeVar( alignofName( ty ), layoutType->clone() );
    2062                                         ObjectDecl *offsetVar = makeVar( offsetofName( ty ), new ArrayType( Type::Qualifiers(), layoutType->clone(), new ConstantExpr( Constant::from( n_members ) ), false, false ) );
    2063 
    2064                                         // generate call to layout function
    2065                                         UntypedExpr *layoutCall = new UntypedExpr( new NameExpr( "__layoutof_" + structTy->get_baseStruct()->get_name() ) );
    2066                                         layoutCall->get_args().push_back( new AddressExpr( new VariableExpr( sizeVar ) ) );
    2067                                         layoutCall->get_args().push_back( new AddressExpr( new VariableExpr( alignVar ) ) );
    2068                                         layoutCall->get_args().push_back( new VariableExpr( offsetVar ) );
    2069                                         addOtypeParamsToLayoutCall( layoutCall, otypeParams );
    2070 
    2071                                         stmtsToAdd.push_back( new ExprStmt( noLabels, layoutCall ) );
    2072                                 }
    2073 
    2074                                 return true;
    2075                         } else if ( UnionInstType *unionTy = dynamic_cast< UnionInstType* >( ty ) ) {
    2076                                 // check if this type already has a layout generated for it
    2077                                 std::string sizeName = sizeofName( ty );
    2078                                 if ( knownLayouts.find( sizeName ) != knownLayouts.end() ) return true;
    2079 
    2080                                 // check if any of the type parameters have dynamic layout; if none do, this type is (or will be) monomorphized
    2081                                 std::list< Type* > otypeParams;
    2082                                 if ( ! findGenericParams( *unionTy->get_baseParameters(), unionTy->get_parameters(), otypeParams ) ) return false;
    2083 
    2084                                 // insert local variables for layout and generate call to layout function
    2085                                 knownLayouts.insert( sizeName );  // done early so as not to interfere with the later addition of parameters to the layout call
    2086                                 Type *layoutType = new BasicType( Type::Qualifiers(), BasicType::LongUnsignedInt );
    2087 
    2088                                 ObjectDecl *sizeVar = makeVar( sizeName, layoutType );
    2089                                 ObjectDecl *alignVar = makeVar( alignofName( ty ), layoutType->clone() );
    2090 
    2091                                 // generate call to layout function
    2092                                 UntypedExpr *layoutCall = new UntypedExpr( new NameExpr( "__layoutof_" + unionTy->get_baseUnion()->get_name() ) );
    2093                                 layoutCall->get_args().push_back( new AddressExpr( new VariableExpr( sizeVar ) ) );
    2094                                 layoutCall->get_args().push_back( new AddressExpr( new VariableExpr( alignVar ) ) );
    2095                                 addOtypeParamsToLayoutCall( layoutCall, otypeParams );
    2096 
    2097                                 stmtsToAdd.push_back( new ExprStmt( noLabels, layoutCall ) );
    2098 
    2099                                 return true;
    2100                         }
    2101 
    2102                         return false;
    2103                 }
    2104 
    2105                 Expression *PolyGenericCalculator::mutate( SizeofExpr *sizeofExpr ) {
    2106                         Type *ty = sizeofExpr->get_type();
    2107                         if ( findGeneric( ty ) ) {
    2108                                 Expression *ret = new NameExpr( sizeofName( ty ) );
    2109                                 delete sizeofExpr;
    2110                                 return ret;
    2111                         }
    2112                         return sizeofExpr;
    2113                 }
    2114 
    2115                 Expression *PolyGenericCalculator::mutate( AlignofExpr *alignofExpr ) {
    2116                         Type *ty = alignofExpr->get_type();
    2117                         if ( findGeneric( ty ) ) {
    2118                                 Expression *ret = new NameExpr( alignofName( ty ) );
    2119                                 delete alignofExpr;
    2120                                 return ret;
    2121                         }
    2122                         return alignofExpr;
    2123                 }
    2124 
    2125                 Expression *PolyGenericCalculator::mutate( OffsetofExpr *offsetofExpr ) {
     1995                Expression *MemberExprFixer::mutate( OffsetofExpr *offsetofExpr ) {
    21261996                        // mutate, exiting early if no longer OffsetofExpr
    21271997                        Expression *expr = Mutator::mutate( offsetofExpr );
     
    21302000
    21312001                        // only mutate expressions for polymorphic structs/unions
    2132                         Type *ty = offsetofExpr->get_type();
    2133                         if ( ! findGeneric( ty ) ) return offsetofExpr;
    2134                        
     2002                        Type *ty = isPolyType( offsetofExpr->get_type(), scopeTyVars );
     2003                        if ( ! ty ) return offsetofExpr;
     2004
    21352005                        if ( StructInstType *structType = dynamic_cast< StructInstType* >( ty ) ) {
    21362006                                // replace offsetof expression by index into offset array
     
    21482018                }
    21492019
    2150                 Expression *PolyGenericCalculator::mutate( OffsetPackExpr *offsetPackExpr ) {
    2151                         StructInstType *ty = offsetPackExpr->get_type();
    2152 
    2153                         Expression *ret = 0;
    2154                         if ( findGeneric( ty ) ) {
    2155                                 // pull offset back from generated type information
    2156                                 ret = new NameExpr( offsetofName( ty ) );
    2157                         } else {
    2158                                 std::string offsetName = offsetofName( ty );
    2159                                 if ( knownOffsets.find( offsetName ) != knownOffsets.end() ) {
    2160                                         // use the already-generated offsets for this type
    2161                                         ret = new NameExpr( offsetName );
    2162                                 } else {
    2163                                         knownOffsets.insert( offsetName );
    2164 
    2165                                         std::list< Declaration* > &baseMembers = ty->get_baseStruct()->get_members();
    2166                                         Type *offsetType = new BasicType( Type::Qualifiers(), BasicType::LongUnsignedInt );
    2167 
    2168                                         // build initializer list for offset array
    2169                                         std::list< Initializer* > inits;
    2170                                         for ( std::list< Declaration* >::const_iterator member = baseMembers.begin(); member != baseMembers.end(); ++member ) {
    2171                                                 DeclarationWithType *memberDecl;
    2172                                                 if ( DeclarationWithType *origMember = dynamic_cast< DeclarationWithType* >( *member ) ) {
    2173                                                         memberDecl = origMember->clone();
    2174                                                 } else {
    2175                                                         memberDecl = new ObjectDecl( (*member)->get_name(), DeclarationNode::NoStorageClass, LinkageSpec::Cforall, 0, offsetType->clone(), 0 );
    2176                                                 }
    2177                                                 inits.push_back( new SingleInit( new OffsetofExpr( ty->clone(), memberDecl ) ) );
    2178                                         }
    2179 
    2180                                         // build the offset array and replace the pack with a reference to it
    2181                                         ObjectDecl *offsetArray = makeVar( offsetName, new ArrayType( Type::Qualifiers(), offsetType, new ConstantExpr( Constant::from( baseMembers.size() ) ), false, false ),
    2182                                                         new ListInit( inits ) );
    2183                                         ret = new VariableExpr( offsetArray );
    2184                                 }
    2185                         }
    2186 
    2187                         delete offsetPackExpr;
    2188                         return ret;
    2189                 }
    2190 
    2191                 void PolyGenericCalculator::doBeginScope() {
    2192                         knownLayouts.beginScope();
    2193                         knownOffsets.beginScope();
    2194                 }
    2195 
    2196                 void PolyGenericCalculator::doEndScope() {
    2197                         knownLayouts.endScope();
    2198                         knownOffsets.beginScope();
    2199                 }
    2200 
    22012020////////////////////////////////////////// Pass3 ////////////////////////////////////////////////////
    22022021
Note: See TracChangeset for help on using the changeset viewer.