source: src/InitTweak/FixInitNew.cpp @ 33b7d49

ADTast-experimentalenumpthread-emulationqualifiedEnum
Last change on this file since 33b7d49 was 33b7d49, checked in by Andrew Beach <ajbeach@…>, 2 years ago

Added another check to checkInvariants for code locations. I also went through and made sure you can put it every after every new AST pass not followed by a forceFillCodeLocations.

  • Property mode set to 100644
File size: 58.4 KB
Line 
1#include "FixInit.h"
2
3#include <stddef.h>                    // for NULL
4#include <algorithm>                   // for set_difference, copy_if
5#include <cassert>                     // for assert, strict_dynamic_cast
6#include <iostream>                    // for operator<<, ostream, basic_ost...
7#include <iterator>                    // for insert_iterator, back_inserter
8#include <list>                        // for _List_iterator, list, list<>::...
9#include <map>                         // for _Rb_tree_iterator, _Rb_tree_co...
10#include <memory>                      // for allocator_traits<>::value_type
11#include <set>                         // for set, set<>::value_type
12#include <unordered_map>               // for unordered_map, unordered_map<>...
13#include <unordered_set>               // for unordered_set
14#include <utility>                     // for pair
15
16#include "CodeGen/GenType.h"           // for genPrettyType
17#include "CodeGen/OperatorTable.h"
18#include "Common/CodeLocationTools.hpp"
19#include "Common/PassVisitor.h"        // for PassVisitor, WithStmtsToAdd
20#include "Common/SemanticError.h"      // for SemanticError
21#include "Common/UniqueName.h"         // for UniqueName
22#include "Common/utility.h"            // for CodeLocation, ValueGuard, toSt...
23#include "FixGlobalInit.h"             // for fixGlobalInit
24#include "GenInit.h"                   // for genCtorDtor
25#include "GenPoly/GenPoly.h"           // for getFunctionType
26#include "InitTweak.h"                 // for getFunctionName, getCallArg
27#include "ResolvExpr/Resolver.h"       // for findVoidExpression
28#include "ResolvExpr/typeops.h"        // for typesCompatible
29#include "SymTab/Autogen.h"            // for genImplicitCall
30#include "SymTab/Indexer.h"            // for Indexer
31#include "SymTab/Mangler.h"            // for Mangler
32#include "SynTree/LinkageSpec.h"       // for C, Spec, Cforall, isBuiltin
33#include "SynTree/Attribute.h"         // for Attribute
34#include "SynTree/Constant.h"          // for Constant
35#include "SynTree/Declaration.h"       // for ObjectDecl, FunctionDecl, Decl...
36#include "SynTree/Expression.h"        // for UniqueExpr, VariableExpr, Unty...
37#include "SynTree/Initializer.h"       // for ConstructorInit, SingleInit
38#include "SynTree/Label.h"             // for Label, operator<
39#include "SynTree/Mutator.h"           // for mutateAll, Mutator, maybeMutate
40#include "SynTree/Statement.h"         // for ExprStmt, CompoundStmt, Branch...
41#include "SynTree/Type.h"              // for Type, Type::StorageClasses
42#include "SynTree/TypeSubstitution.h"  // for TypeSubstitution, operator<<
43#include "SynTree/DeclReplacer.h"      // for DeclReplacer
44#include "SynTree/Visitor.h"           // for acceptAll, maybeAccept
45#include "Validate/FindSpecialDecls.h" // for dtorStmt, dtorStructDestroy
46
47#include "AST/Expr.hpp"
48#include "AST/Node.hpp"
49#include "AST/Pass.hpp"
50#include "AST/Print.hpp"
51#include "AST/SymbolTable.hpp"
52#include "AST/Type.hpp"
53#include "AST/DeclReplacer.hpp"
54
55extern bool ctordtorp; // print all debug
56extern bool ctorp; // print ctor debug
57extern bool cpctorp; // print copy ctor debug
58extern bool dtorp; // print dtor debug
59#define PRINT( text ) if ( ctordtorp ) { text }
60#define CP_CTOR_PRINT( text ) if ( ctordtorp || cpctorp ) { text }
61#define DTOR_PRINT( text ) if ( ctordtorp || dtorp ) { text }
62
63namespace InitTweak {
64namespace {
65        struct SelfAssignChecker {
66                void previsit( const ast::ApplicationExpr * appExpr );
67        };
68
69        struct StmtExprResult {
70                const ast::StmtExpr * previsit( const ast::StmtExpr * stmtExpr );
71        };
72
73        /// wrap function application expressions as ImplicitCopyCtorExpr nodes so that it is easy to identify which
74        /// function calls need their parameters to be copy constructed
75        struct InsertImplicitCalls : public ast::WithConstTypeSubstitution, public ast::WithShortCircuiting {
76                const ast::Expr * postvisit( const ast::ApplicationExpr * appExpr );
77
78                // only handles each UniqueExpr once
79                // if order of visit does not change, this should be safe
80                void previsit (const ast::UniqueExpr *);
81
82                std::unordered_set<decltype(ast::UniqueExpr::id)> visitedIds;
83        };
84
85        /// generate temporary ObjectDecls for each argument and return value of each ImplicitCopyCtorExpr,
86        /// generate/resolve copy construction expressions for each, and generate/resolve destructors for both
87        /// arguments and return value temporaries
88        struct ResolveCopyCtors final : public ast::WithGuards, public ast::WithStmtsToAdd<>, public ast::WithSymbolTable, public ast::WithShortCircuiting, public ast::WithVisitorRef<ResolveCopyCtors> {
89                const ast::Expr * postvisit( const ast::ImplicitCopyCtorExpr * impCpCtorExpr );
90                const ast::StmtExpr * previsit( const ast::StmtExpr * stmtExpr );
91                const ast::UniqueExpr * previsit( const ast::UniqueExpr * unqExpr );
92
93                /// handles distant mutations of environment manually.
94                /// WithConstTypeSubstitution cannot remember where the environment is from
95
96                /// MUST be called at start of overload previsit
97                void previsit( const ast::Expr * expr);
98                /// MUST be called at return of overload postvisit
99                const ast::Expr * postvisit(const ast::Expr * expr);
100
101                /// create and resolve ctor/dtor expression: fname(var, [cpArg])
102                const ast::Expr * makeCtorDtor( const std::string & fname, const ast::ObjectDecl * var, const ast::Expr * cpArg = nullptr );
103                /// true if type does not need to be copy constructed to ensure correctness
104                bool skipCopyConstruct( const ast::Type * type );
105                ast::ptr< ast::Expr > copyConstructArg( const ast::Expr * arg, const ast::ImplicitCopyCtorExpr * impCpCtorExpr, const ast::Type * formal );
106                ast::Expr * destructRet( const ast::ObjectDecl * ret, const ast::Expr * arg );
107        private:
108                /// hack to implement WithTypeSubstitution while conforming to mutation safety.
109                ast::TypeSubstitution * env;
110                bool                    envModified;
111        };
112
113        /// collects constructed object decls - used as a base class
114        struct ObjDeclCollector : public ast::WithGuards, public ast::WithShortCircuiting {
115                // use ordered data structure to maintain ordering for set_difference and for consistent error messages
116                typedef std::list< const ast::ObjectDecl * > ObjectSet;
117                void previsit( const ast::CompoundStmt *compoundStmt );
118                void previsit( const ast::DeclStmt *stmt );
119
120                // don't go into other functions
121                void previsit( const ast::FunctionDecl * ) { visit_children = false; }
122
123          protected:
124                ObjectSet curVars;
125        };
126
127        // debug
128        template<typename ObjectSet>
129        struct PrintSet {
130                PrintSet( const ObjectSet & objs ) : objs( objs ) {}
131                const ObjectSet & objs;
132        };
133        template<typename ObjectSet>
134        PrintSet<ObjectSet> printSet( const ObjectSet & objs ) { return PrintSet<ObjectSet>( objs ); }
135        template<typename ObjectSet>
136        std::ostream & operator<<( std::ostream & out, const PrintSet<ObjectSet> & set) {
137                out << "{ ";
138                for ( auto & obj : set.objs ) {
139                        out << obj->name << ", " ;
140                } // for
141                out << " }";
142                return out;
143        }
144
145        struct LabelFinder final : public ObjDeclCollector {
146                typedef std::map< std::string, ObjectSet > LabelMap;
147                // map of Label -> live variables at that label
148                LabelMap vars;
149
150                typedef ObjDeclCollector Parent;
151                using Parent::previsit;
152                void previsit( const ast::Stmt * stmt );
153
154                void previsit( const ast::CompoundStmt *compoundStmt );
155                void previsit( const ast::DeclStmt *stmt );
156        };
157
158        /// insert destructor calls at the appropriate places.  must happen before CtorInit nodes are removed
159        /// (currently by FixInit)
160        struct InsertDtors final : public ObjDeclCollector, public ast::WithStmtsToAdd<> {
161                typedef std::list< ObjectDecl * > OrderedDecls;
162                typedef std::list< OrderedDecls > OrderedDeclsStack;
163
164                InsertDtors( ast::Pass<LabelFinder> & finder ) : finder( finder ), labelVars( finder.core.vars ) {}
165
166                typedef ObjDeclCollector Parent;
167                using Parent::previsit;
168
169                void previsit( const ast::FunctionDecl * funcDecl );
170
171                void previsit( const ast::BranchStmt * stmt );
172        private:
173                void handleGoto( const ast::BranchStmt * stmt );
174
175                ast::Pass<LabelFinder> & finder;
176                LabelFinder::LabelMap & labelVars;
177                OrderedDeclsStack reverseDeclOrder;
178        };
179
180        /// expand each object declaration to use its constructor after it is declared.
181        struct FixInit : public ast::WithStmtsToAdd<> {
182                static void fixInitializers( ast::TranslationUnit &translationUnit );
183
184                const ast::DeclWithType * postvisit( const ast::ObjectDecl *objDecl );
185
186                std::list< ast::ptr< ast::Decl > > staticDtorDecls;
187        };
188
189        /// generate default/copy ctor and dtor calls for user-defined struct ctor/dtors
190        /// for any member that is missing a corresponding ctor/dtor call.
191        /// error if a member is used before constructed
192        struct GenStructMemberCalls final : public ast::WithGuards, public ast::WithShortCircuiting, public ast::WithSymbolTable, public ast::WithVisitorRef<GenStructMemberCalls> {
193                void previsit( const ast::FunctionDecl * funcDecl );
194                const ast::DeclWithType * postvisit( const ast::FunctionDecl * funcDecl );
195
196                void previsit( const ast::MemberExpr * memberExpr );
197                void previsit( const ast::ApplicationExpr * appExpr );
198
199                /// Note: this post mutate used to be in a separate visitor. If this pass breaks, one place to examine is whether it is
200                /// okay for this part of the recursion to occur alongside the rest.
201                const ast::Expr * postvisit( const ast::UntypedExpr * expr );
202
203                SemanticErrorException errors;
204          private:
205                template< typename... Params >
206                void emit( CodeLocation, const Params &... params );
207
208                ast::FunctionDecl * function = nullptr;
209                std::set< const ast::DeclWithType * > unhandled;
210                std::map< const ast::DeclWithType *, CodeLocation > usedUninit;
211                const ast::ObjectDecl * thisParam = nullptr;
212                bool isCtor = false; // true if current function is a constructor
213                const ast::StructDecl * structDecl = nullptr;
214        };
215
216        /// expands ConstructorExpr nodes into comma expressions, using a temporary for the first argument
217        struct FixCtorExprs final : public ast::WithDeclsToAdd<>, public ast::WithSymbolTable, public ast::WithShortCircuiting {
218                const ast::Expr * postvisit( const ast::ConstructorExpr * ctorExpr );
219        };
220
221        /// add CompoundStmts around top-level expressions so that temporaries are destroyed in the correct places.
222        struct SplitExpressions : public ast::WithShortCircuiting {
223                ast::Stmt * postvisit( const ast::ExprStmt * stmt );
224                void previsit( const ast::TupleAssignExpr * expr );
225        };
226} // namespace
227
228void fix( ast::TranslationUnit & translationUnit, bool inLibrary ) {
229        ast::Pass<SelfAssignChecker>::run( translationUnit );
230
231        // fixes StmtExpr to properly link to their resulting expression
232        ast::Pass<StmtExprResult>::run( translationUnit );
233
234        // fixes ConstructorInit for global variables. should happen before fixInitializers.
235        InitTweak::fixGlobalInit( translationUnit, inLibrary );
236
237        // must happen before ResolveCopyCtors because temporaries have to be inserted into the correct scope
238        ast::Pass<SplitExpressions>::run( translationUnit );
239
240        ast::Pass<InsertImplicitCalls>::run( translationUnit );
241
242        // Needs to happen before ResolveCopyCtors, because argument/return temporaries should not be considered in
243        // error checking branch statements
244        {
245                ast::Pass<LabelFinder> finder;
246                ast::Pass<InsertDtors>::run( translationUnit, finder );
247        }
248
249        ast::Pass<ResolveCopyCtors>::run( translationUnit );
250        FixInit::fixInitializers( translationUnit );
251        ast::Pass<GenStructMemberCalls>::run( translationUnit );
252
253        // Needs to happen after GenStructMemberCalls, since otherwise member constructors exprs
254        // don't have the correct form, and a member can be constructed more than once.
255        ast::Pass<FixCtorExprs>::run( translationUnit );
256}
257
258namespace {
259        /// find and return the destructor used in `input`. If `input` is not a simple destructor call, generate a thunk
260        /// that wraps the destructor, insert it into `stmtsToAdd` and return the new function declaration
261        const ast::DeclWithType * getDtorFunc( const ast::ObjectDecl * objDecl, const ast::Stmt * input, std::list< ast::ptr<ast::Stmt> > & stmtsToAdd ) {
262                const CodeLocation loc = input->location;
263                // unwrap implicit statement wrapper
264                // Statement * dtor = input;
265                assert( input );
266                // std::list< const ast::Expr * > matches;
267                auto matches = collectCtorDtorCalls( input );
268
269                if ( dynamic_cast< const ast::ExprStmt * >( input ) ) {
270                        // only one destructor call in the expression
271                        if ( matches.size() == 1 ) {
272                                auto func = getFunction( matches.front() );
273                                assertf( func, "getFunction failed to find function in %s", toString( matches.front() ).c_str() );
274
275                                // cleanup argument must be a function, not an object (including function pointer)
276                                if ( auto dtorFunc = dynamic_cast< const ast::FunctionDecl * > ( func ) ) {
277                                        if ( dtorFunc->type->forall.empty() ) {
278                                                // simple case where the destructor is a monomorphic function call - can simply
279                                                // use that function as the cleanup function.
280                                                return func;
281                                        }
282                                }
283                        }
284                }
285
286                // otherwise the cleanup is more complicated - need to build a single argument cleanup function that
287                // wraps the more complicated code.
288                static UniqueName dtorNamer( "__cleanup_dtor" );
289                std::string name = dtorNamer.newName();
290                ast::FunctionDecl * dtorFunc = SymTab::genDefaultFunc( loc, name, objDecl->type->stripReferences(), false );
291                stmtsToAdd.push_back( new ast::DeclStmt(loc, dtorFunc ) );
292
293                // the original code contains uses of objDecl - replace them with the newly generated 'this' parameter.
294                const ast::ObjectDecl * thisParam = getParamThis( dtorFunc );
295                const ast::Expr * replacement = new ast::VariableExpr( loc, thisParam );
296
297                auto base = replacement->result->stripReferences();
298                if ( dynamic_cast< const ast::ArrayType * >( base ) || dynamic_cast< const ast::TupleType * > ( base ) ) {
299                        // need to cast away reference for array types, since the destructor is generated without the reference type,
300                        // and for tuple types since tuple indexing does not work directly on a reference
301                        replacement = new ast::CastExpr( replacement, base );
302                }
303                auto dtor = ast::DeclReplacer::replace( input, ast::DeclReplacer::ExprMap{ std::make_pair( objDecl, replacement ) } );
304                auto mutStmts = dtorFunc->stmts.get_and_mutate();
305                mutStmts->push_back(strict_dynamic_cast<const ast::Stmt *>( dtor ));
306                dtorFunc->stmts = mutStmts;
307
308                return dtorFunc;
309        }
310
311        void FixInit::fixInitializers( ast::TranslationUnit & translationUnit ) {
312                ast::Pass<FixInit> fixer;
313
314                // can't use mutateAll, because need to insert declarations at top-level
315                // can't use DeclMutator, because sometimes need to insert IfStmt, etc.
316                SemanticErrorException errors;
317                for ( auto i = translationUnit.decls.begin(); i != translationUnit.decls.end(); ++i ) {
318                        try {
319                                // maybeAccept( *i, fixer ); translationUnit should never contain null
320                                *i = (*i)->accept(fixer);
321                                translationUnit.decls.splice( i, fixer.core.staticDtorDecls );
322                        } catch( SemanticErrorException &e ) {
323                                errors.append( e );
324                        } // try
325                } // for
326                if ( ! errors.isEmpty() ) {
327                        throw errors;
328                } // if
329        }
330
331        const ast::StmtExpr * StmtExprResult::previsit( const ast::StmtExpr * stmtExpr ) {
332                // we might loose the result expression here so add a pointer to trace back
333                assert( stmtExpr->result );
334                const ast::Type * result = stmtExpr->result;
335                if ( ! result->isVoid() ) {
336                        auto mutExpr = mutate(stmtExpr);
337                        const ast::CompoundStmt * body = mutExpr->stmts;
338                        assert( ! body->kids.empty() );
339                        mutExpr->resultExpr = body->kids.back().strict_as<ast::ExprStmt>();
340                        return mutExpr;
341                }
342                return stmtExpr;
343        }
344
345        ast::Stmt * SplitExpressions::postvisit( const ast::ExprStmt * stmt ) {
346                // wrap each top-level ExprStmt in a block so that destructors for argument and return temporaries are destroyed
347                // in the correct places
348                ast::CompoundStmt * ret = new ast::CompoundStmt( stmt->location, { stmt } );
349                return ret;
350        }
351
352        void SplitExpressions::previsit( const ast::TupleAssignExpr * ) {
353                // don't do this within TupleAssignExpr, since it is already broken up into multiple expressions
354                visit_children = false;
355        }
356
357        // Relatively simple structural comparison for expressions, needed to determine
358        // if two expressions are "the same" (used to determine if self assignment occurs)
359        struct StructuralChecker {
360                // Strip all casts and then dynamic_cast.
361                template<typename T>
362                static const T * cast( const ast::Expr * expr ) {
363                        // this might be too permissive. It's possible that only particular casts are relevant.
364                        while ( auto cast = dynamic_cast< const ast::CastExpr * >( expr ) ) {
365                                expr = cast->arg;
366                        }
367                        return dynamic_cast< const T * >( expr );
368                }
369
370                void previsit( const ast::Expr * ) {
371                        // anything else does not qualify
372                        result = false;
373                }
374
375                // ignore casts
376                void previsit( const ast::CastExpr * ) {}
377
378                void previsit( const ast::MemberExpr * memExpr ) {
379                        if ( auto otherMember = cast< ast::MemberExpr >( other ) ) {
380                                if ( otherMember->member == memExpr->member ) {
381                                        other = otherMember->aggregate;
382                                        return;
383                                }
384                        }
385                        result = false;
386                }
387
388                void previsit( const ast::VariableExpr * varExpr ) {
389                        if ( auto otherVar = cast< ast::VariableExpr >( other ) ) {
390                                if ( otherVar->var == varExpr->var ) {
391                                        return;
392                                }
393                        }
394                        result = false;
395                }
396
397                void previsit( const ast::AddressExpr * ) {
398                        if ( auto addrExpr = cast< ast::AddressExpr >( other ) ) {
399                                other = addrExpr->arg;
400                                return;
401                        }
402                        result = false;
403                }
404
405                const ast::Expr * other;
406                bool result = true;
407                StructuralChecker( const ast::Expr * other ) : other(other) {}
408        };
409
410        bool structurallySimilar( const ast::Expr * e1, const ast::Expr * e2 ) {
411                return ast::Pass<StructuralChecker>::read( e1, e2 );
412        }
413
414        void SelfAssignChecker::previsit( const ast::ApplicationExpr * appExpr ) {
415                auto function = getFunction( appExpr );
416                // Doesn't use isAssignment, because ?+=?, etc. should not count as self-assignment.
417                if ( function->name == "?=?" && appExpr->args.size() == 2
418                                // Check for structural similarity (same variable use, ignore casts, etc.
419                                // (but does not look too deeply, anything looking like a function is off limits).
420                                && structurallySimilar( appExpr->args.front(), appExpr->args.back() ) ) {
421                        SemanticWarning( appExpr->location, Warning::SelfAssignment, toCString( appExpr->args.front() ) );
422                }
423        }
424
425        const ast::Expr * InsertImplicitCalls::postvisit( const ast::ApplicationExpr * appExpr ) {
426                if ( auto function = appExpr->func.as<ast::VariableExpr>() ) {
427                        if ( function->var->linkage.is_builtin ) {
428                                // optimization: don't need to copy construct in order to call intrinsic functions
429                                return appExpr;
430                        } else if ( auto funcDecl = function->var.as<ast::DeclWithType>() ) {
431                                auto ftype = dynamic_cast< const ast::FunctionType * >( GenPoly::getFunctionType( funcDecl->get_type() ) );
432                                assertf( ftype, "Function call without function type: %s", toString( funcDecl ).c_str() );
433                                if ( CodeGen::isConstructor( funcDecl->name ) && ftype->params.size() == 2 ) {
434                                        auto t1 = getPointerBase( ftype->params.front() );
435                                        auto t2 = ftype->params.back();
436                                        assert( t1 );
437
438                                        if ( ResolvExpr::typesCompatible( t1, t2 ) ) {
439                                                // optimization: don't need to copy construct in order to call a copy constructor
440                                                return appExpr;
441                                        } // if
442                                } else if ( CodeGen::isDestructor( funcDecl->name ) ) {
443                                        // correctness: never copy construct arguments to a destructor
444                                        return appExpr;
445                                } // if
446                        } // if
447                } // if
448                CP_CTOR_PRINT( std::cerr << "InsertImplicitCalls: adding a wrapper " << appExpr << std::endl; )
449
450                // wrap each function call so that it is easy to identify nodes that have to be copy constructed
451                ast::ptr<ast::TypeSubstitution> tmp = appExpr->env;
452                auto mutExpr = mutate(appExpr);
453                mutExpr->env = nullptr;
454
455                auto expr = new ast::ImplicitCopyCtorExpr( appExpr->location, mutExpr );
456                // Move the type substitution to the new top-level, if it is attached to the appExpr.
457                // Ensure it is not deleted with the ImplicitCopyCtorExpr by removing it before deletion.
458                // The substitution is needed to obtain the type of temporary variables so that copy constructor
459                // calls can be resolved.
460                assert( typeSubs );
461                // assert (mutExpr->env);
462                expr->env = tmp;
463                // mutExpr->env = nullptr;
464                //std::swap( expr->env, appExpr->env );
465                return expr;
466        }
467
468        void ResolveCopyCtors::previsit(const ast::Expr * expr) {
469                if (expr->env) {
470                        GuardValue(env);
471                        GuardValue(envModified);
472                        env = expr->env->clone();
473                        envModified = false;
474                }
475        }
476
477        const ast::Expr * ResolveCopyCtors::postvisit(const ast::Expr * expr) {
478                if (expr->env) {
479                        if (envModified) {
480                                auto mutExpr = mutate(expr);
481                                mutExpr->env = env;
482                                return mutExpr;
483                        }
484                        else {
485                                // env was not mutated, skip and delete the shallow copy
486                                delete env;
487                                return expr;
488                        }
489                }
490                else {
491                        return expr;
492                }
493        }
494
495        bool ResolveCopyCtors::skipCopyConstruct( const ast::Type * type ) { return ! isConstructable( type ); }
496
497        const ast::Expr * ResolveCopyCtors::makeCtorDtor( const std::string & fname, const ast::ObjectDecl * var, const ast::Expr * cpArg ) {
498                assert( var );
499                assert (var->isManaged());
500                assert (!cpArg || cpArg->isManaged());
501                // arrays are not copy constructed, so this should always be an ExprStmt
502                ast::ptr< ast::Stmt > stmt = genCtorDtor(var->location, fname, var, cpArg );
503                assertf( stmt, "ResolveCopyCtors: genCtorDtor returned nullptr: %s / %s / %s", fname.c_str(), toString( var ).c_str(), toString( cpArg ).c_str() );
504                auto exprStmt = stmt.strict_as<ast::ImplicitCtorDtorStmt>()->callStmt.strict_as<ast::ExprStmt>();
505                ast::ptr<ast::Expr> untyped = exprStmt->expr; // take ownership of expr
506                // exprStmt->expr = nullptr;
507
508                // resolve copy constructor
509                // should only be one alternative for copy ctor and dtor expressions, since all arguments are fixed
510                // (VariableExpr and already resolved expression)
511                CP_CTOR_PRINT( std::cerr << "ResolvingCtorDtor " << untyped << std::endl; )
512                ast::ptr<ast::Expr> resolved = ResolvExpr::findVoidExpression(untyped, symtab);
513                assert( resolved );
514                if ( resolved->env ) {
515                        // Extract useful information and discard new environments. Keeping them causes problems in PolyMutator passes.
516                        env->add( *resolved->env );
517                        envModified = true;
518                        // delete resolved->env;
519                        auto mut = mutate(resolved.get());
520                        assertf(mut == resolved.get(), "newly resolved expression must be unique");
521                        mut->env = nullptr;
522                } // if
523                // delete stmt;
524                if ( auto assign = resolved.as<ast::TupleAssignExpr>() ) {
525                        // fix newly generated StmtExpr
526                        previsit( assign->stmtExpr );
527                }
528                return resolved.release();
529        }
530
531        ast::ptr<ast::Expr> ResolveCopyCtors::copyConstructArg(
532                const ast::Expr * arg, const ast::ImplicitCopyCtorExpr * impCpCtorExpr, const ast::Type * formal )
533        {
534                static UniqueName tempNamer("_tmp_cp");
535                assert( env );
536                const CodeLocation loc = impCpCtorExpr->location;
537                // CP_CTOR_PRINT( std::cerr << "Type Substitution: " << *env << std::endl; )
538                assert( arg->result );
539                ast::ptr<ast::Type> result = arg->result;
540                if ( skipCopyConstruct( result ) ) return arg; // skip certain non-copyable types
541
542                // type may involve type variables, so apply type substitution to get temporary variable's actual type,
543                // since result type may not be substituted (e.g., if the type does not appear in the parameter list)
544                // Use applyFree so that types bound in function pointers are not substituted, e.g. in forall(dtype T) void (*)(T).
545
546                // xxx - this originally mutates arg->result in place. is it correct?
547                result = env->applyFree( result.get() ).node;
548                auto mutResult = result.get_and_mutate();
549                mutResult->set_const(false);
550
551                auto mutArg = mutate(arg);
552                mutArg->result = mutResult;
553
554                ast::ptr<ast::Expr> guard = mutArg;
555
556                ast::ptr<ast::ObjectDecl> tmp = new ast::ObjectDecl(loc, "__tmp", mutResult, nullptr );
557
558                // create and resolve copy constructor
559                CP_CTOR_PRINT( std::cerr << "makeCtorDtor for an argument" << std::endl; )
560                auto cpCtor = makeCtorDtor( "?{}", tmp, mutArg );
561
562                if ( auto appExpr = dynamic_cast< const ast::ApplicationExpr * >( cpCtor ) ) {
563                        // if the chosen constructor is intrinsic, the copy is unnecessary, so
564                        // don't create the temporary and don't call the copy constructor
565                        auto function = appExpr->func.strict_as<ast::VariableExpr>();
566                        if ( function->var->linkage == ast::Linkage::Intrinsic ) {
567                                // arguments that need to be boxed need a temporary regardless of whether the copy constructor is intrinsic,
568                                // so that the object isn't changed inside of the polymorphic function
569                                if ( ! GenPoly::needsBoxing( formal, result, impCpCtorExpr->callExpr, env ) ) {
570                                        // xxx - should arg->result be mutated? see comment above.
571                                        return guard;
572                                }
573                        }
574                }
575
576                // set a unique name for the temporary once it's certain the call is necessary
577                auto mut = tmp.get_and_mutate();
578                assertf (mut == tmp, "newly created ObjectDecl must be unique");
579                mut->name = tempNamer.newName();
580
581                // replace argument to function call with temporary
582                stmtsToAddBefore.push_back( new ast::DeclStmt(loc, tmp ) );
583                arg = cpCtor;
584                return destructRet( tmp, arg );
585
586                // impCpCtorExpr->dtors.push_front( makeCtorDtor( "^?{}", tmp ) );
587        }
588
589        ast::Expr * ResolveCopyCtors::destructRet( const ast::ObjectDecl * ret, const ast::Expr * arg ) {
590                // TODO: refactor code for generating cleanup attribute, since it's common and reused in ~3-4 places
591                // check for existing cleanup attribute before adding another(?)
592                // need to add __Destructor for _tmp_cp variables as well
593
594                assertf( ast::dtorStruct, "Destructor generation requires __Destructor definition." );
595                assertf( ast::dtorStruct->members.size() == 2, "__Destructor definition does not have expected fields." );
596                assertf( ast::dtorStructDestroy, "Destructor generation requires __destroy_Destructor." );
597
598                const CodeLocation loc = ret->location;
599
600                // generate a __Destructor for ret that calls the destructor
601                auto res = makeCtorDtor( "^?{}", ret );
602                auto dtor = mutate(res);
603
604                // if the chosen destructor is intrinsic, elide the generated dtor handler
605                if ( arg && isIntrinsicCallExpr( dtor ) ) {
606                        return new ast::CommaExpr(loc, arg, new ast::VariableExpr(loc, ret ) );
607                        // return;
608                }
609
610                if ( ! dtor->env ) dtor->env = maybeClone( env );
611                auto dtorFunc = getDtorFunc( ret, new ast::ExprStmt(loc, dtor ), stmtsToAddBefore );
612
613                auto dtorStructType = new ast::StructInstType(ast::dtorStruct);
614
615                // what does this do???
616                dtorStructType->params.push_back( new ast::TypeExpr(loc, new ast::VoidType() ) );
617
618                // cast destructor pointer to void (*)(void *), to silence GCC incompatible pointer warnings
619                auto dtorFtype = new ast::FunctionType();
620                dtorFtype->params.push_back( new ast::PointerType(new ast::VoidType( ) ) );
621                auto dtorType = new ast::PointerType( dtorFtype );
622
623                static UniqueName namer( "_ret_dtor" );
624                auto retDtor = new ast::ObjectDecl(loc, namer.newName(), dtorStructType, new ast::ListInit(loc, { new ast::SingleInit(loc, ast::ConstantExpr::null(loc) ), new ast::SingleInit(loc, new ast::CastExpr( new ast::VariableExpr(loc, dtorFunc ), dtorType ) ) } ) );
625                retDtor->attributes.push_back( new ast::Attribute( "cleanup", { new ast::VariableExpr(loc, ast::dtorStructDestroy ) } ) );
626                stmtsToAddBefore.push_back( new ast::DeclStmt(loc, retDtor ) );
627
628                if ( arg ) {
629                        auto member = new ast::MemberExpr(loc, ast::dtorStruct->members.front().strict_as<ast::DeclWithType>(), new ast::VariableExpr(loc, retDtor ) );
630                        auto object = new ast::CastExpr( new ast::AddressExpr( new ast::VariableExpr(loc, ret ) ), new ast::PointerType(new ast::VoidType() ) );
631                        ast::Expr * assign = createBitwiseAssignment( member, object );
632                        return new ast::CommaExpr(loc, new ast::CommaExpr(loc, arg, assign ), new ast::VariableExpr(loc, ret ) );
633                }
634                return nullptr;
635                // impCpCtorExpr->get_dtors().push_front( makeCtorDtor( "^?{}", ret ) );
636        }
637
638        const ast::Expr * ResolveCopyCtors::postvisit( const ast::ImplicitCopyCtorExpr *impCpCtorExpr ) {
639                CP_CTOR_PRINT( std::cerr << "ResolveCopyCtors: " << impCpCtorExpr << std::endl; )
640
641                ast::ApplicationExpr * appExpr = mutate(impCpCtorExpr->callExpr.get());
642                const ast::ObjectDecl * returnDecl = nullptr;
643                const CodeLocation loc = appExpr->location;
644
645                // take each argument and attempt to copy construct it.
646                auto ftype = GenPoly::getFunctionType( appExpr->func->result );
647                assert( ftype );
648                auto & params = ftype->params;
649                auto iter = params.begin();
650                for ( auto & arg : appExpr->args ) {
651                        const ast::Type * formal = nullptr;
652                        if ( iter != params.end() ) { // does not copy construct C-style variadic arguments
653                                // DeclarationWithType * param = *iter++;
654                                formal = *iter++;
655                        }
656
657                        arg = copyConstructArg( arg, impCpCtorExpr, formal );
658                } // for
659
660                // each return value from the call needs to be connected with an ObjectDecl at the call site, which is
661                // initialized with the return value and is destructed later
662                // xxx - handle named return values?
663                const ast::Type * result = appExpr->result;
664                if ( ! result->isVoid() ) {
665                        static UniqueName retNamer("_tmp_cp_ret");
666                        // result = result->clone();
667                        auto subResult = env->apply( result ).node;
668                        auto ret = new ast::ObjectDecl(loc, retNamer.newName(), subResult, nullptr );
669                        auto mutType = mutate(ret->type.get());
670                        mutType->set_const( false );
671                        ret->type = mutType;
672                        returnDecl = ret;
673                        stmtsToAddBefore.push_back( new ast::DeclStmt(loc, ret ) );
674                        CP_CTOR_PRINT( std::cerr << "makeCtorDtor for a return" << std::endl; )
675                } // for
676                CP_CTOR_PRINT( std::cerr << "after Resolving: " << impCpCtorExpr << std::endl; )
677                // ------------------------------------------------------
678
679                CP_CTOR_PRINT( std::cerr << "Coming out the back..." << impCpCtorExpr << std::endl; )
680
681                // detach fields from wrapper node so that it can be deleted without deleting too much
682
683                // xxx - actual env might be somewhere else, need to keep invariant
684
685                // deletion of wrapper should be handled by pass template now
686
687                // impCpCtorExpr->callExpr = nullptr;
688                assert (appExpr->env == nullptr);
689                appExpr->env = impCpCtorExpr->env;
690                // std::swap( impCpCtorExpr->env, appExpr->env );
691                // assert( impCpCtorExpr->env == nullptr );
692                // delete impCpCtorExpr;
693
694                if ( returnDecl ) {
695                        ast::Expr * assign = createBitwiseAssignment( new ast::VariableExpr(loc, returnDecl ), appExpr );
696                        if ( ! dynamic_cast< const ast::ReferenceType * >( result ) ) {
697                                // destructing reference returns is bad because it can cause multiple destructor calls to the same object - the returned object is not a temporary
698                                assign = destructRet( returnDecl, assign );
699                                assert(assign);
700                        } else {
701                                assign = new ast::CommaExpr(loc, assign, new ast::VariableExpr(loc, returnDecl ) );
702                        }
703                        // move env from appExpr to retExpr
704                        // std::swap( assign->env, appExpr->env );
705                        assign->env = appExpr->env;
706                        // actual env is handled by common routine that replaces WithTypeSubstitution
707                        return postvisit((const ast::Expr *)assign);
708                } else {
709                        return postvisit((const ast::Expr *)appExpr);
710                } // if
711        }
712
713        const ast::StmtExpr * ResolveCopyCtors::previsit( const ast::StmtExpr * _stmtExpr ) {
714                // function call temporaries should be placed at statement-level, rather than nested inside of a new statement expression,
715                // since temporaries can be shared across sub-expressions, e.g.
716                //   [A, A] f();       // decl
717                //   g([A] x, [A] y);  // decl
718                //   g(f());           // call
719                // f is executed once, so the return temporary is shared across the tuple constructors for x and y.
720                // Explicitly mutating children instead of mutating the inner compound statement forces the temporaries to be added
721                // to the outer context, rather than inside of the statement expression.
722
723                // call the common routine that replaces WithTypeSubstitution
724                previsit((const ast::Expr *) _stmtExpr);
725
726                visit_children = false;
727                const CodeLocation loc = _stmtExpr->location;
728
729                assert( env );
730
731                symtab.enterScope();
732                // visit all statements
733                auto stmtExpr = mutate(_stmtExpr);
734                auto mutStmts = mutate(stmtExpr->stmts.get());
735
736                auto & stmts = mutStmts->kids;
737                for ( auto & stmt : stmts ) {
738                        stmt = stmt->accept( *visitor );
739                } // for
740                stmtExpr->stmts = mutStmts;
741                symtab.leaveScope();
742
743                assert( stmtExpr->result );
744                // const ast::Type * result = stmtExpr->result;
745                if ( ! stmtExpr->result->isVoid() ) {
746                        static UniqueName retNamer("_tmp_stmtexpr_ret");
747
748                        // result = result->clone();
749                        auto result = env->apply( stmtExpr->result.get() ).node;
750                        if ( ! InitTweak::isConstructable( result ) ) {
751                                // delete result;
752                                return stmtExpr;
753                        }
754                        auto mutResult = result.get_and_mutate();
755                        mutResult->set_const(false);
756
757                        // create variable that will hold the result of the stmt expr
758                        auto ret = new ast::ObjectDecl(loc, retNamer.newName(), mutResult, nullptr );
759                        stmtsToAddBefore.push_back( new ast::DeclStmt(loc, ret ) );
760
761                        assertf(
762                                stmtExpr->resultExpr,
763                                "Statement-Expression should have a resulting expression at %s:%d",
764                                stmtExpr->location.filename.c_str(),
765                                stmtExpr->location.first_line
766                        );
767
768                        const ast::ExprStmt * last = stmtExpr->resultExpr;
769                        // xxx - if this is non-unique, need to copy while making resultExpr ref
770                        assertf(last->unique(), "attempt to modify weakly shared statement");
771                        auto mutLast = mutate(last);
772                        // above assertion means in-place mutation is OK
773                        try {
774                                mutLast->expr = makeCtorDtor( "?{}", ret, mutLast->expr );
775                        } catch(...) {
776                                std::cerr << "*CFA internal error: ";
777                                std::cerr << "can't resolve implicit constructor";
778                                std::cerr << " at " << stmtExpr->location.filename;
779                                std::cerr << ":" << stmtExpr->location.first_line << std::endl;
780
781                                abort();
782                        }
783
784                        // add destructors after current statement
785                        stmtsToAddAfter.push_back( new ast::ExprStmt(loc, makeCtorDtor( "^?{}", ret ) ) );
786
787                        // must have a non-empty body, otherwise it wouldn't have a result
788                        assert( ! stmts.empty() );
789
790                        // if there is a return decl, add a use as the last statement; will not have return decl on non-constructable returns
791                        stmts.push_back( new ast::ExprStmt(loc, new ast::VariableExpr(loc, ret ) ) );
792                } // if
793
794                assert( stmtExpr->returnDecls.empty() );
795                assert( stmtExpr->dtors.empty() );
796
797                return stmtExpr;
798        }
799
800        // to prevent warnings ('_unq0' may be used uninitialized in this function),
801        // insert an appropriate zero initializer for UniqueExpr temporaries.
802        ast::Init * makeInit( const ast::Type * t, CodeLocation const & loc ) {
803                if ( auto inst = dynamic_cast< const ast::StructInstType * >( t ) ) {
804                        // initizer for empty struct must be empty
805                        if ( inst->base->members.empty() ) {
806                                return new ast::ListInit( loc, {} );
807                        }
808                } else if ( auto inst = dynamic_cast< const ast::UnionInstType * >( t ) ) {
809                        // initizer for empty union must be empty
810                        if ( inst->base->members.empty() ) {
811                                return new ast::ListInit( loc, {} );
812                        }
813                }
814
815                return new ast::ListInit( loc, {
816                        new ast::SingleInit( loc, ast::ConstantExpr::from_int( loc, 0 ) )
817                } );
818        }
819
820        const ast::UniqueExpr * ResolveCopyCtors::previsit( const ast::UniqueExpr * unqExpr ) {
821                visit_children = false;
822                // xxx - hack to prevent double-handling of unique exprs, otherwise too many temporary variables and destructors are generated
823                static std::unordered_map< int, const ast::UniqueExpr * > unqMap;
824                auto mutExpr = mutate(unqExpr);
825                if ( ! unqMap.count( unqExpr->id ) ) {
826                        // resolve expr and find its
827
828                        auto impCpCtorExpr = mutExpr->expr.as<ast::ImplicitCopyCtorExpr>();
829                        // PassVisitor<ResolveCopyCtors> fixer;
830
831                        mutExpr->expr = mutExpr->expr->accept( *visitor );
832                        // it should never be necessary to wrap a void-returning expression in a UniqueExpr - if this assumption changes, this needs to be rethought
833                        assert( unqExpr->result );
834                        if ( impCpCtorExpr ) {
835                                auto comma = unqExpr->expr.strict_as<ast::CommaExpr>();
836                                auto var = comma->arg2.strict_as<ast::VariableExpr>();
837                                // note the variable used as the result from the call
838                                mutExpr->var = var;
839                        } else {
840                                // expr isn't a call expr, so create a new temporary variable to use to hold the value of the unique expression
841                                mutExpr->object = new ast::ObjectDecl( mutExpr->location, toString("_unq", mutExpr->id), mutExpr->result, makeInit( mutExpr->result, mutExpr->location ) );
842                                mutExpr->var = new ast::VariableExpr( mutExpr->location, mutExpr->object );
843                        }
844
845                        // stmtsToAddBefore.splice( stmtsToAddBefore.end(), fixer.pass.stmtsToAddBefore );
846                        // stmtsToAddAfter.splice( stmtsToAddAfter.end(), fixer.pass.stmtsToAddAfter );
847                        unqMap[mutExpr->id] = mutExpr;
848                } else {
849                        // take data from other UniqueExpr to ensure consistency
850                        // delete unqExpr->get_expr();
851                        mutExpr->expr = unqMap[mutExpr->id]->expr;
852                        // delete unqExpr->result;
853                        mutExpr->result = mutExpr->expr->result;
854                }
855                return mutExpr;
856        }
857
858        const ast::DeclWithType * FixInit::postvisit( const ast::ObjectDecl *_objDecl ) {
859                const CodeLocation loc = _objDecl->location;
860
861                // since this removes the init field from objDecl, it must occur after children are mutated (i.e. postvisit)
862                if ( ast::ptr<ast::ConstructorInit> ctorInit = _objDecl->init.as<ast::ConstructorInit>() ) {
863                        auto objDecl = mutate(_objDecl);
864
865                        // could this be non-unique?
866                        if (objDecl != _objDecl) {
867                                std::cerr << "FixInit: non-unique object decl " << objDecl->location << objDecl->name << std::endl;
868                        }
869                        // a decision should have been made by the resolver, so ctor and init are not both non-NULL
870                        assert( ! ctorInit->ctor || ! ctorInit->init );
871                        if ( const ast::Stmt * ctor = ctorInit->ctor ) {
872                                if ( objDecl->storage.is_static ) {
873                                        addDataSectionAttribute(objDecl);
874                                        // originally wanted to take advantage of gcc nested functions, but
875                                        // we get memory errors with this approach. To remedy this, the static
876                                        // variable is hoisted when the destructor needs to be called.
877                                        //
878                                        // generate:
879                                        // static T __objName_static_varN;
880                                        // void __objName_dtor_atexitN() {
881                                        //   __dtor__...;
882                                        // }
883                                        // int f(...) {
884                                        //   ...
885                                        //   static bool __objName_uninitialized = true;
886                                        //   if (__objName_uninitialized) {
887                                        //     __ctor(__objName);
888                                        //     __objName_uninitialized = false;
889                                        //     atexit(__objName_dtor_atexitN);
890                                        //   }
891                                        //   ...
892                                        // }
893
894                                        static UniqueName dtorCallerNamer( "_dtor_atexit" );
895
896                                        // static bool __objName_uninitialized = true
897                                        auto boolType = new ast::BasicType( ast::BasicType::Kind::Bool );
898                                        auto boolInitExpr = new ast::SingleInit(loc, ast::ConstantExpr::from_int(loc, 1 ) );
899                                        auto isUninitializedVar = new ast::ObjectDecl(loc, objDecl->mangleName + "_uninitialized", boolType, boolInitExpr, ast::Storage::Static, ast::Linkage::Cforall);
900                                        isUninitializedVar->fixUniqueId();
901
902                                        // __objName_uninitialized = false;
903                                        auto setTrue = new ast::UntypedExpr(loc, new ast::NameExpr(loc, "?=?" ) );
904                                        setTrue->args.push_back( new ast::VariableExpr(loc, isUninitializedVar ) );
905                                        setTrue->args.push_back( ast::ConstantExpr::from_int(loc, 0 ) );
906
907                                        // generate body of if
908                                        auto initStmts = new ast::CompoundStmt(loc);
909                                        auto & body = initStmts->kids;
910                                        body.push_back( ctor );
911                                        body.push_back( new ast::ExprStmt(loc, setTrue ) );
912
913                                        // put it all together
914                                        auto ifStmt = new ast::IfStmt(loc, new ast::VariableExpr(loc, isUninitializedVar ), initStmts, 0 );
915                                        stmtsToAddAfter.push_back( new ast::DeclStmt(loc, isUninitializedVar ) );
916                                        stmtsToAddAfter.push_back( ifStmt );
917
918                                        const ast::Stmt * dtor = ctorInit->dtor;
919
920                                        // these should be automatically managed once reassigned
921                                        // objDecl->set_init( nullptr );
922                                        // ctorInit->set_ctor( nullptr );
923                                        // ctorInit->set_dtor( nullptr );
924                                        if ( dtor ) {
925                                                // if the object has a non-trivial destructor, have to
926                                                // hoist it and the object into the global space and
927                                                // call the destructor function with atexit.
928
929                                                // Statement * dtorStmt = dtor->clone();
930
931                                                // void __objName_dtor_atexitN(...) {...}
932                                                ast::FunctionDecl * dtorCaller = new ast::FunctionDecl(loc, objDecl->mangleName + dtorCallerNamer.newName(), {}, {}, {}, new ast::CompoundStmt(loc, {dtor}), ast::Storage::Static, ast::Linkage::C );
933                                                dtorCaller->fixUniqueId();
934                                                // dtorCaller->stmts->push_back( dtor );
935
936                                                // atexit(dtor_atexit);
937                                                auto callAtexit = new ast::UntypedExpr(loc, new ast::NameExpr(loc, "atexit" ) );
938                                                callAtexit->args.push_back( new ast::VariableExpr(loc, dtorCaller ) );
939
940                                                body.push_back( new ast::ExprStmt(loc, callAtexit ) );
941
942                                                // hoist variable and dtor caller decls to list of decls that will be added into global scope
943                                                staticDtorDecls.push_back( objDecl );
944                                                staticDtorDecls.push_back( dtorCaller );
945
946                                                // need to rename object uniquely since it now appears
947                                                // at global scope and there could be multiple function-scoped
948                                                // static variables with the same name in different functions.
949                                                // Note: it isn't sufficient to modify only the mangleName, because
950                                                // then subsequent Indexer passes can choke on seeing the object's name
951                                                // if another object has the same name and type. An unfortunate side-effect
952                                                // of renaming the object is that subsequent NameExprs may fail to resolve,
953                                                // but there shouldn't be any remaining past this point.
954                                                static UniqueName staticNamer( "_static_var" );
955                                                objDecl->name = objDecl->name + staticNamer.newName();
956                                                objDecl->mangleName = Mangle::mangle( objDecl );
957                                                objDecl->init = nullptr;
958
959                                                // xxx - temporary hack: need to return a declaration, but want to hoist the current object out of this scope
960                                                // create a new object which is never used
961                                                static UniqueName dummyNamer( "_dummy" );
962                                                auto dummy = new ast::ObjectDecl(loc, dummyNamer.newName(), new ast::PointerType(new ast::VoidType()), nullptr, ast::Storage::Static, ast::Linkage::Cforall, 0, { new ast::Attribute("unused") } );
963                                                // delete ctorInit;
964                                                return dummy;
965                                        } else {
966                                                objDecl->init = nullptr;
967                                                return objDecl;
968                                        }
969                                } else {
970                                        auto implicit = strict_dynamic_cast< const ast::ImplicitCtorDtorStmt * > ( ctor );
971                                        auto ctorStmt = implicit->callStmt.as<ast::ExprStmt>();
972                                        const ast::ApplicationExpr * ctorCall = nullptr;
973                                        if ( ctorStmt && (ctorCall = isIntrinsicCallExpr( ctorStmt->expr )) && ctorCall->args.size() == 2 ) {
974                                                // clean up intrinsic copy constructor calls by making them into SingleInits
975                                                const ast::Expr * ctorArg = ctorCall->args.back();
976                                                // ctorCall should be gone afterwards
977                                                auto mutArg = mutate(ctorArg);
978                                                mutArg->env = ctorCall->env;
979                                                // std::swap( ctorArg->env, ctorCall->env );
980                                                objDecl->init = new ast::SingleInit(loc, mutArg );
981
982                                                // ctorCall->args.pop_back();
983                                        } else {
984                                                stmtsToAddAfter.push_back( ctor );
985                                                objDecl->init = nullptr;
986                                                // ctorInit->ctor = nullptr;
987                                        }
988
989                                        const ast::Stmt * dtor = ctorInit->dtor;
990                                        if ( dtor ) {
991                                                auto implicit = strict_dynamic_cast< const ast::ImplicitCtorDtorStmt * >( dtor );
992                                                const ast::Stmt * dtorStmt = implicit->callStmt;
993
994                                                // don't need to call intrinsic dtor, because it does nothing, but
995                                                // non-intrinsic dtors must be called
996                                                if ( ! isIntrinsicSingleArgCallStmt( dtorStmt ) ) {
997                                                        // set dtor location to the object's location for error messages
998                                                        auto dtorFunc = getDtorFunc( objDecl, dtorStmt, stmtsToAddBefore );
999                                                        objDecl->attributes.push_back( new ast::Attribute( "cleanup", { new ast::VariableExpr(loc, dtorFunc ) } ) );
1000                                                        // ctorInit->dtor = nullptr;
1001                                                } // if
1002                                        }
1003                                } // if
1004                        } else if ( const ast::Init * init = ctorInit->init ) {
1005                                objDecl->init = init;
1006                                // ctorInit->init = nullptr;
1007                        } else {
1008                                // no constructor and no initializer, which is okay
1009                                objDecl->init = nullptr;
1010                        } // if
1011                        // delete ctorInit;
1012                        return objDecl;
1013                } // if
1014                return _objDecl;
1015        }
1016
1017        void ObjDeclCollector::previsit( const ast::CompoundStmt * ) {
1018                GuardValue( curVars );
1019        }
1020
1021        void ObjDeclCollector::previsit( const ast::DeclStmt * stmt ) {
1022                // keep track of all variables currently in scope
1023                if ( auto objDecl = stmt->decl.as<ast::ObjectDecl>() ) {
1024                        curVars.push_back( objDecl );
1025                } // if
1026        }
1027
1028        void LabelFinder::previsit( const ast::Stmt * stmt ) {
1029                // for each label, remember the variables in scope at that label.
1030                for ( auto l : stmt->labels ) {
1031                        vars[l] = curVars;
1032                } // for
1033        }
1034
1035        void LabelFinder::previsit( const ast::CompoundStmt * stmt ) {
1036                previsit( (const ast::Stmt *) stmt );
1037                Parent::previsit( stmt );
1038        }
1039
1040        void LabelFinder::previsit( const ast::DeclStmt * stmt ) {
1041                previsit( (const ast::Stmt *)stmt );
1042                Parent::previsit( stmt );
1043        }
1044
1045
1046        void InsertDtors::previsit( const ast::FunctionDecl * funcDecl ) {
1047                // each function needs to have its own set of labels
1048                GuardValue( labelVars );
1049                labelVars.clear();
1050                // LabelFinder does not recurse into FunctionDecl, so need to visit
1051                // its children manually.
1052                if (funcDecl->type) funcDecl->type->accept(finder);
1053                // maybeAccept( funcDecl->type, finder );
1054                if (funcDecl->stmts) funcDecl->stmts->accept(finder) ;
1055
1056                // all labels for this function have been collected, insert destructors as appropriate via implicit recursion.
1057        }
1058
1059        // Handle break/continue/goto in the same manner as C++.  Basic idea: any objects that are in scope at the
1060        // BranchStmt but not at the labelled (target) statement must be destructed.  If there are any objects in scope
1061        // at the target location but not at the BranchStmt then those objects would be uninitialized so notify the user
1062        // of the error.  See C++ Reference 6.6 Jump Statements for details.
1063        void InsertDtors::handleGoto( const ast::BranchStmt * stmt ) {
1064                // can't do anything for computed goto
1065                if ( stmt->computedTarget ) return;
1066
1067                assertf( stmt->target.name != "", "BranchStmt missing a label: %s", toString( stmt ).c_str() );
1068                // S_L = lvars = set of objects in scope at label definition
1069                // S_G = curVars = set of objects in scope at goto statement
1070                ObjectSet & lvars = labelVars[ stmt->target ];
1071
1072                DTOR_PRINT(
1073                        std::cerr << "at goto label: " << stmt->target.name << std::endl;
1074                        std::cerr << "S_G = " << printSet( curVars ) << std::endl;
1075                        std::cerr << "S_L = " << printSet( lvars ) << std::endl;
1076                )
1077
1078
1079                // std::set_difference requires that the inputs be sorted.
1080                lvars.sort();
1081                curVars.sort();
1082
1083                ObjectSet diff;
1084                // S_L-S_G results in set of objects whose construction is skipped - it's an error if this set is non-empty
1085                std::set_difference( lvars.begin(), lvars.end(), curVars.begin(), curVars.end(), std::inserter( diff, diff.begin() ) );
1086                DTOR_PRINT(
1087                        std::cerr << "S_L-S_G = " << printSet( diff ) << std::endl;
1088                )
1089                if ( ! diff.empty() ) {
1090                        SemanticError( stmt, std::string("jump to label '") + stmt->target.name + "' crosses initialization of " + (*diff.begin())->name + " " );
1091                } // if
1092        }
1093
1094        void InsertDtors::previsit( const ast::BranchStmt * stmt ) {
1095                switch( stmt->kind ) {
1096                  case ast::BranchStmt::Continue:
1097                  case ast::BranchStmt::Break:
1098                        // could optimize the break/continue case, because the S_L-S_G check is unnecessary (this set should
1099                        // always be empty), but it serves as a small sanity check.
1100                  case ast::BranchStmt::Goto:
1101                        handleGoto( stmt );
1102                        break;
1103                  default:
1104                        assert( false );
1105                } // switch
1106        }
1107
1108        bool checkWarnings( const ast::FunctionDecl * funcDecl ) {
1109                // only check for warnings if the current function is a user-defined
1110                // constructor or destructor
1111                if ( ! funcDecl ) return false;
1112                if ( ! funcDecl->stmts ) return false;
1113                return CodeGen::isCtorDtor( funcDecl->name ) && ! funcDecl->linkage.is_overrideable;
1114        }
1115
1116        void GenStructMemberCalls::previsit( const ast::FunctionDecl * funcDecl ) {
1117                GuardValue( function );
1118                GuardValue( unhandled );
1119                GuardValue( usedUninit );
1120                GuardValue( thisParam );
1121                GuardValue( isCtor );
1122                GuardValue( structDecl );
1123                errors = SemanticErrorException();  // clear previous errors
1124
1125                // need to start with fresh sets
1126                unhandled.clear();
1127                usedUninit.clear();
1128
1129                function = mutate(funcDecl);
1130                // could this be non-unique?
1131                if (function != funcDecl) {
1132                        std::cerr << "GenStructMemberCalls: non-unique FunctionDecl " << funcDecl->location << funcDecl->name << std::endl;
1133                }
1134
1135                isCtor = CodeGen::isConstructor( function->name );
1136                if ( checkWarnings( function ) ) {
1137                        // const ast::FunctionType * type = function->type;
1138                        // assert( ! type->params.empty() );
1139                        thisParam = function->params.front().strict_as<ast::ObjectDecl>();
1140                        auto thisType = getPointerBase( thisParam->get_type() );
1141                        auto structType = dynamic_cast< const ast::StructInstType * >( thisType );
1142                        if ( structType ) {
1143                                structDecl = structType->base;
1144                                for ( auto & member : structDecl->members ) {
1145                                        if ( auto field = member.as<ast::ObjectDecl>() ) {
1146                                                // record all of the struct type's members that need to be constructed or
1147                                                // destructed by the end of the function
1148                                                unhandled.insert( field );
1149                                        }
1150                                }
1151                        }
1152                }
1153        }
1154
1155        const ast::DeclWithType * GenStructMemberCalls::postvisit( const ast::FunctionDecl * funcDecl ) {
1156                // remove the unhandled objects from usedUninit, because a call is inserted
1157                // to handle them - only objects that are later constructed are used uninitialized.
1158                std::map< const ast::DeclWithType *, CodeLocation > diff;
1159                // need the comparator since usedUninit and unhandled have different types
1160                struct comp_t {
1161                        typedef decltype(usedUninit)::value_type usedUninit_t;
1162                        typedef decltype(unhandled)::value_type unhandled_t;
1163                        bool operator()(usedUninit_t x, unhandled_t y) { return x.first < y; }
1164                        bool operator()(unhandled_t x, usedUninit_t y) { return x < y.first; }
1165                } comp;
1166                std::set_difference( usedUninit.begin(), usedUninit.end(), unhandled.begin(), unhandled.end(), std::inserter( diff, diff.begin() ), comp );
1167                for ( auto p : diff ) {
1168                        auto member = p.first;
1169                        auto loc = p.second;
1170                        // xxx - make error message better by also tracking the location that the object is constructed at?
1171                        emit( loc, "in ", function->name, ", field ", member->name, " used before being constructed" );
1172                }
1173
1174                const CodeLocation loc = funcDecl->location;
1175
1176                if ( ! unhandled.empty() ) {
1177                        auto mutStmts = function->stmts.get_and_mutate();
1178                        // need to explicitly re-add function parameters to the indexer in order to resolve copy constructors
1179                        auto guard = makeFuncGuard( [this]() { symtab.enterScope(); }, [this]() { symtab.leaveScope(); } );
1180                        symtab.addFunction( function );
1181
1182                        // need to iterate through members in reverse in order for
1183                        // ctor/dtor statements to come out in the right order
1184                        for ( auto & member : reverseIterate( structDecl->members ) ) {
1185                                auto field = member.as<ast::ObjectDecl>();
1186                                // skip non-DWT members
1187                                if ( ! field ) continue;
1188                                // skip non-constructable members
1189                                if ( ! tryConstruct( field ) ) continue;
1190                                // skip handled members
1191                                if ( ! unhandled.count( field ) ) continue;
1192
1193                                // insert and resolve default/copy constructor call for each field that's unhandled
1194                                // std::list< const ast::Stmt * > stmt;
1195                                ast::Expr * arg2 = nullptr;
1196                                if ( function->name == "?{}" && isCopyFunction( function ) ) {
1197                                        // if copy ctor, need to pass second-param-of-this-function.field
1198                                        // std::list< DeclarationWithType * > & params = function->get_functionType()->get_parameters();
1199                                        assert( function->params.size() == 2 );
1200                                        arg2 = new ast::MemberExpr(funcDecl->location, field, new ast::VariableExpr(funcDecl->location, function->params.back() ) );
1201                                }
1202                                InitExpander_new srcParam( arg2 );
1203                                // cast away reference type and construct field.
1204                                ast::Expr * thisExpr = new ast::CastExpr(funcDecl->location, new ast::VariableExpr(funcDecl->location, thisParam ), thisParam->get_type()->stripReferences());
1205                                ast::Expr * memberDest = new ast::MemberExpr(funcDecl->location, field, thisExpr );
1206                                ast::ptr<ast::Stmt> callStmt = SymTab::genImplicitCall( srcParam, memberDest, loc, function->name, field, static_cast<SymTab::LoopDirection>(isCtor) );
1207
1208                                if ( callStmt ) {
1209                                        // auto & callStmt = stmt.front();
1210
1211                                        try {
1212                                                callStmt = callStmt->accept( *visitor );
1213                                                if ( isCtor ) {
1214                                                        mutStmts->push_front( callStmt );
1215                                                } else { // TODO: don't generate destructor function/object for intrinsic calls
1216                                                        // destructor statements should be added at the end
1217                                                        // function->get_statements()->push_back( callStmt );
1218
1219                                                        // Optimization: do not need to call intrinsic destructors on members
1220                                                        if ( isIntrinsicSingleArgCallStmt( callStmt ) ) continue;
1221
1222                                                        // __Destructor _dtor0 = { (void *)&b.a1, (void (*)(void *)_destroy_A };
1223                                                        std::list< ast::ptr<ast::Stmt> > stmtsToAdd;
1224
1225                                                        static UniqueName memberDtorNamer = { "__memberDtor" };
1226                                                        assertf( ast::dtorStruct, "builtin __Destructor not found." );
1227                                                        assertf( ast::dtorStructDestroy, "builtin __destroy_Destructor not found." );
1228
1229                                                        ast::Expr * thisExpr = new ast::CastExpr( new ast::AddressExpr( new ast::VariableExpr(loc, thisParam ) ), new ast::PointerType( new ast::VoidType(), ast::CV::Qualifiers() ) );
1230                                                        ast::Expr * dtorExpr = new ast::VariableExpr(loc, getDtorFunc( thisParam, callStmt, stmtsToAdd ) );
1231
1232                                                        // cast destructor pointer to void (*)(void *), to silence GCC incompatible pointer warnings
1233                                                        auto dtorFtype = new ast::FunctionType();
1234                                                        dtorFtype->params.emplace_back( new ast::PointerType( new ast::VoidType() ) );
1235                                                        auto dtorType = new ast::PointerType( dtorFtype );
1236
1237                                                        auto destructor = new ast::ObjectDecl(loc, memberDtorNamer.newName(), new ast::StructInstType( ast::dtorStruct ), new ast::ListInit(loc, { new ast::SingleInit(loc, thisExpr ), new ast::SingleInit(loc, new ast::CastExpr( dtorExpr, dtorType ) ) } ) );
1238                                                        destructor->attributes.push_back( new ast::Attribute( "cleanup", { new ast::VariableExpr( loc, ast::dtorStructDestroy ) } ) );
1239                                                        mutStmts->push_front( new ast::DeclStmt(loc, destructor ) );
1240                                                        mutStmts->kids.splice( mutStmts->kids.begin(), stmtsToAdd );
1241                                                }
1242                                        } catch ( SemanticErrorException & error ) {
1243                                                emit( funcDecl->location, "in ", function->name , ", field ", field->name, " not explicitly ", isCtor ? "constructed" : "destructed",  " and no ", isCtor ? "default constructor" : "destructor", " found" );
1244                                        }
1245                                }
1246                        }
1247                        function->stmts = mutStmts;
1248                }
1249                if (! errors.isEmpty()) {
1250                        throw errors;
1251                }
1252                // return funcDecl;
1253                return function;
1254        }
1255
1256        /// true if expr is effectively just the 'this' parameter
1257        bool isThisExpression( const ast::Expr * expr, const ast::DeclWithType * thisParam ) {
1258                // TODO: there are more complicated ways to pass 'this' to a constructor, e.g. &*, *&, etc.
1259                if ( auto varExpr = dynamic_cast< const ast::VariableExpr * >( expr ) ) {
1260                        return varExpr->var == thisParam;
1261                } else if ( auto castExpr = dynamic_cast< const ast::CastExpr * > ( expr ) ) {
1262                        return isThisExpression( castExpr->arg, thisParam );
1263                }
1264                return false;
1265        }
1266
1267        /// returns a MemberExpr if expr is effectively just member access on the 'this' parameter, else nullptr
1268        const ast::MemberExpr * isThisMemberExpr( const ast::Expr * expr, const ast::DeclWithType * thisParam ) {
1269                if ( auto memberExpr = dynamic_cast< const ast::MemberExpr * >( expr ) ) {
1270                        if ( isThisExpression( memberExpr->aggregate, thisParam ) ) {
1271                                return memberExpr;
1272                        }
1273                } else if ( auto castExpr = dynamic_cast< const ast::CastExpr * >( expr ) ) {
1274                        return isThisMemberExpr( castExpr->arg, thisParam );
1275                }
1276                return nullptr;
1277        }
1278
1279        void GenStructMemberCalls::previsit( const ast::ApplicationExpr * appExpr ) {
1280                if ( ! checkWarnings( function ) ) {
1281                        visit_children = false;
1282                        return;
1283                }
1284
1285                std::string fname = getFunctionName( appExpr );
1286                if ( fname == function->name ) {
1287                        // call to same kind of function
1288                        const ast::Expr * firstParam = appExpr->args.front();
1289
1290                        if ( isThisExpression( firstParam, thisParam ) ) {
1291                                // if calling another constructor on thisParam, assume that function handles
1292                                // all members - if it doesn't a warning will appear in that function.
1293                                unhandled.clear();
1294                        } else if ( auto memberExpr = isThisMemberExpr( firstParam, thisParam ) ) {
1295                                // if first parameter is a member expression on the this parameter,
1296                                // then remove the member from unhandled set.
1297                                if ( isThisExpression( memberExpr->aggregate, thisParam ) ) {
1298                                        unhandled.erase( memberExpr->member );
1299                                }
1300                        }
1301                }
1302        }
1303
1304        void GenStructMemberCalls::previsit( const ast::MemberExpr * memberExpr ) {
1305                if ( ! checkWarnings( function ) || ! isCtor ) {
1306                        visit_children = false;
1307                        return;
1308                }
1309
1310                if ( isThisExpression( memberExpr->aggregate, thisParam ) ) {
1311                        if ( unhandled.count( memberExpr->member ) ) {
1312                                // emit a warning because a member was used before it was constructed
1313                                usedUninit.insert( { memberExpr->member, memberExpr->location } );
1314                        }
1315                }
1316        }
1317
1318        template< typename Visitor, typename... Params >
1319        void error( Visitor & v, CodeLocation loc, const Params &... params ) {
1320                SemanticErrorException err( loc, toString( params... ) );
1321                v.errors.append( err );
1322        }
1323
1324        template< typename... Params >
1325        void GenStructMemberCalls::emit( CodeLocation loc, const Params &... params ) {
1326                // toggle warnings vs. errors here.
1327                // warn( params... );
1328                error( *this, loc, params... );
1329        }
1330
1331        const ast::Expr * GenStructMemberCalls::postvisit( const ast::UntypedExpr * untypedExpr ) {
1332                // xxx - functions returning ast::ptr seems wrong...
1333                auto res = ResolvExpr::findVoidExpression( untypedExpr, symtab );
1334                // Fix CodeLocation (at least until resolver is fixed).
1335                auto fix = localFillCodeLocations( untypedExpr->location, res.release() );
1336                return strict_dynamic_cast<const ast::Expr *>( fix );
1337        }
1338
1339        void InsertImplicitCalls::previsit(const ast::UniqueExpr * unqExpr) {
1340                if (visitedIds.count(unqExpr->id)) visit_children = false;
1341                else visitedIds.insert(unqExpr->id);
1342        }
1343
1344        const ast::Expr * FixCtorExprs::postvisit( const ast::ConstructorExpr * ctorExpr ) {
1345                const CodeLocation loc = ctorExpr->location;
1346                static UniqueName tempNamer( "_tmp_ctor_expr" );
1347                // xxx - is the size check necessary?
1348                assert( ctorExpr->result && ctorExpr->result->size() == 1 );
1349
1350                // xxx - this can be TupleAssignExpr now. Need to properly handle this case.
1351                // take possession of expr and env
1352                ast::ptr<ast::ApplicationExpr> callExpr = ctorExpr->callExpr.strict_as<ast::ApplicationExpr>();
1353                ast::ptr<ast::TypeSubstitution> env = ctorExpr->env;
1354                // ctorExpr->set_callExpr( nullptr );
1355                // ctorExpr->set_env( nullptr );
1356
1357                // 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.
1358                auto tmp = new ast::ObjectDecl(loc, tempNamer.newName(), callExpr->args.front()->result );
1359                declsToAddBefore.push_back( tmp );
1360                // delete ctorExpr;
1361
1362                // build assignment and replace constructor's first argument with new temporary
1363                auto mutCallExpr = callExpr.get_and_mutate();
1364                const ast::Expr * firstArg = callExpr->args.front();
1365                ast::Expr * assign = new ast::UntypedExpr(loc, new ast::NameExpr(loc, "?=?" ), { new ast::AddressExpr(loc, new ast::VariableExpr(loc, tmp ) ), new ast::AddressExpr( firstArg ) } );
1366                firstArg = new ast::VariableExpr(loc, tmp );
1367                mutCallExpr->args.front() = firstArg;
1368
1369                // resolve assignment and dispose of new env
1370                auto resolved = ResolvExpr::findVoidExpression( assign, symtab );
1371                auto mut = resolved.get_and_mutate();
1372                assertf(resolved.get() == mut, "newly resolved expression must be unique");
1373                mut->env = nullptr;
1374
1375                // for constructor expr:
1376                //   T x;
1377                //   x{};
1378                // results in:
1379                //   T x;
1380                //   T & tmp;
1381                //   &tmp = &x, ?{}(tmp), tmp
1382                ast::CommaExpr * commaExpr = new ast::CommaExpr(loc, resolved, new ast::CommaExpr(loc, mutCallExpr, new ast::VariableExpr(loc, tmp ) ) );
1383                commaExpr->env = env;
1384                return commaExpr;
1385        }
1386} // namespace
1387} // namespace InitTweak
1388
1389// Local Variables: //
1390// tab-width: 4 //
1391// mode: c++ //
1392// compile-command: "make install" //
1393// End: //
Note: See TracBrowser for help on using the repository browser.