source: src/SynTree/Expression.cc @ e195093

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 e195093 was a5f0529, checked in by Andrew Beach <ajbeach@…>, 7 years ago

Virtual casts have been added. They still require a lot of hand coded support to work but for simple cases it should be enough.

  • Property mode set to 100644
File size: 23.1 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//
[3be261a]7// Expression.cc --
[0dd3a2f]8//
9// Author           : Richard C. Bilson
10// Created On       : Mon May 18 07:44:20 2015
[e04ef3a]11// Last Modified By : Peter A. Buhr
[a5f0529]12// Last Modified On : Tue Jul 25 14:15:47 2017
13// Update Count     : 54
[0dd3a2f]14//
15
[51b7345]16#include <iostream>
17#include <cassert>
18#include <list>
19#include <algorithm>
20
21#include <iterator>
22
23#include "Declaration.h"
[62423350]24#include "Expression.h"
25#include "Initializer.h"
[51b7345]26#include "Statement.h"
[62423350]27#include "Type.h"
[51b7345]28#include "TypeSubstitution.h"
[62423350]29#include "VarExprReplacer.h"
30
[d3b7937]31#include "Common/utility.h"
[62423350]32#include "Common/PassVisitor.h"
33
[b6fe7e6]34#include "InitTweak/InitTweak.h"
[51b7345]35
36
[906e24d]37Expression::Expression( Expression *_aname ) : result( 0 ), env( 0 ), argName( _aname ) {}
[0dd3a2f]38
[64ac636]39Expression::Expression( const Expression &other ) : BaseSyntaxNode( other ), result( maybeClone( other.result ) ), env( maybeClone( other.env ) ), argName( maybeClone( other.get_argName() ) ), extension( other.extension ) {
[0dd3a2f]40}
41
42Expression::~Expression() {
43        delete env;
[7f5566b]44        delete argName; // xxx -- there's a problem in cloning ConstantExpr I still don't know how to fix
[906e24d]45        delete result;
[51b7345]46}
47
[59db689]48void Expression::print( std::ostream &os, int indent ) const {
[0dd3a2f]49        if ( env ) {
[cf0941d]50                os << std::string( indent, ' ' ) << "with environment:" << std::endl;
[0dd3a2f]51                env->print( os, indent+2 );
52        } // if
[51b7345]53
[0dd3a2f]54        if ( argName ) {
[cf0941d]55                os << std::string( indent, ' ' ) << "with designator:";
[0dd3a2f]56                argName->print( os, indent+2 );
57        } // if
[e04ef3a]58
59        if ( extension ) {
60                os << std::string( indent, ' ' ) << "with extension:";
61        } // if
[51b7345]62}
63
[0dd3a2f]64ConstantExpr::ConstantExpr( Constant _c, Expression *_aname ) : Expression( _aname ), constant( _c ) {
[906e24d]65        set_result( constant.get_type()->clone() );
[51b7345]66}
67
[0dd3a2f]68ConstantExpr::ConstantExpr( const ConstantExpr &other) : Expression( other ), constant( other.constant ) {
69}
[51b7345]70
71ConstantExpr::~ConstantExpr() {}
72
[0dd3a2f]73void ConstantExpr::print( std::ostream &os, int indent ) const {
[60089f4]74        os << "constant expression " ;
[cf0941d]75        constant.print( os );
[0dd3a2f]76        Expression::print( os, indent );
[51b7345]77}
78
[0dd3a2f]79VariableExpr::VariableExpr( DeclarationWithType *_var, Expression *_aname ) : Expression( _aname ), var( _var ) {
[db4ecc5]80        assert( var );
81        assert( var->get_type() );
[906e24d]82        Type * type = var->get_type()->clone();
[615a096]83        type->set_lvalue( true );
[906e24d]84        set_result( type );
[51b7345]85}
86
[0dd3a2f]87VariableExpr::VariableExpr( const VariableExpr &other ) : Expression( other ), var( other.var ) {
[51b7345]88}
89
[0dd3a2f]90VariableExpr::~VariableExpr() {
91        // don't delete the declaration, since it points somewhere else in the tree
[51b7345]92}
93
[0dd3a2f]94void VariableExpr::print( std::ostream &os, int indent ) const {
[89231bc]95        os << "Variable Expression: ";
[51b7345]96
[0dd3a2f]97        Declaration *decl = get_var();
98        if ( decl != 0) decl->printShort(os, indent + 2);
99        os << std::endl;
100        Expression::print( os, indent );
[51b7345]101}
102
103SizeofExpr::SizeofExpr( Expression *expr_, Expression *_aname ) :
[0dd3a2f]104                Expression( _aname ), expr(expr_), type(0), isType(false) {
[906e24d]105        set_result( new BasicType( Type::Qualifiers(), BasicType::LongUnsignedInt ) );
[51b7345]106}
107
108SizeofExpr::SizeofExpr( Type *type_, Expression *_aname ) :
[0dd3a2f]109                Expression( _aname ), expr(0), type(type_), isType(true) {
[906e24d]110        set_result( new BasicType( Type::Qualifiers(), BasicType::LongUnsignedInt ) );
[51b7345]111}
112
[0dd3a2f]113SizeofExpr::SizeofExpr( const SizeofExpr &other ) :
114        Expression( other ), expr( maybeClone( other.expr ) ), type( maybeClone( other.type ) ), isType( other.isType ) {
[51b7345]115}
116
[0dd3a2f]117SizeofExpr::~SizeofExpr() {
118        delete expr;
119        delete type;
[51b7345]120}
121
122void SizeofExpr::print( std::ostream &os, int indent) const {
[89231bc]123        os << "Sizeof Expression on: ";
[51b7345]124
[47534159]125        if (isType)
126                type->print(os, indent + 2);
127        else
128                expr->print(os, indent + 2);
129
130        os << std::endl;
131        Expression::print( os, indent );
132}
133
134AlignofExpr::AlignofExpr( Expression *expr_, Expression *_aname ) :
135                Expression( _aname ), expr(expr_), type(0), isType(false) {
[906e24d]136        set_result( new BasicType( Type::Qualifiers(), BasicType::LongUnsignedInt ) );
[47534159]137}
138
139AlignofExpr::AlignofExpr( Type *type_, Expression *_aname ) :
140                Expression( _aname ), expr(0), type(type_), isType(true) {
[906e24d]141        set_result( new BasicType( Type::Qualifiers(), BasicType::LongUnsignedInt ) );
[47534159]142}
143
144AlignofExpr::AlignofExpr( const AlignofExpr &other ) :
145        Expression( other ), expr( maybeClone( other.expr ) ), type( maybeClone( other.type ) ), isType( other.isType ) {
146}
147
148AlignofExpr::~AlignofExpr() {
149        delete expr;
150        delete type;
151}
152
153void AlignofExpr::print( std::ostream &os, int indent) const {
154        os << std::string( indent, ' ' ) << "Alignof Expression on: ";
155
[0dd3a2f]156        if (isType)
157                type->print(os, indent + 2);
158        else
159                expr->print(os, indent + 2);
[51b7345]160
[0dd3a2f]161        os << std::endl;
162        Expression::print( os, indent );
[51b7345]163}
164
[2a4b088]165UntypedOffsetofExpr::UntypedOffsetofExpr( Type *type_, const std::string &member_, Expression *_aname ) :
166                Expression( _aname ), type(type_), member(member_) {
[906e24d]167        set_result( new BasicType( Type::Qualifiers(), BasicType::LongUnsignedInt ) );
[2a4b088]168}
169
170UntypedOffsetofExpr::UntypedOffsetofExpr( const UntypedOffsetofExpr &other ) :
171        Expression( other ), type( maybeClone( other.type ) ), member( other.member ) {}
172
173UntypedOffsetofExpr::~UntypedOffsetofExpr() {
174        delete type;
175}
176
177void UntypedOffsetofExpr::print( std::ostream &os, int indent) const {
178        os << std::string( indent, ' ' ) << "Untyped Offsetof Expression on member " << member << " of ";
179
180        if ( type ) {
181                type->print(os, indent + 2);
182        } else {
183                os << "<NULL>";
184        }
185
186        os << std::endl;
187        Expression::print( os, indent );
188}
189
[25a054f]190OffsetofExpr::OffsetofExpr( Type *type_, DeclarationWithType *member_, Expression *_aname ) :
191                Expression( _aname ), type(type_), member(member_) {
[906e24d]192        set_result( new BasicType( Type::Qualifiers(), BasicType::LongUnsignedInt ) );
[25a054f]193}
194
195OffsetofExpr::OffsetofExpr( const OffsetofExpr &other ) :
[79970ed]196        Expression( other ), type( maybeClone( other.type ) ), member( other.member ) {}
[25a054f]197
198OffsetofExpr::~OffsetofExpr() {
199        delete type;
200}
201
202void OffsetofExpr::print( std::ostream &os, int indent) const {
203        os << std::string( indent, ' ' ) << "Offsetof Expression on member ";
204
205        if ( member ) {
206                os << member->get_name();
207        } else {
208                os << "<NULL>";
209        }
210
211        os << " of ";
212
213        if ( type ) {
214                type->print(os, indent + 2);
215        } else {
216                os << "<NULL>";
217        }
218
219        os << std::endl;
220        Expression::print( os, indent );
221}
222
[afc1045]223OffsetPackExpr::OffsetPackExpr( StructInstType *type_, Expression *aname_ ) : Expression( aname_ ), type( type_ ) {
[906e24d]224        set_result( new ArrayType( Type::Qualifiers(), new BasicType( Type::Qualifiers(), BasicType::LongUnsignedInt ), 0, false, false ) );
[afc1045]225}
226
227OffsetPackExpr::OffsetPackExpr( const OffsetPackExpr &other ) : Expression( other ), type( maybeClone( other.type ) ) {}
228
229OffsetPackExpr::~OffsetPackExpr() { delete type; }
230
231void OffsetPackExpr::print( std::ostream &os, int indent ) const {
232        os << std::string( indent, ' ' ) << "Offset pack expression on ";
233
234        if ( type ) {
235                type->print(os, indent + 2);
236        } else {
237                os << "<NULL>";
238        }
239
[25a054f]240        os << std::endl;
241        Expression::print( os, indent );
242}
243
[51b7345]244AttrExpr::AttrExpr( Expression *attr, Expression *expr_, Expression *_aname ) :
[0dd3a2f]245                Expression( _aname ), attr( attr ), expr(expr_), type(0), isType(false) {
[51b7345]246}
247
248AttrExpr::AttrExpr( Expression *attr, Type *type_, Expression *_aname ) :
[0dd3a2f]249                Expression( _aname ), attr( attr ), expr(0), type(type_), isType(true) {
[51b7345]250}
251
[0dd3a2f]252AttrExpr::AttrExpr( const AttrExpr &other ) :
253                Expression( other ), attr( maybeClone( other.attr ) ), expr( maybeClone( other.expr ) ), type( maybeClone( other.type ) ), isType( other.isType ) {
[51b7345]254}
255
[0dd3a2f]256AttrExpr::~AttrExpr() {
257        delete attr;
258        delete expr;
259        delete type;
[51b7345]260}
261
262void AttrExpr::print( std::ostream &os, int indent) const {
[44b5ca0]263        os << std::string( indent, ' ' ) << "Attr ";
[0dd3a2f]264        attr->print( os, indent + 2 );
265        if ( isType || expr ) {
266                os << "applied to: ";
[51b7345]267
[0dd3a2f]268                if (isType)
269                        type->print(os, indent + 2);
270                else
271                        expr->print(os, indent + 2);
272        } // if
[51b7345]273
[0dd3a2f]274        os << std::endl;
275        Expression::print( os, indent );
[51b7345]276}
277
[0dd3a2f]278CastExpr::CastExpr( Expression *arg_, Type *toType, Expression *_aname ) : Expression( _aname ), arg(arg_) {
[906e24d]279        set_result(toType);
[51b7345]280}
281
282CastExpr::CastExpr( Expression *arg_, Expression *_aname ) : Expression( _aname ), arg(arg_) {
[906e24d]283        set_result( new VoidType( Type::Qualifiers() ) );
[51b7345]284}
285
[0dd3a2f]286CastExpr::CastExpr( const CastExpr &other ) : Expression( other ), arg( maybeClone( other.arg ) ) {
[51b7345]287}
288
289CastExpr::~CastExpr() {
[0dd3a2f]290        delete arg;
[51b7345]291}
292
293void CastExpr::print( std::ostream &os, int indent ) const {
[89231bc]294        os << "Cast of:" << std::endl << std::string( indent+2, ' ' );
[0dd3a2f]295        arg->print(os, indent+2);
[44b5ca0]296        os << std::endl << std::string( indent, ' ' ) << "to:" << std::endl;
[906e24d]297        os << std::string( indent+2, ' ' );
298        if ( result->isVoid() ) {
299                os << "nothing";
[0dd3a2f]300        } else {
[906e24d]301                result->print( os, indent+2 );
[0dd3a2f]302        } // if
[906e24d]303        os << std::endl;
[0dd3a2f]304        Expression::print( os, indent );
305}
306
[a5f0529]307VirtualCastExpr::VirtualCastExpr( Expression *arg_, Type *toType ) : Expression(), arg(arg_) {
308        set_result(toType);
309}
310
311VirtualCastExpr::VirtualCastExpr( const VirtualCastExpr &other ) : Expression( other ), arg( maybeClone( other.arg ) ) {
312}
313
314VirtualCastExpr::~VirtualCastExpr() {
315        delete arg;
316}
317
318void VirtualCastExpr::print( std::ostream &os, int indent ) const {
319        os << "Virtual Cast of:" << std::endl << std::string( indent+2, ' ' );
320        arg->print(os, indent+2);
321        os << std::endl << std::string( indent, ' ' ) << "to:" << std::endl;
322        os << std::string( indent+2, ' ' );
323        if ( ! result ) {
324                os << "unknown";
325        } else {
326                result->print( os, indent+2 );
327        } // if
328        os << std::endl;
329        Expression::print( os, indent );
330}
331
[3b58d91]332UntypedMemberExpr::UntypedMemberExpr( Expression * _member, Expression *_aggregate, Expression *_aname ) :
[0dd3a2f]333                Expression( _aname ), member(_member), aggregate(_aggregate) {}
[51b7345]334
[0dd3a2f]335UntypedMemberExpr::UntypedMemberExpr( const UntypedMemberExpr &other ) :
[3b58d91]336                Expression( other ), member( maybeClone( other.member ) ), aggregate( maybeClone( other.aggregate ) ) {
[51b7345]337}
338
339UntypedMemberExpr::~UntypedMemberExpr() {
[0dd3a2f]340        delete aggregate;
[3b58d91]341        delete member;
[51b7345]342}
343
344void UntypedMemberExpr::print( std::ostream &os, int indent ) const {
[3b58d91]345        os << "Untyped Member Expression, with field: " << std::endl;
[8c49c0e]346        os << std::string( indent+2, ' ' );
[3b58d91]347        get_member()->print(os, indent+4);
348        os << std::string( indent+2, ' ' );
[51b7345]349
[0dd3a2f]350        Expression *agg = get_aggregate();
[3b58d91]351        os << "from aggregate: " << std::endl;
[89231bc]352        if (agg != 0) {
[3b58d91]353                os << std::string( indent + 4, ' ' );
354                agg->print(os, indent + 4);
[89231bc]355        }
356        os << std::string( indent+2, ' ' );
[0dd3a2f]357        Expression::print( os, indent );
[51b7345]358}
359
[d9fa60a]360namespace {
361        TypeSubstitution makeSub( Type * t ) {
362                if ( StructInstType * aggInst = dynamic_cast< StructInstType * >( t ) ) {
363                        return TypeSubstitution( aggInst->get_baseParameters()->begin(), aggInst->get_baseParameters()->end(), aggInst->get_parameters().begin() );
364                } else if ( UnionInstType * aggInst = dynamic_cast< UnionInstType * >( t ) ) {
365                        return TypeSubstitution( aggInst->get_baseParameters()->begin(), aggInst->get_baseParameters()->end(), aggInst->get_parameters().begin() );
366                } else {
[4b0f997]367                        assertf( false, "makeSub expects struct or union type for aggregate, but got: %s", toString( t ).c_str() );
[d9fa60a]368                }
369        }
370}
371
[51b7345]372
373MemberExpr::MemberExpr( DeclarationWithType *_member, Expression *_aggregate, Expression *_aname ) :
[0dd3a2f]374                Expression( _aname ), member(_member), aggregate(_aggregate) {
[d9fa60a]375
376        TypeSubstitution sub( makeSub( aggregate->get_result() ) );
377        Type * res = member->get_type()->clone();
378        sub.apply( res );
379        set_result( res );
[615a096]380        get_result()->set_lvalue( true );
[51b7345]381}
382
[0dd3a2f]383MemberExpr::MemberExpr( const MemberExpr &other ) :
[39f84a4]384                Expression( other ), member( other.member ), aggregate( maybeClone( other.aggregate ) ) {
[51b7345]385}
386
387MemberExpr::~MemberExpr() {
[4551a6e]388        // don't delete the member declaration, since it points somewhere else in the tree
[0dd3a2f]389        delete aggregate;
[51b7345]390}
391
392void MemberExpr::print( std::ostream &os, int indent ) const {
[89231bc]393        os << "Member Expression, with field: " << std::endl;
[51b7345]394
[0dd3a2f]395        assert( member );
[44b5ca0]396        os << std::string( indent + 2, ' ' );
[0dd3a2f]397        member->print( os, indent + 2 );
398        os << std::endl;
[51b7345]399
[0dd3a2f]400        Expression *agg = get_aggregate();
[44b5ca0]401        os << std::string( indent, ' ' ) << "from aggregate: " << std::endl;
[89231bc]402        if (agg != 0) {
[bb8ea30]403                os << std::string( indent + 2, ' ' );
[89231bc]404                agg->print(os, indent + 2);
405        }
406        os << std::string( indent+2, ' ' );
[0dd3a2f]407        Expression::print( os, indent );
[51b7345]408}
409
[6eb8948]410UntypedExpr::UntypedExpr( Expression *_function, const std::list<Expression *> &_args, Expression *_aname ) :
411                Expression( _aname ), function(_function), args(_args) {}
[51b7345]412
[0dd3a2f]413UntypedExpr::UntypedExpr( const UntypedExpr &other ) :
414                Expression( other ), function( maybeClone( other.function ) ) {
415        cloneAll( other.args, args );
[51b7345]416}
417
[ac71a86]418UntypedExpr::~UntypedExpr() {
419        delete function;
[03b812d2]420        deleteAll( args );
[ac71a86]421}
[51b7345]422
[b3b2077]423UntypedExpr * UntypedExpr::createDeref( Expression * expr ) {
424        UntypedExpr * ret = new UntypedExpr( new NameExpr("*?"), std::list< Expression * >{ expr } );
425        if ( Type * type = expr->get_result() ) {
426                Type * base = InitTweak::getPointerBase( type );
427                if ( ! base ) {
428                        std::cerr << type << std::endl;
429                }
430                assertf( base, "expected pointer type in dereference\n" );
431                ret->set_result( maybeClone( base ) );
432        }
433        return ret;
434}
435
436UntypedExpr * UntypedExpr::createAssign( Expression * arg1, Expression * arg2 ) {
437        assert( arg1 && arg2 );
438        UntypedExpr * ret = new UntypedExpr( new NameExpr( "?=?" ), std::list< Expression * >{ arg1, arg2 } );
439        if ( arg1->get_result() && arg2->get_result() ) {
440                // if both expressions are typed, assumes that this assignment is a C bitwise assignment,
441                // so the result is the type of the RHS
442                ret->set_result( arg2->get_result()->clone() );
443        }
444        return ret;
445}
446
447
[51b7345]448void UntypedExpr::print( std::ostream &os, int indent ) const {
[89231bc]449        os << "Applying untyped: " << std::endl;
[bb8ea30]450        os << std::string( indent+2, ' ' );
451        function->print(os, indent + 2);
[44b5ca0]452        os << std::string( indent, ' ' ) << "...to: " << std::endl;
[bb8ea30]453        printAll(args, os, indent + 2);
[0dd3a2f]454        Expression::print( os, indent );
[51b7345]455}
456
[0dd3a2f]457void UntypedExpr::printArgs( std::ostream &os, int indent ) const {
458        std::list<Expression *>::const_iterator i;
[60089f4]459        for (i = args.begin(); i != args.end(); i++) {
460                os << std::string(indent, ' ' );
[0dd3a2f]461                (*i)->print(os, indent);
[60089f4]462        }
[51b7345]463}
464
[4cb935e]465NameExpr::NameExpr( std::string _name, Expression *_aname ) : Expression( _aname ), name(_name) {
466        assertf(_name != "0", "Zero is not a valid name\n");
467        assertf(_name != "1", "One is not a valid name\n");
468}
[51b7345]469
[0dd3a2f]470NameExpr::NameExpr( const NameExpr &other ) : Expression( other ), name( other.name ) {
[51b7345]471}
472
473NameExpr::~NameExpr() {}
474
475void NameExpr::print( std::ostream &os, int indent ) const {
[89231bc]476        os << "Name: " << get_name() << std::endl;
[0dd3a2f]477        Expression::print( os, indent );
[51b7345]478}
479
480LogicalExpr::LogicalExpr( Expression *arg1_, Expression *arg2_, bool andp, Expression *_aname ) :
[0dd3a2f]481                Expression( _aname ), arg1(arg1_), arg2(arg2_), isAnd(andp) {
[906e24d]482        set_result( new BasicType( Type::Qualifiers(), BasicType::SignedInt ) );
[51b7345]483}
484
[0dd3a2f]485LogicalExpr::LogicalExpr( const LogicalExpr &other ) :
486                Expression( other ), arg1( maybeClone( other.arg1 ) ), arg2( maybeClone( other.arg2 ) ), isAnd( other.isAnd ) {
[51b7345]487}
488
[a08ba92]489LogicalExpr::~LogicalExpr() {
[0dd3a2f]490        delete arg1;
491        delete arg2;
[51b7345]492}
493
494void LogicalExpr::print( std::ostream &os, int indent )const {
[44b5ca0]495        os << std::string( indent, ' ' ) << "Short-circuited operation (" << (isAnd?"and":"or") << ") on: ";
[0dd3a2f]496        arg1->print(os);
497        os << " and ";
498        arg2->print(os);
499        os << std::endl;
500        Expression::print( os, indent );
[51b7345]501}
502
503ConditionalExpr::ConditionalExpr( Expression *arg1_, Expression *arg2_, Expression *arg3_, Expression *_aname ) :
[0dd3a2f]504                Expression( _aname ), arg1(arg1_), arg2(arg2_), arg3(arg3_) {}
[51b7345]505
[0dd3a2f]506ConditionalExpr::ConditionalExpr( const ConditionalExpr &other ) :
507                Expression( other ), arg1( maybeClone( other.arg1 ) ), arg2( maybeClone( other.arg2 ) ), arg3( maybeClone( other.arg3 ) ) {
508}
[51b7345]509
510ConditionalExpr::~ConditionalExpr() {
[0dd3a2f]511        delete arg1;
512        delete arg2;
513        delete arg3;
[51b7345]514}
515
516void ConditionalExpr::print( std::ostream &os, int indent ) const {
[b3b2077]517        os << "Conditional expression on: " << std::endl;
518        os << std::string( indent+2, ' ' );
[0dd3a2f]519        arg1->print( os, indent+2 );
[44b5ca0]520        os << std::string( indent, ' ' ) << "First alternative:" << std::endl;
[b3b2077]521        os << std::string( indent+2, ' ' );
[0dd3a2f]522        arg2->print( os, indent+2 );
[44b5ca0]523        os << std::string( indent, ' ' ) << "Second alternative:" << std::endl;
[b3b2077]524        os << std::string( indent+2, ' ' );
[0dd3a2f]525        arg3->print( os, indent+2 );
526        os << std::endl;
527        Expression::print( os, indent );
528}
529
[a5f0529]530AsmExpr::AsmExpr( const AsmExpr & other ) : Expression( other ), inout( maybeClone( other.inout ) ), constraint( maybeClone( other.constraint ) ), operand( maybeClone( other.operand ) ) {}
[3be261a]531
532
[7f5566b]533void AsmExpr::print( std::ostream &os, int indent ) const {
534        os << "Asm Expression: " << std::endl;
535        if ( inout ) inout->print( os, indent + 2 );
536        if ( constraint ) constraint->print( os, indent + 2 );
537        if ( operand ) operand->print( os, indent + 2 );
538}
539
[db4ecc5]540
541ImplicitCopyCtorExpr::ImplicitCopyCtorExpr( ApplicationExpr * callExpr ) : callExpr( callExpr ) {
542        assert( callExpr );
[906e24d]543        assert( callExpr->has_result() );
544        set_result( callExpr->get_result()->clone() );
[db4ecc5]545}
546
547ImplicitCopyCtorExpr::ImplicitCopyCtorExpr( const ImplicitCopyCtorExpr & other ) : Expression( other ), callExpr( maybeClone( other.callExpr ) ) {
548        cloneAll( other.tempDecls, tempDecls );
549        cloneAll( other.returnDecls, returnDecls );
550        cloneAll( other.dtors, dtors );
551}
552
553ImplicitCopyCtorExpr::~ImplicitCopyCtorExpr() {
[d5556a3]554        set_env( nullptr ); // ImplicitCopyCtorExpr does not take ownership of an environment
[db4ecc5]555        delete callExpr;
556        deleteAll( tempDecls );
557        deleteAll( returnDecls );
558        deleteAll( dtors );
559}
560
561void ImplicitCopyCtorExpr::print( std::ostream &os, int indent ) const {
[b6fe7e6]562        os <<  "Implicit Copy Constructor Expression: " << std::endl;
[db4ecc5]563        assert( callExpr );
[d5556a3]564        os << std::string( indent+2, ' ' );
[db4ecc5]565        callExpr->print( os, indent + 2 );
566        os << std::endl << std::string( indent, ' ' ) << "with temporaries:" << std::endl;
567        printAll(tempDecls, os, indent+2);
[dc2e7e0]568        os << std::endl << std::string( indent, ' ' ) << "with return temporaries:" << std::endl;
569        printAll(returnDecls, os, indent+2);
[db4ecc5]570        Expression::print( os, indent );
571}
572
[3be261a]573
[b6fe7e6]574ConstructorExpr::ConstructorExpr( Expression * callExpr ) : callExpr( callExpr ) {
575        // allow resolver to type a constructor used as an expression as if it has the same type as its first argument
576        assert( callExpr );
577        Expression * arg = InitTweak::getCallArg( callExpr, 0 );
578        assert( arg );
[906e24d]579        set_result( maybeClone( arg->get_result() ) );
[b6fe7e6]580}
[3be261a]581
[b6fe7e6]582ConstructorExpr::ConstructorExpr( const ConstructorExpr & other ) : Expression( other ), callExpr( maybeClone( other.callExpr ) ) {
583}
584
585ConstructorExpr::~ConstructorExpr() {
586        delete callExpr;
587}
588
589void ConstructorExpr::print( std::ostream &os, int indent ) const {
590        os <<  "Constructor Expression: " << std::endl;
591        assert( callExpr );
592        os << std::string( indent+2, ' ' );
593        callExpr->print( os, indent + 2 );
594        Expression::print( os, indent );
[0dd3a2f]595}
596
[3be261a]597
[fbcde64]598CompoundLiteralExpr::CompoundLiteralExpr( Type * type, Initializer * initializer ) : initializer( initializer ) {
[3c13c03]599        assert( type && initializer );
[fbcde64]600        set_result( type );
[630a82a]601}
602
[fbcde64]603CompoundLiteralExpr::CompoundLiteralExpr( const CompoundLiteralExpr &other ) : Expression( other ), initializer( other.initializer->clone() ) {}
[630a82a]604
605CompoundLiteralExpr::~CompoundLiteralExpr() {
606        delete initializer;
607}
608
609void CompoundLiteralExpr::print( std::ostream &os, int indent ) const {
610        os << "Compound Literal Expression: " << std::endl;
[3c13c03]611        os << std::string( indent+2, ' ' );
[fbcde64]612        get_result()->print( os, indent + 2 );
[3c13c03]613        os << std::string( indent+2, ' ' );
614        initializer->print( os, indent + 2 );
[d5556a3]615        Expression::print( os, indent );
[630a82a]616}
617
[d9e2280]618RangeExpr::RangeExpr( Expression *low, Expression *high ) : low( low ), high( high ) {}
[3c13c03]619RangeExpr::RangeExpr( const RangeExpr &other ) : Expression( other ), low( other.low->clone() ), high( other.high->clone() ) {}
[8688ce1]620void RangeExpr::print( std::ostream &os, int indent ) const {
[3c13c03]621        os << "Range Expression: ";
[8688ce1]622        low->print( os, indent );
623        os << " ... ";
624        high->print( os, indent );
[d5556a3]625        Expression::print( os, indent );
[8688ce1]626}
[3be261a]627
[6eb8948]628StmtExpr::StmtExpr( CompoundStmt *statements ) : statements( statements ) {
629        assert( statements );
630        std::list< Statement * > & body = statements->get_kids();
631        if ( ! body.empty() ) {
632                if ( ExprStmt * exprStmt = dynamic_cast< ExprStmt * >( body.back() ) ) {
[aa8f9df]633                        set_result( maybeClone( exprStmt->get_expr()->get_result() ) );
[6eb8948]634                }
635        }
636}
[d5556a3]637StmtExpr::StmtExpr( const StmtExpr &other ) : Expression( other ), statements( other.statements->clone() ) {
638        cloneAll( other.returnDecls, returnDecls );
639        cloneAll( other.dtors, dtors );
640}
[6eb8948]641StmtExpr::~StmtExpr() {
642        delete statements;
[d5556a3]643        deleteAll( dtors );
644        deleteAll( returnDecls );
[6eb8948]645}
646void StmtExpr::print( std::ostream &os, int indent ) const {
[3c13c03]647        os << "Statement Expression: " << std::endl << std::string( indent, ' ' );
[6eb8948]648        statements->print( os, indent+2 );
[d5556a3]649        if ( ! returnDecls.empty() ) {
650                os << std::string( indent+2, ' ' ) << "with returnDecls: ";
651                printAll( returnDecls, os, indent+2 );
652        }
653        if ( ! dtors.empty() ) {
654                os << std::string( indent+2, ' ' ) << "with dtors: ";
655                printAll( dtors, os, indent+2 );
656        }
657        Expression::print( os, indent );
[6eb8948]658}
659
[3c13c03]660
[bf32bb8]661long long UniqueExpr::count = 0;
[141b786]662UniqueExpr::UniqueExpr( Expression *expr, long long idVal ) : expr( expr ), object( nullptr ), var( nullptr ), id( idVal ) {
663        assert( expr );
[bf32bb8]664        assert( count != -1 );
665        if ( id == -1 ) id = count++;
666        if ( expr->get_result() ) {
667                set_result( expr->get_result()->clone() );
668        }
[3c13c03]669}
[141b786]670UniqueExpr::UniqueExpr( const UniqueExpr &other ) : Expression( other ), expr( maybeClone( other.expr ) ), object( maybeClone( other.object ) ), var( maybeClone( other.var ) ), id( other.id ) {
[3c13c03]671}
672UniqueExpr::~UniqueExpr() {
[141b786]673        delete expr;
674        delete object;
675        delete var;
[3c13c03]676}
677void UniqueExpr::print( std::ostream &os, int indent ) const {
[bf32bb8]678        os << "Unique Expression with id:" << id << std::endl << std::string( indent+2, ' ' );
[3c13c03]679        get_expr()->print( os, indent+2 );
[77971f6]680        if ( get_object() ) {
[d5556a3]681                os << std::string( indent+2, ' ' ) << "with decl: ";
[77971f6]682                get_object()->printShort( os, indent+2 );
683        }
[d5556a3]684        Expression::print( os, indent );
[3c13c03]685}
686
[e4d829b]687InitAlternative::InitAlternative( Type * type, Designation * designation ) : type( type ), designation( designation ) {}
688InitAlternative::InitAlternative( const InitAlternative & other ) : type( maybeClone( other.type ) ), designation( maybeClone( other.designation ) ) {}
689InitAlternative::~InitAlternative() {
690        delete type;
691        delete designation;
692}
693
694UntypedInitExpr::UntypedInitExpr( Expression * expr, const std::list<InitAlternative> & initAlts ) : expr( expr ), initAlts( initAlts ) {}
695UntypedInitExpr::UntypedInitExpr( const UntypedInitExpr & other ) : Expression( other ), expr( maybeClone( other.expr ) ), initAlts( other.initAlts ) {}
696UntypedInitExpr::~UntypedInitExpr() {
697        delete expr;
698}
699
700void UntypedInitExpr::print( std::ostream & os, int indent ) const {
701        os << "Untyped Init Expression" << std::endl << std::string( indent+2, ' ' );
702        expr->print( os, indent+2 );
703        if ( ! initAlts.empty() ) {
704                for ( const InitAlternative & alt : initAlts ) {
705                        os << std::string( indent+2, ' ' ) <<  "InitAlternative: ";
706                        alt.type->print( os, indent+2 );
707                        alt.designation->print( os, indent+2 );
708                }
709        }
710}
711
[62423350]712InitExpr::InitExpr( Expression * expr, Designation * designation ) : expr( expr ), designation( designation ) {
713        set_result( expr->get_result()->clone() );
[e4d829b]714}
715InitExpr::InitExpr( const InitExpr & other ) : Expression( other ), expr( maybeClone( other.expr ) ), designation( maybeClone( other.designation) ) {}
716InitExpr::~InitExpr() {
717        delete expr;
718        delete designation;
719}
720
721void InitExpr::print( std::ostream & os, int indent ) const {
722        os << "Init Expression" << std::endl << std::string( indent+2, ' ' );
723        expr->print( os, indent+2 );
724        os << std::string( indent+2, ' ' ) << "with designation: ";
725        designation->print( os, indent+2 );
726}
727
728
[3906301]729std::ostream & operator<<( std::ostream & out, const Expression * expr ) {
[8bf784a]730        if ( expr ) {
731                expr->print( out );
732        } else {
733                out << "nullptr";
734        }
[baf7fee]735        return out;
736}
737
[0dd3a2f]738// Local Variables: //
739// tab-width: 4 //
740// mode: c++ //
741// compile-command: "make install" //
742// End: //
Note: See TracBrowser for help on using the repository browser.