Ignore:
Timestamp:
May 6, 2016, 3:01:28 PM (8 years ago)
Author:
Rob Schluntz <rschlunt@…>
Branches:
ADT, aaron-thesis, arm-eh, ast-experimental, cleanup-dtors, ctor, deferred_resn, demangler, enum, forall-pointer-decay, gc_noraii, jacob/cs343-translation, jenkins-sandbox, master, memory, new-ast, new-ast-unique-expr, new-env, no_list, persistent-indexer, pthread-emulation, qualifiedEnum, resolv-new, with_gc
Children:
03e5d14
Parents:
9a92216
Message:

cleanup global init code, don't need to disambiguate with libcfa prefix

File:
1 edited

Legend:

Unmodified
Added
Removed
  • src/InitTweak/FixGlobalInit.cc

    r9a92216 r37024fd  
    1010// Created On       : Mon May 04 15:14:56 2016
    1111// Last Modified By : Rob Schluntz
    12 // Last Modified On : Fri May 06 13:51:00 2016
     12// Last Modified On : Fri May 06 14:59:26 2016
    1313// Update Count     : 2
    1414//
     
    3030        class GlobalFixer : public Visitor {
    3131          public:
    32                 GlobalFixer();
     32                GlobalFixer( const std::string & name );
    3333
    3434                virtual void visit( ObjectDecl *objDecl );
     
    4141
    4242                UniqueName tempNamer;
    43                 CompoundStmt * block;
     43                FunctionDecl * initFunction;
    4444        };
    4545
     
    8888
    8989        void fixGlobalInit( std::list< Declaration * > & translationUnit, const std::string & name ) {
    90                 GlobalFixer fixer;
     90                GlobalFixer fixer( name );
    9191                acceptAll( translationUnit, fixer );
    92                 // attribute only appears on the forward declaration, so need to make two function decls:
    93                 // one with the body, one with the attribute.
    94                 FunctionDecl * initFunction = new FunctionDecl( initName( name ), DeclarationNode::NoStorageClass, LinkageSpec::C, new FunctionType( Type::Qualifiers(), false ), 0, false, false );
    95                 FunctionDecl * forward = initFunction->clone();
    96                 forward->set_attribute( FunctionDecl::Constructor );
    97                 initFunction->set_statements( fixer.block );
    98                 translationUnit.push_back( forward );
    99                 translationUnit.push_back( initFunction );
     92                translationUnit.push_back( fixer.initFunction );
    10093        }
    10194
     
    109102  }
    110103
    111         GlobalFixer::GlobalFixer() : tempNamer( "_global_init" ), block( new CompoundStmt( noLabels ) ) {
     104        GlobalFixer::GlobalFixer( const std::string & name ) : tempNamer( "_global_init" ) {
     105                initFunction = new FunctionDecl( initName( name ), DeclarationNode::Static, LinkageSpec::C, new FunctionType( Type::Qualifiers(), false ), new CompoundStmt( noLabels ), false, false, FunctionDecl::Constructor );
    112106        }
    113107
    114108        void GlobalFixer::visit( ObjectDecl *objDecl ) {
    115                 std::list< Statement * > & statements = block->get_kids();
     109                std::list< Statement * > & statements = initFunction->get_statements()->get_kids();
    116110
    117111                if ( objDecl->get_init() == NULL ) return;
Note: See TracChangeset for help on using the changeset viewer.