source: src/SynTree/Expression.h @ cde3891

ADTarm-ehast-experimentalcleanup-dtorsenumforall-pointer-decayjacob/cs343-translationjenkins-sandboxnew-astnew-ast-unique-exprpthread-emulationqualifiedEnum
Last change on this file since cde3891 was cde3891, checked in by Thierry Delisle <tdelisle@…>, 5 years ago

Merge branch 'master' into cleanup-dtors

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