[d76c588] | 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 | // SymbolTable.hpp --
|
---|
| 8 | //
|
---|
| 9 | // Author : Aaron B. Moss
|
---|
| 10 | // Created On : Wed May 29 11:00:00 2019
|
---|
| 11 | // Last Modified By : Aaron B. Moss
|
---|
| 12 | // Last Modified On : Wed May 29 11:00:00 2019
|
---|
| 13 | // Update Count : 1
|
---|
| 14 | //
|
---|
| 15 |
|
---|
| 16 | #pragma once
|
---|
| 17 |
|
---|
| 18 | #include <memory> // for shared_ptr, enable_shared_from_this
|
---|
| 19 | #include <vector>
|
---|
| 20 |
|
---|
| 21 | #include "Fwd.hpp"
|
---|
| 22 | #include "Node.hpp" // for ptr, readonly
|
---|
| 23 | #include "Common/CodeLocation.h"
|
---|
| 24 | #include "Common/PersistentMap.h"
|
---|
| 25 |
|
---|
| 26 | namespace ResolvExpr {
|
---|
| 27 | class Cost;
|
---|
| 28 | }
|
---|
| 29 |
|
---|
| 30 | namespace ast {
|
---|
| 31 |
|
---|
| 32 | /// Builds and stores the symbol table, mapping identifiers to declarations.
|
---|
| 33 | class SymbolTable final : public std::enable_shared_from_this<ast::SymbolTable> {
|
---|
| 34 | public:
|
---|
[e5c3811] | 35 | /// special functions stored in dedicated tables, with different lookup keys
|
---|
| 36 | enum SpecialFunctionKind {CTOR, DTOR, ASSIGN, NUMBER_OF_KINDS};
|
---|
| 37 | static SpecialFunctionKind getSpecialFunctionKind(const std::string & name);
|
---|
| 38 |
|
---|
[d76c588] | 39 | /// Stored information about a declaration
|
---|
| 40 | struct IdData {
|
---|
| 41 | readonly<DeclWithType> id = nullptr; ///< Identifier of declaration
|
---|
| 42 | readonly<Expr> baseExpr = nullptr; ///< Implied containing aggregate (from WithExpr)
|
---|
[e67991f] | 43 | readonly<Decl> deleter = nullptr; ///< Node deleting this declaration (if non-null)
|
---|
[d76c588] | 44 | unsigned long scope = 0; ///< Scope of identifier
|
---|
| 45 |
|
---|
| 46 | IdData() = default;
|
---|
[e67991f] | 47 | IdData( const DeclWithType * i, const Expr * base, const Decl * del, unsigned long s )
|
---|
[d76c588] | 48 | : id( i ), baseExpr( base ), deleter( del ), scope( s ) {}
|
---|
[e67991f] | 49 |
|
---|
[6a0b043] | 50 | /// Create a new IdData, updating the deleter value.
|
---|
| 51 | IdData withDeleter( const Decl * decl ) const {
|
---|
| 52 | return IdData( id, baseExpr, decl, scope );
|
---|
| 53 | }
|
---|
[d76c588] | 54 |
|
---|
| 55 | /// Constructs an expression referring to this identifier.
|
---|
| 56 | /// Increments `cost` by cost of reference conversion
|
---|
| 57 | Expr * combine( const CodeLocation & loc, ResolvExpr::Cost & cost ) const;
|
---|
| 58 | };
|
---|
| 59 |
|
---|
| 60 | private:
|
---|
| 61 | /// wraps a reference to D with a scope
|
---|
| 62 | template<typename D>
|
---|
| 63 | struct scoped {
|
---|
| 64 | readonly<D> decl; ///< wrapped declaration
|
---|
[e67991f] | 65 | unsigned long scope; ///< scope of this declaration
|
---|
[d76c588] | 66 |
|
---|
| 67 | scoped(const D * d, unsigned long s) : decl(d), scope(s) {}
|
---|
| 68 | };
|
---|
| 69 |
|
---|
| 70 | using MangleTable = PersistentMap< std::string, IdData >;
|
---|
| 71 | using IdTable = PersistentMap< std::string, MangleTable::Ptr >;
|
---|
| 72 | using TypeTable = PersistentMap< std::string, scoped<NamedTypeDecl> >;
|
---|
| 73 | using StructTable = PersistentMap< std::string, scoped<StructDecl> >;
|
---|
| 74 | using EnumTable = PersistentMap< std::string, scoped<EnumDecl> >;
|
---|
| 75 | using UnionTable = PersistentMap< std::string, scoped<UnionDecl> >;
|
---|
| 76 | using TraitTable = PersistentMap< std::string, scoped<TraitDecl> >;
|
---|
| 77 |
|
---|
| 78 | IdTable::Ptr idTable; ///< identifier namespace
|
---|
| 79 | TypeTable::Ptr typeTable; ///< type namespace
|
---|
| 80 | StructTable::Ptr structTable; ///< struct namespace
|
---|
| 81 | EnumTable::Ptr enumTable; ///< enum namespace
|
---|
| 82 | UnionTable::Ptr unionTable; ///< union namespace
|
---|
| 83 | TraitTable::Ptr traitTable; ///< trait namespace
|
---|
[e5c3811] | 84 | IdTable::Ptr specialFunctionTable[NUMBER_OF_KINDS];
|
---|
| 85 |
|
---|
| 86 | // using SpecialFuncTable = PersistentMap< std::string, IdTable::Ptr >; // fname (ctor/dtor/assign) - otypekey
|
---|
| 87 | // SpecialFuncTable::Ptr specialFuncTable;
|
---|
[d76c588] | 88 |
|
---|
| 89 | using Ptr = std::shared_ptr<const SymbolTable>;
|
---|
| 90 |
|
---|
[0bd3faf] | 91 | Ptr prevScope; ///< Symbol Table for parent scope
|
---|
[d76c588] | 92 | unsigned long scope; ///< Scope index of this indexer
|
---|
| 93 | unsigned long repScope; ///< Scope index of currently represented scope
|
---|
| 94 |
|
---|
| 95 | public:
|
---|
[b9fe89b] | 96 |
|
---|
| 97 | /// Mode to control when (during which pass) user-caused name-declaration errors get reported.
|
---|
| 98 | /// The default setting `AssertClean` supports, "I expect all user-caused errors to have been
|
---|
| 99 | /// reported by now," or, "I wouldn't know what to do with an error; are there even any here?"
|
---|
| 100 | enum ErrorDetection {
|
---|
| 101 | AssertClean, ///< invalid user decls => assert fails during addFoo (default)
|
---|
| 102 | ValidateOnAdd, ///< invalid user decls => calls SemanticError during addFoo
|
---|
| 103 | IgnoreErrors ///< acts as if unspecified decls were removed, forcing validity
|
---|
| 104 | };
|
---|
| 105 |
|
---|
| 106 | explicit SymbolTable(
|
---|
| 107 | ErrorDetection ///< mode for the lifetime of the symbol table (whole pass)
|
---|
| 108 | );
|
---|
| 109 | SymbolTable() : SymbolTable(AssertClean) {}
|
---|
[d76c588] | 110 | ~SymbolTable();
|
---|
| 111 |
|
---|
[b9fe89b] | 112 | ErrorDetection getErrorMode() const {
|
---|
| 113 | return errorMode;
|
---|
| 114 | }
|
---|
| 115 |
|
---|
[e67991f] | 116 | // when using an indexer manually (e.g., within a mutator traversal), it is necessary to
|
---|
[d76c588] | 117 | // tell the indexer explicitly when scopes begin and end
|
---|
| 118 | void enterScope();
|
---|
| 119 | void leaveScope();
|
---|
| 120 |
|
---|
| 121 | /// Gets all declarations with the given ID
|
---|
| 122 | std::vector<IdData> lookupId( const std::string &id ) const;
|
---|
[e5c3811] | 123 | /// Gets special functions associated with a type; if no key is given, returns everything
|
---|
| 124 | std::vector<IdData> specialLookupId( SpecialFunctionKind kind, const std::string & otypeKey = "" ) const;
|
---|
[d76c588] | 125 | /// Gets the top-most type declaration with the given ID
|
---|
| 126 | const NamedTypeDecl * lookupType( const std::string &id ) const;
|
---|
| 127 | /// Gets the top-most struct declaration with the given ID
|
---|
| 128 | const StructDecl * lookupStruct( const std::string &id ) const;
|
---|
| 129 | /// Gets the top-most enum declaration with the given ID
|
---|
| 130 | const EnumDecl * lookupEnum( const std::string &id ) const;
|
---|
| 131 | /// Gets the top-most union declaration with the given ID
|
---|
| 132 | const UnionDecl * lookupUnion( const std::string &id ) const;
|
---|
| 133 | /// Gets the top-most trait declaration with the given ID
|
---|
| 134 | const TraitDecl * lookupTrait( const std::string &id ) const;
|
---|
| 135 |
|
---|
| 136 | /// Gets the type declaration with the given ID at global scope
|
---|
| 137 | const NamedTypeDecl * globalLookupType( const std::string &id ) const;
|
---|
| 138 | /// Gets the struct declaration with the given ID at global scope
|
---|
| 139 | const StructDecl * globalLookupStruct( const std::string &id ) const;
|
---|
| 140 | /// Gets the union declaration with the given ID at global scope
|
---|
| 141 | const UnionDecl * globalLookupUnion( const std::string &id ) const;
|
---|
| 142 | /// Gets the enum declaration with the given ID at global scope
|
---|
| 143 | const EnumDecl * globalLookupEnum( const std::string &id ) const;
|
---|
| 144 |
|
---|
| 145 | /// Adds an identifier declaration to the symbol table
|
---|
| 146 | void addId( const DeclWithType * decl, const Expr * baseExpr = nullptr );
|
---|
| 147 | /// Adds a deleted identifier declaration to the symbol table
|
---|
[e67991f] | 148 | void addDeletedId( const DeclWithType * decl, const Decl * deleter );
|
---|
[d76c588] | 149 |
|
---|
| 150 | /// Adds a type to the symbol table
|
---|
| 151 | void addType( const NamedTypeDecl * decl );
|
---|
| 152 | /// Adds a struct declaration to the symbol table by name
|
---|
[e0069bd] | 153 | void addStructId( const std::string & id );
|
---|
[d76c588] | 154 | /// Adds a struct declaration to the symbol table
|
---|
| 155 | void addStruct( const StructDecl * decl );
|
---|
| 156 | /// Adds an enum declaration to the symbol table
|
---|
[0e42794] | 157 | void addEnum( const EnumDecl * decl );
|
---|
[d76c588] | 158 | /// Adds a union declaration to the symbol table by name
|
---|
[e0069bd] | 159 | void addUnionId( const std::string & id );
|
---|
[d76c588] | 160 | /// Adds a union declaration to the symbol table
|
---|
| 161 | void addUnion( const UnionDecl * decl );
|
---|
| 162 | /// Adds a trait declaration to the symbol table
|
---|
| 163 | void addTrait( const TraitDecl * decl );
|
---|
| 164 |
|
---|
| 165 | /// adds all of the IDs from WithStmt exprs
|
---|
[e67991f] | 166 | void addWith( const std::vector< ptr<Expr> > & withExprs, const Decl * withStmt );
|
---|
[d76c588] | 167 |
|
---|
| 168 | /// convenience function for adding a list of Ids to the indexer
|
---|
| 169 | void addIds( const std::vector< ptr<DeclWithType> > & decls );
|
---|
| 170 |
|
---|
| 171 | /// convenience function for adding a list of forall parameters to the indexer
|
---|
| 172 | void addTypes( const std::vector< ptr<TypeDecl> > & tds );
|
---|
| 173 |
|
---|
| 174 | /// convenience function for adding all of the declarations in a function type to the indexer
|
---|
[490fb92e] | 175 | void addFunction( const FunctionDecl * );
|
---|
[d76c588] | 176 |
|
---|
| 177 | private:
|
---|
[b9fe89b] | 178 | void OnFindError( CodeLocation location, std::string error ) const;
|
---|
| 179 |
|
---|
| 180 | template< typename T >
|
---|
| 181 | void OnFindError( const T * obj, const std::string & error ) const {
|
---|
| 182 | OnFindError( obj->location, toString( error, obj ) );
|
---|
| 183 | }
|
---|
| 184 |
|
---|
| 185 | template< typename T >
|
---|
| 186 | void OnFindError( CodeLocation location, const T * obj, const std::string & error ) const {
|
---|
| 187 | OnFindError( location, toString( error, obj ) );
|
---|
| 188 | }
|
---|
| 189 |
|
---|
[d76c588] | 190 | /// Ensures that a proper backtracking scope exists before a mutation
|
---|
| 191 | void lazyInitScope();
|
---|
| 192 |
|
---|
| 193 | /// Gets the symbol table at a given scope
|
---|
| 194 | const SymbolTable * atScope( unsigned long i ) const;
|
---|
| 195 |
|
---|
[e67991f] | 196 | /// Removes matching autogenerated constructors and destructors so that they will not be
|
---|
[d76c588] | 197 | /// selected. If returns false, passed decl should not be added.
|
---|
| 198 | bool removeSpecialOverrides( IdData & decl, MangleTable::Ptr & mangleTable );
|
---|
| 199 |
|
---|
[b9fe89b] | 200 | /// Error detection mode given at construction (pass-specific).
|
---|
| 201 | /// Logically const, except that the symbol table's push-pop is achieved by autogenerated
|
---|
| 202 | /// assignment onto self. The feield is left motuable to keep this code-gen simple.
|
---|
| 203 | /// Conceptual constness is preserved by all SymbolTable in a stack sharing the same mode.
|
---|
| 204 | ErrorDetection errorMode;
|
---|
| 205 |
|
---|
| 206 | /// Options for handling identifier conflicts.
|
---|
| 207 | /// Varies according to AST location during traversal: captures semantics of the construct
|
---|
| 208 | /// being visited as "would shadow" vs "must not collide."
|
---|
| 209 | /// At a given AST location, is the same for every pass.
|
---|
[d76c588] | 210 | struct OnConflict {
|
---|
| 211 | enum {
|
---|
[b9fe89b] | 212 | Error, ///< Follow the current pass's ErrorDetection mode (may throw a semantic error)
|
---|
[d76c588] | 213 | Delete ///< Delete the earlier version with the delete statement
|
---|
| 214 | } mode;
|
---|
[e67991f] | 215 | const Decl * deleter; ///< Statement that deletes this expression
|
---|
[d76c588] | 216 |
|
---|
| 217 | private:
|
---|
| 218 | OnConflict() : mode(Error), deleter(nullptr) {}
|
---|
[e67991f] | 219 | OnConflict( const Decl * d ) : mode(Delete), deleter(d) {}
|
---|
[d76c588] | 220 | public:
|
---|
| 221 | OnConflict( const OnConflict& ) = default;
|
---|
| 222 |
|
---|
| 223 | static OnConflict error() { return {}; }
|
---|
[e67991f] | 224 | static OnConflict deleteWith( const Decl * d ) { return { d }; }
|
---|
[d76c588] | 225 | };
|
---|
| 226 |
|
---|
| 227 | /// true if the existing identifier conflicts with the added identifier
|
---|
| 228 | bool addedIdConflicts(
|
---|
[e67991f] | 229 | const IdData & existing, const DeclWithType * added, OnConflict handleConflicts,
|
---|
| 230 | const Decl * deleter );
|
---|
[d76c588] | 231 |
|
---|
[b9fe89b] | 232 | /// true if redeclaration conflict between two types
|
---|
| 233 | bool addedTypeConflicts( const NamedTypeDecl * existing, const NamedTypeDecl * added ) const;
|
---|
| 234 |
|
---|
| 235 | /// true if redeclaration conflict between two aggregate declarations
|
---|
| 236 | bool addedDeclConflicts( const AggregateDecl * existing, const AggregateDecl * added ) const;
|
---|
| 237 |
|
---|
[d76c588] | 238 | /// common code for addId, addDeletedId, etc.
|
---|
[d859a30] | 239 | void addIdCommon(
|
---|
| 240 | const DeclWithType * decl, OnConflict handleConflicts,
|
---|
| 241 | const Expr * baseExpr = nullptr, const Decl * deleter = nullptr );
|
---|
[d76c588] | 242 |
|
---|
[e5c3811] | 243 | /// common code for addId when special decls are placed into separate tables
|
---|
[d859a30] | 244 | void addIdToTable(
|
---|
| 245 | const DeclWithType * decl, const std::string & lookupKey,
|
---|
| 246 | IdTable::Ptr & idTable, OnConflict handleConflicts,
|
---|
[e5c3811] | 247 | const Expr * baseExpr = nullptr, const Decl * deleter = nullptr);
|
---|
[d859a30] | 248 |
|
---|
[d76c588] | 249 | /// adds all of the members of the Aggregate (addWith helper)
|
---|
| 250 | void addMembers( const AggregateDecl * aggr, const Expr * expr, OnConflict handleConflicts );
|
---|
| 251 |
|
---|
| 252 | /// returns true if there exists a declaration with C linkage and the given name with the same mangled name
|
---|
| 253 | bool hasCompatibleCDecl( const std::string &id, const std::string &mangleName ) const;
|
---|
| 254 | /// returns true if there exists a declaration with C linkage and the given name with a different mangled name
|
---|
| 255 | bool hasIncompatibleCDecl( const std::string &id, const std::string &mangleName ) const;
|
---|
| 256 | };
|
---|
| 257 |
|
---|
| 258 | }
|
---|
| 259 |
|
---|
[b9fe89b] | 260 |
|
---|
[d76c588] | 261 | // Local Variables: //
|
---|
| 262 | // tab-width: 4 //
|
---|
| 263 | // mode: c++ //
|
---|
| 264 | // compile-command: "make install" //
|
---|
[d859a30] | 265 | // End: //
|
---|