source: src/SynTree/Declaration.h@ e85a8631

ADT aaron-thesis arm-eh ast-experimental cleanup-dtors ctor 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 e85a8631 was 8b7ee09, checked in by Peter A. Buhr <pabuhr@…>, 9 years ago

rename type LinkageSpec::Type to LinkageSpec::Spec, which affects many files

  • Property mode set to 100644
File size: 10.5 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// Declaration.h --
8//
9// Author : Richard C. Bilson
10// Created On : Mon May 18 07:44:20 2015
11// Last Modified By : Peter A. Buhr
12// Last Modified On : Thu Aug 18 23:50:24 2016
13// Update Count : 40
14//
15
16#ifndef DECLARATION_H
17#define DECLARATION_H
18
19#include "SynTree.h"
20#include "Visitor.h"
21#include "Mutator.h"
22#include "Parser/LinkageSpec.h"
23#include "Parser/ParseNode.h"
24#include <string>
25
26class Declaration {
27 public:
28 Declaration( const std::string &name, DeclarationNode::StorageClass sc, LinkageSpec::Spec linkage );
29 Declaration( const Declaration &other );
30 virtual ~Declaration();
31
32 const std::string &get_name() const { return name; }
33 void set_name( std::string newValue ) { name = newValue; }
34 DeclarationNode::StorageClass get_storageClass() const { return storageClass; }
35 void set_storageClass( DeclarationNode::StorageClass newValue ) { storageClass = newValue; }
36 LinkageSpec::Spec get_linkage() const { return linkage; }
37 void set_linkage( LinkageSpec::Spec newValue ) { linkage = newValue; }
38 bool get_isInline() const { return isInline; }
39 void set_isInline( bool newValue ) { isInline = newValue; }
40 bool get_isNoreturn() const { return isNoreturn; }
41 void set_isNoreturn( bool newValue ) { isNoreturn = newValue; }
42 UniqueId get_uniqueId() const { return uniqueId; }
43 bool get_extension() const { return extension; }
44 Declaration *set_extension( bool exten ) { extension = exten; return this; }
45
46 void fixUniqueId( void );
47 virtual Declaration *clone() const = 0;
48 virtual void accept( Visitor &v ) = 0;
49 virtual Declaration *acceptMutator( Mutator &m ) = 0;
50 virtual void print( std::ostream &os, int indent = 0 ) const = 0;
51 virtual void printShort( std::ostream &os, int indent = 0 ) const = 0;
52
53 static void dumpIds( std::ostream &os );
54 static Declaration *declFromId( UniqueId id );
55 private:
56 std::string name;
57 DeclarationNode::StorageClass storageClass;
58 LinkageSpec::Spec linkage;
59 bool isInline, isNoreturn;
60 UniqueId uniqueId;
61 bool extension = false;
62};
63
64class DeclarationWithType : public Declaration {
65 public:
66 DeclarationWithType( const std::string &name, DeclarationNode::StorageClass sc, LinkageSpec::Spec linkage, const std::list< Attribute * > & attributes );
67 DeclarationWithType( const DeclarationWithType &other );
68 virtual ~DeclarationWithType();
69
70 std::string get_mangleName() const { return mangleName; }
71 void set_mangleName( std::string newValue ) { mangleName = newValue; }
72
73 std::string get_scopedMangleName() const { return mangleName + "_" + std::to_string(scopeLevel); }
74
75 int get_scopeLevel() const { return scopeLevel; }
76 void set_scopeLevel( int newValue ) { scopeLevel = newValue; }
77
78 std::list< Attribute * >& get_attributes() { return attributes; }
79 const std::list< Attribute * >& get_attributes() const { return attributes; }
80
81 virtual DeclarationWithType *clone() const = 0;
82 virtual DeclarationWithType *acceptMutator( Mutator &m ) = 0;
83
84 virtual Type *get_type() const = 0;
85 virtual void set_type(Type *) = 0;
86 private:
87 // this represents the type with all types and typedefs expanded it is generated by SymTab::Validate::Pass2
88 std::string mangleName;
89 // need to remember the scope level at which the variable was declared, so that
90 // shadowed identifiers can be accessed
91 int scopeLevel = 0;
92
93 std::list< Attribute * > attributes;
94};
95
96class ObjectDecl : public DeclarationWithType {
97 typedef DeclarationWithType Parent;
98 public:
99 ObjectDecl( const std::string &name, DeclarationNode::StorageClass sc, LinkageSpec::Spec linkage, Expression *bitfieldWidth, Type *type, Initializer *init, const std::list< Attribute * > attributes = std::list< Attribute * >(), bool isInline = false, bool isNoreturn = false );
100 ObjectDecl( const ObjectDecl &other );
101 virtual ~ObjectDecl();
102
103 virtual Type *get_type() const { return type; }
104 virtual void set_type(Type *newType) { type = newType; }
105
106 Initializer *get_init() const { return init; }
107 void set_init( Initializer *newValue ) { init = newValue; }
108 Expression *get_bitfieldWidth() const { return bitfieldWidth; }
109 void set_bitfieldWidth( Expression *newValue ) { bitfieldWidth = newValue; }
110
111 virtual ObjectDecl *clone() const { return new ObjectDecl( *this ); }
112 virtual void accept( Visitor &v ) { v.visit( this ); }
113 virtual DeclarationWithType *acceptMutator( Mutator &m ) { return m.mutate( this ); }
114 virtual void print( std::ostream &os, int indent = 0 ) const;
115 virtual void printShort( std::ostream &os, int indent = 0 ) const;
116 private:
117 Type *type;
118 Initializer *init;
119 Expression *bitfieldWidth;
120};
121
122class FunctionDecl : public DeclarationWithType {
123 typedef DeclarationWithType Parent;
124 public:
125 FunctionDecl( const std::string &name, DeclarationNode::StorageClass sc, LinkageSpec::Spec linkage, FunctionType *type, CompoundStmt *statements, bool isInline, bool isNoreturn, const std::list< Attribute * > attributes = std::list< Attribute * >() );
126 FunctionDecl( const FunctionDecl &other );
127 virtual ~FunctionDecl();
128
129 Type *get_type() const;
130 virtual void set_type(Type *);
131
132 FunctionType *get_functionType() const { return type; }
133 void set_functionType( FunctionType *newValue ) { type = newValue; }
134 CompoundStmt *get_statements() const { return statements; }
135 void set_statements( CompoundStmt *newValue ) { statements = newValue; }
136 std::list< std::string >& get_oldIdents() { return oldIdents; }
137 std::list< Declaration* >& get_oldDecls() { return oldDecls; }
138
139 virtual FunctionDecl *clone() const { return new FunctionDecl( *this ); }
140 virtual void accept( Visitor &v ) { v.visit( this ); }
141 virtual DeclarationWithType *acceptMutator( Mutator &m ) { return m.mutate( this ); }
142 virtual void print( std::ostream &os, int indent = 0 ) const;
143 virtual void printShort( std::ostream &os, int indent = 0 ) const;
144 private:
145 FunctionType *type;
146 CompoundStmt *statements;
147 std::list< std::string > oldIdents;
148 std::list< Declaration* > oldDecls;
149};
150
151class NamedTypeDecl : public Declaration {
152 typedef Declaration Parent;
153 public:
154 NamedTypeDecl( const std::string &name, DeclarationNode::StorageClass sc, Type *type );
155 NamedTypeDecl( const TypeDecl &other );
156 virtual ~NamedTypeDecl();
157
158 Type *get_base() const { return base; }
159 void set_base( Type *newValue ) { base = newValue; }
160 std::list< TypeDecl* >& get_parameters() { return parameters; }
161 std::list< DeclarationWithType* >& get_assertions() { return assertions; }
162
163 virtual NamedTypeDecl *clone() const = 0;
164 virtual void print( std::ostream &os, int indent = 0 ) const;
165 virtual void printShort( std::ostream &os, int indent = 0 ) const;
166 protected:
167 virtual std::string typeString() const = 0;
168 private:
169 Type *base;
170 std::list< TypeDecl* > parameters;
171 std::list< DeclarationWithType* > assertions;
172};
173
174class TypeDecl : public NamedTypeDecl {
175 typedef NamedTypeDecl Parent;
176 public:
177 enum Kind { Any, Dtype, Ftype };
178
179 TypeDecl( const std::string &name, DeclarationNode::StorageClass sc, Type *type, Kind kind );
180 TypeDecl( const TypeDecl &other );
181
182 Kind get_kind() const { return kind; }
183
184 virtual TypeDecl *clone() const { return new TypeDecl( *this ); }
185 virtual void accept( Visitor &v ) { v.visit( this ); }
186 virtual TypeDecl *acceptMutator( Mutator &m ) { return m.mutate( this ); }
187 private:
188 virtual std::string typeString() const;
189 Kind kind;
190};
191
192class TypedefDecl : public NamedTypeDecl {
193 typedef NamedTypeDecl Parent;
194 public:
195 TypedefDecl( const std::string &name, DeclarationNode::StorageClass sc, Type *type ) : Parent( name, sc, type ) {}
196 TypedefDecl( const TypedefDecl &other ) : Parent( other ) {}
197
198 virtual TypedefDecl *clone() const { return new TypedefDecl( *this ); }
199 virtual void accept( Visitor &v ) { v.visit( this ); }
200 virtual Declaration *acceptMutator( Mutator &m ) { return m.mutate( this ); }
201 private:
202 virtual std::string typeString() const;
203};
204
205class AggregateDecl : public Declaration {
206 typedef Declaration Parent;
207 public:
208 AggregateDecl( const std::string &name );
209 AggregateDecl( const AggregateDecl &other );
210 virtual ~AggregateDecl();
211
212 std::list<Declaration*>& get_members() { return members; }
213 std::list<TypeDecl*>& get_parameters() { return parameters; }
214
215 bool has_body() const { return body; }
216 AggregateDecl * set_body( bool body ) { AggregateDecl::body = body; return this; }
217
218 virtual void print( std::ostream &os, int indent = 0 ) const;
219 virtual void printShort( std::ostream &os, int indent = 0 ) const;
220 protected:
221 virtual std::string typeString() const = 0;
222
223 private:
224 std::list<Declaration*> members;
225 std::list<TypeDecl*> parameters;
226 bool body;
227};
228
229class StructDecl : public AggregateDecl {
230 typedef AggregateDecl Parent;
231 public:
232 StructDecl( const std::string &name ) : Parent( name ) {}
233 StructDecl( const StructDecl &other ) : Parent( other ) {}
234
235 virtual StructDecl *clone() const { return new StructDecl( *this ); }
236 virtual void accept( Visitor &v ) { v.visit( this ); }
237 virtual Declaration *acceptMutator( Mutator &m ) { return m.mutate( this ); }
238 private:
239 virtual std::string typeString() const;
240};
241
242class UnionDecl : public AggregateDecl {
243 typedef AggregateDecl Parent;
244 public:
245 UnionDecl( const std::string &name ) : Parent( name ) {}
246 UnionDecl( const UnionDecl &other ) : Parent( other ) {}
247
248 virtual UnionDecl *clone() const { return new UnionDecl( *this ); }
249 virtual void accept( Visitor &v ) { v.visit( this ); }
250 virtual Declaration *acceptMutator( Mutator &m ) { return m.mutate( this ); }
251 private:
252 virtual std::string typeString() const;
253};
254
255class EnumDecl : public AggregateDecl {
256 typedef AggregateDecl Parent;
257 public:
258 EnumDecl( const std::string &name ) : Parent( name ) {}
259 EnumDecl( const EnumDecl &other ) : Parent( other ) {}
260
261 virtual EnumDecl *clone() const { return new EnumDecl( *this ); }
262 virtual void accept( Visitor &v ) { v.visit( this ); }
263 virtual Declaration *acceptMutator( Mutator &m ) { return m.mutate( this ); }
264 private:
265 virtual std::string typeString() const;
266};
267
268class TraitDecl : public AggregateDecl {
269 typedef AggregateDecl Parent;
270 public:
271 TraitDecl( const std::string &name ) : Parent( name ) {}
272 TraitDecl( const TraitDecl &other ) : Parent( other ) {}
273
274 virtual TraitDecl *clone() const { return new TraitDecl( *this ); }
275 virtual void accept( Visitor &v ) { v.visit( this ); }
276 virtual Declaration *acceptMutator( Mutator &m ) { return m.mutate( this ); }
277 private:
278 virtual std::string typeString() const;
279};
280
281std::ostream & operator<<( std::ostream & out, Declaration * decl );
282
283#endif // DECLARATION_H
284
285// Local Variables: //
286// tab-width: 4 //
287// mode: c++ //
288// compile-command: "make install" //
289// End: //
Note: See TracBrowser for help on using the repository browser.