source: src/SynTree/Declaration.h @ 7862059

ADTaaron-thesisarm-ehast-experimentalcleanup-dtorsdeferred_resndemanglerenumforall-pointer-decayjacob/cs343-translationjenkins-sandboxnew-astnew-ast-unique-exprnew-envno_listpersistent-indexerpthread-emulationqualifiedEnumwith_gc
Last change on this file since 7862059 was f6e3e34, checked in by Rob Schluntz <rschlunt@…>, 6 years ago

Add StaticAssertDecl? node

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