source: src/SynTree/Initializer.cc@ 8bea701

ADT arm-eh ast-experimental enum forall-pointer-decay jacob/cs343-translation new-ast-unique-expr pthread-emulation qualifiedEnum
Last change on this file since 8bea701 was 50377a4, checked in by Rob Schluntz <rschlunt@…>, 8 years ago

Refactor tree print code to use Indenter

  • Property mode set to 100644
File size: 4.6 KB
RevLine 
[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
[d82daa1]11// Last Modified By : Peter A. Buhr
12// Last Modified On : Mon Aug 21 09:53:15 2017
13// Update Count : 30
[0dd3a2f]14//
15
[51b73452]16#include "Initializer.h"
[ea6332d]17
18#include <cassert> // for assertf
19#include <ostream> // for ostream, operator<<, basic_ostream
20#include <string> // for operator<<, string, char_traits
21
22#include "Common/utility.h" // for maybeClone, cloneAll, deleteAll
23#include "Expression.h" // for Expression
24#include "Statement.h" // for Statement
25#include "SynTree/BaseSyntaxNode.h" // for BaseSyntaxNode
[51b73452]26
[e4d829b]27Designation::Designation( const std::list< Expression * > & designators ) : designators( designators ) {}
28Designation::Designation( const Designation & other ) : BaseSyntaxNode( other ) {
29 // std::cerr << "cloning designation" << std::endl;
30 cloneAll( other.designators, designators );
31 // std::cerr << "finished cloning designation" << std::endl;
[70f89d00]32}
33
[e4d829b]34Designation::~Designation() {
35 // std::cerr << "destroying designation" << std::endl;
36 deleteAll( designators );
37 // std::cerr << "finished destroying designation" << std::endl;
38}
[51b73452]39
[50377a4]40void Designation::print( std::ostream &os, Indenter indent ) const {
[e4d829b]41 if ( ! designators.empty() ) {
[50377a4]42 os << "... designated by: " << std::endl;
43 for ( const Expression * d : designators ) {
44 os << indent+1;
45 d->print(os, indent+1 );
46 os << std::endl;
[e4d829b]47 }
48 } // if
[51b73452]49}
50
[e4d829b]51Initializer::Initializer( bool maybeConstructed ) : maybeConstructed( maybeConstructed ) {}
52Initializer::Initializer( const Initializer & other ) : BaseSyntaxNode( other ), maybeConstructed( other.maybeConstructed ) {
53}
54Initializer::~Initializer() {}
55
56SingleInit::SingleInit( Expression *v, bool maybeConstructed ) : Initializer( maybeConstructed ), value ( v ) {
[51b73452]57}
58
[a5a71d0]59SingleInit::SingleInit( const SingleInit &other ) : Initializer(other), value ( maybeClone( other.value ) ) {
[51b73452]60}
61
[70f89d00]62SingleInit::~SingleInit() {
[837a17c]63 delete value;
[70f89d00]64}
[51b73452]65
[50377a4]66void SingleInit::print( std::ostream &os, Indenter indent ) const {
67 os << "Simple Initializer: ";
68 value->print( os, indent );
[51b73452]69}
70
[e4d829b]71
[62423350]72ListInit::ListInit( const std::list<Initializer*> &inits, const std::list<Designation *> &des, bool maybeConstructed )
73 : Initializer( maybeConstructed ), initializers( inits ), designations( des ) {
74 // handle the common case where a ListInit is created without designations by making a list of empty designations with the same length as the initializer
75 if ( designations.empty() ) {
76 for ( auto & i : initializers ) {
77 (void)i;
78 designations.push_back( new Designation( {} ) );
79 }
80 }
[d82daa1]81 assertf( initializers.size() == designations.size(), "Created ListInit with mismatching initializers (%zd) and designations (%zd)", initializers.size(), designations.size() );
[51b73452]82}
83
[fc638d2]84ListInit::ListInit( const ListInit & other ) : Initializer( other ) {
85 cloneAll( other.initializers, initializers );
[e4d829b]86 cloneAll( other.designations, designations );
[fc638d2]87}
88
[70f89d00]89ListInit::~ListInit() {
90 deleteAll( initializers );
[e4d829b]91 deleteAll( designations );
[51b73452]92}
93
[50377a4]94void ListInit::print( std::ostream &os, Indenter indent ) const {
95 os << "Compound initializer: " << std::endl;
96 for ( auto p : group_iterate( designations, initializers ) ) {
97 const Designation * d = std::get<0>(p);
98 const Initializer * init = std::get<1>(p);
99 os << indent+1;
100 init->print( os, indent+1 );
[e4d829b]101 os << std::endl;
[50377a4]102 if ( ! d->designators.empty() ) {
103 os << indent+1;
104 d->print( os, indent+1 );
105 }
[e4d829b]106 }
[51b73452]107}
[71f4e4f]108
109
[f1b1e4c]110ConstructorInit::ConstructorInit( Statement * ctor, Statement * dtor, Initializer * init ) : Initializer( true ), ctor( ctor ), dtor( dtor ), init( init ) {}
111ConstructorInit::ConstructorInit( const ConstructorInit &other ) : Initializer( other ), ctor( maybeClone( other.ctor ) ), dtor( maybeClone( other.dtor ) ), init( maybeClone( other.init ) ) {
[70f89d00]112}
113
[71f4e4f]114ConstructorInit::~ConstructorInit() {
115 delete ctor;
[70f89d00]116 delete dtor;
[71f4e4f]117 delete init;
118}
119
[50377a4]120void ConstructorInit::print( std::ostream &os, Indenter indent ) const {
121 os << "Constructor initializer: " << std::endl;
[71f4e4f]122 if ( ctor ) {
[50377a4]123 os << indent << "... initially constructed with ";
124 ctor->print( os, indent+1 );
[71f4e4f]125 } // if
126
[5b2f5bb]127 if ( dtor ) {
[50377a4]128 os << indent << "... destructed with ";
129 dtor->print( os, indent+1 );
[5b2f5bb]130 }
131
[71f4e4f]132 if ( init ) {
[50377a4]133 os << indent << "... with fallback C-style initializer: ";
134 init->print( os, indent+1 );
[71f4e4f]135 }
136}
137
[0dd3a2f]138// Local Variables: //
139// tab-width: 4 //
140// mode: c++ //
141// compile-command: "make install" //
142// End: //
Note: See TracBrowser for help on using the repository browser.