source: src/Parser/ParseNode.h@ c0714bf

ADT aaron-thesis arm-eh ast-experimental cleanup-dtors deferred_resn demangler enum forall-pointer-decay jacob/cs343-translation jenkins-sandbox new-ast new-ast-unique-expr new-env no_list persistent-indexer pthread-emulation qualifiedEnum resolv-new with_gc
Last change on this file since c0714bf was 513e165, checked in by Peter A. Buhr <pabuhr@…>, 8 years ago

generalize types for encoded strings, and fold simple ExpressionNode build routines into parser

  • Property mode set to 100644
File size: 19.6 KB
RevLine 
[b87a5ed]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//
[974906e2]7// ParseNode.h --
[b87a5ed]8//
9// Author : Rodolfo G. Esteves
10// Created On : Sat May 16 13:28:16 2015
[76c62b2]11// Last Modified By : Peter A. Buhr
[513e165]12// Last Modified On : Wed Sep 13 12:35:10 2017
13// Update Count : 807
[b87a5ed]14//
15
[6b0b624]16#pragma once
[51b73452]17
[d180746]18#include <algorithm> // for move
19#include <cassert> // for assert, assertf
20#include <iosfwd> // for ostream
21#include <iterator> // for back_insert_iterator
22#include <list> // for list
23#include <memory> // for unique_ptr, pointer_traits
24#include <string> // for string
[51b73452]25
[21f0aa8]26#include "Common/CodeLocation.h" // for CodeLocation
[d180746]27#include "Common/SemanticError.h" // for SemanticError
[be9288a]28#include "Common/UniqueName.h" // for UniqueName
[21f0aa8]29#include "Common/utility.h" // for maybeClone, maybeBuild
[d180746]30#include "Parser/LinkageSpec.h" // for Spec
31#include "SynTree/Expression.h" // for Expression, ConstantExpr (ptr only)
32#include "SynTree/Label.h" // for Label
33#include "SynTree/Statement.h" // for Statement, BranchStmt, BranchStmt:...
34#include "SynTree/Type.h" // for Type, Type::FuncSpecifiers, Type::...
35
36class Attribute;
37class Declaration;
[51b73452]38class DeclarationNode;
[d180746]39class DeclarationWithType;
[d1625f8]40class ExpressionNode;
[d180746]41class Initializer;
42class StatementNode;
[51b73452]43
[7880579]44//##############################################################################
45
[a7c90d4]46extern char * yyfilename;
[294647b]47extern int yylineno;
48
[51b73452]49class ParseNode {
[bdd516a]50 public:
[99cad3aa]51 ParseNode() {};
[2298f728]52 virtual ~ParseNode() { delete next; delete name; };
[b6424d9]53 virtual ParseNode * clone() const = 0;
[51b73452]54
[b6424d9]55 ParseNode * get_next() const { return next; }
56 ParseNode * set_next( ParseNode * newlink ) { next = newlink; return this; }
[1b772749]57
[b6424d9]58 ParseNode * get_last() {
59 ParseNode * current;
[2298f728]60 for ( current = this; current->get_next() != nullptr; current = current->get_next() );
[99cad3aa]61 return current;
62 }
[b6424d9]63 ParseNode * set_last( ParseNode * newlast ) {
[2298f728]64 if ( newlast != nullptr ) get_last()->set_next( newlast );
[99cad3aa]65 return this;
66 }
[51b73452]67
[b3c36f4]68 virtual void print( __attribute__((unused)) std::ostream &os, __attribute__((unused)) int indent = 0 ) const {}
69 virtual void printList( __attribute__((unused)) std::ostream &os, __attribute__((unused)) int indent = 0 ) const {}
[1b772749]70
[b87a5ed]71 static int indent_by;
[7880579]72
[b6424d9]73 ParseNode * next = nullptr;
[2298f728]74 std::string * name = nullptr;
[294647b]75 CodeLocation location = { yyfilename, yylineno };
[7880579]76}; // ParseNode
[51b73452]77
[7bf7fb9]78//##############################################################################
79
[d1625f8]80class InitializerNode : public ParseNode {
81 public:
[2298f728]82 InitializerNode( ExpressionNode *, bool aggrp = false, ExpressionNode * des = nullptr );
83 InitializerNode( InitializerNode *, bool aggrp = false, ExpressionNode * des = nullptr );
[d1625f8]84 ~InitializerNode();
[a7741435]85 virtual InitializerNode * clone() const { assert( false ); return nullptr; }
[d1625f8]86
[b6424d9]87 ExpressionNode * get_expression() const { return expr; }
[d1625f8]88
[b6424d9]89 InitializerNode * set_designators( ExpressionNode * des ) { designator = des; return this; }
90 ExpressionNode * get_designators() const { return designator; }
[d1625f8]91
[b6424d9]92 InitializerNode * set_maybeConstructed( bool value ) { maybeConstructed = value; return this; }
[d1625f8]93 bool get_maybeConstructed() const { return maybeConstructed; }
94
[b6424d9]95 InitializerNode * next_init() const { return kids; }
[d1625f8]96
97 void print( std::ostream &os, int indent = 0 ) const;
98 void printOneLine( std::ostream & ) const;
99
[b6424d9]100 virtual Initializer * build() const;
[d1625f8]101 private:
[b6424d9]102 ExpressionNode * expr;
[d1625f8]103 bool aggregate;
[b6424d9]104 ExpressionNode * designator; // may be list
105 InitializerNode * kids;
[d1625f8]106 bool maybeConstructed;
[c1c1112]107}; // InitializerNode
[d1625f8]108
109//##############################################################################
110
[ac71a86]111class ExpressionNode final : public ParseNode {
[bdd516a]112 public:
[d1625f8]113 ExpressionNode( Expression * expr = nullptr ) : expr( expr ) {}
114 virtual ~ExpressionNode() {}
[6eb4398]115 virtual ExpressionNode * clone() const override { return expr ? static_cast<ExpressionNode*>((new ExpressionNode( expr->clone() ))->set_next( maybeClone( get_next() ) )) : nullptr; }
[51b73452]116
[e04ef3a]117 bool get_extension() const { return extension; }
[b6424d9]118 ExpressionNode * set_extension( bool exten ) { extension = exten; return this; }
[51b73452]119
[b3c36f4]120 virtual void print( __attribute__((unused)) std::ostream &os, __attribute__((unused)) int indent = 0 ) const override {}
121 void printOneLine( __attribute__((unused)) std::ostream &os, __attribute__((unused)) int indent = 0 ) const {}
[ac71a86]122
123 template<typename T>
[513e165]124 bool isExpressionType() const { return nullptr != dynamic_cast<T>(expr.get()); }
[51b73452]125
[a7c90d4]126 Expression * build() const { return const_cast<ExpressionNode *>(this)->expr.release(); }
[bdd516a]127 private:
[e04ef3a]128 bool extension = false;
[ac71a86]129 std::unique_ptr<Expression> expr;
[c1c1112]130}; // ExpressionNode
[e04ef3a]131
132template< typename T >
[7880579]133struct maybeBuild_t< Expression, T > {
[b6424d9]134 static inline Expression * doit( const T * orig ) {
[e04ef3a]135 if ( orig ) {
[b6424d9]136 Expression * p = orig->build();
[e04ef3a]137 p->set_extension( orig->get_extension() );
[64ac636]138 p->location = orig->location;
[e04ef3a]139 return p;
140 } else {
[7880579]141 return nullptr;
[e04ef3a]142 } // if
143 }
[51b73452]144};
145
[e5f2a67]146// Must harmonize with OperName.
[d9e2280]147enum class OperKinds {
148 // diadic
[e5f2a67]149 SizeOf, AlignOf, OffsetOf, Plus, Minus, Exp, Mul, Div, Mod, Or, And,
[d9e2280]150 BitOr, BitAnd, Xor, Cast, LShift, RShift, LThan, GThan, LEThan, GEThan, Eq, Neq,
[e5f2a67]151 Assign, AtAssn, ExpAssn, MulAssn, DivAssn, ModAssn, PlusAssn, MinusAssn, LSAssn, RSAssn, AndAssn, ERAssn, OrAssn,
[d9e2280]152 Index, Range,
153 // monadic
[5809461]154 UnPlus, UnMinus, AddressOf, PointTo, Neg, BitNeg, Incr, IncrPost, Decr, DecrPost,
[d9e2280]155 Ctor, Dtor,
[c1c1112]156}; // OperKinds
[51b73452]157
[e82aa9df]158struct LabelNode {
159 std::list< Label > labels;
160};
161
[76c62b2]162Expression * build_constantInteger( std::string &str );
163Expression * build_constantFloat( std::string &str );
164Expression * build_constantChar( std::string &str );
[e612146c]165Expression * build_constantStr( std::string &str );
[930f69e]166Expression * build_field_name_FLOATING_FRACTIONconstant( const std::string & str );
167Expression * build_field_name_FLOATING_DECIMALconstant( const std::string & str );
[8780e30]168Expression * build_field_name_FLOATINGconstant( const std::string & str );
169Expression * build_field_name_fraction_constants( Expression * fieldName, ExpressionNode * fracts );
[b6424d9]170
[d7dc824]171NameExpr * build_varref( const std::string * name );
[b6424d9]172
173Expression * build_cast( DeclarationNode * decl_node, ExpressionNode * expr_node );
[a5f0529]174Expression * build_virtual_cast( DeclarationNode * decl_node, ExpressionNode * expr_node );
[fd782b2]175Expression * build_fieldSel( ExpressionNode * expr_node, Expression * member );
176Expression * build_pfieldSel( ExpressionNode * expr_node, Expression * member );
[b6424d9]177Expression * build_addressOf( ExpressionNode * expr_node );
178Expression * build_sizeOfexpr( ExpressionNode * expr_node );
179Expression * build_sizeOftype( DeclarationNode * decl_node );
180Expression * build_alignOfexpr( ExpressionNode * expr_node );
181Expression * build_alignOftype( DeclarationNode * decl_node );
182Expression * build_offsetOf( DeclarationNode * decl_node, NameExpr * member );
183Expression * build_and( ExpressionNode * expr_node1, ExpressionNode * expr_node2 );
184Expression * build_and_or( ExpressionNode * expr_node1, ExpressionNode * expr_node2, bool kind );
185Expression * build_unary_val( OperKinds op, ExpressionNode * expr_node );
186Expression * build_unary_ptr( OperKinds op, ExpressionNode * expr_node );
187Expression * build_binary_val( OperKinds op, ExpressionNode * expr_node1, ExpressionNode * expr_node2 );
188Expression * build_binary_ptr( OperKinds op, ExpressionNode * expr_node1, ExpressionNode * expr_node2 );
189Expression * build_cond( ExpressionNode * expr_node1, ExpressionNode * expr_node2, ExpressionNode * expr_node3 );
190Expression * build_attrexpr( NameExpr * var, ExpressionNode * expr_node );
191Expression * build_attrtype( NameExpr * var, DeclarationNode * decl_node );
[2298f728]192Expression * build_tuple( ExpressionNode * expr_node = nullptr );
[b6424d9]193Expression * build_func( ExpressionNode * function, ExpressionNode * expr_node );
194Expression * build_range( ExpressionNode * low, ExpressionNode * high );
195Expression * build_compoundLiteral( DeclarationNode * decl_node, InitializerNode * kids );
[51b73452]196
[7bf7fb9]197//##############################################################################
198
[62e5546]199struct TypeData;
[51b73452]200
[bdd516a]201class DeclarationNode : public ParseNode {
202 public:
[5b639ee]203 enum BasicType { Void, Bool, Char, Int, Float, Double, LongDouble, NoBasicType };
204 enum ComplexType { Complex, Imaginary, NoComplexType };
205 enum Signedness { Signed, Unsigned, NoSignedness };
206 enum Length { Short, Long, LongLong, NoLength };
[409433da]207 enum Aggregate { Struct, Union, Trait, Coroutine, Monitor, Thread, NoAggregate };
[8f60f0b]208 enum TypeClass { Otype, Dtype, Ftype, Ttype, NoTypeClass };
[148f7290]209 enum BuiltinType { Valist, Zero, One, NoBuiltinType };
[b87a5ed]210
[dd020c0]211 static const char * basicTypeNames[];
212 static const char * complexTypeNames[];
213 static const char * signednessNames[];
214 static const char * lengthNames[];
215 static const char * aggregateNames[];
216 static const char * typeClassNames[];
217 static const char * builtinTypeNames[];
[b6424d9]218
[68fe077a]219 static DeclarationNode * newStorageClass( Type::StorageClasses );
[ddfd945]220 static DeclarationNode * newFuncSpecifier( Type::FuncSpecifiers );
[738e304]221 static DeclarationNode * newTypeQualifier( Type::Qualifiers );
[b6424d9]222 static DeclarationNode * newBasicType( BasicType );
[5b639ee]223 static DeclarationNode * newComplexType( ComplexType );
[dd020c0]224 static DeclarationNode * newSignedNess( Signedness );
225 static DeclarationNode * newLength( Length );
[b6424d9]226 static DeclarationNode * newBuiltinType( BuiltinType );
[dd020c0]227 static DeclarationNode * newForall( DeclarationNode * );
[2298f728]228 static DeclarationNode * newFromTypedef( std::string * );
[dd020c0]229 static DeclarationNode * newFunction( std::string * name, DeclarationNode * ret, DeclarationNode * param, StatementNode * body, bool newStyle = false );
[b6424d9]230 static DeclarationNode * newAggregate( Aggregate kind, const std::string * name, ExpressionNode * actuals, DeclarationNode * fields, bool body );
[ca1a547]231 static DeclarationNode * newEnum( std::string * name, DeclarationNode * constants, bool body );
[b6424d9]232 static DeclarationNode * newEnumConstant( std::string * name, ExpressionNode * constant );
[2298f728]233 static DeclarationNode * newName( std::string * );
[b6424d9]234 static DeclarationNode * newFromTypeGen( std::string *, ExpressionNode * params );
[2298f728]235 static DeclarationNode * newTypeParam( TypeClass, std::string * );
236 static DeclarationNode * newTrait( const std::string * name, DeclarationNode * params, DeclarationNode * asserts );
237 static DeclarationNode * newTraitUse( const std::string * name, ExpressionNode * params );
[b6424d9]238 static DeclarationNode * newTypeDecl( std::string * name, DeclarationNode * typeParams );
[ce8c12f]239 static DeclarationNode * newPointer( DeclarationNode * qualifiers, OperKinds kind );
[b6424d9]240 static DeclarationNode * newArray( ExpressionNode * size, DeclarationNode * qualifiers, bool isStatic );
241 static DeclarationNode * newVarArray( DeclarationNode * qualifiers );
242 static DeclarationNode * newBitfield( ExpressionNode * size );
243 static DeclarationNode * newTuple( DeclarationNode * members );
244 static DeclarationNode * newTypeof( ExpressionNode * expr );
[44a81853]245 static DeclarationNode * newAttr( std::string *, ExpressionNode * expr ); // @ attributes
246 static DeclarationNode * newAttr( std::string *, DeclarationNode * type ); // @ attributes
247 static DeclarationNode * newAttribute( std::string *, ExpressionNode * expr = nullptr ); // gcc attributes
[e994912]248 static DeclarationNode * newAsmStmt( StatementNode * stmt ); // gcc external asm statement
[b87a5ed]249
[7880579]250 DeclarationNode();
251 ~DeclarationNode();
[6a0d4d61]252 DeclarationNode * clone() const override;
[7880579]253
[2298f728]254 DeclarationNode * addQualifiers( DeclarationNode * );
[413ad05]255 void checkQualifiers( const TypeData *, const TypeData * );
[a7c90d4]256 void checkSpecifiers( DeclarationNode * );
257 DeclarationNode * copySpecifiers( DeclarationNode * );
[2298f728]258 DeclarationNode * addType( DeclarationNode * );
[b6424d9]259 DeclarationNode * addTypedef();
[2298f728]260 DeclarationNode * addAssertions( DeclarationNode * );
261 DeclarationNode * addName( std::string * );
[c0aa336]262 DeclarationNode * addAsmName( DeclarationNode * );
[b6424d9]263 DeclarationNode * addBitfield( ExpressionNode * size );
264 DeclarationNode * addVarArgs();
265 DeclarationNode * addFunctionBody( StatementNode * body );
266 DeclarationNode * addOldDeclList( DeclarationNode * list );
[c0aa336]267 DeclarationNode * setBase( TypeData * newType );
268 DeclarationNode * copyAttribute( DeclarationNode * attr );
[b6424d9]269 DeclarationNode * addPointer( DeclarationNode * qualifiers );
270 DeclarationNode * addArray( DeclarationNode * array );
271 DeclarationNode * addNewPointer( DeclarationNode * pointer );
272 DeclarationNode * addNewArray( DeclarationNode * array );
273 DeclarationNode * addParamList( DeclarationNode * list );
274 DeclarationNode * addIdList( DeclarationNode * list ); // old-style functions
275 DeclarationNode * addInitializer( InitializerNode * init );
[67cf18c]276 DeclarationNode * addTypeInitializer( DeclarationNode * init );
[b6424d9]277
278 DeclarationNode * cloneType( std::string * newName );
279 DeclarationNode * cloneBaseType( DeclarationNode * newdecl );
280
281 DeclarationNode * appendList( DeclarationNode * node ) {
[99cad3aa]282 return (DeclarationNode *)set_last( node );
283 }
[b87a5ed]284
[b3c36f4]285 virtual void print( __attribute__((unused)) std::ostream &os, __attribute__((unused)) int indent = 0 ) const override;
286 virtual void printList( __attribute__((unused)) std::ostream &os, __attribute__((unused)) int indent = 0 ) const override;
[b87a5ed]287
[b6424d9]288 Declaration * build() const;
[a7c90d4]289 Type * buildType() const;
[b87a5ed]290
291 bool get_hasEllipsis() const;
[8b7ee09]292 LinkageSpec::Spec get_linkage() const { return linkage; }
[b6424d9]293 DeclarationNode * extractAggregate() const;
[4f147cc]294 bool has_enumeratorValue() const { return (bool)enumeratorValue; }
[a7c90d4]295 ExpressionNode * consume_enumeratorValue() const { return const_cast<DeclarationNode *>(this)->enumeratorValue.release(); }
[b87a5ed]296
[7305915]297 bool get_extension() const { return extension; }
[b6424d9]298 DeclarationNode * set_extension( bool exten ) { extension = exten; return this; }
[c1c1112]299 public:
[28307be]300 struct Variable_t {
[faddbd8]301// const std::string * name;
[28307be]302 DeclarationNode::TypeClass tyClass;
303 DeclarationNode * assertions;
[67cf18c]304 DeclarationNode * initializer;
[28307be]305 };
306 Variable_t variable;
307
308 struct Attr_t {
[faddbd8]309// const std::string * name;
[28307be]310 ExpressionNode * expr;
311 DeclarationNode * type;
312 };
313 Attr_t attr;
314
[8f6f47d7]315 BuiltinType builtin;
316
[b6424d9]317 TypeData * type;
[dd020c0]318
[ddfd945]319 Type::FuncSpecifiers funcSpecs;
[68fe077a]320 Type::StorageClasses storageClasses;
[dd020c0]321
[b6424d9]322 ExpressionNode * bitfieldWidth;
[4f147cc]323 std::unique_ptr<ExpressionNode> enumeratorValue;
[b87a5ed]324 bool hasEllipsis;
[8b7ee09]325 LinkageSpec::Spec linkage;
[e612146c]326 Expression *asmName;
[44a81853]327 std::list< Attribute * > attributes;
[58dd019]328 InitializerNode * initializer;
[7305915]329 bool extension = false;
[13e3b50]330 std::string error;
[e994912]331 StatementNode * asmStmt;
[b87a5ed]332
333 static UniqueName anonymous;
[1db21619]334}; // DeclarationNode
[51b73452]335
[b6424d9]336Type * buildType( TypeData * type );
[d1625f8]337
[b6424d9]338static inline Type * maybeMoveBuildType( const DeclarationNode * orig ) {
[a7c90d4]339 Type * ret = orig ? orig->buildType() : nullptr;
[4f147cc]340 delete orig;
341 return ret;
342}
343
[7bf7fb9]344//##############################################################################
345
[ac71a86]346class StatementNode final : public ParseNode {
[bdd516a]347 public:
[e82aa9df]348 StatementNode() { stmt = nullptr; }
[b6424d9]349 StatementNode( Statement * stmt ) : stmt( stmt ) {}
350 StatementNode( DeclarationNode * decl );
[e82aa9df]351 virtual ~StatementNode() {}
[51b73452]352
[b6424d9]353 virtual StatementNode * clone() const final { assert( false ); return nullptr; }
[a7c90d4]354 Statement * build() const { return const_cast<StatementNode *>(this)->stmt.release(); }
[2f22cc4]355
[44a81853]356 virtual StatementNode * add_label( const std::string * name, DeclarationNode * attr = nullptr ) {
357 stmt->get_labels().emplace_back( * name, nullptr, attr ? std::move( attr->attributes ) : std::list< Attribute * > {} );
358 delete attr;
[ac71a86]359 delete name;
[2f22cc4]360 return this;
361 }
362
[b6424d9]363 virtual StatementNode * append_last_case( StatementNode * );
[1d4580a]364
[b3c36f4]365 virtual void print( __attribute__((unused)) std::ostream &os, __attribute__((unused)) int indent = 0 ) const override {}
366 virtual void printList( __attribute__((unused)) std::ostream &os, __attribute__((unused)) int indent = 0 ) const override {}
[2f22cc4]367 private:
[ac71a86]368 std::unique_ptr<Statement> stmt;
[2f22cc4]369}; // StatementNode
370
[b6424d9]371Statement * build_expr( ExpressionNode * ctl );
[1d4580a]372
[936e9f4]373struct IfCtl {
374 IfCtl( DeclarationNode * decl, ExpressionNode * condition ) :
375 init( decl ? new StatementNode( decl ) : nullptr ), condition( condition ) {}
376
377 StatementNode * init;
378 ExpressionNode * condition;
379};
380
[2f22cc4]381struct ForCtl {
[b6424d9]382 ForCtl( ExpressionNode * expr, ExpressionNode * condition, ExpressionNode * change ) :
[e82aa9df]383 init( new StatementNode( build_expr( expr ) ) ), condition( condition ), change( change ) {}
[b6424d9]384 ForCtl( DeclarationNode * decl, ExpressionNode * condition, ExpressionNode * change ) :
[e82aa9df]385 init( new StatementNode( decl ) ), condition( condition ), change( change ) {}
[2f22cc4]386
[b6424d9]387 StatementNode * init;
388 ExpressionNode * condition;
389 ExpressionNode * change;
[2f22cc4]390};
391
[936e9f4]392Statement * build_if( IfCtl * ctl, StatementNode * then_stmt, StatementNode * else_stmt );
[b6424d9]393Statement * build_switch( ExpressionNode * ctl, StatementNode * stmt );
394Statement * build_case( ExpressionNode * ctl );
395Statement * build_default();
396Statement * build_while( ExpressionNode * ctl, StatementNode * stmt, bool kind = false );
397Statement * build_for( ForCtl * forctl, StatementNode * stmt );
398Statement * build_branch( BranchStmt::Type kind );
399Statement * build_branch( std::string * identifier, BranchStmt::Type kind );
400Statement * build_computedgoto( ExpressionNode * ctl );
401Statement * build_return( ExpressionNode * ctl );
402Statement * build_throw( ExpressionNode * ctl );
[daf1af8]403Statement * build_resume( ExpressionNode * ctl );
404Statement * build_resume_at( ExpressionNode * ctl , ExpressionNode * target );
[b6424d9]405Statement * build_try( StatementNode * try_stmt, StatementNode * catch_stmt, StatementNode * finally_stmt );
[ca78437]406Statement * build_catch( CatchStmt::Kind kind, DeclarationNode *decl, ExpressionNode *cond, StatementNode *body );
[b6424d9]407Statement * build_finally( StatementNode * stmt );
408Statement * build_compound( StatementNode * first );
[e612146c]409Statement * build_asmstmt( bool voltile, Expression * instruction, ExpressionNode * output = nullptr, ExpressionNode * input = nullptr, ExpressionNode * clobber = nullptr, LabelNode * gotolabels = nullptr );
[135b431]410WaitForStmt * build_waitfor( ExpressionNode * target, StatementNode * stmt, ExpressionNode * when );
411WaitForStmt * build_waitfor( ExpressionNode * target, StatementNode * stmt, ExpressionNode * when, WaitForStmt * existing );
412WaitForStmt * build_waitfor_timeout( ExpressionNode * timeout, StatementNode * stmt, ExpressionNode * when );
413WaitForStmt * build_waitfor_timeout( ExpressionNode * timeout, StatementNode * stmt, ExpressionNode * when, StatementNode * else_stmt, ExpressionNode * else_when );
[7f5566b]414
[7bf7fb9]415//##############################################################################
416
[aefcc3b]417template< typename SynTreeType, typename NodeType, template< typename, typename...> class Container, typename... Args >
418void buildList( const NodeType * firstNode, Container< SynTreeType *, Args... > &outputList ) {
[b87a5ed]419 SemanticError errors;
[aefcc3b]420 std::back_insert_iterator< Container< SynTreeType *, Args... > > out( outputList );
[b6424d9]421 const NodeType * cur = firstNode;
[b87a5ed]422
423 while ( cur ) {
424 try {
[b6424d9]425 SynTreeType * result = dynamic_cast< SynTreeType * >( maybeBuild< typename std::pointer_traits< decltype(cur->build())>::element_type >( cur ) );
[b87a5ed]426 if ( result ) {
[294647b]427 result->location = cur->location;
[b6424d9]428 * out++ = result;
[046e04a]429 } else {
430 assertf(false, "buildList unknown type");
[b87a5ed]431 } // if
432 } catch( SemanticError &e ) {
[294647b]433 e.set_location( cur->location );
[b87a5ed]434 errors.append( e );
435 } // try
[7880579]436 cur = dynamic_cast< NodeType * >( cur->get_next() );
[b87a5ed]437 } // while
[a32b204]438 if ( ! errors.isEmpty() ) {
[b87a5ed]439 throw errors;
440 } // if
[51b73452]441}
442
443// in DeclarationNode.cc
[b6424d9]444void buildList( const DeclarationNode * firstNode, std::list< Declaration * > &outputList );
445void buildList( const DeclarationNode * firstNode, std::list< DeclarationWithType * > &outputList );
446void buildTypeList( const DeclarationNode * firstNode, std::list< Type * > &outputList );
[51b73452]447
[7ecbb7e]448template< typename SynTreeType, typename NodeType >
[b6424d9]449void buildMoveList( const NodeType * firstNode, std::list< SynTreeType * > &outputList ) {
[3a5131ed]450 buildList( firstNode, outputList );
[7ecbb7e]451 delete firstNode;
452}
453
[c8dfcd3]454// in ParseNode.cc
455std::ostream & operator<<( std::ostream & out, const ParseNode * node );
[7ecbb7e]456
[51b73452]457// Local Variables: //
[b87a5ed]458// tab-width: 4 //
459// mode: c++ //
460// compile-command: "make install" //
[51b73452]461// End: //
Note: See TracBrowser for help on using the repository browser.