source: src/InitTweak/FixInit.cc@ 8135d4c

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 8135d4c was 8135d4c, checked in by Rob Schluntz <rschlunt@…>, 8 years ago

Merge branch 'master' into references

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