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.expr->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 ), resnSlots( other.resnSlots ) {}
|
---|
50 |
|
---|
51 | void Expression::spliceInferParams( Expression * other ) {
|
---|
52 | if ( ! other ) return;
|
---|
53 | for ( auto p : other->inferParams ) {
|
---|
54 | inferParams[p.first] = std::move( p.second );
|
---|
55 | }
|
---|
56 | resnSlots.insert( resnSlots.end(), other->resnSlots.begin(), other->resnSlots.end() );
|
---|
57 | }
|
---|
58 |
|
---|
59 | Expression::~Expression() {
|
---|
60 | delete env;
|
---|
61 | delete result;
|
---|
62 | }
|
---|
63 |
|
---|
64 | void Expression::print( std::ostream &os, Indenter indent ) const {
|
---|
65 | printInferParams( inferParams, os, indent+1, 0 );
|
---|
66 |
|
---|
67 | if ( env ) {
|
---|
68 | os << std::endl << indent << "... with environment:" << std::endl;
|
---|
69 | env->print( os, indent+1 );
|
---|
70 | } // if
|
---|
71 |
|
---|
72 | if ( extension ) {
|
---|
73 | os << std::endl << indent << "... with extension:";
|
---|
74 | } // if
|
---|
75 | }
|
---|
76 |
|
---|
77 | ConstantExpr::ConstantExpr( Constant _c ) : Expression(), constant( _c ) {
|
---|
78 | set_result( constant.get_type()->clone() );
|
---|
79 | }
|
---|
80 |
|
---|
81 | ConstantExpr::ConstantExpr( const ConstantExpr &other) : Expression( other ), constant( other.constant ) {
|
---|
82 | }
|
---|
83 |
|
---|
84 | ConstantExpr::~ConstantExpr() {}
|
---|
85 |
|
---|
86 | void ConstantExpr::print( std::ostream &os, Indenter indent ) const {
|
---|
87 | os << "constant expression " ;
|
---|
88 | constant.print( os );
|
---|
89 | Expression::print( os, indent );
|
---|
90 | }
|
---|
91 |
|
---|
92 | long 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 | }
|
---|
102 | SemanticError( this, "Constant expression of non-integral type " );
|
---|
103 | }
|
---|
104 |
|
---|
105 | VariableExpr::VariableExpr( DeclarationWithType *_var ) : Expression(), var( _var ) {
|
---|
106 | assert( var );
|
---|
107 | assert( var->get_type() );
|
---|
108 | Type * type = var->get_type()->clone();
|
---|
109 | type->set_lvalue( true );
|
---|
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;
|
---|
117 | // long long int value;
|
---|
118 | // if ( decl->valueOf( var, value ) ) {
|
---|
119 | // type->set_lvalue( false );
|
---|
120 | // }
|
---|
121 | // }
|
---|
122 |
|
---|
123 | set_result( type );
|
---|
124 | }
|
---|
125 |
|
---|
126 | VariableExpr::VariableExpr( const VariableExpr &other ) : Expression( other ), var( other.var ) {
|
---|
127 | }
|
---|
128 |
|
---|
129 | VariableExpr::~VariableExpr() {
|
---|
130 | // don't delete the declaration, since it points somewhere else in the tree
|
---|
131 | }
|
---|
132 |
|
---|
133 | VariableExpr * 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 |
|
---|
139 | void VariableExpr::print( std::ostream &os, Indenter indent ) const {
|
---|
140 | os << "Variable Expression: ";
|
---|
141 | var->printShort(os, indent);
|
---|
142 | Expression::print( os, indent );
|
---|
143 | }
|
---|
144 |
|
---|
145 | SizeofExpr::SizeofExpr( Expression *expr_ ) :
|
---|
146 | Expression(), expr(expr_), type(0), isType(false) {
|
---|
147 | set_result( new BasicType( Type::Qualifiers(), BasicType::LongUnsignedInt ) );
|
---|
148 | }
|
---|
149 |
|
---|
150 | SizeofExpr::SizeofExpr( Type *type_ ) :
|
---|
151 | Expression(), expr(0), type(type_), isType(true) {
|
---|
152 | set_result( new BasicType( Type::Qualifiers(), BasicType::LongUnsignedInt ) );
|
---|
153 | }
|
---|
154 |
|
---|
155 | SizeofExpr::SizeofExpr( const SizeofExpr &other ) :
|
---|
156 | Expression( other ), expr( maybeClone( other.expr ) ), type( maybeClone( other.type ) ), isType( other.isType ) {
|
---|
157 | }
|
---|
158 |
|
---|
159 | SizeofExpr::~SizeofExpr() {
|
---|
160 | delete expr;
|
---|
161 | delete type;
|
---|
162 | }
|
---|
163 |
|
---|
164 | void SizeofExpr::print( std::ostream &os, Indenter indent) const {
|
---|
165 | os << "Sizeof Expression on: ";
|
---|
166 | if (isType) type->print(os, indent+1);
|
---|
167 | else expr->print(os, indent+1);
|
---|
168 | Expression::print( os, indent );
|
---|
169 | }
|
---|
170 |
|
---|
171 | AlignofExpr::AlignofExpr( Expression *expr_ ) :
|
---|
172 | Expression(), expr(expr_), type(0), isType(false) {
|
---|
173 | set_result( new BasicType( Type::Qualifiers(), BasicType::LongUnsignedInt ) );
|
---|
174 | }
|
---|
175 |
|
---|
176 | AlignofExpr::AlignofExpr( Type *type_ ) :
|
---|
177 | Expression(), expr(0), type(type_), isType(true) {
|
---|
178 | set_result( new BasicType( Type::Qualifiers(), BasicType::LongUnsignedInt ) );
|
---|
179 | }
|
---|
180 |
|
---|
181 | AlignofExpr::AlignofExpr( const AlignofExpr &other ) :
|
---|
182 | Expression( other ), expr( maybeClone( other.expr ) ), type( maybeClone( other.type ) ), isType( other.isType ) {
|
---|
183 | }
|
---|
184 |
|
---|
185 | AlignofExpr::~AlignofExpr() {
|
---|
186 | delete expr;
|
---|
187 | delete type;
|
---|
188 | }
|
---|
189 |
|
---|
190 | void AlignofExpr::print( std::ostream &os, Indenter indent) const {
|
---|
191 | os << "Alignof Expression on: ";
|
---|
192 | if (isType) type->print(os, indent+1);
|
---|
193 | else expr->print(os, indent+1);
|
---|
194 | Expression::print( os, indent );
|
---|
195 | }
|
---|
196 |
|
---|
197 | UntypedOffsetofExpr::UntypedOffsetofExpr( Type *type, const std::string &member ) :
|
---|
198 | Expression(), type(type), member(member) {
|
---|
199 | assert( type );
|
---|
200 | set_result( new BasicType( Type::Qualifiers(), BasicType::LongUnsignedInt ) );
|
---|
201 | }
|
---|
202 |
|
---|
203 | UntypedOffsetofExpr::UntypedOffsetofExpr( const UntypedOffsetofExpr &other ) :
|
---|
204 | Expression( other ), type( maybeClone( other.type ) ), member( other.member ) {}
|
---|
205 |
|
---|
206 | UntypedOffsetofExpr::~UntypedOffsetofExpr() {
|
---|
207 | delete type;
|
---|
208 | }
|
---|
209 |
|
---|
210 | void UntypedOffsetofExpr::print( std::ostream &os, Indenter indent) const {
|
---|
211 | os << "Untyped Offsetof Expression on member " << member << " of ";
|
---|
212 | type->print(os, indent+1);
|
---|
213 | Expression::print( os, indent );
|
---|
214 | }
|
---|
215 |
|
---|
216 | OffsetofExpr::OffsetofExpr( Type *type, DeclarationWithType *member ) :
|
---|
217 | Expression(), type(type), member(member) {
|
---|
218 | assert( member );
|
---|
219 | assert( type );
|
---|
220 | set_result( new BasicType( Type::Qualifiers(), BasicType::LongUnsignedInt ) );
|
---|
221 | }
|
---|
222 |
|
---|
223 | OffsetofExpr::OffsetofExpr( const OffsetofExpr &other ) :
|
---|
224 | Expression( other ), type( maybeClone( other.type ) ), member( other.member ) {}
|
---|
225 |
|
---|
226 | OffsetofExpr::~OffsetofExpr() {
|
---|
227 | delete type;
|
---|
228 | }
|
---|
229 |
|
---|
230 | void OffsetofExpr::print( std::ostream &os, Indenter indent) const {
|
---|
231 | os << "Offsetof Expression on member " << member->name << " of ";
|
---|
232 | type->print(os, indent+1);
|
---|
233 | Expression::print( os, indent );
|
---|
234 | }
|
---|
235 |
|
---|
236 | OffsetPackExpr::OffsetPackExpr( StructInstType *type ) : Expression(), type( type ) {
|
---|
237 | assert( type );
|
---|
238 | set_result( new ArrayType( Type::Qualifiers(), new BasicType( Type::Qualifiers(), BasicType::LongUnsignedInt ), 0, false, false ) );
|
---|
239 | }
|
---|
240 |
|
---|
241 | OffsetPackExpr::OffsetPackExpr( const OffsetPackExpr &other ) : Expression( other ), type( maybeClone( other.type ) ) {}
|
---|
242 |
|
---|
243 | OffsetPackExpr::~OffsetPackExpr() { delete type; }
|
---|
244 |
|
---|
245 | void OffsetPackExpr::print( std::ostream &os, Indenter indent ) const {
|
---|
246 | os << "Offset pack expression on ";
|
---|
247 | type->print(os, indent+1);
|
---|
248 | Expression::print( os, indent );
|
---|
249 | }
|
---|
250 |
|
---|
251 | AttrExpr::AttrExpr( Expression *attr, Expression *expr_ ) :
|
---|
252 | Expression(), attr( attr ), expr(expr_), type(0), isType(false) {
|
---|
253 | }
|
---|
254 |
|
---|
255 | AttrExpr::AttrExpr( Expression *attr, Type *type_ ) :
|
---|
256 | Expression(), attr( attr ), expr(0), type(type_), isType(true) {
|
---|
257 | }
|
---|
258 |
|
---|
259 | AttrExpr::AttrExpr( const AttrExpr &other ) :
|
---|
260 | Expression( other ), attr( maybeClone( other.attr ) ), expr( maybeClone( other.expr ) ), type( maybeClone( other.type ) ), isType( other.isType ) {
|
---|
261 | }
|
---|
262 |
|
---|
263 | AttrExpr::~AttrExpr() {
|
---|
264 | delete attr;
|
---|
265 | delete expr;
|
---|
266 | delete type;
|
---|
267 | }
|
---|
268 |
|
---|
269 | void AttrExpr::print( std::ostream &os, Indenter indent) const {
|
---|
270 | os << "Attr ";
|
---|
271 | attr->print( os, indent+1);
|
---|
272 | if ( isType || expr ) {
|
---|
273 | os << "applied to: ";
|
---|
274 | if (isType) type->print(os, indent+1);
|
---|
275 | else expr->print(os, indent+1);
|
---|
276 | } // if
|
---|
277 | Expression::print( os, indent );
|
---|
278 | }
|
---|
279 |
|
---|
280 | CastExpr::CastExpr( Expression *arg, Type *toType, bool isGenerated ) : Expression(), arg(arg), isGenerated( isGenerated ) {
|
---|
281 | set_result(toType);
|
---|
282 | }
|
---|
283 |
|
---|
284 | CastExpr::CastExpr( Expression *arg, bool isGenerated ) : Expression(), arg(arg), isGenerated( isGenerated ) {
|
---|
285 | set_result( new VoidType( Type::Qualifiers() ) );
|
---|
286 | }
|
---|
287 |
|
---|
288 | CastExpr::CastExpr( const CastExpr &other ) : Expression( other ), arg( maybeClone( other.arg ) ), isGenerated( other.isGenerated ) {
|
---|
289 | }
|
---|
290 |
|
---|
291 | CastExpr::~CastExpr() {
|
---|
292 | delete arg;
|
---|
293 | }
|
---|
294 |
|
---|
295 | void 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:";
|
---|
299 | if ( result->isVoid() ) {
|
---|
300 | os << " nothing";
|
---|
301 | } else {
|
---|
302 | os << std::endl << indent+1;
|
---|
303 | result->print( os, indent+1 );
|
---|
304 | } // if
|
---|
305 | Expression::print( os, indent );
|
---|
306 | }
|
---|
307 |
|
---|
308 | KeywordCastExpr::KeywordCastExpr( Expression *arg, Target target ) : Expression(), arg(arg), target( target ) {
|
---|
309 | }
|
---|
310 |
|
---|
311 | KeywordCastExpr::KeywordCastExpr( const KeywordCastExpr &other ) : Expression( other ), arg( maybeClone( other.arg ) ), target( other.target ) {
|
---|
312 | }
|
---|
313 |
|
---|
314 | KeywordCastExpr::~KeywordCastExpr() {
|
---|
315 | delete arg;
|
---|
316 | }
|
---|
317 |
|
---|
318 | const 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 |
|
---|
329 | void 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 |
|
---|
337 | VirtualCastExpr::VirtualCastExpr( Expression *arg_, Type *toType ) : Expression(), arg(arg_) {
|
---|
338 | set_result(toType);
|
---|
339 | }
|
---|
340 |
|
---|
341 | VirtualCastExpr::VirtualCastExpr( const VirtualCastExpr &other ) : Expression( other ), arg( maybeClone( other.arg ) ) {
|
---|
342 | }
|
---|
343 |
|
---|
344 | VirtualCastExpr::~VirtualCastExpr() {
|
---|
345 | delete arg;
|
---|
346 | }
|
---|
347 |
|
---|
348 | void 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:";
|
---|
352 | if ( ! result ) {
|
---|
353 | os << " unknown";
|
---|
354 | } else {
|
---|
355 | os << std::endl << indent+1;
|
---|
356 | result->print( os, indent+1 );
|
---|
357 | } // if
|
---|
358 | Expression::print( os, indent );
|
---|
359 | }
|
---|
360 |
|
---|
361 | UntypedMemberExpr::UntypedMemberExpr( Expression * member, Expression *aggregate ) :
|
---|
362 | Expression(), member(member), aggregate(aggregate) {
|
---|
363 | assert( aggregate );
|
---|
364 | }
|
---|
365 |
|
---|
366 | UntypedMemberExpr::UntypedMemberExpr( const UntypedMemberExpr &other ) :
|
---|
367 | Expression( other ), member( maybeClone( other.member ) ), aggregate( maybeClone( other.aggregate ) ) {
|
---|
368 | }
|
---|
369 |
|
---|
370 | UntypedMemberExpr::~UntypedMemberExpr() {
|
---|
371 | delete aggregate;
|
---|
372 | delete member;
|
---|
373 | }
|
---|
374 |
|
---|
375 | void 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);
|
---|
380 | Expression::print( os, indent );
|
---|
381 | }
|
---|
382 |
|
---|
383 | MemberExpr::MemberExpr( DeclarationWithType *member, Expression *aggregate ) :
|
---|
384 | Expression(), member(member), aggregate(aggregate) {
|
---|
385 | assert( member );
|
---|
386 | assert( aggregate );
|
---|
387 | assert( aggregate->result );
|
---|
388 |
|
---|
389 | TypeSubstitution sub = aggregate->result->genericSubstitution();
|
---|
390 | Type * res = member->get_type()->clone();
|
---|
391 | sub.apply( res );
|
---|
392 | result = res;
|
---|
393 | result->set_lvalue( true );
|
---|
394 | result->get_qualifiers() |= aggregate->result->get_qualifiers();
|
---|
395 | }
|
---|
396 |
|
---|
397 | MemberExpr::MemberExpr( const MemberExpr &other ) :
|
---|
398 | Expression( other ), member( other.member ), aggregate( maybeClone( other.aggregate ) ) {
|
---|
399 | }
|
---|
400 |
|
---|
401 | MemberExpr::~MemberExpr() {
|
---|
402 | // don't delete the member declaration, since it points somewhere else in the tree
|
---|
403 | delete aggregate;
|
---|
404 | }
|
---|
405 |
|
---|
406 | void MemberExpr::print( std::ostream &os, Indenter indent ) const {
|
---|
407 | os << "Member Expression, with field:" << std::endl;
|
---|
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);
|
---|
412 | Expression::print( os, indent );
|
---|
413 | }
|
---|
414 |
|
---|
415 | UntypedExpr::UntypedExpr( Expression *function, const std::list<Expression *> &args ) :
|
---|
416 | Expression(), function(function), args(args) {}
|
---|
417 |
|
---|
418 | UntypedExpr::UntypedExpr( const UntypedExpr &other ) :
|
---|
419 | Expression( other ), function( maybeClone( other.function ) ) {
|
---|
420 | cloneAll( other.args, args );
|
---|
421 | }
|
---|
422 |
|
---|
423 | UntypedExpr::~UntypedExpr() {
|
---|
424 | delete function;
|
---|
425 | deleteAll( args );
|
---|
426 | }
|
---|
427 |
|
---|
428 | UntypedExpr * 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 );
|
---|
432 | assertf( base, "expected pointer type in dereference (type was %s)", toString( type ).c_str() );
|
---|
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.
|
---|
439 | ret->result->set_lvalue( true );
|
---|
440 | }
|
---|
441 | }
|
---|
442 | return ret;
|
---|
443 | }
|
---|
444 |
|
---|
445 | UntypedExpr * 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 |
|
---|
457 | void UntypedExpr::print( std::ostream &os, Indenter indent ) const {
|
---|
458 | os << "Applying untyped:" << std::endl;
|
---|
459 | os << indent+1;
|
---|
460 | function->print(os, indent+1);
|
---|
461 | os << std::endl << indent << "...to:" << std::endl;
|
---|
462 | printAll(args, os, indent+1);
|
---|
463 | Expression::print( os, indent );
|
---|
464 | }
|
---|
465 |
|
---|
466 | NameExpr::NameExpr( std::string name ) : Expression(), name(name) {
|
---|
467 | assertf(name != "0", "Zero is not a valid name");
|
---|
468 | assertf(name != "1", "One is not a valid name");
|
---|
469 | }
|
---|
470 |
|
---|
471 | NameExpr::NameExpr( const NameExpr &other ) : Expression( other ), name( other.name ) {
|
---|
472 | }
|
---|
473 |
|
---|
474 | NameExpr::~NameExpr() {}
|
---|
475 |
|
---|
476 | void NameExpr::print( std::ostream &os, Indenter indent ) const {
|
---|
477 | os << "Name: " << get_name();
|
---|
478 | Expression::print( os, indent );
|
---|
479 | }
|
---|
480 |
|
---|
481 | LogicalExpr::LogicalExpr( Expression *arg1_, Expression *arg2_, bool andp ) :
|
---|
482 | Expression(), arg1(arg1_), arg2(arg2_), isAnd(andp) {
|
---|
483 | set_result( new BasicType( Type::Qualifiers(), BasicType::SignedInt ) );
|
---|
484 | }
|
---|
485 |
|
---|
486 | LogicalExpr::LogicalExpr( const LogicalExpr &other ) :
|
---|
487 | Expression( other ), arg1( maybeClone( other.arg1 ) ), arg2( maybeClone( other.arg2 ) ), isAnd( other.isAnd ) {
|
---|
488 | }
|
---|
489 |
|
---|
490 | LogicalExpr::~LogicalExpr() {
|
---|
491 | delete arg1;
|
---|
492 | delete arg2;
|
---|
493 | }
|
---|
494 |
|
---|
495 | void LogicalExpr::print( std::ostream &os, Indenter indent )const {
|
---|
496 | os << "Short-circuited operation (" << (isAnd ? "and" : "or") << ") on: ";
|
---|
497 | arg1->print(os);
|
---|
498 | os << " and ";
|
---|
499 | arg2->print(os);
|
---|
500 | Expression::print( os, indent );
|
---|
501 | }
|
---|
502 |
|
---|
503 | ConditionalExpr::ConditionalExpr( Expression * arg1, Expression * arg2, Expression * arg3 ) :
|
---|
504 | Expression(), arg1(arg1), arg2(arg2), arg3(arg3) {}
|
---|
505 |
|
---|
506 | ConditionalExpr::ConditionalExpr( const ConditionalExpr &other ) :
|
---|
507 | Expression( other ), arg1( maybeClone( other.arg1 ) ), arg2( maybeClone( other.arg2 ) ), arg3( maybeClone( other.arg3 ) ) {
|
---|
508 | }
|
---|
509 |
|
---|
510 | ConditionalExpr::~ConditionalExpr() {
|
---|
511 | delete arg1;
|
---|
512 | delete arg2;
|
---|
513 | delete arg3;
|
---|
514 | }
|
---|
515 |
|
---|
516 | void 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 );
|
---|
523 | Expression::print( os, indent );
|
---|
524 | }
|
---|
525 |
|
---|
526 | AsmExpr::AsmExpr( const AsmExpr & other ) : Expression( other ), inout( maybeClone( other.inout ) ), constraint( maybeClone( other.constraint ) ), operand( maybeClone( other.operand ) ) {}
|
---|
527 |
|
---|
528 |
|
---|
529 | void AsmExpr::print( std::ostream &os, Indenter indent ) const {
|
---|
530 | os << "Asm Expression: " << std::endl;
|
---|
531 | if ( inout ) inout->print( os, indent+1 );
|
---|
532 | if ( constraint ) constraint->print( os, indent+1 );
|
---|
533 | if ( operand ) operand->print( os, indent+1 );
|
---|
534 | }
|
---|
535 |
|
---|
536 |
|
---|
537 | ImplicitCopyCtorExpr::ImplicitCopyCtorExpr( ApplicationExpr * callExpr ) : callExpr( callExpr ) {
|
---|
538 | assert( callExpr );
|
---|
539 | assert( callExpr->result );
|
---|
540 | set_result( callExpr->get_result()->clone() );
|
---|
541 | }
|
---|
542 |
|
---|
543 | ImplicitCopyCtorExpr::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 |
|
---|
549 | ImplicitCopyCtorExpr::~ImplicitCopyCtorExpr() {
|
---|
550 | set_env( nullptr ); // ImplicitCopyCtorExpr does not take ownership of an environment
|
---|
551 | delete callExpr;
|
---|
552 | deleteAll( tempDecls );
|
---|
553 | deleteAll( returnDecls );
|
---|
554 | deleteAll( dtors );
|
---|
555 | }
|
---|
556 |
|
---|
557 | void 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 );
|
---|
564 | Expression::print( os, indent );
|
---|
565 | }
|
---|
566 |
|
---|
567 |
|
---|
568 | ConstructorExpr::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 );
|
---|
573 | set_result( maybeClone( arg->result ) );
|
---|
574 | }
|
---|
575 |
|
---|
576 | ConstructorExpr::ConstructorExpr( const ConstructorExpr & other ) : Expression( other ), callExpr( maybeClone( other.callExpr ) ) {
|
---|
577 | }
|
---|
578 |
|
---|
579 | ConstructorExpr::~ConstructorExpr() {
|
---|
580 | delete callExpr;
|
---|
581 | }
|
---|
582 |
|
---|
583 | void ConstructorExpr::print( std::ostream &os, Indenter indent ) const {
|
---|
584 | os << "Constructor Expression: " << std::endl << indent+1;
|
---|
585 | callExpr->print( os, indent + 2 );
|
---|
586 | Expression::print( os, indent );
|
---|
587 | }
|
---|
588 |
|
---|
589 |
|
---|
590 | CompoundLiteralExpr::CompoundLiteralExpr( Type * type, Initializer * initializer ) : initializer( initializer ) {
|
---|
591 | assert( type && initializer );
|
---|
592 | type->set_lvalue( true );
|
---|
593 | set_result( type );
|
---|
594 | }
|
---|
595 |
|
---|
596 | CompoundLiteralExpr::CompoundLiteralExpr( const CompoundLiteralExpr &other ) : Expression( other ), initializer( other.initializer->clone() ) {}
|
---|
597 |
|
---|
598 | CompoundLiteralExpr::~CompoundLiteralExpr() {
|
---|
599 | delete initializer;
|
---|
600 | }
|
---|
601 |
|
---|
602 | void 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 );
|
---|
607 | Expression::print( os, indent );
|
---|
608 | }
|
---|
609 |
|
---|
610 | RangeExpr::RangeExpr( Expression *low, Expression *high ) : low( low ), high( high ) {}
|
---|
611 | RangeExpr::RangeExpr( const RangeExpr &other ) : Expression( other ), low( other.low->clone() ), high( other.high->clone() ) {}
|
---|
612 | void RangeExpr::print( std::ostream &os, Indenter indent ) const {
|
---|
613 | os << "Range Expression: ";
|
---|
614 | low->print( os, indent );
|
---|
615 | os << " ... ";
|
---|
616 | high->print( os, indent );
|
---|
617 | Expression::print( os, indent );
|
---|
618 | }
|
---|
619 |
|
---|
620 | StmtExpr::StmtExpr( CompoundStmt *statements ) : statements( statements ) {
|
---|
621 | computeResult();
|
---|
622 | }
|
---|
623 | StmtExpr::StmtExpr( const StmtExpr &other ) : Expression( other ), statements( other.statements->clone() ) {
|
---|
624 | cloneAll( other.returnDecls, returnDecls );
|
---|
625 | cloneAll( other.dtors, dtors );
|
---|
626 | }
|
---|
627 | StmtExpr::~StmtExpr() {
|
---|
628 | delete statements;
|
---|
629 | deleteAll( dtors );
|
---|
630 | deleteAll( returnDecls );
|
---|
631 | }
|
---|
632 | void StmtExpr::computeResult() {
|
---|
633 | assert( statements );
|
---|
634 | std::list< Statement * > & body = statements->kids;
|
---|
635 | delete result;
|
---|
636 | result = nullptr;
|
---|
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() ) {
|
---|
643 | if ( ExprStmt * exprStmt = dynamic_cast< ExprStmt * >( body.back() ) ) {
|
---|
644 | result = maybeClone( exprStmt->expr->result );
|
---|
645 | }
|
---|
646 | }
|
---|
647 | // ensure that StmtExpr has a result type
|
---|
648 | if ( ! result ) {
|
---|
649 | result = new VoidType( Type::Qualifiers() );
|
---|
650 | }
|
---|
651 | }
|
---|
652 | void StmtExpr::print( std::ostream &os, Indenter indent ) const {
|
---|
653 | os << "Statement Expression: " << std::endl << indent+1;
|
---|
654 | statements->print( os, indent+1 );
|
---|
655 | if ( ! returnDecls.empty() ) {
|
---|
656 | os << indent+1 << "... with returnDecls: ";
|
---|
657 | printAll( returnDecls, os, indent+1 );
|
---|
658 | }
|
---|
659 | if ( ! dtors.empty() ) {
|
---|
660 | os << indent+1 << "... with dtors: ";
|
---|
661 | printAll( dtors, os, indent+1 );
|
---|
662 | }
|
---|
663 | Expression::print( os, indent );
|
---|
664 | }
|
---|
665 |
|
---|
666 |
|
---|
667 | long long UniqueExpr::count = 0;
|
---|
668 | UniqueExpr::UniqueExpr( Expression *expr, long long idVal ) : expr( expr ), object( nullptr ), var( nullptr ), id( idVal ) {
|
---|
669 | assert( expr );
|
---|
670 | assert( count != -1 );
|
---|
671 | if ( id == -1 ) id = count++;
|
---|
672 | if ( expr->get_result() ) {
|
---|
673 | set_result( expr->get_result()->clone() );
|
---|
674 | }
|
---|
675 | }
|
---|
676 | UniqueExpr::UniqueExpr( const UniqueExpr &other ) : Expression( other ), expr( maybeClone( other.expr ) ), object( maybeClone( other.object ) ), var( maybeClone( other.var ) ), id( other.id ) {
|
---|
677 | }
|
---|
678 | UniqueExpr::~UniqueExpr() {
|
---|
679 | delete expr;
|
---|
680 | delete object;
|
---|
681 | delete var;
|
---|
682 | }
|
---|
683 | void 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 );
|
---|
689 | }
|
---|
690 | Expression::print( os, indent );
|
---|
691 | }
|
---|
692 |
|
---|
693 | InitAlternative::InitAlternative( Type * type, Designation * designation ) : type( type ), designation( designation ) {}
|
---|
694 | InitAlternative::InitAlternative( const InitAlternative & other ) : type( maybeClone( other.type ) ), designation( maybeClone( other.designation ) ) {}
|
---|
695 | InitAlternative::~InitAlternative() {
|
---|
696 | delete type;
|
---|
697 | delete designation;
|
---|
698 | }
|
---|
699 |
|
---|
700 | UntypedInitExpr::UntypedInitExpr( Expression * expr, const std::list<InitAlternative> & initAlts ) : expr( expr ), initAlts( initAlts ) {}
|
---|
701 | UntypedInitExpr::UntypedInitExpr( const UntypedInitExpr & other ) : Expression( other ), expr( maybeClone( other.expr ) ), initAlts( other.initAlts ) {}
|
---|
702 | UntypedInitExpr::~UntypedInitExpr() {
|
---|
703 | delete expr;
|
---|
704 | }
|
---|
705 |
|
---|
706 | void UntypedInitExpr::print( std::ostream & os, Indenter indent ) const {
|
---|
707 | os << "Untyped Init Expression" << std::endl << indent+1;
|
---|
708 | expr->print( os, indent+1 );
|
---|
709 | if ( ! initAlts.empty() ) {
|
---|
710 | for ( const InitAlternative & alt : initAlts ) {
|
---|
711 | os << indent+1 << "InitAlternative: ";
|
---|
712 | alt.type->print( os, indent+1 );
|
---|
713 | alt.designation->print( os, indent+1 );
|
---|
714 | }
|
---|
715 | }
|
---|
716 | }
|
---|
717 |
|
---|
718 | InitExpr::InitExpr( Expression * expr, Designation * designation ) : expr( expr ), designation( designation ) {
|
---|
719 | set_result( expr->get_result()->clone() );
|
---|
720 | }
|
---|
721 | InitExpr::InitExpr( const InitExpr & other ) : Expression( other ), expr( maybeClone( other.expr ) ), designation( maybeClone( other.designation) ) {}
|
---|
722 | InitExpr::~InitExpr() {
|
---|
723 | delete expr;
|
---|
724 | delete designation;
|
---|
725 | }
|
---|
726 |
|
---|
727 | void 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 );
|
---|
732 | }
|
---|
733 |
|
---|
734 | DeletedExpr::DeletedExpr( Expression * expr, BaseSyntaxNode * deleteStmt ) : expr( expr ), deleteStmt( deleteStmt ) {
|
---|
735 | assert( expr->result );
|
---|
736 | result = expr->result->clone();
|
---|
737 | }
|
---|
738 | DeletedExpr::DeletedExpr( const DeletedExpr & other ) : Expression( other ), expr( maybeClone( other.expr ) ), deleteStmt( other.deleteStmt ) {}
|
---|
739 | DeletedExpr::~DeletedExpr() {
|
---|
740 | delete expr;
|
---|
741 | }
|
---|
742 |
|
---|
743 | void 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 |
|
---|
750 |
|
---|
751 | DefaultArgExpr::DefaultArgExpr( Expression * expr ) : expr( expr ) {
|
---|
752 | assert( expr->result );
|
---|
753 | result = expr->result->clone();
|
---|
754 | }
|
---|
755 | DefaultArgExpr::DefaultArgExpr( const DefaultArgExpr & other ) : Expression( other ), expr( maybeClone( other.expr ) ) {}
|
---|
756 | DefaultArgExpr::~DefaultArgExpr() {
|
---|
757 | delete expr;
|
---|
758 | }
|
---|
759 |
|
---|
760 | void DefaultArgExpr::print( std::ostream & os, Indenter indent ) const {
|
---|
761 | os << "Default Argument Expression" << std::endl << indent+1;
|
---|
762 | expr->print( os, indent+1 );
|
---|
763 | }
|
---|
764 |
|
---|
765 | GenericExpr::Association::Association( Type * type, Expression * expr ) : type( type ), expr( expr ), isDefault( false ) {}
|
---|
766 | GenericExpr::Association::Association( Expression * expr ) : type( nullptr ), expr( expr ), isDefault( true ) {}
|
---|
767 | GenericExpr::Association::Association( const Association & other ) : type( maybeClone( other.type ) ), expr( maybeClone( other.expr ) ), isDefault( other.isDefault ) {}
|
---|
768 | GenericExpr::Association::~Association() {
|
---|
769 | delete type;
|
---|
770 | delete expr;
|
---|
771 | }
|
---|
772 |
|
---|
773 | GenericExpr::GenericExpr( Expression * control, const std::list<Association> & assoc ) : Expression(), control( control ), associations( assoc ) {}
|
---|
774 | GenericExpr::GenericExpr( const GenericExpr & other ) : Expression(other), control( maybeClone( other.control ) ), associations( other.associations ) {
|
---|
775 | }
|
---|
776 | GenericExpr::~GenericExpr() {
|
---|
777 | delete control;
|
---|
778 | }
|
---|
779 |
|
---|
780 | void GenericExpr::print( std::ostream & os, Indenter indent ) const {
|
---|
781 | os << "C11 _Generic Expression" << std::endl << indent+1;
|
---|
782 | control->print( os, indent+1 );
|
---|
783 | os << std::endl << indent+1 << "... with associations: " << std::endl;
|
---|
784 | for ( const Association & assoc : associations ) {
|
---|
785 | os << indent+1;
|
---|
786 | if (assoc.isDefault) {
|
---|
787 | os << "... default: ";
|
---|
788 | assoc.expr->print( os, indent+1 );
|
---|
789 | } else {
|
---|
790 | os << "... type: ";
|
---|
791 | assoc.type->print( os, indent+1 );
|
---|
792 | os << std::endl << indent+1 << "... expression: ";
|
---|
793 | assoc.expr->print( os, indent+1 );
|
---|
794 | os << std::endl;
|
---|
795 | }
|
---|
796 | os << std::endl;
|
---|
797 | }
|
---|
798 | }
|
---|
799 |
|
---|
800 | // Local Variables: //
|
---|
801 | // tab-width: 4 //
|
---|
802 | // mode: c++ //
|
---|
803 | // compile-command: "make install" //
|
---|
804 | // End: //
|
---|