source: src/SymTab/Indexer.h@ 46adb83

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 46adb83 was af5c204a, checked in by Rob Schluntz <rschlunt@…>, 8 years ago

remove UntypedValOfExpr and hook in build for StmtExpr

  • Property mode set to 100644
File size: 6.3 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// Indexer.h --
8//
9// Author : Richard C. Bilson
10// Created On : Sun May 17 21:38:55 2015
11// Last Modified By : Peter A. Buhr
12// Last Modified On : Wed Mar 2 17:34:14 2016
13// Update Count : 6
14//
15
16#ifndef INDEXER_H
17#define INDEXER_H
18
19#include <list>
20#include <string>
21
22#include "SynTree/Visitor.h"
23
24namespace SymTab {
25 class Indexer : public Visitor {
26 public:
27 explicit Indexer( bool useDebug = false );
28
29 Indexer( const Indexer &that );
30 Indexer( Indexer &&that );
31 virtual ~Indexer();
32 Indexer& operator= ( const Indexer &that );
33 Indexer& operator= ( Indexer &&that );
34
35 using Visitor::visit;
36 virtual void visit( ObjectDecl *objectDecl );
37 virtual void visit( FunctionDecl *functionDecl );
38 virtual void visit( TypeDecl *typeDecl );
39 virtual void visit( TypedefDecl *typeDecl );
40 virtual void visit( StructDecl *aggregateDecl );
41 virtual void visit( UnionDecl *aggregateDecl );
42 virtual void visit( EnumDecl *aggregateDecl );
43 virtual void visit( TraitDecl *aggregateDecl );
44
45 virtual void visit( CompoundStmt *compoundStmt );
46
47 virtual void visit( ApplicationExpr *applicationExpr );
48 virtual void visit( UntypedExpr *untypedExpr );
49 virtual void visit( NameExpr *nameExpr );
50 virtual void visit( CastExpr *castExpr );
51 virtual void visit( AddressExpr *addressExpr );
52 virtual void visit( LabelAddressExpr *labAddressExpr );
53 virtual void visit( UntypedMemberExpr *memberExpr );
54 virtual void visit( MemberExpr *memberExpr );
55 virtual void visit( VariableExpr *variableExpr );
56 virtual void visit( ConstantExpr *constantExpr );
57 virtual void visit( SizeofExpr *sizeofExpr );
58 virtual void visit( AlignofExpr *alignofExpr );
59 virtual void visit( UntypedOffsetofExpr *offsetofExpr );
60 virtual void visit( OffsetofExpr *offsetofExpr );
61 virtual void visit( OffsetPackExpr *offsetPackExpr );
62 virtual void visit( AttrExpr *attrExpr );
63 virtual void visit( LogicalExpr *logicalExpr );
64 virtual void visit( ConditionalExpr *conditionalExpr );
65 virtual void visit( CommaExpr *commaExpr );
66 virtual void visit( TypeExpr *typeExpr );
67 virtual void visit( AsmExpr *asmExpr );
68 virtual void visit( ImplicitCopyCtorExpr *impCpCtorExpr );
69 virtual void visit( ConstructorExpr * ctorExpr );
70 virtual void visit( CompoundLiteralExpr *compLitExpr );
71 virtual void visit( RangeExpr *rangeExpr );
72 virtual void visit( UntypedTupleExpr *tupleExpr );
73 virtual void visit( TupleExpr *tupleExpr );
74 virtual void visit( TupleIndexExpr *tupleExpr );
75 virtual void visit( TupleAssignExpr *tupleExpr );
76 virtual void visit( StmtExpr * stmtExpr );
77 virtual void visit( UniqueExpr * uniqueExpr );
78
79 virtual void visit( TraitInstType *contextInst );
80 virtual void visit( StructInstType *contextInst );
81 virtual void visit( UnionInstType *contextInst );
82
83 virtual void visit( ForStmt *forStmt );
84
85 // when using an indexer manually (e.g., within a mutator traversal), it is necessary to tell the indexer
86 // explicitly when scopes begin and end
87 void enterScope();
88 void leaveScope();
89
90 /// Gets all declarations with the given ID
91 void lookupId( const std::string &id, std::list< DeclarationWithType* > &out ) const;
92 /// Gets the top-most type declaration with the given ID
93 NamedTypeDecl *lookupType( const std::string &id ) const;
94 /// Gets the top-most struct declaration with the given ID
95 StructDecl *lookupStruct( const std::string &id ) const;
96 /// Gets the top-most enum declaration with the given ID
97 EnumDecl *lookupEnum( const std::string &id ) const;
98 /// Gets the top-most union declaration with the given ID
99 UnionDecl *lookupUnion( const std::string &id ) const;
100 /// Gets the top-most trait declaration with the given ID
101 TraitDecl *lookupTrait( const std::string &id ) const;
102
103 void print( std::ostream &os, int indent = 0 ) const;
104 private:
105 /// looks up a specific mangled ID at the given scope
106 DeclarationWithType *lookupIdAtScope( const std::string &id, const std::string &mangleName, unsigned long scope ) const;
107 /// returns true if there exists a declaration with C linkage and the given name with a different mangled name
108 bool hasIncompatibleCDecl( const std::string &id, const std::string &mangleName, unsigned long scope ) const;
109 /// returns true if there exists a declaration with C linkage and the given name with the same mangled name
110 bool hasCompatibleCDecl( const std::string &id, const std::string &mangleName, unsigned long scope ) const;
111 // equivalents to lookup functions that only look at tables at scope `scope` (which should be >= tables->scope)
112 NamedTypeDecl *lookupTypeAtScope( const std::string &id, unsigned long scope ) const;
113 StructDecl *lookupStructAtScope( const std::string &id, unsigned long scope ) const;
114 EnumDecl *lookupEnumAtScope( const std::string &id, unsigned long scope ) const;
115 UnionDecl *lookupUnionAtScope( const std::string &id, unsigned long scope ) const;
116 TraitDecl *lookupTraitAtScope( const std::string &id, unsigned long scope ) const;
117
118 void addId( DeclarationWithType *decl );
119 void addType( NamedTypeDecl *decl );
120 void addStruct( const std::string &id );
121 void addStruct( StructDecl *decl );
122 void addEnum( EnumDecl *decl );
123 void addUnion( const std::string &id );
124 void addUnion( UnionDecl *decl );
125 void addTrait( TraitDecl *decl );
126
127 struct Impl;
128 Impl *tables; ///< Copy-on-write instance of table data structure
129 unsigned long scope; ///< Scope index of this pointer
130 bool doDebug; ///< Display debugging trace?
131
132 /// Takes a new ref to a table (returns null if null)
133 static Impl *newRef( Impl *toClone );
134 /// Clears a ref to a table (does nothing if null)
135 static void deleteRef( Impl *toFree );
136
137 // Removes matching autogenerated constructors and destructors
138 // so that they will not be selected
139 // void removeSpecialOverrides( FunctionDecl *decl );
140 void removeSpecialOverrides( const std::string &id, std::list< DeclarationWithType * > & out ) const;
141
142 /// Ensures that tables variable is writable (i.e. allocated, uniquely owned by this Indexer, and at the current scope)
143 void makeWritable();
144 };
145} // namespace SymTab
146
147#endif // INDEXER_H
148
149// Local Variables: //
150// tab-width: 4 //
151// mode: c++ //
152// compile-command: "make install" //
153// End: //
Note: See TracBrowser for help on using the repository browser.