source: src/InitTweak/FixInit.cc@ 829c907

ADT aaron-thesis arm-eh ast-experimental cleanup-dtors deferred_resn demangler enum forall-pointer-decay jacob/cs343-translation jenkins-sandbox new-ast new-ast-unique-expr new-env no_list persistent-indexer pthread-emulation qualifiedEnum resolv-new with_gc
Last change on this file since 829c907 was 946bcca, checked in by Rob Schluntz <rschlunt@…>, 9 years ago

Merge branch 'master' of plg.uwaterloo.ca:/u/cforall/software/cfa/cfa-cc

  • Property mode set to 100644
File size: 50.2 KB
Line 
1//
2// Cforall Version 1.0.0 Copyright (C) 2015 University of Waterloo
3//
4// The contents of this file are covered under the licence agreement in the
5// file "LICENCE" distributed with Cforall.
6//
7// FixInit.h --
8//
9// Author : Rob Schluntz
10// Created On : Wed Jan 13 16:29:30 2016
11// Last Modified By : Peter A. Buhr
12// Last Modified On : Fri Mar 17 09:13:47 2017
13// Update Count : 71
14//
15
16#include <stack>
17#include <list>
18#include <iterator>
19#include <algorithm>
20#include <unordered_map>
21#include <unordered_set>
22#include "InitTweak.h"
23#include "GenInit.h"
24#include "FixInit.h"
25#include "FixGlobalInit.h"
26#include "ResolvExpr/Resolver.h"
27#include "ResolvExpr/typeops.h"
28#include "SynTree/Declaration.h"
29#include "SynTree/Type.h"
30#include "SynTree/Expression.h"
31#include "SynTree/Attribute.h"
32#include "SynTree/Statement.h"
33#include "SynTree/Initializer.h"
34#include "SynTree/Mutator.h"
35#include "SymTab/Indexer.h"
36#include "SymTab/Autogen.h"
37#include "GenPoly/PolyMutator.h"
38#include "GenPoly/DeclMutator.h"
39#include "SynTree/AddStmtVisitor.h"
40#include "CodeGen/GenType.h" // for warning/error messages
41#include "Tuples/Tuples.h"
42
43bool ctordtorp = false; // print all debug
44bool ctorp = false; // print ctor debug
45bool cpctorp = false; // print copy ctor debug
46bool dtorp = false; // print dtor debug
47#define PRINT( text ) if ( ctordtorp ) { text }
48#define CP_CTOR_PRINT( text ) if ( ctordtorp || cpctorp ) { text }
49#define DTOR_PRINT( text ) if ( ctordtorp || dtorp ) { text }
50
51namespace InitTweak {
52 namespace {
53 typedef std::unordered_map< Expression *, TypeSubstitution * > EnvMap;
54
55 class InsertImplicitCalls final : public GenPoly::PolyMutator {
56 public:
57 /// wrap function application expressions as ImplicitCopyCtorExpr nodes so that it is easy to identify which
58 /// function calls need their parameters to be copy constructed
59 static void insert( std::list< Declaration * > & translationUnit, EnvMap & envMap );
60
61 InsertImplicitCalls( EnvMap & envMap ) : envMap( envMap ) {}
62 typedef GenPoly::PolyMutator Parent;
63 using Parent::mutate;
64 virtual Expression * mutate( ApplicationExpr * appExpr ) override;
65 virtual Expression * mutate( StmtExpr * stmtExpr ) override;
66
67 // collects environments for relevant nodes
68 EnvMap & envMap;
69 };
70
71 class ResolveCopyCtors final : public SymTab::Indexer {
72 public:
73 /// generate temporary ObjectDecls for each argument and return value of each ImplicitCopyCtorExpr,
74 /// generate/resolve copy construction expressions for each, and generate/resolve destructors for both
75 /// arguments and return value temporaries
76 static void resolveImplicitCalls( std::list< Declaration * > & translationUnit, const EnvMap & envMap );
77
78 typedef SymTab::Indexer Parent;
79 using Parent::visit;
80
81 ResolveCopyCtors( const EnvMap & envMap ) : envMap( envMap ) {}
82
83 virtual void visit( ImplicitCopyCtorExpr * impCpCtorExpr ) override;
84 virtual void visit( UniqueExpr * unqExpr ) override;
85 virtual void visit( StmtExpr * stmtExpr ) override;
86
87 /// create and resolve ctor/dtor expression: fname(var, [cpArg])
88 Expression * makeCtorDtor( const std::string & fname, ObjectDecl * var, Expression * cpArg = NULL );
89 /// true if type does not need to be copy constructed to ensure correctness
90 bool skipCopyConstruct( Type * type );
91 void copyConstructArg( Expression *& arg, ImplicitCopyCtorExpr * impCpCtorExpr );
92 void destructRet( ObjectDecl * ret, ImplicitCopyCtorExpr * impCpCtorExpr );
93
94 TypeSubstitution * env;
95 const EnvMap & envMap;
96 };
97
98 /// collects constructed object decls - used as a base class
99 class ObjDeclCollector : public AddStmtVisitor {
100 public:
101 typedef AddStmtVisitor Parent;
102 using Parent::visit;
103 typedef std::set< ObjectDecl * > ObjectSet;
104 virtual void visit( CompoundStmt *compoundStmt ) override;
105 virtual void visit( DeclStmt *stmt ) override;
106
107 // don't go into other functions
108 virtual void visit( FunctionDecl *decl ) override {}
109
110 protected:
111 ObjectSet curVars;
112 };
113
114 // debug
115 struct printSet {
116 typedef ObjDeclCollector::ObjectSet ObjectSet;
117 printSet( const ObjectSet & objs ) : objs( objs ) {}
118 const ObjectSet & objs;
119 };
120 std::ostream & operator<<( std::ostream & out, const printSet & set) {
121 out << "{ ";
122 for ( ObjectDecl * obj : set.objs ) {
123 out << obj->get_name() << ", " ;
124 } // for
125 out << " }";
126 return out;
127 }
128
129 class LabelFinder final : public ObjDeclCollector {
130 public:
131 typedef ObjDeclCollector Parent;
132 typedef std::map< Label, ObjectSet > LabelMap;
133 // map of Label -> live variables at that label
134 LabelMap vars;
135
136 void handleStmt( Statement * stmt );
137
138 // xxx - This needs to be done better.
139 // allow some generalization among different kinds of nodes with with similar parentage (e.g. all
140 // expressions, all statements, etc.) important to have this to provide a single entry point so that as new
141 // subclasses are added, there is only one place that the code has to be updated, rather than ensure that
142 // every specialized class knows about every new kind of statement that might be added.
143 using Parent::visit;
144 virtual void visit( CompoundStmt *stmt ) override { handleStmt( stmt ); return Parent::visit( stmt ); }
145 virtual void visit( ExprStmt *stmt ) override { handleStmt( stmt ); return Parent::visit( stmt ); }
146 virtual void visit( AsmStmt *stmt ) override { handleStmt( stmt ); return Parent::visit( stmt ); }
147 virtual void visit( IfStmt *stmt ) override { handleStmt( stmt ); return Parent::visit( stmt ); }
148 virtual void visit( WhileStmt *stmt ) override { handleStmt( stmt ); return Parent::visit( stmt ); }
149 virtual void visit( ForStmt *stmt ) override { handleStmt( stmt ); return Parent::visit( stmt ); }
150 virtual void visit( SwitchStmt *stmt ) override { handleStmt( stmt ); return Parent::visit( stmt ); }
151 virtual void visit( CaseStmt *stmt ) override { handleStmt( stmt ); return Parent::visit( stmt ); }
152 virtual void visit( BranchStmt *stmt ) override { handleStmt( stmt ); return Parent::visit( stmt ); }
153 virtual void visit( ReturnStmt *stmt ) override { handleStmt( stmt ); return Parent::visit( stmt ); }
154 virtual void visit( TryStmt *stmt ) override { handleStmt( stmt ); return Parent::visit( stmt ); }
155 virtual void visit( CatchStmt *stmt ) override { handleStmt( stmt ); return Parent::visit( stmt ); }
156 virtual void visit( FinallyStmt *stmt ) override { handleStmt( stmt ); return Parent::visit( stmt ); }
157 virtual void visit( NullStmt *stmt ) override { handleStmt( stmt ); return Parent::visit( stmt ); }
158 virtual void visit( DeclStmt *stmt ) override { handleStmt( stmt ); return Parent::visit( stmt ); }
159 virtual void visit( ImplicitCtorDtorStmt *stmt ) override { handleStmt( stmt ); return Parent::visit( stmt ); }
160 };
161
162 class InsertDtors final : public ObjDeclCollector {
163 public:
164 /// insert destructor calls at the appropriate places. must happen before CtorInit nodes are removed
165 /// (currently by FixInit)
166 static void insert( std::list< Declaration * > & translationUnit );
167
168 typedef ObjDeclCollector Parent;
169 typedef std::list< ObjectDecl * > OrderedDecls;
170 typedef std::list< OrderedDecls > OrderedDeclsStack;
171
172 InsertDtors( LabelFinder & finder ) : finder( finder ), labelVars( finder.vars ) {}
173
174 using Parent::visit;
175
176 virtual void visit( ObjectDecl * objDecl ) override;
177 virtual void visit( FunctionDecl * funcDecl ) override;
178
179 virtual void visit( CompoundStmt * compoundStmt ) override;
180 virtual void visit( ReturnStmt * returnStmt ) override;
181 virtual void visit( BranchStmt * stmt ) override;
182 private:
183 void handleGoto( BranchStmt * stmt );
184
185 LabelFinder & finder;
186 LabelFinder::LabelMap & labelVars;
187 OrderedDeclsStack reverseDeclOrder;
188 };
189
190 class FixInit final : public GenPoly::PolyMutator {
191 public:
192 /// expand each object declaration to use its constructor after it is declared.
193 static void fixInitializers( std::list< Declaration * > &translationUnit );
194
195 typedef GenPoly::PolyMutator Parent;
196 using Parent::mutate;
197 virtual DeclarationWithType * mutate( ObjectDecl *objDecl ) override;
198
199 std::list< Declaration * > staticDtorDecls;
200 };
201
202 class FixCopyCtors final : public GenPoly::PolyMutator {
203 public:
204 /// expand ImplicitCopyCtorExpr nodes into the temporary declarations, copy constructors, call expression,
205 /// and destructors
206 static void fixCopyCtors( std::list< Declaration * > &translationUnit );
207
208 typedef GenPoly::PolyMutator Parent;
209 using Parent::mutate;
210 virtual Expression * mutate( ImplicitCopyCtorExpr * impCpCtorExpr ) override;
211 virtual Expression * mutate( UniqueExpr * unqExpr ) override;
212 virtual Expression * mutate( StmtExpr * stmtExpr ) override;
213 };
214
215 class GenStructMemberCalls final : public SymTab::Indexer {
216 public:
217 typedef Indexer Parent;
218 /// generate default/copy ctor and dtor calls for user-defined struct ctor/dtors
219 /// for any member that is missing a corresponding ctor/dtor call.
220 /// error if a member is used before constructed
221 static void generate( std::list< Declaration * > & translationUnit );
222
223 using Parent::visit;
224
225 virtual void visit( FunctionDecl * funcDecl ) override;
226
227 virtual void visit( MemberExpr * memberExpr ) override;
228 virtual void visit( ApplicationExpr * appExpr ) override;
229
230 SemanticError errors;
231 private:
232 void handleFirstParam( Expression * firstParam );
233 template< typename... Params >
234 void emit( CodeLocation, const Params &... params );
235
236 FunctionDecl * function = 0;
237 std::set< DeclarationWithType * > unhandled;
238 std::map< DeclarationWithType *, CodeLocation > usedUninit;
239 ObjectDecl * thisParam = 0;
240 bool isCtor = false; // true if current function is a constructor
241 StructDecl * structDecl = 0;
242 };
243
244 // very simple resolver-like mutator class - used to
245 // resolve UntypedExprs that are found within newly
246 // generated constructor/destructor calls
247 class MutatingResolver final : public Mutator {
248 public:
249 MutatingResolver( SymTab::Indexer & indexer ) : indexer( indexer ) {}
250
251 using Mutator::mutate;
252 virtual DeclarationWithType* mutate( ObjectDecl *objectDecl ) override;
253 virtual Expression* mutate( UntypedExpr *untypedExpr ) override;
254
255 private:
256 SymTab::Indexer & indexer;
257 };
258
259 class FixCtorExprs final : public GenPoly::DeclMutator {
260 public:
261 /// expands ConstructorExpr nodes into comma expressions, using a temporary for the first argument
262 static void fix( std::list< Declaration * > & translationUnit );
263
264 using GenPoly::DeclMutator::mutate;
265 virtual Expression * mutate( ConstructorExpr * ctorExpr ) override;
266 };
267 } // namespace
268
269 void fix( std::list< Declaration * > & translationUnit, const std::string & filename, bool inLibrary ) {
270 // fixes ConstructorInit for global variables. should happen before fixInitializers.
271 InitTweak::fixGlobalInit( translationUnit, filename, inLibrary );
272
273 EnvMap envMap;
274
275 InsertImplicitCalls::insert( translationUnit, envMap );
276 ResolveCopyCtors::resolveImplicitCalls( translationUnit, envMap );
277 InsertDtors::insert( translationUnit );
278 FixInit::fixInitializers( translationUnit );
279
280 // FixCopyCtors must happen after FixInit, so that destructors are placed correctly
281 FixCopyCtors::fixCopyCtors( translationUnit );
282
283 GenStructMemberCalls::generate( translationUnit );
284 // xxx - ctor expansion currently has to be after FixCopyCtors, because there is currently a
285 // hack in the way untyped assignments are generated, where the first argument cannot have
286 // its address taken because of the way codegeneration handles UntypedExpr vs. ApplicationExpr.
287 // Thus such assignment exprs must never pushed through expression resolution (and thus should
288 // not go through the FixCopyCtors pass), otherwise they will fail -- guaranteed.
289 // Also needs to happen after GenStructMemberCalls, since otherwise member constructors exprs
290 // don't look right, and a member can be constructed more than once.
291 FixCtorExprs::fix( translationUnit );
292 }
293
294 namespace {
295 void InsertImplicitCalls::insert( std::list< Declaration * > & translationUnit, EnvMap & envMap ) {
296 InsertImplicitCalls inserter( envMap );
297 mutateAll( translationUnit, inserter );
298 }
299
300 void ResolveCopyCtors::resolveImplicitCalls( std::list< Declaration * > & translationUnit, const EnvMap & envMap ) {
301 ResolveCopyCtors resolver( envMap );
302 acceptAll( translationUnit, resolver );
303 }
304
305 void FixInit::fixInitializers( std::list< Declaration * > & translationUnit ) {
306 FixInit fixer;
307
308 // can't use mutateAll, because need to insert declarations at top-level
309 // can't use DeclMutator, because sometimes need to insert IfStmt, etc.
310 SemanticError errors;
311 for ( std::list< Declaration * >::iterator i = translationUnit.begin(); i != translationUnit.end(); ++i ) {
312 try {
313 *i = maybeMutate( *i, fixer );
314 translationUnit.splice( i, fixer.staticDtorDecls );
315 } catch( SemanticError &e ) {
316 e.set_location( (*i)->location );
317 errors.append( e );
318 } // try
319 } // for
320 if ( ! errors.isEmpty() ) {
321 throw errors;
322 } // if
323 }
324
325 void InsertDtors::insert( std::list< Declaration * > & translationUnit ) {
326 LabelFinder finder;
327 InsertDtors inserter( finder );
328 acceptAll( translationUnit, inserter );
329 }
330
331 void FixCopyCtors::fixCopyCtors( std::list< Declaration * > & translationUnit ) {
332 FixCopyCtors fixer;
333 mutateAll( translationUnit, fixer );
334 }
335
336 void GenStructMemberCalls::generate( std::list< Declaration * > & translationUnit ) {
337 GenStructMemberCalls warner;
338 acceptAll( translationUnit, warner );
339 }
340
341 void FixCtorExprs::fix( std::list< Declaration * > & translationUnit ) {
342 FixCtorExprs fixer;
343 fixer.mutateDeclarationList( translationUnit );
344 }
345
346 Expression * InsertImplicitCalls::mutate( ApplicationExpr * appExpr ) {
347 appExpr = dynamic_cast< ApplicationExpr * >( Parent::mutate( appExpr ) );
348 assert( appExpr );
349
350 if ( VariableExpr * function = dynamic_cast< VariableExpr * > ( appExpr->get_function() ) ) {
351 if ( LinkageSpec::isBuiltin( function->get_var()->get_linkage() ) ) {
352 // optimization: don't need to copy construct in order to call intrinsic functions
353 return appExpr;
354 } else if ( DeclarationWithType * funcDecl = dynamic_cast< DeclarationWithType * > ( function->get_var() ) ) {
355 FunctionType * ftype = dynamic_cast< FunctionType * >( GenPoly::getFunctionType( funcDecl->get_type() ) );
356 assert( ftype );
357 if ( (isConstructor( funcDecl->get_name() ) || funcDecl->get_name() == "?=?") && ftype->get_parameters().size() == 2 ) {
358 Type * t1 = ftype->get_parameters().front()->get_type();
359 Type * t2 = ftype->get_parameters().back()->get_type();
360 PointerType * ptrType = safe_dynamic_cast< PointerType * > ( t1 );
361
362 if ( ResolvExpr::typesCompatible( ptrType->get_base(), t2, SymTab::Indexer() ) ) {
363 // optimization: don't need to copy construct in order to call a copy constructor or
364 // assignment operator
365 return appExpr;
366 } // if
367 } else if ( isDestructor( funcDecl->get_name() ) ) {
368 // correctness: never copy construct arguments to a destructor
369 return appExpr;
370 } // if
371 } // if
372 } // if
373 CP_CTOR_PRINT( std::cerr << "InsertImplicitCalls: adding a wrapper " << appExpr << std::endl; )
374
375 // wrap each function call so that it is easy to identify nodes that have to be copy constructed
376 ImplicitCopyCtorExpr * expr = new ImplicitCopyCtorExpr( appExpr );
377 // save the type substitution into the envMap so that it is easy to find.
378 // Ensure it is not deleted with the ImplicitCopyCtorExpr by removing it before deletion.
379 // The substitution is needed to obtain the type of temporary variables so that copy constructor
380 // calls can be resolved. Normally this is what PolyMutator is for, but the pass that resolves
381 // copy constructor calls must be an Indexer. We could alternatively make a PolyIndexer which
382 // saves the environment, or compute the types of temporaries here, but it's much simpler to
383 // save the environment here, and more cohesive to compute temporary variables and resolve copy
384 // constructor calls together.
385 assert( env );
386 envMap[expr] = env;
387 return expr;
388 }
389
390 Expression * InsertImplicitCalls::mutate( StmtExpr * stmtExpr ) {
391 assert( env );
392 envMap[stmtExpr] = env;
393 return Parent::mutate( stmtExpr );
394 }
395
396 bool ResolveCopyCtors::skipCopyConstruct( Type * type ) {
397 return dynamic_cast< VarArgsType * >( type ) || GenPoly::getFunctionType( type ) || Tuples::isTtype( type );
398 }
399
400 Expression * ResolveCopyCtors::makeCtorDtor( const std::string & fname, ObjectDecl * var, Expression * cpArg ) {
401 assert( var );
402 // arrays are not copy constructed, so this should always be an ExprStmt
403 ImplicitCtorDtorStmt * stmt = genCtorDtor( fname, var, cpArg );
404 ExprStmt * exprStmt = safe_dynamic_cast< ExprStmt * >( stmt->get_callStmt() );
405 Expression * untyped = exprStmt->get_expr();
406
407 // resolve copy constructor
408 // should only be one alternative for copy ctor and dtor expressions, since all arguments are fixed
409 // (VariableExpr and already resolved expression)
410 CP_CTOR_PRINT( std::cerr << "ResolvingCtorDtor " << untyped << std::endl; )
411 Expression * resolved = ResolvExpr::findVoidExpression( untyped, *this );
412 assert( resolved );
413 if ( resolved->get_env() ) {
414 // Extract useful information and discard new environments. Keeping them causes problems in PolyMutator passes.
415 env->add( *resolved->get_env() );
416 delete resolved->get_env();
417 resolved->set_env( nullptr );
418 } // if
419
420 delete stmt;
421 return resolved;
422 }
423
424 void ResolveCopyCtors::copyConstructArg( Expression *& arg, ImplicitCopyCtorExpr * impCpCtorExpr ) {
425 static UniqueName tempNamer("_tmp_cp");
426 assert( env );
427 CP_CTOR_PRINT( std::cerr << "Type Substitution: " << *env << std::endl; )
428 assert( arg->has_result() );
429 Type * result = arg->get_result();
430 if ( skipCopyConstruct( result ) ) return; // skip certain non-copyable types
431
432 // type may involve type variables, so apply type substitution to get temporary variable's actual type
433 result = result->clone();
434 env->apply( result );
435 ObjectDecl * tmp = new ObjectDecl( tempNamer.newName(), Type::StorageClasses(), LinkageSpec::C, 0, result, 0 );
436 tmp->get_type()->set_const( false );
437
438 // create and resolve copy constructor
439 CP_CTOR_PRINT( std::cerr << "makeCtorDtor for an argument" << std::endl; )
440 Expression * cpCtor = makeCtorDtor( "?{}", tmp, arg );
441
442 if ( ApplicationExpr * appExpr = dynamic_cast< ApplicationExpr * >( cpCtor ) ) {
443 // if the chosen constructor is intrinsic, the copy is unnecessary, so
444 // don't create the temporary and don't call the copy constructor
445 VariableExpr * function = dynamic_cast< VariableExpr * >( appExpr->get_function() );
446 assert( function );
447 if ( function->get_var()->get_linkage() == LinkageSpec::Intrinsic ) return;
448 }
449
450 // replace argument to function call with temporary
451 arg = new CommaExpr( cpCtor, new VariableExpr( tmp ) );
452 impCpCtorExpr->get_tempDecls().push_back( tmp );
453 impCpCtorExpr->get_dtors().push_front( makeCtorDtor( "^?{}", tmp ) );
454 }
455
456 void ResolveCopyCtors::destructRet( ObjectDecl * ret, ImplicitCopyCtorExpr * impCpCtorExpr ) {
457 impCpCtorExpr->get_dtors().push_front( makeCtorDtor( "^?{}", ret ) );
458 }
459
460 void ResolveCopyCtors::visit( ImplicitCopyCtorExpr *impCpCtorExpr ) {
461 CP_CTOR_PRINT( std::cerr << "ResolveCopyCtors: " << impCpCtorExpr << std::endl; )
462 Parent::visit( impCpCtorExpr );
463 env = envMap.at(impCpCtorExpr);
464 assert( env );
465
466 ApplicationExpr * appExpr = impCpCtorExpr->get_callExpr();
467
468 // take each argument and attempt to copy construct it.
469 for ( Expression * & arg : appExpr->get_args() ) {
470 copyConstructArg( arg, impCpCtorExpr );
471 } // for
472
473 // each return value from the call needs to be connected with an ObjectDecl at the call site, which is
474 // initialized with the return value and is destructed later
475 // xxx - handle named return values?
476 Type * result = appExpr->get_result();
477 if ( ! result->isVoid() ) {
478 static UniqueName retNamer("_tmp_cp_ret");
479 result = result->clone();
480 env->apply( result );
481 ObjectDecl * ret = new ObjectDecl( retNamer.newName(), Type::StorageClasses(), LinkageSpec::C, 0, result, 0 );
482 ret->get_type()->set_const( false );
483 impCpCtorExpr->get_returnDecls().push_back( ret );
484 CP_CTOR_PRINT( std::cerr << "makeCtorDtor for a return" << std::endl; )
485 if ( ! result->get_lvalue() ) {
486 // destructing lvalue returns is bad because it can cause multiple destructor calls to the same object - the returned object is not a temporary
487 destructRet( ret, impCpCtorExpr );
488 }
489 } // for
490 CP_CTOR_PRINT( std::cerr << "after Resolving: " << impCpCtorExpr << std::endl; )
491 }
492
493 void ResolveCopyCtors::visit( StmtExpr * stmtExpr ) {
494 Parent::visit( stmtExpr );
495 env = envMap.at(stmtExpr);
496 assert( stmtExpr->get_result() );
497 Type * result = stmtExpr->get_result();
498 if ( ! result->isVoid() ) {
499 static UniqueName retNamer("_tmp_stmtexpr_ret");
500
501 // create variable that will hold the result of the stmt expr
502 result = result->clone();
503 env->apply( result );
504 ObjectDecl * ret = new ObjectDecl( retNamer.newName(), Type::StorageClasses(), LinkageSpec::C, 0, result, 0 );
505 ret->get_type()->set_const( false );
506 stmtExpr->get_returnDecls().push_front( ret );
507
508 // must have a non-empty body, otherwise it wouldn't have a result
509 CompoundStmt * body = stmtExpr->get_statements();
510 assert( ! body->get_kids().empty() );
511 // must be an ExprStmt, otherwise it wouldn't have a result
512 ExprStmt * last = safe_dynamic_cast< ExprStmt * >( body->get_kids().back() );
513 last->set_expr( makeCtorDtor( "?{}", ret, last->get_expr() ) );
514
515 stmtExpr->get_dtors().push_front( makeCtorDtor( "^?{}", ret ) );
516 } // if
517
518 }
519
520 void ResolveCopyCtors::visit( UniqueExpr * unqExpr ) {
521 static std::unordered_set< int > vars;
522 if ( vars.count( unqExpr->get_id() ) ) {
523 // xxx - hack to prevent double-handling of unique exprs, otherwise too many temporary variables and destructors are generated
524 return;
525 }
526
527 Parent::visit( unqExpr );
528 // it should never be necessary to wrap a void-returning expression in a UniqueExpr - if this assumption changes, this needs to be rethought
529 assert( unqExpr->get_result() );
530 if ( ImplicitCopyCtorExpr * impCpCtorExpr = dynamic_cast<ImplicitCopyCtorExpr*>( unqExpr->get_expr() ) ) {
531 // note the variable used as the result from the call
532 assert( impCpCtorExpr->get_result() && impCpCtorExpr->get_returnDecls().size() == 1 );
533 unqExpr->set_var( new VariableExpr( impCpCtorExpr->get_returnDecls().front() ) );
534 } else {
535 // expr isn't a call expr, so create a new temporary variable to use to hold the value of the unique expression
536 unqExpr->set_object( new ObjectDecl( toString("_unq_expr_", unqExpr->get_id()), Type::StorageClasses(), LinkageSpec::C, nullptr, unqExpr->get_result()->clone(), nullptr ) );
537 unqExpr->set_var( new VariableExpr( unqExpr->get_object() ) );
538 }
539 vars.insert( unqExpr->get_id() );
540 }
541
542 Expression * FixCopyCtors::mutate( ImplicitCopyCtorExpr * impCpCtorExpr ) {
543 CP_CTOR_PRINT( std::cerr << "FixCopyCtors: " << impCpCtorExpr << std::endl; )
544
545 impCpCtorExpr = safe_dynamic_cast< ImplicitCopyCtorExpr * >( Parent::mutate( impCpCtorExpr ) );
546 std::list< ObjectDecl * > & tempDecls = impCpCtorExpr->get_tempDecls();
547 std::list< ObjectDecl * > & returnDecls = impCpCtorExpr->get_returnDecls();
548 std::list< Expression * > & dtors = impCpCtorExpr->get_dtors();
549
550 // add all temporary declarations and their constructors
551 for ( ObjectDecl * obj : tempDecls ) {
552 stmtsToAdd.push_back( new DeclStmt( noLabels, obj ) );
553 } // for
554 for ( ObjectDecl * obj : returnDecls ) {
555 stmtsToAdd.push_back( new DeclStmt( noLabels, obj ) );
556 } // for
557
558 // add destructors after current statement
559 for ( Expression * dtor : dtors ) {
560 stmtsToAddAfter.push_back( new ExprStmt( noLabels, dtor ) );
561 } // for
562
563 // xxx - update to work with multiple return values
564 ObjectDecl * returnDecl = returnDecls.empty() ? NULL : returnDecls.front();
565 Expression * callExpr = impCpCtorExpr->get_callExpr();
566
567 CP_CTOR_PRINT( std::cerr << "Coming out the back..." << impCpCtorExpr << std::endl; )
568
569 // detach fields from wrapper node so that it can be deleted without deleting too much
570 dtors.clear();
571 tempDecls.clear();
572 returnDecls.clear();
573 impCpCtorExpr->set_callExpr( NULL );
574 impCpCtorExpr->set_env( NULL );
575 delete impCpCtorExpr;
576
577 if ( returnDecl ) {
578 UntypedExpr * assign = new UntypedExpr( new NameExpr( "?=?" ) );
579 assign->get_args().push_back( new VariableExpr( returnDecl ) );
580 assign->get_args().push_back( callExpr );
581 // know the result type of the assignment is the type of the LHS (minus the pointer), so
582 // add that onto the assignment expression so that later steps have the necessary information
583 assign->set_result( returnDecl->get_type()->clone() );
584
585 Expression * retExpr = new CommaExpr( assign, new VariableExpr( returnDecl ) );
586 if ( callExpr->get_result()->get_lvalue() ) {
587 // lvalue returning functions are funny. Lvalue.cc inserts a *? in front of any lvalue returning
588 // non-intrinsic function. Add an AddressExpr to the call to negate the derefence and change the
589 // type of the return temporary from T to T* to properly capture the return value. Then dereference
590 // the result of the comma expression, since the lvalue returning call was originally wrapped with
591 // an AddressExpr. Effectively, this turns
592 // lvalue T f();
593 // &*f();
594 // into
595 // T * f();
596 // T * tmp_cp_retN;
597 // &*(tmp_cp_retN = &*f(), tmp_cp_retN); // the first * and second & are generated here
598 // which work out in terms of types, but is pretty messy. It would be nice to find a better way.
599 assign->get_args().back() = new AddressExpr( assign->get_args().back() );
600
601 returnDecl->set_type( new PointerType( Type::Qualifiers(), returnDecl->get_type() ) );
602 retExpr->set_result( new PointerType( Type::Qualifiers(), retExpr->get_result() ) );
603 retExpr = UntypedExpr::createDeref( retExpr );
604 } // if
605 // move env from callExpr to retExpr
606 retExpr->set_env( callExpr->get_env() );
607 callExpr->set_env( nullptr );
608 return retExpr;
609 } else {
610 return callExpr;
611 } // if
612 }
613
614 Expression * FixCopyCtors::mutate( StmtExpr * stmtExpr ) {
615 stmtExpr = safe_dynamic_cast< StmtExpr * >( Parent::mutate( stmtExpr ) );
616 assert( stmtExpr->get_result() );
617 Type * result = stmtExpr->get_result();
618 if ( ! result->isVoid() ) {
619 for ( ObjectDecl * obj : stmtExpr->get_returnDecls() ) {
620 stmtsToAdd.push_back( new DeclStmt( noLabels, obj ) );
621 } // for
622 // add destructors after current statement
623 for ( Expression * dtor : stmtExpr->get_dtors() ) {
624 stmtsToAddAfter.push_back( new ExprStmt( noLabels, dtor ) );
625 } // for
626 // must have a non-empty body, otherwise it wouldn't have a result
627 CompoundStmt * body = stmtExpr->get_statements();
628 assert( ! body->get_kids().empty() );
629 assert( ! stmtExpr->get_returnDecls().empty() );
630 body->get_kids().push_back( new ExprStmt( noLabels, new VariableExpr( stmtExpr->get_returnDecls().front() ) ) );
631 }
632 stmtExpr->get_returnDecls().clear();
633 stmtExpr->get_dtors().clear();
634 return stmtExpr;
635 }
636
637 Expression * FixCopyCtors::mutate( UniqueExpr * unqExpr ) {
638 static std::unordered_map< int, UniqueExpr * > unqMap;
639 static std::unordered_set< int > addDeref;
640 // has to be done to clean up ImplicitCopyCtorExpr nodes, even when this node was skipped in previous passes
641 if ( unqMap.count( unqExpr->get_id() ) ) {
642 // take data from other UniqueExpr to ensure consistency
643 delete unqExpr->get_expr();
644 unqExpr->set_expr( unqMap[unqExpr->get_id()]->get_expr()->clone() );
645 delete unqExpr->get_result();
646 unqExpr->set_result( maybeClone( unqExpr->get_expr()->get_result() ) );
647 if ( addDeref.count( unqExpr->get_id() ) ) {
648 // other UniqueExpr was dereferenced because it was an lvalue return, so this one should be too
649 return UntypedExpr::createDeref( unqExpr );
650 }
651 return unqExpr;
652 }
653 unqExpr = safe_dynamic_cast< UniqueExpr * >( Parent::mutate( unqExpr ) ); // stmtexprs contained should not be separately fixed, so this must occur after the lookup
654 unqMap[unqExpr->get_id()] = unqExpr;
655 if ( UntypedExpr * deref = dynamic_cast< UntypedExpr * >( unqExpr->get_expr() ) ) {
656 // unique expression is now a dereference, because the inner expression is an lvalue returning function call.
657 // Normalize the expression by dereferencing the unique expression, rather than the inner expression
658 // (i.e. move the dereference out a level)
659 assert( getFunctionName( deref ) == "*?" );
660 unqExpr->set_expr( getCallArg( deref, 0 ) );
661 getCallArg( deref, 0 ) = unqExpr;
662 addDeref.insert( unqExpr->get_id() );
663 return deref;
664 }
665 return unqExpr;
666 }
667
668 DeclarationWithType *FixInit::mutate( ObjectDecl *objDecl ) {
669 // first recursively handle pieces of ObjectDecl so that they aren't missed by other visitors when the init
670 // is removed from the ObjectDecl
671 objDecl = dynamic_cast< ObjectDecl * >( Parent::mutate( objDecl ) );
672 if ( ConstructorInit * ctorInit = dynamic_cast< ConstructorInit * >( objDecl->get_init() ) ) {
673 // a decision should have been made by the resolver, so ctor and init are not both non-NULL
674 assert( ! ctorInit->get_ctor() || ! ctorInit->get_init() );
675 if ( Statement * ctor = ctorInit->get_ctor() ) {
676 if ( objDecl->get_storageClasses().is_static ) {
677 // originally wanted to take advantage of gcc nested functions, but
678 // we get memory errors with this approach. To remedy this, the static
679 // variable is hoisted when the destructor needs to be called.
680 //
681 // generate:
682 // static T __objName_static_varN;
683 // void __objName_dtor_atexitN() {
684 // __dtor__...;
685 // }
686 // int f(...) {
687 // ...
688 // static bool __objName_uninitialized = true;
689 // if (__objName_uninitialized) {
690 // __ctor(__objName);
691 // __objName_uninitialized = false;
692 // atexit(__objName_dtor_atexitN);
693 // }
694 // ...
695 // }
696
697 static UniqueName dtorCallerNamer( "_dtor_atexit" );
698
699 // static bool __objName_uninitialized = true
700 BasicType * boolType = new BasicType( Type::Qualifiers(), BasicType::Bool );
701 SingleInit * boolInitExpr = new SingleInit( new ConstantExpr( Constant( boolType->clone(), "1" ) ), noDesignators );
702 ObjectDecl * isUninitializedVar = new ObjectDecl( objDecl->get_mangleName() + "_uninitialized", Type::StorageClasses( Type::Static ), LinkageSpec::Cforall, 0, boolType, boolInitExpr );
703 isUninitializedVar->fixUniqueId();
704
705 // __objName_uninitialized = false;
706 UntypedExpr * setTrue = new UntypedExpr( new NameExpr( "?=?" ) );
707 setTrue->get_args().push_back( new VariableExpr( isUninitializedVar ) );
708 setTrue->get_args().push_back( new ConstantExpr( Constant( boolType->clone(), "0" ) ) );
709
710 // generate body of if
711 CompoundStmt * initStmts = new CompoundStmt( noLabels );
712 std::list< Statement * > & body = initStmts->get_kids();
713 body.push_back( ctor );
714 body.push_back( new ExprStmt( noLabels, setTrue ) );
715
716 // put it all together
717 IfStmt * ifStmt = new IfStmt( noLabels, new VariableExpr( isUninitializedVar ), initStmts, 0 );
718 stmtsToAddAfter.push_back( new DeclStmt( noLabels, isUninitializedVar ) );
719 stmtsToAddAfter.push_back( ifStmt );
720
721 if ( ctorInit->get_dtor() ) {
722 // if the object has a non-trivial destructor, have to
723 // hoist it and the object into the global space and
724 // call the destructor function with atexit.
725
726 Statement * dtorStmt = ctorInit->get_dtor()->clone();
727
728 // void __objName_dtor_atexitN(...) {...}
729 FunctionDecl * dtorCaller = new FunctionDecl( objDecl->get_mangleName() + dtorCallerNamer.newName(), Type::StorageClasses( Type::Static ), LinkageSpec::C, new FunctionType( Type::Qualifiers(), false ), new CompoundStmt( noLabels ) );
730 dtorCaller->fixUniqueId();
731 dtorCaller->get_statements()->push_back( dtorStmt );
732
733 // atexit(dtor_atexit);
734 UntypedExpr * callAtexit = new UntypedExpr( new NameExpr( "atexit" ) );
735 callAtexit->get_args().push_back( new VariableExpr( dtorCaller ) );
736
737 body.push_back( new ExprStmt( noLabels, callAtexit ) );
738
739 // hoist variable and dtor caller decls to list of decls that will be added into global scope
740 staticDtorDecls.push_back( objDecl );
741 staticDtorDecls.push_back( dtorCaller );
742
743 // need to rename object uniquely since it now appears
744 // at global scope and there could be multiple function-scoped
745 // static variables with the same name in different functions.
746 // Note: it isn't sufficient to modify only the mangleName, because
747 // then subsequent Indexer passes can choke on seeing the object's name
748 // if another object has the same name and type. An unfortunate side-effect
749 // of renaming the object is that subsequent NameExprs may fail to resolve,
750 // but there shouldn't be any remaining past this point.
751 static UniqueName staticNamer( "_static_var" );
752 objDecl->set_name( objDecl->get_name() + staticNamer.newName() );
753 objDecl->set_mangleName( SymTab::Mangler::mangle( objDecl ) );
754
755 objDecl->set_init( NULL );
756 ctorInit->set_ctor( NULL );
757 delete ctorInit;
758
759 // xxx - temporary hack: need to return a declaration, but want to hoist the current object out of this scope
760 // create a new object which is never used
761 static UniqueName dummyNamer( "_dummy" );
762 ObjectDecl * dummy = new ObjectDecl( dummyNamer.newName(), Type::StorageClasses( Type::Static ), LinkageSpec::Cforall, 0, new PointerType( Type::Qualifiers(), new VoidType( Type::Qualifiers() ) ), 0, std::list< Attribute * >{ new Attribute("unused") } );
763 return dummy;
764 }
765 } else {
766 stmtsToAddAfter.push_back( ctor );
767 } // if
768 objDecl->set_init( NULL );
769 ctorInit->set_ctor( NULL );
770 } else if ( Initializer * init = ctorInit->get_init() ) {
771 objDecl->set_init( init );
772 ctorInit->set_init( NULL );
773 } else {
774 // no constructor and no initializer, which is okay
775 objDecl->set_init( NULL );
776 } // if
777 delete ctorInit;
778 } // if
779 return objDecl;
780 }
781
782 void ObjDeclCollector::visit( CompoundStmt * compoundStmt ) {
783 std::set< ObjectDecl * > prevVars = curVars;
784 Parent::visit( compoundStmt );
785 curVars = prevVars;
786 }
787
788 void ObjDeclCollector::visit( DeclStmt * stmt ) {
789 // keep track of all variables currently in scope
790 if ( ObjectDecl * objDecl = dynamic_cast< ObjectDecl * > ( stmt->get_decl() ) ) {
791 curVars.insert( objDecl );
792 } // if
793 Parent::visit( stmt );
794 }
795
796 void LabelFinder::handleStmt( Statement * stmt ) {
797 // for each label, remember the variables in scope at that label.
798 for ( Label l : stmt->get_labels() ) {
799 vars[l] = curVars;
800 } // for
801 }
802
803 template<typename Iterator, typename OutputIterator>
804 void insertDtors( Iterator begin, Iterator end, OutputIterator out ) {
805 for ( Iterator it = begin ; it != end ; ++it ) {
806 // extract destructor statement from the object decl and insert it into the output. Note that this is
807 // only called on lists of non-static objects with implicit non-intrinsic dtors, so if the user manually
808 // calls an intrinsic dtor then the call must (and will) still be generated since the argument may
809 // contain side effects.
810 ObjectDecl * objDecl = *it;
811 ConstructorInit * ctorInit = dynamic_cast< ConstructorInit * >( objDecl->get_init() );
812 assert( ctorInit && ctorInit->get_dtor() );
813 *out++ = ctorInit->get_dtor()->clone();
814 } // for
815 }
816
817 void InsertDtors::visit( ObjectDecl * objDecl ) {
818 // remember non-static destructed objects so that their destructors can be inserted later
819 if ( ! objDecl->get_storageClasses().is_static ) {
820 if ( ConstructorInit * ctorInit = dynamic_cast< ConstructorInit * >( objDecl->get_init() ) ) {
821 // a decision should have been made by the resolver, so ctor and init are not both non-NULL
822 assert( ! ctorInit->get_ctor() || ! ctorInit->get_init() );
823 Statement * dtor = ctorInit->get_dtor();
824 if ( dtor && ! isIntrinsicSingleArgCallStmt( dtor ) ) {
825 // don't need to call intrinsic dtor, because it does nothing, but
826 // non-intrinsic dtors must be called
827 reverseDeclOrder.front().push_front( objDecl );
828 } // if
829 } // if
830 } // if
831 Parent::visit( objDecl );
832 }
833
834 template< typename Visitor >
835 void handleFuncDecl( FunctionDecl * funcDecl, Visitor & visitor ) {
836 maybeAccept( funcDecl->get_functionType(), visitor );
837 maybeAccept( funcDecl->get_statements(), visitor );
838 }
839
840 void InsertDtors::visit( FunctionDecl * funcDecl ) {
841 // each function needs to have its own set of labels
842 ValueGuard< LabelFinder::LabelMap > oldLabels( labelVars );
843 labelVars.clear();
844 handleFuncDecl( funcDecl, finder );
845
846 // all labels for this function have been collected, insert destructors as appropriate.
847 // can't be Parent::mutate, because ObjDeclCollector bottoms out on FunctionDecl
848 handleFuncDecl( funcDecl, *this );
849 }
850
851 void InsertDtors::visit( CompoundStmt * compoundStmt ) {
852 // visit statements - this will also populate reverseDeclOrder list. don't want to dump all destructors
853 // when block is left, just the destructors associated with variables defined in this block, so push a new
854 // list to the top of the stack so that we can differentiate scopes
855 reverseDeclOrder.push_front( OrderedDecls() );
856 Parent::visit( compoundStmt );
857
858 // add destructors for the current scope that we're exiting
859 std::list< Statement * > & statements = compoundStmt->get_kids();
860 insertDtors( reverseDeclOrder.front().begin(), reverseDeclOrder.front().end(), back_inserter( statements ) );
861 reverseDeclOrder.pop_front();
862 }
863
864 void InsertDtors::visit( ReturnStmt * returnStmt ) {
865 // return exits all scopes, so dump destructors for all scopes
866 for ( OrderedDecls & od : reverseDeclOrder ) {
867 insertDtors( od.begin(), od.end(), back_inserter( stmtsToAdd ) );
868 } // for
869 }
870
871 // Handle break/continue/goto in the same manner as C++. Basic idea: any objects that are in scope at the
872 // BranchStmt but not at the labelled (target) statement must be destructed. If there are any objects in scope
873 // at the target location but not at the BranchStmt then those objects would be uninitialized so notify the user
874 // of the error. See C++ Reference 6.6 Jump Statements for details.
875 void InsertDtors::handleGoto( BranchStmt * stmt ) {
876 assert( stmt->get_target() != "" && "BranchStmt missing a label" );
877 // S_L = lvars = set of objects in scope at label definition
878 // S_G = curVars = set of objects in scope at goto statement
879 ObjectSet & lvars = labelVars[ stmt->get_target() ];
880
881 DTOR_PRINT(
882 std::cerr << "at goto label: " << stmt->get_target().get_name() << std::endl;
883 std::cerr << "S_G = " << printSet( curVars ) << std::endl;
884 std::cerr << "S_L = " << printSet( lvars ) << std::endl;
885 )
886
887 ObjectSet diff;
888 // S_L-S_G results in set of objects whose construction is skipped - it's an error if this set is non-empty
889 std::set_difference( lvars.begin(), lvars.end(), curVars.begin(), curVars.end(), std::inserter( diff, diff.begin() ) );
890 DTOR_PRINT(
891 std::cerr << "S_L-S_G = " << printSet( diff ) << std::endl;
892 )
893 if ( ! diff.empty() ) {
894 throw SemanticError( std::string("jump to label '") + stmt->get_target().get_name() + "' crosses initialization of " + (*diff.begin())->get_name() + " ", stmt );
895 } // if
896 // S_G-S_L results in set of objects that must be destructed
897 diff.clear();
898 std::set_difference( curVars.begin(), curVars.end(), lvars.begin(), lvars.end(), std::inserter( diff, diff.end() ) );
899 DTOR_PRINT(
900 std::cerr << "S_G-S_L = " << printSet( diff ) << std::endl;
901 )
902 if ( ! diff.empty() ) {
903 // go through decl ordered list of objectdecl. for each element that occurs in diff, output destructor
904 OrderedDecls ordered;
905 for ( OrderedDecls & rdo : reverseDeclOrder ) {
906 // add elements from reverseDeclOrder into ordered if they occur in diff - it is key that this happens in reverse declaration order.
907 copy_if( rdo.begin(), rdo.end(), back_inserter( ordered ), [&]( ObjectDecl * objDecl ) { return diff.count( objDecl ); } );
908 } // for
909 insertDtors( ordered.begin(), ordered.end(), back_inserter( stmtsToAdd ) );
910 } // if
911 }
912
913 void InsertDtors::visit( BranchStmt * stmt ) {
914 switch( stmt->get_type() ) {
915 case BranchStmt::Continue:
916 case BranchStmt::Break:
917 // could optimize the break/continue case, because the S_L-S_G check is unnecessary (this set should
918 // always be empty), but it serves as a small sanity check.
919 case BranchStmt::Goto:
920 handleGoto( stmt );
921 break;
922 default:
923 assert( false );
924 } // switch
925 }
926
927 bool checkWarnings( FunctionDecl * funcDecl ) {
928 // only check for warnings if the current function is a user-defined
929 // constructor or destructor
930 if ( ! funcDecl ) return false;
931 if ( ! funcDecl->get_statements() ) return false;
932 return isCtorDtor( funcDecl->get_name() ) && ! LinkageSpec::isOverridable( funcDecl->get_linkage() );
933 }
934
935 void GenStructMemberCalls::visit( FunctionDecl * funcDecl ) {
936 ValueGuard< FunctionDecl * > oldFunction( funcDecl );
937 ValueGuard< std::set< DeclarationWithType * > > oldUnhandled( unhandled );
938 ValueGuard< std::map< DeclarationWithType *, CodeLocation > > oldUsedUninit( usedUninit );
939 ValueGuard< ObjectDecl * > oldThisParam( thisParam );
940 ValueGuard< bool > oldIsCtor( isCtor );
941 ValueGuard< StructDecl * > oldStructDecl( structDecl );
942 errors = SemanticError(); // clear previous errors
943
944 // need to start with fresh sets
945 unhandled.clear();
946 usedUninit.clear();
947
948 function = funcDecl;
949 isCtor = isConstructor( function->get_name() );
950 if ( checkWarnings( function ) ) {
951 FunctionType * type = function->get_functionType();
952 assert( ! type->get_parameters().empty() );
953 thisParam = safe_dynamic_cast< ObjectDecl * >( type->get_parameters().front() );
954 PointerType * ptrType = safe_dynamic_cast< PointerType * > ( thisParam->get_type() );
955 StructInstType * structType = dynamic_cast< StructInstType * >( ptrType->get_base() );
956 if ( structType ) {
957 structDecl = structType->get_baseStruct();
958 for ( Declaration * member : structDecl->get_members() ) {
959 if ( ObjectDecl * field = dynamic_cast< ObjectDecl * >( member ) ) {
960 // record all of the struct type's members that need to be constructed or
961 // destructed by the end of the function
962 unhandled.insert( field );
963 }
964 }
965 }
966 }
967 Parent::visit( function );
968
969 // remove the unhandled objects from usedUninit, because a call is inserted
970 // to handle them - only objects that are later constructed are used uninitialized.
971 std::map< DeclarationWithType *, CodeLocation > diff;
972 // need the comparator since usedUninit and unhandled have different types
973 struct comp_t {
974 typedef decltype(usedUninit)::value_type usedUninit_t;
975 typedef decltype(unhandled)::value_type unhandled_t;
976 bool operator()(usedUninit_t x, unhandled_t y) { return x.first < y; }
977 bool operator()(unhandled_t x, usedUninit_t y) { return x < y.first; }
978 } comp;
979 std::set_difference( usedUninit.begin(), usedUninit.end(), unhandled.begin(), unhandled.end(), std::inserter( diff, diff.begin() ), comp );
980 for ( auto p : diff ) {
981 DeclarationWithType * member = p.first;
982 CodeLocation loc = p.second;
983 // xxx - make error message better by also tracking the location that the object is constructed at?
984 emit( loc, "in ", CodeGen::genPrettyType( function->get_functionType(), function->get_name() ), ", field ", member->get_name(), " used before being constructed" );
985 }
986
987 if ( ! unhandled.empty() ) {
988 // need to explicitly re-add function parameters in order to resolve copy constructors
989 enterScope();
990 maybeAccept( function->get_functionType(), *this );
991
992 // need to iterate through members in reverse in order for
993 // ctor/dtor statements to come out in the right order
994 for ( Declaration * member : reverseIterate( structDecl->get_members() ) ) {
995 DeclarationWithType * field = dynamic_cast< DeclarationWithType * >( member );
996 // skip non-DWT members
997 if ( ! field ) continue;
998 // skip handled members
999 if ( ! unhandled.count( field ) ) continue;
1000
1001 // insert and resolve default/copy constructor call for each field that's unhandled
1002 std::list< Statement * > stmt;
1003 UntypedExpr * deref = UntypedExpr::createDeref( new VariableExpr( thisParam ) );
1004
1005 Expression * arg2 = 0;
1006 if ( isCopyConstructor( function ) ) {
1007 // if copy ctor, need to pass second-param-of-this-function.field
1008 std::list< DeclarationWithType * > & params = function->get_functionType()->get_parameters();
1009 assert( params.size() == 2 );
1010 arg2 = new MemberExpr( field, new VariableExpr( params.back() ) );
1011 }
1012 InitExpander srcParam( arg2 );
1013 SymTab::genImplicitCall( srcParam, new MemberExpr( field, deref ), function->get_name(), back_inserter( stmt ), field, isCtor );
1014
1015 assert( stmt.size() <= 1 );
1016 if ( stmt.size() == 1 ) {
1017 Statement * callStmt = stmt.front();
1018
1019 MutatingResolver resolver( *this );
1020 try {
1021 callStmt->acceptMutator( resolver );
1022 if ( isCtor ) {
1023 function->get_statements()->push_front( callStmt );
1024 } else {
1025 // destructor statements should be added at the end
1026 function->get_statements()->push_back( callStmt );
1027 }
1028 } catch ( SemanticError & error ) {
1029 emit( funcDecl->location, "in ", CodeGen::genPrettyType( function->get_functionType(), function->get_name() ), ", field ", field->get_name(), " not explicitly ", isCtor ? "constructed" : "destructed", " and no ", isCtor ? "default constructor" : "destructor", " found" );
1030 }
1031 }
1032 }
1033 leaveScope();
1034 }
1035 if (! errors.isEmpty()) {
1036 throw errors;
1037 }
1038 }
1039
1040 void GenStructMemberCalls::visit( ApplicationExpr * appExpr ) {
1041 if ( ! checkWarnings( function ) ) return;
1042
1043 std::string fname = getFunctionName( appExpr );
1044 if ( fname == function->get_name() ) {
1045 // call to same kind of function
1046 Expression * firstParam = appExpr->get_args().front();
1047
1048 if ( VariableExpr * varExpr = dynamic_cast< VariableExpr * >( firstParam ) ) {
1049 // if calling another constructor on thisParam, assume that function handles
1050 // all members - if it doesn't a warning will appear in that function.
1051 if ( varExpr->get_var() == thisParam ) {
1052 unhandled.clear();
1053 }
1054 } else {
1055 // if first parameter is a member expression then
1056 // remove the member from unhandled set.
1057 handleFirstParam( firstParam );
1058 }
1059 }
1060
1061 Parent::visit( appExpr );
1062 }
1063
1064 void GenStructMemberCalls::handleFirstParam( Expression * firstParam ) {
1065 using namespace std;
1066 if ( AddressExpr * addrExpr = dynamic_cast< AddressExpr * >( firstParam ) ) {
1067 if ( MemberExpr * memberExpr = dynamic_cast< MemberExpr * >( addrExpr->get_arg() ) ) {
1068 if ( ApplicationExpr * deref = dynamic_cast< ApplicationExpr * >( memberExpr->get_aggregate() ) ) {
1069 if ( getFunctionName( deref ) == "*?" && deref->get_args().size() == 1 ) {
1070 if ( VariableExpr * varExpr = dynamic_cast< VariableExpr * >( deref->get_args().front() ) ) {
1071 if ( varExpr->get_var() == thisParam ) {
1072 unhandled.erase( memberExpr->get_member() );
1073 }
1074 }
1075 }
1076 }
1077 }
1078 }
1079 }
1080
1081 void GenStructMemberCalls::visit( MemberExpr * memberExpr ) {
1082 if ( ! checkWarnings( function ) ) return;
1083 if ( ! isCtor ) return;
1084
1085 if ( ApplicationExpr * deref = dynamic_cast< ApplicationExpr * >( memberExpr->get_aggregate() ) ) {
1086 if ( getFunctionName( deref ) == "*?" && deref->get_args().size() == 1 ) {
1087 if ( VariableExpr * varExpr = dynamic_cast< VariableExpr * >( deref->get_args().front() ) ) {
1088 if ( varExpr->get_var() == thisParam ) {
1089 if ( unhandled.count( memberExpr->get_member() ) ) {
1090 // emit a warning because a member was used before it was constructed
1091 usedUninit.insert( { memberExpr->get_member(), memberExpr->location } );
1092 }
1093 }
1094 }
1095 }
1096 }
1097 Parent::visit( memberExpr );
1098 }
1099
1100 template< typename Visitor, typename... Params >
1101 void error( Visitor & v, CodeLocation loc, const Params &... params ) {
1102 SemanticError err( toString( params... ) );
1103 err.set_location( loc );
1104 v.errors.append( err );
1105 }
1106
1107 template< typename... Params >
1108 void GenStructMemberCalls::emit( CodeLocation loc, const Params &... params ) {
1109 // toggle warnings vs. errors here.
1110 // warn( params... );
1111 error( *this, loc, params... );
1112 }
1113
1114 DeclarationWithType * MutatingResolver::mutate( ObjectDecl *objectDecl ) {
1115 // add object to the indexer assumes that there will be no name collisions
1116 // in generated code. If this changes, add mutate methods for entities with
1117 // scope and call {enter,leave}Scope explicitly.
1118 objectDecl->accept( indexer );
1119 return objectDecl;
1120 }
1121
1122 Expression* MutatingResolver::mutate( UntypedExpr *untypedExpr ) {
1123 return safe_dynamic_cast< ApplicationExpr * >( ResolvExpr::findVoidExpression( untypedExpr, indexer ) );
1124 }
1125
1126 Expression * FixCtorExprs::mutate( ConstructorExpr * ctorExpr ) {
1127 static UniqueName tempNamer( "_tmp_ctor_expr" );
1128 // xxx - is the size check necessary?
1129 assert( ctorExpr->has_result() && ctorExpr->get_result()->size() == 1 );
1130
1131 // 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.
1132 ObjectDecl * tmp = new ObjectDecl( tempNamer.newName(), Type::StorageClasses(), LinkageSpec::C, nullptr, ctorExpr->get_result()->clone(), nullptr );
1133 addDeclaration( tmp );
1134
1135 // xxx - this can be TupleAssignExpr now. Need to properly handle this case.
1136 ApplicationExpr * callExpr = safe_dynamic_cast< ApplicationExpr * > ( ctorExpr->get_callExpr() );
1137 TypeSubstitution * env = ctorExpr->get_env();
1138 ctorExpr->set_callExpr( nullptr );
1139 ctorExpr->set_env( nullptr );
1140
1141 Expression *& firstArg = callExpr->get_args().front();
1142 UntypedExpr * assign = new UntypedExpr( new NameExpr( "?=?" ) );
1143 assign->get_args().push_back( new VariableExpr( tmp ) );
1144 assign->get_args().push_back( firstArg );
1145 assign->set_result( ctorExpr->get_result()->clone() );
1146 firstArg = assign;
1147
1148 CommaExpr * commaExpr = new CommaExpr( callExpr, new VariableExpr( tmp ) );
1149 commaExpr->set_env( env );
1150 delete ctorExpr;
1151 return commaExpr;
1152 }
1153 } // namespace
1154} // namespace InitTweak
1155
1156// Local Variables: //
1157// tab-width: 4 //
1158// mode: c++ //
1159// compile-command: "make install" //
1160// End: //
Note: See TracBrowser for help on using the repository browser.