source: src/SynTree/Expression.h@ f6582243

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 resolv-new with_gc
Last change on this file since f6582243 was 9236060, checked in by Rob Schluntz <rschlunt@…>, 8 years ago

Merge branch 'master' into references

  • Property mode set to 100644
File size: 31.8 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.h --
[0dd3a2f]8//
9// Author : Richard C. Bilson
10// Created On : Mon May 18 07:44:20 2015
[a5f0529]11// Last Modified By : Andrew Beach
[65cdc1e]12// Last Modified On : Fri Aug 8 11:54:00 2017
13// Update Count : 44
[0dd3a2f]14//
[51b73452]15
[6b0b624]16#pragma once
[51b73452]17
18#include <map>
[8688ce1]19#include <memory>
[294647b]20
21#include "BaseSyntaxNode.h"
22#include "Constant.h"
23#include "Mutator.h"
[51b73452]24#include "SynTree.h"
25#include "Visitor.h"
[db4ecc5]26#include "Common/UniqueName.h"
[51b73452]27
[47534159]28/// Expression is the root type for all expressions
[294647b]29class Expression : public BaseSyntaxNode{
[0dd3a2f]30 public:
[65cdc1e]31 Type * result;
32 TypeSubstitution * env;
33 Expression * argName; // if expression is used as an argument, it can be "designated" by this name
34 bool extension = false;
35
[5ded739]36 Expression( Expression * _aname = nullptr );
37 Expression( const Expression & other );
[0dd3a2f]38 virtual ~Expression();
39
[906e24d]40 Type *& get_result() { return result; }
[fbcde64]41 const Type * get_result() const { return result; }
[5ded739]42 void set_result( Type * newValue ) { result = newValue; }
[906e24d]43 bool has_result() const { return result != nullptr; }
[0dd3a2f]44
[5ded739]45 TypeSubstitution * get_env() const { return env; }
46 void set_env( TypeSubstitution * newValue ) { env = newValue; }
47 Expression * get_argName() const { return argName; }
48 void set_argName( Expression * name ) { argName = name; }
[e04ef3a]49 bool get_extension() const { return extension; }
[8e9cbb2]50 Expression * set_extension( bool exten ) { extension = exten; return this; }
[0dd3a2f]51
[5ded739]52 virtual Expression * clone() const = 0;
53 virtual void accept( Visitor & v ) = 0;
54 virtual Expression * acceptMutator( Mutator & m ) = 0;
55 virtual void print( std::ostream & os, int indent = 0 ) const;
[51b73452]56};
57
[6c3a988f]58struct ParamEntry;
59typedef std::map< UniqueId, ParamEntry > InferredParams;
60
[47534159]61/// ParamEntry contains the i.d. of a declaration and a type that is derived from that declaration,
62/// but subject to decay-to-pointer and type parameter renaming
[0dd3a2f]63struct ParamEntry {
[6c3a988f]64 ParamEntry(): decl( 0 ), actualType( 0 ), formalType( 0 ), expr( 0 ), inferParams( new InferredParams ) {}
[5ded739]65 ParamEntry( UniqueId decl, Type * actualType, Type * formalType, Expression* expr ): decl( decl ), actualType( actualType ), formalType( formalType ), expr( expr ), inferParams( new InferredParams ) {}
66 ParamEntry( const ParamEntry & other );
[0dd3a2f]67 ~ParamEntry();
[5ded739]68 ParamEntry & operator=( const ParamEntry & other );
[0dd3a2f]69
70 UniqueId decl;
[5ded739]71 Type * actualType;
72 Type * formalType;
[0dd3a2f]73 Expression* expr;
[6c3a988f]74 std::unique_ptr< InferredParams > inferParams;
[51b73452]75};
76
[9706554]77/// ApplicationExpr represents the application of a function to a set of parameters. This is the result of running an
78/// UntypedExpr through the expression analyzer.
[0dd3a2f]79class ApplicationExpr : public Expression {
80 public:
[65cdc1e]81 Expression * function;
82
[a5f0529]83 ApplicationExpr( Expression * function, const std::list<Expression *> & args = std::list< Expression * >() );
[5ded739]84 ApplicationExpr( const ApplicationExpr & other );
[0dd3a2f]85 virtual ~ApplicationExpr();
86
[5ded739]87 Expression * get_function() const { return function; }
88 void set_function( Expression * newValue ) { function = newValue; }
[0dd3a2f]89 std::list<Expression *>& get_args() { return args; }
[5ded739]90 InferredParams & get_inferParams() { return inferParams; }
[0dd3a2f]91
[5ded739]92 virtual ApplicationExpr * clone() const { return new ApplicationExpr( * this ); }
93 virtual void accept( Visitor & v ) { v.visit( this ); }
94 virtual Expression * acceptMutator( Mutator & m ) { return m.mutate( this ); }
95 virtual void print( std::ostream & os, int indent = 0 ) const;
[65cdc1e]96
[0dd3a2f]97 private:
98 std::list<Expression *> args;
99 InferredParams inferParams;
[51b73452]100};
101
[9706554]102/// UntypedExpr represents the application of a function to a set of parameters, but where the particular overload for
103/// the function name has not yet been determined. Most operators are converted into functional form automatically, to
104/// permit operator overloading.
[0dd3a2f]105class UntypedExpr : public Expression {
106 public:
[65cdc1e]107 Expression * function;
108 std::list<Expression*> args;
109
[5ded739]110 UntypedExpr( Expression * function, const std::list<Expression *> & args = std::list< Expression * >(), Expression *_aname = nullptr );
111 UntypedExpr( const UntypedExpr & other );
[0dd3a2f]112 virtual ~UntypedExpr();
113
[5ded739]114 Expression * get_function() const { return function; }
115 void set_function( Expression * newValue ) { function = newValue; }
[0dd3a2f]116
[5ded739]117 void set_args( std::list<Expression *> & listArgs ) { args = listArgs; }
[0dd3a2f]118 std::list<Expression*>::iterator begin_args() { return args.begin(); }
119 std::list<Expression*>::iterator end_args() { return args.end(); }
120 std::list<Expression*>& get_args() { return args; }
121
[b3b2077]122 static UntypedExpr * createDeref( Expression * arg );
123 static UntypedExpr * createAssign( Expression * arg1, Expression * arg2 );
124
[5ded739]125 virtual UntypedExpr * clone() const { return new UntypedExpr( * this ); }
126 virtual void accept( Visitor & v ) { v.visit( this ); }
127 virtual Expression * acceptMutator( Mutator & m ) { return m.mutate( this ); }
128 virtual void print( std::ostream & os, int indent = 0 ) const;
129 virtual void printArgs(std::ostream & os, int indent = 0) const;
[51b73452]130};
131
[47534159]132/// NameExpr contains a name whose meaning is still not determined
[0dd3a2f]133class NameExpr : public Expression {
134 public:
[65cdc1e]135 std::string name;
136
[7bf7fb9]137 NameExpr( std::string name, Expression *_aname = nullptr );
[5ded739]138 NameExpr( const NameExpr & other );
[0dd3a2f]139 virtual ~NameExpr();
140
[5ded739]141 const std::string & get_name() const { return name; }
[0dd3a2f]142 void set_name( std::string newValue ) { name = newValue; }
143
[5ded739]144 virtual NameExpr * clone() const { return new NameExpr( * this ); }
145 virtual void accept( Visitor & v ) { v.visit( this ); }
146 virtual Expression * acceptMutator( Mutator & m ) { return m.mutate( this ); }
147 virtual void print( std::ostream & os, int indent = 0 ) const;
[51b73452]148};
149
150// The following classes are used to represent expression types that cannot be converted into
151// function-call format.
152
[5ded739]153/// AddressExpr represents a address-of expression, e.g. & e
[0dd3a2f]154class AddressExpr : public Expression {
155 public:
[65cdc1e]156 Expression * arg;
157
[5ded739]158 AddressExpr( Expression * arg, Expression *_aname = nullptr );
159 AddressExpr( const AddressExpr & other );
[0dd3a2f]160 virtual ~AddressExpr();
161
[5ded739]162 Expression * get_arg() const { return arg; }
163 void set_arg(Expression * newValue ) { arg = newValue; }
[0dd3a2f]164
[5ded739]165 virtual AddressExpr * clone() const { return new AddressExpr( * this ); }
166 virtual void accept( Visitor & v ) { v.visit( this ); }
167 virtual Expression * acceptMutator( Mutator & m ) { return m.mutate( this ); }
168 virtual void print( std::ostream & os, int indent = 0 ) const;
[51b73452]169};
170
[3be261a]171// xxx - this doesn't appear to actually be hooked in anywhere. We should use this instead of the "&&"" UntypedExpr hack
[0dd3a2f]172class LabelAddressExpr : public Expression {
173 public:
[65cdc1e]174 Expression * arg;
175
[5ded739]176 LabelAddressExpr( Expression * arg );
177 LabelAddressExpr( const LabelAddressExpr & other );
[0dd3a2f]178 virtual ~LabelAddressExpr();
179
[5ded739]180 Expression * get_arg() const { return arg; }
181 void set_arg(Expression * newValue ) { arg = newValue; }
[0dd3a2f]182
[5ded739]183 virtual LabelAddressExpr * clone() const { return new LabelAddressExpr( * this ); }
184 virtual void accept( Visitor & v ) { v.visit( this ); }
185 virtual Expression * acceptMutator( Mutator & m ) { return m.mutate( this ); }
186 virtual void print( std::ostream & os, int indent = 0 ) const;
[51b73452]187};
188
[47534159]189/// CastExpr represents a type cast expression, e.g. (int)e
[0dd3a2f]190class CastExpr : public Expression {
191 public:
[65cdc1e]192 Expression * arg;
193
[5ded739]194 CastExpr( Expression * arg, Expression *_aname = nullptr );
195 CastExpr( Expression * arg, Type * toType, Expression *_aname = nullptr );
196 CastExpr( const CastExpr & other );
[0dd3a2f]197 virtual ~CastExpr();
198
[5ded739]199 Expression * get_arg() const { return arg; }
[a5f0529]200 void set_arg( Expression * newValue ) { arg = newValue; }
[0dd3a2f]201
[5ded739]202 virtual CastExpr * clone() const { return new CastExpr( * this ); }
203 virtual void accept( Visitor & v ) { v.visit( this ); }
204 virtual Expression * acceptMutator( Mutator & m ) { return m.mutate( this ); }
205 virtual void print( std::ostream & os, int indent = 0 ) const;
[51b73452]206};
207
[a5f0529]208/// VirtualCastExpr repersents a virtual dynamic cast, e.g. (virtual exception)e
209class VirtualCastExpr : public Expression {
210 public:
[5ded739]211 Expression * arg;
[65cdc1e]212
[a5f0529]213 VirtualCastExpr( Expression * arg, Type * toType );
214 VirtualCastExpr( const VirtualCastExpr & other );
215 virtual ~VirtualCastExpr();
216
217 Expression * get_arg() const { return arg; }
218 void set_arg( Expression * newValue ) { arg = newValue; }
219
220 virtual VirtualCastExpr * clone() const { return new VirtualCastExpr( * this ); }
221 virtual void accept( Visitor & v ) { v.visit( this ); }
222 virtual Expression * acceptMutator( Mutator & m ) { return m.mutate( this ); }
223 virtual void print( std::ostream & os, int indent = 0 ) const;
[51b73452]224};
225
[47534159]226/// UntypedMemberExpr represents a member selection operation, e.g. q.p before processing by the expression analyzer
[0dd3a2f]227class UntypedMemberExpr : public Expression {
228 public:
[65cdc1e]229 Expression * member;
230 Expression * aggregate;
231
[5ded739]232 UntypedMemberExpr( Expression * member, Expression * aggregate, Expression *_aname = nullptr );
233 UntypedMemberExpr( const UntypedMemberExpr & other );
[0dd3a2f]234 virtual ~UntypedMemberExpr();
235
[3b58d91]236 Expression * get_member() const { return member; }
237 void set_member( Expression * newValue ) { member = newValue; }
[5ded739]238 Expression * get_aggregate() const { return aggregate; }
239 void set_aggregate( Expression * newValue ) { aggregate = newValue; }
[0dd3a2f]240
[5ded739]241 virtual UntypedMemberExpr * clone() const { return new UntypedMemberExpr( * this ); }
242 virtual void accept( Visitor & v ) { v.visit( this ); }
243 virtual Expression * acceptMutator( Mutator & m ) { return m.mutate( this ); }
244 virtual void print( std::ostream & os, int indent = 0 ) const;
[51b73452]245};
246
[4551a6e]247/// MemberExpr represents a member selection operation, e.g. q.p after processing by the expression analyzer.
248/// Does not take ownership of member.
[0dd3a2f]249class MemberExpr : public Expression {
250 public:
[65cdc1e]251 DeclarationWithType * member;
252 Expression * aggregate;
253
[5ded739]254 MemberExpr( DeclarationWithType * member, Expression * aggregate, Expression *_aname = nullptr );
255 MemberExpr( const MemberExpr & other );
[0dd3a2f]256 virtual ~MemberExpr();
257
[5ded739]258 DeclarationWithType * get_member() const { return member; }
259 void set_member( DeclarationWithType * newValue ) { member = newValue; }
260 Expression * get_aggregate() const { return aggregate; }
261 void set_aggregate( Expression * newValue ) { aggregate = newValue; }
[0dd3a2f]262
[5ded739]263 virtual MemberExpr * clone() const { return new MemberExpr( * this ); }
264 virtual void accept( Visitor & v ) { v.visit( this ); }
265 virtual Expression * acceptMutator( Mutator & m ) { return m.mutate( this ); }
266 virtual void print( std::ostream & os, int indent = 0 ) const;
[51b73452]267};
268
[4551a6e]269/// VariableExpr represents an expression that simply refers to the value of a named variable.
270/// Does not take ownership of var.
[0dd3a2f]271class VariableExpr : public Expression {
272 public:
[65cdc1e]273 DeclarationWithType * var;
274
[5ded739]275 VariableExpr( DeclarationWithType * var, Expression *_aname = nullptr );
276 VariableExpr( const VariableExpr & other );
[0dd3a2f]277 virtual ~VariableExpr();
278
[5ded739]279 DeclarationWithType * get_var() const { return var; }
280 void set_var( DeclarationWithType * newValue ) { var = newValue; }
[0dd3a2f]281
[8a6cf7e]282 static VariableExpr * functionPointer( FunctionDecl * decl );
283
[5ded739]284 virtual VariableExpr * clone() const { return new VariableExpr( * this ); }
285 virtual void accept( Visitor & v ) { v.visit( this ); }
286 virtual Expression * acceptMutator( Mutator & m ) { return m.mutate( this ); }
287 virtual void print( std::ostream & os, int indent = 0 ) const;
[51b73452]288};
289
[3be261a]290/// ConstantExpr represents an expression that simply refers to the value of a constant
[0dd3a2f]291class ConstantExpr : public Expression {
292 public:
[65cdc1e]293 Constant constant;
294
[7bf7fb9]295 ConstantExpr( Constant constant, Expression *_aname = nullptr );
[5ded739]296 ConstantExpr( const ConstantExpr & other );
[0dd3a2f]297 virtual ~ConstantExpr();
298
[5ded739]299 Constant * get_constant() { return & constant; }
300 void set_constant( const Constant & newValue ) { constant = newValue; }
[0dd3a2f]301
[5ded739]302 virtual ConstantExpr * clone() const { return new ConstantExpr( * this ); }
303 virtual void accept( Visitor & v ) { v.visit( this ); }
304 virtual Expression * acceptMutator( Mutator & m ) { return m.mutate( this ); }
305 virtual void print( std::ostream & os, int indent = 0 ) const;
[51b73452]306};
307
[47534159]308/// SizeofExpr represents a sizeof expression (could be sizeof(int) or sizeof 3+4)
[0dd3a2f]309class SizeofExpr : public Expression {
310 public:
[65cdc1e]311 Expression * expr;
312 Type * type;
313 bool isType;
314
[5ded739]315 SizeofExpr( Expression * expr, Expression *_aname = nullptr );
316 SizeofExpr( const SizeofExpr & other );
317 SizeofExpr( Type * type, Expression *_aname = nullptr );
[0dd3a2f]318 virtual ~SizeofExpr();
319
[5ded739]320 Expression * get_expr() const { return expr; }
321 void set_expr( Expression * newValue ) { expr = newValue; }
322 Type * get_type() const { return type; }
323 void set_type( Type * newValue ) { type = newValue; }
[0dd3a2f]324 bool get_isType() const { return isType; }
325 void set_isType( bool newValue ) { isType = newValue; }
326
[5ded739]327 virtual SizeofExpr * clone() const { return new SizeofExpr( * this ); }
328 virtual void accept( Visitor & v ) { v.visit( this ); }
329 virtual Expression * acceptMutator( Mutator & m ) { return m.mutate( this ); }
330 virtual void print( std::ostream & os, int indent = 0 ) const;
[51b73452]331};
332
[47534159]333/// AlignofExpr represents an alignof expression
334class AlignofExpr : public Expression {
335 public:
[65cdc1e]336 Expression * expr;
337 Type * type;
338 bool isType;
339
[5ded739]340 AlignofExpr( Expression * expr, Expression *_aname = nullptr );
341 AlignofExpr( const AlignofExpr & other );
342 AlignofExpr( Type * type, Expression *_aname = nullptr );
[47534159]343 virtual ~AlignofExpr();
344
[5ded739]345 Expression * get_expr() const { return expr; }
346 void set_expr( Expression * newValue ) { expr = newValue; }
347 Type * get_type() const { return type; }
348 void set_type( Type * newValue ) { type = newValue; }
[47534159]349 bool get_isType() const { return isType; }
350 void set_isType( bool newValue ) { isType = newValue; }
351
[5ded739]352 virtual AlignofExpr * clone() const { return new AlignofExpr( * this ); }
353 virtual void accept( Visitor & v ) { v.visit( this ); }
354 virtual Expression * acceptMutator( Mutator & m ) { return m.mutate( this ); }
355 virtual void print( std::ostream & os, int indent = 0 ) const;
[47534159]356};
357
[2a4b088]358/// UntypedOffsetofExpr represents an offsetof expression before resolution
359class UntypedOffsetofExpr : public Expression {
360 public:
[65cdc1e]361 Type * type;
362 std::string member;
363
[5ded739]364 UntypedOffsetofExpr( Type * type, const std::string & member, Expression *_aname = nullptr );
365 UntypedOffsetofExpr( const UntypedOffsetofExpr & other );
[2a4b088]366 virtual ~UntypedOffsetofExpr();
367
368 std::string get_member() const { return member; }
[5ded739]369 void set_member( const std::string & newValue ) { member = newValue; }
370 Type * get_type() const { return type; }
371 void set_type( Type * newValue ) { type = newValue; }
372
373 virtual UntypedOffsetofExpr * clone() const { return new UntypedOffsetofExpr( * this ); }
374 virtual void accept( Visitor & v ) { v.visit( this ); }
375 virtual Expression * acceptMutator( Mutator & m ) { return m.mutate( this ); }
376 virtual void print( std::ostream & os, int indent = 0 ) const;
[2a4b088]377};
378
[25a054f]379/// OffsetofExpr represents an offsetof expression
380class OffsetofExpr : public Expression {
381 public:
[65cdc1e]382 Type * type;
383 DeclarationWithType * member;
384
[5ded739]385 OffsetofExpr( Type * type, DeclarationWithType * member, Expression *_aname = nullptr );
386 OffsetofExpr( const OffsetofExpr & other );
[25a054f]387 virtual ~OffsetofExpr();
388
[5ded739]389 Type * get_type() const { return type; }
390 void set_type( Type * newValue ) { type = newValue; }
391 DeclarationWithType * get_member() const { return member; }
392 void set_member( DeclarationWithType * newValue ) { member = newValue; }
393
394 virtual OffsetofExpr * clone() const { return new OffsetofExpr( * this ); }
395 virtual void accept( Visitor & v ) { v.visit( this ); }
396 virtual Expression * acceptMutator( Mutator & m ) { return m.mutate( this ); }
397 virtual void print( std::ostream & os, int indent = 0 ) const;
[25a054f]398};
399
[afc1045]400/// Expression representing a pack of field-offsets for a generic type
401class OffsetPackExpr : public Expression {
402public:
[65cdc1e]403 StructInstType * type;
404
[5ded739]405 OffsetPackExpr( StructInstType * type_, Expression * aname_ = 0 );
406 OffsetPackExpr( const OffsetPackExpr & other );
[afc1045]407 virtual ~OffsetPackExpr();
408
[5ded739]409 StructInstType * get_type() const { return type; }
410 void set_type( StructInstType * newValue ) { type = newValue; }
[afc1045]411
[5ded739]412 virtual OffsetPackExpr * clone() const { return new OffsetPackExpr( * this ); }
413 virtual void accept( Visitor & v ) { v.visit( this ); }
414 virtual Expression * acceptMutator( Mutator & m ) { return m.mutate( this ); }
415 virtual void print( std::ostream & os, int indent = 0 ) const;
[afc1045]416};
417
[47534159]418/// AttrExpr represents an @attribute expression (like sizeof, but user-defined)
[0dd3a2f]419class AttrExpr : public Expression {
420 public:
[65cdc1e]421 Expression * attr;
422 Expression * expr;
423 Type * type;
424 bool isType;
425
[5ded739]426 AttrExpr(Expression * attr, Expression * expr, Expression *_aname = nullptr );
427 AttrExpr( const AttrExpr & other );
428 AttrExpr( Expression * attr, Type * type, Expression *_aname = nullptr );
[0dd3a2f]429 virtual ~AttrExpr();
430
[5ded739]431 Expression * get_attr() const { return attr; }
432 void set_attr( Expression * newValue ) { attr = newValue; }
433 Expression * get_expr() const { return expr; }
434 void set_expr( Expression * newValue ) { expr = newValue; }
435 Type * get_type() const { return type; }
436 void set_type( Type * newValue ) { type = newValue; }
[0dd3a2f]437 bool get_isType() const { return isType; }
438 void set_isType( bool newValue ) { isType = newValue; }
439
[5ded739]440 virtual AttrExpr * clone() const { return new AttrExpr( * this ); }
441 virtual void accept( Visitor & v ) { v.visit( this ); }
442 virtual Expression * acceptMutator( Mutator & m ) { return m.mutate( this ); }
443 virtual void print( std::ostream & os, int indent = 0 ) const;
[51b73452]444};
445
[47534159]446/// LogicalExpr represents a short-circuit boolean expression (&& or ||)
[0dd3a2f]447class LogicalExpr : public Expression {
448 public:
[65cdc1e]449 Expression * arg1;
450 Expression * arg2;
451
[5ded739]452 LogicalExpr( Expression * arg1, Expression * arg2, bool andp = true, Expression *_aname = nullptr );
453 LogicalExpr( const LogicalExpr & other );
[0dd3a2f]454 virtual ~LogicalExpr();
455
456 bool get_isAnd() const { return isAnd; }
[5ded739]457 Expression * get_arg1() { return arg1; }
458 void set_arg1( Expression * newValue ) { arg1 = newValue; }
459 Expression * get_arg2() const { return arg2; }
460 void set_arg2( Expression * newValue ) { arg2 = newValue; }
461
462 virtual LogicalExpr * clone() const { return new LogicalExpr( * this ); }
463 virtual void accept( Visitor & v ) { v.visit( this ); }
464 virtual Expression * acceptMutator( Mutator & m ) { return m.mutate( this ); }
465 virtual void print( std::ostream & os, int indent = 0 ) const;
[65cdc1e]466
[0dd3a2f]467 private:
468 bool isAnd;
[51b73452]469};
470
[47534159]471/// ConditionalExpr represents the three-argument conditional ( p ? a : b )
[0dd3a2f]472class ConditionalExpr : public Expression {
473 public:
[65cdc1e]474 Expression * arg1;
475 Expression * arg2;
476 Expression * arg3;
477
[5ded739]478 ConditionalExpr( Expression * arg1, Expression * arg2, Expression * arg3, Expression *_aname = nullptr );
479 ConditionalExpr( const ConditionalExpr & other );
[0dd3a2f]480 virtual ~ConditionalExpr();
481
[5ded739]482 Expression * get_arg1() const { return arg1; }
483 void set_arg1( Expression * newValue ) { arg1 = newValue; }
484 Expression * get_arg2() const { return arg2; }
485 void set_arg2( Expression * newValue ) { arg2 = newValue; }
486 Expression * get_arg3() const { return arg3; }
487 void set_arg3( Expression * newValue ) { arg3 = newValue; }
488
489 virtual ConditionalExpr * clone() const { return new ConditionalExpr( * this ); }
490 virtual void accept( Visitor & v ) { v.visit( this ); }
491 virtual Expression * acceptMutator( Mutator & m ) { return m.mutate( this ); }
492 virtual void print( std::ostream & os, int indent = 0 ) const;
[51b73452]493};
494
[47534159]495/// CommaExpr represents the sequence operator ( a, b )
[0dd3a2f]496class CommaExpr : public Expression {
497 public:
[65cdc1e]498 Expression * arg1;
499 Expression * arg2;
500
[5ded739]501 CommaExpr( Expression * arg1, Expression * arg2, Expression *_aname = nullptr );
502 CommaExpr( const CommaExpr & other );
[0dd3a2f]503 virtual ~CommaExpr();
504
[5ded739]505 Expression * get_arg1() const { return arg1; }
506 void set_arg1( Expression * newValue ) { arg1 = newValue; }
507 Expression * get_arg2() const { return arg2; }
508 void set_arg2( Expression * newValue ) { arg2 = newValue; }
[0dd3a2f]509
[5ded739]510 virtual CommaExpr * clone() const { return new CommaExpr( * this ); }
511 virtual void accept( Visitor & v ) { v.visit( this ); }
512 virtual Expression * acceptMutator( Mutator & m ) { return m.mutate( this ); }
513 virtual void print( std::ostream & os, int indent = 0 ) const;
[51b73452]514};
515
[47534159]516/// TypeExpr represents a type used in an expression (e.g. as a type generator parameter)
[0dd3a2f]517class TypeExpr : public Expression {
518 public:
[65cdc1e]519 Type * type;
520
[5ded739]521 TypeExpr( Type * type );
522 TypeExpr( const TypeExpr & other );
[0dd3a2f]523 virtual ~TypeExpr();
524
[5ded739]525 Type * get_type() const { return type; }
526 void set_type( Type * newValue ) { type = newValue; }
[0dd3a2f]527
[5ded739]528 virtual TypeExpr * clone() const { return new TypeExpr( * this ); }
529 virtual void accept( Visitor & v ) { v.visit( this ); }
530 virtual Expression * acceptMutator( Mutator & m ) { return m.mutate( this ); }
531 virtual void print( std::ostream & os, int indent = 0 ) const;
[51b73452]532};
533
[47534159]534/// AsmExpr represents a GCC 'asm constraint operand' used in an asm statement: [output] "=f" (result)
[7f5566b]535class AsmExpr : public Expression {
536 public:
[65cdc1e]537 Expression * inout;
538 ConstantExpr * constraint;
539 Expression * operand;
540
[5ded739]541 AsmExpr( Expression * inout, ConstantExpr * constraint, Expression * operand ) : inout( inout ), constraint( constraint ), operand( operand ) {}
[3be261a]542 AsmExpr( const AsmExpr & other );
[7f5566b]543 virtual ~AsmExpr() { delete inout; delete constraint; delete operand; };
544
[5ded739]545 Expression * get_inout() const { return inout; }
546 void set_inout( Expression * newValue ) { inout = newValue; }
[7f5566b]547
[5ded739]548 ConstantExpr * get_constraint() const { return constraint; }
549 void set_constraint( ConstantExpr * newValue ) { constraint = newValue; }
[7f5566b]550
[5ded739]551 Expression * get_operand() const { return operand; }
552 void set_operand( Expression * newValue ) { operand = newValue; }
[7f5566b]553
[5ded739]554 virtual AsmExpr * clone() const { return new AsmExpr( * this ); }
555 virtual void accept( Visitor & v ) { v.visit( this ); }
556 virtual Expression * acceptMutator( Mutator & m ) { return m.mutate( this ); }
557 virtual void print( std::ostream & os, int indent = 0 ) const;
[65cdc1e]558
[7f5566b]559 // https://gcc.gnu.org/onlinedocs/gcc-4.7.1/gcc/Machine-Constraints.html#Machine-Constraints
560};
561
[db4ecc5]562/// ImplicitCopyCtorExpr represents the application of a function to a set of parameters,
563/// along with a set of copy constructor calls, one for each argument.
564class ImplicitCopyCtorExpr : public Expression {
565public:
[65cdc1e]566 ApplicationExpr * callExpr;
567 std::list< ObjectDecl * > tempDecls;
568 std::list< ObjectDecl * > returnDecls;
569 std::list< Expression * > dtors;
570
[db4ecc5]571 ImplicitCopyCtorExpr( ApplicationExpr * callExpr );
572 ImplicitCopyCtorExpr( const ImplicitCopyCtorExpr & other );
573 virtual ~ImplicitCopyCtorExpr();
574
[5ded739]575 ApplicationExpr * get_callExpr() const { return callExpr; }
576 void set_callExpr( ApplicationExpr * newValue ) { callExpr = newValue; }
[db4ecc5]577
578 std::list< ObjectDecl * > & get_tempDecls() { return tempDecls; }
579 std::list< ObjectDecl * > & get_returnDecls() { return returnDecls; }
580 std::list< Expression * > & get_dtors() { return dtors; }
581
[5ded739]582 virtual ImplicitCopyCtorExpr * clone() const { return new ImplicitCopyCtorExpr( * this ); }
583 virtual void accept( Visitor & v ) { v.visit( this ); }
584 virtual Expression * acceptMutator( Mutator & m ) { return m.mutate( this ); }
585 virtual void print( std::ostream & os, int indent = 0 ) const;
[db4ecc5]586};
587
[b6fe7e6]588/// ConstructorExpr represents the use of a constructor in an expression context, e.g. int * x = malloc() { 5 };
589class ConstructorExpr : public Expression {
590public:
[65cdc1e]591 Expression * callExpr;
592
[b6fe7e6]593 ConstructorExpr( Expression * callExpr );
594 ConstructorExpr( const ConstructorExpr & other );
595 ~ConstructorExpr();
[0dd3a2f]596
[5ded739]597 Expression * get_callExpr() const { return callExpr; }
598 void set_callExpr( Expression * newValue ) { callExpr = newValue; }
[0dd3a2f]599
[5ded739]600 virtual ConstructorExpr * clone() const { return new ConstructorExpr( * this ); }
601 virtual void accept( Visitor & v ) { v.visit( this ); }
602 virtual Expression * acceptMutator( Mutator & m ) { return m.mutate( this ); }
603 virtual void print( std::ostream & os, int indent = 0 ) const;
[51b73452]604};
605
[630a82a]606/// CompoundLiteralExpr represents a C99 'compound literal'
607class CompoundLiteralExpr : public Expression {
608 public:
[65cdc1e]609 Initializer * initializer;
610
[630a82a]611 CompoundLiteralExpr( Type * type, Initializer * initializer );
[5ded739]612 CompoundLiteralExpr( const CompoundLiteralExpr & other );
[3b58d91]613 virtual ~CompoundLiteralExpr();
[630a82a]614
615 Initializer * get_initializer() const { return initializer; }
616 void set_initializer( Initializer * i ) { initializer = i; }
617
[5ded739]618 virtual CompoundLiteralExpr * clone() const { return new CompoundLiteralExpr( * this ); }
619 virtual void accept( Visitor & v ) { v.visit( this ); }
620 virtual Expression * acceptMutator( Mutator & m ) { return m.mutate( this ); }
621 virtual void print( std::ostream & os, int indent = 0 ) const;
[630a82a]622};
623
[b6fe7e6]624/// RangeExpr represents a range e.g. '3 ... 5' or '1~10'
[8688ce1]625class RangeExpr : public Expression {
626 public:
[65cdc1e]627 Expression * low, * high;
628
[5ded739]629 RangeExpr( Expression * low, Expression * high );
630 RangeExpr( const RangeExpr & other );
[8688ce1]631
[d9e2280]632 Expression * get_low() const { return low; }
633 Expression * get_high() const { return high; }
[5ded739]634 RangeExpr * set_low( Expression * low ) { RangeExpr::low = low; return this; }
635 RangeExpr * set_high( Expression * high ) { RangeExpr::high = high; return this; }
[8688ce1]636
[5ded739]637 virtual RangeExpr * clone() const { return new RangeExpr( * this ); }
638 virtual void accept( Visitor & v ) { v.visit( this ); }
639 virtual Expression * acceptMutator( Mutator & m ) { return m.mutate( this ); }
640 virtual void print( std::ostream & os, int indent = 0 ) const;
[8688ce1]641};
642
[907eccb]643/// UntypedTupleExpr represents a tuple expression ( [a, b, c] ) before resolution
644class UntypedTupleExpr : public Expression {
645 public:
[65cdc1e]646 std::list<Expression*> exprs;
647
[907eccb]648 UntypedTupleExpr( const std::list< Expression * > & exprs, Expression *_aname = nullptr );
[5ded739]649 UntypedTupleExpr( const UntypedTupleExpr & other );
[907eccb]650 virtual ~UntypedTupleExpr();
651
652 std::list<Expression*>& get_exprs() { return exprs; }
653
[5ded739]654 virtual UntypedTupleExpr * clone() const { return new UntypedTupleExpr( * this ); }
655 virtual void accept( Visitor & v ) { v.visit( this ); }
656 virtual Expression * acceptMutator( Mutator & m ) { return m.mutate( this ); }
657 virtual void print( std::ostream & os, int indent = 0 ) const;
[907eccb]658};
659
[6eb8948]660/// TupleExpr represents a tuple expression ( [a, b, c] )
661class TupleExpr : public Expression {
662 public:
[65cdc1e]663 std::list<Expression*> exprs;
664
[907eccb]665 TupleExpr( const std::list< Expression * > & exprs, Expression *_aname = nullptr );
[5ded739]666 TupleExpr( const TupleExpr & other );
[6eb8948]667 virtual ~TupleExpr();
668
669 std::list<Expression*>& get_exprs() { return exprs; }
670
[5ded739]671 virtual TupleExpr * clone() const { return new TupleExpr( * this ); }
672 virtual void accept( Visitor & v ) { v.visit( this ); }
673 virtual Expression * acceptMutator( Mutator & m ) { return m.mutate( this ); }
674 virtual void print( std::ostream & os, int indent = 0 ) const;
[6eb8948]675};
676
[3b58d91]677/// TupleIndexExpr represents an element selection operation on a tuple value, e.g. t.3 after processing by the expression analyzer
678class TupleIndexExpr : public Expression {
679 public:
[65cdc1e]680 Expression * tuple;
681 unsigned int index;
682
[3b58d91]683 TupleIndexExpr( Expression * tuple, unsigned int index );
[5ded739]684 TupleIndexExpr( const TupleIndexExpr & other );
[3b58d91]685 virtual ~TupleIndexExpr();
686
687 Expression * get_tuple() const { return tuple; }
688 int get_index() const { return index; }
[5ded739]689 TupleIndexExpr * set_tuple( Expression * newValue ) { tuple = newValue; return this; }
[3b58d91]690 TupleIndexExpr * set_index( unsigned int newValue ) { index = newValue; return this; }
691
[5ded739]692 virtual TupleIndexExpr * clone() const { return new TupleIndexExpr( * this ); }
693 virtual void accept( Visitor & v ) { v.visit( this ); }
694 virtual Expression * acceptMutator( Mutator & m ) { return m.mutate( this ); }
695 virtual void print( std::ostream & os, int indent = 0 ) const;
[3b58d91]696};
697
[65660bd]698/// TupleAssignExpr represents a multiple assignment operation, where both sides of the assignment have tuple type, e.g. [a, b, c] = [d, e, f];, a mass assignment operation, where the left hand side has tuple type and the right hand side does not, e.g. [a, b, c] = 5.0;, or a tuple ctor/dtor expression
[6eb8948]699class TupleAssignExpr : public Expression {
[3b58d91]700 public:
[65cdc1e]701 StmtExpr * stmtExpr = nullptr;
702
[6eb8948]703 TupleAssignExpr( const std::list< Expression * > & assigns, const std::list< ObjectDecl * > & tempDecls, Expression * _aname = nullptr );
[5ded739]704 TupleAssignExpr( const TupleAssignExpr & other );
[6eb8948]705 virtual ~TupleAssignExpr();
[3b58d91]706
[d5556a3]707 TupleAssignExpr * set_stmtExpr( StmtExpr * newValue ) { stmtExpr = newValue; return this; }
708 StmtExpr * get_stmtExpr() const { return stmtExpr; }
[3b58d91]709
[5ded739]710 virtual TupleAssignExpr * clone() const { return new TupleAssignExpr( * this ); }
711 virtual void accept( Visitor & v ) { v.visit( this ); }
712 virtual Expression * acceptMutator( Mutator & m ) { return m.mutate( this ); }
713 virtual void print( std::ostream & os, int indent = 0 ) const;
[3b58d91]714};
715
[6eb8948]716/// StmtExpr represents a GCC 'statement expression', e.g. ({ int x = 5; x; })
717class StmtExpr : public Expression {
718public:
[65cdc1e]719 CompoundStmt * statements;
720 std::list< ObjectDecl * > returnDecls; // return variable(s) for stmt expression
721 std::list< Expression * > dtors; // destructor(s) for return variable(s)
722
[5ded739]723 StmtExpr( CompoundStmt * statements );
[6eb8948]724 StmtExpr( const StmtExpr & other );
725 virtual ~StmtExpr();
[3b58d91]726
[6eb8948]727 CompoundStmt * get_statements() const { return statements; }
728 StmtExpr * set_statements( CompoundStmt * newValue ) { statements = newValue; return this; }
[3b58d91]729
[d5556a3]730 std::list< ObjectDecl * > & get_returnDecls() { return returnDecls; }
731 std::list< Expression * > & get_dtors() { return dtors; }
732
[5ded739]733 virtual StmtExpr * clone() const { return new StmtExpr( * this ); }
734 virtual void accept( Visitor & v ) { v.visit( this ); }
735 virtual Expression * acceptMutator( Mutator & m ) { return m.mutate( this ); }
736 virtual void print( std::ostream & os, int indent = 0 ) const;
[3b58d91]737};
738
[3c13c03]739class UniqueExpr : public Expression {
740public:
[65cdc1e]741 Expression * expr;
742 ObjectDecl * object;
743 VariableExpr * var;
744
[bf32bb8]745 UniqueExpr( Expression * expr, long long idVal = -1 );
[3c13c03]746 UniqueExpr( const UniqueExpr & other );
747 ~UniqueExpr();
748
[141b786]749 Expression * get_expr() const { return expr; }
750 UniqueExpr * set_expr( Expression * newValue ) { expr = newValue; return this; }
[3c13c03]751
[141b786]752 ObjectDecl * get_object() const { return object; }
753 UniqueExpr * set_object( ObjectDecl * newValue ) { object = newValue; return this; }
754
755 VariableExpr * get_var() const { return var; }
756 UniqueExpr * set_var( VariableExpr * newValue ) { var = newValue; return this; }
[77971f6]757
[bf32bb8]758 int get_id() const { return id; }
759
[5ded739]760 virtual UniqueExpr * clone() const { return new UniqueExpr( * this ); }
761 virtual void accept( Visitor & v ) { v.visit( this ); }
762 virtual Expression * acceptMutator( Mutator & m ) { return m.mutate( this ); }
763 virtual void print( std::ostream & os, int indent = 0 ) const;
[65cdc1e]764
[3c13c03]765private:
[bf32bb8]766 int id;
767 static long long count;
[3c13c03]768};
769
[e4d829b]770struct InitAlternative {
771public:
772 Type * type = nullptr;
773 Designation * designation = nullptr;
774 InitAlternative( Type * type, Designation * designation );
775 InitAlternative( const InitAlternative & other );
776 InitAlternative & operator=( const Initializer & other ) = delete; // at the moment this isn't used, and I don't want to implement it
777 ~InitAlternative();
778};
779
780class UntypedInitExpr : public Expression {
781public:
[65cdc1e]782 Expression * expr;
783 std::list<InitAlternative> initAlts;
784
[e4d829b]785 UntypedInitExpr( Expression * expr, const std::list<InitAlternative> & initAlts );
786 UntypedInitExpr( const UntypedInitExpr & other );
787 ~UntypedInitExpr();
788
789 Expression * get_expr() const { return expr; }
790 UntypedInitExpr * set_expr( Expression * newValue ) { expr = newValue; return this; }
791
792 std::list<InitAlternative> & get_initAlts() { return initAlts; }
793
794 virtual UntypedInitExpr * clone() const { return new UntypedInitExpr( * this ); }
795 virtual void accept( Visitor & v ) { v.visit( this ); }
796 virtual Expression * acceptMutator( Mutator & m ) { return m.mutate( this ); }
797 virtual void print( std::ostream & os, int indent = 0 ) const;
798};
799
800class InitExpr : public Expression {
801public:
[65cdc1e]802 Expression * expr;
803 Designation * designation;
804
[62423350]805 InitExpr( Expression * expr, Designation * designation );
[e4d829b]806 InitExpr( const InitExpr & other );
807 ~InitExpr();
808
809 Expression * get_expr() const { return expr; }
810 InitExpr * set_expr( Expression * newValue ) { expr = newValue; return this; }
811
812 Designation * get_designation() const { return designation; }
813 InitExpr * set_designation( Designation * newValue ) { designation = newValue; return this; }
814
815 virtual InitExpr * clone() const { return new InitExpr( * this ); }
816 virtual void accept( Visitor & v ) { v.visit( this ); }
817 virtual Expression * acceptMutator( Mutator & m ) { return m.mutate( this ); }
818 virtual void print( std::ostream & os, int indent = 0 ) const;
819};
820
821
[3906301]822std::ostream & operator<<( std::ostream & out, const Expression * expr );
[baf7fee]823
[0dd3a2f]824// Local Variables: //
825// tab-width: 4 //
826// mode: c++ //
827// compile-command: "make install" //
828// End: //
Note: See TracBrowser for help on using the repository browser.