Changeset d5556a3 for src/SynTree
- Timestamp:
- Dec 13, 2016, 5:37:15 PM (8 years ago)
- Branches:
- ADT, aaron-thesis, arm-eh, ast-experimental, cleanup-dtors, deferred_resn, demangler, enum, forall-pointer-decay, jacob/cs343-translation, jenkins-sandbox, master, new-ast, new-ast-unique-expr, new-env, no_list, persistent-indexer, pthread-emulation, qualifiedEnum, resolv-new, with_gc
- Children:
- 31f379c
- Parents:
- 1d2b64f
- Location:
- src/SynTree
- Files:
-
- 5 edited
Legend:
- Unmodified
- Added
- Removed
-
TabularUnified src/SynTree/Expression.cc ¶
r1d2b64f rd5556a3 524 524 525 525 ImplicitCopyCtorExpr::~ImplicitCopyCtorExpr() { 526 set_env( nullptr ); // ImplicitCopyCtorExpr does not take ownership of an environment 526 527 delete callExpr; 527 528 deleteAll( tempDecls ); … … 533 534 os << "Implicit Copy Constructor Expression: " << std::endl; 534 535 assert( callExpr ); 536 os << std::string( indent+2, ' ' ); 535 537 callExpr->print( os, indent + 2 ); 536 538 os << std::endl << std::string( indent, ' ' ) << "with temporaries:" << std::endl; … … 584 586 os << std::string( indent+2, ' ' ); 585 587 initializer->print( os, indent + 2 ); 588 Expression::print( os, indent ); 586 589 } 587 590 … … 603 606 os << " ... "; 604 607 high->print( os, indent ); 608 Expression::print( os, indent ); 605 609 } 606 610 … … 614 618 } 615 619 } 616 StmtExpr::StmtExpr( const StmtExpr &other ) : Expression( other ), statements( other.statements->clone() ) {} 620 StmtExpr::StmtExpr( const StmtExpr &other ) : Expression( other ), statements( other.statements->clone() ) { 621 cloneAll( other.returnDecls, returnDecls ); 622 cloneAll( other.dtors, dtors ); 623 } 617 624 StmtExpr::~StmtExpr() { 618 625 delete statements; 626 deleteAll( dtors ); 627 deleteAll( returnDecls ); 619 628 } 620 629 void StmtExpr::print( std::ostream &os, int indent ) const { 621 630 os << "Statement Expression: " << std::endl << std::string( indent, ' ' ); 622 631 statements->print( os, indent+2 ); 632 if ( ! returnDecls.empty() ) { 633 os << std::string( indent+2, ' ' ) << "with returnDecls: "; 634 printAll( returnDecls, os, indent+2 ); 635 } 636 if ( ! dtors.empty() ) { 637 os << std::string( indent+2, ' ' ) << "with dtors: "; 638 printAll( dtors, os, indent+2 ); 639 } 640 Expression::print( os, indent ); 623 641 } 624 642 … … 644 662 get_expr()->print( os, indent+2 ); 645 663 if ( get_object() ) { 646 os << "with decl: ";664 os << std::string( indent+2, ' ' ) << "with decl: "; 647 665 get_object()->printShort( os, indent+2 ); 648 666 } 667 Expression::print( os, indent ); 649 668 } 650 669 -
TabularUnified src/SynTree/Expression.h ¶
r1d2b64f rd5556a3 543 543 544 544 std::list< ObjectDecl * > & get_tempDecls() { return tempDecls; } 545 void set_tempDecls( std::list< ObjectDecl * > newValue ) { tempDecls = newValue; }546 547 545 std::list< ObjectDecl * > & get_returnDecls() { return returnDecls; } 548 void set_returnDecls( std::list< ObjectDecl * > newValue ) { returnDecls = newValue; }549 550 546 std::list< Expression * > & get_dtors() { return dtors; } 551 void set_dtors( std::list< Expression * > newValue ) { dtors = newValue; }552 547 553 548 virtual ImplicitCopyCtorExpr *clone() const { return new ImplicitCopyCtorExpr( *this ); } … … 706 701 virtual ~TupleAssignExpr(); 707 702 708 std::list< Expression * > & get_assigns() { return assigns; }709 std::list< ObjectDecl * > & get_tempDecls() { return tempDecls; }703 TupleAssignExpr * set_stmtExpr( StmtExpr * newValue ) { stmtExpr = newValue; return this; } 704 StmtExpr * get_stmtExpr() const { return stmtExpr; } 710 705 711 706 virtual TupleAssignExpr *clone() const { return new TupleAssignExpr( *this ); } … … 714 709 virtual void print( std::ostream &os, int indent = 0 ) const; 715 710 private: 716 std::list< Expression * > assigns; // assignment expressions that use tempDecls 717 std::list< ObjectDecl * > tempDecls; // temporaries for address of lhs exprs 711 StmtExpr * stmtExpr = nullptr; 718 712 }; 719 713 … … 728 722 StmtExpr * set_statements( CompoundStmt * newValue ) { statements = newValue; return this; } 729 723 724 std::list< ObjectDecl * > & get_returnDecls() { return returnDecls; } 725 std::list< Expression * > & get_dtors() { return dtors; } 726 730 727 virtual StmtExpr *clone() const { return new StmtExpr( *this ); } 731 728 virtual void accept( Visitor &v ) { v.visit( this ); } … … 734 731 private: 735 732 CompoundStmt * statements; 733 std::list< ObjectDecl * > returnDecls; // return variable(s) for stmt expression 734 std::list< Expression * > dtors; // destructor(s) for return variable(s) 736 735 }; 737 736 -
TabularUnified src/SynTree/Mutator.cc ¶
r1d2b64f rd5556a3 325 325 mutateAll( impCpCtorExpr->get_tempDecls(), *this ); 326 326 mutateAll( impCpCtorExpr->get_returnDecls(), *this ); 327 mutateAll( impCpCtorExpr->get_dtors(), *this ); 327 328 return impCpCtorExpr; 328 329 } … … 373 374 Expression *Mutator::mutate( TupleAssignExpr *assignExpr ) { 374 375 assignExpr->set_result( maybeMutate( assignExpr->get_result(), *this ) ); 375 mutateAll( assignExpr->get_tempDecls(), *this ); 376 mutateAll( assignExpr->get_assigns(), *this ); 376 assignExpr->set_stmtExpr( maybeMutate( assignExpr->get_stmtExpr(), *this ) ); 377 377 return assignExpr; 378 378 } … … 381 381 stmtExpr->set_result( maybeMutate( stmtExpr->get_result(), *this ) ); 382 382 stmtExpr->set_statements( maybeMutate( stmtExpr->get_statements(), *this ) ); 383 mutateAll( stmtExpr->get_returnDecls(), *this ); 384 mutateAll( stmtExpr->get_dtors(), *this ); 383 385 return stmtExpr; 384 386 } … … 503 505 Initializer *Mutator::mutate( ConstructorInit *ctorInit ) { 504 506 ctorInit->set_ctor( maybeMutate( ctorInit->get_ctor(), *this ) ); 507 ctorInit->set_dtor( maybeMutate( ctorInit->get_dtor(), *this ) ); 505 508 ctorInit->set_init( maybeMutate( ctorInit->get_init(), *this ) ); 506 509 return ctorInit; -
TabularUnified src/SynTree/TupleExpr.cc ¶
r1d2b64f rd5556a3 87 87 } 88 88 89 90 TupleAssignExpr::TupleAssignExpr( const std::list< Expression * > & assigns, const std::list< ObjectDecl * > & tempDecls, Expression * _aname ) : Expression( _aname ), assigns( assigns ), tempDecls( tempDecls ) { 89 TupleAssignExpr::TupleAssignExpr( const std::list< Expression * > & assigns, const std::list< ObjectDecl * > & tempDecls, Expression * _aname ) : Expression( _aname ) { 90 // convert internally into a StmtExpr which contains the declarations and produces the tuple of the assignments 91 91 set_result( Tuples::makeTupleType( assigns ) ); 92 CompoundStmt * compoundStmt = new CompoundStmt( noLabels ); 93 std::list< Statement * > & stmts = compoundStmt->get_kids(); 94 for ( ObjectDecl * obj : tempDecls ) { 95 stmts.push_back( new DeclStmt( noLabels, obj ) ); 96 } 97 TupleExpr * tupleExpr = new TupleExpr( assigns ); 98 assert( tupleExpr->get_result() ); 99 stmts.push_back( new ExprStmt( noLabels, tupleExpr ) ); 100 stmtExpr = new StmtExpr( compoundStmt ); 92 101 } 93 102 94 103 TupleAssignExpr::TupleAssignExpr( const TupleAssignExpr &other ) : Expression( other ) { 95 cloneAll( other.assigns, assigns ); 96 cloneAll( other.tempDecls, tempDecls ); 97 98 // clone needs to go into assigns and replace tempDecls 99 VarExprReplacer::DeclMap declMap; 100 std::list< ObjectDecl * >::const_iterator origit = other.tempDecls.begin(); 101 for ( ObjectDecl * temp : tempDecls ) { 102 assert( origit != other.tempDecls.end() ); 103 ObjectDecl * origTemp = *origit++; 104 assert( origTemp ); 105 assert( temp->get_name() == origTemp->get_name() ); 106 declMap[ origTemp ] = temp; 107 } 108 if ( ! declMap.empty() ) { 109 VarExprReplacer replacer( declMap ); 110 for ( Expression * assn : assigns ) { 111 assn->accept( replacer ); 112 } 113 } 104 assert( other.stmtExpr ); 105 stmtExpr = other.stmtExpr->clone(); 114 106 } 115 107 116 108 TupleAssignExpr::~TupleAssignExpr() { 117 deleteAll( assigns ); 118 // deleteAll( tempDecls ); 109 delete stmtExpr; 119 110 } 120 111 121 112 void TupleAssignExpr::print( std::ostream &os, int indent ) const { 122 os << "Tuple Assignment Expression, with temporaries:" << std::endl; 123 printAll( tempDecls, os, indent+4 ); 124 os << std::string( indent+2, ' ' ) << "with assignments: " << std::endl; 125 printAll( assigns, os, indent+4 ); 113 os << "Tuple Assignment Expression, with stmt expr:" << std::endl; 114 os << std::string( indent+2, ' ' ); 115 stmtExpr->print( os, indent+4 ); 126 116 Expression::print( os, indent ); 127 117 } -
TabularUnified src/SynTree/Visitor.cc ¶
r1d2b64f rd5556a3 276 276 acceptAll( impCpCtorExpr->get_tempDecls(), *this ); 277 277 acceptAll( impCpCtorExpr->get_returnDecls(), *this ); 278 acceptAll( impCpCtorExpr->get_dtors(), *this ); 278 279 } 279 280 … … 317 318 void Visitor::visit( TupleAssignExpr *assignExpr ) { 318 319 maybeAccept( assignExpr->get_result(), *this ); 319 acceptAll( assignExpr->get_tempDecls(), *this ); 320 acceptAll( assignExpr->get_assigns(), *this ); 320 maybeAccept( assignExpr->get_stmtExpr(), *this ); 321 321 } 322 322 … … 324 324 maybeAccept( stmtExpr->get_result(), *this ); 325 325 maybeAccept( stmtExpr->get_statements(), *this ); 326 acceptAll( stmtExpr->get_returnDecls(), *this ); 327 acceptAll( stmtExpr->get_dtors(), *this ); 326 328 } 327 329 … … 425 427 void Visitor::visit( ConstructorInit *ctorInit ) { 426 428 maybeAccept( ctorInit->get_ctor(), *this ); 429 maybeAccept( ctorInit->get_dtor(), *this ); 427 430 maybeAccept( ctorInit->get_init(), *this ); 428 431 }
Note: See TracChangeset
for help on using the changeset viewer.