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