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 : Rob Schluntz |
---|
12 | // Last Modified On : Thu Sep 17 16:05:38 2015 |
---|
13 | // Update Count : 5 |
---|
14 | // |
---|
15 | |
---|
16 | #ifndef INDEXER_H |
---|
17 | #define INDEXER_H |
---|
18 | |
---|
19 | #include <list> |
---|
20 | #include <string> |
---|
21 | |
---|
22 | #include "SynTree/Visitor.h" |
---|
23 | #include "IdTable.h" |
---|
24 | #include "AggregateTable.h" |
---|
25 | #include "TypeTable.h" |
---|
26 | |
---|
27 | namespace SymTab { |
---|
28 | class Indexer : public Visitor { |
---|
29 | public: |
---|
30 | Indexer( bool useDebug = false ); |
---|
31 | virtual ~Indexer(); |
---|
32 | |
---|
33 | //using Visitor::visit; |
---|
34 | virtual void visit( ObjectDecl *objectDecl ); |
---|
35 | virtual void visit( FunctionDecl *functionDecl ); |
---|
36 | virtual void visit( TypeDecl *typeDecl ); |
---|
37 | virtual void visit( TypedefDecl *typeDecl ); |
---|
38 | virtual void visit( StructDecl *aggregateDecl ); |
---|
39 | virtual void visit( UnionDecl *aggregateDecl ); |
---|
40 | virtual void visit( EnumDecl *aggregateDecl ); |
---|
41 | virtual void visit( ContextDecl *aggregateDecl ); |
---|
42 | |
---|
43 | virtual void visit( CompoundStmt *compoundStmt ); |
---|
44 | |
---|
45 | virtual void visit( ApplicationExpr *applicationExpr ); |
---|
46 | virtual void visit( UntypedExpr *untypedExpr ); |
---|
47 | virtual void visit( NameExpr *nameExpr ); |
---|
48 | virtual void visit( CastExpr *castExpr ); |
---|
49 | virtual void visit( AddressExpr *addressExpr ); |
---|
50 | virtual void visit( LabelAddressExpr *labAddressExpr ); |
---|
51 | virtual void visit( UntypedMemberExpr *memberExpr ); |
---|
52 | virtual void visit( MemberExpr *memberExpr ); |
---|
53 | virtual void visit( VariableExpr *variableExpr ); |
---|
54 | virtual void visit( ConstantExpr *constantExpr ); |
---|
55 | virtual void visit( SizeofExpr *sizeofExpr ); |
---|
56 | virtual void visit( AttrExpr *attrExpr ); |
---|
57 | virtual void visit( LogicalExpr *logicalExpr ); |
---|
58 | virtual void visit( ConditionalExpr *conditionalExpr ); |
---|
59 | virtual void visit( CommaExpr *commaExpr ); |
---|
60 | virtual void visit( TupleExpr *tupleExpr ); |
---|
61 | virtual void visit( SolvedTupleExpr *tupleExpr ); |
---|
62 | virtual void visit( TypeExpr *typeExpr ); |
---|
63 | virtual void visit( AsmExpr *asmExpr ); |
---|
64 | virtual void visit( UntypedValofExpr *valofExpr ); |
---|
65 | |
---|
66 | virtual void visit( ContextInstType *contextInst ); |
---|
67 | virtual void visit( StructInstType *contextInst ); |
---|
68 | virtual void visit( UnionInstType *contextInst ); |
---|
69 | |
---|
70 | virtual void visit( ForStmt *forStmt ); |
---|
71 | |
---|
72 | // when using an indexer manually (e.g., within a mutator traversal), it is necessary to tell the indexer |
---|
73 | // explicitly when scopes begin and end |
---|
74 | void enterScope(); |
---|
75 | void leaveScope(); |
---|
76 | |
---|
77 | void lookupId( const std::string &id, std::list< DeclarationWithType* >& ) const; |
---|
78 | DeclarationWithType* lookupId( const std::string &id) const; |
---|
79 | NamedTypeDecl *lookupType( const std::string &id ) const; |
---|
80 | StructDecl *lookupStruct( const std::string &id ) const; |
---|
81 | EnumDecl *lookupEnum( const std::string &id ) const; |
---|
82 | UnionDecl *lookupUnion( const std::string &id ) const; |
---|
83 | ContextDecl *lookupContext( const std::string &id ) const; |
---|
84 | |
---|
85 | void print( std::ostream &os, int indent = 0 ) const; |
---|
86 | private: |
---|
87 | IdTable idTable; |
---|
88 | TypeTable typeTable; |
---|
89 | StructTable structTable; |
---|
90 | EnumTable enumTable; |
---|
91 | UnionTable unionTable; |
---|
92 | ContextTable contextTable; |
---|
93 | |
---|
94 | bool doDebug; // display debugging trace |
---|
95 | }; |
---|
96 | } // namespace SymTab |
---|
97 | |
---|
98 | #endif // INDEXER_H |
---|
99 | |
---|
100 | // Local Variables: // |
---|
101 | // tab-width: 4 // |
---|
102 | // mode: c++ // |
---|
103 | // compile-command: "make install" // |
---|
104 | // End: // |
---|