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 | // Expression.cc --
|
---|
8 | //
|
---|
9 | // Author : Richard C. Bilson
|
---|
10 | // Created On : Mon May 18 07:44:20 2015
|
---|
11 | // Last Modified By : Rob Schluntz
|
---|
12 | // Last Modified On : Mon Apr 18 17:25:06 2016
|
---|
13 | // Update Count : 40
|
---|
14 | //
|
---|
15 |
|
---|
16 | #include <iostream>
|
---|
17 | #include <cassert>
|
---|
18 | #include <list>
|
---|
19 | #include <algorithm>
|
---|
20 |
|
---|
21 | #include <iterator>
|
---|
22 |
|
---|
23 | #include "Type.h"
|
---|
24 | #include "Initializer.h"
|
---|
25 | #include "Expression.h"
|
---|
26 | #include "Declaration.h"
|
---|
27 | #include "Statement.h"
|
---|
28 | #include "TypeSubstitution.h"
|
---|
29 | #include "Common/utility.h"
|
---|
30 |
|
---|
31 |
|
---|
32 | Expression::Expression( Expression *_aname ) : env( 0 ), argName( _aname ) {}
|
---|
33 |
|
---|
34 | Expression::Expression( const Expression &other ) : env( maybeClone( other.env ) ), argName( maybeClone( other.get_argName() ) ) {
|
---|
35 | cloneAll( other.results, results );
|
---|
36 | }
|
---|
37 |
|
---|
38 | Expression::~Expression() {
|
---|
39 | delete env;
|
---|
40 | delete argName; // xxx -- there's a problem in cloning ConstantExpr I still don't know how to fix
|
---|
41 | deleteAll( results );
|
---|
42 | }
|
---|
43 |
|
---|
44 | void Expression::add_result( Type *t ) {
|
---|
45 | if ( TupleType *tuple = dynamic_cast< TupleType* >( t ) ) {
|
---|
46 | std::copy( tuple->get_types().begin(), tuple->get_types().end(), back_inserter( results ) );
|
---|
47 | } else {
|
---|
48 | results.push_back(t);
|
---|
49 | } // if
|
---|
50 | }
|
---|
51 |
|
---|
52 | void Expression::print( std::ostream &os, int indent ) const {
|
---|
53 | if ( env ) {
|
---|
54 | os << std::string( indent, ' ' ) << "with environment:" << std::endl;
|
---|
55 | env->print( os, indent+2 );
|
---|
56 | } // if
|
---|
57 |
|
---|
58 | if ( argName ) {
|
---|
59 | os << std::string( indent, ' ' ) << "with designator:";
|
---|
60 | argName->print( os, indent+2 );
|
---|
61 | } // if
|
---|
62 | }
|
---|
63 |
|
---|
64 | ConstantExpr::ConstantExpr( Constant _c, Expression *_aname ) : Expression( _aname ), constant( _c ) {
|
---|
65 | add_result( constant.get_type()->clone() );
|
---|
66 | }
|
---|
67 |
|
---|
68 | ConstantExpr::ConstantExpr( const ConstantExpr &other) : Expression( other ), constant( other.constant ) {
|
---|
69 | }
|
---|
70 |
|
---|
71 | ConstantExpr::~ConstantExpr() {}
|
---|
72 |
|
---|
73 | void ConstantExpr::print( std::ostream &os, int indent ) const {
|
---|
74 | os << std::string( indent, ' ' ) << "constant expression " ;
|
---|
75 | constant.print( os );
|
---|
76 | Expression::print( os, indent );
|
---|
77 | os << std::endl;
|
---|
78 | }
|
---|
79 |
|
---|
80 | VariableExpr::VariableExpr( DeclarationWithType *_var, Expression *_aname ) : Expression( _aname ), var( _var ) {
|
---|
81 | assert( var );
|
---|
82 | assert( var->get_type() );
|
---|
83 | add_result( var->get_type()->clone() );
|
---|
84 | for ( std::list< Type* >::iterator i = get_results().begin(); i != get_results().end(); ++i ) {
|
---|
85 | (*i)->set_isLvalue( true );
|
---|
86 | } // for
|
---|
87 | }
|
---|
88 |
|
---|
89 | VariableExpr::VariableExpr( const VariableExpr &other ) : Expression( other ), var( other.var ) {
|
---|
90 | }
|
---|
91 |
|
---|
92 | VariableExpr::~VariableExpr() {
|
---|
93 | // don't delete the declaration, since it points somewhere else in the tree
|
---|
94 | }
|
---|
95 |
|
---|
96 | void VariableExpr::print( std::ostream &os, int indent ) const {
|
---|
97 | os << std::string( indent, ' ' ) << "Variable Expression: ";
|
---|
98 |
|
---|
99 | Declaration *decl = get_var();
|
---|
100 | // if ( decl != 0) decl->print(os, indent + 2);
|
---|
101 | if ( decl != 0) decl->printShort(os, indent + 2);
|
---|
102 | os << std::endl;
|
---|
103 | Expression::print( os, indent );
|
---|
104 | }
|
---|
105 |
|
---|
106 | SizeofExpr::SizeofExpr( Expression *expr_, Expression *_aname ) :
|
---|
107 | Expression( _aname ), expr(expr_), type(0), isType(false) {
|
---|
108 | add_result( new BasicType( Type::Qualifiers(), BasicType::LongUnsignedInt ) );
|
---|
109 | }
|
---|
110 |
|
---|
111 | SizeofExpr::SizeofExpr( Type *type_, Expression *_aname ) :
|
---|
112 | Expression( _aname ), expr(0), type(type_), isType(true) {
|
---|
113 | add_result( new BasicType( Type::Qualifiers(), BasicType::LongUnsignedInt ) );
|
---|
114 | }
|
---|
115 |
|
---|
116 | SizeofExpr::SizeofExpr( const SizeofExpr &other ) :
|
---|
117 | Expression( other ), expr( maybeClone( other.expr ) ), type( maybeClone( other.type ) ), isType( other.isType ) {
|
---|
118 | }
|
---|
119 |
|
---|
120 | SizeofExpr::~SizeofExpr() {
|
---|
121 | delete expr;
|
---|
122 | delete type;
|
---|
123 | }
|
---|
124 |
|
---|
125 | void SizeofExpr::print( std::ostream &os, int indent) const {
|
---|
126 | os << std::string( indent, ' ' ) << "Sizeof Expression on: ";
|
---|
127 |
|
---|
128 | if (isType)
|
---|
129 | type->print(os, indent + 2);
|
---|
130 | else
|
---|
131 | expr->print(os, indent + 2);
|
---|
132 |
|
---|
133 | os << std::endl;
|
---|
134 | Expression::print( os, indent );
|
---|
135 | }
|
---|
136 |
|
---|
137 | AlignofExpr::AlignofExpr( Expression *expr_, Expression *_aname ) :
|
---|
138 | Expression( _aname ), expr(expr_), type(0), isType(false) {
|
---|
139 | add_result( new BasicType( Type::Qualifiers(), BasicType::LongUnsignedInt ) );
|
---|
140 | }
|
---|
141 |
|
---|
142 | AlignofExpr::AlignofExpr( Type *type_, Expression *_aname ) :
|
---|
143 | Expression( _aname ), expr(0), type(type_), isType(true) {
|
---|
144 | add_result( new BasicType( Type::Qualifiers(), BasicType::LongUnsignedInt ) );
|
---|
145 | }
|
---|
146 |
|
---|
147 | AlignofExpr::AlignofExpr( const AlignofExpr &other ) :
|
---|
148 | Expression( other ), expr( maybeClone( other.expr ) ), type( maybeClone( other.type ) ), isType( other.isType ) {
|
---|
149 | }
|
---|
150 |
|
---|
151 | AlignofExpr::~AlignofExpr() {
|
---|
152 | delete expr;
|
---|
153 | delete type;
|
---|
154 | }
|
---|
155 |
|
---|
156 | void AlignofExpr::print( std::ostream &os, int indent) const {
|
---|
157 | os << std::string( indent, ' ' ) << "Alignof Expression on: ";
|
---|
158 |
|
---|
159 | if (isType)
|
---|
160 | type->print(os, indent + 2);
|
---|
161 | else
|
---|
162 | expr->print(os, indent + 2);
|
---|
163 |
|
---|
164 | os << std::endl;
|
---|
165 | Expression::print( os, indent );
|
---|
166 | }
|
---|
167 |
|
---|
168 | UntypedOffsetofExpr::UntypedOffsetofExpr( Type *type_, const std::string &member_, Expression *_aname ) :
|
---|
169 | Expression( _aname ), type(type_), member(member_) {
|
---|
170 | add_result( new BasicType( Type::Qualifiers(), BasicType::LongUnsignedInt ) );
|
---|
171 | }
|
---|
172 |
|
---|
173 | UntypedOffsetofExpr::UntypedOffsetofExpr( const UntypedOffsetofExpr &other ) :
|
---|
174 | Expression( other ), type( maybeClone( other.type ) ), member( other.member ) {}
|
---|
175 |
|
---|
176 | UntypedOffsetofExpr::~UntypedOffsetofExpr() {
|
---|
177 | delete type;
|
---|
178 | }
|
---|
179 |
|
---|
180 | void UntypedOffsetofExpr::print( std::ostream &os, int indent) const {
|
---|
181 | os << std::string( indent, ' ' ) << "Untyped Offsetof Expression on member " << member << " of ";
|
---|
182 |
|
---|
183 | if ( type ) {
|
---|
184 | type->print(os, indent + 2);
|
---|
185 | } else {
|
---|
186 | os << "<NULL>";
|
---|
187 | }
|
---|
188 |
|
---|
189 | os << std::endl;
|
---|
190 | Expression::print( os, indent );
|
---|
191 | }
|
---|
192 |
|
---|
193 | OffsetofExpr::OffsetofExpr( Type *type_, DeclarationWithType *member_, Expression *_aname ) :
|
---|
194 | Expression( _aname ), type(type_), member(member_) {
|
---|
195 | add_result( new BasicType( Type::Qualifiers(), BasicType::LongUnsignedInt ) );
|
---|
196 | }
|
---|
197 |
|
---|
198 | OffsetofExpr::OffsetofExpr( const OffsetofExpr &other ) :
|
---|
199 | Expression( other ), type( maybeClone( other.type ) ), member( maybeClone( other.member ) ) {}
|
---|
200 |
|
---|
201 | OffsetofExpr::~OffsetofExpr() {
|
---|
202 | delete type;
|
---|
203 | delete member;
|
---|
204 | }
|
---|
205 |
|
---|
206 | void OffsetofExpr::print( std::ostream &os, int indent) const {
|
---|
207 | os << std::string( indent, ' ' ) << "Offsetof Expression on member ";
|
---|
208 |
|
---|
209 | if ( member ) {
|
---|
210 | os << member->get_name();
|
---|
211 | } else {
|
---|
212 | os << "<NULL>";
|
---|
213 | }
|
---|
214 |
|
---|
215 | os << " of ";
|
---|
216 |
|
---|
217 | if ( type ) {
|
---|
218 | type->print(os, indent + 2);
|
---|
219 | } else {
|
---|
220 | os << "<NULL>";
|
---|
221 | }
|
---|
222 |
|
---|
223 | os << std::endl;
|
---|
224 | Expression::print( os, indent );
|
---|
225 | }
|
---|
226 |
|
---|
227 | OffsetPackExpr::OffsetPackExpr( StructInstType *type_, Expression *aname_ ) : Expression( aname_ ), type( type_ ) {
|
---|
228 | add_result( new ArrayType( Type::Qualifiers(), new BasicType( Type::Qualifiers(), BasicType::LongUnsignedInt ), 0, false, false ) );
|
---|
229 | }
|
---|
230 |
|
---|
231 | OffsetPackExpr::OffsetPackExpr( const OffsetPackExpr &other ) : Expression( other ), type( maybeClone( other.type ) ) {}
|
---|
232 |
|
---|
233 | OffsetPackExpr::~OffsetPackExpr() { delete type; }
|
---|
234 |
|
---|
235 | void OffsetPackExpr::print( std::ostream &os, int indent ) const {
|
---|
236 | os << std::string( indent, ' ' ) << "Offset pack expression on ";
|
---|
237 |
|
---|
238 | if ( type ) {
|
---|
239 | type->print(os, indent + 2);
|
---|
240 | } else {
|
---|
241 | os << "<NULL>";
|
---|
242 | }
|
---|
243 |
|
---|
244 | os << std::endl;
|
---|
245 | Expression::print( os, indent );
|
---|
246 | }
|
---|
247 |
|
---|
248 | AttrExpr::AttrExpr( Expression *attr, Expression *expr_, Expression *_aname ) :
|
---|
249 | Expression( _aname ), attr( attr ), expr(expr_), type(0), isType(false) {
|
---|
250 | }
|
---|
251 |
|
---|
252 | AttrExpr::AttrExpr( Expression *attr, Type *type_, Expression *_aname ) :
|
---|
253 | Expression( _aname ), attr( attr ), expr(0), type(type_), isType(true) {
|
---|
254 | }
|
---|
255 |
|
---|
256 | AttrExpr::AttrExpr( const AttrExpr &other ) :
|
---|
257 | Expression( other ), attr( maybeClone( other.attr ) ), expr( maybeClone( other.expr ) ), type( maybeClone( other.type ) ), isType( other.isType ) {
|
---|
258 | }
|
---|
259 |
|
---|
260 | AttrExpr::~AttrExpr() {
|
---|
261 | delete attr;
|
---|
262 | delete expr;
|
---|
263 | delete type;
|
---|
264 | }
|
---|
265 |
|
---|
266 | void AttrExpr::print( std::ostream &os, int indent) const {
|
---|
267 | os << std::string( indent, ' ' ) << "Attr ";
|
---|
268 | attr->print( os, indent + 2 );
|
---|
269 | if ( isType || expr ) {
|
---|
270 | os << "applied to: ";
|
---|
271 |
|
---|
272 | if (isType)
|
---|
273 | type->print(os, indent + 2);
|
---|
274 | else
|
---|
275 | expr->print(os, indent + 2);
|
---|
276 | } // if
|
---|
277 |
|
---|
278 | os << std::endl;
|
---|
279 | Expression::print( os, indent );
|
---|
280 | }
|
---|
281 |
|
---|
282 | CastExpr::CastExpr( Expression *arg_, Type *toType, Expression *_aname ) : Expression( _aname ), arg(arg_) {
|
---|
283 | add_result(toType);
|
---|
284 | }
|
---|
285 |
|
---|
286 | CastExpr::CastExpr( Expression *arg_, Expression *_aname ) : Expression( _aname ), arg(arg_) {
|
---|
287 | }
|
---|
288 |
|
---|
289 | CastExpr::CastExpr( const CastExpr &other ) : Expression( other ), arg( maybeClone( other.arg ) ) {
|
---|
290 | }
|
---|
291 |
|
---|
292 | CastExpr::~CastExpr() {
|
---|
293 | delete arg;
|
---|
294 | }
|
---|
295 |
|
---|
296 | // CastExpr *CastExpr::clone() const { return 0; }
|
---|
297 |
|
---|
298 | void CastExpr::print( std::ostream &os, int indent ) const {
|
---|
299 | os << std::string( indent, ' ' ) << "Cast of:" << std::endl;
|
---|
300 | arg->print(os, indent+2);
|
---|
301 | os << std::endl << std::string( indent, ' ' ) << "to:" << std::endl;
|
---|
302 | if ( results.empty() ) {
|
---|
303 | os << std::string( indent+2, ' ' ) << "nothing" << std::endl;
|
---|
304 | } else {
|
---|
305 | printAll(results, os, indent+2);
|
---|
306 | } // if
|
---|
307 | Expression::print( os, indent );
|
---|
308 | }
|
---|
309 |
|
---|
310 | UntypedMemberExpr::UntypedMemberExpr( std::string _member, Expression *_aggregate, Expression *_aname ) :
|
---|
311 | Expression( _aname ), member(_member), aggregate(_aggregate) {}
|
---|
312 |
|
---|
313 | UntypedMemberExpr::UntypedMemberExpr( const UntypedMemberExpr &other ) :
|
---|
314 | Expression( other ), member( other.member ), aggregate( maybeClone( other.aggregate ) ) {
|
---|
315 | }
|
---|
316 |
|
---|
317 | UntypedMemberExpr::~UntypedMemberExpr() {
|
---|
318 | delete aggregate;
|
---|
319 | }
|
---|
320 |
|
---|
321 | void UntypedMemberExpr::print( std::ostream &os, int indent ) const {
|
---|
322 | os << std::string( indent, ' ' ) << "Member Expression, with field: " << get_member();
|
---|
323 |
|
---|
324 | Expression *agg = get_aggregate();
|
---|
325 | os << std::string( indent, ' ' ) << "from aggregate: ";
|
---|
326 | if (agg != 0) agg->print(os, indent + 2);
|
---|
327 | Expression::print( os, indent );
|
---|
328 | }
|
---|
329 |
|
---|
330 |
|
---|
331 | MemberExpr::MemberExpr( DeclarationWithType *_member, Expression *_aggregate, Expression *_aname ) :
|
---|
332 | Expression( _aname ), member(_member), aggregate(_aggregate) {
|
---|
333 | add_result( member->get_type()->clone() );
|
---|
334 | for ( std::list< Type* >::iterator i = get_results().begin(); i != get_results().end(); ++i ) {
|
---|
335 | (*i)->set_isLvalue( true );
|
---|
336 | } // for
|
---|
337 | }
|
---|
338 |
|
---|
339 | MemberExpr::MemberExpr( const MemberExpr &other ) :
|
---|
340 | Expression( other ), member( maybeClone( other.member ) ), aggregate( maybeClone( other.aggregate ) ) {
|
---|
341 | }
|
---|
342 |
|
---|
343 | MemberExpr::~MemberExpr() {
|
---|
344 | delete member;
|
---|
345 | delete aggregate;
|
---|
346 | }
|
---|
347 |
|
---|
348 | void MemberExpr::print( std::ostream &os, int indent ) const {
|
---|
349 | os << std::string( indent, ' ' ) << "Member Expression, with field: " << std::endl;
|
---|
350 |
|
---|
351 | assert( member );
|
---|
352 | os << std::string( indent + 2, ' ' );
|
---|
353 | member->print( os, indent + 2 );
|
---|
354 | os << std::endl;
|
---|
355 |
|
---|
356 | Expression *agg = get_aggregate();
|
---|
357 | os << std::string( indent, ' ' ) << "from aggregate: " << std::endl;
|
---|
358 | if (agg != 0) agg->print(os, indent + 2);
|
---|
359 | Expression::print( os, indent );
|
---|
360 | }
|
---|
361 |
|
---|
362 |
|
---|
363 | UntypedExpr::UntypedExpr( Expression *_function, Expression *_aname ) : Expression( _aname ), function( _function ) {}
|
---|
364 |
|
---|
365 | UntypedExpr::UntypedExpr( const UntypedExpr &other ) :
|
---|
366 | Expression( other ), function( maybeClone( other.function ) ) {
|
---|
367 | cloneAll( other.args, args );
|
---|
368 | }
|
---|
369 |
|
---|
370 | UntypedExpr::UntypedExpr( Expression *_function, std::list<Expression *> &_args, Expression *_aname ) :
|
---|
371 | Expression( _aname ), function(_function), args(_args) {}
|
---|
372 |
|
---|
373 | UntypedExpr::~UntypedExpr() {}
|
---|
374 |
|
---|
375 | void UntypedExpr::print( std::ostream &os, int indent ) const {
|
---|
376 | os << std::string( indent, ' ' ) << "Applying untyped: " << std::endl;
|
---|
377 | function->print(os, indent + 4);
|
---|
378 | os << std::string( indent, ' ' ) << "...to: " << std::endl;
|
---|
379 | printArgs(os, indent + 4);
|
---|
380 | Expression::print( os, indent );
|
---|
381 | }
|
---|
382 |
|
---|
383 | void UntypedExpr::printArgs( std::ostream &os, int indent ) const {
|
---|
384 | std::list<Expression *>::const_iterator i;
|
---|
385 | for (i = args.begin(); i != args.end(); i++)
|
---|
386 | (*i)->print(os, indent);
|
---|
387 | }
|
---|
388 |
|
---|
389 | NameExpr::NameExpr( std::string _name, Expression *_aname ) : Expression( _aname ), name(_name) {}
|
---|
390 |
|
---|
391 | NameExpr::NameExpr( const NameExpr &other ) : Expression( other ), name( other.name ) {
|
---|
392 | }
|
---|
393 |
|
---|
394 | NameExpr::~NameExpr() {}
|
---|
395 |
|
---|
396 | void NameExpr::print( std::ostream &os, int indent ) const {
|
---|
397 | os << std::string( indent, ' ' ) << "Name: " << get_name() << std::endl;
|
---|
398 | Expression::print( os, indent );
|
---|
399 | }
|
---|
400 |
|
---|
401 | LogicalExpr::LogicalExpr( Expression *arg1_, Expression *arg2_, bool andp, Expression *_aname ) :
|
---|
402 | Expression( _aname ), arg1(arg1_), arg2(arg2_), isAnd(andp) {
|
---|
403 | add_result( new BasicType( Type::Qualifiers(), BasicType::SignedInt ) );
|
---|
404 | }
|
---|
405 |
|
---|
406 | LogicalExpr::LogicalExpr( const LogicalExpr &other ) :
|
---|
407 | Expression( other ), arg1( maybeClone( other.arg1 ) ), arg2( maybeClone( other.arg2 ) ), isAnd( other.isAnd ) {
|
---|
408 | }
|
---|
409 |
|
---|
410 | LogicalExpr::~LogicalExpr() {
|
---|
411 | delete arg1;
|
---|
412 | delete arg2;
|
---|
413 | }
|
---|
414 |
|
---|
415 | void LogicalExpr::print( std::ostream &os, int indent )const {
|
---|
416 | os << std::string( indent, ' ' ) << "Short-circuited operation (" << (isAnd?"and":"or") << ") on: ";
|
---|
417 | arg1->print(os);
|
---|
418 | os << " and ";
|
---|
419 | arg2->print(os);
|
---|
420 | os << std::endl;
|
---|
421 | Expression::print( os, indent );
|
---|
422 | }
|
---|
423 |
|
---|
424 | ConditionalExpr::ConditionalExpr( Expression *arg1_, Expression *arg2_, Expression *arg3_, Expression *_aname ) :
|
---|
425 | Expression( _aname ), arg1(arg1_), arg2(arg2_), arg3(arg3_) {}
|
---|
426 |
|
---|
427 | ConditionalExpr::ConditionalExpr( const ConditionalExpr &other ) :
|
---|
428 | Expression( other ), arg1( maybeClone( other.arg1 ) ), arg2( maybeClone( other.arg2 ) ), arg3( maybeClone( other.arg3 ) ) {
|
---|
429 | }
|
---|
430 |
|
---|
431 | ConditionalExpr::~ConditionalExpr() {
|
---|
432 | delete arg1;
|
---|
433 | delete arg2;
|
---|
434 | delete arg3;
|
---|
435 | }
|
---|
436 |
|
---|
437 | void ConditionalExpr::print( std::ostream &os, int indent ) const {
|
---|
438 | os << std::string( indent, ' ' ) << "Conditional expression on: " << std::endl;
|
---|
439 | arg1->print( os, indent+2 );
|
---|
440 | os << std::string( indent, ' ' ) << "First alternative:" << std::endl;
|
---|
441 | arg2->print( os, indent+2 );
|
---|
442 | os << std::string( indent, ' ' ) << "Second alternative:" << std::endl;
|
---|
443 | arg3->print( os, indent+2 );
|
---|
444 | os << std::endl;
|
---|
445 | Expression::print( os, indent );
|
---|
446 | }
|
---|
447 |
|
---|
448 | AsmExpr::AsmExpr( const AsmExpr & other ) : inout( maybeClone( other.inout ) ), constraint( maybeClone( other.constraint ) ), operand( maybeClone( other.operand ) ) {}
|
---|
449 |
|
---|
450 |
|
---|
451 | void AsmExpr::print( std::ostream &os, int indent ) const {
|
---|
452 | os << "Asm Expression: " << std::endl;
|
---|
453 | if ( inout ) inout->print( os, indent + 2 );
|
---|
454 | if ( constraint ) constraint->print( os, indent + 2 );
|
---|
455 | if ( operand ) operand->print( os, indent + 2 );
|
---|
456 | }
|
---|
457 |
|
---|
458 |
|
---|
459 | ImplicitCopyCtorExpr::ImplicitCopyCtorExpr( ApplicationExpr * callExpr ) : callExpr( callExpr ) {
|
---|
460 | assert( callExpr );
|
---|
461 | cloneAll( callExpr->get_results(), results );
|
---|
462 | }
|
---|
463 |
|
---|
464 | ImplicitCopyCtorExpr::ImplicitCopyCtorExpr( const ImplicitCopyCtorExpr & other ) : Expression( other ), callExpr( maybeClone( other.callExpr ) ) {
|
---|
465 | cloneAll( other.results, results );
|
---|
466 | cloneAll( other.copyCtors, copyCtors );
|
---|
467 | cloneAll( other.tempDecls, tempDecls );
|
---|
468 | cloneAll( other.returnDecls, returnDecls );
|
---|
469 | cloneAll( other.dtors, dtors );
|
---|
470 | }
|
---|
471 |
|
---|
472 | ImplicitCopyCtorExpr::~ImplicitCopyCtorExpr() {
|
---|
473 | delete callExpr;
|
---|
474 | deleteAll( copyCtors );
|
---|
475 | deleteAll( tempDecls );
|
---|
476 | deleteAll( returnDecls );
|
---|
477 | deleteAll( dtors );
|
---|
478 | }
|
---|
479 |
|
---|
480 | void ImplicitCopyCtorExpr::print( std::ostream &os, int indent ) const {
|
---|
481 | os << std::string( indent, ' ' ) << "Implicit Copy Constructor Expression: " << std::endl;
|
---|
482 | assert( callExpr );
|
---|
483 | callExpr->print( os, indent + 2 );
|
---|
484 | os << std::endl << std::string( indent, ' ' ) << "with temporaries:" << std::endl;
|
---|
485 | printAll(tempDecls, os, indent+2);
|
---|
486 | os << std::endl << std::string( indent, ' ' ) << "with copyCtors:" << std::endl;
|
---|
487 | printAll(copyCtors, os, indent+2);
|
---|
488 | os << std::endl << std::string( indent, ' ' ) << "with return temporaries:" << std::endl;
|
---|
489 | printAll(returnDecls, os, indent+2);
|
---|
490 | Expression::print( os, indent );
|
---|
491 | }
|
---|
492 |
|
---|
493 | UntypedValofExpr::UntypedValofExpr( const UntypedValofExpr & other ) : Expression( other ), body ( maybeClone( other.body ) ) {}
|
---|
494 |
|
---|
495 | UntypedValofExpr::~UntypedValofExpr() { delete body; }
|
---|
496 |
|
---|
497 | void UntypedValofExpr::print( std::ostream &os, int indent ) const {
|
---|
498 | os << std::string( indent, ' ' ) << "Valof Expression: " << std::endl;
|
---|
499 | if ( get_body() != 0 )
|
---|
500 | get_body()->print( os, indent + 2 );
|
---|
501 | }
|
---|
502 |
|
---|
503 |
|
---|
504 | CompoundLiteralExpr::CompoundLiteralExpr( Type * type, Initializer * initializer ) : type( type ), initializer( initializer ) {
|
---|
505 | add_result( type->clone() );
|
---|
506 | }
|
---|
507 |
|
---|
508 | CompoundLiteralExpr::CompoundLiteralExpr( const CompoundLiteralExpr &other ) : Expression( other ), type( maybeClone( other.type ) ), initializer( maybeClone( other.initializer ) ) {}
|
---|
509 |
|
---|
510 | CompoundLiteralExpr::~CompoundLiteralExpr() {
|
---|
511 | delete initializer;
|
---|
512 | delete type;
|
---|
513 | }
|
---|
514 |
|
---|
515 | void CompoundLiteralExpr::print( std::ostream &os, int indent ) const {
|
---|
516 | os << "Compound Literal Expression: " << std::endl;
|
---|
517 | if ( type ) type->print( os, indent + 2 );
|
---|
518 | if ( initializer ) initializer->print( os, indent + 2 );
|
---|
519 | }
|
---|
520 |
|
---|
521 |
|
---|
522 | std::ostream & operator<<( std::ostream & out, Expression * expr ) {
|
---|
523 | expr->print( out );
|
---|
524 | return out;
|
---|
525 | }
|
---|
526 |
|
---|
527 | // Local Variables: //
|
---|
528 | // tab-width: 4 //
|
---|
529 | // mode: c++ //
|
---|
530 | // compile-command: "make install" //
|
---|
531 | // End: //
|
---|