Changes in src/InitTweak/FixInit.cc [5fe35d6:f5c3b6c]
- File:
-
- 1 edited
-
src/InitTweak/FixInit.cc (modified) (7 diffs)
Legend:
- Unmodified
- Added
- Removed
-
src/InitTweak/FixInit.cc
r5fe35d6 rf5c3b6c 393 393 if ( skipCopyConstruct( result ) ) return; // skip certain non-copyable types 394 394 395 // type may involve type variables, so apply type substitution to get temporary variable's actual type. 395 // type may involve type variables, so apply type substitution to get temporary variable's actual type, 396 // since result type may not be substituted (e.g., if the type does not appear in the parameter list) 396 397 // Use applyFree so that types bound in function pointers are not substituted, e.g. in forall(dtype T) void (*)(T). 397 result = result->clone();398 398 env->applyFree( result ); 399 399 ObjectDecl * tmp = ObjectDecl::newObject( "__tmp", result, nullptr ); … … 570 570 571 571 if ( returnDecl ) { 572 UntypedExpr * assign = new UntypedExpr( new NameExpr( "?=?" ) ); 573 assign->get_args().push_back( new VariableExpr( returnDecl ) ); 574 assign->get_args().push_back( callExpr ); 575 // know the result type of the assignment is the type of the LHS (minus the pointer), so 576 // add that onto the assignment expression so that later steps have the necessary information 577 assign->set_result( returnDecl->get_type()->clone() ); 578 572 ApplicationExpr * assign = createBitwiseAssignment( new VariableExpr( returnDecl ), callExpr ); 579 573 Expression * retExpr = new CommaExpr( assign, new VariableExpr( returnDecl ) ); 580 574 // move env from callExpr to retExpr … … 943 937 } 944 938 939 void addIds( SymTab::Indexer & indexer, const std::list< DeclarationWithType * > & decls ) { 940 for ( auto d : decls ) { 941 indexer.addId( d ); 942 } 943 } 944 945 void addTypes( SymTab::Indexer & indexer, const std::list< TypeDecl * > & tds ) { 946 for ( auto td : tds ) { 947 indexer.addType( td ); 948 addIds( indexer, td->assertions ); 949 } 950 } 951 945 952 void GenStructMemberCalls::previsit( FunctionDecl * funcDecl ) { 946 953 GuardValue( function ); … … 999 1006 // need to explicitly re-add function parameters to the indexer in order to resolve copy constructors 1000 1007 auto guard = makeFuncGuard( [this]() { indexer.enterScope(); }, [this]() { indexer.leaveScope(); } ); 1001 indexer.addFunctionType( function->type ); 1008 addTypes( indexer, function->type->forall ); 1009 addIds( indexer, function->type->returnVals ); 1010 addIds( indexer, function->type->parameters ); 1002 1011 1003 1012 // need to iterate through members in reverse in order for … … 1014 1023 // insert and resolve default/copy constructor call for each field that's unhandled 1015 1024 std::list< Statement * > stmt; 1016 Expression * arg2 = nullptr;1025 Expression * arg2 = 0; 1017 1026 if ( isCopyConstructor( function ) ) { 1018 1027 // if copy ctor, need to pass second-param-of-this-function.field … … 1146 1155 assert( ctorExpr->result && ctorExpr->get_result()->size() == 1 ); 1147 1156 1148 // xxx - ideally we would reuse the temporary generated from the copy constructor passes from within firstArg if it exists and not generate a temporary if it's unnecessary.1149 ObjectDecl * tmp = ObjectDecl::newObject( tempNamer.newName(), ctorExpr->get_result()->clone(), nullptr );1150 declsToAddBefore.push_back( tmp );1151 1152 1157 // xxx - this can be TupleAssignExpr now. Need to properly handle this case. 1153 1158 ApplicationExpr * callExpr = strict_dynamic_cast< ApplicationExpr * > ( ctorExpr->get_callExpr() ); … … 1155 1160 ctorExpr->set_callExpr( nullptr ); 1156 1161 ctorExpr->set_env( nullptr ); 1162 1163 // xxx - ideally we would reuse the temporary generated from the copy constructor passes from within firstArg if it exists and not generate a temporary if it's unnecessary. 1164 ObjectDecl * tmp = ObjectDecl::newObject( tempNamer.newName(), callExpr->args.front()->result->clone(), nullptr ); 1165 declsToAddBefore.push_back( tmp ); 1157 1166 delete ctorExpr; 1158 1167
Note:
See TracChangeset
for help on using the changeset viewer.