[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 | // |
---|
[974906e2] | 7 | // Initializer.cc -- |
---|
[0dd3a2f] | 8 | // |
---|
| 9 | // Author : Richard C. Bilson |
---|
| 10 | // Created On : Mon May 18 07:44:20 2015 |
---|
[d58ebf3] | 11 | // Last Modified By : Rob Schluntz |
---|
[d668182] | 12 | // Last Modified On : Fri May 13 13:23:03 2016 |
---|
[71f4e4f] | 13 | // Update Count : 28 |
---|
[0dd3a2f] | 14 | // |
---|
| 15 | |
---|
[51b7345] | 16 | #include "Initializer.h" |
---|
| 17 | #include "Expression.h" |
---|
[5b2f5bb] | 18 | #include "Statement.h" |
---|
[d3b7937] | 19 | #include "Common/utility.h" |
---|
[51b7345] | 20 | |
---|
[974906e2] | 21 | Initializer::Initializer( bool maybeConstructed ) : maybeConstructed( maybeConstructed ) {} |
---|
[70f89d00] | 22 | Initializer::Initializer( const Initializer & other ) : maybeConstructed( other.maybeConstructed ) { |
---|
| 23 | } |
---|
| 24 | |
---|
[51b7345] | 25 | |
---|
[d9a0e76] | 26 | Initializer::~Initializer() {} |
---|
[51b7345] | 27 | |
---|
| 28 | std::string Initializer::designator_name( Expression *des ) { |
---|
[0dd3a2f] | 29 | if ( NameExpr *n = dynamic_cast<NameExpr *>(des) ) |
---|
| 30 | return n->get_name(); |
---|
| 31 | else |
---|
| 32 | throw 0; |
---|
[51b7345] | 33 | } |
---|
| 34 | |
---|
[d9a0e76] | 35 | void Initializer::print( std::ostream &os, int indent ) {} |
---|
[51b7345] | 36 | |
---|
[620cb95] | 37 | SingleInit::SingleInit( Expression *v, const std::list< Expression *> &_designators, bool maybeConstructed ) : Initializer( maybeConstructed ), value ( v ), designators( _designators ) { |
---|
[51b7345] | 38 | } |
---|
| 39 | |
---|
[a5a71d0] | 40 | SingleInit::SingleInit( const SingleInit &other ) : Initializer(other), value ( maybeClone( other.value ) ) { |
---|
[0dd3a2f] | 41 | cloneAll(other.designators, designators ); |
---|
[51b7345] | 42 | } |
---|
| 43 | |
---|
[70f89d00] | 44 | SingleInit::~SingleInit() { |
---|
| 45 | deleteAll(designators); |
---|
| 46 | } |
---|
[51b7345] | 47 | |
---|
[d9a0e76] | 48 | void SingleInit::print( std::ostream &os, int indent ) { |
---|
[d58ebf3] | 49 | os << std::endl << std::string(indent, ' ' ) << "Simple Initializer: " << std::endl; |
---|
[60089f4] | 50 | os << std::string(indent+4, ' ' ); |
---|
[d58ebf3] | 51 | value->print( os, indent+4 ); |
---|
[0dd3a2f] | 52 | |
---|
| 53 | if ( ! designators.empty() ) { |
---|
[bb8ea30] | 54 | os << std::endl << std::string(indent + 2, ' ' ) << "designated by: " << std::endl; |
---|
[d58ebf3] | 55 | for ( std::list < Expression * >::iterator i = designators.begin(); i != designators.end(); i++ ) { |
---|
[bb8ea30] | 56 | os << std::string(indent + 4, ' ' ); |
---|
[0dd3a2f] | 57 | ( *i )->print(os, indent + 4 ); |
---|
[d58ebf3] | 58 | } |
---|
[0dd3a2f] | 59 | } // if |
---|
[51b7345] | 60 | } |
---|
| 61 | |
---|
[5b40f30] | 62 | ListInit::ListInit( const std::list<Initializer*> &_initializers, const std::list<Expression *> &_designators, bool maybeConstructed ) |
---|
[70f89d00] | 63 | : Initializer( maybeConstructed ), initializers( _initializers ), designators( _designators ) { |
---|
[51b7345] | 64 | } |
---|
| 65 | |
---|
[70f89d00] | 66 | ListInit::~ListInit() { |
---|
| 67 | deleteAll( initializers ); |
---|
| 68 | deleteAll( designators ); |
---|
[51b7345] | 69 | } |
---|
| 70 | |
---|
[d9a0e76] | 71 | void ListInit::print( std::ostream &os, int indent ) { |
---|
[974906e2] | 72 | os << std::endl << std::string(indent, ' ') << "Compound initializer: "; |
---|
[0dd3a2f] | 73 | if ( ! designators.empty() ) { |
---|
| 74 | os << std::string(indent + 2, ' ' ) << "designated by: ["; |
---|
| 75 | for ( std::list < Expression * >::iterator i = designators.begin(); |
---|
| 76 | i != designators.end(); i++ ) { |
---|
[974906e2] | 77 | ( *i )->print(os, indent + 4 ); |
---|
[0dd3a2f] | 78 | } // for |
---|
[974906e2] | 79 | |
---|
[0dd3a2f] | 80 | os << std::string(indent + 2, ' ' ) << "]"; |
---|
| 81 | } // if |
---|
[51b7345] | 82 | |
---|
[974906e2] | 83 | for ( std::list<Initializer *>::iterator i = initializers.begin(); i != initializers.end(); i++ ) |
---|
[0dd3a2f] | 84 | (*i)->print( os, indent + 2 ); |
---|
[51b7345] | 85 | } |
---|
[71f4e4f] | 86 | |
---|
| 87 | |
---|
[f1b1e4c] | 88 | ConstructorInit::ConstructorInit( Statement * ctor, Statement * dtor, Initializer * init ) : Initializer( true ), ctor( ctor ), dtor( dtor ), init( init ) {} |
---|
| 89 | ConstructorInit::ConstructorInit( const ConstructorInit &other ) : Initializer( other ), ctor( maybeClone( other.ctor ) ), dtor( maybeClone( other.dtor ) ), init( maybeClone( other.init ) ) { |
---|
[70f89d00] | 90 | } |
---|
| 91 | |
---|
[71f4e4f] | 92 | ConstructorInit::~ConstructorInit() { |
---|
| 93 | delete ctor; |
---|
[70f89d00] | 94 | delete dtor; |
---|
[71f4e4f] | 95 | delete init; |
---|
| 96 | } |
---|
| 97 | |
---|
| 98 | void ConstructorInit::print( std::ostream &os, int indent ) { |
---|
[84bb4d9] | 99 | os << std::endl << std::string(indent, ' ') << "Constructor initializer: " << std::endl; |
---|
[71f4e4f] | 100 | if ( ctor ) { |
---|
[84bb4d9] | 101 | os << std::string(indent+2, ' '); |
---|
| 102 | os << "initially constructed with "; |
---|
| 103 | ctor->print( os, indent+4 ); |
---|
[71f4e4f] | 104 | } // if |
---|
| 105 | |
---|
[5b2f5bb] | 106 | if ( dtor ) { |
---|
[84bb4d9] | 107 | os << std::string(indent+2, ' '); |
---|
| 108 | os << "destructed with "; |
---|
| 109 | dtor->print( os, indent+4 ); |
---|
[5b2f5bb] | 110 | } |
---|
| 111 | |
---|
[71f4e4f] | 112 | if ( init ) { |
---|
[84bb4d9] | 113 | os << std::string(indent+2, ' '); |
---|
| 114 | os << "with fallback C-style initializer: "; |
---|
| 115 | init->print( os, indent+4 ); |
---|
[71f4e4f] | 116 | } |
---|
| 117 | } |
---|
| 118 | |
---|
[7a69460] | 119 | std::ostream & operator<<( std::ostream & out, Initializer * init ) { |
---|
| 120 | init->print( out ); |
---|
| 121 | return out; |
---|
| 122 | } |
---|
[71f4e4f] | 123 | |
---|
[0dd3a2f] | 124 | // Local Variables: // |
---|
| 125 | // tab-width: 4 // |
---|
| 126 | // mode: c++ // |
---|
| 127 | // compile-command: "make install" // |
---|
| 128 | // End: // |
---|