source: src/SynTree/ObjectDecl.cc @ 44b5ca0

ADTaaron-thesisarm-ehast-experimentalcleanup-dtorsctordeferred_resndemanglerenumforall-pointer-decaygc_noraiijacob/cs343-translationjenkins-sandboxmemorynew-astnew-ast-unique-exprnew-envno_listpersistent-indexerpthread-emulationqualifiedEnumresolv-newstringwith_gc
Last change on this file since 44b5ca0 was cf0941d, checked in by Peter A. Buhr <pabuhr@…>, 9 years ago

adjust printing for AST dump, formatting

  • Property mode set to 100644
File size: 2.3 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// ObjectDecl.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 : Thu Jun  4 21:21:12 2015
13// Update Count     : 10
14//
15
16#include "Declaration.h"
17#include "Type.h"
18#include "Initializer.h"
19#include "Expression.h"
20#include "utility.h"
21
22ObjectDecl::ObjectDecl( const std::string &name, StorageClass sc, LinkageSpec::Type linkage, Expression *bitfieldWidth, Type *type, Initializer *init )
23        : Parent( name, sc, linkage ), type( type ), init( init ), bitfieldWidth( bitfieldWidth ) {
24}
25
26ObjectDecl::ObjectDecl( const ObjectDecl &other )
27        : Parent( other ), type( maybeClone( other.type ) ), init( maybeClone( other.init ) ), bitfieldWidth( maybeClone( other.bitfieldWidth ) ) {
28}
29
30ObjectDecl::~ObjectDecl() {
31        delete type;
32        delete init;
33        delete bitfieldWidth;
34}
35
36void ObjectDecl::print( std::ostream &os, int indent ) const {
37        if ( get_name() != "" ) {
38                os << get_name() << ": ";
39        } // if
40
41        if ( get_linkage() != LinkageSpec::Cforall ) {
42                os << LinkageSpec::toString( get_linkage() ) << " ";
43        } // if
44
45        if ( get_storageClass() != NoStorageClass ) {
46                os << storageClassName[ get_storageClass() ] << ' ';
47        } // if
48
49        if ( get_type() ) {
50                get_type()->print( os, indent );
51        } else {
52                os << "untyped entity ";
53        } // if
54
55        if ( init ) {
56                os << "with initializer ";
57                init->print( os, indent );
58        } // if
59
60        if ( bitfieldWidth ) {
61                os << "with bitfield width ";
62                bitfieldWidth->print( os );
63        } // if
64}
65
66void ObjectDecl::printShort( std::ostream &os, int indent ) const {
67#if 0
68        if ( get_mangleName() != "") {
69                os << get_mangleName() << ": ";
70        } else
71#endif
72        if ( get_name() != "" ) {
73                os << get_name() << ": ";
74        } // if
75
76        if ( get_storageClass() != NoStorageClass ) {
77                os << storageClassName[ get_storageClass() ] << ' ';
78        } // if
79
80        if ( get_type() ) {
81                get_type()->print( os, indent );
82        } else {
83                os << "untyped entity ";
84        } // if
85
86        if ( bitfieldWidth ) {
87                os << "with bitfield width ";
88                bitfieldWidth->print( os );
89        } // if
90}
91
92// Local Variables: //
93// tab-width: 4 //
94// mode: c++ //
95// compile-command: "make install" //
96// End: //
Note: See TracBrowser for help on using the repository browser.