source: src/SynTree/TupleExpr.cc @ aa8f9df

ADTaaron-thesisarm-ehast-experimentalcleanup-dtorsdeferred_resndemanglerenumforall-pointer-decayjacob/cs343-translationjenkins-sandboxnew-astnew-ast-unique-exprnew-envno_listpersistent-indexerpthread-emulationqualifiedEnumresolv-newwith_gc
Last change on this file since aa8f9df was aa8f9df, checked in by Rob Schluntz <rschlunt@…>, 8 years ago

Merge branch 'replace-results-list' into tuples

Conflicts:

src/ResolvExpr/AlternativeFinder.cc
src/SymTab/Indexer.cc
src/SynTree/Mutator.cc
src/SynTree/Visitor.cc
src/Tuples/TupleAssignment.cc
src/Tuples/TupleAssignment.h

  • Property mode set to 100644
File size: 3.5 KB
Line 
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// TupleExpr.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 10:59:19 2015
13// Update Count     : 1
14//
15
16#include "Expression.h"
17#include "Common/utility.h"
18#include "Type.h"
19#include "Declaration.h"
20
21TupleExpr::TupleExpr( Expression *_aname ) : Expression( _aname ) {
22}
23
24TupleExpr::TupleExpr( const TupleExpr &other ) : Expression( other ) {
25        cloneAll( other.exprs, exprs );
26}
27
28TupleExpr::~TupleExpr() {
29        deleteAll( exprs );
30}
31
32void TupleExpr::print( std::ostream &os, int indent ) const {
33        os << "Tuple:" << std::endl;
34        printAll( exprs, os, indent+2 );
35        Expression::print( os, indent );
36}
37
38TupleIndexExpr::TupleIndexExpr( Expression * tuple, unsigned int index ) {
39        TupleType * type = safe_dynamic_cast< TupleType * >( tuple->get_result() );
40        assert( type->size() >= index );
41        set_result( *std::next( type->get_types().begin(), index ) );
42}
43
44TupleIndexExpr::TupleIndexExpr( const TupleIndexExpr &other ) : Expression( other ), tuple( other.tuple->clone() ), index( other.index ) {
45}
46
47TupleIndexExpr::~TupleIndexExpr() {
48        delete tuple;
49}
50
51void TupleIndexExpr::print( std::ostream &os, int indent ) const {
52        os << "Tuple Index Expression, with tuple:" << std::endl;
53        tuple->print( os, indent+2 );
54        os << std::string( indent+2, ' ' ) << "with index: " << index << std::endl;
55        Expression::print( os, indent );
56}
57
58MemberTupleExpr::MemberTupleExpr( Expression * member, Expression * aggregate, Expression * _aname ) : Expression( _aname ) {
59        set_result( maybeClone( member->get_result() ) ); // xxx - ???
60}
61
62MemberTupleExpr::MemberTupleExpr( const MemberTupleExpr &other ) : Expression( other ), member( other.member->clone() ), aggregate( other.aggregate->clone() ) {
63}
64
65MemberTupleExpr::~MemberTupleExpr() {
66        delete member;
67        delete aggregate;
68}
69
70void MemberTupleExpr::print( std::ostream &os, int indent ) const {
71        os << "Member Tuple Expression, with aggregate:" << std::endl;
72        aggregate->print( os, indent+2 );
73        os << std::string( indent+2, ' ' ) << "with member: " << std::endl;
74        member->print( os, indent+2 );
75        Expression::print( os, indent );
76}
77
78
79TupleAssignExpr::TupleAssignExpr( const std::list< Expression * > & assigns, const std::list< ObjectDecl * > & tempDecls, Expression * _aname ) : Expression( _aname ), assigns( assigns ), tempDecls( tempDecls ) {
80        TupleType * type = new TupleType( Type::Qualifiers() );
81        for ( Expression * expr : assigns ) {
82                assert( expr->has_result() );
83                type->get_types().push_back( expr->get_result()->clone() );
84        }
85        set_result( type );
86}
87
88TupleAssignExpr::TupleAssignExpr( const TupleAssignExpr &other ) : Expression( other ), tempDecls( other.tempDecls ) /* temporary */ {
89        cloneAll( other.assigns, assigns );
90        // xxx - clone needs to go into assigns and replace tempDecls
91}
92
93TupleAssignExpr::~TupleAssignExpr() {
94        deleteAll( assigns );
95        // deleteAll( tempDecls );
96}
97
98void TupleAssignExpr::print( std::ostream &os, int indent ) const {
99        os << std::string( indent, ' ' ) << "Tuple Assignment Expression, with temporaries:" << std::endl;
100        printAll( tempDecls, os, indent+4 );
101        os << std::string( indent+2, ' ' ) << "with assignments: " << std::endl;
102        printAll( assigns, os, indent+4 );
103        Expression::print( os, indent );
104}
105
106
107
108// Local Variables: //
109// tab-width: 4 //
110// mode: c++ //
111// compile-command: "make install" //
112// End: //
Note: See TracBrowser for help on using the repository browser.