Ignore:
File:
1 edited

Legend:

Unmodified
Added
Removed
  • src/InitTweak/GenInit.h

    r0bd3faf r11df881  
    2222#include "Common/CodeLocation.h"
    2323#include "GenPoly/ScopedSet.h" // for ScopedSet
     24#include "SynTree/SynTree.h"   // for Visitor Nodes
    2425
    2526namespace InitTweak {
    2627        /// Adds return value temporaries and wraps Initializers in ConstructorInit nodes
     28        void genInit( std::list< Declaration * > & translationUnit );
    2729        void genInit( ast::TranslationUnit & translationUnit );
    2830
    2931        /// Converts return statements into copy constructor calls on the hidden return variable.
    3032        /// This pass must happen before auto-gen.
     33        void fixReturnStatements( std::list< Declaration * > & translationUnit );
    3134        void fixReturnStatements( ast::TranslationUnit & translationUnit );
    3235
    3336        /// generates a single ctor/dtor statement using objDecl as the 'this' parameter and arg as the optional argument
     37        ImplicitCtorDtorStmt * genCtorDtor( const std::string & fname, ObjectDecl * objDecl, Expression * arg = nullptr );
    3438        ast::ptr<ast::Stmt> genCtorDtor (const CodeLocation & loc, const std::string & fname, const ast::ObjectDecl * objDecl, const ast::Expr * arg = nullptr);
    3539
    3640        /// creates an appropriate ConstructorInit node which contains a constructor, destructor, and C-initializer
     41        ConstructorInit * genCtorInit( ObjectDecl * objDecl );
    3742        ast::ConstructorInit * genCtorInit( const CodeLocation & loc, const ast::ObjectDecl * objDecl );
    3843
    39         class ManagedTypes final {
     44        class ManagedTypes {
     45        public:
     46                bool isManaged( ObjectDecl * objDecl ) const ; // determine if object is managed
     47                bool isManaged( Type * type ) const; // determine if type is managed
     48
     49                void handleDWT( DeclarationWithType * dwt ); // add type to managed if ctor/dtor
     50                void handleStruct( StructDecl * aggregateDecl ); // add type to managed if child is managed
     51
     52                void beginScope();
     53                void endScope();
     54        private:
     55                GenPoly::ScopedSet< std::string > managedTypes;
     56        };
     57
     58        class ManagedTypes_new {
    4059        public:
    4160                bool isManaged( const ast::ObjectDecl * objDecl ) const ; // determine if object is managed
Note: See TracChangeset for help on using the changeset viewer.