Ignore:
File:
1 edited

Legend:

Unmodified
Added
Removed
  • src/InitTweak/RemoveInit.cc

    rcf16f94 r5b2f5bb  
    55// file "LICENCE" distributed with Cforall.
    66//
    7 // RemoveInit.cc -- 
     7// RemoveInit.cc --
    88//
    99// Author           : Rob Schluntz
    1010// Created On       : Mon May 18 07:44:20 2015
    11 // Last Modified By : Peter A. Buhr
    12 // Last Modified On : Tue Dec 15 15:37:26 2015
    13 // Update Count     : 15
    14 //
    15 
     11// Last Modified By : Rob Schluntz
     12// Last Modified On : Wed Mar 30 15:45:12 2016
     13// Update Count     : 166
     14//
     15
     16#include <stack>
     17#include <list>
    1618#include "RemoveInit.h"
    1719#include "SynTree/Declaration.h"
     
    2123#include "SynTree/Initializer.h"
    2224#include "SynTree/Mutator.h"
     25#include "SymTab/Autogen.h"
     26#include "GenPoly/PolyMutator.h"
    2327
    2428namespace InitTweak {
    2529        namespace {
    2630                const std::list<Label> noLabels;
    27         }
    28        
    29         class RemoveInit : public Mutator {
     31                const std::list<Expression *> noDesignators;
     32        }
     33
     34        class RemoveInit : public GenPoly::PolyMutator {
    3035          public:
     36                /// removes and replaces initialization for polymorphic value objects
     37                /// with assignment (TODO: constructor) statements.
     38                /// also consistently allocates a temporary variable for the return value
     39                /// of a function so that anything which the resolver decides can be assigned
     40                /// into the return type of a function can be returned.
     41                static void removeInitializers( std::list< Declaration * > &translationUnit );
     42
    3143                RemoveInit();
    32                 virtual ObjectDecl * mutate(ObjectDecl *objDecl);
     44                virtual ObjectDecl * mutate( ObjectDecl *objDecl );
    3345                virtual DeclarationWithType * mutate( FunctionDecl *functionDecl );
    3446
    3547                virtual Statement * mutate( ReturnStmt * returnStmt );
    36                
    37                 virtual CompoundStmt * mutate(CompoundStmt * compoundStmt);
    38                
     48
    3949          protected:
    40                 std::list< Statement* > stmtsToAddBefore;
    41                 std::list< Statement* > stmtsToAddAfter;
    42                 void mutateStatementList( std::list< Statement* > &statements );
    43 
    4450                std::list<DeclarationWithType*> returnVals;
    4551                UniqueName tempNamer;
     
    4753        };
    4854
    49         void tweak( std::list< Declaration * > translationUnit ) {
     55        class CtorDtor : public GenPoly::PolyMutator {
     56          public:
     57                /// create constructor and destructor statements for object declarations.
     58                /// Destructors are inserted directly into the code, whereas constructors
     59                /// will be added in after the resolver has run so that the initializer expression
     60                /// is only removed if a constructor is found
     61                static void generateCtorDtor( std::list< Declaration * > &translationUnit );
     62
     63                CtorDtor() : inFunction( false ) {}
     64
     65                virtual ObjectDecl * mutate( ObjectDecl * );
     66                virtual DeclarationWithType * mutate( FunctionDecl *functionDecl );
     67                virtual Declaration* mutate( StructDecl *aggregateDecl );
     68                virtual Declaration* mutate( UnionDecl *aggregateDecl );
     69                virtual Declaration* mutate( EnumDecl *aggregateDecl );
     70                virtual Declaration* mutate( ContextDecl *aggregateDecl );
     71                virtual TypeDecl* mutate( TypeDecl *typeDecl );
     72                virtual Declaration* mutate( TypedefDecl *typeDecl );
     73
     74          protected:
     75                bool inFunction;
     76        };
     77
     78        void tweak( std::list< Declaration * > & translationUnit ) {
     79                RemoveInit::removeInitializers( translationUnit );
     80                CtorDtor::generateCtorDtor( translationUnit );
     81        }
     82
     83        void RemoveInit::removeInitializers( std::list< Declaration * > & translationUnit ) {
    5084                RemoveInit remover;
    5185                mutateAll( translationUnit, remover );
     
    5387
    5488        RemoveInit::RemoveInit() : tempNamer( "_retVal" ) {}
    55        
    56         void RemoveInit::mutateStatementList( std::list< Statement* > &statements ) {
    57                 for ( std::list< Statement* >::iterator i = statements.begin(); i != statements.end(); ++i ) {
    58                         if ( ! stmtsToAddAfter.empty() ) {
    59                                 statements.splice( i, stmtsToAddAfter );
    60                         } // if
    61                         *i = (*i)->acceptMutator( *this );
    62                         if ( ! stmtsToAddBefore.empty() ) {
    63                                 statements.splice( i, stmtsToAddBefore );
    64                         } // if
    65                 } // for
    66                 if ( ! stmtsToAddAfter.empty() ) {
    67                         statements.splice( statements.end(), stmtsToAddAfter );
    68                 } // if
    69         }
    70 
    71         CompoundStmt *RemoveInit::mutate(CompoundStmt *compoundStmt) {
    72                 mutateStatementList( compoundStmt->get_kids() );
    73                 return compoundStmt;
    74         }
    7589
    7690        // in the case where an object has an initializer and a polymorphic type, insert an assignment immediately after the
     
    7993                if (objDecl->get_init() && dynamic_cast<TypeInstType*>(objDecl->get_type())) {
    8094                        if (SingleInit * single = dynamic_cast<SingleInit*>(objDecl->get_init())) {
    81                                 UntypedExpr *assign = new UntypedExpr( new NameExpr( "?=?" ) );
     95                                // xxx this can be more complicated - consider ListInit
     96                                UntypedExpr *assign = new UntypedExpr( new NameExpr( "?{}" ) );
    8297                                assign->get_args().push_back( new AddressExpr (new NameExpr( objDecl->get_name() ) ) );
    8398                                assign->get_args().push_back( single->get_value()->clone() );
     
    94109                // is being returned
    95110                if ( returnStmt->get_expr() && returnVals.size() == 1 && funcName != "?=?" && ! returnVals.front()->get_type()->get_isLvalue()  ) {
    96                         ObjectDecl *newObj = new ObjectDecl( tempNamer.newName(), DeclarationNode::NoStorageClass, LinkageSpec::C, 0, returnVals.front()->get_type()->clone(), 0 );
    97                         stmtsToAddBefore.push_back( new DeclStmt( noLabels, newObj ) );
    98                        
    99                         UntypedExpr *assign = new UntypedExpr( new NameExpr( "?=?" ) );
    100                         assign->get_args().push_back( new AddressExpr (new NameExpr( newObj->get_name() ) ) );
    101                         assign->get_args().push_back( returnStmt->get_expr() );
    102                         stmtsToAddBefore.push_back(new ExprStmt(noLabels, assign));
     111                        // ensure return value is not destructed by explicitly creating
     112                        // an empty SingleInit node wherein maybeConstruct is false
     113                        ObjectDecl *newObj = new ObjectDecl( tempNamer.newName(), DeclarationNode::NoStorageClass, LinkageSpec::C, 0, returnVals.front()->get_type()->clone(), new ListInit( std::list<Initializer*>(), noDesignators, false ) );
     114                        stmtsToAdd.push_back( new DeclStmt( noLabels, newObj ) );
     115
     116                        // and explicitly create the constructor expression separately
     117                        UntypedExpr *construct = new UntypedExpr( new NameExpr( "?{}" ) );
     118                        construct->get_args().push_back( new AddressExpr (new NameExpr( newObj->get_name() ) ) );
     119                        construct->get_args().push_back( returnStmt->get_expr() );
     120                        stmtsToAdd.push_back(new ExprStmt(noLabels, construct));
    103121
    104122                        returnStmt->set_expr( new VariableExpr( newObj ) );
     
    110128                std::list<DeclarationWithType*> oldReturnVals = returnVals;
    111129                std::string oldFuncName = funcName;
    112                
     130
    113131                FunctionType * type = functionDecl->get_functionType();
    114132                returnVals = type->get_returnVals();
     
    119137                return decl;
    120138        }
     139
     140
     141        void CtorDtor::generateCtorDtor( std::list< Declaration * > & translationUnit ) {
     142                CtorDtor ctordtor;
     143                mutateAll( translationUnit, ctordtor );
     144        }
     145
     146        namespace {
     147                bool tryConstruct( ObjectDecl * objDecl ) {
     148                        // xxx - handle designations
     149                        return ! LinkageSpec::isBuiltin( objDecl->get_linkage() ) &&
     150                                (objDecl->get_init() == NULL ||
     151                                ( objDecl->get_init() != NULL && objDecl->get_init()->get_maybeConstructed() ));
     152                }
     153
     154                Expression * makeCtorDtorExpr( std::string name, ObjectDecl * objDecl, std::list< Expression * > args ) {
     155                        UntypedExpr * expr = new UntypedExpr( new NameExpr( name ) );
     156                        expr->get_args().push_back( new AddressExpr( new VariableExpr( objDecl ) ) );
     157                        expr->get_args().splice( expr->get_args().end(), args );
     158                        return expr;
     159                }
     160
     161                class InitExpander : public Visitor {
     162                  public:
     163                  InitExpander() {}
     164                  // ~InitExpander() {}
     165                        virtual void visit( SingleInit * singleInit );
     166                        virtual void visit( ListInit * listInit );
     167                        std::list< Expression * > argList;
     168                };
     169
     170                void InitExpander::visit( SingleInit * singleInit ) {
     171                        argList.push_back( singleInit->get_value()->clone() );
     172                }
     173
     174                void InitExpander::visit( ListInit * listInit ) {
     175                        // xxx - for now, assume no nested list inits
     176                        std::list<Initializer*>::iterator it = listInit->begin_initializers();
     177                        for ( ; it != listInit->end_initializers(); ++it ) {
     178                                (*it)->accept( *this );
     179                        }
     180                }
     181
     182                std::list< Expression * > makeInitList( Initializer * init ) {
     183                        InitExpander expander;
     184                        maybeAccept( init, expander );
     185                        return expander.argList;
     186                }
     187        }
     188
     189        ObjectDecl * CtorDtor::mutate( ObjectDecl * objDecl ) {
     190                // hands off if designated or if @=
     191                if ( tryConstruct( objDecl ) ) {
     192                        if ( inFunction ) {
     193                                if ( ArrayType * at = dynamic_cast< ArrayType * >( objDecl->get_type() ) ) {
     194                                        // call into makeArrayFunction from validate.cc to generate calls to ctor/dtor for each element of array
     195                                        // TODO: walk initializer and generate appropriate copy ctor if element has initializer
     196                                        std::list< Statement * > ctor;
     197                                        std::list< Statement * > dtor;
     198
     199                                        SymTab::makeArrayFunction( NULL, new VariableExpr( objDecl ), at, "?{}", back_inserter( ctor ) );
     200                                        SymTab::makeArrayFunction( NULL, new VariableExpr( objDecl ), at, "^?{}", front_inserter( dtor ), false );
     201
     202                                        // Currently makeArrayFunction produces a single Statement - a CompoundStmt
     203                                        // which  wraps everything that needs to happen. As such, it's technically
     204                                        // possible to use a Statement ** in the above calls, but this is inherently
     205                                        // unsafe, so instead we take the slightly less efficient route, but will be
     206                                        // immediately informed if somehow the above assumption is broken. In this case,
     207                                        // we could always wrap the list of statements at this point with a CompoundStmt,
     208                                        // but it seems reasonable at the moment for this to be done by makeArrayFunction
     209                                        // itself
     210                                        assert( ctor.size() == 1 );
     211                                        assert( dtor.size() == 1 );
     212
     213                                        objDecl->set_init( new ConstructorInit( ctor.front(), dtor.front(), objDecl->get_init() ) );
     214                                } else {
     215                                        // it's sufficient to attempt to call the ctor/dtor for the given object and its initializer
     216                                        Expression * ctor = makeCtorDtorExpr( "?{}", objDecl, makeInitList( objDecl->get_init() ) );
     217                                        Expression * dtor = makeCtorDtorExpr( "^?{}", objDecl, std::list< Expression * >() );
     218
     219                                        // need to remember init expression, in case no ctors exist
     220                                        // if ctor does exist, want to use ctor expression instead of init
     221                                        // push this decision to the resolver
     222                                        ExprStmt * ctorStmt = new ExprStmt( noLabels, ctor );
     223                                        ExprStmt * dtorStmt = new ExprStmt( noLabels, dtor );
     224                                        objDecl->set_init( new ConstructorInit( ctorStmt, dtorStmt, objDecl->get_init() ) );
     225                                }
     226                        } else {
     227                                // xxx - find a way to construct/destruct globals
     228                                // hack: implicit "static" initialization routine for each struct type? or something similar?
     229                                // --ties into module system
     230                                // this can be done by mangling main and replacing it with our own main which calls each
     231                                // module initialization routine in some decided order (order given in link command?)
     232                                // and finally calls mangled main
     233                        }
     234                }
     235                return objDecl;
     236        }
     237
     238        DeclarationWithType * CtorDtor::mutate( FunctionDecl *functionDecl ) {
     239                // parameters should not be constructed and destructed, so don't mutate FunctionType
     240                bool oldInFunc = inFunction;
     241                mutateAll( functionDecl->get_oldDecls(), *this );
     242                inFunction = true;
     243                functionDecl->set_statements( maybeMutate( functionDecl->get_statements(), *this ) );
     244                inFunction = oldInFunc;
     245                return functionDecl;
     246        }
     247
     248        // should not traverse into any of these declarations to find objects
     249        // that need to be constructed or destructed
     250        Declaration* CtorDtor::mutate( StructDecl *aggregateDecl ) { return aggregateDecl; }
     251        Declaration* CtorDtor::mutate( UnionDecl *aggregateDecl ) { return aggregateDecl; }
     252        Declaration* CtorDtor::mutate( EnumDecl *aggregateDecl ) { return aggregateDecl; }
     253        Declaration* CtorDtor::mutate( ContextDecl *aggregateDecl ) { return aggregateDecl; }
     254        TypeDecl* CtorDtor::mutate( TypeDecl *typeDecl ) { return typeDecl; }
     255        Declaration* CtorDtor::mutate( TypedefDecl *typeDecl ) { return typeDecl; }
     256
    121257} // namespace InitTweak
    122258
Note: See TracChangeset for help on using the changeset viewer.