Changes in / [c13e8dc8:65197c2]
- Location:
- src
- Files:
-
- 14 edited
Legend:
- Unmodified
- Added
- Removed
-
src/ControlStruct/ExceptTranslate.cc
rc13e8dc8 r65197c2 315 315 { 316 316 VarExprReplacer::DeclMap mapping; 317 mapping[ handler_decl ] = new VariableExpr( local_except );317 mapping[ handler_decl ] = local_except; 318 318 VarExprReplacer mapper( mapping ); 319 handler-> body->acceptMutator( mapper );319 handler->get_body()->accept( mapper ); 320 320 } 321 321 322 block->push_back( handler-> body);323 handler-> body = nullptr;322 block->push_back( handler->get_body() ); 323 handler->set_body( nullptr ); 324 324 325 325 std::list<Statement *> caseBody -
src/InitTweak/FixInit.cc
rc13e8dc8 r65197c2 54 54 #include "SynTree/Type.h" // for Type, Type::StorageClasses 55 55 #include "SynTree/TypeSubstitution.h" // for TypeSubstitution, operator<< 56 #include "SynTree/VarExprReplacer.h" // for VarExprReplacer57 56 #include "SynTree/Visitor.h" // for acceptAll, maybeAccept 58 57 … … 159 158 using Parent::previsit; 160 159 160 void previsit( ObjectDecl * objDecl ); 161 161 void previsit( FunctionDecl * funcDecl ); 162 162 163 void previsit( CompoundStmt * compoundStmt ); 164 void postvisit( CompoundStmt * compoundStmt ); 165 void previsit( ReturnStmt * returnStmt ); 163 166 void previsit( BranchStmt * stmt ); 164 167 private: … … 200 203 static void generate( std::list< Declaration * > & translationUnit ); 201 204 202 void previsit( StructDecl * structDecl );203 204 205 void previsit( FunctionDecl * funcDecl ); 205 206 void postvisit( FunctionDecl * funcDecl ); … … 219 220 bool isCtor = false; // true if current function is a constructor 220 221 StructDecl * structDecl = nullptr; 221 222 // special built-in functions necessary for this to work223 StructDecl * dtorStruct = nullptr;224 FunctionDecl * dtorStructDestroy = nullptr;225 222 }; 226 223 … … 647 644 } 648 645 649 DeclarationWithType * getDtorFunc( ObjectDecl * objDecl, Statement * input, std::list< Statement * > & stmtsToAdd ) {650 // unwrap implicit statement wrapper651 Statement * dtor = input;652 if ( ImplicitCtorDtorStmt * implicit = dynamic_cast< ImplicitCtorDtorStmt * >( input ) ) {653 // dtor = implicit->callStmt;654 // implicit->callStmt = nullptr;655 }656 assert( dtor );657 std::list< Expression * > matches;658 collectCtorDtorCalls( dtor, matches );659 660 if ( dynamic_cast< ExprStmt * >( dtor ) ) {661 // only one destructor call in the expression662 if ( matches.size() == 1 ) {663 DeclarationWithType * func = getFunction( matches.front() );664 assertf( func, "getFunction failed to find function in %s", toString( matches.front() ).c_str() );665 666 // cleanup argument must be a function, not an object (including function pointer)667 if ( FunctionDecl * dtorFunc = dynamic_cast< FunctionDecl * > ( func ) ) {668 if ( dtorFunc->type->forall.empty() ) {669 // simple case where the destructor is a monomorphic function call - can simply670 // use that function as the cleanup function.671 delete dtor;672 return func;673 }674 }675 }676 }677 678 // otherwise the cleanup is more complicated - need to build a single argument cleanup function that679 // wraps the more complicated code.680 static UniqueName dtorNamer( "__cleanup_dtor" );681 FunctionDecl * dtorFunc = FunctionDecl::newFunction( dtorNamer.newName(), SymTab::genDefaultType( objDecl->type->stripReferences(), false ), new CompoundStmt( noLabels ) );682 stmtsToAdd.push_back( new DeclStmt( noLabels, dtorFunc ) );683 684 // the original code contains uses of objDecl - replace them with the newly generated 'this' parameter.685 ObjectDecl * thisParam = getParamThis( dtorFunc->type );686 Expression * replacement = new VariableExpr( thisParam );687 688 Type * base = replacement->result->stripReferences();689 if ( dynamic_cast< ArrayType * >( base ) || dynamic_cast< TupleType * > ( base ) ) {690 // need to cast away reference for array types, since the destructor is generated without the reference type,691 // and for tuple types since tuple indexing does not work directly on a reference692 replacement = new CastExpr( replacement, base->clone() );693 }694 VarExprReplacer::replace( dtor, { std::make_pair( objDecl, replacement ) } );695 dtorFunc->statements->push_back( dtor );696 697 return dtorFunc;698 }699 700 646 DeclarationWithType * FixInit::postmutate( ObjectDecl *objDecl ) { 701 647 // since this removes the init field from objDecl, it must occur after children are mutated (i.e. postmutate) … … 810 756 ctorInit->ctor = nullptr; 811 757 } 812 813 Statement * dtor = ctorInit->dtor;814 if ( dtor ) {815 ImplicitCtorDtorStmt * implicit = strict_dynamic_cast< ImplicitCtorDtorStmt * >( dtor );816 Statement * dtorStmt = implicit->callStmt;817 818 // don't need to call intrinsic dtor, because it does nothing, but819 // non-intrinsic dtors must be called820 if ( ! isIntrinsicSingleArgCallStmt( dtorStmt ) ) {821 // set dtor location to the object's location for error messages822 DeclarationWithType * dtorFunc = getDtorFunc( objDecl, dtorStmt, stmtsToAddBefore );823 objDecl->attributes.push_back( new Attribute( "cleanup", { new VariableExpr( dtorFunc ) } ) );824 ctorInit->dtor = nullptr;825 } // if826 }827 758 } // if 828 759 } else if ( Initializer * init = ctorInit->init ) { … … 867 798 868 799 800 template<typename Iterator, typename OutputIterator> 801 void insertDtors( Iterator begin, Iterator end, OutputIterator out ) { 802 for ( Iterator it = begin ; it != end ; ++it ) { 803 // extract destructor statement from the object decl and insert it into the output. Note that this is 804 // only called on lists of non-static objects with implicit non-intrinsic dtors, so if the user manually 805 // calls an intrinsic dtor then the call must (and will) still be generated since the argument may 806 // contain side effects. 807 ObjectDecl * objDecl = *it; 808 ConstructorInit * ctorInit = dynamic_cast< ConstructorInit * >( objDecl->get_init() ); 809 assert( ctorInit && ctorInit->get_dtor() ); 810 *out++ = ctorInit->get_dtor()->clone(); 811 } // for 812 } 813 814 void InsertDtors::previsit( ObjectDecl * objDecl ) { 815 // remember non-static destructed objects so that their destructors can be inserted later 816 if ( ! objDecl->get_storageClasses().is_static ) { 817 if ( ConstructorInit * ctorInit = dynamic_cast< ConstructorInit * >( objDecl->get_init() ) ) { 818 // a decision should have been made by the resolver, so ctor and init are not both non-NULL 819 assert( ! ctorInit->get_ctor() || ! ctorInit->get_init() ); 820 Statement * dtor = ctorInit->get_dtor(); 821 // don't need to call intrinsic dtor, because it does nothing, but 822 // non-intrinsic dtors must be called 823 if ( dtor && ! isIntrinsicSingleArgCallStmt( dtor ) ) { 824 // set dtor location to the object's location for error messages 825 ctorInit->dtor->location = objDecl->location; 826 reverseDeclOrder.front().push_front( objDecl ); 827 } // if 828 } // if 829 } // if 830 } 831 869 832 void InsertDtors::previsit( FunctionDecl * funcDecl ) { 870 833 // each function needs to have its own set of labels … … 879 842 } 880 843 844 void InsertDtors::previsit( CompoundStmt * compoundStmt ) { 845 // visit statements - this will also populate reverseDeclOrder list. don't want to dump all destructors 846 // when block is left, just the destructors associated with variables defined in this block, so push a new 847 // list to the top of the stack so that we can differentiate scopes 848 reverseDeclOrder.push_front( OrderedDecls() ); 849 Parent::previsit( compoundStmt ); 850 } 851 852 void InsertDtors::postvisit( CompoundStmt * compoundStmt ) { 853 // add destructors for the current scope that we're exiting, unless the last statement is a return, which 854 // causes unreachable code warnings 855 std::list< Statement * > & statements = compoundStmt->get_kids(); 856 if ( ! statements.empty() && ! dynamic_cast< ReturnStmt * >( statements.back() ) ) { 857 insertDtors( reverseDeclOrder.front().begin(), reverseDeclOrder.front().end(), back_inserter( statements ) ); 858 } 859 reverseDeclOrder.pop_front(); 860 } 861 862 void InsertDtors::previsit( ReturnStmt * ) { 863 // return exits all scopes, so dump destructors for all scopes 864 for ( OrderedDecls & od : reverseDeclOrder ) { 865 insertDtors( od.begin(), od.end(), back_inserter( stmtsToAddBefore ) ); 866 } // for 867 } 868 881 869 // Handle break/continue/goto in the same manner as C++. Basic idea: any objects that are in scope at the 882 870 // BranchStmt but not at the labelled (target) statement must be destructed. If there are any objects in scope … … 906 894 if ( ! diff.empty() ) { 907 895 throw SemanticError( std::string("jump to label '") + stmt->get_target().get_name() + "' crosses initialization of " + (*diff.begin())->get_name() + " ", stmt ); 896 } // if 897 // S_G-S_L results in set of objects that must be destructed 898 diff.clear(); 899 std::set_difference( curVars.begin(), curVars.end(), lvars.begin(), lvars.end(), std::inserter( diff, diff.end() ) ); 900 DTOR_PRINT( 901 std::cerr << "S_G-S_L = " << printSet( diff ) << std::endl; 902 ) 903 if ( ! diff.empty() ) { 904 // create an auxilliary set for fast lookup -- can't make diff a set, because diff ordering should be consistent for error messages. 905 std::unordered_set<ObjectDecl *> needsDestructor( diff.begin(), diff.end() ); 906 907 // go through decl ordered list of objectdecl. for each element that occurs in diff, output destructor 908 OrderedDecls ordered; 909 for ( OrderedDecls & rdo : reverseDeclOrder ) { 910 // add elements from reverseDeclOrder into ordered if they occur in diff - it is key that this happens in reverse declaration order. 911 copy_if( rdo.begin(), rdo.end(), back_inserter( ordered ), [&]( ObjectDecl * objDecl ) { return needsDestructor.count( objDecl ); } ); 912 } // for 913 insertDtors( ordered.begin(), ordered.end(), back_inserter( stmtsToAddBefore ) ); 908 914 } // if 909 915 } … … 931 937 } 932 938 933 void GenStructMemberCalls::previsit( StructDecl * structDecl ) {934 if ( ! dtorStruct && structDecl->name == "__Destructor" ) {935 dtorStruct = structDecl;936 }937 }938 939 939 void GenStructMemberCalls::previsit( FunctionDecl * funcDecl ) { 940 940 GuardValue( function ); … … 949 949 unhandled.clear(); 950 950 usedUninit.clear(); 951 952 if ( ! dtorStructDestroy && funcDecl->name == "__destroy_Destructor" ) {953 dtorStructDestroy = funcDecl;954 return;955 }956 951 957 952 function = funcDecl; … … 965 960 if ( structType ) { 966 961 structDecl = structType->get_baseStruct(); 967 if ( structDecl == dtorStruct ) return;968 962 for ( Declaration * member : structDecl->get_members() ) { 969 963 if ( ObjectDecl * field = dynamic_cast< ObjectDecl * >( member ) ) { … … 1035 1029 callStmt->acceptMutator( resolver ); 1036 1030 if ( isCtor ) { 1037 function-> statements->push_front( callStmt );1031 function->get_statements()->push_front( callStmt ); 1038 1032 } else { 1039 1033 // destructor statements should be added at the end 1040 // function->get_statements()->push_back( callStmt ); 1041 1042 // Destructor _dtor0 = { &b.a1, (void (*)(void *)_destroy_A }; 1043 std::list< Statement * > stmtsToAdd; 1044 1045 static UniqueName memberDtorNamer = { "__memberDtor" }; 1046 assertf( dtorStruct, "builtin __Destructor not found." ); 1047 assertf( dtorStructDestroy, "builtin __destroy_Destructor not found." ); 1048 1049 Expression * thisExpr = new AddressExpr( new VariableExpr( thisParam ) ); 1050 Expression * dtorExpr = new VariableExpr( getDtorFunc( thisParam, callStmt, stmtsToAdd ) ); 1051 1052 // cast destructor pointer to void (*)(void *), to silence GCC incompatible pointer warnings 1053 FunctionType * dtorFtype = new FunctionType( Type::Qualifiers(), false ); 1054 dtorFtype->parameters.push_back( ObjectDecl::newObject( "", new PointerType( Type::Qualifiers(), new VoidType( Type::Qualifiers() ) ), nullptr ) ); 1055 Type * dtorType = new PointerType( Type::Qualifiers(), dtorFtype ); 1056 1057 ObjectDecl * destructor = ObjectDecl::newObject( memberDtorNamer.newName(), new StructInstType( Type::Qualifiers(), dtorStruct ), new ListInit( { new SingleInit( thisExpr ), new SingleInit( new CastExpr( dtorExpr, dtorType ) ) } ) ); 1058 function->statements->push_front( new DeclStmt( noLabels, destructor ) ); 1059 destructor->attributes.push_back( new Attribute( "cleanup", { new VariableExpr( dtorStructDestroy ) } ) ); 1060 1061 function->statements->kids.splice( function->statements->kids.begin(), stmtsToAdd ); 1034 function->get_statements()->push_back( callStmt ); 1062 1035 } 1063 1036 } catch ( SemanticError & error ) { -
src/InitTweak/InitTweak.cc
rc13e8dc8 r65197c2 340 340 std::list< Expression * > matches; 341 341 collectCtorDtorCalls( stmt, matches ); 342 assert f( matches.size() <= 1, "%zd constructor/destructors found in %s", matches.size(), toString( stmt ).c_str());342 assert( matches.size() <= 1 ); 343 343 return matches.size() == 1 ? matches.front() : nullptr; 344 344 } -
src/SymTab/Autogen.cc
rc13e8dc8 r65197c2 46 46 /// Data used to generate functions generically. Specifically, the name of the generated function and a function which generates the routine protoype 47 47 struct FuncData { 48 typedef FunctionType * (*TypeGen)( Type * , bool);48 typedef FunctionType * (*TypeGen)( Type * ); 49 49 FuncData( const std::string & fname, const TypeGen & genType ) : fname( fname ), genType( genType ) {} 50 50 std::string fname; … … 232 232 233 233 /// given type T, generate type of default ctor/dtor, i.e. function type void (*) (T *) 234 FunctionType * genDefaultType( Type * paramType, bool maybePolymorphic ) { 234 FunctionType * genDefaultType( Type * paramType ) { 235 const auto & typeParams = getGenericParams( paramType ); 235 236 FunctionType *ftype = new FunctionType( Type::Qualifiers(), false ); 236 if ( maybePolymorphic ) { 237 // only copy in 238 const auto & typeParams = getGenericParams( paramType ); 239 cloneAll( typeParams, ftype->forall ); 240 } 237 cloneAll( typeParams, ftype->forall ); 241 238 ObjectDecl *dstParam = new ObjectDecl( "_dst", Type::StorageClasses(), LinkageSpec::Cforall, nullptr, new ReferenceType( Type::Qualifiers(), paramType->clone() ), nullptr ); 242 239 ftype->parameters.push_back( dstParam ); … … 245 242 246 243 /// given type T, generate type of copy ctor, i.e. function type void (*) (T *, T) 247 FunctionType * genCopyType( Type * paramType , bool maybePolymorphic) {248 FunctionType *ftype = genDefaultType( paramType , maybePolymorphic);244 FunctionType * genCopyType( Type * paramType ) { 245 FunctionType *ftype = genDefaultType( paramType ); 249 246 ObjectDecl *srcParam = new ObjectDecl( "_src", Type::StorageClasses(), LinkageSpec::Cforall, nullptr, paramType->clone(), nullptr ); 250 247 ftype->parameters.push_back( srcParam ); … … 253 250 254 251 /// given type T, generate type of assignment, i.e. function type T (*) (T *, T) 255 FunctionType * genAssignType( Type * paramType , bool maybePolymorphic) {256 FunctionType *ftype = genCopyType( paramType , maybePolymorphic);252 FunctionType * genAssignType( Type * paramType ) { 253 FunctionType *ftype = genCopyType( paramType ); 257 254 ObjectDecl *returnVal = new ObjectDecl( "_ret", Type::StorageClasses(), LinkageSpec::Cforall, nullptr, paramType->clone(), nullptr ); 258 255 ftype->returnVals.push_back( returnVal ); … … 312 309 for ( const FuncData & d : data ) { 313 310 // generate a function (?{}, ?=?, ^?{}) based on the current FuncData. 314 FunctionType * ftype = d.genType( type , true);311 FunctionType * ftype = d.genType( type ); 315 312 316 313 // destructor for concurrent type must be mutex -
src/SymTab/Autogen.h
rc13e8dc8 r65197c2 45 45 extern FunctionDecl * dereferenceOperator; 46 46 47 /// generate the type of an assignment function for paramType. 48 /// maybePolymorphic is true if the resulting FunctionType is allowed to be polymorphic 49 FunctionType * genAssignType( Type * paramType, bool maybePolymorphic = true ); 50 51 /// generate the type of a default constructor or destructor for paramType. 52 /// maybePolymorphic is true if the resulting FunctionType is allowed to be polymorphic 53 FunctionType * genDefaultType( Type * paramType, bool maybePolymorphic = true ); 54 55 /// generate the type of a copy constructor for paramType. 56 /// maybePolymorphic is true if the resulting FunctionType is allowed to be polymorphic 57 FunctionType * genCopyType( Type * paramType, bool maybePolymorphic = true ); 47 // generate the type of an assignment function for paramType 48 FunctionType * genAssignType( Type * paramType ); 49 50 // generate the type of a default constructor or destructor for paramType 51 FunctionType * genDefaultType( Type * paramType ); 52 53 // generate the type of a copy constructor for paramType 54 FunctionType * genCopyType( Type * paramType ); 58 55 59 56 /// inserts into out a generated call expression to function fname with arguments dstParam and srcParam. Intended to be used with generated ?=?, ?{}, and ^?{} calls. -
src/SynTree/CompoundStmt.cc
rc13e8dc8 r65197c2 59 59 DeclarationWithType * origdwt = strict_dynamic_cast< DeclarationWithType * > ( origDeclStmt->get_decl() ); 60 60 assert( dwt->get_name() == origdwt->get_name() ); 61 declMap[ origdwt ] = new VariableExpr( dwt );61 declMap[ origdwt ] = dwt; 62 62 } else assert( ! dynamic_cast< DeclarationWithType * > ( origDeclStmt->get_decl() ) ); 63 63 } else assert( ! dynamic_cast< DeclStmt * > ( s ) ); … … 65 65 if ( ! declMap.empty() ) { 66 66 VarExprReplacer replacer( declMap ); 67 accept Mutator( replacer );67 accept( replacer ); 68 68 } 69 69 } -
src/SynTree/FunctionDecl.cc
rc13e8dc8 r65197c2 43 43 VarExprReplacer::DeclMap declMap; 44 44 for ( auto p : group_iterate( other.type->parameters, type->parameters ) ) { 45 declMap[ std::get<0>(p) ] = new VariableExpr( std::get<1>(p));45 declMap[ std::get<0>(p) ] = std::get<1>(p); 46 46 } 47 47 for ( auto p : group_iterate( other.type->returnVals, type->returnVals ) ) { 48 declMap[ std::get<0>(p) ] = new VariableExpr( std::get<1>(p));48 declMap[ std::get<0>(p) ] = std::get<1>(p); 49 49 } 50 50 if ( ! declMap.empty() ) { 51 51 VarExprReplacer replacer( declMap ); 52 accept Mutator( replacer );52 accept( replacer ); 53 53 } 54 54 } -
src/SynTree/Mutator.h
rc13e8dc8 r65197c2 120 120 121 121 virtual TypeSubstitution * mutate( TypeSubstitution * sub ); 122 123 122 private: 124 123 virtual Declaration * handleAggregateDecl(AggregateDecl * aggregateDecl ); -
src/SynTree/VarExprReplacer.cc
rc13e8dc8 r65197c2 22 22 VarExprReplacer::VarExprReplacer( const DeclMap & declMap, bool debug ) : declMap( declMap ), debug( debug ) {} 23 23 24 VarExprReplacer::~VarExprReplacer() { 25 for ( auto p : declMap ) { 26 delete p.second; 24 // replace variable with new node from decl map 25 void VarExprReplacer::visit( VariableExpr * varExpr ) { 26 // xxx - assertions and parameters aren't accounted for in this... (i.e. they aren't inserted into the map when it's made, only DeclStmts are) 27 if ( declMap.count( varExpr->get_var() ) ) { 28 if ( debug ) { 29 std::cerr << "replacing variable reference: " << (void*)varExpr->get_var() << " " << varExpr->get_var() << " with " << (void*)declMap.at( varExpr->get_var() ) << " " << declMap.at( varExpr->get_var() ) << std::endl; 30 } 31 varExpr->set_var( declMap.at( varExpr->get_var() ) ); 27 32 } 28 33 } 29 30 // replace variable with new node from decl map31 Expression * VarExprReplacer::mutate( VariableExpr * varExpr ) {32 // xxx - assertions and parameters aren't accounted for in this... (i.e. they aren't inserted into the map when it's made, only DeclStmts are)33 if ( declMap.count( varExpr->var ) ) {34 Expression * expr = declMap.at( varExpr->var );35 if ( debug ) {36 std::cerr << "replacing variable reference: " << (void*)varExpr->var << " " << varExpr->var << " with " << (void*)expr << " " << expr << std::endl;37 }38 delete varExpr;39 return expr->clone();40 }41 return varExpr;42 } -
src/SynTree/VarExprReplacer.h
rc13e8dc8 r65197c2 24 24 25 25 /// Visitor that replaces the declarations that VariableExprs refer to, according to the supplied mapping 26 class VarExprReplacer : public Mutator {26 class VarExprReplacer : public Visitor { 27 27 public: 28 typedef std::map< DeclarationWithType *, Expression* > DeclMap;28 typedef std::map< DeclarationWithType *, DeclarationWithType * > DeclMap; 29 29 private: 30 30 const DeclMap & declMap; … … 32 32 public: 33 33 VarExprReplacer( const DeclMap & declMap, bool debug = false ); 34 ~VarExprReplacer();35 34 36 35 // replace variable with new node from decl map 37 virtual Expression * mutate( VariableExpr * varExpr );36 virtual void visit( VariableExpr * varExpr ); 38 37 39 template<typename Node> 40 static void replace( Node *& node, const DeclMap & declMap, bool debug = false ) { 38 static void replace( BaseSyntaxNode * node, const DeclMap & declMap, bool debug = false ) { 41 39 VarExprReplacer replacer( declMap, debug ); 42 node = maybeMutate( node, replacer );40 maybeAccept( node, replacer ); 43 41 } 44 42 }; -
src/prelude/builtins.c
rc13e8dc8 r65197c2 96 96 static inline unsigned int ?\=?( unsigned int & x, unsigned long int y ) { x = x \ y; return x; } 97 97 98 // type that wraps a pointer and a destructor-like function - used in generating implicit destructor calls for struct members in user-defined functions99 forall(dtype T)100 struct __Destructor {101 T * object;102 void (*dtor)(T *);103 };104 105 // defined destructor in the case that non-generated code wants to use __Destructor106 forall(dtype T)107 static inline void ^?{}(__Destructor(T) & x) {108 x.dtor(x.object);109 }110 111 // easy interface into __Destructor's destructor for easy codegen purposes112 extern "C" {113 forall(dtype T)114 static inline void __destroy_Destructor(__Destructor(T) * dtor) {115 ^(*dtor){};116 }117 }118 119 98 // Local Variables: // 120 99 // mode: c // -
src/tests/.expect/memberCtors-ERR1.txt
rc13e8dc8 r65197c2 1 memberCtors.c:7 8:1 error: in void ?{}(B &b), field a2 used before being constructed1 memberCtors.c:71:1 error: in void ?{}(B &b), field a2 used before being constructed -
src/tests/.expect/memberCtors.txt
rc13e8dc8 r65197c2 98 98 end copy construct A 99 99 End of main 100 begin destruct B101 100 constructing int 102 101 constructing int … … 147 146 destructing int: 0 148 147 destructing int: 1000 149 end destruct B 150 destructing int: 0 151 destructing int: 0 152 destructing int: 999 153 destructing int: 0 154 destructing int: 0 155 destructing int: 0 156 destructing int: 0 157 destructing int: 0 158 destructing int: 999 159 begin destruct B 148 destructing int: 0 149 destructing int: 0 150 destructing int: 999 151 destructing int: 0 152 destructing int: 0 153 destructing int: 0 154 destructing int: 0 155 destructing int: 0 156 destructing int: 999 160 157 constructing int 161 158 constructing int … … 206 203 destructing int: 0 207 204 destructing int: 1000 208 end destruct B 209 destructing int: 0 210 destructing int: 0 211 destructing int: 999 212 destructing int: 0 213 destructing int: 0 214 destructing int: 0 215 destructing int: 0 216 destructing int: 0 217 destructing int: 999 205 destructing int: 0 206 destructing int: 0 207 destructing int: 999 208 destructing int: 0 209 destructing int: 0 210 destructing int: 0 211 destructing int: 0 212 destructing int: 0 213 destructing int: 999 -
src/tests/memberCtors.c
rc13e8dc8 r65197c2 22 22 } 23 23 24 /* WrappedInt */void ?=?(WrappedInt & this, int x) {24 void ?=?(WrappedInt & this, int x) { 25 25 printf("assigning int: %d %d\n", this.x, x); 26 26 this.x = x; 27 // return this;28 27 } 29 30 // WrappedInt ?=?(WrappedInt & this, WrappedInt other) {31 // printf("assigning int: %d %d\n", this.x, other.x);32 // this.x = other.x;33 // return this;34 // }35 28 36 29 struct A { … … 86 79 87 80 void ^?{}(B & b) { 88 printf("begin destruct B\n");89 81 b.a2 = (A) { 0 }; 90 82 ^(b.a1){}; 91 printf("end destruct B\n");92 83 } // a2, a3 never destructed - will be automatically destructed 93 84 94 85 int main() { 95 86 printf("Before declaration of b1\n"); 96 B b1; // b1 = { { 1000, 0, 0 }, { 1001, 0, 0 }, { 0, 0, 0 } }87 B b1; 97 88 printf("Before declaration of b2\n"); 98 89 B b2 = b1;
Note:
See TracChangeset
for help on using the changeset viewer.