source: src/AST/Expr.hpp@ 54e41b3

ADT arm-eh ast-experimental cleanup-dtors enum forall-pointer-decay jacob/cs343-translation jenkins-sandbox new-ast new-ast-unique-expr pthread-emulation qualifiedEnum
Last change on this file since 54e41b3 was 54e41b3, checked in by Aaron Moss <a3moss@…>, 7 years ago

Add first half of ast::Expr subclasses

  • Property mode set to 100644
File size: 23.4 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// Expr.hpp --
8//
9// Author : Aaron B. Moss
10// Created On : Fri May 10 10:30:00 2019
11// Last Modified By : Aaron B. Moss
12// Created On : Fri May 10 10:30:00 2019
13// Update Count : 1
14//
15
16#pragma once
17
18#include <cassert>
19#include <map>
20#include <string>
21#include <utility> // for move
22#include <vector>
23
24#include "Fwd.hpp" // for UniqueId
25#include "Label.hpp"
26#include "ParseNode.hpp"
27#include "Visitor.hpp"
28
29namespace ast {
30
31/// Contains the ID of a declaration and a type that is derived from that declaration,
32/// but subject to decay-to-pointer and type parameter renaming
33struct ParamEntry {
34 UniqueId decl;
35 ptr<Type> actualType;
36 ptr<Type> formalType;
37 ptr<Expr> expr;
38
39 ParamEntry() : decl( 0 ), actualType( nullptr ), formalType( nullptr ), expr( nullptr ) {}
40 ParamEntry( UniqueId id, Type* actual, Type* formal, Expr* e )
41 : decl( id ), actualType( actual ), formalType( formal ), expr( e ) {}
42};
43
44/// Pre-resolution list of parameters to infer
45using ResnSlots = std::vector<UniqueId>;
46/// Post-resolution map of inferred parameters
47using InferredParams = std::map< UniqueId, ParamEntry >;
48
49/// Base node for expressions
50class Expr : public ParseNode {
51public:
52 /// Saves space (~16 bytes) by combining ResnSlots and InferredParams
53 struct InferUnion {
54 enum { Empty, Slots, Params } mode;
55 union data_t {
56 char def;
57 ResnSlots resnSlots;
58 InferredParams inferParams;
59
60 data_t() : def('\0') {}
61 ~data_t() {}
62 } data;
63
64 /// initializes from other InferUnion
65 void init_from( const InferUnion& o ) {
66 switch ( o.mode ) {
67 case Empty: return;
68 case Slots: new(&data.resnSlots) ResnSlots{ o.data.resnSlots }; return;
69 case Params: new(&data.inferParams) InferredParams{ o.data.inferParams }; return;
70 }
71 }
72
73 /// initializes from other InferUnion (move semantics)
74 void init_from( InferUnion&& o ) {
75 switch ( o.mode ) {
76 case Empty: return;
77 case Slots: new(&data.resnSlots) ResnSlots{ std::move(o.data.resnSlots) }; return;
78 case Params:
79 new(&data.inferParams) InferredParams{ std::move(o.data.inferParams) }; return;
80 }
81 }
82
83 /// clears variant fields
84 void reset() {
85 switch( mode ) {
86 case Empty: return;
87 case Slots: data.resnSlots.~ResnSlots(); return;
88 case Params: data.inferParams.~InferredParams(); return;
89 }
90 }
91
92 InferUnion() : mode(Empty), data() {}
93 InferUnion( const InferUnion& o ) : mode( o.mode ), data() { init_from( o ); }
94 InferUnion( InferUnion&& o ) : mode( o.mode ), data() { init_from( std::move(o) ); }
95 InferUnion& operator= ( const InferUnion& ) = delete;
96 InferUnion& operator= ( InferUnion&& ) = delete;
97 ~InferUnion() { reset(); }
98
99 ResnSlots& resnSlots() {
100 switch (mode) {
101 case Empty: new(&data.resnSlots) ResnSlots{}; mode = Slots; // fallthrough
102 case Slots: return data.resnSlots;
103 case Params: assert(!"Cannot return to resnSlots from Params");
104 }
105 }
106
107 InferredParams& inferParams() {
108 switch (mode) {
109 case Slots: data.resnSlots.~ResnSlots(); // fallthrough
110 case Empty: new(&data.inferParams) InferredParams{}; mode = Params; // fallthrough
111 case Params: return data.inferParams;
112 }
113 }
114 };
115
116 ptr<Type> result;
117 ptr<TypeSubstitution> env;
118 InferUnion inferred;
119 bool extension = false;
120
121 Expr( const CodeLocation & loc, const Type * res = nullptr )
122 : ParseNode( loc ), result( res ), env(), inferred() {}
123
124 Expr * set_extension( bool ex ) { extension = ex; return this; }
125
126 virtual const Expr * accept( Visitor & v ) const override = 0;
127private:
128 Expr * clone() const override = 0;
129};
130
131/// The application of a function to a set of parameters.
132/// Post-resolver form of `UntypedExpr`
133class ApplicationExpr final : public Expr {
134public:
135 ptr<Expr> func;
136 std::vector<ptr<Expr>> args;
137
138 ApplicationExpr( const CodeLocation & loc, const Expr * f, std::vector<ptr<Expr>> && as = {} );
139
140 const Expr * accept( Visitor & v ) const override { return v.visit( this ); }
141private:
142 ApplicationExpr * clone() const override { return new ApplicationExpr{ *this }; }
143};
144
145/// The application of a function to a set of parameters, pre-overload resolution.
146class UntypedExpr final : public Expr {
147public:
148 ptr<Expr> func;
149 std::vector<ptr<Expr>> args;
150
151 UntypedExpr( const CodeLocation & loc, const Expr * f, std::vector<ptr<Expr>> && as = {} )
152 : Expr( loc ), func( f ), args( std::move(as) ) {}
153
154 /// Creates a new dereference expression
155 static UntypedExpr * createDeref( const CodeLocation & loc, Expr * arg );
156 /// Creates a new assignment expression
157 static UntypedExpr * createAssign( const CodeLocation & loc, Expr * lhs, Expr * rhs );
158
159 const Expr * accept( Visitor & v ) const override { return v.visit( this ); }
160private:
161 UntypedExpr * clone() const override { return new UntypedExpr{ *this }; }
162};
163
164/// A name whose name is as-yet undetermined.
165/// May also be used to avoid name mangling in codegen phase.
166class NameExpr final : public Expr {
167public:
168 std::string name;
169
170 NameExpr( const CodeLocation & loc, const std::string & n ) : Expr( loc ), name( n ) {}
171
172 const Expr * accept( Visitor & v ) const override { return v.visit( this ); }
173private:
174 NameExpr * clone() const override { return new NameExpr{ *this }; }
175};
176
177/// Address-of expression `&e`
178class AddressExpr final : public Expr {
179public:
180 ptr<Expr> arg;
181
182 AddressExpr( const CodeLocation & loc, const Expr * a );
183
184 const Expr * accept( Visitor & v ) const override { return v.visit( this ); }
185private:
186 AddressExpr * clone() const override { return new AddressExpr{ *this }; }
187};
188
189/// GCC &&label
190/// https://gcc.gnu.org/onlinedocs/gcc-3.4.2/gcc/Labels-as-Values.html
191class LabelAddressExpr final : public Expr {
192public:
193 Label arg;
194
195 LabelAddressExpr( const CodeLocation & loc, Label && a );
196
197 const Expr * accept( Visitor & v ) const override { return v.visit( this ); }
198private:
199 LabelAddressExpr * clone() const override { return new LabelAddressExpr{ *this }; }
200};
201
202/// Whether a cast existed in the program source or not
203enum GeneratedFlag { ExplicitCast, GeneratedCast };
204
205/// A type cast, e.g. `(int)e`
206class CastExpr final : public Expr {
207public:
208 ptr<Expr> arg;
209 GeneratedFlag isGenerated;
210
211 CastExpr( const CodeLocation & loc, const Expr * a, const Type * to,
212 GeneratedFlag g = GeneratedCast ) : Expr( loc, to ), arg( a ), isGenerated( g ) {}
213 /// Cast-to-void
214 CastExpr( const CodeLocation & loc, const Expr * a, GeneratedFlag g = GeneratedCast );
215
216 const Expr * accept( Visitor & v ) const override { return v.visit( this ); }
217private:
218 CastExpr * clone() const override { return new CastExpr{ *this }; }
219};
220
221/// A cast to "keyword types", e.g. `(thread &)t`
222class KeywordCastExpr final : public Expr {
223public:
224 ptr<Expr> arg;
225 enum Target { Coroutine, Thread, Monitor, NUMBER_OF_TARGETS } target;
226
227 KeywordCastExpr( const CodeLocation & loc, const Expr * a, Target t )
228 : Expr( loc ), arg( a ), target( t ) {}
229
230 /// Get a name for the target type
231 const std::string& targetString() const;
232
233 const Expr * accept( Visitor & v ) const override { return v.visit( this ); }
234private:
235 KeywordCastExpr * clone() const override { return new KeywordCastExpr{ *this }; }
236};
237
238/// A virtual dynamic cast, e.g. `(virtual exception)e`
239class VirtualCastExpr final : public Expr {
240public:
241 ptr<Expr> arg;
242
243 VirtualCastExpr( const CodeLocation & loc, const Expr * a, const Type * to )
244 : Expr( loc, to ), arg( a ) {}
245
246 const Expr * accept( Visitor & v ) const override { return v.visit( this ); }
247private:
248 VirtualCastExpr * clone() const override { return new VirtualCastExpr{ *this }; }
249};
250
251/// A member selection operation before expression resolution, e.g. `q.p`
252class UntypedMemberExpr final : public Expr {
253public:
254 ptr<Expr> member;
255 ptr<Expr> aggregate;
256
257 UntypedMemberExpr( const CodeLocation & loc, const Expr * mem, const Expr * agg )
258 : Expr( loc ), member( mem ), aggregate( agg ) { assert( aggregate ); }
259
260 const Expr * accept( Visitor & v ) const override { return v.visit( this ); }
261private:
262 UntypedMemberExpr * clone() const override { return new UntypedMemberExpr{ *this }; }
263};
264
265/// A member selection operation after expression resolution, e.g. `q.p`
266class MemberExpr final : public Expr {
267public:
268 readonly<DeclWithType> member;
269 ptr<Expr> aggregate;
270
271 MemberExpr( const CodeLocation & loc, const DeclWithType * mem, const Expr * agg );
272
273 const Expr * accept( Visitor & v ) const override { return v.visit( this ); }
274private:
275 MemberExpr * clone() const override { return new MemberExpr{ *this }; }
276};
277
278/// A reference to a named variable.
279class VariableExpr final : public Expr {
280public:
281 readonly<DeclWithType> var;
282
283 VariableExpr( const CodeLocation & loc, const DeclWithType * v );
284
285 /// generates a function pointer for a given function
286 static VariableExpr * functionPointer( const CodeLocation & loc, const FunctionDecl * decl );
287
288 const Expr * accept( Visitor & v ) const override { return v.visit( this ); }
289private:
290 VariableExpr * clone() const override { return new VariableExpr{ *this }; }
291};
292
293/// A compile-time constant
294class ConstantExpr final : public Expr {
295 union Val {
296 unsigned long long ival;
297 double dval;
298
299 Val( unsigned long long i ) : ival( i ) {}
300 Val( double d ) : dval( d ) {}
301 } val;
302public:
303 std::string rep;
304
305 ConstantExpr(
306 const CodeLocation & loc, const Type * ty, const std::string & r, unsigned long long v )
307 : Expr( loc, ty ), val( v ), rep( r ) {}
308 ConstantExpr( const CodeLocation & loc, const Type * ty, const std::string & r, double v )
309 : Expr( loc, ty ), val( v ), rep( r ) {}
310
311 /// Gets the value of this constant as an integer
312 long long int intValue() const;
313 /// Gets the value of this constant as floating point
314 double floatValue() const;
315
316 /// generates a boolean constant of the given bool
317 static ConstantExpr * from_bool( const CodeLocation & loc, bool b );
318 /// generates a char constant of the given char
319 static ConstantExpr * from_char( const CodeLocation & loc, char c );
320 /// generates an integer constant of the given int
321 static ConstantExpr * from_int( const CodeLocation & loc, int i );
322 /// generates an integer constant of the given unsigned long int
323 static ConstantExpr * from_ulong( const CodeLocation & loc, unsigned long i );
324 /// generates a floating point constant of the given double
325 static ConstantExpr * from_double( const CodeLocation & loc, double d );
326 /// generates an array of chars constant of the given string
327 static ConstantExpr * from_string( const CodeLocation & loc, const std::string & s );
328 /// generates a null pointer value for the given type. void * if omitted.
329 static ConstantExpr * null( const CodeLocation & loc, const Type * ptrType = nullptr );
330
331 const Expr * accept( Visitor & v ) const override { return v.visit( this ); }
332private:
333 ConstantExpr * clone() const override { return new ConstantExpr{ *this }; }
334};
335
336/// sizeof expression, e.g. `sizeof(int)`, `sizeof 3+4`
337class SizeofExpr final : public Expr {
338public:
339 ptr<Expr> expr;
340 ptr<Type> type;
341
342 SizeofExpr( const CodeLocation & loc, const Expr * e );
343 SizeofExpr( const CodeLocation & loc, const Type * t );
344 // deliberately no disambiguating overload for nullptr_t
345
346 const Expr * accept( Visitor & v ) const override { return v.visit( this ); }
347private:
348 SizeofExpr * clone() const override { return new SizeofExpr{ *this }; }
349};
350
351/// alignof expression, e.g. `alignof(int)`, `alignof 3+4`
352class AlignofExpr final : public Expr {
353public:
354 ptr<Expr> expr;
355 ptr<Type> type;
356
357 AlignofExpr( const CodeLocation & loc, const Expr * e );
358 AlignofExpr( const CodeLocation & loc, const Type * t );
359 // deliberately no disambiguating overload for nullptr_t
360
361 const Expr * accept( Visitor & v ) const override { return v.visit( this ); }
362private:
363 AlignofExpr * clone() const override { return new AlignofExpr{ *this }; }
364};
365
366/// offsetof expression before resolver determines field, e.g. `offsetof(MyStruct, myfield)`
367class UntypedOffsetofExpr final : public Expr {
368public:
369 ptr<Type> type;
370 std::string member;
371
372 UntypedOffsetofExpr( const CodeLocation & loc, const Type * ty, const std::string & mem )
373 : Expr( loc ), type( ty ), member( mem ) {}
374
375 const Expr * accept( Visitor & v ) const override { return v.visit( this ); }
376private:
377 UntypedOffsetofExpr * clone() const override { return new UntypedOffsetofExpr{ *this }; }
378};
379
380/// offsetof expression after resolver determines field, e.g. `offsetof(MyStruct, myfield)`
381class OffsetofExpr final : public Expr {
382public:
383 ptr<Type> type;
384 readonly<DeclWithType> member;
385
386 OffsetofExpr( const CodeLocation & loc, const Type * ty, const DeclWithType * mem );
387
388 const Expr * accept( Visitor & v ) const override { return v.visit( this ); }
389private:
390 OffsetofExpr * clone() const override { return new OffsetofExpr{ *this }; }
391};
392
393/// a pack of field-offsets for a generic type
394class OffsetPackExpr final : public Expr {
395public:
396 ptr<StructInstType> type;
397
398 OffsetPackExpr( const CodeLocation & loc, const StructInstType * ty );
399
400 const Expr * accept( Visitor & v ) const override { return v.visit( this ); }
401private:
402 OffsetPackExpr * clone() const override { return new OffsetPackExpr{ *this }; }
403};
404
405/// Variants of short-circuiting logical expression
406enum LogicalFlag { OrExpr, AndExpr };
407
408/// Short-circuiting boolean expression (`&&` or `||`)
409class LogicalExpr final : public Expr {
410public:
411 ptr<Expr> arg1;
412 ptr<Expr> arg2;
413 LogicalFlag isAnd;
414
415 LogicalExpr( const CodeLocation & loc, const Expr * a1, const Expr * a2, LogicalFlag ia );
416
417 const Expr * accept( Visitor & v ) const override { return v.visit( this ); }
418private:
419 LogicalExpr * clone() const override { return new LogicalExpr{ *this }; }
420};
421
422/// Three-argument conditional e.g. `p ? a : b`
423class ConditionalExpr final : public Expr {
424public:
425 ptr<Expr> arg1;
426 ptr<Expr> arg2;
427 ptr<Expr> arg3;
428
429 ConditionalExpr( const CodeLocation & loc, const Expr * a1, const Expr * a2, const Expr * a3 )
430 : Expr( loc ), arg1( a1 ), arg2( a2 ), arg3( a3 ) {}
431
432 const Expr * accept( Visitor & v ) const override { return v.visit( this ); }
433private:
434 ConditionalExpr * clone() const override { return new ConditionalExpr{ *this }; }
435};
436
437/// Comma expression e.g. `( a , b )`
438class CommaExpr final : public Expr {
439public:
440 ptr<Expr> arg1;
441 ptr<Expr> arg2;
442
443 CommaExpr( const CodeLocation & loc, const Expr * a1, const Expr * a2 )
444 : Expr( loc ), arg1( a1 ), arg2( a2 ) {}
445
446 const Expr * accept( Visitor & v ) const override { return v.visit( this ); }
447private:
448 CommaExpr * clone() const override { return new CommaExpr{ *this }; }
449};
450
451/// A type used as an expression (e.g. a type generator parameter)
452class TypeExpr final : public Expr {
453public:
454 ptr<Type> type;
455
456 TypeExpr( const CodeLocation & loc, const Type * t ) : Expr(loc), type(t) {}
457
458 const Expr * accept( Visitor & v ) const override { return v.visit( this ); }
459private:
460 TypeExpr * clone() const override { return new TypeExpr{ *this }; }
461};
462
463/// A GCC "asm constraint operand" used in an asm statement, e.g. `[output] "=f" (result)`.
464/// https://gcc.gnu.org/onlinedocs/gcc-4.7.1/gcc/Machine-Constraints.html#Machine-Constraints
465class AsmExpr final : public Expr {
466public:
467 ptr<Expr> inout;
468 ptr<Expr> constraint;
469};
470
471//=================================================================================================
472/// This disgusting and giant piece of boiler-plate is here to solve a cyclic dependency
473/// remove only if there is a better solution
474/// The problem is that ast::ptr< ... > uses increment/decrement which won't work well with
475/// forward declarations
476inline void increment( const class Expr * node, Node::ref_type ref ) { node->increment(ref); }
477inline void decrement( const class Expr * node, Node::ref_type ref ) { node->decrement(ref); }
478inline void increment( const class ApplicationExpr * node, Node::ref_type ref ) { node->increment(ref); }
479inline void decrement( const class ApplicationExpr * node, Node::ref_type ref ) { node->decrement(ref); }
480inline void increment( const class UntypedExpr * node, Node::ref_type ref ) { node->increment(ref); }
481inline void decrement( const class UntypedExpr * node, Node::ref_type ref ) { node->decrement(ref); }
482inline void increment( const class NameExpr * node, Node::ref_type ref ) { node->increment(ref); }
483inline void decrement( const class NameExpr * node, Node::ref_type ref ) { node->decrement(ref); }
484inline void increment( const class AddressExpr * node, Node::ref_type ref ) { node->increment(ref); }
485inline void decrement( const class AddressExpr * node, Node::ref_type ref ) { node->decrement(ref); }
486inline void increment( const class LabelAddressExpr * node, Node::ref_type ref ) { node->increment(ref); }
487inline void decrement( const class LabelAddressExpr * node, Node::ref_type ref ) { node->decrement(ref); }
488inline void increment( const class CastExpr * node, Node::ref_type ref ) { node->increment(ref); }
489inline void decrement( const class CastExpr * node, Node::ref_type ref ) { node->decrement(ref); }
490inline void increment( const class KeywordCastExpr * node, Node::ref_type ref ) { node->increment(ref); }
491inline void decrement( const class KeywordCastExpr * node, Node::ref_type ref ) { node->decrement(ref); }
492inline void increment( const class VirtualCastExpr * node, Node::ref_type ref ) { node->increment(ref); }
493inline void decrement( const class VirtualCastExpr * node, Node::ref_type ref ) { node->decrement(ref); }
494inline void increment( const class MemberExpr * node, Node::ref_type ref ) { node->increment(ref); }
495inline void decrement( const class MemberExpr * node, Node::ref_type ref ) { node->decrement(ref); }
496inline void increment( const class UntypedMemberExpr * node, Node::ref_type ref ) { node->increment(ref); }
497inline void decrement( const class UntypedMemberExpr * node, Node::ref_type ref ) { node->decrement(ref); }
498inline void increment( const class VariableExpr * node, Node::ref_type ref ) { node->increment(ref); }
499inline void decrement( const class VariableExpr * node, Node::ref_type ref ) { node->decrement(ref); }
500inline void increment( const class ConstantExpr * node, Node::ref_type ref ) { node->increment(ref); }
501inline void decrement( const class ConstantExpr * node, Node::ref_type ref ) { node->decrement(ref); }
502inline void increment( const class SizeofExpr * node, Node::ref_type ref ) { node->increment(ref); }
503inline void decrement( const class SizeofExpr * node, Node::ref_type ref ) { node->decrement(ref); }
504inline void increment( const class AlignofExpr * node, Node::ref_type ref ) { node->increment(ref); }
505inline void decrement( const class AlignofExpr * node, Node::ref_type ref ) { node->decrement(ref); }
506inline void increment( const class UntypedOffsetofExpr * node, Node::ref_type ref ) { node->increment(ref); }
507inline void decrement( const class UntypedOffsetofExpr * node, Node::ref_type ref ) { node->decrement(ref); }
508inline void increment( const class OffsetofExpr * node, Node::ref_type ref ) { node->increment(ref); }
509inline void decrement( const class OffsetofExpr * node, Node::ref_type ref ) { node->decrement(ref); }
510inline void increment( const class OffsetPackExpr * node, Node::ref_type ref ) { node->increment(ref); }
511inline void decrement( const class OffsetPackExpr * node, Node::ref_type ref ) { node->decrement(ref); }
512inline void increment( const class LogicalExpr * node, Node::ref_type ref ) { node->increment(ref); }
513inline void decrement( const class LogicalExpr * node, Node::ref_type ref ) { node->decrement(ref); }
514inline void increment( const class ConditionalExpr * node, Node::ref_type ref ) { node->increment(ref); }
515inline void decrement( const class ConditionalExpr * node, Node::ref_type ref ) { node->decrement(ref); }
516inline void increment( const class CommaExpr * node, Node::ref_type ref ) { node->increment(ref); }
517inline void decrement( const class CommaExpr * node, Node::ref_type ref ) { node->decrement(ref); }
518inline void increment( const class TypeExpr * node, Node::ref_type ref ) { node->increment(ref); }
519inline void decrement( const class TypeExpr * node, Node::ref_type ref ) { node->decrement(ref); }
520inline void increment( const class AsmExpr * node, Node::ref_type ref ) { node->increment(ref); }
521inline void decrement( const class AsmExpr * node, Node::ref_type ref ) { node->decrement(ref); }
522// inline void increment( const class ImplicitCopyCtorExpr * node, Node::ref_type ref ) { node->increment(ref); }
523// inline void decrement( const class ImplicitCopyCtorExpr * node, Node::ref_type ref ) { node->decrement(ref); }
524// inline void increment( const class ConstructorExpr * node, Node::ref_type ref ) { node->increment(ref); }
525// inline void decrement( const class ConstructorExpr * node, Node::ref_type ref ) { node->decrement(ref); }
526// inline void increment( const class CompoundLiteralExpr * node, Node::ref_type ref ) { node->increment(ref); }
527// inline void decrement( const class CompoundLiteralExpr * node, Node::ref_type ref ) { node->decrement(ref); }
528// inline void increment( const class UntypedValofExpr * node, Node::ref_type ref ) { node->increment(ref); }
529// inline void decrement( const class UntypedValofExpr * node, Node::ref_type ref ) { node->decrement(ref); }
530// inline void increment( const class RangeExpr * node, Node::ref_type ref ) { node->increment(ref); }
531// inline void decrement( const class RangeExpr * node, Node::ref_type ref ) { node->decrement(ref); }
532// inline void increment( const class UntypedTupleExpr * node, Node::ref_type ref ) { node->increment(ref); }
533// inline void decrement( const class UntypedTupleExpr * node, Node::ref_type ref ) { node->decrement(ref); }
534// inline void increment( const class TupleExpr * node, Node::ref_type ref ) { node->increment(ref); }
535// inline void decrement( const class TupleExpr * node, Node::ref_type ref ) { node->decrement(ref); }
536// inline void increment( const class TupleIndexExpr * node, Node::ref_type ref ) { node->increment(ref); }
537// inline void decrement( const class TupleIndexExpr * node, Node::ref_type ref ) { node->decrement(ref); }
538// inline void increment( const class TupleAssignExpr * node, Node::ref_type ref ) { node->increment(ref); }
539// inline void decrement( const class TupleAssignExpr * node, Node::ref_type ref ) { node->decrement(ref); }
540// inline void increment( const class StmtExpr * node, Node::ref_type ref ) { node->increment(ref); }
541// inline void decrement( const class StmtExpr * node, Node::ref_type ref ) { node->decrement(ref); }
542// inline void increment( const class UniqueExpr * node, Node::ref_type ref ) { node->increment(ref); }
543// inline void decrement( const class UniqueExpr * node, Node::ref_type ref ) { node->decrement(ref); }
544// inline void increment( const class UntypedInitExpr * node, Node::ref_type ref ) { node->increment(ref); }
545// inline void decrement( const class UntypedInitExpr * node, Node::ref_type ref ) { node->decrement(ref); }
546// inline void increment( const class InitExpr * node, Node::ref_type ref ) { node->increment(ref); }
547// inline void decrement( const class InitExpr * node, Node::ref_type ref ) { node->decrement(ref); }
548// inline void increment( const class DeletedExpr * node, Node::ref_type ref ) { node->increment(ref); }
549// inline void decrement( const class DeletedExpr * node, Node::ref_type ref ) { node->decrement(ref); }
550// inline void increment( const class DefaultArgExpr * node, Node::ref_type ref ) { node->increment(ref); }
551// inline void decrement( const class DefaultArgExpr * node, Node::ref_type ref ) { node->decrement(ref); }
552// inline void increment( const class GenericExpr * node, Node::ref_type ref ) { node->increment(ref); }
553// inline void decrement( const class GenericExpr * node, Node::ref_type ref ) { node->decrement(ref); }
554}
555
556// Local Variables: //
557// tab-width: 4 //
558// mode: c++ //
559// compile-command: "make install" //
560// End: //
Note: See TracBrowser for help on using the repository browser.