source: src/InitTweak/FixGlobalInit.cc @ e5d4e5c

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 e5d4e5c was a16764a6, checked in by Thierry Delisle <tdelisle@…>, 6 years ago

Changed warning system to prepare for toggling warnings

  • Property mode set to 100644
File size: 6.3 KB
RevLine 
[711eee5]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//
7// FixGlobalInit.cc --
8//
9// Author           : Rob Schluntz
10// Created On       : Mon May 04 15:14:56 2016
[ca35c51]11// Last Modified By : Peter A. Buhr
[68fe077a]12// Last Modified On : Thu Mar 16 07:53:11 2017
13// Update Count     : 18
[711eee5]14//
15
16#include "FixGlobalInit.h"
[d180746]17
[ea6332d]18#include <cassert>                 // for assert
[d180746]19#include <stddef.h>                // for NULL
20#include <algorithm>               // for replace_if
21
[1cb934d]22#include "Common/PassVisitor.h"
[d180746]23#include "Common/UniqueName.h"     // for UniqueName
24#include "InitTweak.h"             // for isIntrinsicSingleArgCallStmt
25#include "Parser/LinkageSpec.h"    // for C
26#include "SynTree/Attribute.h"     // for Attribute
27#include "SynTree/Constant.h"      // for Constant
28#include "SynTree/Declaration.h"   // for FunctionDecl, ObjectDecl, Declaration
29#include "SynTree/Expression.h"    // for ConstantExpr, Expression (ptr only)
30#include "SynTree/Initializer.h"   // for ConstructorInit, Initializer
[ba3706f]31#include "SynTree/Label.h"         // for Label
[d180746]32#include "SynTree/Statement.h"     // for CompoundStmt, Statement (ptr only)
33#include "SynTree/Type.h"          // for Type, Type::StorageClasses, Functi...
34#include "SynTree/Visitor.h"       // for acceptAll, Visitor
[711eee5]35
36namespace InitTweak {
[1cb934d]37        class GlobalFixer : public WithShortCircuiting {
[711eee5]38          public:
[03e5d14]39                GlobalFixer( const std::string & name, bool inLibrary );
[711eee5]40
[1cb934d]41                void previsit( ObjectDecl *objDecl );
42                void previsit( FunctionDecl *functionDecl );
43                void previsit( StructDecl *aggregateDecl );
44                void previsit( UnionDecl *aggregateDecl );
45                void previsit( EnumDecl *aggregateDecl );
46                void previsit( TraitDecl *aggregateDecl );
47                void previsit( TypeDecl *typeDecl );
[711eee5]48
49                UniqueName tempNamer;
[37024fd]50                FunctionDecl * initFunction;
[9e2c1f0]51                FunctionDecl * destroyFunction;
[711eee5]52        };
53
[03e5d14]54        void fixGlobalInit( std::list< Declaration * > & translationUnit, const std::string & name, bool inLibrary ) {
[1cb934d]55                PassVisitor<GlobalFixer> visitor( name, inLibrary );
56                acceptAll( translationUnit, visitor );
57                GlobalFixer & fixer = visitor.pass;
[ec79847]58                // don't need to include function if it's empty
59                if ( fixer.initFunction->get_statements()->get_kids().empty() ) {
60                        delete fixer.initFunction;
61                } else {
62                        translationUnit.push_back( fixer.initFunction );
[ca35c51]63                } // if
64
[ec79847]65                if ( fixer.destroyFunction->get_statements()->get_kids().empty() ) {
66                        delete fixer.destroyFunction;
67                } else {
68                        translationUnit.push_back( fixer.destroyFunction );
[ca35c51]69                } // if
[711eee5]70        }
71
[9e2c1f0]72  std::string globalFunctionName( const std::string & name ) {
[711eee5]73        // get basename
74        std::string ret = name.substr( 0, name.find( '.' ) );
75        // replace invalid characters with _
76                static std::string invalid = "/-";
77        replace_if( ret.begin(), ret.end(), []( char c ) { return invalid.find(c) != std::string::npos; }, '_' );
[9e2c1f0]78        return ret;
[711eee5]79  }
80
[03e5d14]81        GlobalFixer::GlobalFixer( const std::string & name, bool inLibrary ) : tempNamer( "_global_init" ) {
[9e2c1f0]82                std::string fixedName = globalFunctionName( name );
[7baed7d]83                std::list< Expression * > ctorParameters;
84                std::list< Expression * > dtorParameters;
85                if ( inLibrary ) {
86                        // Constructor/destructor attributes take a single parameter which
87                        // is the priority, with lower numbers meaning higher priority.
88                        // Functions specified with priority are guaranteed to run before
89                        // functions without a priority. To ensure that constructors and destructors
90                        // for library code are run before constructors and destructors for user code,
91                        // specify a priority when building the library. Priorities 0-100 are reserved by gcc.
[eb2e723]92                        ctorParameters.push_back( new ConstantExpr( Constant::from_int( 102 ) ) );
93                        dtorParameters.push_back( new ConstantExpr( Constant::from_int( 102 ) ) );
[7baed7d]94                }
[ba3706f]95                initFunction = new FunctionDecl( "_init_" + fixedName, Type::StorageClasses( Type::Static ), LinkageSpec::C, new FunctionType( Type::Qualifiers(), false ), new CompoundStmt() );
[7baed7d]96                initFunction->get_attributes().push_back( new Attribute( "constructor", ctorParameters ) );
[ba3706f]97                destroyFunction = new FunctionDecl( "_destroy_" + fixedName, Type::StorageClasses( Type::Static ), LinkageSpec::C, new FunctionType( Type::Qualifiers(), false ), new CompoundStmt() );
[7baed7d]98                destroyFunction->get_attributes().push_back( new Attribute( "destructor", dtorParameters ) );
[711eee5]99        }
100
[1cb934d]101        void GlobalFixer::previsit( ObjectDecl *objDecl ) {
[9e2c1f0]102                std::list< Statement * > & initStatements = initFunction->get_statements()->get_kids();
103                std::list< Statement * > & destroyStatements = destroyFunction->get_statements()->get_kids();
[711eee5]104
105                // C allows you to initialize objects with constant expressions
[4e24610]106                // xxx - this is an optimization. Need to first resolve constructors before we decide
107                // to keep C-style initializer.
108                // if ( isConstExpr( objDecl->get_init() ) ) return;
[711eee5]109
[6cf27a07]110                if ( ConstructorInit * ctorInit = dynamic_cast< ConstructorInit * >( objDecl->get_init() ) ) {
111                        // a decision should have been made by the resolver, so ctor and init are not both non-NULL
112                        assert( ! ctorInit->get_ctor() || ! ctorInit->get_init() );
113
114                        Statement * dtor = ctorInit->get_dtor();
[f9cebb5]115                        if ( dtor && ! isIntrinsicSingleArgCallStmt( dtor ) ) {
[6cf27a07]116                                // don't need to call intrinsic dtor, because it does nothing, but
117                                // non-intrinsic dtors must be called
118                                destroyStatements.push_front( dtor );
119                                ctorInit->set_dtor( NULL );
120                        } // if
121                        if ( Statement * ctor = ctorInit->get_ctor() ) {
122                                initStatements.push_back( ctor );
123                                objDecl->set_init( NULL );
124                                ctorInit->set_ctor( NULL );
125                        } else if ( Initializer * init = ctorInit->get_init() ) {
126                                objDecl->set_init( init );
127                                ctorInit->set_init( NULL );
128                        } else {
129                                // no constructor and no initializer, which is okay
130                                objDecl->set_init( NULL );
131                        } // if
132                        delete ctorInit;
[ca35c51]133                } // if
[711eee5]134        }
135
[4e24610]136        // only modify global variables
[1cb934d]137        void GlobalFixer::previsit( FunctionDecl * ) { visit_children = false; }
138        void GlobalFixer::previsit( StructDecl * ) { visit_children = false; }
139        void GlobalFixer::previsit( UnionDecl * ) { visit_children = false; }
140        void GlobalFixer::previsit( EnumDecl * ) { visit_children = false; }
141        void GlobalFixer::previsit( TraitDecl * ) { visit_children = false; }
142        void GlobalFixer::previsit( TypeDecl * ) { visit_children = false; }
[4e24610]143
[711eee5]144} // namespace InitTweak
145
146// Local Variables: //
147// tab-width: 4 //
148// mode: c++ //
149// compile-command: "make install" //
150// End: //
Note: See TracBrowser for help on using the repository browser.