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

Last change on this file since 5bf685f was 5bf685f, checked in by Andrew Beach <ajbeach@…>, 5 months ago

Replayed maybeClone with maybeCopy, removed unused helppers in utility.h and pushed some includes out of headers.

  • Property mode set to 100644
File size: 14.9 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
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/// Object 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/// enum declaration `enum Foo { ... };`
306class EnumDecl final : public AggregateDecl {
307public:
308        // isTyped indicated if the enum has a declaration like:
309        // enum (type_optional) Name {...}
310        bool isTyped;
311        // if isTyped == true && base.get() == nullptr, it is a "void" type enum
312        ptr<Type> base;
313        enum class EnumHiding { Visible, Hide } hide;
314
315        EnumDecl( const CodeLocation& loc, const std::string& name, bool isTyped = false,
316                std::vector<ptr<Attribute>>&& attrs = {}, Linkage::Spec linkage = Linkage::Cforall,
317                Type const * base = nullptr, EnumHiding hide = EnumHiding::Hide,
318                std::unordered_map< std::string, long long > enumValues = std::unordered_map< std::string, long long >() )
319        : AggregateDecl( loc, name, std::move(attrs), linkage ), isTyped(isTyped), base(base), hide(hide), enumValues(enumValues) {}
320
321        /// gets the integer value for this enumerator, returning true iff value found
322        // Maybe it is not used in producing the enum value
323        bool valueOf( const Decl * enumerator, long long& value ) const;
324
325        const Decl * accept( Visitor & v ) const override { return v.visit( this ); }
326
327        const char * typeString() const override { return aggrString( Enum ); }
328
329
330private:
331        EnumDecl * clone() const override { return new EnumDecl{ *this }; }
332        MUTATE_FRIEND
333
334        /// Map from names to enumerator values; kept private for lazy initialization
335        mutable std::unordered_map< std::string, long long > enumValues;
336};
337
338/// trait declaration `trait Foo( ... ) { ... };`
339class TraitDecl final : public AggregateDecl {
340public:
341        TraitDecl( const CodeLocation& loc, const std::string& name,
342                std::vector<ptr<Attribute>>&& attrs = {}, Linkage::Spec linkage = Linkage::Cforall )
343        : AggregateDecl( loc, name, std::move(attrs), linkage ) {}
344
345        const Decl * accept( Visitor & v ) const override { return v.visit( this ); }
346
347        const char * typeString() const override { return "trait"; }
348
349private:
350        TraitDecl * clone() const override { return new TraitDecl{ *this }; }
351        MUTATE_FRIEND
352};
353
354/// With statement `with (...) ...`
355/// This is a statement lexically, but a Decl is needed for the SymbolTable.
356class WithStmt final : public Decl {
357public:
358        std::vector<ptr<Expr>> exprs;
359        ptr<Stmt> stmt;
360
361        WithStmt( const CodeLocation & loc, std::vector<ptr<Expr>> && exprs, const Stmt * stmt )
362        : Decl(loc, "", Storage::Auto, Linkage::Cforall), exprs(std::move(exprs)), stmt(stmt) {}
363
364        const Decl * accept( Visitor & v ) const override { return v.visit( this ); }
365private:
366        WithStmt * clone() const override { return new WithStmt{ *this }; }
367        MUTATE_FRIEND
368};
369
370/// Assembly declaration: `asm ... ( "..." : ... )`
371class AsmDecl final : public Decl {
372public:
373        ptr<AsmStmt> stmt;
374
375        AsmDecl( const CodeLocation & loc, AsmStmt * stmt )
376        : Decl( loc, "", {}, Linkage::C ), stmt(stmt) {}
377
378        const AsmDecl * accept( Visitor & v ) const override { return v.visit( this ); }
379private:
380        AsmDecl * clone() const override { return new AsmDecl( *this ); }
381        MUTATE_FRIEND
382};
383
384/// C-preprocessor directive `#...`
385class DirectiveDecl final : public Decl {
386public:
387        ptr<DirectiveStmt> stmt;
388
389        DirectiveDecl( const CodeLocation & loc, DirectiveStmt * stmt )
390        : Decl( loc, "", {}, Linkage::C ), stmt(stmt) {}
391
392        const DirectiveDecl * accept( Visitor & v ) const override { return v.visit( this ); }
393private:
394        DirectiveDecl * clone() const override { return new DirectiveDecl( *this ); }
395        MUTATE_FRIEND
396};
397
398/// Static Assertion `_Static_assert( ... , ... );`
399class StaticAssertDecl final : public Decl {
400public:
401        ptr<Expr> cond;
402        ptr<ConstantExpr> msg;   // string literal
403
404        StaticAssertDecl( const CodeLocation & loc, const Expr * condition, const ConstantExpr * msg )
405        : Decl( loc, "", {}, Linkage::C ), cond( condition ), msg( msg ) {}
406
407        const StaticAssertDecl * accept( Visitor & v ) const override { return v.visit( this ); }
408private:
409        StaticAssertDecl * clone() const override { return new StaticAssertDecl( *this ); }
410        MUTATE_FRIEND
411};
412
413/// Inline Member Declaration `inline TypeName;`
414class InlineMemberDecl final : public DeclWithType {
415public:
416        ptr<Type> type;
417
418        InlineMemberDecl( const CodeLocation & loc, const std::string & name, const Type * type,
419                Storage::Classes storage = {}, Linkage::Spec linkage = Linkage::Cforall,
420                std::vector< ptr<Attribute> > && attrs = {}, Function::Specs fs = {} )
421        : DeclWithType( loc, name, storage, linkage, std::move(attrs), fs ), type( type ) {}
422
423        const Type * get_type() const override { return type; }
424        void set_type( const Type * ty ) override { type = ty; }
425
426        const DeclWithType * accept( Visitor& v ) const override { return v.visit( this ); }
427private:
428        InlineMemberDecl * clone() const override { return new InlineMemberDecl{ *this }; }
429        MUTATE_FRIEND
430};
431
432}
433
434#undef MUTATE_FRIEND
435
436// Local Variables: //
437// tab-width: 4 //
438// mode: c++ //
439// compile-command: "make install" //
440// End: //
Note: See TracBrowser for help on using the repository browser.