source: src/SymTab/Indexer.cc @ 3f27b9a

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 3f27b9a was 3f27b9a, checked in by Aaron Moss <a3moss@…>, 7 years ago

Fix scoping issues for CatchStmt?

  • Property mode set to 100644
File size: 35.5 KB
Line 
1//
2// Cforall Version 1.0.0 Copyright (C) 2015 University of Waterloo
3//
4// The contents of this file are covered under the licence agreement in the
5// file "LICENCE" distributed with Cforall.
6//
7// Indexer.cc --
8//
9// Author           : Richard C. Bilson
10// Created On       : Sun May 17 21:37:33 2015
11// Last Modified By : Peter A. Buhr
12// Last Modified On : Thu Mar 30 16:38:47 2017
13// Update Count     : 19
14//
15
16#include "Indexer.h"
17
18#include <cassert>                 // for assert, safe_dynamic_cast
19#include <iostream>                // for operator<<, basic_ostream, ostream
20#include <string>                  // for string, operator<<, operator!=
21#include <unordered_map>           // for operator!=, unordered_map<>::const...
22#include <unordered_set>           // for unordered_set
23#include <utility>                 // for pair, make_pair, move
24
25#include "Common/SemanticError.h"  // for SemanticError
26#include "Common/utility.h"        // for cloneAll
27#include "InitTweak/InitTweak.h"   // for isConstructor, isCopyFunction, isC...
28#include "Mangler.h"               // for Mangler
29#include "Parser/LinkageSpec.h"    // for isMangled, isOverridable, Spec
30#include "ResolvExpr/typeops.h"    // for typesCompatible
31#include "SynTree/Constant.h"      // for Constant
32#include "SynTree/Declaration.h"   // for DeclarationWithType, FunctionDecl
33#include "SynTree/Expression.h"    // for Expression, ImplicitCopyCtorExpr
34#include "SynTree/Initializer.h"   // for Initializer
35#include "SynTree/Statement.h"     // for CompoundStmt, Statement, ForStmt (...
36#include "SynTree/Type.h"          // for Type, StructInstType, UnionInstType
37
38#define debugPrint(x) if ( doDebug ) { std::cout << x; }
39
40namespace SymTab {
41        struct NewScope {
42                NewScope( SymTab::Indexer & indexer ) : indexer( indexer ) { indexer.enterScope(); }
43                ~NewScope() { indexer.leaveScope(); }
44                SymTab::Indexer & indexer;
45        };
46
47        template< typename TreeType, typename VisitorType >
48        inline void acceptNewScope( TreeType *tree, VisitorType &visitor ) {
49                visitor.enterScope();
50                maybeAccept( tree, visitor );
51                visitor.leaveScope();
52        }
53
54        typedef std::unordered_map< std::string, DeclarationWithType* > MangleTable;
55        typedef std::unordered_map< std::string, MangleTable > IdTable;
56        typedef std::unordered_map< std::string, NamedTypeDecl* > TypeTable;
57        typedef std::unordered_map< std::string, StructDecl* > StructTable;
58        typedef std::unordered_map< std::string, EnumDecl* > EnumTable;
59        typedef std::unordered_map< std::string, UnionDecl* > UnionTable;
60        typedef std::unordered_map< std::string, TraitDecl* > TraitTable;
61
62        void dump( const IdTable &table, std::ostream &os ) {
63                for ( IdTable::const_iterator id = table.begin(); id != table.end(); ++id ) {
64                        for ( MangleTable::const_iterator mangle = id->second.begin(); mangle != id->second.end(); ++mangle ) {
65                                os << mangle->second << std::endl;
66                        }
67                }
68        }
69
70        template< typename Decl >
71        void dump( const std::unordered_map< std::string, Decl* > &table, std::ostream &os ) {
72                for ( typename std::unordered_map< std::string, Decl* >::const_iterator it = table.begin(); it != table.end(); ++it ) {
73                        os << it->second << std::endl;
74                } // for
75        }
76
77        struct Indexer::Impl {
78                Impl( unsigned long _scope ) : refCount(1), scope( _scope ), size( 0 ), base(),
79                                idTable(), typeTable(), structTable(), enumTable(), unionTable(), traitTable() {}
80                Impl( unsigned long _scope, Indexer &&_base ) : refCount(1), scope( _scope ), size( 0 ), base( _base ),
81                                idTable(), typeTable(), structTable(), enumTable(), unionTable(), traitTable() {}
82                unsigned long refCount;   ///< Number of references to these tables
83                unsigned long scope;      ///< Scope these tables are associated with
84                unsigned long size;       ///< Number of elements stored in this table
85                const Indexer base;       ///< Base indexer this extends
86
87                IdTable idTable;          ///< Identifier namespace
88                TypeTable typeTable;      ///< Type namespace
89                StructTable structTable;  ///< Struct namespace
90                EnumTable enumTable;      ///< Enum namespace
91                UnionTable unionTable;    ///< Union namespace
92                TraitTable traitTable;    ///< Trait namespace
93        };
94
95        Indexer::Impl *Indexer::newRef( Indexer::Impl *toClone ) {
96                if ( ! toClone ) return 0;
97
98                // shorten the search chain by skipping empty links
99                Indexer::Impl *ret = toClone->size == 0 ? toClone->base.tables : toClone;
100                if ( ret ) { ++ret->refCount; }
101
102                return ret;
103        }
104
105        void Indexer::deleteRef( Indexer::Impl *toFree ) {
106                if ( ! toFree ) return;
107
108                if ( --toFree->refCount == 0 ) delete toFree;
109        }
110
111        void Indexer::removeSpecialOverrides( const std::string &id, std::list< DeclarationWithType * > & out ) const {
112                // only need to perform this step for constructors, destructors, and assignment functions
113                if ( ! InitTweak::isCtorDtorAssign( id ) ) return;
114
115                // helpful data structure
116                struct ValueType {
117                        struct DeclBall {
118                                FunctionDecl * decl;
119                                bool isUserDefinedFunc; // properties for this particular decl
120                                bool isDefaultCtor;
121                                bool isDtor;
122                                bool isCopyFunc;
123                        };
124                        // properties for this type
125                        bool existsUserDefinedFunc = false;    // any user-defined function found
126                        bool existsUserDefinedCtor = false;    // any user-defined constructor found
127                        bool existsUserDefinedDtor = false;    // any user-defined destructor found
128                        bool existsUserDefinedCopyFunc = false;    // user-defined copy ctor found
129                        bool existsUserDefinedDefaultCtor = false; // user-defined default ctor found
130                        std::list< DeclBall > decls;
131
132                        // another FunctionDecl for the current type was found - determine
133                        // if it has special properties and update data structure accordingly
134                        ValueType & operator+=( FunctionDecl * function ) {
135                                bool isUserDefinedFunc = ! LinkageSpec::isOverridable( function->get_linkage() );
136                                bool isDefaultCtor = InitTweak::isDefaultConstructor( function );
137                                bool isDtor = InitTweak::isDestructor( function );
138                                bool isCopyFunc = InitTweak::isCopyFunction( function, function->get_name() );
139                                decls.push_back( DeclBall{ function, isUserDefinedFunc, isDefaultCtor, isDtor, isCopyFunc } );
140                                existsUserDefinedFunc = existsUserDefinedFunc || isUserDefinedFunc;
141                                existsUserDefinedCtor = existsUserDefinedCtor || (isUserDefinedFunc && InitTweak::isConstructor( function->get_name() ) );
142                                existsUserDefinedDtor = existsUserDefinedDtor || (isUserDefinedFunc && isDtor);
143                                existsUserDefinedCopyFunc = existsUserDefinedCopyFunc || (isUserDefinedFunc && isCopyFunc);
144                                existsUserDefinedDefaultCtor = existsUserDefinedDefaultCtor || (isUserDefinedFunc && isDefaultCtor);
145                                return *this;
146                        }
147                }; // ValueType
148
149                std::list< DeclarationWithType * > copy;
150                copy.splice( copy.end(), out );
151
152                // organize discovered declarations by type
153                std::unordered_map< std::string, ValueType > funcMap;
154                for ( DeclarationWithType * decl : copy ) {
155                        if ( FunctionDecl * function = dynamic_cast< FunctionDecl * >( decl ) ) {
156                                std::list< DeclarationWithType * > & params = function->get_functionType()->get_parameters();
157                                assert( ! params.empty() );
158                                // use base type of pointer, so that qualifiers on the pointer type aren't considered.
159                                Type * base = safe_dynamic_cast< PointerType * >( params.front()->get_type() )->get_base();
160                                funcMap[ Mangler::mangle( base ) ] += function;
161                        } else {
162                                out.push_back( decl );
163                        }
164                }
165
166                // if a type contains user defined ctor/dtor/assign, then special rules trigger, which determine
167                // the set of ctor/dtor/assign that are seen by the requester. In particular, if the user defines
168                // a default ctor, then the generated default ctor should never be seen, likewise for copy ctor
169                // and dtor. If the user defines any ctor/dtor, then no generated field ctors should be seen.
170                // If the user defines any ctor then the generated default ctor should not be seen (intrinsic default
171                // ctor must be overridden exactly).
172                for ( std::pair< const std::string, ValueType > & pair : funcMap ) {
173                        ValueType & val = pair.second;
174                        for ( ValueType::DeclBall ball : val.decls ) {
175                                bool noUserDefinedFunc = ! val.existsUserDefinedFunc;
176                                bool isUserDefinedFunc = ball.isUserDefinedFunc;
177                                bool isAcceptableDefaultCtor = (! val.existsUserDefinedCtor || (! val.existsUserDefinedDefaultCtor && ball.decl->get_linkage() == LinkageSpec::Intrinsic)) && ball.isDefaultCtor; // allow default constructors only when no user-defined constructors exist, except in the case of intrinsics, which require exact overrides
178                                bool isAcceptableCopyFunc = ! val.existsUserDefinedCopyFunc && ball.isCopyFunc; // handles copy ctor and assignment operator
179                                bool isAcceptableDtor = ! val.existsUserDefinedDtor && ball.isDtor;
180                                if ( noUserDefinedFunc || isUserDefinedFunc || isAcceptableDefaultCtor || isAcceptableCopyFunc || isAcceptableDtor ) {
181                                        // decl conforms to the rules described above, so it should be seen by the requester
182                                        out.push_back( ball.decl );
183                                }
184                        }
185                }
186        }
187
188        void Indexer::makeWritable() {
189                if ( ! tables ) {
190                        // create indexer if not yet set
191                        tables = new Indexer::Impl( scope );
192                } else if ( tables->refCount > 1 || tables->scope != scope ) {
193                        // make this indexer the base of a fresh indexer at the current scope
194                        tables = new Indexer::Impl( scope, std::move( *this ) );
195                }
196        }
197
198        Indexer::Indexer( bool _doDebug ) : tables( 0 ), scope( 0 ), doDebug( _doDebug ) {}
199
200        Indexer::Indexer( const Indexer &that ) : tables( newRef( that.tables ) ), scope( that.scope ), doDebug( that.doDebug ) {}
201
202        Indexer::Indexer( Indexer &&that ) : tables( that.tables ), scope( that.scope ), doDebug( that.doDebug ) {
203                that.tables = 0;
204        }
205
206        Indexer::~Indexer() {
207                deleteRef( tables );
208        }
209
210        Indexer& Indexer::operator= ( const Indexer &that ) {
211                deleteRef( tables );
212
213                tables = newRef( that.tables );
214                scope = that.scope;
215                doDebug = that.doDebug;
216
217                return *this;
218        }
219
220        Indexer& Indexer::operator= ( Indexer &&that ) {
221                deleteRef( tables );
222
223                tables = that.tables;
224                scope = that.scope;
225                doDebug = that.doDebug;
226
227                that.tables = 0;
228
229                return *this;
230        }
231
232        void Indexer::visit( ObjectDecl *objectDecl ) {
233                enterScope();
234                maybeAccept( objectDecl->get_type(), *this );
235                leaveScope();
236                maybeAccept( objectDecl->get_init(), *this );
237                maybeAccept( objectDecl->get_bitfieldWidth(), *this );
238                if ( objectDecl->get_name() != "" ) {
239                        debugPrint( "Adding object " << objectDecl->get_name() << std::endl );
240                        addId( objectDecl );
241                } // if
242        }
243
244        void Indexer::visit( FunctionDecl *functionDecl ) {
245                if ( functionDecl->get_name() == "" ) return;
246                debugPrint( "Adding function " << functionDecl->get_name() << std::endl );
247                addId( functionDecl );
248                enterScope();
249                maybeAccept( functionDecl->get_functionType(), *this );
250                maybeAccept( functionDecl->get_statements(), *this );
251                leaveScope();
252        }
253
254
255// A NOTE ON THE ORDER OF TRAVERSAL
256//
257// Types and typedefs have their base types visited before they are added to the type table.  This is ok, since there is
258// no such thing as a recursive type or typedef.
259//
260//             typedef struct { T *x; } T; // never allowed
261//
262// for structs/unions, it is possible to have recursion, so the decl should be added as if it's incomplete to begin, the
263// members are traversed, and then the complete type should be added (assuming the type is completed by this particular
264// declaration).
265//
266//             struct T { struct T *x; }; // allowed
267//
268// It is important to add the complete type to the symbol table *after* the members/base has been traversed, since that
269// traversal may modify the definition of the type and these modifications should be visible when the symbol table is
270// queried later in this pass.
271//
272// TODO: figure out whether recursive contexts are sensible/possible/reasonable.
273
274
275        void Indexer::visit( TypeDecl *typeDecl ) {
276                // see A NOTE ON THE ORDER OF TRAVERSAL, above
277                // note that assertions come after the type is added to the symtab, since they are not part of the type proper
278                // and may depend on the type itself
279                enterScope();
280                acceptAll( typeDecl->get_parameters(), *this );
281                maybeAccept( typeDecl->get_base(), *this );
282                leaveScope();
283                debugPrint( "Adding type " << typeDecl->get_name() << std::endl );
284                addType( typeDecl );
285                acceptAll( typeDecl->get_assertions(), *this );
286                acceptNewScope( typeDecl->get_init(), *this );
287        }
288
289        void Indexer::visit( TypedefDecl *typeDecl ) {
290                enterScope();
291                acceptAll( typeDecl->get_parameters(), *this );
292                maybeAccept( typeDecl->get_base(), *this );
293                leaveScope();
294                debugPrint( "Adding typedef " << typeDecl->get_name() << std::endl );
295                addType( typeDecl );
296        }
297
298        void Indexer::visit( StructDecl *aggregateDecl ) {
299                // make up a forward declaration and add it before processing the members
300                // needs to be on the heap because addStruct saves the pointer
301                StructDecl &fwdDecl = *new StructDecl( aggregateDecl->get_name() );
302                cloneAll( aggregateDecl->get_parameters(), fwdDecl.get_parameters() );
303                debugPrint( "Adding fwd decl for struct " << fwdDecl.get_name() << std::endl );
304                addStruct( &fwdDecl );
305
306                enterScope();
307                acceptAll( aggregateDecl->get_parameters(), *this );
308                acceptAll( aggregateDecl->get_members(), *this );
309                leaveScope();
310
311                debugPrint( "Adding struct " << aggregateDecl->get_name() << std::endl );
312                // this addition replaces the forward declaration
313                addStruct( aggregateDecl );
314        }
315
316        void Indexer::visit( UnionDecl *aggregateDecl ) {
317                // make up a forward declaration and add it before processing the members
318                UnionDecl fwdDecl( aggregateDecl->get_name() );
319                cloneAll( aggregateDecl->get_parameters(), fwdDecl.get_parameters() );
320                debugPrint( "Adding fwd decl for union " << fwdDecl.get_name() << std::endl );
321                addUnion( &fwdDecl );
322
323                enterScope();
324                acceptAll( aggregateDecl->get_parameters(), *this );
325                acceptAll( aggregateDecl->get_members(), *this );
326                leaveScope();
327
328                debugPrint( "Adding union " << aggregateDecl->get_name() << std::endl );
329                addUnion( aggregateDecl );
330        }
331
332        void Indexer::visit( EnumDecl *aggregateDecl ) {
333                debugPrint( "Adding enum " << aggregateDecl->get_name() << std::endl );
334                addEnum( aggregateDecl );
335                // unlike structs, contexts, and unions, enums inject their members into the global scope
336                acceptAll( aggregateDecl->get_members(), *this );
337        }
338
339        void Indexer::visit( TraitDecl *aggregateDecl ) {
340                enterScope();
341                acceptAll( aggregateDecl->get_parameters(), *this );
342                acceptAll( aggregateDecl->get_members(), *this );
343                leaveScope();
344
345                debugPrint( "Adding context " << aggregateDecl->get_name() << std::endl );
346                addTrait( aggregateDecl );
347        }
348
349        void Indexer::visit( CompoundStmt *compoundStmt ) {
350                enterScope();
351                acceptAll( compoundStmt->get_kids(), *this );
352                leaveScope();
353        }
354
355        void Indexer::visit( ForStmt *forStmt ) {
356            // for statements introduce a level of scope
357            enterScope();
358            Visitor::visit( forStmt );
359            leaveScope();
360        }
361
362        void Indexer::visit( CatchStmt *catchStmt ) {
363                // catch statements introduce a level of scope (for the caught exception)
364                enterScope();
365                Visitor::visit( catchStmt );
366                leaveScope();
367        }
368
369        void Indexer::visit( ApplicationExpr *applicationExpr ) {
370                acceptNewScope( applicationExpr->get_result(), *this );
371                maybeAccept( applicationExpr->get_function(), *this );
372                acceptAll( applicationExpr->get_args(), *this );
373        }
374
375        void Indexer::visit( UntypedExpr *untypedExpr ) {
376                acceptNewScope( untypedExpr->get_result(), *this );
377                acceptAll( untypedExpr->get_args(), *this );
378        }
379
380        void Indexer::visit( NameExpr *nameExpr ) {
381                acceptNewScope( nameExpr->get_result(), *this );
382        }
383
384        void Indexer::visit( AddressExpr *addressExpr ) {
385                acceptNewScope( addressExpr->get_result(), *this );
386                maybeAccept( addressExpr->get_arg(), *this );
387        }
388
389        void Indexer::visit( LabelAddressExpr *labAddressExpr ) {
390                acceptNewScope( labAddressExpr->get_result(), *this );
391                maybeAccept( labAddressExpr->get_arg(), *this );
392        }
393
394        void Indexer::visit( CastExpr *castExpr ) {
395                acceptNewScope( castExpr->get_result(), *this );
396                maybeAccept( castExpr->get_arg(), *this );
397        }
398
399        void Indexer::visit( UntypedMemberExpr *memberExpr ) {
400                acceptNewScope( memberExpr->get_result(), *this );
401                maybeAccept( memberExpr->get_aggregate(), *this );
402        }
403
404        void Indexer::visit( MemberExpr *memberExpr ) {
405                acceptNewScope( memberExpr->get_result(), *this );
406                maybeAccept( memberExpr->get_aggregate(), *this );
407        }
408
409        void Indexer::visit( VariableExpr *variableExpr ) {
410                acceptNewScope( variableExpr->get_result(), *this );
411        }
412
413        void Indexer::visit( ConstantExpr *constantExpr ) {
414                acceptNewScope( constantExpr->get_result(), *this );
415                maybeAccept( constantExpr->get_constant(), *this );
416        }
417
418        void Indexer::visit( SizeofExpr *sizeofExpr ) {
419                acceptNewScope( sizeofExpr->get_result(), *this );
420                if ( sizeofExpr->get_isType() ) {
421                        maybeAccept( sizeofExpr->get_type(), *this );
422                } else {
423                        maybeAccept( sizeofExpr->get_expr(), *this );
424                }
425        }
426
427        void Indexer::visit( AlignofExpr *alignofExpr ) {
428                acceptNewScope( alignofExpr->get_result(), *this );
429                if ( alignofExpr->get_isType() ) {
430                        maybeAccept( alignofExpr->get_type(), *this );
431                } else {
432                        maybeAccept( alignofExpr->get_expr(), *this );
433                }
434        }
435
436        void Indexer::visit( UntypedOffsetofExpr *offsetofExpr ) {
437                acceptNewScope( offsetofExpr->get_result(), *this );
438                maybeAccept( offsetofExpr->get_type(), *this );
439        }
440
441        void Indexer::visit( OffsetofExpr *offsetofExpr ) {
442                acceptNewScope( offsetofExpr->get_result(), *this );
443                maybeAccept( offsetofExpr->get_type(), *this );
444                maybeAccept( offsetofExpr->get_member(), *this );
445        }
446
447        void Indexer::visit( OffsetPackExpr *offsetPackExpr ) {
448                acceptNewScope( offsetPackExpr->get_result(), *this );
449                maybeAccept( offsetPackExpr->get_type(), *this );
450        }
451
452        void Indexer::visit( AttrExpr *attrExpr ) {
453                acceptNewScope( attrExpr->get_result(), *this );
454                if ( attrExpr->get_isType() ) {
455                        maybeAccept( attrExpr->get_type(), *this );
456                } else {
457                        maybeAccept( attrExpr->get_expr(), *this );
458                }
459        }
460
461        void Indexer::visit( LogicalExpr *logicalExpr ) {
462                acceptNewScope( logicalExpr->get_result(), *this );
463                maybeAccept( logicalExpr->get_arg1(), *this );
464                maybeAccept( logicalExpr->get_arg2(), *this );
465        }
466
467        void Indexer::visit( ConditionalExpr *conditionalExpr ) {
468                acceptNewScope( conditionalExpr->get_result(), *this );
469                maybeAccept( conditionalExpr->get_arg1(), *this );
470                maybeAccept( conditionalExpr->get_arg2(), *this );
471                maybeAccept( conditionalExpr->get_arg3(), *this );
472        }
473
474        void Indexer::visit( CommaExpr *commaExpr ) {
475                acceptNewScope( commaExpr->get_result(), *this );
476                maybeAccept( commaExpr->get_arg1(), *this );
477                maybeAccept( commaExpr->get_arg2(), *this );
478        }
479
480        void Indexer::visit( TypeExpr *typeExpr ) {
481                acceptNewScope( typeExpr->get_result(), *this );
482                maybeAccept( typeExpr->get_type(), *this );
483        }
484
485        void Indexer::visit( AsmExpr *asmExpr ) {
486                maybeAccept( asmExpr->get_inout(), *this );
487                maybeAccept( asmExpr->get_constraint(), *this );
488                maybeAccept( asmExpr->get_operand(), *this );
489        }
490
491        void Indexer::visit( ImplicitCopyCtorExpr *impCpCtorExpr ) {
492                acceptNewScope( impCpCtorExpr->get_result(), *this );
493                maybeAccept( impCpCtorExpr->get_callExpr(), *this );
494                acceptAll( impCpCtorExpr->get_tempDecls(), *this );
495                acceptAll( impCpCtorExpr->get_returnDecls(), *this );
496                acceptAll( impCpCtorExpr->get_dtors(), *this );
497        }
498
499        void Indexer::visit( ConstructorExpr * ctorExpr ) {
500                acceptNewScope( ctorExpr->get_result(), *this );
501                maybeAccept( ctorExpr->get_callExpr(), *this );
502        }
503
504        void Indexer::visit( CompoundLiteralExpr *compLitExpr ) {
505                acceptNewScope( compLitExpr->get_result(), *this );
506                maybeAccept( compLitExpr->get_initializer(), *this );
507        }
508
509        void Indexer::visit( RangeExpr *rangeExpr ) {
510                maybeAccept( rangeExpr->get_low(), *this );
511                maybeAccept( rangeExpr->get_high(), *this );
512        }
513
514        void Indexer::visit( UntypedTupleExpr *tupleExpr ) {
515                acceptNewScope( tupleExpr->get_result(), *this );
516                acceptAll( tupleExpr->get_exprs(), *this );
517        }
518
519        void Indexer::visit( TupleExpr *tupleExpr ) {
520                acceptNewScope( tupleExpr->get_result(), *this );
521                acceptAll( tupleExpr->get_exprs(), *this );
522        }
523
524        void Indexer::visit( TupleIndexExpr *tupleExpr ) {
525                acceptNewScope( tupleExpr->get_result(), *this );
526                maybeAccept( tupleExpr->get_tuple(), *this );
527        }
528
529        void Indexer::visit( TupleAssignExpr *tupleExpr ) {
530                acceptNewScope( tupleExpr->get_result(), *this );
531                maybeAccept( tupleExpr->get_stmtExpr(), *this );
532        }
533
534        void Indexer::visit( StmtExpr *stmtExpr ) {
535                acceptNewScope( stmtExpr->get_result(), *this );
536                maybeAccept( stmtExpr->get_statements(), *this );
537                acceptAll( stmtExpr->get_returnDecls(), *this );
538                acceptAll( stmtExpr->get_dtors(), *this );
539        }
540
541        void Indexer::visit( UniqueExpr *uniqueExpr ) {
542                acceptNewScope( uniqueExpr->get_result(), *this );
543                maybeAccept( uniqueExpr->get_expr(), *this );
544        }
545
546
547        void Indexer::visit( TraitInstType *contextInst ) {
548                acceptAll( contextInst->get_parameters(), *this );
549                acceptAll( contextInst->get_members(), *this );
550        }
551
552        void Indexer::visit( StructInstType *structInst ) {
553                if ( ! lookupStruct( structInst->get_name() ) ) {
554                        debugPrint( "Adding struct " << structInst->get_name() << " from implicit forward declaration" << std::endl );
555                        addStruct( structInst->get_name() );
556                }
557                enterScope();
558                acceptAll( structInst->get_parameters(), *this );
559                leaveScope();
560        }
561
562        void Indexer::visit( UnionInstType *unionInst ) {
563                if ( ! lookupUnion( unionInst->get_name() ) ) {
564                        debugPrint( "Adding union " << unionInst->get_name() << " from implicit forward declaration" << std::endl );
565                        addUnion( unionInst->get_name() );
566                }
567                enterScope();
568                acceptAll( unionInst->get_parameters(), *this );
569                leaveScope();
570        }
571
572        void Indexer::lookupId( const std::string &id, std::list< DeclarationWithType* > &out ) const {
573                std::unordered_set< std::string > foundMangleNames;
574
575                Indexer::Impl *searchTables = tables;
576                while ( searchTables ) {
577
578                        IdTable::const_iterator decls = searchTables->idTable.find( id );
579                        if ( decls != searchTables->idTable.end() ) {
580                                const MangleTable &mangleTable = decls->second;
581                                for ( MangleTable::const_iterator decl = mangleTable.begin(); decl != mangleTable.end(); ++decl ) {
582                                        // mark the mangled name as found, skipping this insertion if a declaration for that name has already been found
583                                        if ( foundMangleNames.insert( decl->first ).second == false ) continue;
584
585                                        out.push_back( decl->second );
586                                }
587                        }
588
589                        // get declarations from base indexers
590                        searchTables = searchTables->base.tables;
591                }
592
593                // some special functions, e.g. constructors and destructors
594                // remove autogenerated functions when they are defined so that
595                // they can never be matched
596                removeSpecialOverrides( id, out );
597        }
598
599        NamedTypeDecl *Indexer::lookupType( const std::string &id ) const {
600                if ( ! tables ) return 0;
601
602                TypeTable::const_iterator ret = tables->typeTable.find( id );
603                return ret != tables->typeTable.end() ? ret->second : tables->base.lookupType( id );
604        }
605
606        StructDecl *Indexer::lookupStruct( const std::string &id ) const {
607                if ( ! tables ) return 0;
608
609                StructTable::const_iterator ret = tables->structTable.find( id );
610                return ret != tables->structTable.end() ? ret->second : tables->base.lookupStruct( id );
611        }
612
613        EnumDecl *Indexer::lookupEnum( const std::string &id ) const {
614                if ( ! tables ) return 0;
615
616                EnumTable::const_iterator ret = tables->enumTable.find( id );
617                return ret != tables->enumTable.end() ? ret->second : tables->base.lookupEnum( id );
618        }
619
620        UnionDecl *Indexer::lookupUnion( const std::string &id ) const {
621                if ( ! tables ) return 0;
622
623                UnionTable::const_iterator ret = tables->unionTable.find( id );
624                return ret != tables->unionTable.end() ? ret->second : tables->base.lookupUnion( id );
625        }
626
627        TraitDecl *Indexer::lookupTrait( const std::string &id ) const {
628                if ( ! tables ) return 0;
629
630                TraitTable::const_iterator ret = tables->traitTable.find( id );
631                return ret != tables->traitTable.end() ? ret->second : tables->base.lookupTrait( id );
632        }
633
634        DeclarationWithType *Indexer::lookupIdAtScope( const std::string &id, const std::string &mangleName, unsigned long scope ) const {
635                if ( ! tables ) return 0;
636                if ( tables->scope < scope ) return 0;
637
638                IdTable::const_iterator decls = tables->idTable.find( id );
639                if ( decls != tables->idTable.end() ) {
640                        const MangleTable &mangleTable = decls->second;
641                        MangleTable::const_iterator decl = mangleTable.find( mangleName );
642                        if ( decl != mangleTable.end() ) return decl->second;
643                }
644
645                return tables->base.lookupIdAtScope( id, mangleName, scope );
646        }
647
648        bool Indexer::hasIncompatibleCDecl( const std::string &id, const std::string &mangleName, unsigned long scope ) const {
649                if ( ! tables ) return false;
650                if ( tables->scope < scope ) return false;
651
652                IdTable::const_iterator decls = tables->idTable.find( id );
653                if ( decls != tables->idTable.end() ) {
654                        const MangleTable &mangleTable = decls->second;
655                        for ( MangleTable::const_iterator decl = mangleTable.begin(); decl != mangleTable.end(); ++decl ) {
656                                // check for C decls with the same name, skipping those with a compatible type (by mangleName)
657                                if ( ! LinkageSpec::isMangled( decl->second->get_linkage() ) && decl->first != mangleName ) return true;
658                        }
659                }
660
661                return tables->base.hasIncompatibleCDecl( id, mangleName, scope );
662        }
663
664        bool Indexer::hasCompatibleCDecl( const std::string &id, const std::string &mangleName, unsigned long scope ) const {
665                if ( ! tables ) return false;
666                if ( tables->scope < scope ) return false;
667
668                IdTable::const_iterator decls = tables->idTable.find( id );
669                if ( decls != tables->idTable.end() ) {
670                        const MangleTable &mangleTable = decls->second;
671                        for ( MangleTable::const_iterator decl = mangleTable.begin(); decl != mangleTable.end(); ++decl ) {
672                                // check for C decls with the same name, skipping
673                                // those with an incompatible type (by mangleName)
674                                if ( ! LinkageSpec::isMangled( decl->second->get_linkage() ) && decl->first == mangleName ) return true;
675                        }
676                }
677
678                return tables->base.hasCompatibleCDecl( id, mangleName, scope );
679        }
680
681        NamedTypeDecl *Indexer::lookupTypeAtScope( const std::string &id, unsigned long scope ) const {
682                if ( ! tables ) return 0;
683                if ( tables->scope < scope ) return 0;
684
685                TypeTable::const_iterator ret = tables->typeTable.find( id );
686                return ret != tables->typeTable.end() ? ret->second : tables->base.lookupTypeAtScope( id, scope );
687        }
688
689        StructDecl *Indexer::lookupStructAtScope( const std::string &id, unsigned long scope ) const {
690                if ( ! tables ) return 0;
691                if ( tables->scope < scope ) return 0;
692
693                StructTable::const_iterator ret = tables->structTable.find( id );
694                return ret != tables->structTable.end() ? ret->second : tables->base.lookupStructAtScope( id, scope );
695        }
696
697        EnumDecl *Indexer::lookupEnumAtScope( const std::string &id, unsigned long scope ) const {
698                if ( ! tables ) return 0;
699                if ( tables->scope < scope ) return 0;
700
701                EnumTable::const_iterator ret = tables->enumTable.find( id );
702                return ret != tables->enumTable.end() ? ret->second : tables->base.lookupEnumAtScope( id, scope );
703        }
704
705        UnionDecl *Indexer::lookupUnionAtScope( const std::string &id, unsigned long scope ) const {
706                if ( ! tables ) return 0;
707                if ( tables->scope < scope ) return 0;
708
709                UnionTable::const_iterator ret = tables->unionTable.find( id );
710                return ret != tables->unionTable.end() ? ret->second : tables->base.lookupUnionAtScope( id, scope );
711        }
712
713        TraitDecl *Indexer::lookupTraitAtScope( const std::string &id, unsigned long scope ) const {
714                if ( ! tables ) return 0;
715                if ( tables->scope < scope ) return 0;
716
717                TraitTable::const_iterator ret = tables->traitTable.find( id );
718                return ret != tables->traitTable.end() ? ret->second : tables->base.lookupTraitAtScope( id, scope );
719        }
720
721        bool addedIdConflicts( DeclarationWithType *existing, DeclarationWithType *added ) {
722                // if we're giving the same name mangling to things of different types then there is something wrong
723                assert( (dynamic_cast<ObjectDecl*>( added ) && dynamic_cast<ObjectDecl*>( existing ) )
724                        || (dynamic_cast<FunctionDecl*>( added ) && dynamic_cast<FunctionDecl*>( existing ) ) );
725
726                if ( LinkageSpec::isOverridable( existing->get_linkage() ) ) {
727                        // new definition shadows the autogenerated one, even at the same scope
728                        return false;
729                } else if ( LinkageSpec::isMangled( added->get_linkage() ) || ResolvExpr::typesCompatible( added->get_type(), existing->get_type(), Indexer() ) ) {
730                        // typesCompatible doesn't really do the right thing here. When checking compatibility of function types,
731                        // we should ignore outermost pointer qualifiers, except _Atomic?
732                        FunctionDecl *newentry = dynamic_cast< FunctionDecl* >( added );
733                        FunctionDecl *oldentry = dynamic_cast< FunctionDecl* >( existing );
734                        if ( newentry && oldentry ) {
735                                if ( newentry->get_statements() && oldentry->get_statements() ) {
736                                        throw SemanticError( "duplicate function definition for ", added );
737                                } // if
738                        } else {
739                                // two objects with the same mangled name defined in the same scope.
740                                // both objects must be marked extern or both must be intrinsic for this to be okay
741                                // xxx - perhaps it's actually if either is intrinsic then this is okay?
742                                //       might also need to be same storage class?
743                                ObjectDecl *newobj = dynamic_cast< ObjectDecl* >( added );
744                                ObjectDecl *oldobj = dynamic_cast< ObjectDecl* >( existing );
745                                if ( ! newobj->get_storageClasses().is_extern && ! oldobj->get_storageClasses().is_extern ) {
746                                        throw SemanticError( "duplicate object definition for ", added );
747                                } // if
748                        } // if
749                } else {
750                        throw SemanticError( "duplicate definition for ", added );
751                } // if
752
753                return true;
754        }
755
756        void Indexer::addId( DeclarationWithType *decl ) {
757                makeWritable();
758
759                const std::string &name = decl->get_name();
760                std::string mangleName;
761                if ( LinkageSpec::isOverridable( decl->get_linkage() ) ) {
762                        // mangle the name without including the appropriate suffix, so overridable routines are placed into the
763                        // same "bucket" as their user defined versions.
764                        mangleName = Mangler::mangle( decl, false );
765                } else {
766                        mangleName = Mangler::mangle( decl );
767                } // if
768
769                // this ensures that no two declarations with the same unmangled name at the same scope both have C linkage
770                if ( ! LinkageSpec::isMangled( decl->get_linkage() ) ) {
771                        // NOTE this is broken in Richard's original code in such a way that it never triggers (it
772                        // doesn't check decls that have the same manglename, and all C-linkage decls are defined to
773                        // have their name as their manglename, hence the error can never trigger).
774                        // The code here is closer to correct, but name mangling would have to be completely
775                        // isomorphic to C type-compatibility, which it may not be.
776                        if ( hasIncompatibleCDecl( name, mangleName, scope ) ) {
777                                throw SemanticError( "conflicting overload of C function ", decl );
778                        }
779                } else {
780                        // Check that a Cforall declaration doesn't overload any C declaration
781                        if ( hasCompatibleCDecl( name, mangleName, scope ) ) {
782                                throw SemanticError( "Cforall declaration hides C function ", decl );
783                        }
784                }
785
786                // Skip repeat declarations of the same identifier
787                DeclarationWithType *existing = lookupIdAtScope( name, mangleName, scope );
788                if ( existing && addedIdConflicts( existing, decl ) ) return;
789
790                // add to indexer
791                tables->idTable[ name ][ mangleName ] = decl;
792                ++tables->size;
793        }
794
795        bool addedTypeConflicts( NamedTypeDecl *existing, NamedTypeDecl *added ) {
796                if ( existing->get_base() == 0 ) {
797                        return false;
798                } else if ( added->get_base() == 0 ) {
799                        return true;
800                } else {
801                        throw SemanticError( "redeclaration of ", added );
802                }
803        }
804
805        void Indexer::addType( NamedTypeDecl *decl ) {
806                makeWritable();
807
808                const std::string &id = decl->get_name();
809                TypeTable::iterator existing = tables->typeTable.find( id );
810                if ( existing == tables->typeTable.end() ) {
811                        NamedTypeDecl *parent = tables->base.lookupTypeAtScope( id, scope );
812                        if ( ! parent || ! addedTypeConflicts( parent, decl ) ) {
813                                tables->typeTable.insert( existing, std::make_pair( id, decl ) );
814                                ++tables->size;
815                        }
816                } else {
817                        if ( ! addedTypeConflicts( existing->second, decl ) ) {
818                                existing->second = decl;
819                        }
820                }
821        }
822
823        bool addedDeclConflicts( AggregateDecl *existing, AggregateDecl *added ) {
824                if ( existing->get_members().empty() ) {
825                        return false;
826                } else if ( ! added->get_members().empty() ) {
827                        throw SemanticError( "redeclaration of ", added );
828                } // if
829                return true;
830        }
831
832        void Indexer::addStruct( const std::string &id ) {
833                addStruct( new StructDecl( id ) );
834        }
835
836        void Indexer::addStruct( StructDecl *decl ) {
837                makeWritable();
838
839                const std::string &id = decl->get_name();
840                StructTable::iterator existing = tables->structTable.find( id );
841                if ( existing == tables->structTable.end() ) {
842                        StructDecl *parent = tables->base.lookupStructAtScope( id, scope );
843                        if ( ! parent || ! addedDeclConflicts( parent, decl ) ) {
844                                tables->structTable.insert( existing, std::make_pair( id, decl ) );
845                                ++tables->size;
846                        }
847                } else {
848                        if ( ! addedDeclConflicts( existing->second, decl ) ) {
849                                existing->second = decl;
850                        }
851                }
852        }
853
854        void Indexer::addEnum( EnumDecl *decl ) {
855                makeWritable();
856
857                const std::string &id = decl->get_name();
858                EnumTable::iterator existing = tables->enumTable.find( id );
859                if ( existing == tables->enumTable.end() ) {
860                        EnumDecl *parent = tables->base.lookupEnumAtScope( id, scope );
861                        if ( ! parent || ! addedDeclConflicts( parent, decl ) ) {
862                                tables->enumTable.insert( existing, std::make_pair( id, decl ) );
863                                ++tables->size;
864                        }
865                } else {
866                        if ( ! addedDeclConflicts( existing->second, decl ) ) {
867                                existing->second = decl;
868                        }
869                }
870        }
871
872        void Indexer::addUnion( const std::string &id ) {
873                addUnion( new UnionDecl( id ) );
874        }
875
876        void Indexer::addUnion( UnionDecl *decl ) {
877                makeWritable();
878
879                const std::string &id = decl->get_name();
880                UnionTable::iterator existing = tables->unionTable.find( id );
881                if ( existing == tables->unionTable.end() ) {
882                        UnionDecl *parent = tables->base.lookupUnionAtScope( id, scope );
883                        if ( ! parent || ! addedDeclConflicts( parent, decl ) ) {
884                                tables->unionTable.insert( existing, std::make_pair( id, decl ) );
885                                ++tables->size;
886                        }
887                } else {
888                        if ( ! addedDeclConflicts( existing->second, decl ) ) {
889                                existing->second = decl;
890                        }
891                }
892        }
893
894        void Indexer::addTrait( TraitDecl *decl ) {
895                makeWritable();
896
897                const std::string &id = decl->get_name();
898                TraitTable::iterator existing = tables->traitTable.find( id );
899                if ( existing == tables->traitTable.end() ) {
900                        TraitDecl *parent = tables->base.lookupTraitAtScope( id, scope );
901                        if ( ! parent || ! addedDeclConflicts( parent, decl ) ) {
902                                tables->traitTable.insert( existing, std::make_pair( id, decl ) );
903                                ++tables->size;
904                        }
905                } else {
906                        if ( ! addedDeclConflicts( existing->second, decl ) ) {
907                                existing->second = decl;
908                        }
909                }
910        }
911
912        void Indexer::enterScope() {
913                ++scope;
914
915                if ( doDebug ) {
916                        std::cout << "--- Entering scope " << scope << std::endl;
917                }
918        }
919
920        void Indexer::leaveScope() {
921                using std::cout;
922
923                assert( scope > 0 && "cannot leave initial scope" );
924                --scope;
925
926                while ( tables && tables->scope > scope ) {
927                        if ( doDebug ) {
928                                cout << "--- Leaving scope " << tables->scope << " containing" << std::endl;
929                                dump( tables->idTable, cout );
930                                dump( tables->typeTable, cout );
931                                dump( tables->structTable, cout );
932                                dump( tables->enumTable, cout );
933                                dump( tables->unionTable, cout );
934                                dump( tables->traitTable, cout );
935                        }
936
937                        // swap tables for base table until we find one at an appropriate scope
938                        Indexer::Impl *base = newRef( tables->base.tables );
939                        deleteRef( tables );
940                        tables = base;
941                }
942        }
943
944        void Indexer::print( std::ostream &os, int indent ) const {
945            using std::cerr;
946
947                if ( tables ) {
948                        os << "--- scope " << tables->scope << " ---" << std::endl;
949
950                        os << "===idTable===" << std::endl;
951                        dump( tables->idTable, os );
952                        os << "===typeTable===" << std::endl;
953                        dump( tables->typeTable, os );
954                        os << "===structTable===" << std::endl;
955                        dump( tables->structTable, os );
956                        os << "===enumTable===" << std::endl;
957                        dump( tables->enumTable, os );
958                        os << "===unionTable===" << std::endl;
959                        dump( tables->unionTable, os );
960                        os << "===contextTable===" << std::endl;
961                        dump( tables->traitTable, os );
962
963                        tables->base.print( os, indent );
964                } else {
965                        os << "--- end ---" << std::endl;
966                }
967
968        }
969} // namespace SymTab
970
971// Local Variables: //
972// tab-width: 4 //
973// mode: c++ //
974// compile-command: "make install" //
975// End: //
Note: See TracBrowser for help on using the repository browser.