source: src/Parser/ParseNode.h @ 49d3128

ADTarm-ehast-experimentalenumforall-pointer-decayjacob/cs343-translationjenkins-sandboxnew-astnew-ast-unique-exprpthread-emulationqualifiedEnum
Last change on this file since 49d3128 was 033ff37, checked in by Peter A. Buhr <pabuhr@…>, 5 years ago

remove attribute expression '@'name mechanism

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