source: src/SynTree/AggregateDecl.cc @ 06cafa4

ADTaaron-thesisarm-ehast-experimentalcleanup-dtorsdeferred_resndemanglerenumforall-pointer-decayjacob/cs343-translationjenkins-sandboxnew-astnew-ast-unique-exprnew-envno_listpersistent-indexerpthread-emulationqualifiedEnumresolv-newwith_gc
Last change on this file since 06cafa4 was cbce272, checked in by Andrew Beach <ajbeach@…>, 7 years ago

Structure based exception handling.

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