source: src/InitTweak/FixInit.cc @ 10dc6908

ADTarm-ehast-experimentalcleanup-dtorsenumforall-pointer-decayjacob/cs343-translationjenkins-sandboxnew-astnew-ast-unique-exprpthread-emulationqualifiedEnum
Last change on this file since 10dc6908 was 10dc6908, checked in by Rob Schluntz <rschlunt@…>, 6 years ago

Add cast to _Destructor's dtor initializer to silence warnings

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