source: src/SymTab/Validate.cc @ ada0eb06

ADTaaron-thesisarm-ehast-experimentalcleanup-dtorsdeferred_resndemanglerenumforall-pointer-decayjacob/cs343-translationjenkins-sandboxnew-astnew-ast-unique-exprnew-envno_listpersistent-indexerpthread-emulationqualifiedEnumresolv-newwith_gc
Last change on this file since ada0eb06 was 5809461, checked in by Rob Schluntz <rschlunt@…>, 7 years ago

Fix handling of GCC label address and computed goto

  • Property mode set to 100644
File size: 40.2 KB
RevLine 
[0dd3a2f]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//
[9cb8e88d]7// Validate.cc --
[0dd3a2f]8//
9// Author           : Richard C. Bilson
10// Created On       : Sun May 17 21:50:04 2015
[b128d3e]11// Last Modified By : Peter A. Buhr
12// Last Modified On : Mon Aug 28 13:47:23 2017
13// Update Count     : 359
[0dd3a2f]14//
15
16// The "validate" phase of translation is used to take a syntax tree and convert it into a standard form that aims to be
17// as regular in structure as possible.  Some assumptions can be made regarding the state of the tree after this pass is
18// complete, including:
19//
20// - No nested structure or union definitions; any in the input are "hoisted" to the level of the containing struct or
21//   union.
22//
23// - All enumeration constants have type EnumInstType.
24//
[3c13c03]25// - The type "void" never occurs in lists of function parameter or return types.  A function
26//   taking no arguments has no argument types.
[0dd3a2f]27//
28// - No context instances exist; they are all replaced by the set of declarations signified by the context, instantiated
29//   by the particular set of type arguments.
30//
31// - Every declaration is assigned a unique id.
32//
33// - No typedef declarations or instances exist; the actual type is substituted for each instance.
34//
35// - Each type, struct, and union definition is followed by an appropriate assignment operator.
36//
37// - Each use of a struct or union is connected to a complete definition of that struct or union, even if that
38//   definition occurs later in the input.
[51b7345]39
[0db6fc0]40#include "Validate.h"
41
[d180746]42#include <cassert>                     // for assertf, assert
[30f9072]43#include <cstddef>                     // for size_t
[d180746]44#include <list>                        // for list
45#include <string>                      // for string
46#include <utility>                     // for pair
[30f9072]47
48#include "CodeGen/CodeGenerator.h"     // for genName
[9236060]49#include "CodeGen/OperatorTable.h"     // for isCtorDtor, isCtorDtorAssign
[30f9072]50#include "Common/PassVisitor.h"        // for PassVisitor, WithDeclsToAdd
[d180746]51#include "Common/ScopedMap.h"          // for ScopedMap
[30f9072]52#include "Common/SemanticError.h"      // for SemanticError
53#include "Common/UniqueName.h"         // for UniqueName
54#include "Common/utility.h"            // for operator+, cloneAll, deleteAll
[be9288a]55#include "Concurrency/Keywords.h"      // for applyKeywords
[30f9072]56#include "FixFunction.h"               // for FixFunction
57#include "Indexer.h"                   // for Indexer
[d180746]58#include "InitTweak/InitTweak.h"       // for isCtorDtorAssign
59#include "Parser/LinkageSpec.h"        // for C
60#include "ResolvExpr/typeops.h"        // for typesCompatible
[be9288a]61#include "SymTab/AddVisit.h"           // for addVisit
62#include "SymTab/Autogen.h"            // for SizeType
63#include "SynTree/Attribute.h"         // for noAttributes, Attribute
[30f9072]64#include "SynTree/Constant.h"          // for Constant
[d180746]65#include "SynTree/Declaration.h"       // for ObjectDecl, DeclarationWithType
66#include "SynTree/Expression.h"        // for CompoundLiteralExpr, Expressio...
67#include "SynTree/Initializer.h"       // for ListInit, Initializer
68#include "SynTree/Label.h"             // for operator==, Label
69#include "SynTree/Mutator.h"           // for Mutator
70#include "SynTree/Type.h"              // for Type, TypeInstType, EnumInstType
71#include "SynTree/TypeSubstitution.h"  // for TypeSubstitution
72#include "SynTree/Visitor.h"           // for Visitor
73
74class CompoundStmt;
75class ReturnStmt;
76class SwitchStmt;
[51b7345]77
78
[c8ffe20b]79#define debugPrint( x ) if ( doDebug ) { std::cout << x; }
[51b7345]80
81namespace SymTab {
[9facf3b]82        class HoistStruct final : public Visitor {
[c0aa336]83                template< typename Visitor >
84                friend void acceptAndAdd( std::list< Declaration * > &translationUnit, Visitor &visitor );
85            template< typename Visitor >
86            friend void addVisitStatementList( std::list< Statement* > &stmts, Visitor &visitor );
[a08ba92]87          public:
[82dd287]88                /// Flattens nested struct types
[0dd3a2f]89                static void hoistStruct( std::list< Declaration * > &translationUnit );
[9cb8e88d]90
[0dd3a2f]91                std::list< Declaration * > &get_declsToAdd() { return declsToAdd; }
[9cb8e88d]92
[c0aa336]93                virtual void visit( EnumInstType *enumInstType );
94                virtual void visit( StructInstType *structInstType );
95                virtual void visit( UnionInstType *unionInstType );
[0dd3a2f]96                virtual void visit( StructDecl *aggregateDecl );
97                virtual void visit( UnionDecl *aggregateDecl );
[c8ffe20b]98
[0dd3a2f]99                virtual void visit( CompoundStmt *compoundStmt );
100                virtual void visit( SwitchStmt *switchStmt );
[a08ba92]101          private:
[0dd3a2f]102                HoistStruct();
[c8ffe20b]103
[0dd3a2f]104                template< typename AggDecl > void handleAggregate( AggDecl *aggregateDecl );
[c8ffe20b]105
[c0aa336]106                std::list< Declaration * > declsToAdd, declsToAddAfter;
[0dd3a2f]107                bool inStruct;
[a08ba92]108        };
[c8ffe20b]109
[cce9429]110        /// Fix return types so that every function returns exactly one value
[d24d4e1]111        struct ReturnTypeFixer {
[cce9429]112                static void fix( std::list< Declaration * > &translationUnit );
113
[0db6fc0]114                void postvisit( FunctionDecl * functionDecl );
115                void postvisit( FunctionType * ftype );
[cce9429]116        };
117
[de91427b]118        /// Replaces enum types by int, and function or array types in function parameter and return lists by appropriate pointers.
[d24d4e1]119        struct EnumAndPointerDecay {
[06edda0]120                void previsit( EnumDecl *aggregateDecl );
121                void previsit( FunctionType *func );
[a08ba92]122        };
[82dd287]123
124        /// Associates forward declarations of aggregates with their definitions
[cce9429]125        class LinkReferenceToTypes final : public Indexer {
[0dd3a2f]126                typedef Indexer Parent;
[a08ba92]127          public:
[cce9429]128                LinkReferenceToTypes( bool doDebug, const Indexer *indexer );
[be9036d]129                using Parent::visit;
130                void visit( TypeInstType *typeInst ) final;
131
[c0aa336]132                void visit( EnumInstType *enumInst ) final;
[62e5546]133                void visit( StructInstType *structInst ) final;
134                void visit( UnionInstType *unionInst ) final;
[be9036d]135                void visit( TraitInstType *traitInst ) final;
136
[c0aa336]137                void visit( EnumDecl *enumDecl ) final;
[62e5546]138                void visit( StructDecl *structDecl ) final;
139                void visit( UnionDecl *unionDecl ) final;
[be9036d]140                void visit( TraitDecl * traitDecl ) final;
141
[06edda0]142          private:
[0dd3a2f]143                const Indexer *indexer;
[9cb8e88d]144
[c0aa336]145                typedef std::map< std::string, std::list< EnumInstType * > > ForwardEnumsType;
[0dd3a2f]146                typedef std::map< std::string, std::list< StructInstType * > > ForwardStructsType;
147                typedef std::map< std::string, std::list< UnionInstType * > > ForwardUnionsType;
[c0aa336]148                ForwardEnumsType forwardEnums;
[0dd3a2f]149                ForwardStructsType forwardStructs;
150                ForwardUnionsType forwardUnions;
[a08ba92]151        };
[c8ffe20b]152
[06edda0]153        /// Replaces array and function types in forall lists by appropriate pointer type and assigns each Object and Function declaration a unique ID.
154        class ForallPointerDecay final : public Indexer {
[0dd3a2f]155                typedef Indexer Parent;
[a08ba92]156          public:
[4a9ccc3]157                using Parent::visit;
[06edda0]158                ForallPointerDecay( const Indexer *indexer );
159
[4a9ccc3]160                virtual void visit( ObjectDecl *object ) override;
161                virtual void visit( FunctionDecl *func ) override;
[c8ffe20b]162
[0dd3a2f]163                const Indexer *indexer;
[a08ba92]164        };
[c8ffe20b]165
[d24d4e1]166        struct ReturnChecker : public WithGuards {
[de91427b]167                /// Checks that return statements return nothing if their return type is void
168                /// and return something if the return type is non-void.
169                static void checkFunctionReturns( std::list< Declaration * > & translationUnit );
170
[0db6fc0]171                void previsit( FunctionDecl * functionDecl );
172                void previsit( ReturnStmt * returnStmt );
[de91427b]173
[0db6fc0]174                typedef std::list< DeclarationWithType * > ReturnVals;
175                ReturnVals returnVals;
[de91427b]176        };
177
[a08ba92]178        class EliminateTypedef : public Mutator {
179          public:
[de91427b]180                EliminateTypedef() : scopeLevel( 0 ) {}
181                /// Replaces typedefs by forward declarations
[0dd3a2f]182                static void eliminateTypedef( std::list< Declaration * > &translationUnit );
[a08ba92]183          private:
[0dd3a2f]184                virtual Declaration *mutate( TypedefDecl *typeDecl );
185                virtual TypeDecl *mutate( TypeDecl *typeDecl );
186                virtual DeclarationWithType *mutate( FunctionDecl *funcDecl );
[1db21619]187                virtual DeclarationWithType *mutate( ObjectDecl *objDecl );
[0dd3a2f]188                virtual CompoundStmt *mutate( CompoundStmt *compoundStmt );
189                virtual Type *mutate( TypeInstType *aggregateUseType );
190                virtual Expression *mutate( CastExpr *castExpr );
[cc79d97]191
[85c4ef0]192                virtual Declaration *mutate( StructDecl * structDecl );
193                virtual Declaration *mutate( UnionDecl * unionDecl );
194                virtual Declaration *mutate( EnumDecl * enumDecl );
[4040425]195                virtual Declaration *mutate( TraitDecl * contextDecl );
[85c4ef0]196
197                template<typename AggDecl>
198                AggDecl *handleAggregate( AggDecl * aggDecl );
199
[45161b4d]200                template<typename AggDecl>
201                void addImplicitTypedef( AggDecl * aggDecl );
[70a06f6]202
[46f6134]203                typedef std::unique_ptr<TypedefDecl> TypedefDeclPtr;
[e491159]204                typedef ScopedMap< std::string, std::pair< TypedefDeclPtr, int > > TypedefMap;
[679864e1]205                typedef std::map< std::string, TypeDecl * > TypeDeclMap;
[cc79d97]206                TypedefMap typedefNames;
[679864e1]207                TypeDeclMap typedeclNames;
[cc79d97]208                int scopeLevel;
[a08ba92]209        };
[c8ffe20b]210
[d24d4e1]211        struct VerifyCtorDtorAssign {
[d1969a6]212                /// ensure that constructors, destructors, and assignment have at least one
213                /// parameter, the first of which must be a pointer, and that ctor/dtors have no
[9cb8e88d]214                /// return values.
215                static void verify( std::list< Declaration * > &translationUnit );
216
[0db6fc0]217                void previsit( FunctionDecl *funcDecl );
[5f98ce5]218        };
[70a06f6]219
[11ab8ea8]220        /// ensure that generic types have the correct number of type arguments
[d24d4e1]221        struct ValidateGenericParameters {
[0db6fc0]222                void previsit( StructInstType * inst );
223                void previsit( UnionInstType * inst );
[5f98ce5]224        };
[70a06f6]225
[d24d4e1]226        struct ArrayLength {
[fbd7ad6]227                /// for array types without an explicit length, compute the length and store it so that it
228                /// is known to the rest of the phases. For example,
229                ///   int x[] = { 1, 2, 3 };
230                ///   int y[][2] = { { 1, 2, 3 }, { 1, 2, 3 } };
231                /// here x and y are known at compile-time to have length 3, so change this into
232                ///   int x[3] = { 1, 2, 3 };
233                ///   int y[3][2] = { { 1, 2, 3 }, { 1, 2, 3 } };
234                static void computeLength( std::list< Declaration * > & translationUnit );
235
[0db6fc0]236                void previsit( ObjectDecl * objDecl );
[fbd7ad6]237        };
238
[d24d4e1]239        struct CompoundLiteral final : public WithDeclsToAdd, public WithVisitorRef<CompoundLiteral> {
[68fe077a]240                Type::StorageClasses storageClasses;
[630a82a]241
[d24d4e1]242                void premutate( ObjectDecl *objectDecl );
243                Expression * postmutate( CompoundLiteralExpr *compLitExpr );
[9cb8e88d]244        };
245
[5809461]246        struct LabelAddressFixer final : public WithGuards {
247                std::set< Label > labels;
248
249                void premutate( FunctionDecl * funcDecl );
250                Expression * postmutate( AddressExpr * addrExpr );
251        };
[4fbdfae0]252
253        FunctionDecl * dereferenceOperator = nullptr;
254        struct FindSpecialDeclarations final {
255                void previsit( FunctionDecl * funcDecl );
256        };
257
[a08ba92]258        void validate( std::list< Declaration * > &translationUnit, bool doDebug ) {
[06edda0]259                PassVisitor<EnumAndPointerDecay> epc;
[cce9429]260                LinkReferenceToTypes lrt( doDebug, 0 );
[06edda0]261                ForallPointerDecay fpd( 0 );
[d24d4e1]262                PassVisitor<CompoundLiteral> compoundliteral;
[0db6fc0]263                PassVisitor<ValidateGenericParameters> genericParams;
[4fbdfae0]264                PassVisitor<FindSpecialDeclarations> finder;
[5809461]265                PassVisitor<LabelAddressFixer> labelAddrFixer;
[630a82a]266
[fbcde64]267                EliminateTypedef::eliminateTypedef( translationUnit );
[11ab8ea8]268                HoistStruct::hoistStruct( translationUnit ); // must happen after EliminateTypedef, so that aggregate typedefs occur in the correct order
[cce9429]269                ReturnTypeFixer::fix( translationUnit ); // must happen before autogen
[861799c]270                acceptAll( translationUnit, lrt ); // must happen before autogen, because sized flag needs to propagate to generated functions
[11ab8ea8]271                acceptAll( translationUnit, genericParams );  // check as early as possible - can't happen before LinkReferenceToTypes
[ed8a0d2]272                acceptAll( translationUnit, epc ); // must happen before VerifyCtorDtorAssign, because void return objects should not exist
273                VerifyCtorDtorAssign::verify( translationUnit );  // must happen before autogen, because autogen examines existing ctor/dtors
[bcda04c]274                Concurrency::applyKeywords( translationUnit );
[06edda0]275                autogenerateRoutines( translationUnit ); // moved up, used to be below compoundLiteral - currently needs EnumAndPointerDecay
[bcda04c]276                Concurrency::implementMutexFuncs( translationUnit );
277                Concurrency::implementThreadStarter( translationUnit );
[de91427b]278                ReturnChecker::checkFunctionReturns( translationUnit );
[d24d4e1]279                mutateAll( translationUnit, compoundliteral );
[06edda0]280                acceptAll( translationUnit, fpd );
[fbd7ad6]281                ArrayLength::computeLength( translationUnit );
[4fbdfae0]282                acceptAll( translationUnit, finder );
[5809461]283                mutateAll( translationUnit, labelAddrFixer );
[a08ba92]284        }
[9cb8e88d]285
[a08ba92]286        void validateType( Type *type, const Indexer *indexer ) {
[06edda0]287                PassVisitor<EnumAndPointerDecay> epc;
[cce9429]288                LinkReferenceToTypes lrt( false, indexer );
[06edda0]289                ForallPointerDecay fpd( indexer );
[bda58ad]290                type->accept( epc );
[cce9429]291                type->accept( lrt );
[06edda0]292                type->accept( fpd );
[a08ba92]293        }
[c8ffe20b]294
[a08ba92]295        void HoistStruct::hoistStruct( std::list< Declaration * > &translationUnit ) {
[0dd3a2f]296                HoistStruct hoister;
[c0aa336]297                acceptAndAdd( translationUnit, hoister );
[a08ba92]298        }
[c8ffe20b]299
[a08ba92]300        HoistStruct::HoistStruct() : inStruct( false ) {
301        }
[c8ffe20b]302
[a08ba92]303        bool isStructOrUnion( Declaration *decl ) {
[0dd3a2f]304                return dynamic_cast< StructDecl * >( decl ) || dynamic_cast< UnionDecl * >( decl );
[a08ba92]305        }
[c0aa336]306
[a08ba92]307        template< typename AggDecl >
308        void HoistStruct::handleAggregate( AggDecl *aggregateDecl ) {
[0dd3a2f]309                if ( inStruct ) {
310                        // Add elements in stack order corresponding to nesting structure.
311                        declsToAdd.push_front( aggregateDecl );
312                        Visitor::visit( aggregateDecl );
313                } else {
314                        inStruct = true;
315                        Visitor::visit( aggregateDecl );
316                        inStruct = false;
317                } // if
318                // Always remove the hoisted aggregate from the inner structure.
319                filter( aggregateDecl->get_members(), isStructOrUnion, false );
[a08ba92]320        }
[c8ffe20b]321
[c0aa336]322        void HoistStruct::visit( EnumInstType *structInstType ) {
323                if ( structInstType->get_baseEnum() ) {
324                        declsToAdd.push_front( structInstType->get_baseEnum() );
325                }
326        }
327
328        void HoistStruct::visit( StructInstType *structInstType ) {
329                if ( structInstType->get_baseStruct() ) {
330                        declsToAdd.push_front( structInstType->get_baseStruct() );
331                }
332        }
333
334        void HoistStruct::visit( UnionInstType *structInstType ) {
335                if ( structInstType->get_baseUnion() ) {
336                        declsToAdd.push_front( structInstType->get_baseUnion() );
337                }
338        }
339
[a08ba92]340        void HoistStruct::visit( StructDecl *aggregateDecl ) {
[0dd3a2f]341                handleAggregate( aggregateDecl );
[a08ba92]342        }
[c8ffe20b]343
[a08ba92]344        void HoistStruct::visit( UnionDecl *aggregateDecl ) {
[0dd3a2f]345                handleAggregate( aggregateDecl );
[a08ba92]346        }
[c8ffe20b]347
[a08ba92]348        void HoistStruct::visit( CompoundStmt *compoundStmt ) {
[0dd3a2f]349                addVisit( compoundStmt, *this );
[a08ba92]350        }
[c8ffe20b]351
[a08ba92]352        void HoistStruct::visit( SwitchStmt *switchStmt ) {
[0dd3a2f]353                addVisit( switchStmt, *this );
[a08ba92]354        }
[c8ffe20b]355
[06edda0]356        void EnumAndPointerDecay::previsit( EnumDecl *enumDecl ) {
[0dd3a2f]357                // Set the type of each member of the enumeration to be EnumConstant
358                for ( std::list< Declaration * >::iterator i = enumDecl->get_members().begin(); i != enumDecl->get_members().end(); ++i ) {
[f6d7e0f]359                        ObjectDecl * obj = dynamic_cast< ObjectDecl * >( *i );
[0dd3a2f]360                        assert( obj );
[f2e40a9f]361                        obj->set_type( new EnumInstType( Type::Qualifiers( Type::Const ), enumDecl->get_name() ) );
[0dd3a2f]362                } // for
[a08ba92]363        }
[51b7345]364
[a08ba92]365        namespace {
[83de11e]366                template< typename DWTList >
367                void fixFunctionList( DWTList & dwts, FunctionType * func ) {
[0dd3a2f]368                        // the only case in which "void" is valid is where it is the only one in the list; then it should be removed
[06edda0]369                        // entirely. other fix ups are handled by the FixFunction class
[83de11e]370                        typedef typename DWTList::iterator DWTIterator;
371                        DWTIterator begin( dwts.begin() ), end( dwts.end() );
[0dd3a2f]372                        if ( begin == end ) return;
373                        FixFunction fixer;
374                        DWTIterator i = begin;
[83de11e]375                        *i = (*i)->acceptMutator( fixer );
[0dd3a2f]376                        if ( fixer.get_isVoid() ) {
377                                DWTIterator j = i;
378                                ++i;
[bda58ad]379                                delete *j;
[83de11e]380                                dwts.erase( j );
[9cb8e88d]381                                if ( i != end ) {
[0dd3a2f]382                                        throw SemanticError( "invalid type void in function type ", func );
383                                } // if
384                        } else {
385                                ++i;
386                                for ( ; i != end; ++i ) {
387                                        FixFunction fixer;
[06edda0]388                                        *i = (*i)->acceptMutator( fixer );
[0dd3a2f]389                                        if ( fixer.get_isVoid() ) {
390                                                throw SemanticError( "invalid type void in function type ", func );
391                                        } // if
392                                } // for
393                        } // if
394                }
[a08ba92]395        }
[c8ffe20b]396
[06edda0]397        void EnumAndPointerDecay::previsit( FunctionType *func ) {
[0dd3a2f]398                // Fix up parameters and return types
[83de11e]399                fixFunctionList( func->get_parameters(), func );
400                fixFunctionList( func->get_returnVals(), func );
[a08ba92]401        }
[c8ffe20b]402
[cce9429]403        LinkReferenceToTypes::LinkReferenceToTypes( bool doDebug, const Indexer *other_indexer ) : Indexer( doDebug ) {
[0dd3a2f]404                if ( other_indexer ) {
405                        indexer = other_indexer;
406                } else {
407                        indexer = this;
408                } // if
[a08ba92]409        }
[c8ffe20b]410
[c0aa336]411        void LinkReferenceToTypes::visit( EnumInstType *enumInst ) {
412                Parent::visit( enumInst );
413                EnumDecl *st = indexer->lookupEnum( enumInst->get_name() );
414                // it's not a semantic error if the enum is not found, just an implicit forward declaration
415                if ( st ) {
416                        //assert( ! enumInst->get_baseEnum() || enumInst->get_baseEnum()->get_members().empty() || ! st->get_members().empty() );
417                        enumInst->set_baseEnum( st );
418                } // if
419                if ( ! st || st->get_members().empty() ) {
420                        // use of forward declaration
421                        forwardEnums[ enumInst->get_name() ].push_back( enumInst );
422                } // if
423        }
424
[cce9429]425        void LinkReferenceToTypes::visit( StructInstType *structInst ) {
[0dd3a2f]426                Parent::visit( structInst );
427                StructDecl *st = indexer->lookupStruct( structInst->get_name() );
428                // it's not a semantic error if the struct is not found, just an implicit forward declaration
429                if ( st ) {
[98735ef]430                        //assert( ! structInst->get_baseStruct() || structInst->get_baseStruct()->get_members().empty() || ! st->get_members().empty() );
[0dd3a2f]431                        structInst->set_baseStruct( st );
432                } // if
433                if ( ! st || st->get_members().empty() ) {
434                        // use of forward declaration
435                        forwardStructs[ structInst->get_name() ].push_back( structInst );
436                } // if
[a08ba92]437        }
[c8ffe20b]438
[cce9429]439        void LinkReferenceToTypes::visit( UnionInstType *unionInst ) {
[0dd3a2f]440                Parent::visit( unionInst );
441                UnionDecl *un = indexer->lookupUnion( unionInst->get_name() );
442                // it's not a semantic error if the union is not found, just an implicit forward declaration
443                if ( un ) {
444                        unionInst->set_baseUnion( un );
445                } // if
446                if ( ! un || un->get_members().empty() ) {
447                        // use of forward declaration
448                        forwardUnions[ unionInst->get_name() ].push_back( unionInst );
449                } // if
[a08ba92]450        }
[c8ffe20b]451
[be9036d]452        template< typename Decl >
453        void normalizeAssertions( std::list< Decl * > & assertions ) {
454                // ensure no duplicate trait members after the clone
455                auto pred = [](Decl * d1, Decl * d2) {
456                        // only care if they're equal
457                        DeclarationWithType * dwt1 = dynamic_cast<DeclarationWithType *>( d1 );
458                        DeclarationWithType * dwt2 = dynamic_cast<DeclarationWithType *>( d2 );
459                        if ( dwt1 && dwt2 ) {
460                                if ( dwt1->get_name() == dwt2->get_name() && ResolvExpr::typesCompatible( dwt1->get_type(), dwt2->get_type(), SymTab::Indexer() ) ) {
461                                        // std::cerr << "=========== equal:" << std::endl;
462                                        // std::cerr << "d1: " << d1 << std::endl;
463                                        // std::cerr << "d2: " << d2 << std::endl;
464                                        return false;
465                                }
[2c57025]466                        }
[be9036d]467                        return d1 < d2;
468                };
469                std::set<Decl *, decltype(pred)> unique_members( assertions.begin(), assertions.end(), pred );
470                // if ( unique_members.size() != assertions.size() ) {
471                //      std::cerr << "============different" << std::endl;
472                //      std::cerr << unique_members.size() << " " << assertions.size() << std::endl;
473                // }
474
475                std::list< Decl * > order;
476                order.splice( order.end(), assertions );
477                std::copy_if( order.begin(), order.end(), back_inserter( assertions ), [&]( Decl * decl ) {
478                        return unique_members.count( decl );
479                });
480        }
481
482        // expand assertions from trait instance, performing the appropriate type variable substitutions
483        template< typename Iterator >
484        void expandAssertions( TraitInstType * inst, Iterator out ) {
485                assertf( inst->baseTrait, "Trait instance not linked to base trait: %s", toString( inst ).c_str() );
486                std::list< DeclarationWithType * > asserts;
487                for ( Declaration * decl : inst->baseTrait->members ) {
488                        asserts.push_back( safe_dynamic_cast<DeclarationWithType *>( decl->clone() ) );
[2c57025]489                }
[be9036d]490                // substitute trait decl parameters for instance parameters
491                applySubstitution( inst->baseTrait->parameters.begin(), inst->baseTrait->parameters.end(), inst->parameters.begin(), asserts.begin(), asserts.end(), out );
492        }
493
494        void LinkReferenceToTypes::visit( TraitDecl * traitDecl ) {
495                Parent::visit( traitDecl );
496
497                if ( traitDecl->name == "sized" ) {
498                        // "sized" is a special trait - flick the sized status on for the type variable
499                        assertf( traitDecl->parameters.size() == 1, "Built-in trait 'sized' has incorrect number of parameters: %zd", traitDecl->parameters.size() );
500                        TypeDecl * td = traitDecl->parameters.front();
501                        td->set_sized( true );
502                }
503
504                // move assertions from type parameters into the body of the trait
505                for ( TypeDecl * td : traitDecl->parameters ) {
506                        for ( DeclarationWithType * assert : td->assertions ) {
507                                if ( TraitInstType * inst = dynamic_cast< TraitInstType * >( assert->get_type() ) ) {
508                                        expandAssertions( inst, back_inserter( traitDecl->members ) );
509                                } else {
510                                        traitDecl->members.push_back( assert->clone() );
511                                }
512                        }
513                        deleteAll( td->assertions );
514                        td->assertions.clear();
515                } // for
516        }
[2ae171d8]517
[be9036d]518        void LinkReferenceToTypes::visit( TraitInstType * traitInst ) {
519                Parent::visit( traitInst );
[2ae171d8]520                // handle other traits
[be9036d]521                TraitDecl *traitDecl = indexer->lookupTrait( traitInst->name );
[4a9ccc3]522                if ( ! traitDecl ) {
[be9036d]523                        throw SemanticError( "use of undeclared trait " + traitInst->name );
[17cd4eb]524                } // if
[4a9ccc3]525                if ( traitDecl->get_parameters().size() != traitInst->get_parameters().size() ) {
526                        throw SemanticError( "incorrect number of trait parameters: ", traitInst );
527                } // if
[be9036d]528                traitInst->baseTrait = traitDecl;
[79970ed]529
[4a9ccc3]530                // need to carry over the 'sized' status of each decl in the instance
531                for ( auto p : group_iterate( traitDecl->get_parameters(), traitInst->get_parameters() ) ) {
532                        TypeExpr * expr = safe_dynamic_cast< TypeExpr * >( std::get<1>(p) );
533                        if ( TypeInstType * inst = dynamic_cast< TypeInstType * >( expr->get_type() ) ) {
534                                TypeDecl * formalDecl = std::get<0>(p);
535                                TypeDecl * instDecl = inst->get_baseType();
536                                if ( formalDecl->get_sized() ) instDecl->set_sized( true );
537                        }
538                }
[be9036d]539                // normalizeAssertions( traitInst->members );
[a08ba92]540        }
[c8ffe20b]541
[c0aa336]542        void LinkReferenceToTypes::visit( EnumDecl *enumDecl ) {
543                // visit enum members first so that the types of self-referencing members are updated properly
544                Parent::visit( enumDecl );
545                if ( ! enumDecl->get_members().empty() ) {
546                        ForwardEnumsType::iterator fwds = forwardEnums.find( enumDecl->get_name() );
547                        if ( fwds != forwardEnums.end() ) {
548                                for ( std::list< EnumInstType * >::iterator inst = fwds->second.begin(); inst != fwds->second.end(); ++inst ) {
549                                        (*inst )->set_baseEnum( enumDecl );
550                                } // for
551                                forwardEnums.erase( fwds );
552                        } // if
553                } // if
554        }
555
[cce9429]556        void LinkReferenceToTypes::visit( StructDecl *structDecl ) {
[677c1be]557                // visit struct members first so that the types of self-referencing members are updated properly
[67cf18c]558                // xxx - need to ensure that type parameters match up between forward declarations and definition (most importantly, number of type parameters and and their defaults)
[677c1be]559                Parent::visit( structDecl );
[0dd3a2f]560                if ( ! structDecl->get_members().empty() ) {
561                        ForwardStructsType::iterator fwds = forwardStructs.find( structDecl->get_name() );
562                        if ( fwds != forwardStructs.end() ) {
563                                for ( std::list< StructInstType * >::iterator inst = fwds->second.begin(); inst != fwds->second.end(); ++inst ) {
564                                        (*inst )->set_baseStruct( structDecl );
565                                } // for
566                                forwardStructs.erase( fwds );
567                        } // if
568                } // if
[a08ba92]569        }
[c8ffe20b]570
[cce9429]571        void LinkReferenceToTypes::visit( UnionDecl *unionDecl ) {
[677c1be]572                Parent::visit( unionDecl );
[0dd3a2f]573                if ( ! unionDecl->get_members().empty() ) {
574                        ForwardUnionsType::iterator fwds = forwardUnions.find( unionDecl->get_name() );
575                        if ( fwds != forwardUnions.end() ) {
576                                for ( std::list< UnionInstType * >::iterator inst = fwds->second.begin(); inst != fwds->second.end(); ++inst ) {
577                                        (*inst )->set_baseUnion( unionDecl );
578                                } // for
579                                forwardUnions.erase( fwds );
580                        } // if
581                } // if
[a08ba92]582        }
[c8ffe20b]583
[cce9429]584        void LinkReferenceToTypes::visit( TypeInstType *typeInst ) {
[0dd3a2f]585                if ( NamedTypeDecl *namedTypeDecl = lookupType( typeInst->get_name() ) ) {
586                        if ( TypeDecl *typeDecl = dynamic_cast< TypeDecl * >( namedTypeDecl ) ) {
587                                typeInst->set_isFtype( typeDecl->get_kind() == TypeDecl::Ftype );
588                        } // if
589                } // if
[a08ba92]590        }
[c8ffe20b]591
[06edda0]592        ForallPointerDecay::ForallPointerDecay( const Indexer *other_indexer ) :  Indexer( false ) {
[0dd3a2f]593                if ( other_indexer ) {
594                        indexer = other_indexer;
595                } else {
596                        indexer = this;
597                } // if
[a08ba92]598        }
[c8ffe20b]599
[4a9ccc3]600        /// Fix up assertions - flattens assertion lists, removing all trait instances
601        void forallFixer( Type * func ) {
602                for ( TypeDecl * type : func->get_forall() ) {
[be9036d]603                        std::list< DeclarationWithType * > asserts;
604                        asserts.splice( asserts.end(), type->assertions );
605                        // expand trait instances into their members
606                        for ( DeclarationWithType * assertion : asserts ) {
607                                if ( TraitInstType *traitInst = dynamic_cast< TraitInstType * >( assertion->get_type() ) ) {
608                                        // expand trait instance into all of its members
609                                        expandAssertions( traitInst, back_inserter( type->assertions ) );
610                                        delete traitInst;
611                                } else {
612                                        // pass other assertions through
613                                        type->assertions.push_back( assertion );
614                                } // if
615                        } // for
616                        // apply FixFunction to every assertion to check for invalid void type
617                        for ( DeclarationWithType *& assertion : type->assertions ) {
618                                FixFunction fixer;
619                                assertion = assertion->acceptMutator( fixer );
620                                if ( fixer.get_isVoid() ) {
621                                        throw SemanticError( "invalid type void in assertion of function ", func );
622                                } // if
623                        } // for
624                        // normalizeAssertions( type->assertions );
[0dd3a2f]625                } // for
[a08ba92]626        }
[c8ffe20b]627
[06edda0]628        void ForallPointerDecay::visit( ObjectDecl *object ) {
[0dd3a2f]629                forallFixer( object->get_type() );
630                if ( PointerType *pointer = dynamic_cast< PointerType * >( object->get_type() ) ) {
631                        forallFixer( pointer->get_base() );
632                } // if
633                Parent::visit( object );
634                object->fixUniqueId();
[a08ba92]635        }
[c8ffe20b]636
[06edda0]637        void ForallPointerDecay::visit( FunctionDecl *func ) {
[0dd3a2f]638                forallFixer( func->get_type() );
639                Parent::visit( func );
640                func->fixUniqueId();
[a08ba92]641        }
[c8ffe20b]642
[de91427b]643        void ReturnChecker::checkFunctionReturns( std::list< Declaration * > & translationUnit ) {
[0db6fc0]644                PassVisitor<ReturnChecker> checker;
[de91427b]645                acceptAll( translationUnit, checker );
646        }
647
[0db6fc0]648        void ReturnChecker::previsit( FunctionDecl * functionDecl ) {
[0508ab3]649                GuardValue( returnVals );
[de91427b]650                returnVals = functionDecl->get_functionType()->get_returnVals();
651        }
652
[0db6fc0]653        void ReturnChecker::previsit( ReturnStmt * returnStmt ) {
[74d1804]654                // Previously this also checked for the existence of an expr paired with no return values on
655                // the  function return type. This is incorrect, since you can have an expression attached to
656                // a return statement in a void-returning function in C. The expression is treated as if it
657                // were cast to void.
[30f9072]658                if ( ! returnStmt->get_expr() && returnVals.size() != 0 ) {
[de91427b]659                        throw SemanticError( "Non-void function returns no values: " , returnStmt );
660                }
661        }
662
663
[a08ba92]664        bool isTypedef( Declaration *decl ) {
[0dd3a2f]665                return dynamic_cast< TypedefDecl * >( decl );
[a08ba92]666        }
[c8ffe20b]667
[a08ba92]668        void EliminateTypedef::eliminateTypedef( std::list< Declaration * > &translationUnit ) {
[0dd3a2f]669                EliminateTypedef eliminator;
670                mutateAll( translationUnit, eliminator );
[5f98ce5]671                if ( eliminator.typedefNames.count( "size_t" ) ) {
672                        // grab and remember declaration of size_t
673                        SizeType = eliminator.typedefNames["size_t"].first->get_base()->clone();
674                } else {
[40e636a]675                        // xxx - missing global typedef for size_t - default to long unsigned int, even though that may be wrong
676                        // eventually should have a warning for this case.
677                        SizeType = new BasicType( Type::Qualifiers(), BasicType::LongUnsignedInt );
[5f98ce5]678                }
[0dd3a2f]679                filter( translationUnit, isTypedef, true );
[5f98ce5]680
[a08ba92]681        }
[c8ffe20b]682
[85c4ef0]683        Type *EliminateTypedef::mutate( TypeInstType * typeInst ) {
[9cb8e88d]684                // instances of typedef types will come here. If it is an instance
[cc79d97]685                // of a typdef type, link the instance to its actual type.
686                TypedefMap::const_iterator def = typedefNames.find( typeInst->get_name() );
[0dd3a2f]687                if ( def != typedefNames.end() ) {
[cc79d97]688                        Type *ret = def->second.first->get_base()->clone();
[6f95000]689                        ret->get_qualifiers() |= typeInst->get_qualifiers();
[0215a76f]690                        // place instance parameters on the typedef'd type
691                        if ( ! typeInst->get_parameters().empty() ) {
692                                ReferenceToType *rtt = dynamic_cast<ReferenceToType*>(ret);
693                                if ( ! rtt ) {
694                                        throw SemanticError("cannot apply type parameters to base type of " + typeInst->get_name());
695                                }
696                                rtt->get_parameters().clear();
[b644d6f]697                                cloneAll( typeInst->get_parameters(), rtt->get_parameters() );
698                                mutateAll( rtt->get_parameters(), *this );  // recursively fix typedefs on parameters
[1db21619]699                        } // if
[0dd3a2f]700                        delete typeInst;
701                        return ret;
[679864e1]702                } else {
703                        TypeDeclMap::const_iterator base = typedeclNames.find( typeInst->get_name() );
[b128d3e]704                        assertf( base != typedeclNames.end(), "Cannot find typedecl name %s", typeInst->get_name().c_str() );
[1e8b02f5]705                        typeInst->set_baseType( base->second );
[0dd3a2f]706                } // if
707                return typeInst;
[a08ba92]708        }
[c8ffe20b]709
[85c4ef0]710        Declaration *EliminateTypedef::mutate( TypedefDecl * tyDecl ) {
[0dd3a2f]711                Declaration *ret = Mutator::mutate( tyDecl );
[5f98ce5]712
[cc79d97]713                if ( typedefNames.count( tyDecl->get_name() ) == 1 && typedefNames[ tyDecl->get_name() ].second == scopeLevel ) {
[9cb8e88d]714                        // typedef to the same name from the same scope
[cc79d97]715                        // must be from the same type
716
717                        Type * t1 = tyDecl->get_base();
718                        Type * t2 = typedefNames[ tyDecl->get_name() ].first->get_base();
[1cbca6e]719                        if ( ! ResolvExpr::typesCompatible( t1, t2, Indexer() ) ) {
[cc79d97]720                                throw SemanticError( "cannot redefine typedef: " + tyDecl->get_name() );
[85c4ef0]721                        }
[cc79d97]722                } else {
[46f6134]723                        typedefNames[ tyDecl->get_name() ] = std::make_pair( TypedefDeclPtr( tyDecl ), scopeLevel );
[cc79d97]724                } // if
725
[0dd3a2f]726                // When a typedef is a forward declaration:
727                //    typedef struct screen SCREEN;
728                // the declaration portion must be retained:
729                //    struct screen;
730                // because the expansion of the typedef is:
731                //    void rtn( SCREEN *p ) => void rtn( struct screen *p )
732                // hence the type-name "screen" must be defined.
733                // Note, qualifiers on the typedef are superfluous for the forward declaration.
[6f95000]734
735                Type *designatorType = tyDecl->get_base()->stripDeclarator();
736                if ( StructInstType *aggDecl = dynamic_cast< StructInstType * >( designatorType ) ) {
[cbce272]737                        return new StructDecl( aggDecl->get_name(), DeclarationNode::Struct, noAttributes, tyDecl->get_linkage() );
[6f95000]738                } else if ( UnionInstType *aggDecl = dynamic_cast< UnionInstType * >( designatorType ) ) {
[cbce272]739                        return new UnionDecl( aggDecl->get_name(), noAttributes, tyDecl->get_linkage() );
[6f95000]740                } else if ( EnumInstType *enumDecl = dynamic_cast< EnumInstType * >( designatorType ) ) {
[cbce272]741                        return new EnumDecl( enumDecl->get_name(), noAttributes, tyDecl->get_linkage() );
[0dd3a2f]742                } else {
[46f6134]743                        return ret->clone();
[0dd3a2f]744                } // if
[a08ba92]745        }
[c8ffe20b]746
[85c4ef0]747        TypeDecl *EliminateTypedef::mutate( TypeDecl * typeDecl ) {
[cc79d97]748                TypedefMap::iterator i = typedefNames.find( typeDecl->get_name() );
[0dd3a2f]749                if ( i != typedefNames.end() ) {
750                        typedefNames.erase( i ) ;
751                } // if
[679864e1]752
753                typedeclNames[ typeDecl->get_name() ] = typeDecl;
[2c57025]754                return Mutator::mutate( typeDecl );
[a08ba92]755        }
[c8ffe20b]756
[85c4ef0]757        DeclarationWithType *EliminateTypedef::mutate( FunctionDecl * funcDecl ) {
[46f6134]758                typedefNames.beginScope();
[0dd3a2f]759                DeclarationWithType *ret = Mutator::mutate( funcDecl );
[46f6134]760                typedefNames.endScope();
[0dd3a2f]761                return ret;
[a08ba92]762        }
[c8ffe20b]763
[1db21619]764        DeclarationWithType *EliminateTypedef::mutate( ObjectDecl * objDecl ) {
[46f6134]765                typedefNames.beginScope();
[1db21619]766                DeclarationWithType *ret = Mutator::mutate( objDecl );
[46f6134]767                typedefNames.endScope();
[dd020c0]768
769                if ( FunctionType *funtype = dynamic_cast<FunctionType *>( ret->get_type() ) ) { // function type?
[02e5ab6]770                        // replace the current object declaration with a function declaration
[a7c90d4]771                        FunctionDecl * newDecl = new FunctionDecl( ret->get_name(), ret->get_storageClasses(), ret->get_linkage(), funtype, 0, objDecl->get_attributes(), ret->get_funcSpec() );
[0a86a30]772                        objDecl->get_attributes().clear();
[dbe8f244]773                        objDecl->set_type( nullptr );
[0a86a30]774                        delete objDecl;
775                        return newDecl;
[1db21619]776                } // if
[0dd3a2f]777                return ret;
[a08ba92]778        }
[c8ffe20b]779
[85c4ef0]780        Expression *EliminateTypedef::mutate( CastExpr * castExpr ) {
[46f6134]781                typedefNames.beginScope();
[0dd3a2f]782                Expression *ret = Mutator::mutate( castExpr );
[46f6134]783                typedefNames.endScope();
[0dd3a2f]784                return ret;
[a08ba92]785        }
[c8ffe20b]786
[85c4ef0]787        CompoundStmt *EliminateTypedef::mutate( CompoundStmt * compoundStmt ) {
[46f6134]788                typedefNames.beginScope();
[cc79d97]789                scopeLevel += 1;
[0dd3a2f]790                CompoundStmt *ret = Mutator::mutate( compoundStmt );
[cc79d97]791                scopeLevel -= 1;
[2bf9c37]792                // remove and delete decl stmts
793                filter( compoundStmt->kids, [](Statement * stmt) {
794                        if ( DeclStmt *declStmt = dynamic_cast< DeclStmt * >( stmt ) ) {
[0dd3a2f]795                                if ( dynamic_cast< TypedefDecl * >( declStmt->get_decl() ) ) {
[2bf9c37]796                                        return true;
[0dd3a2f]797                                } // if
798                        } // if
[2bf9c37]799                        return false;
800                }, true);
[46f6134]801                typedefNames.endScope();
[0dd3a2f]802                return ret;
[a08ba92]803        }
[85c4ef0]804
[43c89a7]805        // there may be typedefs nested within aggregates. in order for everything to work properly, these should be removed
[45161b4d]806        // as well
[85c4ef0]807        template<typename AggDecl>
808        AggDecl *EliminateTypedef::handleAggregate( AggDecl * aggDecl ) {
[2bf9c37]809                filter( aggDecl->members, isTypedef, true );
[85c4ef0]810                return aggDecl;
811        }
812
[45161b4d]813        template<typename AggDecl>
814        void EliminateTypedef::addImplicitTypedef( AggDecl * aggDecl ) {
815                if ( typedefNames.count( aggDecl->get_name() ) == 0 ) {
[62e5546]816                        Type *type = nullptr;
[45161b4d]817                        if ( StructDecl * newDeclStructDecl = dynamic_cast< StructDecl * >( aggDecl ) ) {
818                                type = new StructInstType( Type::Qualifiers(), newDeclStructDecl->get_name() );
819                        } else if ( UnionDecl * newDeclUnionDecl = dynamic_cast< UnionDecl * >( aggDecl ) ) {
820                                type = new UnionInstType( Type::Qualifiers(), newDeclUnionDecl->get_name() );
821                        } else if ( EnumDecl * newDeclEnumDecl = dynamic_cast< EnumDecl * >( aggDecl )  ) {
822                                type = new EnumInstType( Type::Qualifiers(), newDeclEnumDecl->get_name() );
823                        } // if
[cbce272]824                        TypedefDeclPtr tyDecl( new TypedefDecl( aggDecl->get_name(), Type::StorageClasses(), type, aggDecl->get_linkage() ) );
[46f6134]825                        typedefNames[ aggDecl->get_name() ] = std::make_pair( std::move( tyDecl ), scopeLevel );
[45161b4d]826                } // if
827        }
[4e06c1e]828
[85c4ef0]829        Declaration *EliminateTypedef::mutate( StructDecl * structDecl ) {
[45161b4d]830                addImplicitTypedef( structDecl );
[85c4ef0]831                Mutator::mutate( structDecl );
832                return handleAggregate( structDecl );
833        }
834
835        Declaration *EliminateTypedef::mutate( UnionDecl * unionDecl ) {
[45161b4d]836                addImplicitTypedef( unionDecl );
[85c4ef0]837                Mutator::mutate( unionDecl );
838                return handleAggregate( unionDecl );
839        }
840
841        Declaration *EliminateTypedef::mutate( EnumDecl * enumDecl ) {
[45161b4d]842                addImplicitTypedef( enumDecl );
[85c4ef0]843                Mutator::mutate( enumDecl );
844                return handleAggregate( enumDecl );
845        }
846
[45161b4d]847        Declaration *EliminateTypedef::mutate( TraitDecl * contextDecl ) {
[85c4ef0]848                Mutator::mutate( contextDecl );
849                return handleAggregate( contextDecl );
850        }
851
[d1969a6]852        void VerifyCtorDtorAssign::verify( std::list< Declaration * > & translationUnit ) {
[0db6fc0]853                PassVisitor<VerifyCtorDtorAssign> verifier;
[9cb8e88d]854                acceptAll( translationUnit, verifier );
855        }
856
[0db6fc0]857        void VerifyCtorDtorAssign::previsit( FunctionDecl * funcDecl ) {
[9cb8e88d]858                FunctionType * funcType = funcDecl->get_functionType();
859                std::list< DeclarationWithType * > &returnVals = funcType->get_returnVals();
860                std::list< DeclarationWithType * > &params = funcType->get_parameters();
861
[bff227f]862                if ( CodeGen::isCtorDtorAssign( funcDecl->get_name() ) ) { // TODO: also check /=, etc.
[9cb8e88d]863                        if ( params.size() == 0 ) {
[d1969a6]864                                throw SemanticError( "Constructors, destructors, and assignment functions require at least one parameter ", funcDecl );
[9cb8e88d]865                        }
[ce8c12f]866                        ReferenceType * refType = dynamic_cast< ReferenceType * >( params.front()->get_type() );
[084fecc]867                        if ( ! refType ) {
868                                throw SemanticError( "First parameter of a constructor, destructor, or assignment function must be a reference ", funcDecl );
[9cb8e88d]869                        }
[bff227f]870                        if ( CodeGen::isCtorDtor( funcDecl->get_name() ) && returnVals.size() != 0 ) {
[9cb8e88d]871                                throw SemanticError( "Constructors and destructors cannot have explicit return values ", funcDecl );
872                        }
873                }
874        }
[70a06f6]875
[11ab8ea8]876        template< typename Aggr >
877        void validateGeneric( Aggr * inst ) {
878                std::list< TypeDecl * > * params = inst->get_baseParameters();
[30f9072]879                if ( params ) {
[11ab8ea8]880                        std::list< Expression * > & args = inst->get_parameters();
[67cf18c]881
882                        // insert defaults arguments when a type argument is missing (currently only supports missing arguments at the end of the list).
883                        // A substitution is used to ensure that defaults are replaced correctly, e.g.,
884                        //   forall(otype T, otype alloc = heap_allocator(T)) struct vector;
885                        //   vector(int) v;
886                        // after insertion of default values becomes
887                        //   vector(int, heap_allocator(T))
888                        // and the substitution is built with T=int so that after substitution, the result is
889                        //   vector(int, heap_allocator(int))
890                        TypeSubstitution sub;
891                        auto paramIter = params->begin();
892                        for ( size_t i = 0; paramIter != params->end(); ++paramIter, ++i ) {
893                                if ( i < args.size() ) {
894                                        TypeExpr * expr = safe_dynamic_cast< TypeExpr * >( *std::next( args.begin(), i ) );
895                                        sub.add( (*paramIter)->get_name(), expr->get_type()->clone() );
896                                } else if ( i == args.size() ) {
897                                        Type * defaultType = (*paramIter)->get_init();
898                                        if ( defaultType ) {
899                                                args.push_back( new TypeExpr( defaultType->clone() ) );
900                                                sub.add( (*paramIter)->get_name(), defaultType->clone() );
901                                        }
902                                }
903                        }
904
905                        sub.apply( inst );
[11ab8ea8]906                        if ( args.size() < params->size() ) throw SemanticError( "Too few type arguments in generic type ", inst );
907                        if ( args.size() > params->size() ) throw SemanticError( "Too many type arguments in generic type ", inst );
908                }
909        }
910
[0db6fc0]911        void ValidateGenericParameters::previsit( StructInstType * inst ) {
[11ab8ea8]912                validateGeneric( inst );
913        }
[9cb8e88d]914
[0db6fc0]915        void ValidateGenericParameters::previsit( UnionInstType * inst ) {
[11ab8ea8]916                validateGeneric( inst );
[9cb8e88d]917        }
[70a06f6]918
[d24d4e1]919        void CompoundLiteral::premutate( ObjectDecl *objectDecl ) {
[a7c90d4]920                storageClasses = objectDecl->get_storageClasses();
[630a82a]921        }
922
[d24d4e1]923        Expression *CompoundLiteral::postmutate( CompoundLiteralExpr *compLitExpr ) {
[630a82a]924                // transform [storage_class] ... (struct S){ 3, ... };
925                // into [storage_class] struct S temp =  { 3, ... };
926                static UniqueName indexName( "_compLit" );
927
[d24d4e1]928                ObjectDecl *tempvar = new ObjectDecl( indexName.newName(), storageClasses, LinkageSpec::C, nullptr, compLitExpr->get_result(), compLitExpr->get_initializer() );
929                compLitExpr->set_result( nullptr );
930                compLitExpr->set_initializer( nullptr );
[630a82a]931                delete compLitExpr;
[d24d4e1]932                declsToAddBefore.push_back( tempvar );                                  // add modified temporary to current block
933                return new VariableExpr( tempvar );
[630a82a]934        }
[cce9429]935
936        void ReturnTypeFixer::fix( std::list< Declaration * > &translationUnit ) {
[0db6fc0]937                PassVisitor<ReturnTypeFixer> fixer;
[cce9429]938                acceptAll( translationUnit, fixer );
939        }
940
[0db6fc0]941        void ReturnTypeFixer::postvisit( FunctionDecl * functionDecl ) {
[9facf3b]942                FunctionType * ftype = functionDecl->get_functionType();
943                std::list< DeclarationWithType * > & retVals = ftype->get_returnVals();
[56e49b0]944                assertf( retVals.size() == 0 || retVals.size() == 1, "Function %s has too many return values: %zu", functionDecl->get_name().c_str(), retVals.size() );
[9facf3b]945                if ( retVals.size() == 1 ) {
[861799c]946                        // ensure all function return values have a name - use the name of the function to disambiguate (this also provides a nice bit of help for debugging).
947                        // ensure other return values have a name.
[9facf3b]948                        DeclarationWithType * ret = retVals.front();
949                        if ( ret->get_name() == "" ) {
950                                ret->set_name( toString( "_retval_", CodeGen::genName( functionDecl ) ) );
951                        }
[c6d2e93]952                        ret->get_attributes().push_back( new Attribute( "unused" ) );
[9facf3b]953                }
954        }
[cce9429]955
[0db6fc0]956        void ReturnTypeFixer::postvisit( FunctionType * ftype ) {
[cce9429]957                // xxx - need to handle named return values - this information needs to be saved somehow
958                // so that resolution has access to the names.
959                // Note that this pass needs to happen early so that other passes which look for tuple types
960                // find them in all of the right places, including function return types.
961                std::list< DeclarationWithType * > & retVals = ftype->get_returnVals();
962                if ( retVals.size() > 1 ) {
963                        // generate a single return parameter which is the tuple of all of the return values
964                        TupleType * tupleType = safe_dynamic_cast< TupleType * >( ResolvExpr::extractResultType( ftype ) );
965                        // ensure return value is not destructed by explicitly creating an empty ListInit node wherein maybeConstruct is false.
[68fe077a]966                        ObjectDecl * newRet = new ObjectDecl( "", Type::StorageClasses(), LinkageSpec::Cforall, 0, tupleType, new ListInit( std::list<Initializer*>(), noDesignators, false ) );
[cce9429]967                        deleteAll( retVals );
968                        retVals.clear();
969                        retVals.push_back( newRet );
970                }
971        }
[fbd7ad6]972
973        void ArrayLength::computeLength( std::list< Declaration * > & translationUnit ) {
[0db6fc0]974                PassVisitor<ArrayLength> len;
[fbd7ad6]975                acceptAll( translationUnit, len );
976        }
977
[0db6fc0]978        void ArrayLength::previsit( ObjectDecl * objDecl ) {
[fbd7ad6]979                if ( ArrayType * at = dynamic_cast< ArrayType * >( objDecl->get_type() ) ) {
[30f9072]980                        if ( at->get_dimension() ) return;
[fbd7ad6]981                        if ( ListInit * init = dynamic_cast< ListInit * >( objDecl->get_init() ) ) {
982                                at->set_dimension( new ConstantExpr( Constant::from_ulong( init->get_initializers().size() ) ) );
983                        }
984                }
985        }
[4fbdfae0]986
[5809461]987        struct LabelFinder {
988                std::set< Label > & labels;
989                LabelFinder( std::set< Label > & labels ) : labels( labels ) {}
990                void previsit( Statement * stmt ) {
991                        for ( Label & l : stmt->labels ) {
992                                labels.insert( l );
993                        }
994                }
995        };
996
997        void LabelAddressFixer::premutate( FunctionDecl * funcDecl ) {
998                GuardValue( labels );
999                PassVisitor<LabelFinder> finder( labels );
1000                funcDecl->accept( finder );
1001        }
1002
1003        Expression * LabelAddressFixer::postmutate( AddressExpr * addrExpr ) {
1004                // convert &&label into label address
1005                if ( AddressExpr * inner = dynamic_cast< AddressExpr * >( addrExpr->arg ) ) {
1006                        if ( NameExpr * nameExpr = dynamic_cast< NameExpr * >( inner->arg ) ) {
1007                                if ( labels.count( nameExpr->name ) ) {
1008                                        Label name = nameExpr->name;
1009                                        delete addrExpr;
1010                                        return new LabelAddressExpr( name );
1011                                }
1012                        }
1013                }
1014                return addrExpr;
1015        }
1016
[4fbdfae0]1017        void FindSpecialDeclarations::previsit( FunctionDecl * funcDecl ) {
1018                if ( ! dereferenceOperator ) {
1019                        if ( funcDecl->get_name() == "*?" && funcDecl->get_linkage() == LinkageSpec::Intrinsic ) {
1020                                FunctionType * ftype = funcDecl->get_functionType();
1021                                if ( ftype->get_parameters().size() == 1 && ftype->get_parameters().front()->get_type()->get_qualifiers() == Type::Qualifiers() ) {
1022                                        dereferenceOperator = funcDecl;
1023                                }
1024                        }
1025                }
1026        }
[51b7345]1027} // namespace SymTab
[0dd3a2f]1028
1029// Local Variables: //
1030// tab-width: 4 //
1031// mode: c++ //
1032// compile-command: "make install" //
1033// End: //
Note: See TracBrowser for help on using the repository browser.