| [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 | //
 | 
|---|
| [51b73452] | 15 | 
 | 
|---|
| [ea6332d] | 16 | #include <list>                  // for list
 | 
|---|
 | 17 | #include <ostream>               // for operator<<, basic_ostream, ostream
 | 
|---|
 | 18 | #include <string>                // for operator<<, string, char_traits
 | 
|---|
 | 19 | 
 | 
|---|
 | 20 | #include "Attribute.h"           // for Attribute
 | 
|---|
 | 21 | #include "Common/utility.h"      // for printAll, cloneAll, deleteAll
 | 
|---|
 | 22 | #include "Declaration.h"         // for AggregateDecl, TypeDecl, Declaration
 | 
|---|
 | 23 | #include "Parser/LinkageSpec.h"  // for Spec, linkageName, Cforall
 | 
|---|
 | 24 | #include "Type.h"                // for Type, Type::StorageClasses
 | 
|---|
| [51b73452] | 25 | 
 | 
|---|
 | 26 | 
 | 
|---|
| [fa4805f] | 27 | AggregateDecl::AggregateDecl( const std::string &name, const std::list< Attribute * > & attributes, LinkageSpec::Spec linkage ) : Parent( name, Type::StorageClasses(), linkage ), body( false ), attributes( attributes ) {
 | 
|---|
| [51b73452] | 28 | }
 | 
|---|
 | 29 | 
 | 
|---|
| [0dd3a2f] | 30 | AggregateDecl::AggregateDecl( const AggregateDecl &other ) : Parent( other ) {
 | 
|---|
| [a08ba92] | 31 |         cloneAll( other.members, members );
 | 
|---|
 | 32 |         cloneAll( other.parameters, parameters );
 | 
|---|
| [c0aa336] | 33 |         cloneAll( other.attributes, attributes );
 | 
|---|
| [5d125e4] | 34 |         body = other.body;
 | 
|---|
| [51b73452] | 35 | }
 | 
|---|
 | 36 | 
 | 
|---|
| [0dd3a2f] | 37 | AggregateDecl::~AggregateDecl() {
 | 
|---|
| [c0aa336] | 38 |         deleteAll( attributes );
 | 
|---|
| [a08ba92] | 39 |         deleteAll( parameters );
 | 
|---|
| [c0aa336] | 40 |         deleteAll( members );
 | 
|---|
| [51b73452] | 41 | }
 | 
|---|
 | 42 | 
 | 
|---|
| [50377a4] | 43 | void AggregateDecl::print( std::ostream &os, Indenter indent ) const {
 | 
|---|
| [a08ba92] | 44 |         using std::string;
 | 
|---|
 | 45 |         using std::endl;
 | 
|---|
| [51b73452] | 46 | 
 | 
|---|
| [50377a4] | 47 |         os << typeString() << " " << name << ":";
 | 
|---|
| [cbce272] | 48 |         if ( get_linkage() != LinkageSpec::Cforall ) {
 | 
|---|
| [50377a4] | 49 |                 os << " " << LinkageSpec::linkageName( linkage );
 | 
|---|
| [cbce272] | 50 |         } // if
 | 
|---|
| [50377a4] | 51 |         os << " with body " << has_body();
 | 
|---|
| [5d125e4] | 52 | 
 | 
|---|
| [a08ba92] | 53 |         if ( ! parameters.empty() ) {
 | 
|---|
| [50377a4] | 54 |                 os << endl << indent << "... with parameters" << endl;
 | 
|---|
 | 55 |                 printAll( parameters, os, indent+1 );
 | 
|---|
| [a08ba92] | 56 |         } // if
 | 
|---|
 | 57 |         if ( ! members.empty() ) {
 | 
|---|
| [50377a4] | 58 |                 os << endl << indent << "... with members" << endl;
 | 
|---|
 | 59 |                 printAll( members, os, indent+1 );
 | 
|---|
| [a08ba92] | 60 |         } // if
 | 
|---|
| [c0aa336] | 61 |         if ( ! attributes.empty() ) {
 | 
|---|
| [50377a4] | 62 |                 os << endl << indent << "... with attributes" << endl;
 | 
|---|
 | 63 |                 printAll( attributes, os, indent+1 );
 | 
|---|
| [c0aa336] | 64 |         } // if
 | 
|---|
| [50377a4] | 65 |         os << endl;
 | 
|---|
| [51b73452] | 66 | }
 | 
|---|
 | 67 | 
 | 
|---|
| [50377a4] | 68 | void AggregateDecl::printShort( std::ostream &os, Indenter indent ) const {
 | 
|---|
| [a08ba92] | 69 |         using std::string;
 | 
|---|
 | 70 |         using std::endl;
 | 
|---|
| [51b73452] | 71 | 
 | 
|---|
| [50377a4] | 72 |         os << typeString() << " " << name << " with body " << has_body() << endl;
 | 
|---|
| [5d125e4] | 73 | 
 | 
|---|
| [a08ba92] | 74 |         if ( ! parameters.empty() ) {
 | 
|---|
| [50377a4] | 75 |                 os << indent << "... with parameters" << endl;
 | 
|---|
 | 76 |                 printAll( parameters, os, indent+1 );
 | 
|---|
| [a08ba92] | 77 |         } // if
 | 
|---|
| [51b73452] | 78 | }
 | 
|---|
 | 79 | 
 | 
|---|
 | 80 | std::string StructDecl::typeString() const { return "struct"; }
 | 
|---|
 | 81 | 
 | 
|---|
 | 82 | std::string UnionDecl::typeString() const { return "union"; }
 | 
|---|
 | 83 | 
 | 
|---|
 | 84 | std::string EnumDecl::typeString() const { return "enum"; }
 | 
|---|
 | 85 | 
 | 
|---|
| [4a9ccc3] | 86 | std::string TraitDecl::typeString() const { return "trait"; }
 | 
|---|
| [51b73452] | 87 | 
 | 
|---|
| [fc9153d] | 88 | namespace {
 | 
|---|
 | 89 |         long long int getConstValue( Expression * expr ) {
 | 
|---|
 | 90 |                 if ( CastExpr * castExpr = dynamic_cast< CastExpr * > ( expr ) ) {
 | 
|---|
 | 91 |                         return getConstValue( castExpr->arg );
 | 
|---|
 | 92 |                 } else if ( ConstantExpr * constExpr = dynamic_cast< ConstantExpr * >( expr ) ) {
 | 
|---|
 | 93 |                         return constExpr->intValue();
 | 
|---|
| [0690350] | 94 |                 // can be -1, +1, etc.
 | 
|---|
 | 95 |                 // } else if ( UntypedExpr * untypedExpr = dynamic_cast< UntypedExpr * >( expr ) ) {
 | 
|---|
 | 96 |                 //      if ( untypedExpr-> )
 | 
|---|
| [fc9153d] | 97 |                 } else {
 | 
|---|
 | 98 |                         assertf( false, "Unhandled expression type in getConstValue for enumerators: %s", toString( expr ).c_str() );
 | 
|---|
 | 99 |                 }
 | 
|---|
 | 100 |         }
 | 
|---|
 | 101 | }
 | 
|---|
 | 102 | 
 | 
|---|
 | 103 | bool EnumDecl::valueOf( Declaration * enumerator, long long int & value ) {
 | 
|---|
 | 104 |         if ( enumValues.empty() ) {
 | 
|---|
 | 105 |                 long long int currentValue = 0;
 | 
|---|
 | 106 |                 for ( Declaration * member : members ) {
 | 
|---|
 | 107 |                         ObjectDecl * field = strict_dynamic_cast< ObjectDecl * >( member );
 | 
|---|
 | 108 |                         if ( field->init ) {
 | 
|---|
 | 109 |                                 SingleInit * init = strict_dynamic_cast< SingleInit * >( field->init );
 | 
|---|
 | 110 |                                 currentValue = getConstValue( init->value );
 | 
|---|
 | 111 |                         }
 | 
|---|
 | 112 |                         assertf( enumValues.count( field->name ) == 0, "Enum %s has multiple members with the name %s", name.c_str(), field->name.c_str() );
 | 
|---|
 | 113 |                         enumValues[ field->name ] = currentValue;
 | 
|---|
 | 114 |                         ++currentValue;
 | 
|---|
 | 115 |                 }
 | 
|---|
 | 116 |         }
 | 
|---|
 | 117 |         if ( enumValues.count( enumerator->name ) ) {
 | 
|---|
 | 118 |                 value = enumValues[ enumerator->name ];
 | 
|---|
 | 119 |                 return true;
 | 
|---|
 | 120 |         }
 | 
|---|
 | 121 |         return false;
 | 
|---|
 | 122 | }
 | 
|---|
 | 123 | 
 | 
|---|
| [0dd3a2f] | 124 | // Local Variables: //
 | 
|---|
 | 125 | // tab-width: 4 //
 | 
|---|
 | 126 | // mode: c++ //
 | 
|---|
 | 127 | // compile-command: "make install" //
 | 
|---|
 | 128 | // End: //
 | 
|---|