source: src/AST/Decl.hpp @ 5ccc733

Last change on this file since 5ccc733 was 5ccc733, checked in by JiadaL <j82liang@…>, 7 days ago

Fix the bug that C style enum cannot to use as an lvalue

  • Property mode set to 100644
File size: 15.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// Decl.hpp --
8//
9// Author           : Aaron B. Moss
10// Created On       : Thu May 9 10:00:00 2019
11// Last Modified By : Andrew Beach
12// Last Modified On : Wed Apr  5 10:42:00 2023
13// Update Count     : 35
14//
15
16#pragma once
17
18#include <iosfwd>
19#include <string>              // for string, to_string
20#include <unordered_map>
21#include <vector>
22#include <algorithm>
23
24#include "FunctionSpec.hpp"
25#include "Fwd.hpp"             // for UniqueId
26#include "LinkageSpec.hpp"
27#include "Node.hpp"            // for ptr, readonly
28#include "ParseNode.hpp"
29#include "StorageClasses.hpp"
30#include "Visitor.hpp"
31
32// Must be included in *all* AST classes; should be #undef'd at the end of the file
33#define MUTATE_FRIEND \
34        template<typename node_t> friend node_t * mutate(const node_t * node); \
35        template<typename node_t> friend node_t * shallowCopy(const node_t * node);
36
37namespace ast {
38
39/// Base declaration class
40class Decl : public ParseNode {
41public:
42        std::string name;
43        Storage::Classes storage;
44        Linkage::Spec linkage;
45        UniqueId uniqueId = 0;
46        bool extension = false;
47
48        Decl( const CodeLocation& loc, const std::string& name, Storage::Classes storage,
49                Linkage::Spec linkage )
50        : ParseNode( loc ), name( name ), storage( storage ), linkage( linkage ) {}
51
52        Decl* set_extension( bool ex ) { extension = ex; return this; }
53
54        /// Ensures this node has a unique ID
55        void fixUniqueId();
56
57        const Decl * accept( Visitor & v ) const override = 0;
58private:
59        Decl * clone() const override = 0;
60        MUTATE_FRIEND
61};
62
63/// Typed declaration base class
64class DeclWithType : public Decl {
65public:
66        /// Represents the type with all types and typedefs expanded.
67        std::string mangleName;
68        /// Stores the scope level at which the variable was declared.
69        /// Used to access shadowed identifiers.
70        int scopeLevel = 0;
71
72        std::vector<ptr<Attribute>> attributes;
73        Function::Specs funcSpec;
74        ptr<Expr> asmName;
75        bool isDeleted = false;
76        bool isTypeFixed = false;
77        bool isHidden = false;
78
79        DeclWithType( const CodeLocation& loc, const std::string& name, Storage::Classes storage,
80                Linkage::Spec linkage, std::vector<ptr<Attribute>>&& attrs, Function::Specs fs )
81        : Decl( loc, name, storage, linkage ), mangleName(), attributes( std::move(attrs) ),
82                funcSpec(fs), asmName() {}
83
84        std::string scopedMangleName() const { return mangleName + "_" + std::to_string(scopeLevel); }
85
86        /// Get type of this declaration. May be generated by subclass
87        virtual const Type * get_type() const = 0;
88        /// Set type of this declaration. May be verified by subclass
89        virtual void set_type( const Type * ) = 0;
90
91        const DeclWithType * accept( Visitor & v ) const override = 0;
92private:
93        DeclWithType * clone() const override = 0;
94        MUTATE_FRIEND
95};
96
97/// Object declaration `Foo foo = 42;`
98class ObjectDecl final : public DeclWithType {
99public:
100        ptr<Type> type;
101        ptr<Init> init;
102        ptr<Expr> bitfieldWidth;
103
104        ObjectDecl( const CodeLocation & loc, const std::string & name, const Type * type,
105                const Init * init = nullptr, Storage::Classes storage = {},
106                Linkage::Spec linkage = Linkage::Cforall, const Expr * bitWd = nullptr,
107                std::vector< ptr<Attribute> > && attrs = {}, Function::Specs fs = {} )
108        : DeclWithType( loc, name, storage, linkage, std::move(attrs), fs ), type( type ),
109          init( init ), bitfieldWidth( bitWd ) {}
110
111        const Type* get_type() const override { return type; }
112        void set_type( const Type * ty ) override { type = ty; }
113
114        const DeclWithType * accept( Visitor& v ) const override { return v.visit( this ); }
115private:
116        ObjectDecl * clone() const override { return new ObjectDecl{ *this }; }
117        MUTATE_FRIEND
118};
119
120/// Function variable arguments flag
121enum ArgumentFlag { FixedArgs, VariableArgs };
122
123/// Object declaration `int foo()`
124class FunctionDecl final : public DeclWithType {
125public:
126        std::vector<ptr<TypeDecl>> type_params;
127        std::vector<ptr<DeclWithType>> assertions;
128        std::vector<ptr<DeclWithType>> params;
129        std::vector<ptr<DeclWithType>> returns;
130        // declared type, derived from parameter declarations
131        ptr<FunctionType> type;
132        /// Null for the forward declaration of a function.
133        ptr<CompoundStmt> stmts;
134        std::vector< ptr<Expr> > withExprs;
135
136        /// Monomorphic Function Constructor:
137        FunctionDecl( const CodeLocation & locaction, const std::string & name,
138                std::vector<ptr<DeclWithType>>&& params, std::vector<ptr<DeclWithType>>&& returns,
139                CompoundStmt * stmts, Storage::Classes storage = {}, Linkage::Spec linkage = Linkage::Cforall,
140                std::vector<ptr<Attribute>>&& attrs = {}, Function::Specs fs = {}, ArgumentFlag isVarArgs = FixedArgs );
141
142        /// Polymorphic Function Constructor:
143        FunctionDecl( const CodeLocation & location, const std::string & name,
144                std::vector<ptr<TypeDecl>>&& forall, std::vector<ptr<DeclWithType>>&& assertions,
145                std::vector<ptr<DeclWithType>>&& params, std::vector<ptr<DeclWithType>>&& returns,
146                CompoundStmt * stmts, Storage::Classes storage = {}, Linkage::Spec linkage = Linkage::Cforall,
147                std::vector<ptr<Attribute>>&& attrs = {}, Function::Specs fs = {}, ArgumentFlag isVarArgs = FixedArgs );
148
149        const Type * get_type() const override;
150        void set_type( const Type * t ) override;
151
152        bool has_body() const { return stmts; }
153
154        const DeclWithType * accept( Visitor & v ) const override { return v.visit( this ); }
155private:
156        FunctionDecl * clone() const override { return new FunctionDecl( *this ); }
157        MUTATE_FRIEND
158};
159
160/// Base class for named type aliases
161class NamedTypeDecl : public Decl {
162public:
163        ptr<Type> base;
164        std::vector<ptr<DeclWithType>> assertions;
165
166        NamedTypeDecl(
167                const CodeLocation & loc, const std::string & name, Storage::Classes storage,
168                const Type * b, Linkage::Spec spec = Linkage::Cforall )
169        : Decl( loc, name, storage, spec ), base( b ), assertions() {}
170
171        /// Produces a name for the kind of alias
172        virtual const char * typeString() const = 0;
173
174private:
175        NamedTypeDecl* clone() const override = 0;
176        MUTATE_FRIEND
177};
178
179/// Cforall type variable: `dtype T`
180class TypeDecl final : public NamedTypeDecl {
181  public:
182        enum Kind { Dtype, DStype, Otype, Ftype, Ttype, Dimension, NUMBER_OF_KINDS };
183
184        Kind kind;
185        bool sized;
186        ptr<Type> init;
187
188        TypeDecl(
189                const CodeLocation & loc, const std::string & name, Storage::Classes storage,
190                const Type * b, TypeDecl::Kind k, bool s, const Type * i = nullptr )
191        : NamedTypeDecl( loc, name, storage, b ), kind( k ), sized( k == TypeDecl::Ttype || s ),
192          init( i ) {}
193
194        const char * typeString() const override;
195        /// Produces a name for generated code
196        const char * genTypeString() const;
197
198        /// convenience accessor to match Type::isComplete()
199        bool isComplete() const { return sized; }
200
201        const Decl * accept( Visitor & v ) const override { return v.visit( this ); }
202  private:
203        TypeDecl * clone() const override { return new TypeDecl{ *this }; }
204        MUTATE_FRIEND
205};
206
207/// Data extracted from a TypeDecl.
208struct TypeData {
209        TypeDecl::Kind kind;
210        bool isComplete;
211
212        TypeData() : kind( TypeDecl::NUMBER_OF_KINDS ), isComplete( false ) {}
213        TypeData( const TypeDecl * d ) : kind( d->kind ), isComplete( d->sized ) {}
214        TypeData( TypeDecl::Kind k, bool c ) : kind( k ), isComplete( c ) {}
215        TypeData( const TypeData & d1, const TypeData & d2 )
216                : kind( d1.kind ), isComplete( d1.isComplete || d2.isComplete ) {}
217
218        bool operator==( const TypeData & o ) const { return kind == o.kind && isComplete == o.isComplete; }
219        bool operator!=( const TypeData & o ) const { return !(*this == o); }
220};
221
222std::ostream & operator<< ( std::ostream &, const TypeData & );
223
224/// C-style typedef `typedef Foo Bar`
225class TypedefDecl final : public NamedTypeDecl {
226public:
227        TypedefDecl( const CodeLocation& loc, const std::string& name, Storage::Classes storage,
228                Type* b, Linkage::Spec spec = Linkage::Cforall )
229        : NamedTypeDecl( loc, name, storage, b, spec ) {}
230
231        const char * typeString() const override { return "typedef"; }
232
233        const Decl * accept( Visitor & v ) const override { return v.visit( this ); }
234private:
235        TypedefDecl * clone() const override { return new TypedefDecl{ *this }; }
236        MUTATE_FRIEND
237};
238
239/// Aggregate type declaration base class
240class AggregateDecl : public Decl {
241public:
242        enum Aggregate { Struct, Union, Enum, Exception, Trait, Generator, Coroutine, Monitor, Thread, NoAggregate };
243        static const char * aggrString( Aggregate aggr );
244
245        std::vector<ptr<Decl>> members;
246        std::vector<ptr<TypeDecl>> params;
247        std::vector<ptr<Attribute>> attributes;
248        bool body = false;
249        readonly<AggregateDecl> parent = {};
250
251        AggregateDecl( const CodeLocation& loc, const std::string& name,
252                std::vector<ptr<Attribute>>&& attrs = {}, Linkage::Spec linkage = Linkage::Cforall )
253        : Decl( loc, name, Storage::Classes{}, linkage ), members(), params(),
254          attributes( std::move(attrs) ) {}
255
256        AggregateDecl* set_body( bool b ) { body = b; return this; }
257
258        /// Produces a name for the kind of aggregate
259        virtual const char * typeString() const = 0;
260
261private:
262        AggregateDecl * clone() const override = 0;
263        MUTATE_FRIEND
264};
265
266/// struct declaration `struct Foo { ... };`
267class StructDecl final : public AggregateDecl {
268public:
269        Aggregate kind;
270
271        StructDecl( const CodeLocation& loc, const std::string& name,
272                Aggregate kind = Struct,
273                std::vector<ptr<Attribute>>&& attrs = {}, Linkage::Spec linkage = Linkage::Cforall )
274        : AggregateDecl( loc, name, std::move(attrs), linkage ), kind( kind ) {}
275
276        bool is_coroutine() const { return kind == Coroutine; }
277        bool is_generator() const { return kind == Generator; }
278        bool is_monitor  () const { return kind == Monitor  ; }
279        bool is_thread   () const { return kind == Thread   ; }
280
281        const Decl * accept( Visitor & v ) const override { return v.visit( this ); }
282
283        const char * typeString() const override { return aggrString( kind ); }
284
285private:
286        StructDecl * clone() const override { return new StructDecl{ *this }; }
287        MUTATE_FRIEND
288};
289
290/// union declaration `union Foo { ... };`
291class UnionDecl final : public AggregateDecl {
292public:
293        UnionDecl( const CodeLocation& loc, const std::string& name,
294                std::vector<ptr<Attribute>>&& attrs = {}, Linkage::Spec linkage = Linkage::Cforall )
295        : AggregateDecl( loc, name, std::move(attrs), linkage ) {}
296
297        const Decl * accept( Visitor& v ) const override { return v.visit( this ); }
298
299        const char * typeString() const override { return aggrString( Union ); }
300
301private:
302        UnionDecl * clone() const override { return new UnionDecl{ *this }; }
303        MUTATE_FRIEND
304};
305
306enum class EnumAttribute{ Value, Posn, Label };
307/// enum declaration `enum Foo { ... };`
308class EnumDecl final : public AggregateDecl {
309public:
310        // isCfa indicated if the enum has a declaration like:
311        // enum (type_optional) Name {...}
312        bool isCfa;
313        // if isCfa == true && base.get() == nullptr, it is a "opague" enum
314        ptr<Type> base;
315        enum class EnumHiding { Visible, Hide } hide;
316        std::vector< ast::ptr<ast::EnumInstType>> inlinedDecl; // child enums
317
318        EnumDecl( const CodeLocation& loc, const std::string& name, bool isCfa = false,
319                std::vector<ptr<Attribute>>&& attrs = {}, Linkage::Spec linkage = Linkage::Cforall,
320                Type const * base = nullptr, EnumHiding hide = EnumHiding::Hide,
321                std::unordered_map< std::string, long long > enumValues = std::unordered_map< std::string, long long >() )
322        : AggregateDecl( loc, name, std::move(attrs), linkage ), isCfa(isCfa), base(base), hide(hide), enumValues(enumValues) {}
323
324        /// gets the integer value for this enumerator, returning true iff value found
325        // Maybe it is not used in producing the enum value
326        bool valueOf( const Decl * enumerator, long long& value ) const;
327
328        const Decl * accept( Visitor & v ) const override { return v.visit( this ); }
329
330        const char * typeString() const override { return aggrString( Enum ); }
331
332        const std::string getUnmangeldArrayName( const EnumAttribute attr ) const;
333
334        unsigned calChildOffset(const std::string & childEnum) const;
335        unsigned calChildOffset(const ast::EnumInstType * childEnum) const;
336
337        bool isSubTypeOf(const ast::EnumDecl *) const;
338        bool isTyped() const;
339        bool isOpague() const;
340private:
341        EnumDecl * clone() const override { return new EnumDecl{ *this }; }
342        MUTATE_FRIEND
343
344        /// Map from names to enumerator values; kept private for lazy initialization
345        mutable std::unordered_map< std::string, long long > enumValues;
346};
347
348/// trait declaration `trait Foo( ... ) { ... };`
349class TraitDecl final : public AggregateDecl {
350public:
351        TraitDecl( const CodeLocation& loc, const std::string& name,
352                std::vector<ptr<Attribute>>&& attrs = {}, Linkage::Spec linkage = Linkage::Cforall )
353        : AggregateDecl( loc, name, std::move(attrs), linkage ) {}
354
355        const Decl * accept( Visitor & v ) const override { return v.visit( this ); }
356
357        const char * typeString() const override { return "trait"; }
358
359private:
360        TraitDecl * clone() const override { return new TraitDecl{ *this }; }
361        MUTATE_FRIEND
362};
363
364/// With statement `with (...) ...`
365/// This is a statement lexically, but a Decl is needed for the SymbolTable.
366class WithStmt final : public Decl {
367public:
368        std::vector<ptr<Expr>> exprs;
369        ptr<Stmt> stmt;
370
371        WithStmt( const CodeLocation & loc, std::vector<ptr<Expr>> && exprs, const Stmt * stmt )
372        : Decl(loc, "", Storage::Auto, Linkage::Cforall), exprs(std::move(exprs)), stmt(stmt) {}
373
374        const Decl * accept( Visitor & v ) const override { return v.visit( this ); }
375private:
376        WithStmt * clone() const override { return new WithStmt{ *this }; }
377        MUTATE_FRIEND
378};
379
380/// Assembly declaration: `asm ... ( "..." : ... )`
381class AsmDecl final : public Decl {
382public:
383        ptr<AsmStmt> stmt;
384
385        AsmDecl( const CodeLocation & loc, AsmStmt * stmt )
386        : Decl( loc, "", {}, Linkage::C ), stmt(stmt) {}
387
388        const AsmDecl * accept( Visitor & v ) const override { return v.visit( this ); }
389private:
390        AsmDecl * clone() const override { return new AsmDecl( *this ); }
391        MUTATE_FRIEND
392};
393
394/// C-preprocessor directive `#...`
395class DirectiveDecl final : public Decl {
396public:
397        ptr<DirectiveStmt> stmt;
398
399        DirectiveDecl( const CodeLocation & loc, DirectiveStmt * stmt )
400        : Decl( loc, "", {}, Linkage::C ), stmt(stmt) {}
401
402        const DirectiveDecl * accept( Visitor & v ) const override { return v.visit( this ); }
403private:
404        DirectiveDecl * clone() const override { return new DirectiveDecl( *this ); }
405        MUTATE_FRIEND
406};
407
408/// Static Assertion `_Static_assert( ... , ... );`
409class StaticAssertDecl final : public Decl {
410public:
411        ptr<Expr> cond;
412        ptr<ConstantExpr> msg;   // string literal
413
414        StaticAssertDecl( const CodeLocation & loc, const Expr * condition, const ConstantExpr * msg )
415        : Decl( loc, "", {}, Linkage::C ), cond( condition ), msg( msg ) {}
416
417        const StaticAssertDecl * accept( Visitor & v ) const override { return v.visit( this ); }
418private:
419        StaticAssertDecl * clone() const override { return new StaticAssertDecl( *this ); }
420        MUTATE_FRIEND
421};
422
423/// Inline Member Declaration `inline TypeName;`
424class InlineMemberDecl final : public DeclWithType {
425public:
426        ptr<Type> type;
427
428        InlineMemberDecl( const CodeLocation & loc, const std::string & name, const Type * type,
429                Storage::Classes storage = {}, Linkage::Spec linkage = Linkage::Cforall,
430                std::vector< ptr<Attribute> > && attrs = {}, Function::Specs fs = {} )
431        : DeclWithType( loc, name, storage, linkage, std::move(attrs), fs ), type( type ) {}
432
433        const Type * get_type() const override { return type; }
434        void set_type( const Type * ty ) override { type = ty; }
435
436        const DeclWithType * accept( Visitor& v ) const override { return v.visit( this ); }
437private:
438        InlineMemberDecl * clone() const override { return new InlineMemberDecl{ *this }; }
439        MUTATE_FRIEND
440};
441
442}
443
444#undef MUTATE_FRIEND
445
446// Local Variables: //
447// tab-width: 4 //
448// mode: c++ //
449// compile-command: "make install" //
450// End: //
Note: See TracBrowser for help on using the repository browser.