source: src/Parser/ParseNode.h@ 2d59d53

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 2d59d53 was 4cb935e, checked in by Thierry Delisle <tdelisle@…>, 9 years ago

0 and 1 now properly parse and resolve to zero_t and one_t respectively

  • Property mode set to 100644
File size: 17.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
[e04ef3a]11// Last Modified By : Peter A. Buhr
[faddbd8]12// Last Modified On : Mon Oct 3 18:03:08 2016
13// Update Count : 636
[b87a5ed]14//
15
[51b73452]16#ifndef PARSENODE_H
17#define PARSENODE_H
18
19#include <string>
20#include <list>
21#include <iterator>
[e04ef3a]22#include <memory>
[51b73452]23
[68cd1ce]24#include "Parser/LinkageSpec.h"
[59db689]25#include "SynTree/Type.h"
[e04ef3a]26#include "SynTree/Expression.h"
[2f22cc4]27#include "SynTree/Statement.h"
[0f8e4ac]28#include "SynTree/Label.h"
[7880579]29#include "Common/utility.h"
30#include "Common/UniqueName.h"
[51b73452]31
32class StatementNode;
33class CompoundStmtNode;
34class DeclarationNode;
[d1625f8]35class ExpressionNode;
[51b73452]36class InitializerNode;
37
[7880579]38//##############################################################################
39
[51b73452]40class ParseNode {
[bdd516a]41 public:
[99cad3aa]42 ParseNode() {};
[2298f728]43 virtual ~ParseNode() { delete next; delete name; };
[b6424d9]44 virtual ParseNode * clone() const = 0;
[51b73452]45
[b6424d9]46 ParseNode * get_next() const { return next; }
47 ParseNode * set_next( ParseNode * newlink ) { next = newlink; return this; }
[1b772749]48
[b6424d9]49 ParseNode * get_last() {
50 ParseNode * current;
[2298f728]51 for ( current = this; current->get_next() != nullptr; current = current->get_next() );
[99cad3aa]52 return current;
53 }
[b6424d9]54 ParseNode * set_last( ParseNode * newlast ) {
[2298f728]55 if ( newlast != nullptr ) get_last()->set_next( newlast );
[99cad3aa]56 return this;
57 }
[51b73452]58
[7880579]59 virtual void print( std::ostream &os, int indent = 0 ) const {}
[0da3e2c]60 virtual void printList( std::ostream &os, int indent = 0 ) const {}
[1b772749]61
[b87a5ed]62 static int indent_by;
[7880579]63
[b6424d9]64 ParseNode * next = nullptr;
[2298f728]65 std::string * name = nullptr;
[7880579]66}; // ParseNode
[51b73452]67
[7bf7fb9]68//##############################################################################
69
[d1625f8]70class InitializerNode : public ParseNode {
71 public:
[2298f728]72 InitializerNode( ExpressionNode *, bool aggrp = false, ExpressionNode * des = nullptr );
73 InitializerNode( InitializerNode *, bool aggrp = false, ExpressionNode * des = nullptr );
[d1625f8]74 ~InitializerNode();
[b6424d9]75 virtual InitializerNode * clone() const { assert( false ); return nullptr; }
[d1625f8]76
[b6424d9]77 ExpressionNode * get_expression() const { return expr; }
[d1625f8]78
[b6424d9]79 InitializerNode * set_designators( ExpressionNode * des ) { designator = des; return this; }
80 ExpressionNode * get_designators() const { return designator; }
[d1625f8]81
[b6424d9]82 InitializerNode * set_maybeConstructed( bool value ) { maybeConstructed = value; return this; }
[d1625f8]83 bool get_maybeConstructed() const { return maybeConstructed; }
84
[b6424d9]85 InitializerNode * next_init() const { return kids; }
[d1625f8]86
87 void print( std::ostream &os, int indent = 0 ) const;
88 void printOneLine( std::ostream & ) const;
89
[b6424d9]90 virtual Initializer * build() const;
[d1625f8]91 private:
[b6424d9]92 ExpressionNode * expr;
[d1625f8]93 bool aggregate;
[b6424d9]94 ExpressionNode * designator; // may be list
95 InitializerNode * kids;
[d1625f8]96 bool maybeConstructed;
[c1c1112]97}; // InitializerNode
[d1625f8]98
99//##############################################################################
100
[ac71a86]101class ExpressionNode final : public ParseNode {
[bdd516a]102 public:
[d1625f8]103 ExpressionNode( Expression * expr = nullptr ) : expr( expr ) {}
[b87a5ed]104 ExpressionNode( const ExpressionNode &other );
[d1625f8]105 virtual ~ExpressionNode() {}
[b6424d9]106 virtual ExpressionNode * clone() const { return expr ? new ExpressionNode( expr->clone() ) : nullptr; }
[51b73452]107
[e04ef3a]108 bool get_extension() const { return extension; }
[b6424d9]109 ExpressionNode * set_extension( bool exten ) { extension = exten; return this; }
[51b73452]110
[62e5546]111 virtual void print( std::ostream &os, int indent = 0 ) const override {}
[ac71a86]112 void printOneLine( std::ostream &os, int indent = 0 ) const {}
113
114 template<typename T>
115 bool isExpressionType() const {
116 return nullptr != dynamic_cast<T>(expr.get());
117 }
[51b73452]118
[b6424d9]119 Expression * build() const { return const_cast<ExpressionNode*>(this)->expr.release(); }
[bdd516a]120 private:
[e04ef3a]121 bool extension = false;
[ac71a86]122 std::unique_ptr<Expression> expr;
[c1c1112]123}; // ExpressionNode
[e04ef3a]124
125template< typename T >
[7880579]126struct maybeBuild_t< Expression, T > {
[b6424d9]127 static inline Expression * doit( const T * orig ) {
[e04ef3a]128 if ( orig ) {
[b6424d9]129 Expression * p = orig->build();
[e04ef3a]130 p->set_extension( orig->get_extension() );
131 return p;
132 } else {
[7880579]133 return nullptr;
[e04ef3a]134 } // if
135 }
[51b73452]136};
137
[d9e2280]138enum class OperKinds {
139 // diadic
[7bf7fb9]140 SizeOf, AlignOf, OffsetOf, Plus, Minus, Mul, Div, Mod, Or, And,
[d9e2280]141 BitOr, BitAnd, Xor, Cast, LShift, RShift, LThan, GThan, LEThan, GEThan, Eq, Neq,
[a839867]142 Assign, AtAssn, MulAssn, DivAssn, ModAssn, PlusAssn, MinusAssn, LSAssn, RSAssn, AndAssn, ERAssn, OrAssn,
[d9e2280]143 Index, Range,
144 // monadic
145 UnPlus, UnMinus, AddressOf, PointTo, Neg, BitNeg, Incr, IncrPost, Decr, DecrPost, LabelAddress,
146 Ctor, Dtor,
[c1c1112]147}; // OperKinds
[51b73452]148
[e82aa9df]149struct LabelNode {
150 std::list< Label > labels;
151};
152
[b6424d9]153Expression * build_constantInteger( const std::string &str );
154Expression * build_constantFloat( const std::string &str );
155Expression * build_constantChar( const std::string &str );
[4cb935e]156Expression * build_constantZeroOne( const std::string &str );
[b6424d9]157ConstantExpr * build_constantStr( const std::string &str );
[8780e30]158Expression * build_field_name_FLOATINGconstant( const std::string & str );
159Expression * build_field_name_fraction_constants( Expression * fieldName, ExpressionNode * fracts );
160Expression * build_field_name_REALFRACTIONconstant( const std::string & str );
161Expression * build_field_name_REALDECIMALconstant( const std::string & str );
[b6424d9]162
163NameExpr * build_varref( const std::string * name, bool labelp = false );
164Expression * build_typevalue( DeclarationNode * decl );
165
166Expression * build_cast( DeclarationNode * decl_node, ExpressionNode * expr_node );
[fd782b2]167Expression * build_fieldSel( ExpressionNode * expr_node, Expression * member );
168Expression * build_pfieldSel( ExpressionNode * expr_node, Expression * member );
[b6424d9]169Expression * build_addressOf( ExpressionNode * expr_node );
170Expression * build_sizeOfexpr( ExpressionNode * expr_node );
171Expression * build_sizeOftype( DeclarationNode * decl_node );
172Expression * build_alignOfexpr( ExpressionNode * expr_node );
173Expression * build_alignOftype( DeclarationNode * decl_node );
174Expression * build_offsetOf( DeclarationNode * decl_node, NameExpr * member );
175Expression * build_and( ExpressionNode * expr_node1, ExpressionNode * expr_node2 );
176Expression * build_and_or( ExpressionNode * expr_node1, ExpressionNode * expr_node2, bool kind );
177Expression * build_unary_val( OperKinds op, ExpressionNode * expr_node );
178Expression * build_unary_ptr( OperKinds op, ExpressionNode * expr_node );
179Expression * build_binary_val( OperKinds op, ExpressionNode * expr_node1, ExpressionNode * expr_node2 );
180Expression * build_binary_ptr( OperKinds op, ExpressionNode * expr_node1, ExpressionNode * expr_node2 );
181Expression * build_cond( ExpressionNode * expr_node1, ExpressionNode * expr_node2, ExpressionNode * expr_node3 );
182Expression * build_comma( ExpressionNode * expr_node1, ExpressionNode * expr_node2 );
183Expression * build_attrexpr( NameExpr * var, ExpressionNode * expr_node );
184Expression * build_attrtype( NameExpr * var, DeclarationNode * decl_node );
[2298f728]185Expression * build_tuple( ExpressionNode * expr_node = nullptr );
[b6424d9]186Expression * build_func( ExpressionNode * function, ExpressionNode * expr_node );
187Expression * build_range( ExpressionNode * low, ExpressionNode * high );
188Expression * build_asmexpr( ExpressionNode * inout, ConstantExpr * constraint, ExpressionNode * operand );
189Expression * build_valexpr( StatementNode * s );
190Expression * build_compoundLiteral( DeclarationNode * decl_node, InitializerNode * kids );
[51b73452]191
[7bf7fb9]192//##############################################################################
193
[62e5546]194struct TypeData;
[51b73452]195
[bdd516a]196class DeclarationNode : public ParseNode {
197 public:
[5b639ee]198 // These must remain in the same order as the corresponding DeclarationNode names.
[68cd1ce]199 enum StorageClass { Extern, Static, Auto, Register, Inline, Fortran, Noreturn, Threadlocal, NoStorageClass, };
[5b639ee]200 enum Qualifier { Const, Restrict, Volatile, Lvalue, Atomic, NoQualifier };
201 enum BasicType { Void, Bool, Char, Int, Float, Double, LongDouble, NoBasicType };
202 enum ComplexType { Complex, Imaginary, NoComplexType };
203 enum Signedness { Signed, Unsigned, NoSignedness };
204 enum Length { Short, Long, LongLong, NoLength };
[faddbd8]205 enum Aggregate { Struct, Union, Trait, NoAggregate };
206 enum TypeClass { Otype, Dtype, Ftype, NoTypeClass };
[148f7290]207 enum BuiltinType { Valist, Zero, One, NoBuiltinType };
[b87a5ed]208
[b6424d9]209 static const char * storageName[];
[5b639ee]210 static const char * qualifierName[];
[b6424d9]211 static const char * basicTypeName[];
[5b639ee]212 static const char * complexTypeName[];
213 static const char * signednessName[];
214 static const char * lengthName[];
[b6424d9]215 static const char * aggregateName[];
216 static const char * typeClassName[];
217 static const char * builtinTypeName[];
218
219 static DeclarationNode * newFunction( std::string * name, DeclarationNode * ret, DeclarationNode * param, StatementNode * body, bool newStyle = false );
220 static DeclarationNode * newQualifier( Qualifier );
[2298f728]221 static DeclarationNode * newForall( DeclarationNode * );
[b6424d9]222 static DeclarationNode * newStorageClass( StorageClass );
223 static DeclarationNode * newBasicType( BasicType );
[5b639ee]224 static DeclarationNode * newComplexType( ComplexType );
225 static DeclarationNode * newSignedNess( Signedness sn );
226 static DeclarationNode * newLength( Length lnth );
[b6424d9]227 static DeclarationNode * newBuiltinType( BuiltinType );
[2298f728]228 static DeclarationNode * newFromTypedef( std::string * );
[b6424d9]229 static DeclarationNode * newAggregate( Aggregate kind, const std::string * name, ExpressionNode * actuals, DeclarationNode * fields, bool body );
230 static DeclarationNode * newEnum( std::string * name, DeclarationNode * constants );
231 static DeclarationNode * newEnumConstant( std::string * name, ExpressionNode * constant );
[2298f728]232 static DeclarationNode * newName( std::string * );
[b6424d9]233 static DeclarationNode * newFromTypeGen( std::string *, ExpressionNode * params );
[2298f728]234 static DeclarationNode * newTypeParam( TypeClass, std::string * );
235 static DeclarationNode * newTrait( const std::string * name, DeclarationNode * params, DeclarationNode * asserts );
236 static DeclarationNode * newTraitUse( const std::string * name, ExpressionNode * params );
[b6424d9]237 static DeclarationNode * newTypeDecl( std::string * name, DeclarationNode * typeParams );
238 static DeclarationNode * newPointer( DeclarationNode * qualifiers );
239 static DeclarationNode * newArray( ExpressionNode * size, DeclarationNode * qualifiers, bool isStatic );
240 static DeclarationNode * newVarArray( DeclarationNode * qualifiers );
241 static DeclarationNode * newBitfield( ExpressionNode * size );
242 static DeclarationNode * newTuple( DeclarationNode * members );
243 static DeclarationNode * newTypeof( ExpressionNode * expr );
244 static DeclarationNode * newAttr( std::string *, ExpressionNode * expr );
245 static DeclarationNode * newAttr( std::string *, DeclarationNode * type );
[b87a5ed]246
[7880579]247 DeclarationNode();
248 ~DeclarationNode();
[b6424d9]249 DeclarationNode * clone() const;
[7880579]250
[2298f728]251 DeclarationNode * addQualifiers( DeclarationNode * );
[413ad05]252 void checkQualifiers( const TypeData *, const TypeData * );
[2298f728]253 void checkStorageClasses( DeclarationNode * );
254 DeclarationNode * copyStorageClasses( DeclarationNode * );
255 DeclarationNode * addType( DeclarationNode * );
[b6424d9]256 DeclarationNode * addTypedef();
[2298f728]257 DeclarationNode * addAssertions( DeclarationNode * );
258 DeclarationNode * addName( std::string * );
[b6424d9]259 DeclarationNode * addBitfield( ExpressionNode * size );
260 DeclarationNode * addVarArgs();
261 DeclarationNode * addFunctionBody( StatementNode * body );
262 DeclarationNode * addOldDeclList( DeclarationNode * list );
263 DeclarationNode * addPointer( DeclarationNode * qualifiers );
264 DeclarationNode * addArray( DeclarationNode * array );
265 DeclarationNode * addNewPointer( DeclarationNode * pointer );
266 DeclarationNode * addNewArray( DeclarationNode * array );
267 DeclarationNode * addParamList( DeclarationNode * list );
268 DeclarationNode * addIdList( DeclarationNode * list ); // old-style functions
269 DeclarationNode * addInitializer( InitializerNode * init );
270
271 DeclarationNode * cloneType( std::string * newName );
272 DeclarationNode * cloneBaseType( DeclarationNode * newdecl );
273
274 DeclarationNode * appendList( DeclarationNode * node ) {
[99cad3aa]275 return (DeclarationNode *)set_last( node );
276 }
[b87a5ed]277
[62e5546]278 virtual void print( std::ostream &os, int indent = 0 ) const override;
279 virtual void printList( std::ostream &os, int indent = 0 ) const override;
[b87a5ed]280
[b6424d9]281 Declaration * build() const;
282 ::Type * buildType() const;
[b87a5ed]283
284 bool get_hasEllipsis() const;
[8b7ee09]285 LinkageSpec::Spec get_linkage() const { return linkage; }
[b6424d9]286 DeclarationNode * extractAggregate() const;
[4f147cc]287 bool has_enumeratorValue() const { return (bool)enumeratorValue; }
[b6424d9]288 ExpressionNode * consume_enumeratorValue() const { return const_cast<DeclarationNode*>(this)->enumeratorValue.release(); }
[b87a5ed]289
[7305915]290 bool get_extension() const { return extension; }
[b6424d9]291 DeclarationNode * set_extension( bool exten ) { extension = exten; return this; }
[c1c1112]292 public:
[28307be]293 struct Variable_t {
[faddbd8]294// const std::string * name;
[28307be]295 DeclarationNode::TypeClass tyClass;
296 DeclarationNode * assertions;
297 };
298 Variable_t variable;
299
300 struct Attr_t {
[faddbd8]301// const std::string * name;
[28307be]302 ExpressionNode * expr;
303 DeclarationNode * type;
304 };
305 Attr_t attr;
306
[8f6f47d7]307 BuiltinType builtin;
308
[b6424d9]309 TypeData * type;
[13e3b50]310 StorageClass storageClass;
311 bool isInline, isNoreturn;
[1db21619]312 std::list< std::string > attributes;
[b6424d9]313 ExpressionNode * bitfieldWidth;
[4f147cc]314 std::unique_ptr<ExpressionNode> enumeratorValue;
[b6424d9]315 InitializerNode * initializer;
[b87a5ed]316 bool hasEllipsis;
[8b7ee09]317 LinkageSpec::Spec linkage;
[7305915]318 bool extension = false;
[13e3b50]319 std::string error;
[b87a5ed]320
321 static UniqueName anonymous;
[1db21619]322}; // DeclarationNode
[51b73452]323
[b6424d9]324Type * buildType( TypeData * type );
[d1625f8]325
[b6424d9]326static inline Type * maybeMoveBuildType( const DeclarationNode * orig ) {
[4f147cc]327 Type* ret = orig ? orig->buildType() : nullptr;
328 delete orig;
329 return ret;
330}
331
[7bf7fb9]332//##############################################################################
333
[ac71a86]334class StatementNode final : public ParseNode {
[bdd516a]335 public:
[e82aa9df]336 StatementNode() { stmt = nullptr; }
[b6424d9]337 StatementNode( Statement * stmt ) : stmt( stmt ) {}
338 StatementNode( DeclarationNode * decl );
[e82aa9df]339 virtual ~StatementNode() {}
[51b73452]340
[b6424d9]341 virtual StatementNode * clone() const final { assert( false ); return nullptr; }
342 Statement * build() const { return const_cast<StatementNode*>(this)->stmt.release(); }
[2f22cc4]343
[b6424d9]344 virtual StatementNode * add_label( const std::string * name ) {
345 stmt->get_labels().emplace_back( * name );
[ac71a86]346 delete name;
[2f22cc4]347 return this;
348 }
349
[b6424d9]350 virtual StatementNode * append_last_case( StatementNode * );
[1d4580a]351
[62e5546]352 virtual void print( std::ostream &os, int indent = 0 ) const override {}
353 virtual void printList( std::ostream &os, int indent = 0 ) const override {}
[2f22cc4]354 private:
[ac71a86]355 std::unique_ptr<Statement> stmt;
[2f22cc4]356}; // StatementNode
357
[b6424d9]358Statement * build_expr( ExpressionNode * ctl );
[1d4580a]359
[2f22cc4]360struct ForCtl {
[b6424d9]361 ForCtl( ExpressionNode * expr, ExpressionNode * condition, ExpressionNode * change ) :
[e82aa9df]362 init( new StatementNode( build_expr( expr ) ) ), condition( condition ), change( change ) {}
[b6424d9]363 ForCtl( DeclarationNode * decl, ExpressionNode * condition, ExpressionNode * change ) :
[e82aa9df]364 init( new StatementNode( decl ) ), condition( condition ), change( change ) {}
[2f22cc4]365
[b6424d9]366 StatementNode * init;
367 ExpressionNode * condition;
368 ExpressionNode * change;
[2f22cc4]369};
370
[b6424d9]371Statement * build_if( ExpressionNode * ctl, StatementNode * then_stmt, StatementNode * else_stmt );
372Statement * build_switch( ExpressionNode * ctl, StatementNode * stmt );
373Statement * build_case( ExpressionNode * ctl );
374Statement * build_default();
375Statement * build_while( ExpressionNode * ctl, StatementNode * stmt, bool kind = false );
376Statement * build_for( ForCtl * forctl, StatementNode * stmt );
377Statement * build_branch( BranchStmt::Type kind );
378Statement * build_branch( std::string * identifier, BranchStmt::Type kind );
379Statement * build_computedgoto( ExpressionNode * ctl );
380Statement * build_return( ExpressionNode * ctl );
381Statement * build_throw( ExpressionNode * ctl );
382Statement * build_try( StatementNode * try_stmt, StatementNode * catch_stmt, StatementNode * finally_stmt );
383Statement * build_catch( DeclarationNode * decl, StatementNode * stmt, bool catchAny = false );
384Statement * build_finally( StatementNode * stmt );
385Statement * build_compound( StatementNode * first );
[2298f728]386Statement * build_asmstmt( bool voltile, ConstantExpr * instruction, ExpressionNode * output = nullptr, ExpressionNode * input = nullptr, ExpressionNode * clobber = nullptr, LabelNode * gotolabels = nullptr );
[7f5566b]387
[7bf7fb9]388//##############################################################################
389
[aefcc3b]390template< typename SynTreeType, typename NodeType, template< typename, typename...> class Container, typename... Args >
391void buildList( const NodeType * firstNode, Container< SynTreeType *, Args... > &outputList ) {
[b87a5ed]392 SemanticError errors;
[aefcc3b]393 std::back_insert_iterator< Container< SynTreeType *, Args... > > out( outputList );
[b6424d9]394 const NodeType * cur = firstNode;
[b87a5ed]395
396 while ( cur ) {
397 try {
[b6424d9]398// SynTreeType * result = dynamic_cast< SynTreeType * >( maybeBuild< typename std::result_of< decltype(&NodeType::build)(NodeType)>::type >( cur ) );
399 SynTreeType * result = dynamic_cast< SynTreeType * >( maybeBuild< typename std::pointer_traits< decltype(cur->build())>::element_type >( cur ) );
[b87a5ed]400 if ( result ) {
[b6424d9]401 * out++ = result;
[b87a5ed]402 } // if
403 } catch( SemanticError &e ) {
404 errors.append( e );
405 } // try
[7880579]406 cur = dynamic_cast< NodeType * >( cur->get_next() );
[b87a5ed]407 } // while
[a32b204]408 if ( ! errors.isEmpty() ) {
[b87a5ed]409 throw errors;
410 } // if
[51b73452]411}
412
413// in DeclarationNode.cc
[b6424d9]414void buildList( const DeclarationNode * firstNode, std::list< Declaration * > &outputList );
415void buildList( const DeclarationNode * firstNode, std::list< DeclarationWithType * > &outputList );
416void buildTypeList( const DeclarationNode * firstNode, std::list< Type * > &outputList );
[51b73452]417
[7ecbb7e]418template< typename SynTreeType, typename NodeType >
[b6424d9]419void buildMoveList( const NodeType * firstNode, std::list< SynTreeType * > &outputList ) {
[7ecbb7e]420 buildList(firstNode, outputList);
421 delete firstNode;
422}
423
[c8dfcd3]424// in ParseNode.cc
425std::ostream & operator<<( std::ostream & out, const ParseNode * node );
[7ecbb7e]426
[bdd516a]427#endif // PARSENODE_H
[51b73452]428
429// Local Variables: //
[b87a5ed]430// tab-width: 4 //
431// mode: c++ //
432// compile-command: "make install" //
[51b73452]433// End: //
Note: See TracBrowser for help on using the repository browser.