source: src/SynTree/Expression.cc@ e5d5272

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 with_gc
Last change on this file since e5d5272 was d807ca28, checked in by Rob Schluntz <rschlunt@…>, 7 years ago

Add AST support for _Generic, along with C codegen

  • Property mode set to 100644
File size: 26.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
[ea6332d]16#include "SynTree/Expression.h"
17
18#include <cassert> // for assert, assertf
19#include <iostream> // for ostream, operator<<, basic_ostream
20#include <list> // for list, _List_iterator, list<>::co...
21
22#include "Common/utility.h" // for maybeClone, cloneAll, deleteAll
23#include "Declaration.h" // for ObjectDecl, DeclarationWithType
24#include "Expression.h" // for Expression, ImplicitCopyCtorExpr
25#include "InitTweak/InitTweak.h" // for getCallArg, getPointerBase
26#include "Initializer.h" // for Designation, Initializer
27#include "Statement.h" // for CompoundStmt, ExprStmt, Statement
28#include "SynTree/BaseSyntaxNode.h" // for BaseSyntaxNode
29#include "SynTree/Constant.h" // for Constant
30#include "Type.h" // for Type, BasicType, Type::Qualifiers
31#include "TypeSubstitution.h" // for TypeSubstitution
[51b73452]32
[b0440b7]33#include "GenPoly/Lvalue.h"
[51b73452]34
[68195a6]35void printInferParams( const InferredParams & inferParams, std::ostream &os, Indenter indent, int level ) {
36 if ( ! inferParams.empty() ) {
37 os << indent << "with inferred parameters " << level << ":" << std::endl;
38 for ( InferredParams::const_iterator i = inferParams.begin(); i != inferParams.end(); ++i ) {
39 os << indent+1;
40 Declaration::declFromId( i->second.decl )->printShort( os, indent+1 );
41 os << std::endl;
42 printInferParams( *i->second.inferParams, os, indent+1, level+1 );
43 } // for
44 } // if
45}
46
[bf4b4cf]47Expression::Expression() : result( 0 ), env( 0 ) {}
[0dd3a2f]48
[df626eb]49Expression::Expression( const Expression &other ) : BaseSyntaxNode( other ), result( maybeClone( other.result ) ), env( maybeClone( other.env ) ), extension( other.extension ), inferParams( other.inferParams ) {
[0dd3a2f]50}
51
[cdb990a]52void Expression::spliceInferParams( Expression * other ) {
53 if ( ! other ) return;
54 for ( auto p : other->inferParams ) {
55 inferParams[p.first] = std::move( p.second );
56 }
57}
58
[0dd3a2f]59Expression::~Expression() {
60 delete env;
[906e24d]61 delete result;
[51b73452]62}
63
[50377a4]64void Expression::print( std::ostream &os, Indenter indent ) const {
[68195a6]65 printInferParams( inferParams, os, indent+1, 0 );
66
[0dd3a2f]67 if ( env ) {
[50377a4]68 os << std::endl << indent << "... with environment:" << std::endl;
69 env->print( os, indent+1 );
[0dd3a2f]70 } // if
[e04ef3a]71
72 if ( extension ) {
[50377a4]73 os << std::endl << indent << "... with extension:";
[e04ef3a]74 } // if
[51b73452]75}
76
[bf4b4cf]77ConstantExpr::ConstantExpr( Constant _c ) : Expression(), constant( _c ) {
[906e24d]78 set_result( constant.get_type()->clone() );
[51b73452]79}
80
[0dd3a2f]81ConstantExpr::ConstantExpr( const ConstantExpr &other) : Expression( other ), constant( other.constant ) {
82}
[51b73452]83
84ConstantExpr::~ConstantExpr() {}
85
[50377a4]86void ConstantExpr::print( std::ostream &os, Indenter indent ) const {
[60089f4]87 os << "constant expression " ;
[cf0941d]88 constant.print( os );
[0dd3a2f]89 Expression::print( os, indent );
[51b73452]90}
91
[ddb80bd]92long long int ConstantExpr::intValue() const {
93 if ( BasicType * basicType = dynamic_cast< BasicType * >( result ) ) {
94 if ( basicType->isInteger() ) {
95 return get_constant()->get_ival();
96 }
97 } else if ( dynamic_cast< OneType * >( result ) ) {
98 return 1;
99 } else if ( dynamic_cast< ZeroType * >( result ) ) {
100 return 0;
101 }
[a16764a6]102 SemanticError( this, "Constant expression of non-integral type " );
[ddb80bd]103}
104
[bf4b4cf]105VariableExpr::VariableExpr( DeclarationWithType *_var ) : Expression(), var( _var ) {
[db4ecc5]106 assert( var );
107 assert( var->get_type() );
[906e24d]108 Type * type = var->get_type()->clone();
[615a096]109 type->set_lvalue( true );
[3de176d]110
111 // xxx - doesn't quite work yet - get different alternatives with the same cost
112
113 // // enumerators are not lvalues
114 // if ( EnumInstType * inst = dynamic_cast< EnumInstType * >( var->get_type() ) ) {
115 // assert( inst->baseEnum );
116 // EnumDecl * decl = inst->baseEnum;
[0690350]117 // long long int value;
118 // if ( decl->valueOf( var, value ) ) {
119 // type->set_lvalue( false );
[3de176d]120 // }
121 // }
122
[906e24d]123 set_result( type );
[51b73452]124}
125
[0dd3a2f]126VariableExpr::VariableExpr( const VariableExpr &other ) : Expression( other ), var( other.var ) {
[51b73452]127}
128
[0dd3a2f]129VariableExpr::~VariableExpr() {
130 // don't delete the declaration, since it points somewhere else in the tree
[51b73452]131}
132
[8a6cf7e]133VariableExpr * VariableExpr::functionPointer( FunctionDecl * func ) {
134 VariableExpr * funcExpr = new VariableExpr( func );
135 funcExpr->set_result( new PointerType( Type::Qualifiers(), funcExpr->get_result() ) );
136 return funcExpr;
137}
138
[50377a4]139void VariableExpr::print( std::ostream &os, Indenter indent ) const {
[89231bc]140 os << "Variable Expression: ";
[50377a4]141 var->printShort(os, indent);
[0dd3a2f]142 Expression::print( os, indent );
[51b73452]143}
144
[bf4b4cf]145SizeofExpr::SizeofExpr( Expression *expr_ ) :
146 Expression(), expr(expr_), type(0), isType(false) {
[906e24d]147 set_result( new BasicType( Type::Qualifiers(), BasicType::LongUnsignedInt ) );
[51b73452]148}
149
[bf4b4cf]150SizeofExpr::SizeofExpr( Type *type_ ) :
151 Expression(), expr(0), type(type_), isType(true) {
[906e24d]152 set_result( new BasicType( Type::Qualifiers(), BasicType::LongUnsignedInt ) );
[51b73452]153}
154
[0dd3a2f]155SizeofExpr::SizeofExpr( const SizeofExpr &other ) :
156 Expression( other ), expr( maybeClone( other.expr ) ), type( maybeClone( other.type ) ), isType( other.isType ) {
[51b73452]157}
158
[0dd3a2f]159SizeofExpr::~SizeofExpr() {
160 delete expr;
161 delete type;
[51b73452]162}
163
[50377a4]164void SizeofExpr::print( std::ostream &os, Indenter indent) const {
[89231bc]165 os << "Sizeof Expression on: ";
[50377a4]166 if (isType) type->print(os, indent+1);
167 else expr->print(os, indent+1);
[47534159]168 Expression::print( os, indent );
169}
170
[bf4b4cf]171AlignofExpr::AlignofExpr( Expression *expr_ ) :
172 Expression(), expr(expr_), type(0), isType(false) {
[906e24d]173 set_result( new BasicType( Type::Qualifiers(), BasicType::LongUnsignedInt ) );
[47534159]174}
175
[bf4b4cf]176AlignofExpr::AlignofExpr( Type *type_ ) :
177 Expression(), expr(0), type(type_), isType(true) {
[906e24d]178 set_result( new BasicType( Type::Qualifiers(), BasicType::LongUnsignedInt ) );
[47534159]179}
180
181AlignofExpr::AlignofExpr( const AlignofExpr &other ) :
182 Expression( other ), expr( maybeClone( other.expr ) ), type( maybeClone( other.type ) ), isType( other.isType ) {
183}
184
185AlignofExpr::~AlignofExpr() {
186 delete expr;
187 delete type;
188}
189
[50377a4]190void AlignofExpr::print( std::ostream &os, Indenter indent) const {
[f19339e]191 os << "Alignof Expression on: ";
[50377a4]192 if (isType) type->print(os, indent+1);
193 else expr->print(os, indent+1);
[0dd3a2f]194 Expression::print( os, indent );
[51b73452]195}
196
[bf4b4cf]197UntypedOffsetofExpr::UntypedOffsetofExpr( Type *type, const std::string &member ) :
198 Expression(), type(type), member(member) {
[50377a4]199 assert( type );
[906e24d]200 set_result( new BasicType( Type::Qualifiers(), BasicType::LongUnsignedInt ) );
[2a4b088]201}
202
203UntypedOffsetofExpr::UntypedOffsetofExpr( const UntypedOffsetofExpr &other ) :
204 Expression( other ), type( maybeClone( other.type ) ), member( other.member ) {}
205
206UntypedOffsetofExpr::~UntypedOffsetofExpr() {
207 delete type;
208}
209
[50377a4]210void UntypedOffsetofExpr::print( std::ostream &os, Indenter indent) const {
211 os << "Untyped Offsetof Expression on member " << member << " of ";
212 type->print(os, indent+1);
[2a4b088]213 Expression::print( os, indent );
214}
215
[bf4b4cf]216OffsetofExpr::OffsetofExpr( Type *type, DeclarationWithType *member ) :
217 Expression(), type(type), member(member) {
[50377a4]218 assert( member );
219 assert( type );
[906e24d]220 set_result( new BasicType( Type::Qualifiers(), BasicType::LongUnsignedInt ) );
[25a054f]221}
222
223OffsetofExpr::OffsetofExpr( const OffsetofExpr &other ) :
[79970ed]224 Expression( other ), type( maybeClone( other.type ) ), member( other.member ) {}
[25a054f]225
226OffsetofExpr::~OffsetofExpr() {
227 delete type;
228}
229
[50377a4]230void OffsetofExpr::print( std::ostream &os, Indenter indent) const {
231 os << "Offsetof Expression on member " << member->name << " of ";
232 type->print(os, indent+1);
[25a054f]233 Expression::print( os, indent );
234}
235
[bf4b4cf]236OffsetPackExpr::OffsetPackExpr( StructInstType *type ) : Expression(), type( type ) {
[50377a4]237 assert( type );
[906e24d]238 set_result( new ArrayType( Type::Qualifiers(), new BasicType( Type::Qualifiers(), BasicType::LongUnsignedInt ), 0, false, false ) );
[afc1045]239}
240
241OffsetPackExpr::OffsetPackExpr( const OffsetPackExpr &other ) : Expression( other ), type( maybeClone( other.type ) ) {}
242
243OffsetPackExpr::~OffsetPackExpr() { delete type; }
244
[50377a4]245void OffsetPackExpr::print( std::ostream &os, Indenter indent ) const {
246 os << "Offset pack expression on ";
247 type->print(os, indent+1);
[25a054f]248 Expression::print( os, indent );
249}
250
[bf4b4cf]251AttrExpr::AttrExpr( Expression *attr, Expression *expr_ ) :
252 Expression(), attr( attr ), expr(expr_), type(0), isType(false) {
[51b73452]253}
254
[bf4b4cf]255AttrExpr::AttrExpr( Expression *attr, Type *type_ ) :
256 Expression(), attr( attr ), expr(0), type(type_), isType(true) {
[51b73452]257}
258
[0dd3a2f]259AttrExpr::AttrExpr( const AttrExpr &other ) :
260 Expression( other ), attr( maybeClone( other.attr ) ), expr( maybeClone( other.expr ) ), type( maybeClone( other.type ) ), isType( other.isType ) {
[51b73452]261}
262
[0dd3a2f]263AttrExpr::~AttrExpr() {
264 delete attr;
265 delete expr;
266 delete type;
[51b73452]267}
268
[50377a4]269void AttrExpr::print( std::ostream &os, Indenter indent) const {
[f19339e]270 os << "Attr ";
[50377a4]271 attr->print( os, indent+1);
[0dd3a2f]272 if ( isType || expr ) {
273 os << "applied to: ";
[50377a4]274 if (isType) type->print(os, indent+1);
275 else expr->print(os, indent+1);
[0dd3a2f]276 } // if
277 Expression::print( os, indent );
[51b73452]278}
279
[c0bf94e]280CastExpr::CastExpr( Expression *arg, Type *toType, bool isGenerated ) : Expression(), arg(arg), isGenerated( isGenerated ) {
[906e24d]281 set_result(toType);
[51b73452]282}
283
[c0bf94e]284CastExpr::CastExpr( Expression *arg, bool isGenerated ) : Expression(), arg(arg), isGenerated( isGenerated ) {
[906e24d]285 set_result( new VoidType( Type::Qualifiers() ) );
[51b73452]286}
287
[c0bf94e]288CastExpr::CastExpr( const CastExpr &other ) : Expression( other ), arg( maybeClone( other.arg ) ), isGenerated( other.isGenerated ) {
[51b73452]289}
290
291CastExpr::~CastExpr() {
[0dd3a2f]292 delete arg;
[51b73452]293}
294
[50377a4]295void CastExpr::print( std::ostream &os, Indenter indent ) const {
296 os << "Cast of:" << std::endl << indent+1;
297 arg->print(os, indent+1);
298 os << std::endl << indent << "... to:";
[906e24d]299 if ( result->isVoid() ) {
[50377a4]300 os << " nothing";
[0dd3a2f]301 } else {
[50377a4]302 os << std::endl << indent+1;
303 result->print( os, indent+1 );
[0dd3a2f]304 } // if
305 Expression::print( os, indent );
306}
307
[9a705dc8]308KeywordCastExpr::KeywordCastExpr( Expression *arg, Target target ) : Expression(), arg(arg), target( target ) {
309}
310
311KeywordCastExpr::KeywordCastExpr( const KeywordCastExpr &other ) : Expression( other ), arg( maybeClone( other.arg ) ), target( other.target ) {
312}
313
314KeywordCastExpr::~KeywordCastExpr() {
315 delete arg;
316}
317
318const std::string & KeywordCastExpr::targetString() const {
319 static const std::string targetStrs[] = {
320 "coroutine", "thread", "monitor"
321 };
322 static_assert(
323 (sizeof(targetStrs) / sizeof(targetStrs[0])) == ((unsigned long)NUMBER_OF_TARGETS),
324 "Each KeywordCastExpr::Target should have a corresponding string representation"
325 );
326 return targetStrs[(unsigned long)target];
327}
328
329void KeywordCastExpr::print( std::ostream &os, Indenter indent ) const {
330 os << "Keyword Cast of:" << std::endl << indent+1;
331 arg->print(os, indent+1);
332 os << std::endl << indent << "... to: ";
333 os << targetString();
334 Expression::print( os, indent );
335}
336
[a5f0529]337VirtualCastExpr::VirtualCastExpr( Expression *arg_, Type *toType ) : Expression(), arg(arg_) {
338 set_result(toType);
339}
340
341VirtualCastExpr::VirtualCastExpr( const VirtualCastExpr &other ) : Expression( other ), arg( maybeClone( other.arg ) ) {
342}
343
344VirtualCastExpr::~VirtualCastExpr() {
345 delete arg;
346}
347
[50377a4]348void VirtualCastExpr::print( std::ostream &os, Indenter indent ) const {
349 os << "Virtual Cast of:" << std::endl << indent+1;
350 arg->print(os, indent+1);
351 os << std::endl << indent << "... to:";
[a5f0529]352 if ( ! result ) {
[50377a4]353 os << " unknown";
[a5f0529]354 } else {
[50377a4]355 os << std::endl << indent+1;
356 result->print( os, indent+1 );
[a5f0529]357 } // if
358 Expression::print( os, indent );
359}
360
[bf4b4cf]361UntypedMemberExpr::UntypedMemberExpr( Expression * member, Expression *aggregate ) :
362 Expression(), member(member), aggregate(aggregate) {
[50377a4]363 assert( aggregate );
364}
[51b73452]365
[0dd3a2f]366UntypedMemberExpr::UntypedMemberExpr( const UntypedMemberExpr &other ) :
[3b58d91]367 Expression( other ), member( maybeClone( other.member ) ), aggregate( maybeClone( other.aggregate ) ) {
[51b73452]368}
369
370UntypedMemberExpr::~UntypedMemberExpr() {
[0dd3a2f]371 delete aggregate;
[3b58d91]372 delete member;
[51b73452]373}
374
[50377a4]375void UntypedMemberExpr::print( std::ostream &os, Indenter indent ) const {
376 os << "Untyped Member Expression, with field: " << std::endl << indent+1;
377 member->print(os, indent+1 );
378 os << indent << "... from aggregate: " << std::endl << indent+1;
379 aggregate->print(os, indent+1);
[0dd3a2f]380 Expression::print( os, indent );
[51b73452]381}
382
[bf4b4cf]383MemberExpr::MemberExpr( DeclarationWithType *member, Expression *aggregate ) :
384 Expression(), member(member), aggregate(aggregate) {
[50377a4]385 assert( member );
386 assert( aggregate );
[9bfc9da]387 assert( aggregate->result );
[d9fa60a]388
[9bfc9da]389 TypeSubstitution sub = aggregate->result->genericSubstitution();
[d9fa60a]390 Type * res = member->get_type()->clone();
391 sub.apply( res );
[487845d7]392 result = res;
393 result->set_lvalue( true );
394 result->get_qualifiers() |= aggregate->result->get_qualifiers();
[51b73452]395}
396
[0dd3a2f]397MemberExpr::MemberExpr( const MemberExpr &other ) :
[39f84a4]398 Expression( other ), member( other.member ), aggregate( maybeClone( other.aggregate ) ) {
[51b73452]399}
400
401MemberExpr::~MemberExpr() {
[4551a6e]402 // don't delete the member declaration, since it points somewhere else in the tree
[0dd3a2f]403 delete aggregate;
[51b73452]404}
405
[50377a4]406void MemberExpr::print( std::ostream &os, Indenter indent ) const {
[89231bc]407 os << "Member Expression, with field: " << std::endl;
[50377a4]408 os << indent+1;
409 member->print( os, indent+1 );
410 os << std::endl << indent << "... from aggregate: " << std::endl << indent+1;
411 aggregate->print(os, indent + 1);
[0dd3a2f]412 Expression::print( os, indent );
[51b73452]413}
414
[bf4b4cf]415UntypedExpr::UntypedExpr( Expression *function, const std::list<Expression *> &args ) :
416 Expression(), function(function), args(args) {}
[51b73452]417
[0dd3a2f]418UntypedExpr::UntypedExpr( const UntypedExpr &other ) :
419 Expression( other ), function( maybeClone( other.function ) ) {
420 cloneAll( other.args, args );
[51b73452]421}
422
[ac71a86]423UntypedExpr::~UntypedExpr() {
424 delete function;
[03b812d2]425 deleteAll( args );
[ac71a86]426}
[51b73452]427
[b3b2077]428UntypedExpr * UntypedExpr::createDeref( Expression * expr ) {
429 UntypedExpr * ret = new UntypedExpr( new NameExpr("*?"), std::list< Expression * >{ expr } );
430 if ( Type * type = expr->get_result() ) {
431 Type * base = InitTweak::getPointerBase( type );
[0698aa1]432 assertf( base, "expected pointer type in dereference (type was %s)", toString( type ).c_str() );
[b0440b7]433 ret->set_result( base->clone() );
434 if ( GenPoly::referencesPermissable() ) {
435 // if references are still allowed in the AST, dereference returns a reference
436 ret->set_result( new ReferenceType( Type::Qualifiers(), ret->get_result() ) );
437 } else {
438 // references have been removed, in which case dereference returns an lvalue of the base type.
[0690350]439 ret->result->set_lvalue( true );
[b0440b7]440 }
[b3b2077]441 }
442 return ret;
443}
444
445UntypedExpr * UntypedExpr::createAssign( Expression * arg1, Expression * arg2 ) {
446 assert( arg1 && arg2 );
447 UntypedExpr * ret = new UntypedExpr( new NameExpr( "?=?" ), std::list< Expression * >{ arg1, arg2 } );
448 if ( arg1->get_result() && arg2->get_result() ) {
449 // if both expressions are typed, assumes that this assignment is a C bitwise assignment,
450 // so the result is the type of the RHS
451 ret->set_result( arg2->get_result()->clone() );
452 }
453 return ret;
454}
455
456
[50377a4]457void UntypedExpr::print( std::ostream &os, Indenter indent ) const {
[89231bc]458 os << "Applying untyped: " << std::endl;
[50377a4]459 os << indent+1;
460 function->print(os, indent+1);
461 os << std::endl << indent << "...to: " << std::endl;
462 printAll(args, os, indent+1);
[0dd3a2f]463 Expression::print( os, indent );
[51b73452]464}
465
[bf4b4cf]466NameExpr::NameExpr( std::string name ) : Expression(), name(name) {
[50377a4]467 assertf(name != "0", "Zero is not a valid name");
468 assertf(name != "1", "One is not a valid name");
[4cb935e]469}
[51b73452]470
[0dd3a2f]471NameExpr::NameExpr( const NameExpr &other ) : Expression( other ), name( other.name ) {
[51b73452]472}
473
474NameExpr::~NameExpr() {}
475
[50377a4]476void NameExpr::print( std::ostream &os, Indenter indent ) const {
477 os << "Name: " << get_name();
[0dd3a2f]478 Expression::print( os, indent );
[51b73452]479}
480
[bf4b4cf]481LogicalExpr::LogicalExpr( Expression *arg1_, Expression *arg2_, bool andp ) :
482 Expression(), arg1(arg1_), arg2(arg2_), isAnd(andp) {
[906e24d]483 set_result( new BasicType( Type::Qualifiers(), BasicType::SignedInt ) );
[51b73452]484}
485
[0dd3a2f]486LogicalExpr::LogicalExpr( const LogicalExpr &other ) :
487 Expression( other ), arg1( maybeClone( other.arg1 ) ), arg2( maybeClone( other.arg2 ) ), isAnd( other.isAnd ) {
[51b73452]488}
489
[a08ba92]490LogicalExpr::~LogicalExpr() {
[0dd3a2f]491 delete arg1;
492 delete arg2;
[51b73452]493}
494
[50377a4]495void LogicalExpr::print( std::ostream &os, Indenter indent )const {
496 os << "Short-circuited operation (" << (isAnd ? "and" : "or") << ") on: ";
[0dd3a2f]497 arg1->print(os);
498 os << " and ";
499 arg2->print(os);
500 Expression::print( os, indent );
[51b73452]501}
502
[bf4b4cf]503ConditionalExpr::ConditionalExpr( Expression * arg1, Expression * arg2, Expression * arg3 ) :
504 Expression(), arg1(arg1), arg2(arg2), arg3(arg3) {}
[51b73452]505
[0dd3a2f]506ConditionalExpr::ConditionalExpr( const ConditionalExpr &other ) :
507 Expression( other ), arg1( maybeClone( other.arg1 ) ), arg2( maybeClone( other.arg2 ) ), arg3( maybeClone( other.arg3 ) ) {
508}
[51b73452]509
510ConditionalExpr::~ConditionalExpr() {
[0dd3a2f]511 delete arg1;
512 delete arg2;
513 delete arg3;
[51b73452]514}
515
[50377a4]516void ConditionalExpr::print( std::ostream &os, Indenter indent ) const {
517 os << "Conditional expression on: " << std::endl << indent+1;
518 arg1->print( os, indent+1 );
519 os << indent << "First alternative:" << std::endl << indent+1;
520 arg2->print( os, indent+1 );
521 os << indent << "Second alternative:" << std::endl << indent+1;
522 arg3->print( os, indent+1 );
[0dd3a2f]523 Expression::print( os, indent );
524}
525
[e6cee92]526AsmExpr::AsmExpr( const AsmExpr & other ) : Expression( other ), inout( maybeClone( other.inout ) ), constraint( maybeClone( other.constraint ) ), operand( maybeClone( other.operand ) ) {}
[3be261a]527
528
[50377a4]529void AsmExpr::print( std::ostream &os, Indenter indent ) const {
[7f5566b]530 os << "Asm Expression: " << std::endl;
[50377a4]531 if ( inout ) inout->print( os, indent+1 );
532 if ( constraint ) constraint->print( os, indent+1 );
533 if ( operand ) operand->print( os, indent+1 );
[7f5566b]534}
535
[db4ecc5]536
537ImplicitCopyCtorExpr::ImplicitCopyCtorExpr( ApplicationExpr * callExpr ) : callExpr( callExpr ) {
538 assert( callExpr );
[50377a4]539 assert( callExpr->result );
[906e24d]540 set_result( callExpr->get_result()->clone() );
[db4ecc5]541}
542
543ImplicitCopyCtorExpr::ImplicitCopyCtorExpr( const ImplicitCopyCtorExpr & other ) : Expression( other ), callExpr( maybeClone( other.callExpr ) ) {
544 cloneAll( other.tempDecls, tempDecls );
545 cloneAll( other.returnDecls, returnDecls );
546 cloneAll( other.dtors, dtors );
547}
548
549ImplicitCopyCtorExpr::~ImplicitCopyCtorExpr() {
[d5556a3]550 set_env( nullptr ); // ImplicitCopyCtorExpr does not take ownership of an environment
[db4ecc5]551 delete callExpr;
552 deleteAll( tempDecls );
553 deleteAll( returnDecls );
554 deleteAll( dtors );
555}
556
[50377a4]557void ImplicitCopyCtorExpr::print( std::ostream &os, Indenter indent ) const {
558 os << "Implicit Copy Constructor Expression: " << std::endl << indent+1;
559 callExpr->print( os, indent+1 );
560 os << std::endl << indent << "... with temporaries:" << std::endl;
561 printAll( tempDecls, os, indent+1 );
562 os << std::endl << indent << "... with return temporaries:" << std::endl;
563 printAll( returnDecls, os, indent+1 );
[db4ecc5]564 Expression::print( os, indent );
565}
566
[3be261a]567
[b6fe7e6]568ConstructorExpr::ConstructorExpr( Expression * callExpr ) : callExpr( callExpr ) {
569 // allow resolver to type a constructor used as an expression as if it has the same type as its first argument
570 assert( callExpr );
571 Expression * arg = InitTweak::getCallArg( callExpr, 0 );
572 assert( arg );
[50377a4]573 set_result( maybeClone( arg->result ) );
[b6fe7e6]574}
[3be261a]575
[b6fe7e6]576ConstructorExpr::ConstructorExpr( const ConstructorExpr & other ) : Expression( other ), callExpr( maybeClone( other.callExpr ) ) {
577}
578
579ConstructorExpr::~ConstructorExpr() {
580 delete callExpr;
581}
582
[50377a4]583void ConstructorExpr::print( std::ostream &os, Indenter indent ) const {
584 os << "Constructor Expression: " << std::endl << indent+1;
[b6fe7e6]585 callExpr->print( os, indent + 2 );
586 Expression::print( os, indent );
[0dd3a2f]587}
588
[3be261a]589
[fbcde64]590CompoundLiteralExpr::CompoundLiteralExpr( Type * type, Initializer * initializer ) : initializer( initializer ) {
[3c13c03]591 assert( type && initializer );
[5ccb10d]592 type->set_lvalue( true );
[fbcde64]593 set_result( type );
[630a82a]594}
595
[fbcde64]596CompoundLiteralExpr::CompoundLiteralExpr( const CompoundLiteralExpr &other ) : Expression( other ), initializer( other.initializer->clone() ) {}
[630a82a]597
598CompoundLiteralExpr::~CompoundLiteralExpr() {
599 delete initializer;
600}
601
[50377a4]602void CompoundLiteralExpr::print( std::ostream &os, Indenter indent ) const {
603 os << "Compound Literal Expression: " << std::endl << indent+1;
604 result->print( os, indent+1 );
605 os << indent+1;
606 initializer->print( os, indent+1 );
[d5556a3]607 Expression::print( os, indent );
[630a82a]608}
609
[d9e2280]610RangeExpr::RangeExpr( Expression *low, Expression *high ) : low( low ), high( high ) {}
[3c13c03]611RangeExpr::RangeExpr( const RangeExpr &other ) : Expression( other ), low( other.low->clone() ), high( other.high->clone() ) {}
[50377a4]612void RangeExpr::print( std::ostream &os, Indenter indent ) const {
[3c13c03]613 os << "Range Expression: ";
[8688ce1]614 low->print( os, indent );
615 os << " ... ";
616 high->print( os, indent );
[d5556a3]617 Expression::print( os, indent );
[8688ce1]618}
[3be261a]619
[6eb8948]620StmtExpr::StmtExpr( CompoundStmt *statements ) : statements( statements ) {
[5e2c348]621 computeResult();
622}
623StmtExpr::StmtExpr( const StmtExpr &other ) : Expression( other ), statements( other.statements->clone() ) {
624 cloneAll( other.returnDecls, returnDecls );
625 cloneAll( other.dtors, dtors );
626}
627StmtExpr::~StmtExpr() {
628 delete statements;
629 deleteAll( dtors );
630 deleteAll( returnDecls );
631}
632void StmtExpr::computeResult() {
[6eb8948]633 assert( statements );
[5e2c348]634 std::list< Statement * > & body = statements->kids;
635 delete result;
636 result = nullptr;
[0992849]637 if ( ! returnDecls.empty() ) {
638 // prioritize return decl for result type, since if a return decl exists, then
639 // the StmtExpr is currently in an intermediate state where the body will always
640 // give a void result type.
641 result = returnDecls.front()->get_type()->clone();
642 } else if ( ! body.empty() ) {
[6eb8948]643 if ( ExprStmt * exprStmt = dynamic_cast< ExprStmt * >( body.back() ) ) {
[9fe33947]644 result = maybeClone( exprStmt->expr->result );
[6eb8948]645 }
646 }
[07516b56]647 // ensure that StmtExpr has a result type
648 if ( ! result ) {
[9fe33947]649 result = new VoidType( Type::Qualifiers() );
[07516b56]650 }
[6eb8948]651}
[50377a4]652void StmtExpr::print( std::ostream &os, Indenter indent ) const {
653 os << "Statement Expression: " << std::endl << indent+1;
654 statements->print( os, indent+1 );
[d5556a3]655 if ( ! returnDecls.empty() ) {
[50377a4]656 os << indent+1 << "... with returnDecls: ";
657 printAll( returnDecls, os, indent+1 );
[d5556a3]658 }
659 if ( ! dtors.empty() ) {
[50377a4]660 os << indent+1 << "... with dtors: ";
661 printAll( dtors, os, indent+1 );
[d5556a3]662 }
663 Expression::print( os, indent );
[6eb8948]664}
665
[3c13c03]666
[bf32bb8]667long long UniqueExpr::count = 0;
[141b786]668UniqueExpr::UniqueExpr( Expression *expr, long long idVal ) : expr( expr ), object( nullptr ), var( nullptr ), id( idVal ) {
669 assert( expr );
[bf32bb8]670 assert( count != -1 );
671 if ( id == -1 ) id = count++;
672 if ( expr->get_result() ) {
673 set_result( expr->get_result()->clone() );
674 }
[3c13c03]675}
[141b786]676UniqueExpr::UniqueExpr( const UniqueExpr &other ) : Expression( other ), expr( maybeClone( other.expr ) ), object( maybeClone( other.object ) ), var( maybeClone( other.var ) ), id( other.id ) {
[3c13c03]677}
678UniqueExpr::~UniqueExpr() {
[141b786]679 delete expr;
680 delete object;
681 delete var;
[3c13c03]682}
[50377a4]683void UniqueExpr::print( std::ostream &os, Indenter indent ) const {
684 os << "Unique Expression with id:" << id << std::endl << indent+1;
685 expr->print( os, indent+1 );
686 if ( object ) {
687 os << indent << "... with decl: ";
688 get_object()->printShort( os, indent+1 );
[77971f6]689 }
[d5556a3]690 Expression::print( os, indent );
[3c13c03]691}
692
[e4d829b]693InitAlternative::InitAlternative( Type * type, Designation * designation ) : type( type ), designation( designation ) {}
694InitAlternative::InitAlternative( const InitAlternative & other ) : type( maybeClone( other.type ) ), designation( maybeClone( other.designation ) ) {}
695InitAlternative::~InitAlternative() {
696 delete type;
697 delete designation;
698}
699
700UntypedInitExpr::UntypedInitExpr( Expression * expr, const std::list<InitAlternative> & initAlts ) : expr( expr ), initAlts( initAlts ) {}
701UntypedInitExpr::UntypedInitExpr( const UntypedInitExpr & other ) : Expression( other ), expr( maybeClone( other.expr ) ), initAlts( other.initAlts ) {}
702UntypedInitExpr::~UntypedInitExpr() {
703 delete expr;
704}
705
[50377a4]706void UntypedInitExpr::print( std::ostream & os, Indenter indent ) const {
707 os << "Untyped Init Expression" << std::endl << indent+1;
708 expr->print( os, indent+1 );
[e4d829b]709 if ( ! initAlts.empty() ) {
710 for ( const InitAlternative & alt : initAlts ) {
[50377a4]711 os << indent+1 << "InitAlternative: ";
712 alt.type->print( os, indent+1 );
713 alt.designation->print( os, indent+1 );
[e4d829b]714 }
715 }
716}
717
[62423350]718InitExpr::InitExpr( Expression * expr, Designation * designation ) : expr( expr ), designation( designation ) {
719 set_result( expr->get_result()->clone() );
[e4d829b]720}
721InitExpr::InitExpr( const InitExpr & other ) : Expression( other ), expr( maybeClone( other.expr ) ), designation( maybeClone( other.designation) ) {}
722InitExpr::~InitExpr() {
723 delete expr;
724 delete designation;
725}
726
[50377a4]727void InitExpr::print( std::ostream & os, Indenter indent ) const {
728 os << "Init Expression" << std::endl << indent+1;
729 expr->print( os, indent+1 );
730 os << indent+1 << "... with designation: ";
731 designation->print( os, indent+1 );
[e4d829b]732}
733
[44b4114]734DeletedExpr::DeletedExpr( Expression * expr, BaseSyntaxNode * deleteStmt ) : expr( expr ), deleteStmt( deleteStmt ) {
735 assert( expr->result );
736 result = expr->result->clone();
737}
738DeletedExpr::DeletedExpr( const DeletedExpr & other ) : Expression( other ), expr( maybeClone( other.expr ) ), deleteStmt( other.deleteStmt ) {}
739DeletedExpr::~DeletedExpr() {
740 delete expr;
741}
742
743void DeletedExpr::print( std::ostream & os, Indenter indent ) const {
744 os << "Deleted Expression" << std::endl << indent+1;
745 expr->print( os, indent+1 );
746 os << std::endl << indent+1 << "... deleted by: ";
747 deleteStmt->print( os, indent+1 );
748}
749
[d807ca28]750GenericExpr::Association::Association( Type * type, Expression * expr ) : type( type ), expr( expr ), isDefault( false ) {}
751GenericExpr::Association::Association( Expression * expr ) : type( nullptr ), expr( expr ), isDefault( true ) {}
752GenericExpr::Association::Association( const Association & other ) : type( maybeClone( other.type ) ), expr( maybeClone( other.expr ) ), isDefault( other.isDefault ) {}
753GenericExpr::Association::~Association() {
754 delete type;
755 delete expr;
756}
757
758GenericExpr::GenericExpr( Expression * control, const std::list<Association> & assoc ) : Expression(), control( control ), associations( assoc ) {}
759GenericExpr::GenericExpr( const GenericExpr & other ) : Expression(other), control( maybeClone( other.control ) ), associations( other.associations ) {
760}
761GenericExpr::~GenericExpr() {
762 delete control;
763}
764
765void GenericExpr::print( std::ostream & os, Indenter indent ) const {
766 os << "C11 _Generic Expression" << std::endl << indent+1;
767 control->print( os, indent+1 );
768 os << std::endl << indent+1 << "... with associations: " << std::endl;
769 for ( const Association & assoc : associations ) {
770 os << indent+1;
771 if (assoc.isDefault) {
772 os << "... default: ";
773 assoc.expr->print( os, indent+1 );
774 } else {
775 os << "... type: ";
776 assoc.type->print( os, indent+1 );
777 os << std::endl << indent+1 << "... expression: ";
778 assoc.expr->print( os, indent+1 );
779 os << std::endl;
780 }
781 os << std::endl;
782 }
783}
[44b4114]784
[0dd3a2f]785// Local Variables: //
786// tab-width: 4 //
787// mode: c++ //
788// compile-command: "make install" //
789// End: //
Note: See TracBrowser for help on using the repository browser.