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 | // DeclarationWithType.cc -- |
---|
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 : Fri Dec 13 23:45:16 2019 |
---|
13 | // Update Count : 26 |
---|
14 | // |
---|
15 | |
---|
16 | #include <list> // for list |
---|
17 | #include <string> // for string |
---|
18 | |
---|
19 | #include "Attribute.h" // for Attribute |
---|
20 | #include "Common/utility.h" // for cloneAll, deleteAll, maybeClone |
---|
21 | #include "Declaration.h" // for DeclarationWithType, Declaration |
---|
22 | #include "LinkageSpec.h" // for Spec |
---|
23 | #include "Expression.h" // for ConstantExpr |
---|
24 | #include "Type.h" // for Type, Type::FuncSpecifiers, Type::St... |
---|
25 | |
---|
26 | DeclarationWithType::DeclarationWithType( const std::string &name, Type::StorageClasses scs, LinkageSpec::Spec linkage, const std::list< Attribute * > & attributes, Type::FuncSpecifiers fs ) |
---|
27 | : Declaration( name, scs, linkage ), asmName( nullptr ), attributes( attributes ), fs( fs ) { |
---|
28 | } |
---|
29 | |
---|
30 | DeclarationWithType::DeclarationWithType( const DeclarationWithType &other ) |
---|
31 | : Declaration( other ), mangleName( other.mangleName ), scopeLevel( other.scopeLevel ), fs( other.fs ) { |
---|
32 | cloneAll( other.attributes, attributes ); |
---|
33 | asmName = maybeClone( other.asmName ); |
---|
34 | } |
---|
35 | |
---|
36 | DeclarationWithType::~DeclarationWithType() { |
---|
37 | deleteAll( attributes ); |
---|
38 | delete asmName; |
---|
39 | } |
---|
40 | |
---|
41 | // Local Variables: // |
---|
42 | // tab-width: 4 // |
---|
43 | // mode: c++ // |
---|
44 | // compile-command: "make install" // |
---|
45 | // End: // |
---|