source: src/SynTree/Expression.h @ ea6332d

ADTaaron-thesisarm-ehast-experimentalcleanup-dtorsdeferred_resndemanglerenumforall-pointer-decayjacob/cs343-translationjenkins-sandboxnew-astnew-ast-unique-exprnew-envno_listpersistent-indexerpthread-emulationqualifiedEnumresolv-newwith_gc
Last change on this file since ea6332d was ea6332d, checked in by Thierry Delisle <tdelisle@…>, 7 years ago

Big header cleaning pass - commit 3

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