source: src/Parser/DeclarationNode.cc@ b10c621c

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 b10c621c was 201aeb9, checked in by Peter A. Buhr <pabuhr@…>, 8 years ago

first attempt at new basic-type int128, and length suffix with explicit size

  • Property mode set to 100644
File size: 35.3 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// DeclarationNode.cc --
[b87a5ed]8//
9// Author : Rodolfo G. Esteves
10// Created On : Sat May 16 12:34:05 2015
[201aeb9]11// Last Modified By : Peter A. Buhr
12// Last Modified On : Sat Sep 23 18:16:48 2017
13// Update Count : 1024
[b87a5ed]14//
15
[e3e16bc]16#include <cassert> // for assert, assertf, strict_dynamic_cast
[d180746]17#include <iterator> // for back_insert_iterator
18#include <list> // for list
19#include <memory> // for unique_ptr
20#include <ostream> // for operator<<, ostream, basic_ostream
21#include <string> // for string, operator+, allocator, char...
[51b73452]22
[d180746]23#include "Common/SemanticError.h" // for SemanticError
24#include "Common/UniqueName.h" // for UniqueName
25#include "Common/utility.h" // for maybeClone, maybeBuild, CodeLocation
26#include "Parser/LinkageSpec.h" // for Spec, linkageName, Cforall
27#include "Parser/ParseNode.h" // for DeclarationNode, ExpressionNode
28#include "SynTree/Attribute.h" // for Attribute
29#include "SynTree/Declaration.h" // for TypeDecl, ObjectDecl, Declaration
30#include "SynTree/Expression.h" // for Expression, ConstantExpr
31#include "SynTree/Statement.h" // for AsmStmt
32#include "SynTree/Type.h" // for Type, Type::StorageClasses, Type::...
33#include "TypeData.h" // for TypeData, TypeData::Aggregate_t
34#include "TypedefTable.h" // for TypedefTable, TypedefTable::kind_t...
[bdd516a]35
[d180746]36class Initializer;
[51b73452]37
[de62360d]38extern TypedefTable typedefTable;
39
[51b73452]40using namespace std;
41
[201aeb9]42// These must harmonize with the corresponding DeclarationNode enumerations.
43const char * DeclarationNode::basicTypeNames[] = { "void", "_Bool", "char", "int", "float", "double", "long double", "int128", "float80", "float128", "NoBasicTypeNames" };
[dd020c0]44const char * DeclarationNode::complexTypeNames[] = { "_Complex", "_Imaginary", "NoComplexTypeNames" };
45const char * DeclarationNode::signednessNames[] = { "signed", "unsigned", "NoSignednessNames" };
46const char * DeclarationNode::lengthNames[] = { "short", "long", "long long", "NoLengthNames" };
[409433da]47const char * DeclarationNode::aggregateNames[] = { "struct", "union", "trait", "coroutine", "monitor", "thread", "NoAggregateNames" };
[dd020c0]48const char * DeclarationNode::typeClassNames[] = { "otype", "dtype", "ftype", "NoTypeClassNames" };
49const char * DeclarationNode::builtinTypeNames[] = { "__builtin_va_list", "NoBuiltinTypeNames" };
[51b73452]50
51UniqueName DeclarationNode::anonymous( "__anonymous" );
52
[8b7ee09]53extern LinkageSpec::Spec linkage; // defined in parser.yy
[51b73452]54
[7d05e7e]55DeclarationNode::DeclarationNode() :
[2298f728]56 type( nullptr ),
[58dd019]57 bitfieldWidth( nullptr ),
[7d05e7e]58 hasEllipsis( false ),
59 linkage( ::linkage ),
[58dd019]60 asmName( nullptr ),
61 initializer( nullptr ),
[e994912]62 extension( false ),
63 asmStmt( nullptr ) {
[2298f728]64
[faddbd8]65// variable.name = nullptr;
66 variable.tyClass = NoTypeClass;
[28307be]67 variable.assertions = nullptr;
[67cf18c]68 variable.initializer = nullptr;
[7d05e7e]69
[faddbd8]70// attr.name = nullptr;
[7d05e7e]71 attr.expr = nullptr;
72 attr.type = nullptr;
[28307be]73}
74
75DeclarationNode::~DeclarationNode() {
[faddbd8]76// delete attr.name;
[28307be]77 delete attr.expr;
78 delete attr.type;
[2298f728]79
[faddbd8]80// delete variable.name;
[2298f728]81 delete variable.assertions;
[67cf18c]82 delete variable.initializer;
[2298f728]83
[28307be]84 delete type;
85 delete bitfieldWidth;
[e994912]86
87 delete asmStmt;
[58dd019]88 // asmName, no delete, passed to next stage
[28307be]89 delete initializer;
90}
91
[ba7aa2d]92DeclarationNode * DeclarationNode::clone() const {
93 DeclarationNode * newnode = new DeclarationNode;
[c0aa336]94 newnode->set_next( maybeClone( get_next() ) );
[2298f728]95 newnode->name = name ? new string( *name ) : nullptr;
[c0aa336]96
97 newnode->type = maybeClone( type );
[a7c90d4]98 newnode->storageClasses = storageClasses;
99 newnode->funcSpecs = funcSpecs;
[08d5507b]100 newnode->bitfieldWidth = maybeClone( bitfieldWidth );
[c0aa336]101 newnode->enumeratorValue.reset( maybeClone( enumeratorValue.get() ) );
[b87a5ed]102 newnode->hasEllipsis = hasEllipsis;
103 newnode->linkage = linkage;
[58dd019]104 newnode->asmName = maybeClone( asmName );
[c0aa336]105 cloneAll( attributes, newnode->attributes );
106 newnode->initializer = maybeClone( initializer );
107 newnode->extension = extension;
[e994912]108 newnode->asmStmt = maybeClone( asmStmt );
[c0aa336]109 newnode->error = error;
[3848e0e]110
[faddbd8]111// newnode->variable.name = variable.name ? new string( *variable.name ) : nullptr;
[28307be]112 newnode->variable.tyClass = variable.tyClass;
[fb114fa1]113 newnode->variable.assertions = maybeClone( variable.assertions );
[67cf18c]114 newnode->variable.initializer = maybeClone( variable.initializer );
[3848e0e]115
[faddbd8]116// newnode->attr.name = attr.name ? new string( *attr.name ) : nullptr;
[28307be]117 newnode->attr.expr = maybeClone( attr.expr );
118 newnode->attr.type = maybeClone( attr.type );
119 return newnode;
120} // DeclarationNode::clone
[3848e0e]121
122bool DeclarationNode::get_hasEllipsis() const {
[b87a5ed]123 return hasEllipsis;
[3848e0e]124}
125
126void DeclarationNode::print( std::ostream &os, int indent ) const {
[59db689]127 os << string( indent, ' ' );
[2298f728]128 if ( name ) {
129 os << *name << ": ";
[b87a5ed]130 } else {
[2298f728]131 os << "unnamed: ";
[68cd1ce]132 } // if
[51b73452]133
[b87a5ed]134 if ( linkage != LinkageSpec::Cforall ) {
[faddbd8]135 os << LinkageSpec::linkageName( linkage ) << " ";
[68cd1ce]136 } // if
[3848e0e]137
[6e8bd43]138 storageClasses.print( os );
139 funcSpecs.print( os );
[dd020c0]140
[b87a5ed]141 if ( type ) {
142 type->print( os, indent );
143 } else {
144 os << "untyped entity ";
[68cd1ce]145 } // if
[3848e0e]146
[b87a5ed]147 if ( bitfieldWidth ) {
[59db689]148 os << endl << string( indent + 2, ' ' ) << "with bitfield width ";
[b87a5ed]149 bitfieldWidth->printOneLine( os );
[68cd1ce]150 } // if
[3848e0e]151
[2298f728]152 if ( initializer ) {
[59db689]153 os << endl << string( indent + 2, ' ' ) << "with initializer ";
[b87a5ed]154 initializer->printOneLine( os );
[974906e2]155 os << " maybe constructed? " << initializer->get_maybeConstructed();
156
[68cd1ce]157 } // if
[3848e0e]158
[b87a5ed]159 os << endl;
[51b73452]160}
161
[3848e0e]162void DeclarationNode::printList( std::ostream &os, int indent ) const {
[b87a5ed]163 ParseNode::printList( os, indent );
164 if ( hasEllipsis ) {
165 os << string( indent, ' ' ) << "and a variable number of other arguments" << endl;
[68cd1ce]166 } // if
[51b73452]167}
168
[fb114fa1]169DeclarationNode * DeclarationNode::newFunction( string * name, DeclarationNode * ret, DeclarationNode * param, StatementNode * body, bool newStyle ) {
[ba7aa2d]170 DeclarationNode * newnode = new DeclarationNode;
[2298f728]171 newnode->name = name;
[b87a5ed]172 newnode->type = new TypeData( TypeData::Function );
[8f6f47d7]173 newnode->type->function.params = param;
174 newnode->type->function.newStyle = newStyle;
175 newnode->type->function.body = body;
[c0aa336]176
[2298f728]177 // ignore unnamed routine declarations: void p( int (*)(int) );
178 if ( newnode->name ) {
179 typedefTable.addToEnclosingScope( *newnode->name, TypedefTable::ID );
180 } // if
[3848e0e]181
[b87a5ed]182 if ( ret ) {
183 newnode->type->base = ret->type;
[2298f728]184 ret->type = nullptr;
[b87a5ed]185 delete ret;
[68cd1ce]186 } // if
[51b73452]187
[b87a5ed]188 return newnode;
[984dce6]189} // DeclarationNode::newFunction
[3848e0e]190
[dd020c0]191
[68fe077a]192DeclarationNode * DeclarationNode::newStorageClass( Type::StorageClasses sc ) {
[ba7aa2d]193 DeclarationNode * newnode = new DeclarationNode;
[08d5507b]194 newnode->storageClasses = sc;
[b87a5ed]195 return newnode;
[dd020c0]196} // DeclarationNode::newStorageClass
[3848e0e]197
[ddfd945]198DeclarationNode * DeclarationNode::newFuncSpecifier( Type::FuncSpecifiers fs ) {
[ba7aa2d]199 DeclarationNode * newnode = new DeclarationNode;
[08d5507b]200 newnode->funcSpecs = fs;
[c1c1112]201 return newnode;
[dd020c0]202} // DeclarationNode::newFuncSpecifier
[c1c1112]203
[738e304]204DeclarationNode * DeclarationNode::newTypeQualifier( Type::Qualifiers tq ) {
[ba7aa2d]205 DeclarationNode * newnode = new DeclarationNode;
[dd020c0]206 newnode->type = new TypeData();
[738e304]207 newnode->type->qualifiers = tq;
[b87a5ed]208 return newnode;
[dd020c0]209} // DeclarationNode::newQualifier
[3848e0e]210
[c1c1112]211DeclarationNode * DeclarationNode::newBasicType( BasicType bt ) {
[ba7aa2d]212 DeclarationNode * newnode = new DeclarationNode;
[b87a5ed]213 newnode->type = new TypeData( TypeData::Basic );
[5b639ee]214 newnode->type->basictype = bt;
[b87a5ed]215 return newnode;
[984dce6]216} // DeclarationNode::newBasicType
[3848e0e]217
[5b639ee]218DeclarationNode * DeclarationNode::newComplexType( ComplexType ct ) {
[ba7aa2d]219 DeclarationNode * newnode = new DeclarationNode;
[b87a5ed]220 newnode->type = new TypeData( TypeData::Basic );
[5b639ee]221 newnode->type->complextype = ct;
[b87a5ed]222 return newnode;
[5b639ee]223} // DeclarationNode::newComplexType
224
225DeclarationNode * DeclarationNode::newSignedNess( Signedness sn ) {
[ba7aa2d]226 DeclarationNode * newnode = new DeclarationNode;
[5b639ee]227 newnode->type = new TypeData( TypeData::Basic );
228 newnode->type->signedness = sn;
229 return newnode;
230} // DeclarationNode::newSignedNess
231
232DeclarationNode * DeclarationNode::newLength( Length lnth ) {
[ba7aa2d]233 DeclarationNode * newnode = new DeclarationNode;
[5b639ee]234 newnode->type = new TypeData( TypeData::Basic );
235 newnode->type->length = lnth;
236 return newnode;
237} // DeclarationNode::newLength
[3848e0e]238
[dd020c0]239DeclarationNode * DeclarationNode::newForall( DeclarationNode * forall ) {
240 DeclarationNode * newnode = new DeclarationNode;
241 newnode->type = new TypeData( TypeData::Unknown );
242 newnode->type->forall = forall;
243 return newnode;
244} // DeclarationNode::newForall
245
[fb114fa1]246DeclarationNode * DeclarationNode::newFromTypedef( string * name ) {
[ba7aa2d]247 DeclarationNode * newnode = new DeclarationNode;
[b87a5ed]248 newnode->type = new TypeData( TypeData::SymbolicInst );
[fb114fa1]249 newnode->type->symbolic.name = name;
[8f6f47d7]250 newnode->type->symbolic.isTypedef = true;
[2298f728]251 newnode->type->symbolic.params = nullptr;
[b87a5ed]252 return newnode;
[984dce6]253} // DeclarationNode::newFromTypedef
[3848e0e]254
[fb114fa1]255DeclarationNode * DeclarationNode::newAggregate( Aggregate kind, const string * name, ExpressionNode * actuals, DeclarationNode * fields, bool body ) {
[6f95000]256 assert( name );
[ba7aa2d]257 DeclarationNode * newnode = new DeclarationNode;
[b87a5ed]258 newnode->type = new TypeData( TypeData::Aggregate );
[8f6f47d7]259 newnode->type->aggregate.kind = kind;
[6f95000]260 newnode->type->aggregate.name = name;
[8f6f47d7]261 newnode->type->aggregate.actuals = actuals;
262 newnode->type->aggregate.fields = fields;
263 newnode->type->aggregate.body = body;
[6ea87486]264 newnode->type->aggregate.tagged = false;
265 newnode->type->aggregate.parent = nullptr;
[b87a5ed]266 return newnode;
[984dce6]267} // DeclarationNode::newAggregate
[3848e0e]268
[ca1a547]269DeclarationNode * DeclarationNode::newEnum( string * name, DeclarationNode * constants, bool body ) {
[6f95000]270 assert( name );
[ba7aa2d]271 DeclarationNode * newnode = new DeclarationNode;
[b87a5ed]272 newnode->type = new TypeData( TypeData::Enum );
[6f95000]273 newnode->type->enumeration.name = name;
[8f6f47d7]274 newnode->type->enumeration.constants = constants;
[ca1a547]275 newnode->type->enumeration.body = body;
[b87a5ed]276 return newnode;
[984dce6]277} // DeclarationNode::newEnum
[3848e0e]278
[fb114fa1]279DeclarationNode * DeclarationNode::newEnumConstant( string * name, ExpressionNode * constant ) {
[ba7aa2d]280 DeclarationNode * newnode = new DeclarationNode;
[2298f728]281 newnode->name = name;
[4f147cc]282 newnode->enumeratorValue.reset( constant );
[2298f728]283 typedefTable.addToEnclosingScope( *newnode->name, TypedefTable::ID );
[b87a5ed]284 return newnode;
[984dce6]285} // DeclarationNode::newEnumConstant
[3848e0e]286
[fb114fa1]287DeclarationNode * DeclarationNode::newName( string * name ) {
[ba7aa2d]288 DeclarationNode * newnode = new DeclarationNode;
[2298f728]289 newnode->name = name;
[b87a5ed]290 return newnode;
[984dce6]291} // DeclarationNode::newName
[3848e0e]292
[fb114fa1]293DeclarationNode * DeclarationNode::newFromTypeGen( string * name, ExpressionNode * params ) {
[ba7aa2d]294 DeclarationNode * newnode = new DeclarationNode;
[b87a5ed]295 newnode->type = new TypeData( TypeData::SymbolicInst );
[fb114fa1]296 newnode->type->symbolic.name = name;
[8f6f47d7]297 newnode->type->symbolic.isTypedef = false;
298 newnode->type->symbolic.actuals = params;
[b87a5ed]299 return newnode;
[984dce6]300} // DeclarationNode::newFromTypeGen
[3848e0e]301
[fb114fa1]302DeclarationNode * DeclarationNode::newTypeParam( TypeClass tc, string * name ) {
[ba7aa2d]303 DeclarationNode * newnode = new DeclarationNode;
[2298f728]304 newnode->type = nullptr;
[148f7290]305 assert( ! newnode->name );
[faddbd8]306// newnode->variable.name = name;
307 newnode->name = name;
[28307be]308 newnode->variable.tyClass = tc;
[faddbd8]309 newnode->variable.assertions = nullptr;
[b87a5ed]310 return newnode;
[984dce6]311} // DeclarationNode::newTypeParam
[3848e0e]312
[fb114fa1]313DeclarationNode * DeclarationNode::newTrait( const string * name, DeclarationNode * params, DeclarationNode * asserts ) {
[ba7aa2d]314 DeclarationNode * newnode = new DeclarationNode;
[b87a5ed]315 newnode->type = new TypeData( TypeData::Aggregate );
[2298f728]316 newnode->type->aggregate.name = name;
[8f6f47d7]317 newnode->type->aggregate.kind = Trait;
318 newnode->type->aggregate.params = params;
319 newnode->type->aggregate.fields = asserts;
[b87a5ed]320 return newnode;
[984dce6]321} // DeclarationNode::newTrait
[3848e0e]322
[fb114fa1]323DeclarationNode * DeclarationNode::newTraitUse( const string * name, ExpressionNode * params ) {
[ba7aa2d]324 DeclarationNode * newnode = new DeclarationNode;
[b87a5ed]325 newnode->type = new TypeData( TypeData::AggregateInst );
[8f6f47d7]326 newnode->type->aggInst.aggregate = new TypeData( TypeData::Aggregate );
327 newnode->type->aggInst.aggregate->aggregate.kind = Trait;
[2298f728]328 newnode->type->aggInst.aggregate->aggregate.name = name;
[8f6f47d7]329 newnode->type->aggInst.params = params;
[b87a5ed]330 return newnode;
[984dce6]331} // DeclarationNode::newTraitUse
[3848e0e]332
[fb114fa1]333DeclarationNode * DeclarationNode::newTypeDecl( string * name, DeclarationNode * typeParams ) {
[ba7aa2d]334 DeclarationNode * newnode = new DeclarationNode;
[1395748]335 newnode->name = name;
[b87a5ed]336 newnode->type = new TypeData( TypeData::Symbolic );
[8f6f47d7]337 newnode->type->symbolic.isTypedef = false;
338 newnode->type->symbolic.params = typeParams;
[b87a5ed]339 return newnode;
[984dce6]340} // DeclarationNode::newTypeDecl
[3848e0e]341
[ce8c12f]342DeclarationNode * DeclarationNode::newPointer( DeclarationNode * qualifiers, OperKinds kind ) {
[ba7aa2d]343 DeclarationNode * newnode = new DeclarationNode;
[ce8c12f]344 newnode->type = new TypeData( kind == OperKinds::PointTo ? TypeData::Pointer : TypeData::Reference );
[c3396e0]345 if ( qualifiers ) {
346 return newnode->addQualifiers( qualifiers );
347 } else {
348 return newnode;
349 } // if
[984dce6]350} // DeclarationNode::newPointer
[3848e0e]351
[ba7aa2d]352DeclarationNode * DeclarationNode::newArray( ExpressionNode * size, DeclarationNode * qualifiers, bool isStatic ) {
353 DeclarationNode * newnode = new DeclarationNode;
[b87a5ed]354 newnode->type = new TypeData( TypeData::Array );
[8f6f47d7]355 newnode->type->array.dimension = size;
356 newnode->type->array.isStatic = isStatic;
[2298f728]357 if ( newnode->type->array.dimension == nullptr || newnode->type->array.dimension->isExpressionType<ConstantExpr * >() ) {
[8f6f47d7]358 newnode->type->array.isVarLen = false;
[71bd8c6]359 } else {
[8f6f47d7]360 newnode->type->array.isVarLen = true;
[71bd8c6]361 } // if
[b87a5ed]362 return newnode->addQualifiers( qualifiers );
[984dce6]363} // DeclarationNode::newArray
[3848e0e]364
[ba7aa2d]365DeclarationNode * DeclarationNode::newVarArray( DeclarationNode * qualifiers ) {
366 DeclarationNode * newnode = new DeclarationNode;
[b87a5ed]367 newnode->type = new TypeData( TypeData::Array );
[2298f728]368 newnode->type->array.dimension = nullptr;
[8f6f47d7]369 newnode->type->array.isStatic = false;
370 newnode->type->array.isVarLen = true;
[b87a5ed]371 return newnode->addQualifiers( qualifiers );
[3848e0e]372}
373
[ba7aa2d]374DeclarationNode * DeclarationNode::newBitfield( ExpressionNode * size ) {
375 DeclarationNode * newnode = new DeclarationNode;
[b87a5ed]376 newnode->bitfieldWidth = size;
377 return newnode;
[3848e0e]378}
379
[ba7aa2d]380DeclarationNode * DeclarationNode::newTuple( DeclarationNode * members ) {
381 DeclarationNode * newnode = new DeclarationNode;
[b87a5ed]382 newnode->type = new TypeData( TypeData::Tuple );
[8f6f47d7]383 newnode->type->tuple = members;
[b87a5ed]384 return newnode;
[3848e0e]385}
386
[ba7aa2d]387DeclarationNode * DeclarationNode::newTypeof( ExpressionNode * expr ) {
388 DeclarationNode * newnode = new DeclarationNode;
[b87a5ed]389 newnode->type = new TypeData( TypeData::Typeof );
[8f6f47d7]390 newnode->type->typeexpr = expr;
[b87a5ed]391 return newnode;
[3848e0e]392}
393
[8f6f47d7]394DeclarationNode * DeclarationNode::newBuiltinType( BuiltinType bt ) {
[ba7aa2d]395 DeclarationNode * newnode = new DeclarationNode;
[8f6f47d7]396 newnode->type = new TypeData( TypeData::Builtin );
397 newnode->builtin = bt;
[148f7290]398 newnode->type->builtintype = newnode->builtin;
[8f6f47d7]399 return newnode;
400} // DeclarationNode::newBuiltinType
401
[fb114fa1]402DeclarationNode * DeclarationNode::newAttr( string * name, ExpressionNode * expr ) {
[ba7aa2d]403 DeclarationNode * newnode = new DeclarationNode;
[2298f728]404 newnode->type = nullptr;
[faddbd8]405// newnode->attr.name = name;
406 newnode->name = name;
[28307be]407 newnode->attr.expr = expr;
[b87a5ed]408 return newnode;
[3848e0e]409}
410
[fb114fa1]411DeclarationNode * DeclarationNode::newAttr( string * name, DeclarationNode * type ) {
[ba7aa2d]412 DeclarationNode * newnode = new DeclarationNode;
[2298f728]413 newnode->type = nullptr;
[faddbd8]414// newnode->attr.name = name;
415 newnode->name = name;
[28307be]416 newnode->attr.type = type;
[b87a5ed]417 return newnode;
[3848e0e]418}
419
[44a81853]420DeclarationNode * DeclarationNode::newAttribute( string * name, ExpressionNode * expr ) {
421 DeclarationNode * newnode = new DeclarationNode;
422 newnode->type = nullptr;
423 std::list< Expression * > exprs;
424 buildList( expr, exprs );
425 newnode->attributes.push_back( new Attribute( *name, exprs ) );
426 delete name;
427 return newnode;
428}
429
[e994912]430DeclarationNode * DeclarationNode::newAsmStmt( StatementNode * stmt ) {
431 DeclarationNode * newnode = new DeclarationNode;
432 newnode->asmStmt = stmt;
433 return newnode;
434}
435
[5b639ee]436void appendError( string & dst, const string & src ) {
437 if ( src.empty() ) return;
438 if ( dst.empty() ) { dst = src; return; }
439 dst += ", " + src;
440} // appendError
441
[ba7aa2d]442void DeclarationNode::checkQualifiers( const TypeData * src, const TypeData * dst ) {
[738e304]443 const Type::Qualifiers qsrc = src->qualifiers, qdst = dst->qualifiers; // optimization
[c1c1112]444
[6f95000]445 if ( (qsrc & qdst).any() ) { // duplicates ?
[738e304]446 for ( unsigned int i = 0; i < Type::NumTypeQualifier; i += 1 ) { // find duplicates
[5b639ee]447 if ( qsrc[i] && qdst[i] ) {
[615a096]448 appendError( error, string( "duplicate " ) + Type::QualifiersNames[i] );
[c1c1112]449 } // if
450 } // for
[a7c90d4]451 } // for
[c1c1112]452} // DeclarationNode::checkQualifiers
453
[a7c90d4]454void DeclarationNode::checkSpecifiers( DeclarationNode * src ) {
[6f95000]455 if ( (funcSpecs & src->funcSpecs).any() ) { // duplicates ?
[ddfd945]456 for ( unsigned int i = 0; i < Type::NumFuncSpecifier; i += 1 ) { // find duplicates
[a7c90d4]457 if ( funcSpecs[i] && src->funcSpecs[i] ) {
[615a096]458 appendError( error, string( "duplicate " ) + Type::FuncSpecifiersNames[i] );
[dd020c0]459 } // if
460 } // for
461 } // if
462
[6e8bd43]463 if ( storageClasses.any() && src->storageClasses.any() ) { // any reason to check ?
[6f95000]464 if ( (storageClasses & src->storageClasses ).any() ) { // duplicates ?
[68fe077a]465 for ( unsigned int i = 0; i < Type::NumStorageClass; i += 1 ) { // find duplicates
[a7c90d4]466 if ( storageClasses[i] && src->storageClasses[i] ) {
[615a096]467 appendError( error, string( "duplicate " ) + Type::StorageClassesNames[i] );
[a7c90d4]468 } // if
469 } // for
470 // src is the new item being added and has a single bit
[08d5507b]471 } else if ( ! src->storageClasses.is_threadlocal ) { // conflict ?
[615a096]472 appendError( error, string( "conflicting " ) + Type::StorageClassesNames[storageClasses.ffs()] +
473 " & " + Type::StorageClassesNames[src->storageClasses.ffs()] );
[6f95000]474 src->storageClasses.reset(); // FIX to preserve invariant of one basic storage specifier
[b6424d9]475 } // if
476 } // if
[dd020c0]477
[a7c90d4]478 appendError( error, src->error );
479} // DeclarationNode::checkSpecifiers
[b6424d9]480
[a7c90d4]481DeclarationNode * DeclarationNode::copySpecifiers( DeclarationNode * q ) {
[6f95000]482 funcSpecs |= q->funcSpecs;
483 storageClasses |= q->storageClasses;
[c0aa336]484
485 for ( Attribute *attr: reverseIterate( q->attributes ) ) {
486 attributes.push_front( attr->clone() );
487 } // for
[b6424d9]488 return this;
[a7c90d4]489} // DeclarationNode::copySpecifiers
[b6424d9]490
[ba7aa2d]491static void addQualifiersToType( TypeData *&src, TypeData * dst ) {
[101e0bd]492 if ( src->forall && dst->kind == TypeData::Function ) {
493 if ( dst->forall ) {
494 dst->forall->appendList( src->forall );
495 } else {
496 dst->forall = src->forall;
497 } // if
[2298f728]498 src->forall = nullptr;
[101e0bd]499 } // if
500 if ( dst->base ) {
501 addQualifiersToType( src, dst->base );
502 } else if ( dst->kind == TypeData::Function ) {
503 dst->base = src;
[2298f728]504 src = nullptr;
[101e0bd]505 } else {
[6f95000]506 dst->qualifiers |= src->qualifiers;
[101e0bd]507 } // if
508} // addQualifiersToType
509
[ba7aa2d]510DeclarationNode * DeclarationNode::addQualifiers( DeclarationNode * q ) {
[2298f728]511 if ( ! q ) { delete q; return this; }
[101e0bd]512
[a7c90d4]513 checkSpecifiers( q );
514 copySpecifiers( q );
[101e0bd]515
[1b772749]516 if ( ! q->type ) {
517 delete q;
518 return this;
519 } // if
[101e0bd]520
521 if ( ! type ) {
[1b772749]522 type = q->type; // reuse this structure
523 q->type = nullptr;
524 delete q;
[101e0bd]525 return this;
526 } // if
527
528 if ( q->type->forall ) {
529 if ( type->forall ) {
530 type->forall->appendList( q->type->forall );
531 } else {
532 if ( type->kind == TypeData::Aggregate ) {
533 type->aggregate.params = q->type->forall;
534 // change implicit typedef from TYPEDEFname to TYPEGENname
[2298f728]535 typedefTable.changeKind( *type->aggregate.name, TypedefTable::TG );
[c1c1112]536 } else {
[101e0bd]537 type->forall = q->type->forall;
[68cd1ce]538 } // if
539 } // if
[2298f728]540 q->type->forall = nullptr;
[68cd1ce]541 } // if
[6ef2d81]542
[a7c90d4]543 checkQualifiers( type, q->type );
[6ef2d81]544 addQualifiersToType( q->type, type );
545
[b87a5ed]546 delete q;
547 return this;
[101e0bd]548} // addQualifiers
[3848e0e]549
550static void addTypeToType( TypeData *&src, TypeData *&dst ) {
[101e0bd]551 if ( src->forall && dst->kind == TypeData::Function ) {
552 if ( dst->forall ) {
553 dst->forall->appendList( src->forall );
[b87a5ed]554 } else {
[101e0bd]555 dst->forall = src->forall;
556 } // if
[2298f728]557 src->forall = nullptr;
[101e0bd]558 } // if
559 if ( dst->base ) {
560 addTypeToType( src, dst->base );
561 } else {
562 switch ( dst->kind ) {
563 case TypeData::Unknown:
[6f95000]564 src->qualifiers |= dst->qualifiers;
[101e0bd]565 dst = src;
[2298f728]566 src = nullptr;
[101e0bd]567 break;
568 case TypeData::Basic:
[6f95000]569 dst->qualifiers |= src->qualifiers;
[101e0bd]570 if ( src->kind != TypeData::Unknown ) {
571 assert( src->kind == TypeData::Basic );
572
573 if ( dst->basictype == DeclarationNode::NoBasicType ) {
574 dst->basictype = src->basictype;
575 } else if ( src->basictype != DeclarationNode::NoBasicType )
[dd020c0]576 throw SemanticError( string( "conflicting type specifier " ) + DeclarationNode::basicTypeNames[ src->basictype ] + " in type: ", src );
[101e0bd]577
578 if ( dst->complextype == DeclarationNode::NoComplexType ) {
579 dst->complextype = src->complextype;
580 } else if ( src->complextype != DeclarationNode::NoComplexType )
[dd020c0]581 throw SemanticError( string( "conflicting type specifier " ) + DeclarationNode::complexTypeNames[ src->complextype ] + " in type: ", src );
[101e0bd]582
583 if ( dst->signedness == DeclarationNode::NoSignedness ) {
584 dst->signedness = src->signedness;
585 } else if ( src->signedness != DeclarationNode::NoSignedness )
[dd020c0]586 throw SemanticError( string( "conflicting type specifier " ) + DeclarationNode::signednessNames[ src->signedness ] + " in type: ", src );
[101e0bd]587
588 if ( dst->length == DeclarationNode::NoLength ) {
589 dst->length = src->length;
590 } else if ( dst->length == DeclarationNode::Long && src->length == DeclarationNode::Long ) {
591 dst->length = DeclarationNode::LongLong;
592 } else if ( src->length != DeclarationNode::NoLength )
[dd020c0]593 throw SemanticError( string( "conflicting type specifier " ) + DeclarationNode::lengthNames[ src->length ] + " in type: ", src );
[101e0bd]594 } // if
595 break;
596 default:
597 switch ( src->kind ) {
598 case TypeData::Aggregate:
599 case TypeData::Enum:
600 dst->base = new TypeData( TypeData::AggregateInst );
601 dst->base->aggInst.aggregate = src;
602 if ( src->kind == TypeData::Aggregate ) {
603 dst->base->aggInst.params = maybeClone( src->aggregate.actuals );
[68cd1ce]604 } // if
[6f95000]605 dst->base->qualifiers |= src->qualifiers;
[2298f728]606 src = nullptr;
[b87a5ed]607 break;
608 default:
[101e0bd]609 if ( dst->forall ) {
610 dst->forall->appendList( src->forall );
611 } else {
612 dst->forall = src->forall;
613 } // if
[2298f728]614 src->forall = nullptr;
[101e0bd]615 dst->base = src;
[2298f728]616 src = nullptr;
[68cd1ce]617 } // switch
[101e0bd]618 } // switch
[68cd1ce]619 } // if
[3848e0e]620}
621
[ba7aa2d]622DeclarationNode * DeclarationNode::addType( DeclarationNode * o ) {
[b87a5ed]623 if ( o ) {
[a7c90d4]624 checkSpecifiers( o );
625 copySpecifiers( o );
[b87a5ed]626 if ( o->type ) {
627 if ( ! type ) {
628 if ( o->type->kind == TypeData::Aggregate || o->type->kind == TypeData::Enum ) {
629 type = new TypeData( TypeData::AggregateInst );
[8f6f47d7]630 type->aggInst.aggregate = o->type;
[b87a5ed]631 if ( o->type->kind == TypeData::Aggregate ) {
[43c89a7]632 type->aggInst.hoistType = o->type->aggregate.body;
[8f6f47d7]633 type->aggInst.params = maybeClone( o->type->aggregate.actuals );
[43c89a7]634 } else {
635 type->aggInst.hoistType = o->type->enumeration.body;
[68cd1ce]636 } // if
[6f95000]637 type->qualifiers |= o->type->qualifiers;
[b87a5ed]638 } else {
639 type = o->type;
[68cd1ce]640 } // if
[2298f728]641 o->type = nullptr;
[b87a5ed]642 } else {
643 addTypeToType( o->type, type );
[68cd1ce]644 } // if
645 } // if
[b87a5ed]646 if ( o->bitfieldWidth ) {
647 bitfieldWidth = o->bitfieldWidth;
[68cd1ce]648 } // if
[71bd8c6]649
650 // there may be typedefs chained onto the type
[1d4580a]651 if ( o->get_next() ) {
652 set_last( o->get_next()->clone() );
[1db21619]653 } // if
[68cd1ce]654 } // if
[b87a5ed]655 delete o;
656 return this;
[3848e0e]657}
658
[ba7aa2d]659DeclarationNode * DeclarationNode::addTypedef() {
660 TypeData * newtype = new TypeData( TypeData::Symbolic );
[2298f728]661 newtype->symbolic.params = nullptr;
[8f6f47d7]662 newtype->symbolic.isTypedef = true;
[2298f728]663 newtype->symbolic.name = name ? new string( *name ) : nullptr;
[b87a5ed]664 newtype->base = type;
665 type = newtype;
666 return this;
[3848e0e]667}
668
[ba7aa2d]669DeclarationNode * DeclarationNode::addAssertions( DeclarationNode * assertions ) {
[faddbd8]670 if ( variable.tyClass != NoTypeClass ) {
[2298f728]671 if ( variable.assertions ) {
672 variable.assertions->appendList( assertions );
673 } else {
674 variable.assertions = assertions;
675 } // if
676 return this;
677 } // if
678
[b87a5ed]679 assert( type );
680 switch ( type->kind ) {
681 case TypeData::Symbolic:
[8f6f47d7]682 if ( type->symbolic.assertions ) {
683 type->symbolic.assertions->appendList( assertions );
[b87a5ed]684 } else {
[8f6f47d7]685 type->symbolic.assertions = assertions;
[68cd1ce]686 } // if
[b87a5ed]687 break;
688 default:
689 assert( false );
[68cd1ce]690 } // switch
[974906e2]691
[b87a5ed]692 return this;
[51b73452]693}
694
[fb114fa1]695DeclarationNode * DeclarationNode::addName( string * newname ) {
[2298f728]696 assert( ! name );
697 name = newname;
[b87a5ed]698 return this;
[51b73452]699}
700
[c0aa336]701DeclarationNode * DeclarationNode::addAsmName( DeclarationNode * newname ) {
[58dd019]702 assert( ! asmName );
[c0aa336]703 asmName = newname ? newname->asmName : nullptr;
704 return this->addQualifiers( newname );
[58dd019]705}
706
[ba7aa2d]707DeclarationNode * DeclarationNode::addBitfield( ExpressionNode * size ) {
[b87a5ed]708 bitfieldWidth = size;
709 return this;
[51b73452]710}
711
[ba7aa2d]712DeclarationNode * DeclarationNode::addVarArgs() {
[b87a5ed]713 assert( type );
714 hasEllipsis = true;
715 return this;
[51b73452]716}
717
[ba7aa2d]718DeclarationNode * DeclarationNode::addFunctionBody( StatementNode * body ) {
[b87a5ed]719 assert( type );
720 assert( type->kind == TypeData::Function );
[2298f728]721 assert( ! type->function.body );
[8f6f47d7]722 type->function.body = body;
[b87a5ed]723 return this;
[51b73452]724}
725
[ba7aa2d]726DeclarationNode * DeclarationNode::addOldDeclList( DeclarationNode * list ) {
[b87a5ed]727 assert( type );
728 assert( type->kind == TypeData::Function );
[2298f728]729 assert( ! type->function.oldDeclList );
[8f6f47d7]730 type->function.oldDeclList = list;
[b87a5ed]731 return this;
[51b73452]732}
733
[c0aa336]734DeclarationNode * DeclarationNode::setBase( TypeData * newType ) {
[b87a5ed]735 if ( type ) {
[ba7aa2d]736 TypeData * prevBase = type;
737 TypeData * curBase = type->base;
[2298f728]738 while ( curBase != nullptr ) {
[b87a5ed]739 prevBase = curBase;
740 curBase = curBase->base;
[68cd1ce]741 } // while
[b87a5ed]742 prevBase->base = newType;
743 } else {
744 type = newType;
[68cd1ce]745 } // if
[c0aa336]746 return this;
[3848e0e]747}
748
[c0aa336]749DeclarationNode * DeclarationNode::copyAttribute( DeclarationNode * a ) {
750 if ( a ) {
751 for ( Attribute *attr: reverseIterate( a->attributes ) ) {
752 attributes.push_front( attr );
753 } // for
754 a->attributes.clear();
755 } // if
756 return this;
757} // copyAttribute
758
[ba7aa2d]759DeclarationNode * DeclarationNode::addPointer( DeclarationNode * p ) {
[b87a5ed]760 if ( p ) {
[ce8c12f]761 assert( p->type->kind == TypeData::Pointer || TypeData::Reference );
[c0aa336]762 setBase( p->type );
[2298f728]763 p->type = nullptr;
[c0aa336]764 copyAttribute( p );
[b87a5ed]765 delete p;
[68cd1ce]766 } // if
[b87a5ed]767 return this;
[3848e0e]768}
769
[ba7aa2d]770DeclarationNode * DeclarationNode::addArray( DeclarationNode * a ) {
[b87a5ed]771 if ( a ) {
772 assert( a->type->kind == TypeData::Array );
[c0aa336]773 setBase( a->type );
[2298f728]774 a->type = nullptr;
[c0aa336]775 copyAttribute( a );
[b87a5ed]776 delete a;
[68cd1ce]777 } // if
[b87a5ed]778 return this;
[51b73452]779}
780
[ba7aa2d]781DeclarationNode * DeclarationNode::addNewPointer( DeclarationNode * p ) {
[b87a5ed]782 if ( p ) {
[e6cee92]783 assert( p->type->kind == TypeData::Pointer || p->type->kind == TypeData::Reference );
[b87a5ed]784 if ( type ) {
785 switch ( type->kind ) {
786 case TypeData::Aggregate:
787 case TypeData::Enum:
788 p->type->base = new TypeData( TypeData::AggregateInst );
[8f6f47d7]789 p->type->base->aggInst.aggregate = type;
[b87a5ed]790 if ( type->kind == TypeData::Aggregate ) {
[8f6f47d7]791 p->type->base->aggInst.params = maybeClone( type->aggregate.actuals );
[68cd1ce]792 } // if
[6f95000]793 p->type->base->qualifiers |= type->qualifiers;
[b87a5ed]794 break;
795
796 default:
797 p->type->base = type;
[68cd1ce]798 } // switch
[2298f728]799 type = nullptr;
[68cd1ce]800 } // if
[b87a5ed]801 delete this;
802 return p;
803 } else {
804 return this;
[68cd1ce]805 } // if
[51b73452]806}
807
[ba7aa2d]808static TypeData * findLast( TypeData * a ) {
[b87a5ed]809 assert( a );
[ba7aa2d]810 TypeData * cur = a;
[a32b204]811 while ( cur->base ) {
[b87a5ed]812 cur = cur->base;
[68cd1ce]813 } // while
[b87a5ed]814 return cur;
[3848e0e]815}
816
[ba7aa2d]817DeclarationNode * DeclarationNode::addNewArray( DeclarationNode * a ) {
[738e304]818 if ( ! a ) return this;
819 assert( a->type->kind == TypeData::Array );
820 TypeData * lastArray = findLast( a->type );
821 if ( type ) {
822 switch ( type->kind ) {
823 case TypeData::Aggregate:
824 case TypeData::Enum:
825 lastArray->base = new TypeData( TypeData::AggregateInst );
826 lastArray->base->aggInst.aggregate = type;
827 if ( type->kind == TypeData::Aggregate ) {
828 lastArray->base->aggInst.params = maybeClone( type->aggregate.actuals );
829 } // if
[6f95000]830 lastArray->base->qualifiers |= type->qualifiers;
[738e304]831 break;
832 default:
833 lastArray->base = type;
834 } // switch
835 type = nullptr;
[68cd1ce]836 } // if
[738e304]837 delete this;
838 return a;
[51b73452]839}
[3848e0e]840
[ba7aa2d]841DeclarationNode * DeclarationNode::addParamList( DeclarationNode * params ) {
842 TypeData * ftype = new TypeData( TypeData::Function );
[8f6f47d7]843 ftype->function.params = params;
[c0aa336]844 setBase( ftype );
[b87a5ed]845 return this;
[3848e0e]846}
847
[ba7aa2d]848static TypeData * addIdListToType( TypeData * type, DeclarationNode * ids ) {
[b87a5ed]849 if ( type ) {
850 if ( type->kind != TypeData::Function ) {
851 type->base = addIdListToType( type->base, ids );
852 } else {
[8f6f47d7]853 type->function.idList = ids;
[68cd1ce]854 } // if
[b87a5ed]855 return type;
[3848e0e]856 } else {
[ba7aa2d]857 TypeData * newtype = new TypeData( TypeData::Function );
[8f6f47d7]858 newtype->function.idList = ids;
[b87a5ed]859 return newtype;
[68cd1ce]860 } // if
[2298f728]861} // addIdListToType
[974906e2]862
[ba7aa2d]863DeclarationNode * DeclarationNode::addIdList( DeclarationNode * ids ) {
[b87a5ed]864 type = addIdListToType( type, ids );
865 return this;
[3848e0e]866}
867
[ba7aa2d]868DeclarationNode * DeclarationNode::addInitializer( InitializerNode * init ) {
[b87a5ed]869 initializer = init;
870 return this;
[3848e0e]871}
872
[67cf18c]873DeclarationNode * DeclarationNode::addTypeInitializer( DeclarationNode * init ) {
874 assertf( variable.tyClass != NoTypeClass, "Called addTypeInitializer on something that isn't a type variable." );
875 variable.initializer = init;
876 return this;
877}
878
[ba7aa2d]879DeclarationNode * DeclarationNode::cloneType( string * newName ) {
880 DeclarationNode * newnode = new DeclarationNode;
[b87a5ed]881 newnode->type = maybeClone( type );
[a7c90d4]882 newnode->copySpecifiers( this );
[ba7aa2d]883 assert( newName );
[2298f728]884 newnode->name = newName;
[b87a5ed]885 return newnode;
[3848e0e]886}
887
[2298f728]888DeclarationNode * DeclarationNode::cloneBaseType( DeclarationNode * o ) {
889 if ( ! o ) return nullptr;
890
[a7c90d4]891 o->copySpecifiers( this );
[2298f728]892 if ( type ) {
893 TypeData * srcType = type;
894
[c0aa336]895 // search for the base type by scanning off pointers and array designators
[2298f728]896 while ( srcType->base ) {
897 srcType = srcType->base;
898 } // while
899
900 TypeData * newType = srcType->clone();
901 if ( newType->kind == TypeData::AggregateInst ) {
902 // don't duplicate members
903 if ( newType->aggInst.aggregate->kind == TypeData::Enum ) {
904 delete newType->aggInst.aggregate->enumeration.constants;
905 newType->aggInst.aggregate->enumeration.constants = nullptr;
[b87a5ed]906 } else {
[2298f728]907 assert( newType->aggInst.aggregate->kind == TypeData::Aggregate );
908 delete newType->aggInst.aggregate->aggregate.fields;
909 newType->aggInst.aggregate->aggregate.fields = nullptr;
[68cd1ce]910 } // if
[43c89a7]911 // don't hoist twice
912 newType->aggInst.hoistType = false;
[68cd1ce]913 } // if
[2298f728]914
915 newType->forall = maybeClone( type->forall );
916 if ( ! o->type ) {
917 o->type = newType;
918 } else {
919 addTypeToType( newType, o->type );
920 delete newType;
921 } // if
[68cd1ce]922 } // if
[b87a5ed]923 return o;
[51b73452]924}
925
[ba7aa2d]926DeclarationNode * DeclarationNode::extractAggregate() const {
[b87a5ed]927 if ( type ) {
[ba7aa2d]928 TypeData * ret = typeextractAggregate( type );
[b87a5ed]929 if ( ret ) {
[ba7aa2d]930 DeclarationNode * newnode = new DeclarationNode;
[b87a5ed]931 newnode->type = ret;
932 return newnode;
[843054c2]933 } // if
934 } // if
[2298f728]935 return nullptr;
[3848e0e]936}
937
[ba7aa2d]938void buildList( const DeclarationNode * firstNode, std::list< Declaration * > &outputList ) {
[b87a5ed]939 SemanticError errors;
[7880579]940 std::back_insert_iterator< std::list< Declaration * > > out( outputList );
[2298f728]941
[3a5131ed]942 for ( const DeclarationNode * cur = firstNode; cur; cur = dynamic_cast< DeclarationNode * >( cur->get_next() ) ) {
[b87a5ed]943 try {
[ba7aa2d]944 if ( DeclarationNode * extr = cur->extractAggregate() ) {
[b87a5ed]945 // handle the case where a structure declaration is contained within an object or type declaration
[ba7aa2d]946 Declaration * decl = extr->build();
[b87a5ed]947 if ( decl ) {
[294647b]948 decl->location = cur->location;
[ba7aa2d]949 * out++ = decl;
[843054c2]950 } // if
[f39096c]951 delete extr;
[843054c2]952 } // if
[2298f728]953
[ba7aa2d]954 Declaration * decl = cur->build();
[b87a5ed]955 if ( decl ) {
[294647b]956 decl->location = cur->location;
[ba7aa2d]957 * out++ = decl;
[843054c2]958 } // if
[b87a5ed]959 } catch( SemanticError &e ) {
[294647b]960 e.set_location( cur->location );
[b87a5ed]961 errors.append( e );
[843054c2]962 } // try
963 } // while
[2298f728]964
[b87a5ed]965 if ( ! errors.isEmpty() ) {
966 throw errors;
[843054c2]967 } // if
[2298f728]968} // buildList
[3848e0e]969
[ba7aa2d]970void buildList( const DeclarationNode * firstNode, std::list< DeclarationWithType * > &outputList ) {
[b87a5ed]971 SemanticError errors;
[7880579]972 std::back_insert_iterator< std::list< DeclarationWithType * > > out( outputList );
[43c89a7]973
[3a5131ed]974 for ( const DeclarationNode * cur = firstNode; cur; cur = dynamic_cast< DeclarationNode * >( cur->get_next() ) ) {
[b87a5ed]975 try {
[ba7aa2d]976 Declaration * decl = cur->build();
[b87a5ed]977 if ( decl ) {
[ba7aa2d]978 if ( DeclarationWithType * dwt = dynamic_cast< DeclarationWithType * >( decl ) ) {
[294647b]979 dwt->location = cur->location;
[ba7aa2d]980 * out++ = dwt;
981 } else if ( StructDecl * agg = dynamic_cast< StructDecl * >( decl ) ) {
982 StructInstType * inst = new StructInstType( Type::Qualifiers(), agg->get_name() );
[68fe077a]983 auto obj = new ObjectDecl( "", Type::StorageClasses(), linkage, nullptr, inst, nullptr );
[294647b]984 obj->location = cur->location;
[43c89a7]985 * out++ = obj;
[b87a5ed]986 delete agg;
[ba7aa2d]987 } else if ( UnionDecl * agg = dynamic_cast< UnionDecl * >( decl ) ) {
988 UnionInstType * inst = new UnionInstType( Type::Qualifiers(), agg->get_name() );
[68fe077a]989 auto obj = new ObjectDecl( "", Type::StorageClasses(), linkage, nullptr, inst, nullptr );
[294647b]990 obj->location = cur->location;
991 * out++ = obj;
[843054c2]992 } // if
993 } // if
[b87a5ed]994 } catch( SemanticError &e ) {
[294647b]995 e.set_location( cur->location );
[b87a5ed]996 errors.append( e );
[843054c2]997 } // try
[3a5131ed]998 } // for
999
[b87a5ed]1000 if ( ! errors.isEmpty() ) {
1001 throw errors;
[843054c2]1002 } // if
[2298f728]1003} // buildList
[3848e0e]1004
[ba7aa2d]1005void buildTypeList( const DeclarationNode * firstNode, std::list< Type * > &outputList ) {
[b87a5ed]1006 SemanticError errors;
[7880579]1007 std::back_insert_iterator< std::list< Type * > > out( outputList );
[ba7aa2d]1008 const DeclarationNode * cur = firstNode;
[2298f728]1009
[a32b204]1010 while ( cur ) {
[b87a5ed]1011 try {
[ba7aa2d]1012 * out++ = cur->buildType();
[b87a5ed]1013 } catch( SemanticError &e ) {
[138e29e]1014 e.set_location( cur->location );
[b87a5ed]1015 errors.append( e );
[843054c2]1016 } // try
[7880579]1017 cur = dynamic_cast< DeclarationNode * >( cur->get_next() );
[843054c2]1018 } // while
[2298f728]1019
[b87a5ed]1020 if ( ! errors.isEmpty() ) {
1021 throw errors;
[843054c2]1022 } // if
[2298f728]1023} // buildTypeList
[51b73452]1024
[ba7aa2d]1025Declaration * DeclarationNode::build() const {
[7d05e7e]1026 if ( ! error.empty() ) throw SemanticError( error + " in declaration of ", this );
[2298f728]1027
[e994912]1028 if ( asmStmt ) {
[e3e16bc]1029 return new AsmDecl( strict_dynamic_cast<AsmStmt *>( asmStmt->build() ) );
[e994912]1030 } // if
1031
[faddbd8]1032 if ( variable.tyClass != NoTypeClass ) {
[8f60f0b]1033 static const TypeDecl::Kind kindMap[] = { TypeDecl::Any, TypeDecl::Dtype, TypeDecl::Ftype, TypeDecl::Ttype };
1034 assertf( sizeof(kindMap)/sizeof(kindMap[0] == NoTypeClass-1), "DeclarationNode::build: kindMap is out of sync." );
1035 assertf( variable.tyClass < sizeof(kindMap)/sizeof(kindMap[0]), "Variable's tyClass is out of bounds." );
[67cf18c]1036 TypeDecl * ret = new TypeDecl( *name, Type::StorageClasses(), nullptr, kindMap[ variable.tyClass ], variable.initializer ? variable.initializer->buildType() : nullptr );
[2298f728]1037 buildList( variable.assertions, ret->get_assertions() );
1038 return ret;
1039 } // if
1040
[843054c2]1041 if ( type ) {
[dd020c0]1042 // Function specifiers can only appear on a function definition/declaration.
1043 //
1044 // inline _Noreturn int f(); // allowed
1045 // inline _Noreturn int g( int i ); // allowed
1046 // inline _Noreturn int i; // disallowed
[fb04321]1047 if ( type->kind != TypeData::Function && funcSpecs.any() ) {
[dd020c0]1048 throw SemanticError( "invalid function specifier for ", this );
1049 } // if
[a7c90d4]1050 return buildDecl( type, name ? *name : string( "" ), storageClasses, maybeBuild< Expression >( bitfieldWidth ), funcSpecs, linkage, asmName, maybeBuild< Initializer >(initializer), attributes )->set_extension( extension );
[843054c2]1051 } // if
[2298f728]1052
[dd020c0]1053 // SUE's cannot have function specifiers, either
1054 //
1055 // inlne _Noreturn struct S { ... }; // disallowed
1056 // inlne _Noreturn enum E { ... }; // disallowed
[fb04321]1057 if ( funcSpecs.any() ) {
[dd020c0]1058 throw SemanticError( "invalid function specifier for ", this );
[843054c2]1059 } // if
[dd020c0]1060 assertf( name, "ObjectDecl must a have name\n" );
[a7c90d4]1061 return (new ObjectDecl( *name, storageClasses, linkage, maybeBuild< Expression >( bitfieldWidth ), nullptr, maybeBuild< Initializer >( initializer ) ))->set_asmName( asmName )->set_extension( extension );
[51b73452]1062}
1063
[ba7aa2d]1064Type * DeclarationNode::buildType() const {
[b87a5ed]1065 assert( type );
[974906e2]1066
[faddbd8]1067 if ( attr.expr ) {
[c0aa336]1068 return new AttrType( buildQualifiers( type ), *name, attr.expr->build(), attributes );
[faddbd8]1069 } else if ( attr.type ) {
[c0aa336]1070 return new AttrType( buildQualifiers( type ), *name, attr.type->buildType(), attributes );
[2298f728]1071 } // if
1072
[b87a5ed]1073 switch ( type->kind ) {
[43c89a7]1074 case TypeData::Enum:
[b87a5ed]1075 case TypeData::Aggregate: {
[fa4805f]1076 ReferenceToType * ret = buildComAggInst( type, attributes, linkage );
[8f6f47d7]1077 buildList( type->aggregate.actuals, ret->get_parameters() );
[b87a5ed]1078 return ret;
1079 }
1080 case TypeData::Symbolic: {
[c0aa336]1081 TypeInstType * ret = new TypeInstType( buildQualifiers( type ), *type->symbolic.name, false, attributes );
[8f6f47d7]1082 buildList( type->symbolic.actuals, ret->get_parameters() );
[b87a5ed]1083 return ret;
1084 }
1085 default:
[c0aa336]1086 Type * simpletypes = typebuild( type );
1087 simpletypes->get_attributes() = attributes; // copy because member is const
1088 return simpletypes;
[b87a5ed]1089 } // switch
[3848e0e]1090}
1091
[b87a5ed]1092// Local Variables: //
1093// tab-width: 4 //
1094// mode: c++ //
1095// compile-command: "make install" //
1096// End: //
Note: See TracBrowser for help on using the repository browser.