[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
|
---|
[4040425] | 11 | // Last Modified By : Peter A. Buhr
|
---|
[6d49ea3] | 12 | // Last Modified On : Thu Aug 17 16:09:12 2017
|
---|
| 13 | // Update Count : 8
|
---|
[0dd3a2f] | 14 | //
|
---|
| 15 |
|
---|
[6b0b624] | 16 | #pragma once
|
---|
[51b73452] | 17 |
|
---|
[30f9072] | 18 | #include <iosfwd> // for ostream
|
---|
| 19 | #include <list> // for list
|
---|
| 20 | #include <string> // for string
|
---|
[0ac366b] | 21 | #include <functional> // for function
|
---|
[51b73452] | 22 |
|
---|
[30f9072] | 23 | #include "SynTree/Visitor.h" // for Visitor
|
---|
| 24 | #include "SynTree/SynTree.h" // for AST nodes
|
---|
[51b73452] | 25 |
|
---|
[a181494] | 26 | namespace ResolvExpr {
|
---|
| 27 | class Cost;
|
---|
| 28 | }
|
---|
| 29 |
|
---|
[51b73452] | 30 | namespace SymTab {
|
---|
[33a25f9] | 31 | class Indexer {
|
---|
[a08ba92] | 32 | public:
|
---|
[8b11840] | 33 | explicit Indexer();
|
---|
[e8032b0] | 34 |
|
---|
| 35 | Indexer( const Indexer &that );
|
---|
| 36 | Indexer( Indexer &&that );
|
---|
[a08ba92] | 37 | virtual ~Indexer();
|
---|
[e8032b0] | 38 | Indexer& operator= ( const Indexer &that );
|
---|
| 39 | Indexer& operator= ( Indexer &&that );
|
---|
[17cd4eb] | 40 |
|
---|
[a08ba92] | 41 | // when using an indexer manually (e.g., within a mutator traversal), it is necessary to tell the indexer
|
---|
| 42 | // explicitly when scopes begin and end
|
---|
| 43 | void enterScope();
|
---|
| 44 | void leaveScope();
|
---|
[17cd4eb] | 45 |
|
---|
[a40d503] | 46 | struct IdData {
|
---|
[490ff5c3] | 47 | DeclarationWithType * id = nullptr;
|
---|
| 48 | Expression * baseExpr = nullptr; // WithExpr
|
---|
| 49 |
|
---|
| 50 | /// non-null if this declaration is deleted
|
---|
| 51 | BaseSyntaxNode * deleteStmt = nullptr;
|
---|
[a40d503] | 52 |
|
---|
[78d69da7] | 53 | // NOTE: shouldn't need either of these constructors, but gcc-4 does not properly support initializer lists with default members.
|
---|
| 54 | IdData() = default;
|
---|
| 55 | IdData( DeclarationWithType * id, Expression * baseExpr, BaseSyntaxNode * deleteStmt ) : id( id ), baseExpr( baseExpr ), deleteStmt( deleteStmt ) {}
|
---|
| 56 |
|
---|
[a181494] | 57 | Expression * combine( ResolvExpr::Cost & cost ) const;
|
---|
[a40d503] | 58 | };
|
---|
| 59 |
|
---|
[bed4c63e] | 60 | /// Gets all declarations with the given ID
|
---|
[a40d503] | 61 | void lookupId( const std::string &id, std::list< IdData > &out ) const;
|
---|
[bed4c63e] | 62 | /// Gets the top-most type declaration with the given ID
|
---|
[a08ba92] | 63 | NamedTypeDecl *lookupType( const std::string &id ) const;
|
---|
[bed4c63e] | 64 | /// Gets the top-most struct declaration with the given ID
|
---|
[a08ba92] | 65 | StructDecl *lookupStruct( const std::string &id ) const;
|
---|
[bed4c63e] | 66 | /// Gets the top-most enum declaration with the given ID
|
---|
[a08ba92] | 67 | EnumDecl *lookupEnum( const std::string &id ) const;
|
---|
[bed4c63e] | 68 | /// Gets the top-most union declaration with the given ID
|
---|
[a08ba92] | 69 | UnionDecl *lookupUnion( const std::string &id ) const;
|
---|
[bed4c63e] | 70 | /// Gets the top-most trait declaration with the given ID
|
---|
[4040425] | 71 | TraitDecl *lookupTrait( const std::string &id ) const;
|
---|
[1e1e15b] | 72 |
|
---|
[a08ba92] | 73 | void print( std::ostream &os, int indent = 0 ) const;
|
---|
[522363e] | 74 |
|
---|
[bed4c63e] | 75 | /// looks up a specific mangled ID at the given scope
|
---|
[0ac366b] | 76 | IdData * lookupIdAtScope( const std::string &id, const std::string &mangleName, unsigned long scope );
|
---|
| 77 | const IdData * lookupIdAtScope( const std::string &id, const std::string &mangleName, unsigned long scope ) const;
|
---|
[5447e09] | 78 | /// returns true if there exists a declaration with C linkage and the given name with a different mangled name
|
---|
[09d1ad0] | 79 | bool hasIncompatibleCDecl( const std::string &id, const std::string &mangleName, unsigned long scope ) const;
|
---|
[8884112] | 80 | /// returns true if there exists a declaration with C linkage and the given name with the same mangled name
|
---|
| 81 | bool hasCompatibleCDecl( const std::string &id, const std::string &mangleName, unsigned long scope ) const;
|
---|
[52c2a72] | 82 | // equivalents to lookup functions that only look at tables at scope `scope` (which should be >= tables->scope)
|
---|
| 83 | NamedTypeDecl *lookupTypeAtScope( const std::string &id, unsigned long scope ) const;
|
---|
| 84 | StructDecl *lookupStructAtScope( const std::string &id, unsigned long scope ) const;
|
---|
| 85 | EnumDecl *lookupEnumAtScope( const std::string &id, unsigned long scope ) const;
|
---|
| 86 | UnionDecl *lookupUnionAtScope( const std::string &id, unsigned long scope ) const;
|
---|
| 87 | TraitDecl *lookupTraitAtScope( const std::string &id, unsigned long scope ) const;
|
---|
[1e1e15b] | 88 |
|
---|
[0ac366b] | 89 | typedef std::function<bool(IdData &, const std::string &)> ConflictFunction;
|
---|
| 90 |
|
---|
| 91 | void addId( DeclarationWithType * decl, Expression * baseExpr = nullptr );
|
---|
| 92 | void addDeletedId( DeclarationWithType * decl, BaseSyntaxNode * deleteStmt );
|
---|
| 93 |
|
---|
[e8032b0] | 94 | void addType( NamedTypeDecl *decl );
|
---|
| 95 | void addStruct( const std::string &id );
|
---|
| 96 | void addStruct( StructDecl *decl );
|
---|
| 97 | void addEnum( EnumDecl *decl );
|
---|
| 98 | void addUnion( const std::string &id );
|
---|
| 99 | void addUnion( UnionDecl *decl );
|
---|
| 100 | void addTrait( TraitDecl *decl );
|
---|
[1e1e15b] | 101 |
|
---|
[81644e0] | 102 | /// adds all of the IDs from WithStmt exprs
|
---|
[0ac366b] | 103 | void addWith( std::list< Expression * > & withExprs, BaseSyntaxNode * withStmt );
|
---|
[81644e0] | 104 |
|
---|
[1485c1a] | 105 | /// adds all of the members of the Aggregate (addWith helper)
|
---|
[0ac366b] | 106 | void addMembers( AggregateDecl * aggr, Expression * expr, ConflictFunction );
|
---|
[1485c1a] | 107 |
|
---|
[5fe35d6] | 108 | /// convenience function for adding a list of Ids to the indexer
|
---|
| 109 | void addIds( const std::list< DeclarationWithType * > & decls );
|
---|
| 110 |
|
---|
| 111 | /// convenience function for adding a list of forall parameters to the indexer
|
---|
| 112 | void addTypes( const std::list< TypeDecl * > & tds );
|
---|
| 113 |
|
---|
| 114 | /// convenience function for adding all of the declarations in a function type to the indexer
|
---|
| 115 | void addFunctionType( FunctionType * ftype );
|
---|
| 116 |
|
---|
[8b11840] | 117 | bool doDebug = false; ///< Display debugging trace?
|
---|
[522363e] | 118 | private:
|
---|
[e8032b0] | 119 | struct Impl;
|
---|
[30f9072] | 120 |
|
---|
[52c2a72] | 121 | Impl *tables; ///< Copy-on-write instance of table data structure
|
---|
| 122 | unsigned long scope; ///< Scope index of this pointer
|
---|
[e8032b0] | 123 |
|
---|
| 124 | /// Takes a new ref to a table (returns null if null)
|
---|
| 125 | static Impl *newRef( Impl *toClone );
|
---|
| 126 | /// Clears a ref to a table (does nothing if null)
|
---|
| 127 | static void deleteRef( Impl *toFree );
|
---|
| 128 |
|
---|
[1ba88a0] | 129 | // Removes matching autogenerated constructors and destructors
|
---|
| 130 | // so that they will not be selected
|
---|
| 131 | // void removeSpecialOverrides( FunctionDecl *decl );
|
---|
[a40d503] | 132 | void removeSpecialOverrides( const std::string &id, std::list< IdData > & out ) const;
|
---|
[1ba88a0] | 133 |
|
---|
[52c2a72] | 134 | /// Ensures that tables variable is writable (i.e. allocated, uniquely owned by this Indexer, and at the current scope)
|
---|
[e8032b0] | 135 | void makeWritable();
|
---|
[0ac366b] | 136 |
|
---|
| 137 | /// common code for addId, addDeletedId, etc.
|
---|
| 138 | void addId( DeclarationWithType * decl, ConflictFunction, Expression * baseExpr = nullptr, BaseSyntaxNode * deleteStmt = nullptr );
|
---|
[a08ba92] | 139 | };
|
---|
[51b73452] | 140 | } // namespace SymTab
|
---|
| 141 |
|
---|
[0dd3a2f] | 142 | // Local Variables: //
|
---|
| 143 | // tab-width: 4 //
|
---|
| 144 | // mode: c++ //
|
---|
| 145 | // compile-command: "make install" //
|
---|
| 146 | // End: //
|
---|