Changeset d419d8e


Ignore:
Timestamp:
Jun 28, 2018, 3:06:48 PM (6 years ago)
Author:
Rob Schluntz <rschlunt@…>
Branches:
ADT, aaron-thesis, arm-eh, ast-experimental, cleanup-dtors, deferred_resn, demangler, enum, forall-pointer-decay, jacob/cs343-translation, jenkins-sandbox, master, new-ast, new-ast-unique-expr, no_list, persistent-indexer, pthread-emulation, qualifiedEnum
Children:
48ed81c
Parents:
15f5c5e
Message:

Rename nested types when hoisting

File:
1 edited

Legend:

Unmodified
Added
Removed
  • src/SymTab/Validate.cc

    r15f5c5e rd419d8e  
    9595                void previsit( UnionDecl * aggregateDecl );
    9696                void previsit( StaticAssertDecl * assertDecl );
     97                void previsit( StructInstType * type );
     98                void previsit( UnionInstType * type );
     99                void previsit( EnumInstType * type );
    97100
    98101          private:
     
    339342        }
    340343
     344        namespace {
     345                void qualifiedName( AggregateDecl * aggr, std::ostringstream & ss ) {
     346                        if ( aggr->parent ) qualifiedName( aggr->parent, ss );
     347                        ss << "__" << aggr->name;
     348                }
     349
     350                // mangle nested type names using entire parent chain
     351                std::string qualifiedName( AggregateDecl * aggr ) {
     352                        std::ostringstream ss;
     353                        qualifiedName( aggr, ss );
     354                        return ss.str();
     355                }
     356        }
     357
    341358        template< typename AggDecl >
    342359        void HoistStruct::handleAggregate( AggDecl *aggregateDecl ) {
    343360                if ( parentAggr ) {
     361                        aggregateDecl->parent = parentAggr;
     362                        aggregateDecl->name = qualifiedName( aggregateDecl );
    344363                        // Add elements in stack order corresponding to nesting structure.
    345364                        declsToAddBefore.push_front( aggregateDecl );
     
    365384                handleAggregate( aggregateDecl );
    366385        }
     386
     387        void HoistStruct::previsit( StructInstType * type ) {
     388                // need to reset type name after expanding to qualified name
     389                assert( type->baseStruct );
     390                type->name = type->baseStruct->name;
     391        }
     392
     393        void HoistStruct::previsit( UnionInstType * type ) {
     394                assert( type->baseUnion );
     395                type->name = type->baseUnion->name;
     396        }
     397
     398        void HoistStruct::previsit( EnumInstType * type ) {
     399                assert( type->baseEnum );
     400                type->name = type->baseEnum->name;
     401        }
     402
    367403
    368404        void EnumAndPointerDecay::previsit( EnumDecl *enumDecl ) {
Note: See TracChangeset for help on using the changeset viewer.