source: src/SymTab/Indexer.h @ 7a63486

ADTarm-ehast-experimentalcleanup-dtorsenumforall-pointer-decayjacob/cs343-translationjenkins-sandboxnew-astnew-ast-unique-exprpthread-emulationqualifiedEnum
Last change on this file since 7a63486 was 114bde6, checked in by Aaron Moss <a3moss@…>, 5 years ago

Trim old version of removeSpecialOverrides

  • Property mode set to 100644
File size: 7.5 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//
[1e1e15b]7// Indexer.h --
[0dd3a2f]8//
9// Author           : Richard C. Bilson
10// Created On       : Sun May 17 21:38:55 2015
[b8665e3]11// Last Modified By : Aaron B. Moss
12// Last Modified On : Fri Mar  8 13:55:00 2019
13// Update Count     : 9
[0dd3a2f]14//
15
[6b0b624]16#pragma once
[51b7345]17
[b8665e3]18#include <functional>              // for function
19#include <list>                    // for list
20#include <memory>                  // for shared_ptr, enable_shared_from_this
21#include <string>                  // for string
[51b7345]22
[b8665e3]23#include "Common/PersistentMap.h"  // for PersistentMap
24#include "SynTree/SynTree.h"       // for AST nodes
[51b7345]25
[a181494]26namespace ResolvExpr {
[b8665e3]27        class Cost;
[a181494]28}
29
[51b7345]30namespace SymTab {
[b8665e3]31        class Indexer : public std::enable_shared_from_this<SymTab::Indexer> {
32        public:
[8b11840]33                explicit Indexer();
[a08ba92]34                virtual ~Indexer();
[17cd4eb]35
[b419abb]36                // when using an indexer manually (e.g., within a mutator traversal), it is necessary to
37                // tell the indexer explicitly when scopes begin and end
[a08ba92]38                void enterScope();
39                void leaveScope();
[17cd4eb]40
[a40d503]41                struct IdData {
[490ff5c3]42                        DeclarationWithType * id = nullptr;
43                        Expression * baseExpr = nullptr; // WithExpr
44
45                        /// non-null if this declaration is deleted
46                        BaseSyntaxNode * deleteStmt = nullptr;
[b8665e3]47                        /// scope of identifier
48                        unsigned long scope = 0;
[a40d503]49
[78d69da7]50                        // NOTE: shouldn't need either of these constructors, but gcc-4 does not properly support initializer lists with default members.
51                        IdData() = default;
[b8665e3]52                        IdData( 
53                                DeclarationWithType * id, Expression * baseExpr, BaseSyntaxNode * deleteStmt,
54                                unsigned long scope ) 
55                                : id( id ), baseExpr( baseExpr ), deleteStmt( deleteStmt ), scope( scope ) {}
56                        IdData( const IdData& o, BaseSyntaxNode * deleteStmt )
57                                : id( o.id ), baseExpr( o.baseExpr ), deleteStmt( deleteStmt ), scope( o.scope ) {}
[78d69da7]58
[a181494]59                        Expression * combine( ResolvExpr::Cost & cost ) const;
[a40d503]60                };
61
[bed4c63e]62                /// Gets all declarations with the given ID
[a40d503]63                void lookupId( const std::string &id, std::list< IdData > &out ) const;
[bed4c63e]64                /// Gets the top-most type declaration with the given ID
[a08ba92]65                NamedTypeDecl *lookupType( const std::string &id ) const;
[bed4c63e]66                /// Gets the top-most struct declaration with the given ID
[a08ba92]67                StructDecl *lookupStruct( const std::string &id ) const;
[bed4c63e]68                /// Gets the top-most enum declaration with the given ID
[a08ba92]69                EnumDecl *lookupEnum( const std::string &id ) const;
[bed4c63e]70                /// Gets the top-most union declaration with the given ID
[a08ba92]71                UnionDecl *lookupUnion( const std::string &id ) const;
[bed4c63e]72                /// Gets the top-most trait declaration with the given ID
[4040425]73                TraitDecl *lookupTrait( const std::string &id ) const;
[1e1e15b]74
[ed34540]75                /// Gets the type declaration with the given ID at global scope
76                NamedTypeDecl *globalLookupType( const std::string &id ) const;
[9a7a3b6]77                /// Gets the struct declaration with the given ID at global scope
78                StructDecl *globalLookupStruct( const std::string &id ) const;
79                /// Gets the union declaration with the given ID at global scope
80                UnionDecl *globalLookupUnion( const std::string &id ) const;
81                /// Gets the enum declaration with the given ID at global scope
82                EnumDecl *globalLookupEnum( const std::string &id ) const;
83
[0ac366b]84                void addId( DeclarationWithType * decl, Expression * baseExpr = nullptr );
85                void addDeletedId( DeclarationWithType * decl, BaseSyntaxNode * deleteStmt );
86
[e8032b0]87                void addType( NamedTypeDecl *decl );
88                void addStruct( const std::string &id );
89                void addStruct( StructDecl *decl );
90                void addEnum( EnumDecl *decl );
91                void addUnion( const std::string &id );
92                void addUnion( UnionDecl *decl );
93                void addTrait( TraitDecl *decl );
[1e1e15b]94
[81644e0]95                /// adds all of the IDs from WithStmt exprs
[0ac366b]96                void addWith( std::list< Expression * > & withExprs, BaseSyntaxNode * withStmt );
[81644e0]97
[5fe35d6]98                /// convenience function for adding a list of Ids to the indexer
99                void addIds( const std::list< DeclarationWithType * > & decls );
100
101                /// convenience function for adding a list of forall parameters to the indexer
102                void addTypes( const std::list< TypeDecl * > & tds );
103
104                /// convenience function for adding all of the declarations in a function type to the indexer
105                void addFunctionType( FunctionType * ftype );
106
[522363e]107          private:
[b8665e3]108                /// Wraps a Decl* with a scope
109                template<typename Decl>
110                struct Scoped {
111                        Decl* decl;           ///< declaration
112                        unsigned long scope;  ///< scope of this declaration
[30f9072]113
[b8665e3]114                        Scoped(Decl* d, unsigned long s) : decl(d), scope(s) {}
115                };
116
117                using Ptr = std::shared_ptr<const Indexer>;
118
119                using MangleTable = PersistentMap< std::string, IdData >;
120                using IdTable = PersistentMap< std::string, MangleTable::Ptr >;
121                using TypeTable = PersistentMap< std::string, Scoped<NamedTypeDecl> >;
122                using StructTable = PersistentMap< std::string, Scoped<StructDecl> >;
123                using EnumTable = PersistentMap< std::string, Scoped<EnumDecl> >;
124                using UnionTable = PersistentMap< std::string, Scoped<UnionDecl> >;
125                using TraitTable = PersistentMap< std::string, Scoped<TraitDecl> >;
[e8032b0]126
[b8665e3]127                IdTable::Ptr idTable;          ///< identifier namespace
128                TypeTable::Ptr typeTable;      ///< type namespace
129                StructTable::Ptr structTable;  ///< struct namespace
130                EnumTable::Ptr enumTable;      ///< enum namespace
131                UnionTable::Ptr unionTable;    ///< union namespace
132                TraitTable::Ptr traitTable;    ///< trait namespace
[e8032b0]133
[b8665e3]134                Ptr prevScope;                 ///< reference to indexer for parent scope
135                unsigned long scope;           ///< Scope index of this indexer
[b419abb]136                unsigned long repScope;        ///< Scope index of currently represented scope
137
138                /// Ensures that a proper backtracking scope exists before a mutation
139                void lazyInitScope();
[b8665e3]140
141                /// Gets the indexer at the given scope
142                const Indexer* atScope( unsigned long scope ) const;
143
[42f1279c]144                /// Removes matching autogenerated constructors and destructors so that they will not be
145                /// selected. If returns false, passed decl should not be added.
146                bool removeSpecialOverrides( IdData& decl, MangleTable::Ptr& mangleTable );
147
[b8665e3]148                /// Options for handling identifier conflicts
149                struct OnConflict {
150                        enum {
151                                Error,  ///< Throw a semantic error
152                                Delete  ///< Delete the earlier version with the delete statement
153                        } mode;
154                        BaseSyntaxNode * deleteStmt;  ///< Statement that deletes this expression
155
156                private:
157                        OnConflict() : mode(Error), deleteStmt(nullptr) {}
158                        OnConflict( BaseSyntaxNode * d ) : mode(Delete), deleteStmt(d) {}
159                public:
160                        OnConflict( const OnConflict& ) = default;
161
162                        static OnConflict error() { return {}; }
163                        static OnConflict deleteWith( BaseSyntaxNode * d ) { return { d }; }
164                };
165
166                /// true if the existing identifier conflicts with the added identifier
167                bool addedIdConflicts(
168                        const IdData& existing, DeclarationWithType * added, OnConflict handleConflicts, 
169                        BaseSyntaxNode * deleteStmt );
[0ac366b]170
171                /// common code for addId, addDeletedId, etc.
[b8665e3]172                void addId( 
173                        DeclarationWithType * decl, OnConflict handleConflicts, 
174                        Expression * baseExpr = nullptr, BaseSyntaxNode * deleteStmt = nullptr );
175
176                /// adds all of the members of the Aggregate (addWith helper)
177                void addMembers( AggregateDecl * aggr, Expression * expr, OnConflict handleConflicts );
178
179                /// returns true if there exists a declaration with C linkage and the given name with the same mangled name
180                bool hasCompatibleCDecl( const std::string &id, const std::string &mangleName ) const;
181                /// returns true if there exists a declaration with C linkage and the given name with a different mangled name
182                bool hasIncompatibleCDecl( const std::string &id, const std::string &mangleName ) const;
[a08ba92]183        };
[51b7345]184} // namespace SymTab
185
[0dd3a2f]186// Local Variables: //
187// tab-width: 4 //
188// mode: c++ //
189// compile-command: "make install" //
190// End: //
Note: See TracBrowser for help on using the repository browser.