source: src/SynTree/ObjectDecl.cc @ 9243a501

ADTaaron-thesisarm-ehast-experimentalcleanup-dtorsctordeferred_resndemanglerenumforall-pointer-decaygc_noraiijacob/cs343-translationjenkins-sandboxmemorynew-astnew-ast-unique-exprnew-envno_listpersistent-indexerpthread-emulationqualifiedEnumresolv-newwith_gc
Last change on this file since 9243a501 was 9243a501, checked in by Rob Schluntz <rschlunt@…>, 8 years ago

fixed printing in MemberExpr?, FunctionDecl?, ObjectDecl?, etc.

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