source: src/SymTab/Indexer.h@ 44b4114

ADT aaron-thesis arm-eh ast-experimental cleanup-dtors deferred_resn demangler enum forall-pointer-decay jacob/cs343-translation jenkins-sandbox new-ast new-ast-unique-expr new-env no_list persistent-indexer pthread-emulation qualifiedEnum resolv-new with_gc
Last change on this file since 44b4114 was 490ff5c3, checked in by Rob Schluntz <rschlunt@…>, 8 years ago

Minor code cleanup

  • Property mode set to 100644
File size: 5.1 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
[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
[51b73452]21
[30f9072]22#include "SynTree/Visitor.h" // for Visitor
23#include "SynTree/SynTree.h" // for AST nodes
[51b73452]24
25namespace SymTab {
[33a25f9]26 class Indexer {
[a08ba92]27 public:
[8b11840]28 explicit Indexer();
[e8032b0]29
30 Indexer( const Indexer &that );
31 Indexer( Indexer &&that );
[a08ba92]32 virtual ~Indexer();
[e8032b0]33 Indexer& operator= ( const Indexer &that );
34 Indexer& operator= ( Indexer &&that );
[17cd4eb]35
[a08ba92]36 // when using an indexer manually (e.g., within a mutator traversal), it is necessary to tell the indexer
37 // explicitly when scopes begin and end
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;
[a40d503]47
48 Expression * combine() const;
49 };
50
[bed4c63e]51 /// Gets all declarations with the given ID
[a40d503]52 void lookupId( const std::string &id, std::list< IdData > &out ) const;
[bed4c63e]53 /// Gets the top-most type declaration with the given ID
[a08ba92]54 NamedTypeDecl *lookupType( const std::string &id ) const;
[bed4c63e]55 /// Gets the top-most struct declaration with the given ID
[a08ba92]56 StructDecl *lookupStruct( const std::string &id ) const;
[bed4c63e]57 /// Gets the top-most enum declaration with the given ID
[a08ba92]58 EnumDecl *lookupEnum( const std::string &id ) const;
[bed4c63e]59 /// Gets the top-most union declaration with the given ID
[a08ba92]60 UnionDecl *lookupUnion( const std::string &id ) const;
[bed4c63e]61 /// Gets the top-most trait declaration with the given ID
[4040425]62 TraitDecl *lookupTrait( const std::string &id ) const;
[1e1e15b]63
[a08ba92]64 void print( std::ostream &os, int indent = 0 ) const;
[522363e]65
[bed4c63e]66 /// looks up a specific mangled ID at the given scope
67 DeclarationWithType *lookupIdAtScope( const std::string &id, const std::string &mangleName, unsigned long scope ) const;
[5447e09]68 /// returns true if there exists a declaration with C linkage and the given name with a different mangled name
[09d1ad0]69 bool hasIncompatibleCDecl( const std::string &id, const std::string &mangleName, unsigned long scope ) const;
[8884112]70 /// returns true if there exists a declaration with C linkage and the given name with the same mangled name
71 bool hasCompatibleCDecl( const std::string &id, const std::string &mangleName, unsigned long scope ) const;
[52c2a72]72 // equivalents to lookup functions that only look at tables at scope `scope` (which should be >= tables->scope)
73 NamedTypeDecl *lookupTypeAtScope( const std::string &id, unsigned long scope ) const;
74 StructDecl *lookupStructAtScope( const std::string &id, unsigned long scope ) const;
75 EnumDecl *lookupEnumAtScope( const std::string &id, unsigned long scope ) const;
76 UnionDecl *lookupUnionAtScope( const std::string &id, unsigned long scope ) const;
77 TraitDecl *lookupTraitAtScope( const std::string &id, unsigned long scope ) const;
[1e1e15b]78
[a40d503]79 void addId( DeclarationWithType *decl, Expression * baseExpr = nullptr );
[e8032b0]80 void addType( NamedTypeDecl *decl );
81 void addStruct( const std::string &id );
82 void addStruct( StructDecl *decl );
83 void addEnum( EnumDecl *decl );
84 void addUnion( const std::string &id );
85 void addUnion( UnionDecl *decl );
86 void addTrait( TraitDecl *decl );
[1e1e15b]87
[81644e0]88 /// adds all of the IDs from WithStmt exprs
[4670c79]89 void addWith( std::list< Expression * > & withExprs );
[81644e0]90
[1485c1a]91 /// adds all of the members of the Aggregate (addWith helper)
92 void addMembers( AggregateDecl * aggr, Expression * expr );
93
[5fe35d6]94 /// convenience function for adding a list of Ids to the indexer
95 void addIds( const std::list< DeclarationWithType * > & decls );
96
97 /// convenience function for adding a list of forall parameters to the indexer
98 void addTypes( const std::list< TypeDecl * > & tds );
99
100 /// convenience function for adding all of the declarations in a function type to the indexer
101 void addFunctionType( FunctionType * ftype );
102
[8b11840]103 bool doDebug = false; ///< Display debugging trace?
[522363e]104 private:
[e8032b0]105 struct Impl;
[30f9072]106
[52c2a72]107 Impl *tables; ///< Copy-on-write instance of table data structure
108 unsigned long scope; ///< Scope index of this pointer
[e8032b0]109
110 /// Takes a new ref to a table (returns null if null)
111 static Impl *newRef( Impl *toClone );
112 /// Clears a ref to a table (does nothing if null)
113 static void deleteRef( Impl *toFree );
114
[1ba88a0]115 // Removes matching autogenerated constructors and destructors
116 // so that they will not be selected
117 // void removeSpecialOverrides( FunctionDecl *decl );
[a40d503]118 void removeSpecialOverrides( const std::string &id, std::list< IdData > & out ) const;
[1ba88a0]119
[52c2a72]120 /// Ensures that tables variable is writable (i.e. allocated, uniquely owned by this Indexer, and at the current scope)
[e8032b0]121 void makeWritable();
[a08ba92]122 };
[51b73452]123} // namespace SymTab
124
[0dd3a2f]125// Local Variables: //
126// tab-width: 4 //
127// mode: c++ //
128// compile-command: "make install" //
129// End: //
Note: See TracBrowser for help on using the repository browser.