Ignore:
Timestamp:
Jun 22, 2017, 9:49:39 AM (7 years ago)
Author:
Thierry Delisle <tdelisle@…>
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, new-env, no_list, persistent-indexer, pthread-emulation, qualifiedEnum, resolv-new, with_gc
Children:
65dc863
Parents:
35df560 (diff), e9a3b20b (diff)
Note: this is a merge changeset, the changes displayed below correspond to the merge itself.
Use the (diff) links above to see all the changes relative to each parent.
Message:

Merge branch 'master' of plg.uwaterloo.ca:software/cfa/cfa-cc

File:
1 edited

Legend:

Unmodified
Added
Removed
  • src/SymTab/Validate.cc

    r35df560 r925b7f4  
    115115
    116116        /// Replaces enum types by int, and function or array types in function parameter and return lists by appropriate pointers.
    117         class EnumAndPointerDecayPass final : public Visitor {
    118                 typedef Visitor Parent;
    119                 virtual void visit( EnumDecl *aggregateDecl );
    120                 virtual void visit( FunctionType *func );
     117        class EnumAndPointerDecay {
     118        public:
     119                void previsit( EnumDecl *aggregateDecl );
     120                void previsit( FunctionType *func );
    121121        };
    122122
     
    126126          public:
    127127                LinkReferenceToTypes( bool doDebug, const Indexer *indexer );
    128           private:
    129128                using Parent::visit;
    130129                void visit( EnumInstType *enumInst ) final;
     
    136135                void visit( UnionDecl *unionDecl ) final;
    137136                void visit( TypeInstType *typeInst ) final;
    138 
     137          private:
    139138                const Indexer *indexer;
    140139
     
    147146        };
    148147
    149         /// Replaces array and function types in forall lists by appropriate pointer type
    150         class Pass3 final : public Indexer {
     148        /// Replaces array and function types in forall lists by appropriate pointer type and assigns each Object and Function declaration a unique ID.
     149        class ForallPointerDecay final : public Indexer {
    151150                typedef Indexer Parent;
    152151          public:
    153152                using Parent::visit;
    154                 Pass3( const Indexer *indexer );
    155           private:
     153                ForallPointerDecay( const Indexer *indexer );
     154
    156155                virtual void visit( ObjectDecl *object ) override;
    157156                virtual void visit( FunctionDecl *func ) override;
     
    160159        };
    161160
    162         class ReturnChecker {
     161        class ReturnChecker : public WithScopes {
    163162          public:
    164163                /// Checks that return statements return nothing if their return type is void
     
    167166          private:
    168167                void previsit( FunctionDecl * functionDecl );
    169                 void postvisit( FunctionDecl * functionDecl );
    170168                void previsit( ReturnStmt * returnStmt );
    171169
    172170                typedef std::list< DeclarationWithType * > ReturnVals;
    173171                ReturnVals returnVals;
    174                 std::stack< ReturnVals > returnValsStack;
    175172        };
    176173
     
    248245
    249246        void validate( std::list< Declaration * > &translationUnit, bool doDebug ) {
    250                 EnumAndPointerDecayPass epc;
     247                PassVisitor<EnumAndPointerDecay> epc;
    251248                LinkReferenceToTypes lrt( doDebug, 0 );
    252                 Pass3 pass3( 0 );
     249                ForallPointerDecay fpd( 0 );
    253250                CompoundLiteral compoundliteral;
    254251                PassVisitor<ValidateGenericParameters> genericParams;
     
    262259                VerifyCtorDtorAssign::verify( translationUnit );  // must happen before autogen, because autogen examines existing ctor/dtors
    263260                Concurrency::applyKeywords( translationUnit );
    264                 autogenerateRoutines( translationUnit ); // moved up, used to be below compoundLiteral - currently needs EnumAndPointerDecayPass
     261                autogenerateRoutines( translationUnit ); // moved up, used to be below compoundLiteral - currently needs EnumAndPointerDecay
    265262                Concurrency::implementMutexFuncs( translationUnit );
    266263                Concurrency::implementThreadStarter( translationUnit );
    267264                ReturnChecker::checkFunctionReturns( translationUnit );
    268265                compoundliteral.mutateDeclarationList( translationUnit );
    269                 acceptAll( translationUnit, pass3 );
     266                acceptAll( translationUnit, fpd );
    270267                ArrayLength::computeLength( translationUnit );
    271268        }
    272269
    273270        void validateType( Type *type, const Indexer *indexer ) {
    274                 EnumAndPointerDecayPass epc;
     271                PassVisitor<EnumAndPointerDecay> epc;
    275272                LinkReferenceToTypes lrt( false, indexer );
    276                 Pass3 pass3( indexer );
     273                ForallPointerDecay fpd( indexer );
    277274                type->accept( epc );
    278275                type->accept( lrt );
    279                 type->accept( pass3 );
     276                type->accept( fpd );
    280277        }
    281278
     
    356353        }
    357354
    358         void EnumAndPointerDecayPass::visit( EnumDecl *enumDecl ) {
     355        void EnumAndPointerDecay::previsit( EnumDecl *enumDecl ) {
    359356                // Set the type of each member of the enumeration to be EnumConstant
    360357                for ( std::list< Declaration * >::iterator i = enumDecl->get_members().begin(); i != enumDecl->get_members().end(); ++i ) {
     
    363360                        obj->set_type( new EnumInstType( Type::Qualifiers( Type::Const ), enumDecl->get_name() ) );
    364361                } // for
    365                 Parent::visit( enumDecl );
    366362        }
    367363
     
    370366                void fixFunctionList( DWTList & dwts, FunctionType * func ) {
    371367                        // the only case in which "void" is valid is where it is the only one in the list; then it should be removed
    372                         // entirely other fix ups are handled by the FixFunction class
     368                        // entirely. other fix ups are handled by the FixFunction class
    373369                        typedef typename DWTList::iterator DWTIterator;
    374370                        DWTIterator begin( dwts.begin() ), end( dwts.end() );
     
    389385                                for ( ; i != end; ++i ) {
    390386                                        FixFunction fixer;
    391                                         *i = (*i )->acceptMutator( fixer );
     387                                        *i = (*i)->acceptMutator( fixer );
    392388                                        if ( fixer.get_isVoid() ) {
    393389                                                throw SemanticError( "invalid type void in function type ", func );
     
    398394        }
    399395
    400         void EnumAndPointerDecayPass::visit( FunctionType *func ) {
     396        void EnumAndPointerDecay::previsit( FunctionType *func ) {
    401397                // Fix up parameters and return types
    402398                fixFunctionList( func->get_parameters(), func );
    403399                fixFunctionList( func->get_returnVals(), func );
    404                 Visitor::visit( func );
    405400        }
    406401
     
    549544        }
    550545
    551         Pass3::Pass3( const Indexer *other_indexer ) :  Indexer( false ) {
     546        ForallPointerDecay::ForallPointerDecay( const Indexer *other_indexer ) :  Indexer( false ) {
    552547                if ( other_indexer ) {
    553548                        indexer = other_indexer;
     
    587582        }
    588583
    589         void Pass3::visit( ObjectDecl *object ) {
     584        void ForallPointerDecay::visit( ObjectDecl *object ) {
    590585                forallFixer( object->get_type() );
    591586                if ( PointerType *pointer = dynamic_cast< PointerType * >( object->get_type() ) ) {
     
    596591        }
    597592
    598         void Pass3::visit( FunctionDecl *func ) {
     593        void ForallPointerDecay::visit( FunctionDecl *func ) {
    599594                forallFixer( func->get_type() );
    600595                Parent::visit( func );
     
    608603
    609604        void ReturnChecker::previsit( FunctionDecl * functionDecl ) {
    610                 returnValsStack.push( returnVals );
     605                GuardValue( returnVals );
    611606                returnVals = functionDecl->get_functionType()->get_returnVals();
    612         }
    613         void ReturnChecker::postvisit( __attribute__((unused)) FunctionDecl * functionDecl ) {
    614                 returnVals = returnValsStack.top();
    615                 returnValsStack.pop();
    616607        }
    617608
Note: See TracChangeset for help on using the changeset viewer.