source: src/AST/Decl.hpp @ b5978ca

Last change on this file since b5978ca was 90e683b, checked in by Andrew Beach <ajbeach@…>, 3 months ago

I set out to do a enum rework. It ended up being much the same and I unwound the core rework. But I hope the new names are a bit clearer and other minor fixes are helpful, so I am keeping those.

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