source: src/Parser/DeclarationNode.cc@ 486caad

Last change on this file since 486caad was bf050c5, checked in by Andrew Beach <ajbeach@…>, 20 months ago

Removed unused field from TypeData.

  • Property mode set to 100644
File size: 35.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// DeclarationNode.cc --
[b87a5ed]8//
9// Author : Rodolfo G. Esteves
10// Created On : Sat May 16 12:34:05 2015
[b38f6da]11// Last Modified By : Peter A. Buhr
[4eb3a7c5]12// Last Modified On : Fri Feb 23 18:25:57 2024
13// Update Count : 1533
[b87a5ed]14//
15
[c468150]16#include "DeclarationNode.h"
17
[e3e16bc]18#include <cassert> // for assert, assertf, strict_dynamic_cast
[d180746]19#include <iterator> // for back_insert_iterator
20#include <list> // for list
21#include <memory> // for unique_ptr
22#include <ostream> // for operator<<, ostream, basic_ostream
23#include <string> // for string, operator+, allocator, char...
[51b73452]24
[bb7422a]25#include "AST/Attribute.hpp" // for Attribute
26#include "AST/Copy.hpp" // for shallowCopy
27#include "AST/Decl.hpp" // for Decl
28#include "AST/Expr.hpp" // for Expr
29#include "AST/Print.hpp" // for print
30#include "AST/Stmt.hpp" // for AsmStmt, DirectiveStmt
31#include "AST/StorageClasses.hpp" // for Storage::Class
32#include "AST/Type.hpp" // for Type
33#include "Common/CodeLocation.h" // for CodeLocation
34#include "Common/Iterate.hpp" // for reverseIterate
[d180746]35#include "Common/SemanticError.h" // for SemanticError
36#include "Common/UniqueName.h" // for UniqueName
[5bf685f]37#include "Common/utility.h" // for copy, spliceBegin
[c468150]38#include "Parser/ExpressionNode.h" // for ExpressionNode
39#include "Parser/InitializerNode.h"// for InitializerNode
40#include "Parser/StatementNode.h" // for StatementNode
[d180746]41#include "TypeData.h" // for TypeData, TypeData::Aggregate_t
[2f0a0678]42#include "TypedefTable.h" // for TypedefTable
[bdd516a]43
[de62360d]44extern TypedefTable typedefTable;
45
[51b73452]46using namespace std;
47
48UniqueName DeclarationNode::anonymous( "__anonymous" );
49
[bb7422a]50extern ast::Linkage::Spec linkage; // defined in parser.yy
[51b73452]51
[7d05e7e]52DeclarationNode::DeclarationNode() :
[e07caa2]53 linkage( ::linkage ) {
[2298f728]54
[faddbd8]55// variable.name = nullptr;
[bb7422a]56 variable.tyClass = ast::TypeDecl::NUMBER_OF_KINDS;
[28307be]57 variable.assertions = nullptr;
[67cf18c]58 variable.initializer = nullptr;
[7d05e7e]59
[f6e3e34]60 assert.condition = nullptr;
61 assert.message = nullptr;
[28307be]62}
63
64DeclarationNode::~DeclarationNode() {
[4c0b674]65 delete name;
66
[faddbd8]67// delete variable.name;
[2298f728]68 delete variable.assertions;
[67cf18c]69 delete variable.initializer;
[2298f728]70
[702e826]71// delete type;
[28307be]72 delete bitfieldWidth;
[e994912]73
74 delete asmStmt;
[58dd019]75 // asmName, no delete, passed to next stage
[28307be]76 delete initializer;
[f6e3e34]77
78 delete assert.condition;
79 delete assert.message;
[28307be]80}
81
[ba7aa2d]82DeclarationNode * DeclarationNode::clone() const {
83 DeclarationNode * newnode = new DeclarationNode;
[44adf1b]84 newnode->next = maybeCopy( next );
[2298f728]85 newnode->name = name ? new string( *name ) : nullptr;
[c0aa336]86
[5bf685f]87 newnode->type = maybeCopy( type );
[679e644]88 newnode->inLine = inLine;
[a7c90d4]89 newnode->storageClasses = storageClasses;
90 newnode->funcSpecs = funcSpecs;
[5bf685f]91 newnode->bitfieldWidth = maybeCopy( bitfieldWidth );
92 newnode->enumeratorValue.reset( maybeCopy( enumeratorValue.get() ) );
[b87a5ed]93 newnode->hasEllipsis = hasEllipsis;
94 newnode->linkage = linkage;
[bb7422a]95 newnode->asmName = maybeCopy( asmName );
96 newnode->attributes = attributes;
[5bf685f]97 newnode->initializer = maybeCopy( initializer );
[c0aa336]98 newnode->extension = extension;
[5bf685f]99 newnode->asmStmt = maybeCopy( asmStmt );
[c0aa336]100 newnode->error = error;
[3848e0e]101
[faddbd8]102// newnode->variable.name = variable.name ? new string( *variable.name ) : nullptr;
[28307be]103 newnode->variable.tyClass = variable.tyClass;
[5bf685f]104 newnode->variable.assertions = maybeCopy( variable.assertions );
105 newnode->variable.initializer = maybeCopy( variable.initializer );
[3848e0e]106
[5bf685f]107 newnode->assert.condition = maybeCopy( assert.condition );
[bb7422a]108 newnode->assert.message = maybeCopy( assert.message );
[28307be]109 return newnode;
110} // DeclarationNode::clone
[3848e0e]111
[f2f512ba]112void DeclarationNode::print( std::ostream & os, int indent ) const {
[59db689]113 os << string( indent, ' ' );
[2298f728]114 if ( name ) {
115 os << *name << ": ";
[68cd1ce]116 } // if
[51b73452]117
[bb7422a]118 if ( linkage != ast::Linkage::Cforall ) {
119 os << ast::Linkage::name( linkage ) << " ";
[68cd1ce]120 } // if
[3848e0e]121
[bb7422a]122 ast::print( os, storageClasses );
123 ast::print( os, funcSpecs );
[dd020c0]124
[b87a5ed]125 if ( type ) {
126 type->print( os, indent );
127 } else {
128 os << "untyped entity ";
[68cd1ce]129 } // if
[3848e0e]130
[b87a5ed]131 if ( bitfieldWidth ) {
[59db689]132 os << endl << string( indent + 2, ' ' ) << "with bitfield width ";
[b87a5ed]133 bitfieldWidth->printOneLine( os );
[68cd1ce]134 } // if
[3848e0e]135
[2298f728]136 if ( initializer ) {
[59db689]137 os << endl << string( indent + 2, ' ' ) << "with initializer ";
[b87a5ed]138 initializer->printOneLine( os );
[974906e2]139 os << " maybe constructed? " << initializer->get_maybeConstructed();
[68cd1ce]140 } // if
[3848e0e]141
[692c1cc]142 if ( ! attributes.empty() ) {
[4eb3a7c5]143 os << string( indent + 2, ' ' ) << "with attributes" << endl;
[bb7422a]144 for ( ast::ptr<ast::Attribute> const & attr : reverseIterate( attributes ) ) {
[4eb3a7c5]145 os << string( indent + 4, ' ' );
146 ast::print( os, attr, indent + 2 );
[692c1cc]147 } // for
148 } // if
[66406f3]149
[b87a5ed]150 os << endl;
[51b73452]151}
152
[f2f512ba]153void DeclarationNode::printList( std::ostream & os, int indent ) const {
[dc3fbe5]154 ParseList::printList( os, indent );
[b87a5ed]155 if ( hasEllipsis ) {
156 os << string( indent, ' ' ) << "and a variable number of other arguments" << endl;
[68cd1ce]157 } // if
[51b73452]158}
159
[6cef439]160DeclarationNode * DeclarationNode::newFromTypeData( TypeData * type ) {
161 DeclarationNode * newnode = new DeclarationNode;
162 newnode->type = type;
163 return newnode;
164} // DeclarationNode::newFromTypeData
165
[bb7422a]166DeclarationNode * DeclarationNode::newStorageClass( ast::Storage::Classes sc ) {
[ba7aa2d]167 DeclarationNode * newnode = new DeclarationNode;
[08d5507b]168 newnode->storageClasses = sc;
[b87a5ed]169 return newnode;
[dd020c0]170} // DeclarationNode::newStorageClass
[3848e0e]171
[bb7422a]172DeclarationNode * DeclarationNode::newFuncSpecifier( ast::Function::Specs fs ) {
[ba7aa2d]173 DeclarationNode * newnode = new DeclarationNode;
[08d5507b]174 newnode->funcSpecs = fs;
[c1c1112]175 return newnode;
[dd020c0]176} // DeclarationNode::newFuncSpecifier
[c1c1112]177
[bb7422a]178DeclarationNode * DeclarationNode::newAggregate( ast::AggregateDecl::Aggregate kind, const string * name, ExpressionNode * actuals, DeclarationNode * fields, bool body ) {
[ba7aa2d]179 DeclarationNode * newnode = new DeclarationNode;
[b87a5ed]180 newnode->type = new TypeData( TypeData::Aggregate );
[8f6f47d7]181 newnode->type->aggregate.kind = kind;
[692c1cc]182 newnode->type->aggregate.anon = name == nullptr;
183 newnode->type->aggregate.name = newnode->type->aggregate.anon ? new string( DeclarationNode::anonymous.newName() ) : name;
[8f6f47d7]184 newnode->type->aggregate.actuals = actuals;
185 newnode->type->aggregate.fields = fields;
186 newnode->type->aggregate.body = body;
[b87a5ed]187 return newnode;
[984dce6]188} // DeclarationNode::newAggregate
[3848e0e]189
[e4d7c1c]190DeclarationNode * DeclarationNode::newEnum( const string * name, DeclarationNode * constants, bool body, bool typed, DeclarationNode * base, EnumHiding hiding ) {
[ba7aa2d]191 DeclarationNode * newnode = new DeclarationNode;
[b87a5ed]192 newnode->type = new TypeData( TypeData::Enum );
[692c1cc]193 newnode->type->enumeration.anon = name == nullptr;
194 newnode->type->enumeration.name = newnode->type->enumeration.anon ? new string( DeclarationNode::anonymous.newName() ) : name;
[8f6f47d7]195 newnode->type->enumeration.constants = constants;
[ca1a547]196 newnode->type->enumeration.body = body;
[b0d9ff7]197 newnode->type->enumeration.typed = typed;
[e4d7c1c]198 newnode->type->enumeration.hiding = hiding;
[057608a]199 if ( base ) {
200 assert( typed );
201 assert( base->type );
[ed9a1ae]202 newnode->type->base = base->type;
[057608a]203 base->type = nullptr;
204 delete base;
[9e7236f4]205 } // if
206
[b87a5ed]207 return newnode;
[984dce6]208} // DeclarationNode::newEnum
[3848e0e]209
[a46b69c]210DeclarationNode * DeclarationNode::newName( const string * name ) {
[ba7aa2d]211 DeclarationNode * newnode = new DeclarationNode;
[a46b69c]212 assert( ! newnode->name );
[2298f728]213 newnode->name = name;
[a46b69c]214 return newnode;
215} // DeclarationNode::newName
216
[374cb117]217DeclarationNode * DeclarationNode::newEnumConstant( const string * name, ExpressionNode * constant ) {
[a46b69c]218 DeclarationNode * newnode = newName( name );
[4f147cc]219 newnode->enumeratorValue.reset( constant );
[b87a5ed]220 return newnode;
[984dce6]221} // DeclarationNode::newEnumConstant
[3848e0e]222
[374cb117]223DeclarationNode * DeclarationNode::newEnumValueGeneric( const string * name, InitializerNode * init ) {
[057608a]224 if ( nullptr == init ) {
[b0d9ff7]225 return newName( name );
[057608a]226 } else if ( init->get_expression() ) {
227 return newEnumConstant( name, init->get_expression() );
228 } else {
229 DeclarationNode * newnode = newName( name );
230 newnode->initializer = init;
231 return newnode;
[374cb117]232 } // if
[9e7236f4]233} // DeclarationNode::newEnumValueGeneric
[374cb117]234
[1e30df7]235DeclarationNode * DeclarationNode::newEnumInLine( const string name ) {
236 DeclarationNode * newnode = newName( new std::string(name) );
237 newnode->enumInLine = true;
238 return newnode;
239}
240
[bb7422a]241DeclarationNode * DeclarationNode::newTypeParam( ast::TypeDecl::Kind tc, const string * name ) {
[a46b69c]242 DeclarationNode * newnode = newName( name );
[2298f728]243 newnode->type = nullptr;
[28307be]244 newnode->variable.tyClass = tc;
[faddbd8]245 newnode->variable.assertions = nullptr;
[b87a5ed]246 return newnode;
[984dce6]247} // DeclarationNode::newTypeParam
[3848e0e]248
[fb114fa1]249DeclarationNode * DeclarationNode::newTrait( const string * name, DeclarationNode * params, DeclarationNode * asserts ) {
[ba7aa2d]250 DeclarationNode * newnode = new DeclarationNode;
[b87a5ed]251 newnode->type = new TypeData( TypeData::Aggregate );
[2298f728]252 newnode->type->aggregate.name = name;
[bb7422a]253 newnode->type->aggregate.kind = ast::AggregateDecl::Trait;
[8f6f47d7]254 newnode->type->aggregate.params = params;
255 newnode->type->aggregate.fields = asserts;
[b87a5ed]256 return newnode;
[984dce6]257} // DeclarationNode::newTrait
[3848e0e]258
[fb114fa1]259DeclarationNode * DeclarationNode::newTraitUse( const string * name, ExpressionNode * params ) {
[ba7aa2d]260 DeclarationNode * newnode = new DeclarationNode;
[b87a5ed]261 newnode->type = new TypeData( TypeData::AggregateInst );
[8f6f47d7]262 newnode->type->aggInst.aggregate = new TypeData( TypeData::Aggregate );
[bb7422a]263 newnode->type->aggInst.aggregate->aggregate.kind = ast::AggregateDecl::Trait;
[2298f728]264 newnode->type->aggInst.aggregate->aggregate.name = name;
[8f6f47d7]265 newnode->type->aggInst.params = params;
[b87a5ed]266 return newnode;
[984dce6]267} // DeclarationNode::newTraitUse
[3848e0e]268
[25bca42]269DeclarationNode * DeclarationNode::newTypeDecl( const string * name, DeclarationNode * typeParams ) {
[a46b69c]270 DeclarationNode * newnode = newName( name );
[b87a5ed]271 newnode->type = new TypeData( TypeData::Symbolic );
[8f6f47d7]272 newnode->type->symbolic.isTypedef = false;
273 newnode->type->symbolic.params = typeParams;
[b87a5ed]274 return newnode;
[984dce6]275} // DeclarationNode::newTypeDecl
[3848e0e]276
[ce8c12f]277DeclarationNode * DeclarationNode::newPointer( DeclarationNode * qualifiers, OperKinds kind ) {
[ba7aa2d]278 DeclarationNode * newnode = new DeclarationNode;
[ce8c12f]279 newnode->type = new TypeData( kind == OperKinds::PointTo ? TypeData::Pointer : TypeData::Reference );
[71d0eab]280 if ( kind == OperKinds::And ) {
281 // T && is parsed as 'And' operator rather than two references => add a second reference type
282 TypeData * td = new TypeData( TypeData::Reference );
283 td->base = newnode->type;
284 newnode->type = td;
285 }
[c3396e0]286 if ( qualifiers ) {
287 return newnode->addQualifiers( qualifiers );
288 } else {
289 return newnode;
290 } // if
[984dce6]291} // DeclarationNode::newPointer
[3848e0e]292
[ba7aa2d]293DeclarationNode * DeclarationNode::newArray( ExpressionNode * size, DeclarationNode * qualifiers, bool isStatic ) {
294 DeclarationNode * newnode = new DeclarationNode;
[b87a5ed]295 newnode->type = new TypeData( TypeData::Array );
[8f6f47d7]296 newnode->type->array.dimension = size;
297 newnode->type->array.isStatic = isStatic;
[a3525c4]298 newnode->type->array.isVarLen = size && !size->isExpressionType<ast::ConstantExpr *>();
[b87a5ed]299 return newnode->addQualifiers( qualifiers );
[984dce6]300} // DeclarationNode::newArray
[3848e0e]301
[ba7aa2d]302DeclarationNode * DeclarationNode::newVarArray( DeclarationNode * qualifiers ) {
303 DeclarationNode * newnode = new DeclarationNode;
[b87a5ed]304 newnode->type = new TypeData( TypeData::Array );
[2298f728]305 newnode->type->array.dimension = nullptr;
[8f6f47d7]306 newnode->type->array.isStatic = false;
307 newnode->type->array.isVarLen = true;
[b87a5ed]308 return newnode->addQualifiers( qualifiers );
[3848e0e]309}
310
[ba7aa2d]311DeclarationNode * DeclarationNode::newBitfield( ExpressionNode * size ) {
312 DeclarationNode * newnode = new DeclarationNode;
[b87a5ed]313 newnode->bitfieldWidth = size;
314 return newnode;
[3848e0e]315}
316
[ba7aa2d]317DeclarationNode * DeclarationNode::newTuple( DeclarationNode * members ) {
318 DeclarationNode * newnode = new DeclarationNode;
[b87a5ed]319 newnode->type = new TypeData( TypeData::Tuple );
[8f6f47d7]320 newnode->type->tuple = members;
[b87a5ed]321 return newnode;
[3848e0e]322}
323
[f855545]324DeclarationNode * DeclarationNode::newTypeof( ExpressionNode * expr, bool basetypeof ) {
[ba7aa2d]325 DeclarationNode * newnode = new DeclarationNode;
[f855545]326 newnode->type = new TypeData( basetypeof ? TypeData::Basetypeof : TypeData::Typeof );
[8f6f47d7]327 newnode->type->typeexpr = expr;
[b87a5ed]328 return newnode;
[3848e0e]329}
330
[a46b69c]331DeclarationNode * DeclarationNode::newFunction( const string * name, DeclarationNode * ret, DeclarationNode * param, StatementNode * body ) {
332 DeclarationNode * newnode = newName( name );
333 newnode->type = new TypeData( TypeData::Function );
334 newnode->type->function.params = param;
335 newnode->type->function.body = body;
336
337 if ( ret ) {
338 newnode->type->base = ret->type;
339 ret->type = nullptr;
340 delete ret;
341 } // if
342
343 return newnode;
344} // DeclarationNode::newFunction
345
[25bca42]346DeclarationNode * DeclarationNode::newAttribute( const string * name, ExpressionNode * expr ) {
[44a81853]347 DeclarationNode * newnode = new DeclarationNode;
348 newnode->type = nullptr;
[bb7422a]349 std::vector<ast::ptr<ast::Expr>> exprs;
[44a81853]350 buildList( expr, exprs );
[b38f6da]351 newnode->attributes.push_back( new ast::Attribute( *name, std::move( exprs ) ) );
[44a81853]352 delete name;
353 return newnode;
354}
355
[2d019af]356DeclarationNode * DeclarationNode::newDirectiveStmt( StatementNode * stmt ) {
357 DeclarationNode * newnode = new DeclarationNode;
358 newnode->directiveStmt = stmt;
359 return newnode;
360}
361
[e994912]362DeclarationNode * DeclarationNode::newAsmStmt( StatementNode * stmt ) {
363 DeclarationNode * newnode = new DeclarationNode;
364 newnode->asmStmt = stmt;
365 return newnode;
366}
367
[bb7422a]368DeclarationNode * DeclarationNode::newStaticAssert( ExpressionNode * condition, ast::Expr * message ) {
[f6e3e34]369 DeclarationNode * newnode = new DeclarationNode;
370 newnode->assert.condition = condition;
371 newnode->assert.message = message;
372 return newnode;
373}
374
[bb7422a]375static void appendError( string & dst, const string & src ) {
[5b639ee]376 if ( src.empty() ) return;
377 if ( dst.empty() ) { dst = src; return; }
378 dst += ", " + src;
379} // appendError
380
[ba7aa2d]381void DeclarationNode::checkQualifiers( const TypeData * src, const TypeData * dst ) {
[bb7422a]382 const ast::CV::Qualifiers qsrc = src->qualifiers, qdst = dst->qualifiers; // optimization
383 const ast::CV::Qualifiers duplicates = qsrc & qdst;
384
385 if ( duplicates.any() ) {
386 std::stringstream str;
387 str << "duplicate ";
388 ast::print( str, duplicates );
389 str << "qualifier(s)";
390 appendError( error, str.str() );
[a7c90d4]391 } // for
[c1c1112]392} // DeclarationNode::checkQualifiers
393
[a7c90d4]394void DeclarationNode::checkSpecifiers( DeclarationNode * src ) {
[bb7422a]395 ast::Function::Specs fsDups = funcSpecs & src->funcSpecs;
396 if ( fsDups.any() ) {
397 std::stringstream str;
398 str << "duplicate ";
399 ast::print( str, fsDups );
400 str << "function specifier(s)";
401 appendError( error, str.str() );
[dd020c0]402 } // if
403
[bb7422a]404 // Skip if everything is unset.
405 if ( storageClasses.any() && src->storageClasses.any() ) {
406 ast::Storage::Classes dups = storageClasses & src->storageClasses;
407 // Check for duplicates.
408 if ( dups.any() ) {
409 std::stringstream str;
410 str << "duplicate ";
411 ast::print( str, dups );
412 str << "storage class(es)";
413 appendError( error, str.str() );
414 // Check for conflicts.
415 } else if ( !src->storageClasses.is_threadlocal_any() ) {
416 std::stringstream str;
417 str << "conflicting ";
418 ast::print( str, ast::Storage::Classes( 1 << storageClasses.ffs() ) );
419 str << "& ";
420 ast::print( str, ast::Storage::Classes( 1 << src->storageClasses.ffs() ) );
421 str << "storage classes";
422 appendError( error, str.str() );
423 // FIX to preserve invariant of one basic storage specifier
424 src->storageClasses.reset();
425 }
[b6424d9]426 } // if
[dd020c0]427
[a7c90d4]428 appendError( error, src->error );
429} // DeclarationNode::checkSpecifiers
[b6424d9]430
[4eb3a7c5]431DeclarationNode * DeclarationNode::copySpecifiers( DeclarationNode * q, bool copyattr ) {
[6f95000]432 funcSpecs |= q->funcSpecs;
433 storageClasses |= q->storageClasses;
[c0aa336]434
[4eb3a7c5]435 if ( copyattr ) {
436 std::vector<ast::ptr<ast::Attribute>> tmp;
437 tmp.reserve( q->attributes.size() );
438 for ( auto const & attr : q->attributes ) {
439 tmp.emplace_back( ast::shallowCopy( attr.get() ) );
440 } // for
441 spliceBegin( attributes, tmp );
442 } // if
[bb7422a]443
[b6424d9]444 return this;
[a7c90d4]445} // DeclarationNode::copySpecifiers
[b6424d9]446
[ba7aa2d]447DeclarationNode * DeclarationNode::addQualifiers( DeclarationNode * q ) {
[af9da5f]448 if ( ! q ) { return this; } // empty qualifier
[101e0bd]449
[a7c90d4]450 checkSpecifiers( q );
451 copySpecifiers( q );
[101e0bd]452
[c38ae92]453 if ( ! q->type ) { delete q; return this; }
[101e0bd]454
455 if ( ! type ) {
[c38ae92]456 type = q->type; // reuse structure
[1b772749]457 q->type = nullptr;
458 delete q;
[101e0bd]459 return this;
460 } // if
461
[a7c90d4]462 checkQualifiers( type, q->type );
[e048ece]463 TypeData::BuiltinType const builtin = type->builtintype;
464 if ( (builtin == TypeData::Zero || builtin == TypeData::One) && q->type->qualifiers.any() && error.length() == 0 ) {
465 SemanticWarning( yylloc, Warning::BadQualifiersZeroOne, TypeData::builtinTypeNames[builtin] );
[9dc31c10]466 } // if
[af60383]467 type = ::addQualifiers( q->type, type );
468 q->type = nullptr;
[6ef2d81]469
[b87a5ed]470 delete q;
471 return this;
[101e0bd]472} // addQualifiers
[3848e0e]473
[af60383]474DeclarationNode * DeclarationNode::addType( DeclarationNode * o, bool copyattr ) {
475 if ( !o ) return this;
476
477 checkSpecifiers( o );
478 copySpecifiers( o, copyattr );
479 if ( o->type ) {
480 type = ::addType( o->type, type, o->attributes );
481 o->type = nullptr;
[101e0bd]482 } // if
[af60383]483 if ( o->bitfieldWidth ) {
484 bitfieldWidth = o->bitfieldWidth;
[68cd1ce]485 } // if
[3848e0e]486
[af60383]487 // there may be typedefs chained onto the type
488 if ( o->next ) {
489 set_last( o->next->clone() );
[68cd1ce]490 } // if
[66406f3]491
[af60383]492 delete o;
[b87a5ed]493 return this;
[3848e0e]494}
495
[f135b50]496DeclarationNode * DeclarationNode::addEnumBase( DeclarationNode * o ) {
[af60383]497 if ( o && o->type ) {
498 type->base = o->type;
[b38f6da]499 } // if
[f135b50]500 delete o;
501 return this;
502}
503
[2583407]504// This code handles a special issue with the attribute transparent_union.
505//
506// typedef union U { int i; } typedef_name __attribute__(( aligned(16) )) __attribute__(( transparent_union ))
507//
508// Here the attribute aligned goes with the typedef_name, so variables declared of this type are
509// aligned. However, the attribute transparent_union must be moved from the typedef_name to
510// alias union U. Currently, this is the only know attribute that must be moved from typedef to
511// alias.
512static void moveUnionAttribute( DeclarationNode * decl, DeclarationNode * unionDecl ) {
513 assert( decl->type->kind == TypeData::Symbolic );
514 assert( decl->type->symbolic.isTypedef );
515 assert( unionDecl->type->kind == TypeData::Aggregate );
516
517 if ( unionDecl->type->aggregate.kind != ast::AggregateDecl::Union ) return;
518
519 // Ignore the Aggregate_t::attributes. Why did we add that before the rework?
520 for ( auto attr = decl->attributes.begin() ; attr != decl->attributes.end() ; ) {
521 if ( (*attr)->name == "transparent_union" || (*attr)->name == "__transparent_union__" ) {
522 unionDecl->attributes.emplace_back( attr->release() );
523 attr = decl->attributes.erase( attr );
524 } else {
525 ++attr;
526 }
527 }
528}
529
530// Helper for addTypedef, handles the case where the typedef wraps an
531// aggregate declaration (not a type), returns a chain of nodes.
532static DeclarationNode * addTypedefAggr(
533 DeclarationNode * olddecl, TypeData * newtype ) {
534 TypeData *& oldaggr = olddecl->type->aggInst.aggregate;
535
536 // Handle anonymous aggregates: typedef struct { int i; } foo
537 // Give the typedefed type a consistent name across translation units.
538 if ( oldaggr->aggregate.anon ) {
539 delete oldaggr->aggregate.name;
540 oldaggr->aggregate.name = new string( "__anonymous_" + *olddecl->name );
541 oldaggr->aggregate.anon = false;
542 oldaggr->qualifiers.reset();
543 }
544
545 // Replace the wrapped TypeData with a forward declaration.
546 TypeData * newaggr = new TypeData( TypeData::Aggregate );
547 newaggr->aggregate.kind = oldaggr->aggregate.kind;
548 newaggr->aggregate.name = oldaggr->aggregate.name ? new string( *oldaggr->aggregate.name ) : nullptr;
549 newaggr->aggregate.body = false;
550 newaggr->aggregate.anon = oldaggr->aggregate.anon;
551 swap( newaggr, oldaggr );
552
553 newtype->base = olddecl->type;
554 olddecl->type = newtype;
555 DeclarationNode * newdecl = new DeclarationNode;
556 newdecl->type = newaggr;
557 newdecl->next = olddecl;
558
559 moveUnionAttribute( olddecl, newdecl );
560
561 return newdecl;
562}
563
564// Helper for addTypedef, handles the case where the typedef wraps an
565// enumeration declaration (not a type), returns a chain of nodes.
566static DeclarationNode * addTypedefEnum(
567 DeclarationNode * olddecl, TypeData * newtype ) {
568 TypeData *& oldenum = olddecl->type->aggInst.aggregate;
569
570 // Handle anonymous enumeration: typedef enum { A, B, C } foo
571 // Give the typedefed type a consistent name across translation units.
572 if ( oldenum->enumeration.anon ) {
573 delete oldenum->enumeration.name;
574 oldenum->enumeration.name = new string( "__anonymous_" + *olddecl->name );
575 oldenum->enumeration.anon = false;
576 oldenum->qualifiers.reset();
577 }
578
579 // Replace the wrapped TypeData with a forward declaration.
580 TypeData * newenum = new TypeData( TypeData::Enum );
581 newenum->enumeration.name = oldenum->enumeration.name ? new string( *oldenum->enumeration.name ) : nullptr;
582 newenum->enumeration.body = false;
583 newenum->enumeration.anon = oldenum->enumeration.anon;
584 newenum->enumeration.typed = oldenum->enumeration.typed;
585 newenum->enumeration.hiding = oldenum->enumeration.hiding;
586 swap( newenum, oldenum );
587
588 newtype->base = olddecl->type;
589 olddecl->type = newtype;
590 DeclarationNode * newdecl = new DeclarationNode;
591 newdecl->type = newenum;
592 newdecl->next = olddecl;
593
594 return newdecl;
595}
596
[057608a]597// Wrap the declaration in a typedef. It actually does that by modifying the
598// existing declaration, and may split it into two declarations.
599// This only happens if the wrapped type is actually a declaration of a SUE
600// type. If it does, the DeclarationNode for the SUE declaration is the node
601// returned, make sure later transformations are applied to the right node.
[ba7aa2d]602DeclarationNode * DeclarationNode::addTypedef() {
603 TypeData * newtype = new TypeData( TypeData::Symbolic );
[2298f728]604 newtype->symbolic.params = nullptr;
[8f6f47d7]605 newtype->symbolic.isTypedef = true;
[2298f728]606 newtype->symbolic.name = name ? new string( *name ) : nullptr;
[2583407]607 // If this typedef is wrapping an aggregate, separate them out.
608 if ( TypeData::AggregateInst == type->kind
609 && TypeData::Aggregate == type->aggInst.aggregate->kind
610 && type->aggInst.aggregate->aggregate.body ) {
611 return addTypedefAggr( this, newtype );
612 // If this typedef is wrapping an enumeration, separate them out.
613 } else if ( TypeData::AggregateInst == type->kind
614 && TypeData::Enum == type->aggInst.aggregate->kind
615 && type->aggInst.aggregate->enumeration.body ) {
616 return addTypedefEnum( this, newtype );
617 // There is no internal declaration, just a type.
618 } else {
619 newtype->base = type;
620 type = newtype;
621 return this;
622 }
[3848e0e]623}
624
[ba7aa2d]625DeclarationNode * DeclarationNode::addAssertions( DeclarationNode * assertions ) {
[bb7422a]626 if ( variable.tyClass != ast::TypeDecl::NUMBER_OF_KINDS ) {
[702e826]627 if ( variable.assertions ) {
[dc3fbe5]628 variable.assertions->set_last( assertions );
[702e826]629 } else {
630 variable.assertions = assertions;
631 } // if
632 return this;
[2298f728]633 } // if
634
[b87a5ed]635 assert( type );
636 switch ( type->kind ) {
[0d0931d]637 case TypeData::Symbolic:
[8f6f47d7]638 if ( type->symbolic.assertions ) {
[dc3fbe5]639 type->symbolic.assertions->set_last( assertions );
[b87a5ed]640 } else {
[8f6f47d7]641 type->symbolic.assertions = assertions;
[68cd1ce]642 } // if
[b87a5ed]643 break;
[0d0931d]644 default:
[b87a5ed]645 assert( false );
[68cd1ce]646 } // switch
[974906e2]647
[b87a5ed]648 return this;
[51b73452]649}
650
[fb114fa1]651DeclarationNode * DeclarationNode::addName( string * newname ) {
[2298f728]652 assert( ! name );
653 name = newname;
[b87a5ed]654 return this;
[51b73452]655}
656
[c0aa336]657DeclarationNode * DeclarationNode::addAsmName( DeclarationNode * newname ) {
[58dd019]658 assert( ! asmName );
[c0aa336]659 asmName = newname ? newname->asmName : nullptr;
660 return this->addQualifiers( newname );
[58dd019]661}
662
[ba7aa2d]663DeclarationNode * DeclarationNode::addBitfield( ExpressionNode * size ) {
[b87a5ed]664 bitfieldWidth = size;
665 return this;
[51b73452]666}
667
[ba7aa2d]668DeclarationNode * DeclarationNode::addVarArgs() {
[b87a5ed]669 assert( type );
670 hasEllipsis = true;
671 return this;
[51b73452]672}
673
[c453ac4]674DeclarationNode * DeclarationNode::addFunctionBody( StatementNode * body, ExpressionNode * withExprs ) {
[b87a5ed]675 assert( type );
676 assert( type->kind == TypeData::Function );
[2298f728]677 assert( ! type->function.body );
[8f6f47d7]678 type->function.body = body;
[c453ac4]679 type->function.withExprs = withExprs;
[b87a5ed]680 return this;
[51b73452]681}
682
[ba7aa2d]683DeclarationNode * DeclarationNode::addOldDeclList( DeclarationNode * list ) {
[b87a5ed]684 assert( type );
685 assert( type->kind == TypeData::Function );
[2298f728]686 assert( ! type->function.oldDeclList );
[8f6f47d7]687 type->function.oldDeclList = list;
[b87a5ed]688 return this;
[51b73452]689}
690
[c0aa336]691DeclarationNode * DeclarationNode::setBase( TypeData * newType ) {
[b87a5ed]692 if ( type ) {
[af60383]693 type->setLastBase( newType );
[b87a5ed]694 } else {
695 type = newType;
[68cd1ce]696 } // if
[c0aa336]697 return this;
[3848e0e]698}
699
[c0aa336]700DeclarationNode * DeclarationNode::copyAttribute( DeclarationNode * a ) {
701 if ( a ) {
[bb7422a]702 spliceBegin( attributes, a->attributes );
[c0aa336]703 a->attributes.clear();
704 } // if
705 return this;
706} // copyAttribute
707
[ba7aa2d]708DeclarationNode * DeclarationNode::addPointer( DeclarationNode * p ) {
[b87a5ed]709 if ( p ) {
[6926a6d]710 assert( p->type->kind == TypeData::Pointer || p->type->kind == TypeData::Reference );
[c0aa336]711 setBase( p->type );
[2298f728]712 p->type = nullptr;
[c0aa336]713 copyAttribute( p );
[b87a5ed]714 delete p;
[68cd1ce]715 } // if
[b87a5ed]716 return this;
[3848e0e]717}
718
[ba7aa2d]719DeclarationNode * DeclarationNode::addArray( DeclarationNode * a ) {
[b87a5ed]720 if ( a ) {
721 assert( a->type->kind == TypeData::Array );
[c0aa336]722 setBase( a->type );
[2298f728]723 a->type = nullptr;
[c0aa336]724 copyAttribute( a );
[b87a5ed]725 delete a;
[68cd1ce]726 } // if
[b87a5ed]727 return this;
[51b73452]728}
729
[ba7aa2d]730DeclarationNode * DeclarationNode::addNewPointer( DeclarationNode * p ) {
[b87a5ed]731 if ( p ) {
[e6cee92]732 assert( p->type->kind == TypeData::Pointer || p->type->kind == TypeData::Reference );
[b87a5ed]733 if ( type ) {
[af60383]734 p->type->base = makeNewBase( type );
[2298f728]735 type = nullptr;
[68cd1ce]736 } // if
[b87a5ed]737 delete this;
738 return p;
739 } else {
740 return this;
[68cd1ce]741 } // if
[51b73452]742}
743
[ba7aa2d]744DeclarationNode * DeclarationNode::addNewArray( DeclarationNode * a ) {
[0d0931d]745 if ( ! a ) return this;
[738e304]746 assert( a->type->kind == TypeData::Array );
747 if ( type ) {
[af60383]748 a->type->setLastBase( makeNewBase( type ) );
[738e304]749 type = nullptr;
[68cd1ce]750 } // if
[738e304]751 delete this;
752 return a;
[51b73452]753}
[3848e0e]754
[ba7aa2d]755DeclarationNode * DeclarationNode::addParamList( DeclarationNode * params ) {
756 TypeData * ftype = new TypeData( TypeData::Function );
[8f6f47d7]757 ftype->function.params = params;
[c0aa336]758 setBase( ftype );
[b87a5ed]759 return this;
[3848e0e]760}
761
[ba7aa2d]762static TypeData * addIdListToType( TypeData * type, DeclarationNode * ids ) {
[b87a5ed]763 if ( type ) {
764 if ( type->kind != TypeData::Function ) {
765 type->base = addIdListToType( type->base, ids );
766 } else {
[8f6f47d7]767 type->function.idList = ids;
[68cd1ce]768 } // if
[b87a5ed]769 return type;
[3848e0e]770 } else {
[ba7aa2d]771 TypeData * newtype = new TypeData( TypeData::Function );
[8f6f47d7]772 newtype->function.idList = ids;
[b87a5ed]773 return newtype;
[68cd1ce]774 } // if
[2298f728]775} // addIdListToType
[974906e2]776
[ba7aa2d]777DeclarationNode * DeclarationNode::addIdList( DeclarationNode * ids ) {
[b87a5ed]778 type = addIdListToType( type, ids );
779 return this;
[3848e0e]780}
781
[ba7aa2d]782DeclarationNode * DeclarationNode::addInitializer( InitializerNode * init ) {
[b87a5ed]783 initializer = init;
784 return this;
[3848e0e]785}
786
[67cf18c]787DeclarationNode * DeclarationNode::addTypeInitializer( DeclarationNode * init ) {
[bb7422a]788 assertf( variable.tyClass != ast::TypeDecl::NUMBER_OF_KINDS, "Called addTypeInitializer on something that isn't a type variable." );
[67cf18c]789 variable.initializer = init;
790 return this;
791}
792
[a46b69c]793DeclarationNode * DeclarationNode::cloneType( string * name ) {
794 DeclarationNode * newnode = newName( name );
[5bf685f]795 newnode->type = maybeCopy( type );
[a7c90d4]796 newnode->copySpecifiers( this );
[b87a5ed]797 return newnode;
[3848e0e]798}
799
[4eb3a7c5]800DeclarationNode * DeclarationNode::cloneBaseType( DeclarationNode * o, bool copyattr ) {
[2298f728]801 if ( ! o ) return nullptr;
[4eb3a7c5]802 o->copySpecifiers( this, copyattr );
[2298f728]803 if ( type ) {
[af60383]804 o->type = ::cloneBaseType( type, o->type );
[68cd1ce]805 } // if
[b87a5ed]806 return o;
[51b73452]807}
808
[ba7aa2d]809DeclarationNode * DeclarationNode::extractAggregate() const {
[b87a5ed]810 if ( type ) {
[ba7aa2d]811 TypeData * ret = typeextractAggregate( type );
[b87a5ed]812 if ( ret ) {
[ba7aa2d]813 DeclarationNode * newnode = new DeclarationNode;
[b87a5ed]814 newnode->type = ret;
[4eb3a7c5]815 if ( ret->kind == TypeData::Aggregate ) {
816 newnode->attributes.swap( ret->aggregate.attributes );
817 } // if
[b87a5ed]818 return newnode;
[843054c2]819 } // if
820 } // if
[2298f728]821 return nullptr;
[3848e0e]822}
823
[45e753c]824// Get the non-anonymous name of the instance type of the declaration,
825// if one exists.
826static const std::string * getInstTypeOfName( ast::Decl * decl ) {
827 if ( auto dwt = dynamic_cast<ast::DeclWithType *>( decl ) ) {
828 if ( auto aggr = dynamic_cast<ast::BaseInstType const *>( dwt->get_type() ) ) {
829 if ( aggr->name.find("anonymous") == std::string::npos ) {
830 return &aggr->name;
831 }
832 }
833 }
834 return nullptr;
835}
836
[b38f6da]837void buildList( DeclarationNode * firstNode, std::vector<ast::ptr<ast::Decl>> & outputList ) {
[a16764a6]838 SemanticErrorException errors;
[bb7422a]839 std::back_insert_iterator<std::vector<ast::ptr<ast::Decl>>> out( outputList );
[2298f728]840
[dc3fbe5]841 for ( const DeclarationNode * cur = firstNode ; cur ; cur = cur->next ) {
[b87a5ed]842 try {
[45e753c]843 bool extracted_named = false;
[692c1cc]844
[ba7aa2d]845 if ( DeclarationNode * extr = cur->extractAggregate() ) {
[78e2fca]846 assert( cur->type );
[692c1cc]847
[45e753c]848 if ( ast::Decl * decl = extr->build() ) {
[692c1cc]849 *out++ = decl;
[3d7e53b]850
851 // need to remember the cases where a declaration contains an anonymous aggregate definition
852 assert( extr->type );
853 if ( extr->type->kind == TypeData::Aggregate ) {
[692c1cc]854 // typedef struct { int A } B is the only case?
[4eb3a7c5]855 extracted_named = ! extr->type->aggregate.anon;
[3d7e53b]856 } else if ( extr->type->kind == TypeData::Enum ) {
[692c1cc]857 // typedef enum { A } B is the only case?
[4eb3a7c5]858 extracted_named = ! extr->type->enumeration.anon;
[45e753c]859 } else {
860 extracted_named = true;
[3d7e53b]861 }
[843054c2]862 } // if
[f39096c]863 delete extr;
[843054c2]864 } // if
[2298f728]865
[45e753c]866 if ( ast::Decl * decl = cur->build() ) {
867 if ( "" == decl->name && !cur->get_inLine() ) {
868 // Don't include anonymous declaration for named aggregates,
869 // but do include them for anonymous aggregates, e.g.:
870 // struct S {
871 // struct T { int x; }; // no anonymous member
872 // struct { int y; }; // anonymous member
873 // struct T; // anonymous member
874 // };
875 if ( extracted_named ) {
876 continue;
877 }
[692c1cc]878
[45e753c]879 if ( auto name = getInstTypeOfName( decl ) ) {
880 // Temporary: warn about anonymous member declarations of named types, since
881 // this conflicts with the syntax for the forward declaration of an anonymous type.
882 SemanticWarning( cur->location, Warning::AggrForwardDecl, name->c_str() );
883 }
[e07caa2]884 } // if
[45e753c]885 *out++ = decl;
[843054c2]886 } // if
[45e753c]887 } catch ( SemanticErrorException & e ) {
[b87a5ed]888 errors.append( e );
[843054c2]889 } // try
[e07caa2]890 } // for
[2298f728]891
[b87a5ed]892 if ( ! errors.isEmpty() ) {
893 throw errors;
[843054c2]894 } // if
[2298f728]895} // buildList
[3848e0e]896
[3d7e53b]897// currently only builds assertions, function parameters, and return values
[6611177]898void buildList( DeclarationNode * firstNode, std::vector<ast::ptr<ast::DeclWithType>> & outputList ) {
[a16764a6]899 SemanticErrorException errors;
[bb7422a]900 std::back_insert_iterator<std::vector<ast::ptr<ast::DeclWithType>>> out( outputList );
[43c89a7]901
[dc3fbe5]902 for ( const DeclarationNode * cur = firstNode; cur; cur = cur->next ) {
[b87a5ed]903 try {
[bb7422a]904 ast::Decl * decl = cur->build();
[45e753c]905 assertf( decl, "buildList: build for ast::DeclWithType." );
[bb7422a]906 if ( ast::DeclWithType * dwt = dynamic_cast<ast::DeclWithType *>( decl ) ) {
[47498bd]907 dwt->location = cur->location;
[3ca7ef3]908 *out++ = dwt;
[bb7422a]909 } else if ( ast::StructDecl * agg = dynamic_cast<ast::StructDecl *>( decl ) ) {
[3d7e53b]910 // e.g., int foo(struct S) {}
[bb7422a]911 auto inst = new ast::StructInstType( agg->name );
912 auto obj = new ast::ObjectDecl( cur->location, "", inst );
913 obj->linkage = linkage;
[3ca7ef3]914 *out++ = obj;
[47498bd]915 delete agg;
[bb7422a]916 } else if ( ast::UnionDecl * agg = dynamic_cast<ast::UnionDecl *>( decl ) ) {
[3d7e53b]917 // e.g., int foo(union U) {}
[bb7422a]918 auto inst = new ast::UnionInstType( agg->name );
919 auto obj = new ast::ObjectDecl( cur->location,
920 "", inst, nullptr, ast::Storage::Classes(),
921 linkage );
[3ca7ef3]922 *out++ = obj;
[bb7422a]923 } else if ( ast::EnumDecl * agg = dynamic_cast<ast::EnumDecl *>( decl ) ) {
[3d7e53b]924 // e.g., int foo(enum E) {}
[bb7422a]925 auto inst = new ast::EnumInstType( agg->name );
926 auto obj = new ast::ObjectDecl( cur->location,
927 "",
928 inst,
929 nullptr,
930 ast::Storage::Classes(),
931 linkage
932 );
[3ca7ef3]933 *out++ = obj;
[45e753c]934 } else {
935 assertf( false, "buildList: Could not convert to ast::DeclWithType." );
[843054c2]936 } // if
[45e753c]937 } catch ( SemanticErrorException & e ) {
[b87a5ed]938 errors.append( e );
[843054c2]939 } // try
[3a5131ed]940 } // for
941
[b87a5ed]942 if ( ! errors.isEmpty() ) {
943 throw errors;
[843054c2]944 } // if
[2298f728]945} // buildList
[3848e0e]946
[bb7422a]947void buildTypeList( const DeclarationNode * firstNode,
948 std::vector<ast::ptr<ast::Type>> & outputList ) {
[a16764a6]949 SemanticErrorException errors;
[bb7422a]950 std::back_insert_iterator<std::vector<ast::ptr<ast::Type>>> out( outputList );
[2298f728]951
[dc3fbe5]952 for ( const DeclarationNode * cur = firstNode ; cur ; cur = cur->next ) {
[b87a5ed]953 try {
[ba7aa2d]954 * out++ = cur->buildType();
[45e753c]955 } catch ( SemanticErrorException & e ) {
[b87a5ed]956 errors.append( e );
[843054c2]957 } // try
[45e753c]958 } // for
[2298f728]959
[b87a5ed]960 if ( ! errors.isEmpty() ) {
961 throw errors;
[843054c2]962 } // if
[2298f728]963} // buildTypeList
[51b73452]964
[bb7422a]965ast::Decl * DeclarationNode::build() const {
[a16764a6]966 if ( ! error.empty() ) SemanticError( this, error + " in declaration of " );
[2298f728]967
[e994912]968 if ( asmStmt ) {
[bb7422a]969 auto stmt = strict_dynamic_cast<ast::AsmStmt *>( asmStmt->build() );
970 return new ast::AsmDecl( stmt->location, stmt );
[e994912]971 } // if
[2d019af]972 if ( directiveStmt ) {
[bb7422a]973 auto stmt = strict_dynamic_cast<ast::DirectiveStmt *>( directiveStmt->build() );
974 return new ast::DirectiveDecl( stmt->location, stmt );
[2d019af]975 } // if
[e994912]976
[bb7422a]977 if ( variable.tyClass != ast::TypeDecl::NUMBER_OF_KINDS ) {
[f0ecf9b]978 // otype is internally converted to dtype + otype parameters
[bb7422a]979 static const ast::TypeDecl::Kind kindMap[] = { ast::TypeDecl::Dtype, ast::TypeDecl::Dtype, ast::TypeDecl::Dtype, ast::TypeDecl::Ftype, ast::TypeDecl::Ttype, ast::TypeDecl::Dimension };
980 static_assert( sizeof(kindMap) / sizeof(kindMap[0]) == ast::TypeDecl::NUMBER_OF_KINDS, "DeclarationNode::build: kindMap is out of sync." );
[8f60f0b]981 assertf( variable.tyClass < sizeof(kindMap)/sizeof(kindMap[0]), "Variable's tyClass is out of bounds." );
[bb7422a]982 ast::TypeDecl * ret = new ast::TypeDecl( location,
983 *name,
984 ast::Storage::Classes(),
985 (ast::Type *)nullptr,
986 kindMap[ variable.tyClass ],
987 variable.tyClass == ast::TypeDecl::Otype || variable.tyClass == ast::TypeDecl::DStype,
988 variable.initializer ? variable.initializer->buildType() : nullptr
989 );
990 buildList( variable.assertions, ret->assertions );
[2298f728]991 return ret;
992 } // if
993
[843054c2]994 if ( type ) {
[dd020c0]995 // Function specifiers can only appear on a function definition/declaration.
996 //
997 // inline _Noreturn int f(); // allowed
998 // inline _Noreturn int g( int i ); // allowed
999 // inline _Noreturn int i; // disallowed
[fb04321]1000 if ( type->kind != TypeData::Function && funcSpecs.any() ) {
[a16764a6]1001 SemanticError( this, "invalid function specifier for " );
[dd020c0]1002 } // if
[284da8c]1003 // Forall qualifier can only appear on a function/aggregate definition/declaration.
1004 //
1005 // forall int f(); // allowed
1006 // forall int g( int i ); // allowed
1007 // forall int i; // disallowed
1008 if ( type->kind != TypeData::Function && type->forall ) {
1009 SemanticError( this, "invalid type qualifier for " );
1010 } // if
[3ed994e]1011 bool isDelete = initializer && initializer->get_isDelete();
[bb7422a]1012 ast::Decl * decl = buildDecl(
1013 type,
1014 name ? *name : string( "" ),
1015 storageClasses,
1016 maybeBuild( bitfieldWidth ),
1017 funcSpecs,
1018 linkage,
1019 asmName,
1020 isDelete ? nullptr : maybeBuild( initializer ),
1021 copy( attributes )
1022 )->set_extension( extension );
[3ed994e]1023 if ( isDelete ) {
[bb7422a]1024 auto dwt = strict_dynamic_cast<ast::DeclWithType *>( decl );
[3ed994e]1025 dwt->isDeleted = true;
1026 }
1027 return decl;
[843054c2]1028 } // if
[2298f728]1029
[f6e3e34]1030 if ( assert.condition ) {
[bb7422a]1031 auto cond = maybeBuild( assert.condition );
1032 auto msg = strict_dynamic_cast<ast::ConstantExpr *>( maybeCopy( assert.message ) );
1033 return new ast::StaticAssertDecl( location, cond, msg );
[f6e3e34]1034 }
1035
[dd020c0]1036 // SUE's cannot have function specifiers, either
1037 //
[79aae15]1038 // inline _Noreturn struct S { ... }; // disallowed
1039 // inline _Noreturn enum E { ... }; // disallowed
[fb04321]1040 if ( funcSpecs.any() ) {
[a16764a6]1041 SemanticError( this, "invalid function specifier for " );
[843054c2]1042 } // if
[e874605]1043 if ( enumInLine ) {
[bb7422a]1044 return new ast::InlineMemberDecl( location,
1045 *name, (ast::Type*)nullptr, storageClasses, linkage );
[e874605]1046 } // if
[dd020c0]1047 assertf( name, "ObjectDecl must a have name\n" );
[bb7422a]1048 auto ret = new ast::ObjectDecl( location,
1049 *name,
1050 (ast::Type*)nullptr,
1051 maybeBuild( initializer ),
1052 storageClasses,
1053 linkage,
1054 maybeBuild( bitfieldWidth )
1055 );
1056 ret->asmName = asmName;
1057 ret->extension = extension;
1058 return ret;
[51b73452]1059}
1060
[bb7422a]1061ast::Type * DeclarationNode::buildType() const {
[b87a5ed]1062 assert( type );
[974906e2]1063
[b87a5ed]1064 switch ( type->kind ) {
[0d0931d]1065 case TypeData::Enum:
1066 case TypeData::Aggregate: {
[bb7422a]1067 ast::BaseInstType * ret =
1068 buildComAggInst( type, copy( attributes ), linkage );
1069 buildList( type->aggregate.actuals, ret->params );
[0d0931d]1070 return ret;
1071 }
1072 case TypeData::Symbolic: {
[bb7422a]1073 ast::TypeInstType * ret = new ast::TypeInstType(
1074 *type->symbolic.name,
1075 // This is just a default, the true value is not known yet.
1076 ast::TypeDecl::Dtype,
1077 buildQualifiers( type ),
1078 copy( attributes ) );
1079 buildList( type->symbolic.actuals, ret->params );
[0d0931d]1080 return ret;
1081 }
1082 default:
[bb7422a]1083 ast::Type * simpletypes = typebuild( type );
1084 // copy because member is const
1085 simpletypes->attributes = attributes;
[c0aa336]1086 return simpletypes;
[b87a5ed]1087 } // switch
[3848e0e]1088}
1089
[b87a5ed]1090// Local Variables: //
1091// tab-width: 4 //
1092// mode: c++ //
1093// compile-command: "make install" //
1094// End: //
Note: See TracBrowser for help on using the repository browser.