source: src/SynTree/AggregateDecl.cc@ 75c566a

ADT aaron-thesis arm-eh ast-experimental cleanup-dtors deferred_resn demangler enum forall-pointer-decay jacob/cs343-translation jenkins-sandbox new-ast new-ast-unique-expr new-env no_list persistent-indexer pthread-emulation qualifiedEnum resolv-new with_gc
Last change on this file since 75c566a was c0aa336, checked in by Peter A. Buhr <pabuhr@…>, 9 years ago

third attempt at gcc attributes

  • Property mode set to 100644
File size: 2.4 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// AggregateDecl.cc --
8//
9// Author : Richard C. Bilson
10// Created On : Sun May 17 23:56:39 2015
11// Last Modified By : Peter A. Buhr
12// Last Modified On : Mon Feb 6 15:31:23 2017
13// Update Count : 17
14//
15
16#include "Declaration.h"
17#include "Attribute.h"
18#include "Type.h"
19#include "Common/utility.h"
20
21
22AggregateDecl::AggregateDecl( const std::string &name, const std::list< Attribute * > & attributes ) : Parent( name, DeclarationNode::NoStorageClass, LinkageSpec::Cforall ), body( false ), attributes( attributes ) {
23}
24
25AggregateDecl::AggregateDecl( const AggregateDecl &other ) : Parent( other ) {
26 cloneAll( other.members, members );
27 cloneAll( other.parameters, parameters );
28 cloneAll( other.attributes, attributes );
29 body = other.body;
30}
31
32AggregateDecl::~AggregateDecl() {
33 deleteAll( attributes );
34 deleteAll( parameters );
35 deleteAll( members );
36}
37
38void AggregateDecl::print( std::ostream &os, int indent ) const {
39 using std::string;
40 using std::endl;
41
42 os << typeString() << " " << get_name();
43 os << string( indent+2, ' ' ) << "with body " << has_body() << endl;
44
45 if ( ! parameters.empty() ) {
46 os << endl << string( indent+2, ' ' ) << "with parameters" << endl;
47 printAll( parameters, os, indent+4 );
48 } // if
49 if ( ! members.empty() ) {
50 os << endl << string( indent+2, ' ' ) << "with members" << endl;
51 printAll( members, os, indent+4 );
52 } // if
53 if ( ! attributes.empty() ) {
54 os << endl << string( indent+2, ' ' ) << "with attributes" << endl;
55 printAll( attributes, os, indent+4 );
56 } // if
57}
58
59void AggregateDecl::printShort( std::ostream &os, int indent ) const {
60 using std::string;
61 using std::endl;
62
63 os << typeString() << " " << get_name();
64 os << string( indent+2, ' ' ) << "with body " << has_body() << endl;
65
66 if ( ! parameters.empty() ) {
67 os << endl << string( indent+2, ' ' ) << "with parameters" << endl;
68 printAll( parameters, os, indent+4 );
69 } // if
70}
71
72std::string StructDecl::typeString() const { return "struct"; }
73
74std::string UnionDecl::typeString() const { return "union"; }
75
76std::string EnumDecl::typeString() const { return "enum"; }
77
78std::string TraitDecl::typeString() const { return "trait"; }
79
80// Local Variables: //
81// tab-width: 4 //
82// mode: c++ //
83// compile-command: "make install" //
84// End: //
Note: See TracBrowser for help on using the repository browser.