source: src/InitTweak/FixGlobalInit.cc@ 134322e

ADT aaron-thesis arm-eh ast-experimental cleanup-dtors deferred_resn demangler enum forall-pointer-decay jacob/cs343-translation jenkins-sandbox new-ast new-ast-unique-expr new-env no_list persistent-indexer pthread-emulation qualifiedEnum resolv-new with_gc
Last change on this file since 134322e was 68fe077a, checked in by Peter A. Buhr <pabuhr@…>, 8 years ago

move type StorageClasses from DeclarationNode to Type

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