source: src/SynTree/TupleExpr.cc@ 5fb6830

ADT aaron-thesis arm-eh ast-experimental cleanup-dtors deferred_resn demangler enum forall-pointer-decay jacob/cs343-translation jenkins-sandbox new-ast new-ast-unique-expr new-env no_list persistent-indexer pthread-emulation qualifiedEnum resolv-new stuck-waitfor-destruct with_gc
Last change on this file since 5fb6830 was 5ccb10d, checked in by Rob Schluntz <rschlunt@…>, 8 years ago

Set reference size to base size, clean up debug code, remove more old-style NULLs from prelude

  • Property mode set to 100644
File size: 3.8 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//
[3b58d91]7// TupleExpr.cc --
[0dd3a2f]8//
9// Author : Richard C. Bilson
10// Created On : Mon May 18 07:44:20 2015
11// Last Modified By : Peter A. Buhr
[615a096]12// Last Modified On : Fri Mar 17 09:42:29 2017
13// Update Count : 3
[0dd3a2f]14//
[51b73452]15
16#include "Expression.h"
[d3b7937]17#include "Common/utility.h"
[3b58d91]18#include "Type.h"
[6eb8948]19#include "Declaration.h"
[3c13c03]20#include "Tuples/Tuples.h"
[23bb1b9]21#include "VarExprReplacer.h"
[51b73452]22
[907eccb]23UntypedTupleExpr::UntypedTupleExpr( const std::list< Expression * > & exprs, Expression *_aname ) : Expression( _aname ), exprs( exprs ) {
24}
25
26UntypedTupleExpr::UntypedTupleExpr( const UntypedTupleExpr &other ) : Expression( other ) {
27 cloneAll( other.exprs, exprs );
28}
29
30UntypedTupleExpr::~UntypedTupleExpr() {
31 deleteAll( exprs );
32}
33
34void UntypedTupleExpr::print( std::ostream &os, int indent ) const {
35 os << "Untyped Tuple:" << std::endl;
36 printAll( exprs, os, indent+2 );
37 Expression::print( os, indent );
38}
39
[3c13c03]40TupleExpr::TupleExpr( const std::list< Expression * > & exprs, Expression *_aname ) : Expression( _aname ), exprs( exprs ) {
[907eccb]41 set_result( Tuples::makeTupleType( exprs ) );
[51b73452]42}
43
[0dd3a2f]44TupleExpr::TupleExpr( const TupleExpr &other ) : Expression( other ) {
45 cloneAll( other.exprs, exprs );
[51b73452]46}
47
[0dd3a2f]48TupleExpr::~TupleExpr() {
49 deleteAll( exprs );
[51b73452]50}
51
[0dd3a2f]52void TupleExpr::print( std::ostream &os, int indent ) const {
[aa8f9df]53 os << "Tuple:" << std::endl;
[0dd3a2f]54 printAll( exprs, os, indent+2 );
55 Expression::print( os, indent );
[51b73452]56}
57
[3c13c03]58TupleIndexExpr::TupleIndexExpr( Expression * tuple, unsigned int index ) : tuple( tuple ), index( index ) {
[aa8f9df]59 TupleType * type = safe_dynamic_cast< TupleType * >( tuple->get_result() );
[6c3a988f]60 assertf( type->size() > index, "TupleIndexExpr index out of bounds: tuple size %d, requested index %d in expr %s", type->size(), index, toString( tuple ).c_str() );
[3c13c03]61 set_result( (*std::next( type->get_types().begin(), index ))->clone() );
[5ccb10d]62 // like MemberExpr, TupleIndexExpr is always an lvalue
63 get_result()->set_lvalue( true );
[3b58d91]64}
65
66TupleIndexExpr::TupleIndexExpr( const TupleIndexExpr &other ) : Expression( other ), tuple( other.tuple->clone() ), index( other.index ) {
67}
68
69TupleIndexExpr::~TupleIndexExpr() {
70 delete tuple;
71}
72
73void TupleIndexExpr::print( std::ostream &os, int indent ) const {
[aa8f9df]74 os << "Tuple Index Expression, with tuple:" << std::endl;
[3c13c03]75 os << std::string( indent+2, ' ' );
[3b58d91]76 tuple->print( os, indent+2 );
77 os << std::string( indent+2, ' ' ) << "with index: " << index << std::endl;
78 Expression::print( os, indent );
79}
80
[d5556a3]81TupleAssignExpr::TupleAssignExpr( const std::list< Expression * > & assigns, const std::list< ObjectDecl * > & tempDecls, Expression * _aname ) : Expression( _aname ) {
82 // convert internally into a StmtExpr which contains the declarations and produces the tuple of the assignments
[65660bd]83 set_result( Tuples::makeTupleType( assigns ) );
[d5556a3]84 CompoundStmt * compoundStmt = new CompoundStmt( noLabels );
85 std::list< Statement * > & stmts = compoundStmt->get_kids();
86 for ( ObjectDecl * obj : tempDecls ) {
87 stmts.push_back( new DeclStmt( noLabels, obj ) );
88 }
89 TupleExpr * tupleExpr = new TupleExpr( assigns );
90 assert( tupleExpr->get_result() );
91 stmts.push_back( new ExprStmt( noLabels, tupleExpr ) );
92 stmtExpr = new StmtExpr( compoundStmt );
[6eb8948]93}
94
[23bb1b9]95TupleAssignExpr::TupleAssignExpr( const TupleAssignExpr &other ) : Expression( other ) {
[d5556a3]96 assert( other.stmtExpr );
97 stmtExpr = other.stmtExpr->clone();
[6eb8948]98}
99
100TupleAssignExpr::~TupleAssignExpr() {
[d5556a3]101 delete stmtExpr;
[6eb8948]102}
103
104void TupleAssignExpr::print( std::ostream &os, int indent ) const {
[d5556a3]105 os << "Tuple Assignment Expression, with stmt expr:" << std::endl;
106 os << std::string( indent+2, ' ' );
107 stmtExpr->print( os, indent+4 );
[6eb8948]108 Expression::print( os, indent );
109}
110
111
112
[0dd3a2f]113// Local Variables: //
114// tab-width: 4 //
115// mode: c++ //
116// compile-command: "make install" //
117// End: //
Note: See TracBrowser for help on using the repository browser.