| 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 : Tue Sep 29 14:13:01 2015 | 
|---|
| 13 | // Update Count     : 18 | 
|---|
| 14 | // | 
|---|
| 15 |  | 
|---|
| 16 | #include "Declaration.h" | 
|---|
| 17 | #include "Type.h" | 
|---|
| 18 | #include "Initializer.h" | 
|---|
| 19 | #include "Expression.h" | 
|---|
| 20 | #include "Common/utility.h" | 
|---|
| 21 |  | 
|---|
| 22 | ObjectDecl::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 |  | 
|---|
| 28 | ObjectDecl::ObjectDecl( const ObjectDecl &other ) | 
|---|
| 29 | : Parent( other ), type( maybeClone( other.type ) ), init( maybeClone( other.init ) ), bitfieldWidth( maybeClone( other.bitfieldWidth ) ) { | 
|---|
| 30 | } | 
|---|
| 31 |  | 
|---|
| 32 | ObjectDecl::~ObjectDecl() { | 
|---|
| 33 | delete type; | 
|---|
| 34 | delete init; | 
|---|
| 35 | delete bitfieldWidth; | 
|---|
| 36 | } | 
|---|
| 37 |  | 
|---|
| 38 | void 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 << " with initializer "; | 
|---|
| 59 | init->print( os, indent ); | 
|---|
| 60 | } // if | 
|---|
| 61 |  | 
|---|
| 62 | if ( bitfieldWidth ) { | 
|---|
| 63 | os << " with bitfield width "; | 
|---|
| 64 | bitfieldWidth->print( os ); | 
|---|
| 65 | } // if | 
|---|
| 66 | } | 
|---|
| 67 |  | 
|---|
| 68 | void ObjectDecl::printShort( std::ostream &os, int indent ) const { | 
|---|
| 69 | #if 0 | 
|---|
| 70 | if ( get_mangleName() != "") { | 
|---|
| 71 | os << get_mangleName() << ": "; | 
|---|
| 72 | } else | 
|---|
| 73 | #endif | 
|---|
| 74 | if ( get_name() != "" ) { | 
|---|
| 75 | os << get_name() << ": "; | 
|---|
| 76 | } // if | 
|---|
| 77 |  | 
|---|
| 78 | if ( get_storageClass() != DeclarationNode::NoStorageClass ) { | 
|---|
| 79 | os << DeclarationNode::storageName[ get_storageClass() ] << ' '; | 
|---|
| 80 | } // if | 
|---|
| 81 |  | 
|---|
| 82 | if ( get_type() ) { | 
|---|
| 83 | get_type()->print( os, indent ); | 
|---|
| 84 | } else { | 
|---|
| 85 | os << "untyped entity "; | 
|---|
| 86 | } // if | 
|---|
| 87 |  | 
|---|
| 88 | if ( bitfieldWidth ) { | 
|---|
| 89 | os << "with bitfield width "; | 
|---|
| 90 | bitfieldWidth->print( os ); | 
|---|
| 91 | } // if | 
|---|
| 92 | } | 
|---|
| 93 |  | 
|---|
| 94 | // Local Variables: // | 
|---|
| 95 | // tab-width: 4 // | 
|---|
| 96 | // mode: c++ // | 
|---|
| 97 | // compile-command: "make install" // | 
|---|
| 98 | // End: // | 
|---|