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 | // Initializer.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 : Mon May 18 09:02:45 2015 |
---|
13 | // Update Count : 2 |
---|
14 | // |
---|
15 | |
---|
16 | #include "Initializer.h" |
---|
17 | #include "Expression.h" |
---|
18 | #include "utility.h" |
---|
19 | |
---|
20 | Initializer::Initializer() {} |
---|
21 | |
---|
22 | Initializer::~Initializer() {} |
---|
23 | |
---|
24 | std::string Initializer::designator_name( Expression *des ) { |
---|
25 | if ( NameExpr *n = dynamic_cast<NameExpr *>(des) ) |
---|
26 | return n->get_name(); |
---|
27 | else |
---|
28 | throw 0; |
---|
29 | } |
---|
30 | |
---|
31 | void Initializer::print( std::ostream &os, int indent ) {} |
---|
32 | |
---|
33 | SingleInit::SingleInit( Expression *v, std::list< Expression *> &_designators ) : value ( v ), designators( _designators ) { |
---|
34 | } |
---|
35 | |
---|
36 | SingleInit::SingleInit( const SingleInit &other ) : value ( other.value ) { |
---|
37 | cloneAll(other.designators, designators ); |
---|
38 | } |
---|
39 | |
---|
40 | SingleInit::~SingleInit() {} |
---|
41 | |
---|
42 | SingleInit *SingleInit::clone() const { return new SingleInit( *this); } |
---|
43 | |
---|
44 | void SingleInit::print( std::ostream &os, int indent ) { |
---|
45 | os << std::endl << std::string(indent, ' ' ) << "Simple Initializer: "; |
---|
46 | value->print( os, indent+2 ); |
---|
47 | |
---|
48 | if ( ! designators.empty() ) { |
---|
49 | os << std::endl << std::string(indent + 2, ' ' ) << "designated by: " ; |
---|
50 | for ( std::list < Expression * >::iterator i = designators.begin(); i != designators.end(); i++ ) |
---|
51 | ( *i )->print(os, indent + 4 ); |
---|
52 | } // if |
---|
53 | } |
---|
54 | |
---|
55 | ListInit::ListInit( std::list<Initializer*> &_initializers, std::list<Expression *> &_designators ) |
---|
56 | : initializers( _initializers ), designators( _designators ) { |
---|
57 | } |
---|
58 | |
---|
59 | ListInit::~ListInit() {} |
---|
60 | |
---|
61 | ListInit *ListInit::clone() const { |
---|
62 | return new ListInit( *this ); |
---|
63 | } |
---|
64 | |
---|
65 | void ListInit::print( std::ostream &os, int indent ) { |
---|
66 | os << std::endl << std::string(indent, ' ') << "Compound initializer: "; |
---|
67 | if ( ! designators.empty() ) { |
---|
68 | os << std::string(indent + 2, ' ' ) << "designated by: ["; |
---|
69 | for ( std::list < Expression * >::iterator i = designators.begin(); |
---|
70 | i != designators.end(); i++ ) { |
---|
71 | ( *i )->print(os, indent + 4 ); |
---|
72 | } // for |
---|
73 | |
---|
74 | os << std::string(indent + 2, ' ' ) << "]"; |
---|
75 | } // if |
---|
76 | |
---|
77 | for ( std::list<Initializer *>::iterator i = initializers.begin(); i != initializers.end(); i++ ) |
---|
78 | (*i)->print( os, indent + 2 ); |
---|
79 | } |
---|
80 | // Local Variables: // |
---|
81 | // tab-width: 4 // |
---|
82 | // mode: c++ // |
---|
83 | // compile-command: "make install" // |
---|
84 | // End: // |
---|