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 : Peter A. Buhr |
---|
12 | // Last Modified On : Tue Jul 25 14:15:47 2017 |
---|
13 | // Update Count : 54 |
---|
14 | // |
---|
15 | |
---|
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 |
---|
32 | |
---|
33 | #include "GenPoly/Lvalue.h" |
---|
34 | |
---|
35 | void 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 | |
---|
47 | Expression::Expression() : result( 0 ), env( 0 ) {} |
---|
48 | |
---|
49 | Expression::Expression( const Expression &other ) : BaseSyntaxNode( other ), result( maybeClone( other.result ) ), env( maybeClone( other.env ) ), extension( other.extension ), inferParams( other.inferParams ) { |
---|
50 | } |
---|
51 | |
---|
52 | Expression::~Expression() { |
---|
53 | delete env; |
---|
54 | delete result; |
---|
55 | } |
---|
56 | |
---|
57 | void Expression::print( std::ostream &os, Indenter indent ) const { |
---|
58 | printInferParams( inferParams, os, indent+1, 0 ); |
---|
59 | |
---|
60 | if ( env ) { |
---|
61 | os << std::endl << indent << "... with environment:" << std::endl; |
---|
62 | env->print( os, indent+1 ); |
---|
63 | } // if |
---|
64 | |
---|
65 | if ( extension ) { |
---|
66 | os << std::endl << indent << "... with extension:"; |
---|
67 | } // if |
---|
68 | } |
---|
69 | |
---|
70 | ConstantExpr::ConstantExpr( Constant _c ) : Expression(), constant( _c ) { |
---|
71 | set_result( constant.get_type()->clone() ); |
---|
72 | } |
---|
73 | |
---|
74 | ConstantExpr::ConstantExpr( const ConstantExpr &other) : Expression( other ), constant( other.constant ) { |
---|
75 | } |
---|
76 | |
---|
77 | ConstantExpr::~ConstantExpr() {} |
---|
78 | |
---|
79 | void ConstantExpr::print( std::ostream &os, Indenter indent ) const { |
---|
80 | os << "constant expression " ; |
---|
81 | constant.print( os ); |
---|
82 | Expression::print( os, indent ); |
---|
83 | } |
---|
84 | |
---|
85 | long long int ConstantExpr::intValue() const { |
---|
86 | if ( BasicType * basicType = dynamic_cast< BasicType * >( result ) ) { |
---|
87 | if ( basicType->isInteger() ) { |
---|
88 | return get_constant()->get_ival(); |
---|
89 | } |
---|
90 | } else if ( dynamic_cast< OneType * >( result ) ) { |
---|
91 | return 1; |
---|
92 | } else if ( dynamic_cast< ZeroType * >( result ) ) { |
---|
93 | return 0; |
---|
94 | } |
---|
95 | throw SemanticError( "Constant expression of non-integral type ", this ); |
---|
96 | } |
---|
97 | |
---|
98 | VariableExpr::VariableExpr( DeclarationWithType *_var ) : Expression(), var( _var ) { |
---|
99 | assert( var ); |
---|
100 | assert( var->get_type() ); |
---|
101 | Type * type = var->get_type()->clone(); |
---|
102 | type->set_lvalue( true ); |
---|
103 | |
---|
104 | // xxx - doesn't quite work yet - get different alternatives with the same cost |
---|
105 | |
---|
106 | // // enumerators are not lvalues |
---|
107 | // if ( EnumInstType * inst = dynamic_cast< EnumInstType * >( var->get_type() ) ) { |
---|
108 | // assert( inst->baseEnum ); |
---|
109 | // EnumDecl * decl = inst->baseEnum; |
---|
110 | // long long int value; |
---|
111 | // if ( decl->valueOf( var, value ) ) { |
---|
112 | // type->set_lvalue( false ); |
---|
113 | // } |
---|
114 | // } |
---|
115 | |
---|
116 | set_result( type ); |
---|
117 | } |
---|
118 | |
---|
119 | VariableExpr::VariableExpr( const VariableExpr &other ) : Expression( other ), var( other.var ) { |
---|
120 | } |
---|
121 | |
---|
122 | VariableExpr::~VariableExpr() { |
---|
123 | // don't delete the declaration, since it points somewhere else in the tree |
---|
124 | } |
---|
125 | |
---|
126 | VariableExpr * VariableExpr::functionPointer( FunctionDecl * func ) { |
---|
127 | VariableExpr * funcExpr = new VariableExpr( func ); |
---|
128 | funcExpr->set_result( new PointerType( Type::Qualifiers(), funcExpr->get_result() ) ); |
---|
129 | return funcExpr; |
---|
130 | } |
---|
131 | |
---|
132 | void VariableExpr::print( std::ostream &os, Indenter indent ) const { |
---|
133 | os << "Variable Expression: "; |
---|
134 | var->printShort(os, indent); |
---|
135 | Expression::print( os, indent ); |
---|
136 | } |
---|
137 | |
---|
138 | SizeofExpr::SizeofExpr( Expression *expr_ ) : |
---|
139 | Expression(), expr(expr_), type(0), isType(false) { |
---|
140 | set_result( new BasicType( Type::Qualifiers(), BasicType::LongUnsignedInt ) ); |
---|
141 | } |
---|
142 | |
---|
143 | SizeofExpr::SizeofExpr( Type *type_ ) : |
---|
144 | Expression(), expr(0), type(type_), isType(true) { |
---|
145 | set_result( new BasicType( Type::Qualifiers(), BasicType::LongUnsignedInt ) ); |
---|
146 | } |
---|
147 | |
---|
148 | SizeofExpr::SizeofExpr( const SizeofExpr &other ) : |
---|
149 | Expression( other ), expr( maybeClone( other.expr ) ), type( maybeClone( other.type ) ), isType( other.isType ) { |
---|
150 | } |
---|
151 | |
---|
152 | SizeofExpr::~SizeofExpr() { |
---|
153 | delete expr; |
---|
154 | delete type; |
---|
155 | } |
---|
156 | |
---|
157 | void SizeofExpr::print( std::ostream &os, Indenter indent) const { |
---|
158 | os << "Sizeof Expression on: "; |
---|
159 | if (isType) type->print(os, indent+1); |
---|
160 | else expr->print(os, indent+1); |
---|
161 | Expression::print( os, indent ); |
---|
162 | } |
---|
163 | |
---|
164 | AlignofExpr::AlignofExpr( Expression *expr_ ) : |
---|
165 | Expression(), expr(expr_), type(0), isType(false) { |
---|
166 | set_result( new BasicType( Type::Qualifiers(), BasicType::LongUnsignedInt ) ); |
---|
167 | } |
---|
168 | |
---|
169 | AlignofExpr::AlignofExpr( Type *type_ ) : |
---|
170 | Expression(), expr(0), type(type_), isType(true) { |
---|
171 | set_result( new BasicType( Type::Qualifiers(), BasicType::LongUnsignedInt ) ); |
---|
172 | } |
---|
173 | |
---|
174 | AlignofExpr::AlignofExpr( const AlignofExpr &other ) : |
---|
175 | Expression( other ), expr( maybeClone( other.expr ) ), type( maybeClone( other.type ) ), isType( other.isType ) { |
---|
176 | } |
---|
177 | |
---|
178 | AlignofExpr::~AlignofExpr() { |
---|
179 | delete expr; |
---|
180 | delete type; |
---|
181 | } |
---|
182 | |
---|
183 | void AlignofExpr::print( std::ostream &os, Indenter indent) const { |
---|
184 | os << "Alignof Expression on: "; |
---|
185 | if (isType) type->print(os, indent+1); |
---|
186 | else expr->print(os, indent+1); |
---|
187 | Expression::print( os, indent ); |
---|
188 | } |
---|
189 | |
---|
190 | UntypedOffsetofExpr::UntypedOffsetofExpr( Type *type, const std::string &member ) : |
---|
191 | Expression(), type(type), member(member) { |
---|
192 | assert( type ); |
---|
193 | set_result( new BasicType( Type::Qualifiers(), BasicType::LongUnsignedInt ) ); |
---|
194 | } |
---|
195 | |
---|
196 | UntypedOffsetofExpr::UntypedOffsetofExpr( const UntypedOffsetofExpr &other ) : |
---|
197 | Expression( other ), type( maybeClone( other.type ) ), member( other.member ) {} |
---|
198 | |
---|
199 | UntypedOffsetofExpr::~UntypedOffsetofExpr() { |
---|
200 | delete type; |
---|
201 | } |
---|
202 | |
---|
203 | void UntypedOffsetofExpr::print( std::ostream &os, Indenter indent) const { |
---|
204 | os << "Untyped Offsetof Expression on member " << member << " of "; |
---|
205 | type->print(os, indent+1); |
---|
206 | Expression::print( os, indent ); |
---|
207 | } |
---|
208 | |
---|
209 | OffsetofExpr::OffsetofExpr( Type *type, DeclarationWithType *member ) : |
---|
210 | Expression(), type(type), member(member) { |
---|
211 | assert( member ); |
---|
212 | assert( type ); |
---|
213 | set_result( new BasicType( Type::Qualifiers(), BasicType::LongUnsignedInt ) ); |
---|
214 | } |
---|
215 | |
---|
216 | OffsetofExpr::OffsetofExpr( const OffsetofExpr &other ) : |
---|
217 | Expression( other ), type( maybeClone( other.type ) ), member( other.member ) {} |
---|
218 | |
---|
219 | OffsetofExpr::~OffsetofExpr() { |
---|
220 | delete type; |
---|
221 | } |
---|
222 | |
---|
223 | void OffsetofExpr::print( std::ostream &os, Indenter indent) const { |
---|
224 | os << "Offsetof Expression on member " << member->name << " of "; |
---|
225 | type->print(os, indent+1); |
---|
226 | Expression::print( os, indent ); |
---|
227 | } |
---|
228 | |
---|
229 | OffsetPackExpr::OffsetPackExpr( StructInstType *type ) : Expression(), type( type ) { |
---|
230 | assert( type ); |
---|
231 | set_result( new ArrayType( Type::Qualifiers(), new BasicType( Type::Qualifiers(), BasicType::LongUnsignedInt ), 0, false, false ) ); |
---|
232 | } |
---|
233 | |
---|
234 | OffsetPackExpr::OffsetPackExpr( const OffsetPackExpr &other ) : Expression( other ), type( maybeClone( other.type ) ) {} |
---|
235 | |
---|
236 | OffsetPackExpr::~OffsetPackExpr() { delete type; } |
---|
237 | |
---|
238 | void OffsetPackExpr::print( std::ostream &os, Indenter indent ) const { |
---|
239 | os << "Offset pack expression on "; |
---|
240 | type->print(os, indent+1); |
---|
241 | Expression::print( os, indent ); |
---|
242 | } |
---|
243 | |
---|
244 | AttrExpr::AttrExpr( Expression *attr, Expression *expr_ ) : |
---|
245 | Expression(), attr( attr ), expr(expr_), type(0), isType(false) { |
---|
246 | } |
---|
247 | |
---|
248 | AttrExpr::AttrExpr( Expression *attr, Type *type_ ) : |
---|
249 | Expression(), attr( attr ), expr(0), type(type_), isType(true) { |
---|
250 | } |
---|
251 | |
---|
252 | AttrExpr::AttrExpr( const AttrExpr &other ) : |
---|
253 | Expression( other ), attr( maybeClone( other.attr ) ), expr( maybeClone( other.expr ) ), type( maybeClone( other.type ) ), isType( other.isType ) { |
---|
254 | } |
---|
255 | |
---|
256 | AttrExpr::~AttrExpr() { |
---|
257 | delete attr; |
---|
258 | delete expr; |
---|
259 | delete type; |
---|
260 | } |
---|
261 | |
---|
262 | void AttrExpr::print( std::ostream &os, Indenter indent) const { |
---|
263 | os << "Attr "; |
---|
264 | attr->print( os, indent+1); |
---|
265 | if ( isType || expr ) { |
---|
266 | os << "applied to: "; |
---|
267 | if (isType) type->print(os, indent+1); |
---|
268 | else expr->print(os, indent+1); |
---|
269 | } // if |
---|
270 | Expression::print( os, indent ); |
---|
271 | } |
---|
272 | |
---|
273 | CastExpr::CastExpr( Expression *arg_, Type *toType ) : Expression(), arg(arg_) { |
---|
274 | set_result(toType); |
---|
275 | } |
---|
276 | |
---|
277 | CastExpr::CastExpr( Expression *arg_ ) : Expression(), arg(arg_) { |
---|
278 | set_result( new VoidType( Type::Qualifiers() ) ); |
---|
279 | } |
---|
280 | |
---|
281 | CastExpr::CastExpr( const CastExpr &other ) : Expression( other ), arg( maybeClone( other.arg ) ) { |
---|
282 | } |
---|
283 | |
---|
284 | CastExpr::~CastExpr() { |
---|
285 | delete arg; |
---|
286 | } |
---|
287 | |
---|
288 | void CastExpr::print( std::ostream &os, Indenter indent ) const { |
---|
289 | os << "Cast of:" << std::endl << indent+1; |
---|
290 | arg->print(os, indent+1); |
---|
291 | os << std::endl << indent << "... to:"; |
---|
292 | if ( result->isVoid() ) { |
---|
293 | os << " nothing"; |
---|
294 | } else { |
---|
295 | os << std::endl << indent+1; |
---|
296 | result->print( os, indent+1 ); |
---|
297 | } // if |
---|
298 | Expression::print( os, indent ); |
---|
299 | } |
---|
300 | |
---|
301 | VirtualCastExpr::VirtualCastExpr( Expression *arg_, Type *toType ) : Expression(), arg(arg_) { |
---|
302 | set_result(toType); |
---|
303 | } |
---|
304 | |
---|
305 | VirtualCastExpr::VirtualCastExpr( const VirtualCastExpr &other ) : Expression( other ), arg( maybeClone( other.arg ) ) { |
---|
306 | } |
---|
307 | |
---|
308 | VirtualCastExpr::~VirtualCastExpr() { |
---|
309 | delete arg; |
---|
310 | } |
---|
311 | |
---|
312 | void VirtualCastExpr::print( std::ostream &os, Indenter indent ) const { |
---|
313 | os << "Virtual Cast of:" << std::endl << indent+1; |
---|
314 | arg->print(os, indent+1); |
---|
315 | os << std::endl << indent << "... to:"; |
---|
316 | if ( ! result ) { |
---|
317 | os << " unknown"; |
---|
318 | } else { |
---|
319 | os << std::endl << indent+1; |
---|
320 | result->print( os, indent+1 ); |
---|
321 | } // if |
---|
322 | Expression::print( os, indent ); |
---|
323 | } |
---|
324 | |
---|
325 | UntypedMemberExpr::UntypedMemberExpr( Expression * member, Expression *aggregate ) : |
---|
326 | Expression(), member(member), aggregate(aggregate) { |
---|
327 | assert( aggregate ); |
---|
328 | } |
---|
329 | |
---|
330 | UntypedMemberExpr::UntypedMemberExpr( const UntypedMemberExpr &other ) : |
---|
331 | Expression( other ), member( maybeClone( other.member ) ), aggregate( maybeClone( other.aggregate ) ) { |
---|
332 | } |
---|
333 | |
---|
334 | UntypedMemberExpr::~UntypedMemberExpr() { |
---|
335 | delete aggregate; |
---|
336 | delete member; |
---|
337 | } |
---|
338 | |
---|
339 | void UntypedMemberExpr::print( std::ostream &os, Indenter indent ) const { |
---|
340 | os << "Untyped Member Expression, with field: " << std::endl << indent+1; |
---|
341 | member->print(os, indent+1 ); |
---|
342 | os << indent << "... from aggregate: " << std::endl << indent+1; |
---|
343 | aggregate->print(os, indent+1); |
---|
344 | Expression::print( os, indent ); |
---|
345 | } |
---|
346 | |
---|
347 | namespace { |
---|
348 | TypeSubstitution makeSub( Type * t ) { |
---|
349 | if ( ReferenceType * refType = dynamic_cast< ReferenceType * >( t ) ) { |
---|
350 | return makeSub( refType->get_base() ); |
---|
351 | } else if ( StructInstType * aggInst = dynamic_cast< StructInstType * >( t ) ) { |
---|
352 | return TypeSubstitution( aggInst->get_baseParameters()->begin(), aggInst->get_baseParameters()->end(), aggInst->parameters.begin() ); |
---|
353 | } else if ( UnionInstType * aggInst = dynamic_cast< UnionInstType * >( t ) ) { |
---|
354 | return TypeSubstitution( aggInst->get_baseParameters()->begin(), aggInst->get_baseParameters()->end(), aggInst->parameters.begin() ); |
---|
355 | } else { |
---|
356 | assertf( false, "makeSub expects struct or union type for aggregate, but got: %s", toString( t ).c_str() ); |
---|
357 | } |
---|
358 | } |
---|
359 | } |
---|
360 | |
---|
361 | |
---|
362 | MemberExpr::MemberExpr( DeclarationWithType *member, Expression *aggregate ) : |
---|
363 | Expression(), member(member), aggregate(aggregate) { |
---|
364 | assert( member ); |
---|
365 | assert( aggregate ); |
---|
366 | |
---|
367 | TypeSubstitution sub( makeSub( aggregate->get_result() ) ); |
---|
368 | Type * res = member->get_type()->clone(); |
---|
369 | sub.apply( res ); |
---|
370 | result = res; |
---|
371 | result->set_lvalue( true ); |
---|
372 | result->get_qualifiers() |= aggregate->result->get_qualifiers(); |
---|
373 | } |
---|
374 | |
---|
375 | MemberExpr::MemberExpr( const MemberExpr &other ) : |
---|
376 | Expression( other ), member( other.member ), aggregate( maybeClone( other.aggregate ) ) { |
---|
377 | } |
---|
378 | |
---|
379 | MemberExpr::~MemberExpr() { |
---|
380 | // don't delete the member declaration, since it points somewhere else in the tree |
---|
381 | delete aggregate; |
---|
382 | } |
---|
383 | |
---|
384 | void MemberExpr::print( std::ostream &os, Indenter indent ) const { |
---|
385 | os << "Member Expression, with field: " << std::endl; |
---|
386 | os << indent+1; |
---|
387 | member->print( os, indent+1 ); |
---|
388 | os << std::endl << indent << "... from aggregate: " << std::endl << indent+1; |
---|
389 | aggregate->print(os, indent + 1); |
---|
390 | Expression::print( os, indent ); |
---|
391 | } |
---|
392 | |
---|
393 | UntypedExpr::UntypedExpr( Expression *function, const std::list<Expression *> &args ) : |
---|
394 | Expression(), function(function), args(args) {} |
---|
395 | |
---|
396 | UntypedExpr::UntypedExpr( const UntypedExpr &other ) : |
---|
397 | Expression( other ), function( maybeClone( other.function ) ) { |
---|
398 | cloneAll( other.args, args ); |
---|
399 | } |
---|
400 | |
---|
401 | UntypedExpr::~UntypedExpr() { |
---|
402 | delete function; |
---|
403 | deleteAll( args ); |
---|
404 | } |
---|
405 | |
---|
406 | UntypedExpr * UntypedExpr::createDeref( Expression * expr ) { |
---|
407 | UntypedExpr * ret = new UntypedExpr( new NameExpr("*?"), std::list< Expression * >{ expr } ); |
---|
408 | if ( Type * type = expr->get_result() ) { |
---|
409 | Type * base = InitTweak::getPointerBase( type ); |
---|
410 | assertf( base, "expected pointer type in dereference (type was %s)", toString( type ).c_str() ); |
---|
411 | ret->set_result( base->clone() ); |
---|
412 | if ( GenPoly::referencesPermissable() ) { |
---|
413 | // if references are still allowed in the AST, dereference returns a reference |
---|
414 | ret->set_result( new ReferenceType( Type::Qualifiers(), ret->get_result() ) ); |
---|
415 | } else { |
---|
416 | // references have been removed, in which case dereference returns an lvalue of the base type. |
---|
417 | ret->result->set_lvalue( true ); |
---|
418 | } |
---|
419 | } |
---|
420 | return ret; |
---|
421 | } |
---|
422 | |
---|
423 | UntypedExpr * UntypedExpr::createAssign( Expression * arg1, Expression * arg2 ) { |
---|
424 | assert( arg1 && arg2 ); |
---|
425 | UntypedExpr * ret = new UntypedExpr( new NameExpr( "?=?" ), std::list< Expression * >{ arg1, arg2 } ); |
---|
426 | if ( arg1->get_result() && arg2->get_result() ) { |
---|
427 | // if both expressions are typed, assumes that this assignment is a C bitwise assignment, |
---|
428 | // so the result is the type of the RHS |
---|
429 | ret->set_result( arg2->get_result()->clone() ); |
---|
430 | } |
---|
431 | return ret; |
---|
432 | } |
---|
433 | |
---|
434 | |
---|
435 | void UntypedExpr::print( std::ostream &os, Indenter indent ) const { |
---|
436 | os << "Applying untyped: " << std::endl; |
---|
437 | os << indent+1; |
---|
438 | function->print(os, indent+1); |
---|
439 | os << std::endl << indent << "...to: " << std::endl; |
---|
440 | printAll(args, os, indent+1); |
---|
441 | Expression::print( os, indent ); |
---|
442 | } |
---|
443 | |
---|
444 | NameExpr::NameExpr( std::string name ) : Expression(), name(name) { |
---|
445 | assertf(name != "0", "Zero is not a valid name"); |
---|
446 | assertf(name != "1", "One is not a valid name"); |
---|
447 | } |
---|
448 | |
---|
449 | NameExpr::NameExpr( const NameExpr &other ) : Expression( other ), name( other.name ) { |
---|
450 | } |
---|
451 | |
---|
452 | NameExpr::~NameExpr() {} |
---|
453 | |
---|
454 | void NameExpr::print( std::ostream &os, Indenter indent ) const { |
---|
455 | os << "Name: " << get_name(); |
---|
456 | Expression::print( os, indent ); |
---|
457 | } |
---|
458 | |
---|
459 | LogicalExpr::LogicalExpr( Expression *arg1_, Expression *arg2_, bool andp ) : |
---|
460 | Expression(), arg1(arg1_), arg2(arg2_), isAnd(andp) { |
---|
461 | set_result( new BasicType( Type::Qualifiers(), BasicType::SignedInt ) ); |
---|
462 | } |
---|
463 | |
---|
464 | LogicalExpr::LogicalExpr( const LogicalExpr &other ) : |
---|
465 | Expression( other ), arg1( maybeClone( other.arg1 ) ), arg2( maybeClone( other.arg2 ) ), isAnd( other.isAnd ) { |
---|
466 | } |
---|
467 | |
---|
468 | LogicalExpr::~LogicalExpr() { |
---|
469 | delete arg1; |
---|
470 | delete arg2; |
---|
471 | } |
---|
472 | |
---|
473 | void LogicalExpr::print( std::ostream &os, Indenter indent )const { |
---|
474 | os << "Short-circuited operation (" << (isAnd ? "and" : "or") << ") on: "; |
---|
475 | arg1->print(os); |
---|
476 | os << " and "; |
---|
477 | arg2->print(os); |
---|
478 | Expression::print( os, indent ); |
---|
479 | } |
---|
480 | |
---|
481 | ConditionalExpr::ConditionalExpr( Expression * arg1, Expression * arg2, Expression * arg3 ) : |
---|
482 | Expression(), arg1(arg1), arg2(arg2), arg3(arg3) {} |
---|
483 | |
---|
484 | ConditionalExpr::ConditionalExpr( const ConditionalExpr &other ) : |
---|
485 | Expression( other ), arg1( maybeClone( other.arg1 ) ), arg2( maybeClone( other.arg2 ) ), arg3( maybeClone( other.arg3 ) ) { |
---|
486 | } |
---|
487 | |
---|
488 | ConditionalExpr::~ConditionalExpr() { |
---|
489 | delete arg1; |
---|
490 | delete arg2; |
---|
491 | delete arg3; |
---|
492 | } |
---|
493 | |
---|
494 | void ConditionalExpr::print( std::ostream &os, Indenter indent ) const { |
---|
495 | os << "Conditional expression on: " << std::endl << indent+1; |
---|
496 | arg1->print( os, indent+1 ); |
---|
497 | os << indent << "First alternative:" << std::endl << indent+1; |
---|
498 | arg2->print( os, indent+1 ); |
---|
499 | os << indent << "Second alternative:" << std::endl << indent+1; |
---|
500 | arg3->print( os, indent+1 ); |
---|
501 | Expression::print( os, indent ); |
---|
502 | } |
---|
503 | |
---|
504 | AsmExpr::AsmExpr( const AsmExpr & other ) : Expression( other ), inout( maybeClone( other.inout ) ), constraint( maybeClone( other.constraint ) ), operand( maybeClone( other.operand ) ) {} |
---|
505 | |
---|
506 | |
---|
507 | void AsmExpr::print( std::ostream &os, Indenter indent ) const { |
---|
508 | os << "Asm Expression: " << std::endl; |
---|
509 | if ( inout ) inout->print( os, indent+1 ); |
---|
510 | if ( constraint ) constraint->print( os, indent+1 ); |
---|
511 | if ( operand ) operand->print( os, indent+1 ); |
---|
512 | } |
---|
513 | |
---|
514 | |
---|
515 | ImplicitCopyCtorExpr::ImplicitCopyCtorExpr( ApplicationExpr * callExpr ) : callExpr( callExpr ) { |
---|
516 | assert( callExpr ); |
---|
517 | assert( callExpr->result ); |
---|
518 | set_result( callExpr->get_result()->clone() ); |
---|
519 | } |
---|
520 | |
---|
521 | ImplicitCopyCtorExpr::ImplicitCopyCtorExpr( const ImplicitCopyCtorExpr & other ) : Expression( other ), callExpr( maybeClone( other.callExpr ) ) { |
---|
522 | cloneAll( other.tempDecls, tempDecls ); |
---|
523 | cloneAll( other.returnDecls, returnDecls ); |
---|
524 | cloneAll( other.dtors, dtors ); |
---|
525 | } |
---|
526 | |
---|
527 | ImplicitCopyCtorExpr::~ImplicitCopyCtorExpr() { |
---|
528 | set_env( nullptr ); // ImplicitCopyCtorExpr does not take ownership of an environment |
---|
529 | delete callExpr; |
---|
530 | deleteAll( tempDecls ); |
---|
531 | deleteAll( returnDecls ); |
---|
532 | deleteAll( dtors ); |
---|
533 | } |
---|
534 | |
---|
535 | void ImplicitCopyCtorExpr::print( std::ostream &os, Indenter indent ) const { |
---|
536 | os << "Implicit Copy Constructor Expression: " << std::endl << indent+1; |
---|
537 | callExpr->print( os, indent+1 ); |
---|
538 | os << std::endl << indent << "... with temporaries:" << std::endl; |
---|
539 | printAll( tempDecls, os, indent+1 ); |
---|
540 | os << std::endl << indent << "... with return temporaries:" << std::endl; |
---|
541 | printAll( returnDecls, os, indent+1 ); |
---|
542 | Expression::print( os, indent ); |
---|
543 | } |
---|
544 | |
---|
545 | |
---|
546 | ConstructorExpr::ConstructorExpr( Expression * callExpr ) : callExpr( callExpr ) { |
---|
547 | // allow resolver to type a constructor used as an expression as if it has the same type as its first argument |
---|
548 | assert( callExpr ); |
---|
549 | Expression * arg = InitTweak::getCallArg( callExpr, 0 ); |
---|
550 | assert( arg ); |
---|
551 | set_result( maybeClone( arg->result ) ); |
---|
552 | } |
---|
553 | |
---|
554 | ConstructorExpr::ConstructorExpr( const ConstructorExpr & other ) : Expression( other ), callExpr( maybeClone( other.callExpr ) ) { |
---|
555 | } |
---|
556 | |
---|
557 | ConstructorExpr::~ConstructorExpr() { |
---|
558 | delete callExpr; |
---|
559 | } |
---|
560 | |
---|
561 | void ConstructorExpr::print( std::ostream &os, Indenter indent ) const { |
---|
562 | os << "Constructor Expression: " << std::endl << indent+1; |
---|
563 | callExpr->print( os, indent + 2 ); |
---|
564 | Expression::print( os, indent ); |
---|
565 | } |
---|
566 | |
---|
567 | |
---|
568 | CompoundLiteralExpr::CompoundLiteralExpr( Type * type, Initializer * initializer ) : initializer( initializer ) { |
---|
569 | assert( type && initializer ); |
---|
570 | type->set_lvalue( true ); |
---|
571 | set_result( type ); |
---|
572 | } |
---|
573 | |
---|
574 | CompoundLiteralExpr::CompoundLiteralExpr( const CompoundLiteralExpr &other ) : Expression( other ), initializer( other.initializer->clone() ) {} |
---|
575 | |
---|
576 | CompoundLiteralExpr::~CompoundLiteralExpr() { |
---|
577 | delete initializer; |
---|
578 | } |
---|
579 | |
---|
580 | void CompoundLiteralExpr::print( std::ostream &os, Indenter indent ) const { |
---|
581 | os << "Compound Literal Expression: " << std::endl << indent+1; |
---|
582 | result->print( os, indent+1 ); |
---|
583 | os << indent+1; |
---|
584 | initializer->print( os, indent+1 ); |
---|
585 | Expression::print( os, indent ); |
---|
586 | } |
---|
587 | |
---|
588 | RangeExpr::RangeExpr( Expression *low, Expression *high ) : low( low ), high( high ) {} |
---|
589 | RangeExpr::RangeExpr( const RangeExpr &other ) : Expression( other ), low( other.low->clone() ), high( other.high->clone() ) {} |
---|
590 | void RangeExpr::print( std::ostream &os, Indenter indent ) const { |
---|
591 | os << "Range Expression: "; |
---|
592 | low->print( os, indent ); |
---|
593 | os << " ... "; |
---|
594 | high->print( os, indent ); |
---|
595 | Expression::print( os, indent ); |
---|
596 | } |
---|
597 | |
---|
598 | StmtExpr::StmtExpr( CompoundStmt *statements ) : statements( statements ) { |
---|
599 | assert( statements ); |
---|
600 | std::list< Statement * > & body = statements->get_kids(); |
---|
601 | if ( ! body.empty() ) { |
---|
602 | if ( ExprStmt * exprStmt = dynamic_cast< ExprStmt * >( body.back() ) ) { |
---|
603 | result = maybeClone( exprStmt->expr->result ); |
---|
604 | } |
---|
605 | } |
---|
606 | // ensure that StmtExpr has a result type |
---|
607 | if ( ! result ) { |
---|
608 | result = new VoidType( Type::Qualifiers() ); |
---|
609 | } |
---|
610 | } |
---|
611 | StmtExpr::StmtExpr( const StmtExpr &other ) : Expression( other ), statements( other.statements->clone() ) { |
---|
612 | cloneAll( other.returnDecls, returnDecls ); |
---|
613 | cloneAll( other.dtors, dtors ); |
---|
614 | } |
---|
615 | StmtExpr::~StmtExpr() { |
---|
616 | delete statements; |
---|
617 | deleteAll( dtors ); |
---|
618 | deleteAll( returnDecls ); |
---|
619 | } |
---|
620 | void StmtExpr::print( std::ostream &os, Indenter indent ) const { |
---|
621 | os << "Statement Expression: " << std::endl << indent+1; |
---|
622 | statements->print( os, indent+1 ); |
---|
623 | if ( ! returnDecls.empty() ) { |
---|
624 | os << indent+1 << "... with returnDecls: "; |
---|
625 | printAll( returnDecls, os, indent+1 ); |
---|
626 | } |
---|
627 | if ( ! dtors.empty() ) { |
---|
628 | os << indent+1 << "... with dtors: "; |
---|
629 | printAll( dtors, os, indent+1 ); |
---|
630 | } |
---|
631 | Expression::print( os, indent ); |
---|
632 | } |
---|
633 | |
---|
634 | |
---|
635 | long long UniqueExpr::count = 0; |
---|
636 | UniqueExpr::UniqueExpr( Expression *expr, long long idVal ) : expr( expr ), object( nullptr ), var( nullptr ), id( idVal ) { |
---|
637 | assert( expr ); |
---|
638 | assert( count != -1 ); |
---|
639 | if ( id == -1 ) id = count++; |
---|
640 | if ( expr->get_result() ) { |
---|
641 | set_result( expr->get_result()->clone() ); |
---|
642 | } |
---|
643 | } |
---|
644 | UniqueExpr::UniqueExpr( const UniqueExpr &other ) : Expression( other ), expr( maybeClone( other.expr ) ), object( maybeClone( other.object ) ), var( maybeClone( other.var ) ), id( other.id ) { |
---|
645 | } |
---|
646 | UniqueExpr::~UniqueExpr() { |
---|
647 | delete expr; |
---|
648 | delete object; |
---|
649 | delete var; |
---|
650 | } |
---|
651 | void UniqueExpr::print( std::ostream &os, Indenter indent ) const { |
---|
652 | os << "Unique Expression with id:" << id << std::endl << indent+1; |
---|
653 | expr->print( os, indent+1 ); |
---|
654 | if ( object ) { |
---|
655 | os << indent << "... with decl: "; |
---|
656 | get_object()->printShort( os, indent+1 ); |
---|
657 | } |
---|
658 | Expression::print( os, indent ); |
---|
659 | } |
---|
660 | |
---|
661 | InitAlternative::InitAlternative( Type * type, Designation * designation ) : type( type ), designation( designation ) {} |
---|
662 | InitAlternative::InitAlternative( const InitAlternative & other ) : type( maybeClone( other.type ) ), designation( maybeClone( other.designation ) ) {} |
---|
663 | InitAlternative::~InitAlternative() { |
---|
664 | delete type; |
---|
665 | delete designation; |
---|
666 | } |
---|
667 | |
---|
668 | UntypedInitExpr::UntypedInitExpr( Expression * expr, const std::list<InitAlternative> & initAlts ) : expr( expr ), initAlts( initAlts ) {} |
---|
669 | UntypedInitExpr::UntypedInitExpr( const UntypedInitExpr & other ) : Expression( other ), expr( maybeClone( other.expr ) ), initAlts( other.initAlts ) {} |
---|
670 | UntypedInitExpr::~UntypedInitExpr() { |
---|
671 | delete expr; |
---|
672 | } |
---|
673 | |
---|
674 | void UntypedInitExpr::print( std::ostream & os, Indenter indent ) const { |
---|
675 | os << "Untyped Init Expression" << std::endl << indent+1; |
---|
676 | expr->print( os, indent+1 ); |
---|
677 | if ( ! initAlts.empty() ) { |
---|
678 | for ( const InitAlternative & alt : initAlts ) { |
---|
679 | os << indent+1 << "InitAlternative: "; |
---|
680 | alt.type->print( os, indent+1 ); |
---|
681 | alt.designation->print( os, indent+1 ); |
---|
682 | } |
---|
683 | } |
---|
684 | } |
---|
685 | |
---|
686 | InitExpr::InitExpr( Expression * expr, Designation * designation ) : expr( expr ), designation( designation ) { |
---|
687 | set_result( expr->get_result()->clone() ); |
---|
688 | } |
---|
689 | InitExpr::InitExpr( const InitExpr & other ) : Expression( other ), expr( maybeClone( other.expr ) ), designation( maybeClone( other.designation) ) {} |
---|
690 | InitExpr::~InitExpr() { |
---|
691 | delete expr; |
---|
692 | delete designation; |
---|
693 | } |
---|
694 | |
---|
695 | void InitExpr::print( std::ostream & os, Indenter indent ) const { |
---|
696 | os << "Init Expression" << std::endl << indent+1; |
---|
697 | expr->print( os, indent+1 ); |
---|
698 | os << indent+1 << "... with designation: "; |
---|
699 | designation->print( os, indent+1 ); |
---|
700 | } |
---|
701 | |
---|
702 | // Local Variables: // |
---|
703 | // tab-width: 4 // |
---|
704 | // mode: c++ // |
---|
705 | // compile-command: "make install" // |
---|
706 | // End: // |
---|