source: src/AST/SymbolTable.hpp@ f2898df

Last change on this file since f2898df was 6a0b043, checked in by Andrew Beach <ajbeach@…>, 22 months ago

Did some investigation of WithStmt. It may not be possible to convert it to a Stmt without changing how SymbolTable handles the with clauses.

  • Property mode set to 100644
File size: 10.9 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// 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
26namespace ResolvExpr {
27 class Cost;
28}
29
30namespace ast {
31
32/// Builds and stores the symbol table, mapping identifiers to declarations.
33class SymbolTable final : public std::enable_shared_from_this<ast::SymbolTable> {
34public:
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
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)
43 readonly<Decl> deleter = nullptr; ///< Node deleting this declaration (if non-null)
44 unsigned long scope = 0; ///< Scope of identifier
45
46 IdData() = default;
47 IdData( const DeclWithType * i, const Expr * base, const Decl * del, unsigned long s )
48 : id( i ), baseExpr( base ), deleter( del ), scope( s ) {}
49
50 /// Create a new IdData, updating the deleter value.
51 IdData withDeleter( const Decl * decl ) const {
52 return IdData( id, baseExpr, decl, scope );
53 }
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
60private:
61 /// wraps a reference to D with a scope
62 template<typename D>
63 struct scoped {
64 readonly<D> decl; ///< wrapped declaration
65 unsigned long scope; ///< scope of this declaration
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
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;
88
89 using Ptr = std::shared_ptr<const SymbolTable>;
90
91 Ptr prevScope; ///< Symbol Table for parent scope
92 unsigned long scope; ///< Scope index of this indexer
93 unsigned long repScope; ///< Scope index of currently represented scope
94
95public:
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) {}
110 ~SymbolTable();
111
112 ErrorDetection getErrorMode() const {
113 return errorMode;
114 }
115
116 // when using an indexer manually (e.g., within a mutator traversal), it is necessary to
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;
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;
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
148 void addDeletedId( const DeclWithType * decl, const Decl * deleter );
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
153 void addStructId( const std::string & id );
154 /// Adds a struct declaration to the symbol table
155 void addStruct( const StructDecl * decl );
156 /// Adds an enum declaration to the symbol table
157 void addEnum( const EnumDecl * decl );
158 /// Adds a union declaration to the symbol table by name
159 void addUnionId( const std::string & id );
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
166 void addWith( const std::vector< ptr<Expr> > & withExprs, const Decl * withStmt );
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
175 void addFunction( const FunctionDecl * );
176
177private:
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
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
196 /// Removes matching autogenerated constructors and destructors so that they will not be
197 /// selected. If returns false, passed decl should not be added.
198 bool removeSpecialOverrides( IdData & decl, MangleTable::Ptr & mangleTable );
199
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.
210 struct OnConflict {
211 enum {
212 Error, ///< Follow the current pass's ErrorDetection mode (may throw a semantic error)
213 Delete ///< Delete the earlier version with the delete statement
214 } mode;
215 const Decl * deleter; ///< Statement that deletes this expression
216
217 private:
218 OnConflict() : mode(Error), deleter(nullptr) {}
219 OnConflict( const Decl * d ) : mode(Delete), deleter(d) {}
220 public:
221 OnConflict( const OnConflict& ) = default;
222
223 static OnConflict error() { return {}; }
224 static OnConflict deleteWith( const Decl * d ) { return { d }; }
225 };
226
227 /// true if the existing identifier conflicts with the added identifier
228 bool addedIdConflicts(
229 const IdData & existing, const DeclWithType * added, OnConflict handleConflicts,
230 const Decl * deleter );
231
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
238 /// common code for addId, addDeletedId, etc.
239 void addIdCommon(
240 const DeclWithType * decl, OnConflict handleConflicts,
241 const Expr * baseExpr = nullptr, const Decl * deleter = nullptr );
242
243 /// common code for addId when special decls are placed into separate tables
244 void addIdToTable(
245 const DeclWithType * decl, const std::string & lookupKey,
246 IdTable::Ptr & idTable, OnConflict handleConflicts,
247 const Expr * baseExpr = nullptr, const Decl * deleter = nullptr);
248
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
260
261// Local Variables: //
262// tab-width: 4 //
263// mode: c++ //
264// compile-command: "make install" //
265// End: //
Note: See TracBrowser for help on using the repository browser.