source: src/SynTree/Declaration.h@ b1e63ac5

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 b1e63ac5 was fa4805f, checked in by Andrew Beach <ajbeach@…>, 8 years ago

The builtins.cf now includes exception handling functions.

  • Property mode set to 100644
File size: 13.2 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 : Andrew Beach
12// Last Modified On : Tus Jun 27 15:31:00 2017
13// Update Count : 122
14//
15
16#ifndef DECLARATION_H
17#define DECLARATION_H
18
19#include <string>
20
21#include "BaseSyntaxNode.h"
22#include "Mutator.h"
23#include "Visitor.h"
24#include "SynTree.h"
25#include "Parser/LinkageSpec.h"
26#include "Parser/ParseNode.h"
27
28class Declaration : public BaseSyntaxNode {
29 public:
30 Declaration( const std::string &name, Type::StorageClasses scs, LinkageSpec::Spec linkage );
31 Declaration( const Declaration &other );
32 virtual ~Declaration();
33
34 const std::string &get_name() const { return name; }
35 void set_name( std::string newValue ) { name = newValue; }
36
37 Type::StorageClasses get_storageClasses() const { return storageClasses; }
38
39 LinkageSpec::Spec get_linkage() const { return linkage; }
40 void set_linkage( LinkageSpec::Spec newValue ) { linkage = newValue; }
41
42 UniqueId get_uniqueId() const { return uniqueId; }
43
44 bool get_extension() const { return extension; }
45 Declaration *set_extension( bool exten ) { extension = exten; return this; }
46
47 void fixUniqueId( void );
48 virtual Declaration *clone() const = 0;
49 virtual void accept( Visitor &v ) = 0;
50 virtual Declaration *acceptMutator( Mutator &m ) = 0;
51 virtual void print( std::ostream &os, int indent = 0 ) const = 0;
52 virtual void printShort( std::ostream &os, int indent = 0 ) const = 0;
53
54 static void dumpIds( std::ostream &os );
55 static Declaration *declFromId( UniqueId id );
56 private:
57 std::string name;
58 Type::StorageClasses storageClasses;
59 LinkageSpec::Spec linkage;
60 UniqueId uniqueId;
61 bool extension = false;
62};
63
64class DeclarationWithType : public Declaration {
65 public:
66 DeclarationWithType( const std::string &name, Type::StorageClasses scs, LinkageSpec::Spec linkage, const std::list< Attribute * > & attributes, Type::FuncSpecifiers fs );
67 DeclarationWithType( const DeclarationWithType &other );
68 virtual ~DeclarationWithType();
69
70 std::string get_mangleName() const { return mangleName; }
71 DeclarationWithType * set_mangleName( std::string newValue ) { mangleName = newValue; return this; }
72
73 std::string get_scopedMangleName() const { return mangleName + "_" + std::to_string(scopeLevel); }
74
75 int get_scopeLevel() const { return scopeLevel; }
76 DeclarationWithType * set_scopeLevel( int newValue ) { scopeLevel = newValue; return this; }
77
78 ConstantExpr *get_asmName() const { return asmName; }
79 DeclarationWithType * set_asmName( ConstantExpr *newValue ) { asmName = newValue; return this; }
80
81 std::list< Attribute * >& get_attributes() { return attributes; }
82 const std::list< Attribute * >& get_attributes() const { return attributes; }
83
84 Type::FuncSpecifiers get_funcSpec() const { return fs; }
85 //void set_functionSpecifiers( Type::FuncSpecifiers newValue ) { fs = newValue; }
86
87 virtual DeclarationWithType *clone() const = 0;
88 virtual DeclarationWithType *acceptMutator( Mutator &m ) = 0;
89
90 virtual Type *get_type() const = 0;
91 virtual void set_type(Type *) = 0;
92 private:
93 // this represents the type with all types and typedefs expanded it is generated by SymTab::Validate::Pass2
94 std::string mangleName;
95 // need to remember the scope level at which the variable was declared, so that shadowed identifiers can be accessed
96 int scopeLevel = 0;
97
98 ConstantExpr *asmName;
99 std::list< Attribute * > attributes;
100 Type::FuncSpecifiers fs;
101};
102
103class ObjectDecl : public DeclarationWithType {
104 typedef DeclarationWithType Parent;
105 public:
106 ObjectDecl( const std::string &name, Type::StorageClasses scs, LinkageSpec::Spec linkage, Expression *bitfieldWidth, Type *type, Initializer *init,
107 const std::list< Attribute * > attributes = std::list< Attribute * >(), Type::FuncSpecifiers fs = Type::FuncSpecifiers() );
108 ObjectDecl( const ObjectDecl &other );
109 virtual ~ObjectDecl();
110
111 virtual Type *get_type() const { return type; }
112 virtual void set_type(Type *newType) { type = newType; }
113
114 Initializer *get_init() const { return init; }
115 void set_init( Initializer *newValue ) { init = newValue; }
116
117 Expression *get_bitfieldWidth() const { return bitfieldWidth; }
118 void set_bitfieldWidth( Expression *newValue ) { bitfieldWidth = newValue; }
119
120 virtual ObjectDecl *clone() const { return new ObjectDecl( *this ); }
121 virtual void accept( Visitor &v ) { v.visit( this ); }
122 virtual DeclarationWithType *acceptMutator( Mutator &m ) { return m.mutate( this ); }
123 virtual void print( std::ostream &os, int indent = 0 ) const;
124 virtual void printShort( std::ostream &os, int indent = 0 ) const;
125 private:
126 Type *type;
127 Initializer *init;
128 Expression *bitfieldWidth;
129};
130
131class FunctionDecl : public DeclarationWithType {
132 typedef DeclarationWithType Parent;
133 public:
134 FunctionDecl( const std::string &name, Type::StorageClasses scs, LinkageSpec::Spec linkage, FunctionType *type, CompoundStmt *statements,
135 const std::list< Attribute * > attributes = std::list< Attribute * >(), Type::FuncSpecifiers fs = Type::FuncSpecifiers() );
136 FunctionDecl( const FunctionDecl &other );
137 virtual ~FunctionDecl();
138
139 Type *get_type() const;
140 virtual void set_type(Type *);
141
142 FunctionType *get_functionType() const { return type; }
143 void set_functionType( FunctionType *newValue ) { type = newValue; }
144 CompoundStmt *get_statements() const { return statements; }
145 void set_statements( CompoundStmt *newValue ) { statements = newValue; }
146
147 virtual FunctionDecl *clone() const { return new FunctionDecl( *this ); }
148 virtual void accept( Visitor &v ) { v.visit( this ); }
149 virtual DeclarationWithType *acceptMutator( Mutator &m ) { return m.mutate( this ); }
150 virtual void print( std::ostream &os, int indent = 0 ) const;
151 virtual void printShort( std::ostream &os, int indent = 0 ) const;
152 private:
153 FunctionType *type;
154 CompoundStmt *statements;
155};
156
157class NamedTypeDecl : public Declaration {
158 typedef Declaration Parent;
159 public:
160 NamedTypeDecl( const std::string &name, Type::StorageClasses scs, Type *type );
161 NamedTypeDecl( const NamedTypeDecl &other );
162 virtual ~NamedTypeDecl();
163
164 Type *get_base() const { return base; }
165 void set_base( Type *newValue ) { base = newValue; }
166 std::list< TypeDecl* >& get_parameters() { return parameters; }
167 std::list< DeclarationWithType* >& get_assertions() { return assertions; }
168
169 virtual std::string typeString() const = 0;
170
171 virtual NamedTypeDecl *clone() const = 0;
172 virtual void print( std::ostream &os, int indent = 0 ) const;
173 virtual void printShort( std::ostream &os, int indent = 0 ) const;
174 protected:
175 private:
176 Type *base;
177 std::list< TypeDecl* > parameters;
178 std::list< DeclarationWithType* > assertions;
179};
180
181class TypeDecl : public NamedTypeDecl {
182 typedef NamedTypeDecl Parent;
183 public:
184 enum Kind { Any, Dtype, Ftype, Ttype };
185 /// Data extracted from a type decl
186 struct Data {
187 TypeDecl::Kind kind;
188 bool isComplete;
189 Data() : kind( (TypeDecl::Kind)-1 ), isComplete( false ) {}
190 Data( TypeDecl * typeDecl ) : Data( typeDecl->get_kind(), typeDecl->isComplete() ) {}
191 Data( Kind kind, bool isComplete ) : kind( kind ), isComplete( isComplete ) {}
192 bool operator==(const Data & other) const { return kind == other.kind && isComplete == other.isComplete; }
193 bool operator!=(const Data & other) const { return !(*this == other);}
194 };
195
196 TypeDecl( const std::string &name, Type::StorageClasses scs, Type *type, Kind kind, Type * init = nullptr );
197 TypeDecl( const TypeDecl &other );
198 virtual ~TypeDecl();
199
200 Kind get_kind() const { return kind; }
201
202 Type * get_init() const { return init; }
203 TypeDecl * set_init( Type * newValue ) { init = newValue; return this; }
204
205 bool isComplete() const { return kind == Any || sized; }
206 bool get_sized() const { return sized; }
207 TypeDecl * set_sized( bool newValue ) { sized = newValue; return this; }
208
209 virtual std::string typeString() const;
210 virtual std::string genTypeString() const;
211
212 virtual TypeDecl *clone() const { return new TypeDecl( *this ); }
213 virtual void accept( Visitor &v ) { v.visit( this ); }
214 virtual TypeDecl *acceptMutator( Mutator &m ) { return m.mutate( this ); }
215 virtual void print( std::ostream &os, int indent = 0 ) const;
216
217 private:
218 Kind kind;
219 Type * init;
220 bool sized;
221};
222
223class TypedefDecl : public NamedTypeDecl {
224 typedef NamedTypeDecl Parent;
225 public:
226 TypedefDecl( const std::string &name, Type::StorageClasses scs, Type *type ) : Parent( name, scs, type ) {}
227 TypedefDecl( const TypedefDecl &other ) : Parent( other ) {}
228
229 virtual std::string typeString() const;
230
231 virtual TypedefDecl *clone() const { return new TypedefDecl( *this ); }
232 virtual void accept( Visitor &v ) { v.visit( this ); }
233 virtual Declaration *acceptMutator( Mutator &m ) { return m.mutate( this ); }
234 private:
235};
236
237class AggregateDecl : public Declaration {
238 typedef Declaration Parent;
239 public:
240 AggregateDecl( const std::string &name, const std::list< Attribute * > & attributes = std::list< class Attribute * >(), LinkageSpec::Spec linkage = LinkageSpec::Cforall );
241 AggregateDecl( const AggregateDecl &other );
242 virtual ~AggregateDecl();
243
244 std::list<Declaration*>& get_members() { return members; }
245 std::list<TypeDecl*>& get_parameters() { return parameters; }
246
247 std::list< Attribute * >& get_attributes() { return attributes; }
248 const std::list< Attribute * >& get_attributes() const { return attributes; }
249
250 bool has_body() const { return body; }
251 AggregateDecl * set_body( bool body ) { AggregateDecl::body = body; return this; }
252
253 virtual void print( std::ostream &os, int indent = 0 ) const;
254 virtual void printShort( std::ostream &os, int indent = 0 ) const;
255 protected:
256 virtual std::string typeString() const = 0;
257
258 private:
259 std::list<Declaration*> members;
260 std::list<TypeDecl*> parameters;
261 bool body;
262 std::list< Attribute * > attributes;
263};
264
265class StructDecl : public AggregateDecl {
266 typedef AggregateDecl Parent;
267 public:
268 StructDecl( const std::string &name, DeclarationNode::Aggregate kind = DeclarationNode::Struct, const std::list< Attribute * > & attributes = std::list< class Attribute * >(), LinkageSpec::Spec linkage = LinkageSpec::Cforall ) : Parent( name, attributes, linkage ), kind( kind ) {}
269 StructDecl( const StructDecl &other ) : Parent( other ) {}
270
271 bool is_coroutine() { return kind == DeclarationNode::Coroutine; }
272 bool is_monitor() { return kind == DeclarationNode::Monitor; }
273 bool is_thread() { return kind == DeclarationNode::Thread; }
274
275 virtual StructDecl *clone() const { return new StructDecl( *this ); }
276 virtual void accept( Visitor &v ) { v.visit( this ); }
277 virtual Declaration *acceptMutator( Mutator &m ) { return m.mutate( this ); }
278 private:
279 DeclarationNode::Aggregate kind;
280 virtual std::string typeString() const;
281};
282
283class UnionDecl : public AggregateDecl {
284 typedef AggregateDecl Parent;
285 public:
286 UnionDecl( const std::string &name, const std::list< Attribute * > & attributes = std::list< class Attribute * >(), LinkageSpec::Spec linkage = LinkageSpec::Cforall ) : Parent( name, attributes, linkage ) {}
287 UnionDecl( const UnionDecl &other ) : Parent( other ) {}
288
289 virtual UnionDecl *clone() const { return new UnionDecl( *this ); }
290 virtual void accept( Visitor &v ) { v.visit( this ); }
291 virtual Declaration *acceptMutator( Mutator &m ) { return m.mutate( this ); }
292 private:
293 virtual std::string typeString() const;
294};
295
296class EnumDecl : public AggregateDecl {
297 typedef AggregateDecl Parent;
298 public:
299 EnumDecl( const std::string &name, const std::list< Attribute * > & attributes = std::list< class Attribute * >(), LinkageSpec::Spec linkage = LinkageSpec::Cforall ) : Parent( name, attributes, linkage ) {}
300 EnumDecl( const EnumDecl &other ) : Parent( other ) {}
301
302 virtual EnumDecl *clone() const { return new EnumDecl( *this ); }
303 virtual void accept( Visitor &v ) { v.visit( this ); }
304 virtual Declaration *acceptMutator( Mutator &m ) { return m.mutate( this ); }
305 private:
306 virtual std::string typeString() const;
307};
308
309class TraitDecl : public AggregateDecl {
310 typedef AggregateDecl Parent;
311 public:
312 TraitDecl( const std::string &name, const std::list< Attribute * > & attributes ) : Parent( name ) {
313 assertf( attributes.empty(), "attribute unsupported for traits" );
314 }
315 TraitDecl( const TraitDecl &other ) : Parent( other ) {}
316
317 virtual TraitDecl *clone() const { return new TraitDecl( *this ); }
318 virtual void accept( Visitor &v ) { v.visit( this ); }
319 virtual Declaration *acceptMutator( Mutator &m ) { return m.mutate( this ); }
320 private:
321 virtual std::string typeString() const;
322};
323
324class AsmDecl : public Declaration {
325 public:
326 AsmDecl( AsmStmt *stmt );
327 AsmDecl( const AsmDecl &other );
328 virtual ~AsmDecl();
329
330 AsmStmt *get_stmt() { return stmt; }
331 void set_stmt( AsmStmt *newValue ) { stmt = newValue; }
332
333 virtual AsmDecl *clone() const { return new AsmDecl( *this ); }
334 virtual void accept( Visitor &v ) { v.visit( this ); }
335 virtual AsmDecl *acceptMutator( Mutator &m ) { return m.mutate( this ); }
336 virtual void print( std::ostream &os, int indent = 0 ) const;
337 virtual void printShort( std::ostream &os, int indent = 0 ) const;
338 private:
339 AsmStmt *stmt;
340};
341
342std::ostream & operator<<( std::ostream & out, const Declaration * decl );
343std::ostream & operator<<( std::ostream & os, const TypeDecl::Data & data );
344
345#endif // DECLARATION_H
346
347// Local Variables: //
348// tab-width: 4 //
349// mode: c++ //
350// compile-command: "make install" //
351// End: //
Note: See TracBrowser for help on using the repository browser.