source: src/Parser/TypeData.cc @ 60a8062

ADTarm-ehast-experimentalenumforall-pointer-decayjacob/cs343-translationjenkins-sandboxnew-astnew-ast-unique-exprpthread-emulationqualifiedEnum
Last change on this file since 60a8062 was 07de76b, checked in by Peter A. Buhr <pabuhr@…>, 4 years ago

remove file TypeVar?.h* and put TypeVar::Kind into TypeDecl?, move LinkageSpec?.* from directory Parse to SynTree?

  • Property mode set to 100644
File size: 36.6 KB
RevLine 
[b87a5ed]1//
2// Cforall Version 1.0.0 Copyright (C) 2015 University of Waterloo
3//
4// The contents of this file are covered under the licence agreement in the
5// file "LICENCE" distributed with Cforall.
6//
[f1e012b]7// TypeData.cc --
[b87a5ed]8//
9// Author           : Rodolfo G. Esteves
10// Created On       : Sat May 16 15:12:51 2015
[e612146c]11// Last Modified By : Peter A. Buhr
[07de76b]12// Last Modified On : Mon Dec 16 07:56:46 2019
13// Update Count     : 662
[b87a5ed]14//
15
[d180746]16#include <cassert>                 // for assert
17#include <ostream>                 // for operator<<, ostream, basic_ostream
18
19#include "Common/SemanticError.h"  // for SemanticError
20#include "Common/utility.h"        // for maybeClone, maybeBuild, maybeMoveB...
21#include "Parser/ParseNode.h"      // for DeclarationNode, ExpressionNode
22#include "SynTree/Declaration.h"   // for TypeDecl, ObjectDecl, FunctionDecl
23#include "SynTree/Expression.h"    // for Expression, ConstantExpr (ptr only)
24#include "SynTree/Initializer.h"   // for SingleInit, Initializer (ptr only)
25#include "SynTree/Statement.h"     // for CompoundStmt, Statement
26#include "SynTree/Type.h"          // for BasicType, Type, Type::ForallList
[51b7345]27#include "TypeData.h"
[d180746]28
29class Attribute;
30
[2298f728]31using namespace std;
[51b7345]32
[0b0f1dd]33TypeData::TypeData( Kind k ) : location( yylloc ), kind( k ), base( nullptr ), forall( nullptr ) /*, PTR1( (void*)(0xdeadbeefdeadbeef)), PTR2( (void*)(0xdeadbeefdeadbeef) ) */ {
[b87a5ed]34        switch ( kind ) {
35          case Unknown:
36          case Pointer:
[ce8c12f]37          case Reference:
[b87a5ed]38          case EnumConstant:
[47498bd]39          case GlobalScope:
[b87a5ed]40                // nothing else to initialize
41                break;
42          case Basic:
[8f6f47d7]43                // basic = new Basic_t;
[b87a5ed]44                break;
45          case Array:
[8f6f47d7]46                // array = new Array_t;
[2298f728]47                array.dimension = nullptr;
[8f6f47d7]48                array.isVarLen = false;
49                array.isStatic = false;
[b87a5ed]50                break;
51          case Function:
[8f6f47d7]52                // function = new Function_t;
[2298f728]53                function.params = nullptr;
54                function.idList = nullptr;
55                function.oldDeclList = nullptr;
56                function.body = nullptr;
[84276ba]57                function.withExprs = nullptr;
[b87a5ed]58                break;
[e496303]59                // Enum is an Aggregate, so both structures are initialized together.
60          case Enum:
61                // enumeration = new Enumeration_t;
62                enumeration.name = nullptr;
63                enumeration.constants = nullptr;
64                enumeration.body = false;
[3d7e53b]65                enumeration.anon = false;
[6926a6d]66                break;
[b87a5ed]67          case Aggregate:
[8f6f47d7]68                // aggregate = new Aggregate_t;
[312029a]69                aggregate.kind = AggregateDecl::NoAggregate;
[2298f728]70                aggregate.name = nullptr;
71                aggregate.params = nullptr;
72                aggregate.actuals = nullptr;
73                aggregate.fields = nullptr;
[4a9ccc3]74                aggregate.body = false;
[d15a45d]75                aggregate.tagged = false;
76                aggregate.parent = nullptr;
[3d7e53b]77                aggregate.anon = false;
[b87a5ed]78                break;
79          case AggregateInst:
[8f6f47d7]80                // aggInst = new AggInst_t;
[2298f728]81                aggInst.aggregate = nullptr;
82                aggInst.params = nullptr;
[8f91c9ae]83                aggInst.hoistType = false;
[b87a5ed]84                break;
85          case Symbolic:
86          case SymbolicInst:
[8f6f47d7]87                // symbolic = new Symbolic_t;
[2298f728]88                symbolic.name = nullptr;
89                symbolic.params = nullptr;
90                symbolic.actuals = nullptr;
91                symbolic.assertions = nullptr;
[b87a5ed]92                break;
93          case Tuple:
[8f6f47d7]94                // tuple = new Tuple_t;
95                tuple = nullptr;
[b87a5ed]96                break;
97          case Typeof:
[f855545]98          case Basetypeof:
[8f6f47d7]99                // typeexpr = new Typeof_t;
100                typeexpr = nullptr;
[b87a5ed]101                break;
[28307be]102          case Builtin:
103                // builtin = new Builtin_t;
[c194661]104                case Qualified:
105                qualified.parent = nullptr;
106                qualified.child = nullptr;
[b87a5ed]107                break;
[68cd1ce]108        } // switch
[413ad05]109} // TypeData::TypeData
[51b7345]110
[201aeb9]111
[c8ffe20b]112TypeData::~TypeData() {
[b87a5ed]113        delete base;
114        delete forall;
115
116        switch ( kind ) {
117          case Unknown:
118          case Pointer:
[ce8c12f]119          case Reference:
[b87a5ed]120          case EnumConstant:
[47498bd]121          case GlobalScope:
[b87a5ed]122                // nothing to destroy
123                break;
124          case Basic:
[8f6f47d7]125                // delete basic;
[b87a5ed]126                break;
127          case Array:
[8f6f47d7]128                delete array.dimension;
129                // delete array;
[b87a5ed]130                break;
131          case Function:
[8f6f47d7]132                delete function.params;
133                delete function.idList;
134                delete function.oldDeclList;
135                delete function.body;
[84276ba]136                delete function.withExprs;
[8f6f47d7]137                // delete function;
[b87a5ed]138                break;
139          case Aggregate:
[2298f728]140                delete aggregate.name;
[8f6f47d7]141                delete aggregate.params;
142                delete aggregate.actuals;
143                delete aggregate.fields;
144                // delete aggregate;
[b87a5ed]145                break;
146          case AggregateInst:
[8f6f47d7]147                delete aggInst.aggregate;
148                delete aggInst.params;
149                // delete aggInst;
[b87a5ed]150                break;
151          case Enum:
[2298f728]152                delete enumeration.name;
[8f6f47d7]153                delete enumeration.constants;
154                // delete enumeration;
[b87a5ed]155                break;
156          case Symbolic:
157          case SymbolicInst:
[2298f728]158                delete symbolic.name;
[8f6f47d7]159                delete symbolic.params;
160                delete symbolic.actuals;
161                delete symbolic.assertions;
162                // delete symbolic;
[b87a5ed]163                break;
164          case Tuple:
[8f6f47d7]165                // delete tuple->members;
[b87a5ed]166                delete tuple;
167                break;
168          case Typeof:
[f855545]169          case Basetypeof:
[8f6f47d7]170                // delete typeexpr->expr;
[b87a5ed]171                delete typeexpr;
172                break;
[28307be]173          case Builtin:
174                // delete builtin;
175                break;
[c194661]176          case Qualified:
177                delete qualified.parent;
178                delete qualified.child;
[68cd1ce]179        } // switch
[413ad05]180} // TypeData::~TypeData
[51b7345]181
[201aeb9]182
[413ad05]183TypeData * TypeData::clone() const {
184        TypeData * newtype = new TypeData( kind );
[738e304]185        newtype->qualifiers = qualifiers;
[b87a5ed]186        newtype->base = maybeClone( base );
187        newtype->forall = maybeClone( forall );
188
189        switch ( kind ) {
190          case Unknown:
191          case EnumConstant:
192          case Pointer:
[ce8c12f]193          case Reference:
[47498bd]194          case GlobalScope:
[b87a5ed]195                // nothing else to copy
196                break;
197          case Basic:
[5b639ee]198                newtype->basictype = basictype;
199                newtype->complextype = complextype;
200                newtype->signedness = signedness;
201                newtype->length = length;
[b87a5ed]202                break;
203          case Array:
[8f6f47d7]204                newtype->array.dimension = maybeClone( array.dimension );
205                newtype->array.isVarLen = array.isVarLen;
206                newtype->array.isStatic = array.isStatic;
[b87a5ed]207                break;
208          case Function:
[8f6f47d7]209                newtype->function.params = maybeClone( function.params );
210                newtype->function.idList = maybeClone( function.idList );
211                newtype->function.oldDeclList = maybeClone( function.oldDeclList );
212                newtype->function.body = maybeClone( function.body );
[84276ba]213                newtype->function.withExprs = maybeClone( function.withExprs );
[b87a5ed]214                break;
215          case Aggregate:
[d15a45d]216                newtype->aggregate.kind = aggregate.kind;
[2298f728]217                newtype->aggregate.name = aggregate.name ? new string( *aggregate.name ) : nullptr;
[8f6f47d7]218                newtype->aggregate.params = maybeClone( aggregate.params );
219                newtype->aggregate.actuals = maybeClone( aggregate.actuals );
220                newtype->aggregate.fields = maybeClone( aggregate.fields );
221                newtype->aggregate.body = aggregate.body;
[3d7e53b]222                newtype->aggregate.anon = aggregate.anon;
[6ea87486]223                newtype->aggregate.tagged = aggregate.tagged;
224                newtype->aggregate.parent = aggregate.parent ? new string( *aggregate.parent ) : nullptr;
[b87a5ed]225                break;
226          case AggregateInst:
[8f6f47d7]227                newtype->aggInst.aggregate = maybeClone( aggInst.aggregate );
228                newtype->aggInst.params = maybeClone( aggInst.params );
[43c89a7]229                newtype->aggInst.hoistType = aggInst.hoistType;
[b87a5ed]230                break;
231          case Enum:
[2298f728]232                newtype->enumeration.name = enumeration.name ? new string( *enumeration.name ) : nullptr;
[8f6f47d7]233                newtype->enumeration.constants = maybeClone( enumeration.constants );
[ca1a547]234                newtype->enumeration.body = enumeration.body;
[3d7e53b]235                newtype->enumeration.anon = enumeration.anon;
[b87a5ed]236                break;
237          case Symbolic:
238          case SymbolicInst:
[2298f728]239                newtype->symbolic.name = symbolic.name ? new string( *symbolic.name ) : nullptr;
[8f6f47d7]240                newtype->symbolic.params = maybeClone( symbolic.params );
241                newtype->symbolic.actuals = maybeClone( symbolic.actuals );
242                newtype->symbolic.assertions = maybeClone( symbolic.assertions );
243                newtype->symbolic.isTypedef = symbolic.isTypedef;
[b87a5ed]244                break;
245          case Tuple:
[8f6f47d7]246                newtype->tuple = maybeClone( tuple );
[b87a5ed]247                break;
248          case Typeof:
[f855545]249          case Basetypeof:
[8f6f47d7]250                newtype->typeexpr = maybeClone( typeexpr );
[b87a5ed]251                break;
[90c3b1c]252          case Builtin:
[4cb935e]253                assert( builtintype == DeclarationNode::Zero || builtintype == DeclarationNode::One );
254                newtype->builtintype = builtintype;
[90c3b1c]255                break;
[c194661]256                case Qualified:
257                newtype->qualified.parent = maybeClone( qualified.parent );
258                newtype->qualified.child = maybeClone( qualified.child );
259                break;
[68cd1ce]260        } // switch
[b87a5ed]261        return newtype;
[413ad05]262} // TypeData::clone
[51b7345]263
[201aeb9]264
[2298f728]265void TypeData::print( ostream &os, int indent ) const {
[738e304]266        for ( int i = 0; i < Type::NumTypeQualifier; i += 1 ) {
[615a096]267                if ( qualifiers[i] ) os << Type::QualifiersNames[ i ] << ' ';
[c1c1112]268        } // for
[b87a5ed]269
270        if ( forall ) {
271                os << "forall " << endl;
[721f17a]272                forall->printList( os, indent + 4 );
[68cd1ce]273        } // if
[b87a5ed]274
275        switch ( kind ) {
[f7e4db27]276          case Basic:
277                if ( signedness != DeclarationNode::NoSignedness ) os << DeclarationNode::signednessNames[ signedness ] << " ";
278                if ( length != DeclarationNode::NoLength ) os << DeclarationNode::lengthNames[ length ] << " ";
279                if ( complextype == DeclarationNode::NoComplexType ) { // basic type
280                        assert( basictype != DeclarationNode::NoBasicType );
281                        os << DeclarationNode::basicTypeNames[ basictype ] << " ";
282                } else {                                                                                // complex type
283                        // handle double _Complex
284                        if ( basictype != DeclarationNode::NoBasicType ) os << DeclarationNode::basicTypeNames[ basictype ] << " ";
285                        os << DeclarationNode::complexTypeNames[ complextype ] << " ";
286                } // if
[b87a5ed]287                break;
288          case Pointer:
289                os << "pointer ";
290                if ( base ) {
291                        os << "to ";
292                        base->print( os, indent );
[68cd1ce]293                } // if
[b87a5ed]294                break;
[f7e4db27]295          case Reference:
296                os << "reference ";
297                if ( base ) {
298                        os << "to ";
299                        base->print( os, indent );
300                } // if
[b87a5ed]301                break;
302          case Array:
[8f6f47d7]303                if ( array.isStatic ) {
[b87a5ed]304                        os << "static ";
[68cd1ce]305                } // if
[8f6f47d7]306                if ( array.dimension ) {
[b87a5ed]307                        os << "array of ";
[8f6f47d7]308                        array.dimension->printOneLine( os, indent );
309                } else if ( array.isVarLen ) {
[b87a5ed]310                        os << "variable-length array of ";
311                } else {
312                        os << "open array of ";
[68cd1ce]313                } // if
[b87a5ed]314                if ( base ) {
315                        base->print( os, indent );
[68cd1ce]316                } // if
[b87a5ed]317                break;
318          case Function:
319                os << "function" << endl;
[8f6f47d7]320                if ( function.params ) {
[721f17a]321                        os << string( indent + 2, ' ' ) << "with parameters " << endl;
[8f6f47d7]322                        function.params->printList( os, indent + 4 );
[b87a5ed]323                } else {
[07ec1a2]324                        os << string( indent + 2, ' ' ) << "with no parameters" << endl;
[68cd1ce]325                } // if
[8f6f47d7]326                if ( function.idList ) {
[721f17a]327                        os << string( indent + 2, ' ' ) << "with old-style identifier list " << endl;
[8f6f47d7]328                        function.idList->printList( os, indent + 4 );
[68cd1ce]329                } // if
[8f6f47d7]330                if ( function.oldDeclList ) {
[721f17a]331                        os << string( indent + 2, ' ' ) << "with old-style declaration list " << endl;
[8f6f47d7]332                        function.oldDeclList->printList( os, indent + 4 );
[68cd1ce]333                } // if
[721f17a]334                os << string( indent + 2, ' ' ) << "returning ";
[b87a5ed]335                if ( base ) {
[721f17a]336                        base->print( os, indent + 4 );
[b87a5ed]337                } else {
338                        os << "nothing ";
[68cd1ce]339                } // if
[b87a5ed]340                os << endl;
[8f6f47d7]341                if ( function.body ) {
[ca1a547]342                        os << string( indent + 2, ' ' ) << "with body " << endl;
[8f6f47d7]343                        function.body->printList( os, indent + 2 );
[68cd1ce]344                } // if
[b87a5ed]345                break;
346          case Aggregate:
[312029a]347                os << AggregateDecl::aggrString( aggregate.kind ) << ' ' << *aggregate.name << endl;
[8f6f47d7]348                if ( aggregate.params ) {
[07ec1a2]349                        os << string( indent + 2, ' ' ) << "with type parameters" << endl;
[8f6f47d7]350                        aggregate.params->printList( os, indent + 4 );
[68cd1ce]351                } // if
[8f6f47d7]352                if ( aggregate.actuals ) {
[07ec1a2]353                        os << string( indent + 2, ' ' ) << "instantiated with actual parameters" << endl;
[8f6f47d7]354                        aggregate.actuals->printList( os, indent + 4 );
[68cd1ce]355                } // if
[8f6f47d7]356                if ( aggregate.fields ) {
[07ec1a2]357                        os << string( indent + 2, ' ' ) << "with members" << endl;
[8f6f47d7]358                        aggregate.fields->printList( os, indent + 4 );
[5d125e4]359                } // if
[8f6f47d7]360                if ( aggregate.body ) {
[07ec1a2]361                        os << string( indent + 2, ' ' ) << " with body" << endl;
[68cd1ce]362                } // if
[b87a5ed]363                break;
364          case AggregateInst:
[8f6f47d7]365                if ( aggInst.aggregate ) {
[b87a5ed]366                        os << "instance of " ;
[8f6f47d7]367                        aggInst.aggregate->print( os, indent );
[b87a5ed]368                } else {
369                        os << "instance of an unspecified aggregate ";
[68cd1ce]370                } // if
[8f6f47d7]371                if ( aggInst.params ) {
[07ec1a2]372                        os << string( indent + 2, ' ' ) << "with parameters" << endl;
[8f6f47d7]373                        aggInst.params->printList( os, indent + 2 );
[68cd1ce]374                } // if
[b87a5ed]375                break;
376          case Enum:
377                os << "enumeration ";
[8f6f47d7]378                if ( enumeration.constants ) {
[b87a5ed]379                        os << "with constants" << endl;
[8f6f47d7]380                        enumeration.constants->printList( os, indent + 2 );
[68cd1ce]381                } // if
[ca1a547]382                if ( enumeration.body ) {
[07ec1a2]383                        os << string( indent + 2, ' ' ) << " with body" << endl;
[ca1a547]384                } // if
[b87a5ed]385                break;
[f7e4db27]386          case EnumConstant:
387                os << "enumeration constant ";
[b87a5ed]388                break;
389          case Symbolic:
[8f6f47d7]390                if ( symbolic.isTypedef ) {
[b87a5ed]391                        os << "typedef definition ";
392                } else {
393                        os << "type definition ";
[68cd1ce]394                } // if
[8f6f47d7]395                if ( symbolic.params ) {
[721f17a]396                        os << endl << string( indent + 2, ' ' ) << "with parameters" << endl;
[8f6f47d7]397                        symbolic.params->printList( os, indent + 2 );
[68cd1ce]398                } // if
[8f6f47d7]399                if ( symbolic.assertions ) {
[721f17a]400                        os << endl << string( indent + 2, ' ' ) << "with assertions" << endl;
[8f6f47d7]401                        symbolic.assertions->printList( os, indent + 4 );
[721f17a]402                        os << string( indent + 2, ' ' );
[68cd1ce]403                } // if
[b87a5ed]404                if ( base ) {
405                        os << "for ";
406                        base->print( os, indent + 2 );
[68cd1ce]407                } // if
[b87a5ed]408                break;
[f7e4db27]409          case SymbolicInst:
410                os << *symbolic.name;
411                if ( symbolic.actuals ) {
412                        os << "(";
413                        symbolic.actuals->printList( os, indent + 2 );
414                        os << ")";
415                } // if
416                break;
[b87a5ed]417          case Tuple:
418                os << "tuple ";
[8f6f47d7]419                if ( tuple ) {
[07ec1a2]420                        os << "with members" << endl;
[8f6f47d7]421                        tuple->printList( os, indent + 2 );
[68cd1ce]422                } // if
[b87a5ed]423                break;
[f855545]424          case Basetypeof:
425                os << "base-";
[c45b304]426                #if defined(__GNUC__) && __GNUC__ >= 7
427                        __attribute__((fallthrough));
428                #endif
[b87a5ed]429          case Typeof:
430                os << "type-of expression ";
[8f6f47d7]431                if ( typeexpr ) {
432                        typeexpr->print( os, indent + 2 );
[68cd1ce]433                } // if
[b87a5ed]434                break;
[90c3b1c]435          case Builtin:
[9dc31c10]436                os << DeclarationNode::builtinTypeNames[builtintype];
[90c3b1c]437                break;
[f7e4db27]438          case GlobalScope:
439                break;
440          case Qualified:
441                qualified.parent->print( os );
442                os << ".";
443                qualified.child->print( os );
444                break;
445          case Unknown:
446                os << "entity of unknown type ";
447                break;
[1db21619]448          default:
[5b639ee]449                os << "internal error: TypeData::print " << kind << endl;
[1db21619]450                assert( false );
[68cd1ce]451        } // switch
[413ad05]452} // TypeData::print
[51b7345]453
[7de22b28]454const std::string * TypeData::leafName() const {
455        switch ( kind ) {
456          case Unknown:
457          case Pointer:
458          case Reference:
459          case EnumConstant:
460          case GlobalScope:
461          case Array:
462          case Basic:
463          case Function:
464          case AggregateInst:
465          case Tuple:
466          case Typeof:
[f855545]467          case Basetypeof:
[7de22b28]468          case Builtin:
469                assertf(false, "Tried to get leaf name from kind without a name: %d", kind);
470                break;
471          case Aggregate:
472                return aggregate.name;
473          case Enum:
474                return enumeration.name;
475          case Symbolic:
476          case SymbolicInst:
477                return symbolic.name;
478          case Qualified:
479                return qualified.child->leafName();
480        } // switch
481        assert(false);
482}
483
[201aeb9]484
[8c49c0e]485template< typename ForallList >
486void buildForall( const DeclarationNode * firstNode, ForallList &outputList ) {
[b87a5ed]487        buildList( firstNode, outputList );
[f0ecf9b]488        auto n = firstNode;
489        for ( typename ForallList::iterator i = outputList.begin(); i != outputList.end(); ++i, n = (DeclarationNode*)n->get_next() ) {
[a7c90d4]490                TypeDecl * td = static_cast<TypeDecl *>(*i);
[07de76b]491                if ( n->variable.tyClass == TypeDecl::Otype ) {
[6943f051]492                        // add assertion parameters to `type' tyvars in reverse order
493                        // add dtor:  void ^?{}(T *)
[413ad05]494                        FunctionType * dtorType = new FunctionType( Type::Qualifiers(), false );
[cda7889]495                        dtorType->get_parameters().push_back( new ObjectDecl( "", Type::StorageClasses(), LinkageSpec::Cforall, nullptr, new ReferenceType( Type::Qualifiers(), new TypeInstType( Type::Qualifiers(), td->get_name(), *i ) ), nullptr ) );
[68fe077a]496                        td->get_assertions().push_front( new FunctionDecl( "^?{}", Type::StorageClasses(), LinkageSpec::Cforall, dtorType, nullptr ) );
[4cc4286]497
[a9a259c]498                        // add copy ctor:  void ?{}(T *, T)
[413ad05]499                        FunctionType * copyCtorType = new FunctionType( Type::Qualifiers(), false );
[cda7889]500                        copyCtorType->get_parameters().push_back( new ObjectDecl( "", Type::StorageClasses(), LinkageSpec::Cforall, nullptr, new ReferenceType( Type::Qualifiers(), new TypeInstType( Type::Qualifiers(), td->get_name(), *i ) ), nullptr ) );
[68fe077a]501                        copyCtorType->get_parameters().push_back( new ObjectDecl( "", Type::StorageClasses(), LinkageSpec::Cforall, nullptr, new TypeInstType( Type::Qualifiers(), td->get_name(), *i ), nullptr ) );
502                        td->get_assertions().push_front( new FunctionDecl( "?{}", Type::StorageClasses(), LinkageSpec::Cforall, copyCtorType, nullptr ) );
[a9a259c]503
[6943f051]504                        // add default ctor:  void ?{}(T *)
[413ad05]505                        FunctionType * ctorType = new FunctionType( Type::Qualifiers(), false );
[cda7889]506                        ctorType->get_parameters().push_back( new ObjectDecl( "", Type::StorageClasses(), LinkageSpec::Cforall, nullptr, new ReferenceType( Type::Qualifiers(), new TypeInstType( Type::Qualifiers(), td->get_name(), *i ) ), nullptr ) );
[68fe077a]507                        td->get_assertions().push_front( new FunctionDecl( "?{}", Type::StorageClasses(), LinkageSpec::Cforall, ctorType, nullptr ) );
[6943f051]508
509                        // add assignment operator:  T * ?=?(T *, T)
[413ad05]510                        FunctionType * assignType = new FunctionType( Type::Qualifiers(), false );
[cda7889]511                        assignType->get_parameters().push_back( new ObjectDecl( "", Type::StorageClasses(), LinkageSpec::Cforall, nullptr, new ReferenceType( Type::Qualifiers(), new TypeInstType( Type::Qualifiers(), td->get_name(), *i ) ), nullptr ) );
[68fe077a]512                        assignType->get_parameters().push_back( new ObjectDecl( "", Type::StorageClasses(), LinkageSpec::Cforall, nullptr, new TypeInstType( Type::Qualifiers(), td->get_name(), *i ), nullptr ) );
513                        assignType->get_returnVals().push_back( new ObjectDecl( "", Type::StorageClasses(), LinkageSpec::Cforall, nullptr, new TypeInstType( Type::Qualifiers(), td->get_name(), *i ), nullptr ) );
514                        td->get_assertions().push_front( new FunctionDecl( "?=?", Type::StorageClasses(), LinkageSpec::Cforall, assignType, nullptr ) );
[68cd1ce]515                } // if
516        } // for
[201aeb9]517} // buildForall
518
[51b7345]519
[413ad05]520Type * typebuild( const TypeData * td ) {
521        assert( td );
522        switch ( td->kind ) {
523          case TypeData::Unknown:
[07de76b]524                // fill in implicit int
525                return new BasicType( buildQualifiers( td ), BasicType::SignedInt );
[413ad05]526          case TypeData::Basic:
[07de76b]527                return buildBasicType( td );
[413ad05]528          case TypeData::Pointer:
[07de76b]529                return buildPointer( td );
[413ad05]530          case TypeData::Array:
[07de76b]531                return buildArray( td );
[ce8c12f]532          case TypeData::Reference:
[07de76b]533                return buildReference( td );
[413ad05]534          case TypeData::Function:
[07de76b]535                return buildFunction( td );
[413ad05]536          case TypeData::AggregateInst:
[07de76b]537                return buildAggInst( td );
[413ad05]538          case TypeData::EnumConstant:
[07de76b]539                // the name gets filled in later -- by SymTab::Validate
540                return new EnumInstType( buildQualifiers( td ), "" );
[413ad05]541          case TypeData::SymbolicInst:
[07de76b]542                return buildSymbolicInst( td );
[413ad05]543          case TypeData::Tuple:
[07de76b]544                return buildTuple( td );
[413ad05]545          case TypeData::Typeof:
[f855545]546          case TypeData::Basetypeof:
[07de76b]547                return buildTypeof( td );
[413ad05]548          case TypeData::Builtin:
[07de76b]549                switch ( td->builtintype ) {
550                  case DeclarationNode::Zero:
551                        return new ZeroType( noQualifiers );
552                  case DeclarationNode::One:
553                        return new OneType( noQualifiers );
554                  default:
555                        return new VarArgsType( buildQualifiers( td ) );
556                } // switch
[c194661]557          case TypeData::GlobalScope:
[07de76b]558                return new GlobalScopeType();
559          case TypeData::Qualified:
560                return new QualifiedType( buildQualifiers( td ), typebuild( td->qualified.parent ), typebuild( td->qualified.child ) );
[413ad05]561          case TypeData::Symbolic:
562          case TypeData::Enum:
563          case TypeData::Aggregate:
[07de76b]564                assert( false );
[68cd1ce]565        } // switch
[c194661]566
[2298f728]567        return nullptr;
[413ad05]568} // typebuild
569
[201aeb9]570
[413ad05]571TypeData * typeextractAggregate( const TypeData * td, bool toplevel ) {
[2298f728]572        TypeData * ret = nullptr;
[51b7345]573
[413ad05]574        switch ( td->kind ) {
575          case TypeData::Aggregate:
[b2da0574]576                if ( ! toplevel && td->aggregate.body ) {
[413ad05]577                        ret = td->clone();
578                } // if
579                break;
580          case TypeData::Enum:
[b2da0574]581                if ( ! toplevel && td->enumeration.body ) {
[413ad05]582                        ret = td->clone();
583                } // if
584                break;
585          case TypeData::AggregateInst:
[8f6f47d7]586                if ( td->aggInst.aggregate ) {
587                        ret = typeextractAggregate( td->aggInst.aggregate, false );
[413ad05]588                } // if
589                break;
590          default:
591                if ( td->base ) {
592                        ret = typeextractAggregate( td->base, false );
593                } // if
594        } // switch
595        return ret;
596} // typeextractAggregate
597
[201aeb9]598
[413ad05]599Type::Qualifiers buildQualifiers( const TypeData * td ) {
[738e304]600        return td->qualifiers;
[413ad05]601} // buildQualifiers
[51b7345]602
[201aeb9]603
604static string genTSError( string msg, DeclarationNode::BasicType basictype ) {
[a16764a6]605        SemanticError( yylloc, string( "invalid type specifier \"" ) + msg + "\" for type \"" + DeclarationNode::basicTypeNames[basictype] + "\"." );
[201aeb9]606} // genTSError
607
[413ad05]608Type * buildBasicType( const TypeData * td ) {
[b87a5ed]609        BasicType::Kind ret;
610
[5b639ee]611        switch ( td->basictype ) {
612          case DeclarationNode::Void:
[201aeb9]613                if ( td->signedness != DeclarationNode::NoSignedness ) {
614                        genTSError( DeclarationNode::signednessNames[ td->signedness ], td->basictype );
615                } // if
616                if ( td->length != DeclarationNode::NoLength ) {
617                        genTSError( DeclarationNode::lengthNames[ td->length ], td->basictype );
[68cd1ce]618                } // if
[5b639ee]619                return new VoidType( buildQualifiers( td ) );
620                break;
621
622          case DeclarationNode::Bool:
623                if ( td->signedness != DeclarationNode::NoSignedness ) {
[201aeb9]624                        genTSError( DeclarationNode::signednessNames[ td->signedness ], td->basictype );
[5b639ee]625                } // if
626                if ( td->length != DeclarationNode::NoLength ) {
[201aeb9]627                        genTSError( DeclarationNode::lengthNames[ td->length ], td->basictype );
[68cd1ce]628                } // if
[51b7345]629
[e15853c]630                ret = BasicType::Bool;
[5b639ee]631                break;
632
633          case DeclarationNode::Char:
634                // C11 Standard 6.2.5.15: The three types char, signed char, and unsigned char are collectively called the
635                // character types. The implementation shall define char to have the same range, representation, and behavior as
636                // either signed char or unsigned char.
[8c49c0e]637                static BasicType::Kind chartype[] = { BasicType::SignedChar, BasicType::UnsignedChar, BasicType::Char };
[5b639ee]638
639                if ( td->length != DeclarationNode::NoLength ) {
[201aeb9]640                        genTSError( DeclarationNode::lengthNames[ td->length ], td->basictype );
[5b639ee]641                } // if
642
643                ret = chartype[ td->signedness ];
644                break;
645
646          case DeclarationNode::Int:
647                static BasicType::Kind inttype[2][4] = {
648                        { BasicType::ShortSignedInt, BasicType::LongSignedInt, BasicType::LongLongSignedInt, BasicType::SignedInt },
649                        { BasicType::ShortUnsignedInt, BasicType::LongUnsignedInt, BasicType::LongLongUnsignedInt, BasicType::UnsignedInt },
650                };
651
652          Integral: ;
653                if ( td->signedness == DeclarationNode::NoSignedness ) {
654                        const_cast<TypeData *>(td)->signedness = DeclarationNode::Signed;
655                } // if
656                ret = inttype[ td->signedness ][ td->length ];
657                break;
658
[201aeb9]659          case DeclarationNode::Int128:
[4ee3b0c1]660                ret = td->signedness == DeclarationNode::Unsigned ? BasicType::UnsignedInt128 : BasicType::SignedInt128;
[201aeb9]661                if ( td->length != DeclarationNode::NoLength ) {
662                        genTSError( DeclarationNode::lengthNames[ td->length ], td->basictype );
663                } // if
664                break;
665
[5b639ee]666          case DeclarationNode::Float:
667          case DeclarationNode::Double:
668          case DeclarationNode::LongDouble:                                     // not set until below
[e15853c]669          case DeclarationNode::uuFloat80:
670          case DeclarationNode::uuFloat128:
671          case DeclarationNode::uFloat16:
672          case DeclarationNode::uFloat32:
673          case DeclarationNode::uFloat32x:
674          case DeclarationNode::uFloat64:
675          case DeclarationNode::uFloat64x:
676          case DeclarationNode::uFloat128:
677          case DeclarationNode::uFloat128x:
[ba01b14]678                static BasicType::Kind floattype[2][12] = {
[e15853c]679                        { BasicType::FloatComplex, BasicType::DoubleComplex, BasicType::LongDoubleComplex, (BasicType::Kind)-1, (BasicType::Kind)-1, BasicType::uFloat16Complex, BasicType::uFloat32Complex, BasicType::uFloat32xComplex, BasicType::uFloat64Complex, BasicType::uFloat64xComplex, BasicType::uFloat128Complex, BasicType::uFloat128xComplex, },
680                        { BasicType::Float, BasicType::Double, BasicType::LongDouble, BasicType::uuFloat80, BasicType::uuFloat128, BasicType::uFloat16, BasicType::uFloat32, BasicType::uFloat32x, BasicType::uFloat64, BasicType::uFloat64x, BasicType::uFloat128, BasicType::uFloat128x, },
[5b639ee]681                };
682
683          FloatingPoint: ;
684                if ( td->signedness != DeclarationNode::NoSignedness ) {
[201aeb9]685                        genTSError( DeclarationNode::signednessNames[ td->signedness ], td->basictype );
[5b639ee]686                } // if
687                if ( td->length == DeclarationNode::Short || td->length == DeclarationNode::LongLong ) {
[201aeb9]688                        genTSError( DeclarationNode::lengthNames[ td->length ], td->basictype );
[5b639ee]689                } // if
[4ee3b0c1]690                if ( td->basictype != DeclarationNode::Double && td->length == DeclarationNode::Long ) {
[201aeb9]691                        genTSError( DeclarationNode::lengthNames[ td->length ], td->basictype );
[5b639ee]692                } // if
[ba01b14]693                if ( td->complextype == DeclarationNode::Imaginary ) {
694                        genTSError( DeclarationNode::complexTypeNames[ td->complextype ], td->basictype );
695                } // if
[e15853c]696                if ( (td->basictype == DeclarationNode::uuFloat80 || td->basictype == DeclarationNode::uuFloat128) && td->complextype == DeclarationNode::Complex ) { // gcc unsupported
[ba01b14]697                        genTSError( DeclarationNode::complexTypeNames[ td->complextype ], td->basictype );
698                } // if
[5b639ee]699                if ( td->length == DeclarationNode::Long ) {
700                        const_cast<TypeData *>(td)->basictype = DeclarationNode::LongDouble;
701                } // if
702
703                ret = floattype[ td->complextype ][ td->basictype - DeclarationNode::Float ];
[ba01b14]704                //printf( "XXXX %d %d %d %d\n", td->complextype, td->basictype, DeclarationNode::Float, ret );
[5b639ee]705                break;
706
707          case DeclarationNode::NoBasicType:
708                // No basic type in declaration => default double for Complex/Imaginary and int type for integral types
709                if ( td->complextype == DeclarationNode::Complex || td->complextype == DeclarationNode::Imaginary ) {
710                        const_cast<TypeData *>(td)->basictype = DeclarationNode::Double;
711                        goto FloatingPoint;
712                } // if
713
714                const_cast<TypeData *>(td)->basictype = DeclarationNode::Int;
715                goto Integral;
[2ee5426]716          default:
[201aeb9]717                assertf( false, "unknown basic type" );
[2ee5426]718                return nullptr;
[5b639ee]719        } // switch
720
721        BasicType * bt = new BasicType( buildQualifiers( td ), ret );
[413ad05]722        buildForall( td->forall, bt->get_forall() );
[b87a5ed]723        return bt;
[413ad05]724} // buildBasicType
[51b7345]725
[201aeb9]726
[413ad05]727PointerType * buildPointer( const TypeData * td ) {
728        PointerType * pt;
729        if ( td->base ) {
730                pt = new PointerType( buildQualifiers( td ), typebuild( td->base ) );
[b87a5ed]731        } else {
[413ad05]732                pt = new PointerType( buildQualifiers( td ), new BasicType( Type::Qualifiers(), BasicType::SignedInt ) );
[68cd1ce]733        } // if
[413ad05]734        buildForall( td->forall, pt->get_forall() );
[b87a5ed]735        return pt;
[413ad05]736} // buildPointer
[51b7345]737
[201aeb9]738
[413ad05]739ArrayType * buildArray( const TypeData * td ) {
740        ArrayType * at;
741        if ( td->base ) {
[8f6f47d7]742                at = new ArrayType( buildQualifiers( td ), typebuild( td->base ), maybeBuild< Expression >( td->array.dimension ),
743                                                        td->array.isVarLen, td->array.isStatic );
[b87a5ed]744        } else {
[413ad05]745                at = new ArrayType( buildQualifiers( td ), new BasicType( Type::Qualifiers(), BasicType::SignedInt ),
[8f6f47d7]746                                                        maybeBuild< Expression >( td->array.dimension ), td->array.isVarLen, td->array.isStatic );
[68cd1ce]747        } // if
[413ad05]748        buildForall( td->forall, at->get_forall() );
[b87a5ed]749        return at;
[ce8c12f]750} // buildArray
751
[201aeb9]752
[ce8c12f]753ReferenceType * buildReference( const TypeData * td ) {
754        ReferenceType * rt;
755        if ( td->base ) {
756                rt = new ReferenceType( buildQualifiers( td ), typebuild( td->base ) );
757        } else {
758                rt = new ReferenceType( buildQualifiers( td ), new BasicType( Type::Qualifiers(), BasicType::SignedInt ) );
759        } // if
760        buildForall( td->forall, rt->get_forall() );
761        return rt;
762} // buildReference
[51b7345]763
[201aeb9]764
[fa4805f]765AggregateDecl * buildAggregate( const TypeData * td, std::list< Attribute * > attributes, LinkageSpec::Spec linkage ) {
[413ad05]766        assert( td->kind == TypeData::Aggregate );
767        AggregateDecl * at;
[8f6f47d7]768        switch ( td->aggregate.kind ) {
[312029a]769          case AggregateDecl::Struct:
770          case AggregateDecl::Coroutine:
771          case AggregateDecl::Monitor:
772          case AggregateDecl::Thread:
[fa4805f]773                at = new StructDecl( *td->aggregate.name, td->aggregate.kind, attributes, linkage );
[8f6f47d7]774                buildForall( td->aggregate.params, at->get_parameters() );
[b87a5ed]775                break;
[312029a]776          case AggregateDecl::Union:
[bd46af4]777                at = new UnionDecl( *td->aggregate.name, attributes, linkage );
[8f6f47d7]778                buildForall( td->aggregate.params, at->get_parameters() );
[b87a5ed]779                break;
[312029a]780          case AggregateDecl::Trait:
[bd46af4]781                at = new TraitDecl( *td->aggregate.name, attributes, linkage );
[8f6f47d7]782                buildList( td->aggregate.params, at->get_parameters() );
[b87a5ed]783                break;
784          default:
785                assert( false );
[68cd1ce]786        } // switch
[4e06c1e]787
[8f6f47d7]788        buildList( td->aggregate.fields, at->get_members() );
789        at->set_body( td->aggregate.body );
[b87a5ed]790
791        return at;
[413ad05]792} // buildAggregate
[51b7345]793
[201aeb9]794
[fa4805f]795ReferenceToType * buildComAggInst( const TypeData * type, std::list< Attribute * > attributes, LinkageSpec::Spec linkage ) {
[43c89a7]796        switch ( type->kind ) {
797          case TypeData::Enum: {
798                  if ( type->enumeration.body ) {
[bd46af4]799                          EnumDecl * typedecl = buildEnum( type, attributes, linkage );
[43c89a7]800                          return new EnumInstType( buildQualifiers( type ), typedecl );
801                  } else {
802                          return new EnumInstType( buildQualifiers( type ), *type->enumeration.name );
803                  } // if
804          }
805          case TypeData::Aggregate: {
806                  ReferenceToType * ret;
807                  if ( type->aggregate.body ) {
[fa4805f]808                          AggregateDecl * typedecl = buildAggregate( type, attributes, linkage );
[43c89a7]809                          switch ( type->aggregate.kind ) {
[312029a]810                                case AggregateDecl::Struct:
811                                case AggregateDecl::Coroutine:
812                                case AggregateDecl::Monitor:
813                                case AggregateDecl::Thread:
[43c89a7]814                                  ret = new StructInstType( buildQualifiers( type ), (StructDecl *)typedecl );
815                                  break;
[312029a]816                                case AggregateDecl::Union:
[43c89a7]817                                  ret = new UnionInstType( buildQualifiers( type ), (UnionDecl *)typedecl );
818                                  break;
[312029a]819                                case AggregateDecl::Trait:
[43c89a7]820                                  assert( false );
821                                  //ret = new TraitInstType( buildQualifiers( type ), (TraitDecl *)typedecl );
822                                  break;
823                                default:
824                                  assert( false );
825                          } // switch
826                  } else {
827                          switch ( type->aggregate.kind ) {
[312029a]828                                case AggregateDecl::Struct:
829                                case AggregateDecl::Coroutine:
830                                case AggregateDecl::Monitor:
831                                case AggregateDecl::Thread:
[43c89a7]832                                  ret = new StructInstType( buildQualifiers( type ), *type->aggregate.name );
833                                  break;
[312029a]834                                case AggregateDecl::Union:
[43c89a7]835                                  ret = new UnionInstType( buildQualifiers( type ), *type->aggregate.name );
836                                  break;
[312029a]837                                case AggregateDecl::Trait:
[43c89a7]838                                  ret = new TraitInstType( buildQualifiers( type ), *type->aggregate.name );
839                                  break;
840                                default:
841                                  assert( false );
842                          } // switch
843                  } // if
844                  return ret;
845          }
846          default:
847                assert( false );
848        } // switch
849} // buildAggInst
850
[201aeb9]851
[413ad05]852ReferenceToType * buildAggInst( const TypeData * td ) {
853        assert( td->kind == TypeData::AggregateInst );
[b87a5ed]854
[43c89a7]855        // ReferenceToType * ret = buildComAggInst( td->aggInst.aggregate, std::list< Attribute * >() );
856        ReferenceToType * ret = nullptr;
857        TypeData * type = td->aggInst.aggregate;
858        switch ( type->kind ) {
859          case TypeData::Enum: {
860                  return new EnumInstType( buildQualifiers( type ), *type->enumeration.name );
861          }
862          case TypeData::Aggregate: {
863                  switch ( type->aggregate.kind ) {
[312029a]864                        case AggregateDecl::Struct:
865                        case AggregateDecl::Coroutine:
866                        case AggregateDecl::Monitor:
867                        case AggregateDecl::Thread:
[43c89a7]868                          ret = new StructInstType( buildQualifiers( type ), *type->aggregate.name );
869                          break;
[312029a]870                        case AggregateDecl::Union:
[43c89a7]871                          ret = new UnionInstType( buildQualifiers( type ), *type->aggregate.name );
872                          break;
[312029a]873                        case AggregateDecl::Trait:
[43c89a7]874                          ret = new TraitInstType( buildQualifiers( type ), *type->aggregate.name );
875                          break;
876                        default:
877                          assert( false );
878                  } // switch
879          }
880          break;
881          default:
882                assert( false );
883        } // switch
884
885        ret->set_hoistType( td->aggInst.hoistType );
[8f6f47d7]886        buildList( td->aggInst.params, ret->get_parameters() );
[413ad05]887        buildForall( td->forall, ret->get_forall() );
[b87a5ed]888        return ret;
[413ad05]889} // buildAggInst
890
[201aeb9]891
[1f370451]892NamedTypeDecl * buildSymbolic( const TypeData * td, std::list< Attribute * > attributes, const string & name, Type::StorageClasses scs, LinkageSpec::Spec linkage ) {
[413ad05]893        assert( td->kind == TypeData::Symbolic );
894        NamedTypeDecl * ret;
895        assert( td->base );
[8f6f47d7]896        if ( td->symbolic.isTypedef ) {
[0b0f1dd]897                ret = new TypedefDecl( name, td->location, scs, typebuild( td->base ), linkage );
[b87a5ed]898        } else {
[f0ecf9b]899                ret = new TypeDecl( name, scs, typebuild( td->base ), TypeDecl::Dtype, true );
[68cd1ce]900        } // if
[8f6f47d7]901        buildList( td->symbolic.params, ret->get_parameters() );
902        buildList( td->symbolic.assertions, ret->get_assertions() );
[1f370451]903        ret->base->attributes.splice( ret->base->attributes.end(), attributes );
[b87a5ed]904        return ret;
[413ad05]905} // buildSymbolic
[51b7345]906
[201aeb9]907
[bd46af4]908EnumDecl * buildEnum( const TypeData * td, std::list< Attribute * > attributes, LinkageSpec::Spec linkage ) {
[413ad05]909        assert( td->kind == TypeData::Enum );
[bd46af4]910        EnumDecl * ret = new EnumDecl( *td->enumeration.name, attributes, linkage );
[8f6f47d7]911        buildList( td->enumeration.constants, ret->get_members() );
[2298f728]912        list< Declaration * >::iterator members = ret->get_members().begin();
[8f6f47d7]913        for ( const DeclarationNode * cur = td->enumeration. constants; cur != nullptr; cur = dynamic_cast< DeclarationNode * >( cur->get_next() ), ++members ) {
[4f147cc]914                if ( cur->has_enumeratorValue() ) {
[413ad05]915                        ObjectDecl * member = dynamic_cast< ObjectDecl * >(* members);
[e4d829b]916                        member->set_init( new SingleInit( maybeMoveBuild< Expression >( cur->consume_enumeratorValue() ) ) );
[90c3b1c]917                } // if
918        } // for
[ca1a547]919        ret->set_body( td->enumeration.body );
[b87a5ed]920        return ret;
[413ad05]921} // buildEnum
[51b7345]922
[201aeb9]923
[413ad05]924TypeInstType * buildSymbolicInst( const TypeData * td ) {
925        assert( td->kind == TypeData::SymbolicInst );
[2298f728]926        TypeInstType * ret = new TypeInstType( buildQualifiers( td ), *td->symbolic.name, false );
[8f6f47d7]927        buildList( td->symbolic.actuals, ret->get_parameters() );
[413ad05]928        buildForall( td->forall, ret->get_forall() );
[b87a5ed]929        return ret;
[413ad05]930} // buildSymbolicInst
[51b7345]931
[201aeb9]932
[413ad05]933TupleType * buildTuple( const TypeData * td ) {
934        assert( td->kind == TypeData::Tuple );
[62423350]935        std::list< Type * > types;
936        buildTypeList( td->tuple, types );
937        TupleType * ret = new TupleType( buildQualifiers( td ), types );
[413ad05]938        buildForall( td->forall, ret->get_forall() );
[b87a5ed]939        return ret;
[413ad05]940} // buildTuple
941
[201aeb9]942
[413ad05]943TypeofType * buildTypeof( const TypeData * td ) {
[f855545]944        assert( td->kind == TypeData::Typeof || td->kind == TypeData::Basetypeof );
[413ad05]945        assert( td->typeexpr );
[8f6f47d7]946        // assert( td->typeexpr->expr );
[07ec1a2]947        return new TypeofType{
[f441c88]948                buildQualifiers( td ), td->typeexpr->build(), td->kind == TypeData::Basetypeof };
[413ad05]949} // buildTypeof
950
[201aeb9]951
[e612146c]952Declaration * buildDecl( const TypeData * td, const string &name, Type::StorageClasses scs, Expression * bitfieldWidth, Type::FuncSpecifiers funcSpec, LinkageSpec::Spec linkage, Expression *asmName, Initializer * init, std::list< Attribute * > attributes ) {
[413ad05]953        if ( td->kind == TypeData::Function ) {
[ca1a547]954                if ( td->function.idList ) {                                    // KR function ?
955                        buildKRFunction( td->function );                        // transform into C11 function
[3a5131ed]956                } // if
957
[413ad05]958                FunctionDecl * decl;
[ca1a547]959                Statement * stmt = maybeBuild<Statement>( td->function.body );
[a7c90d4]960                CompoundStmt * body = dynamic_cast< CompoundStmt * >( stmt );
961                decl = new FunctionDecl( name, scs, linkage, buildFunction( td ), body, attributes, funcSpec );
[c453ac4]962                buildList( td->function.withExprs, decl->withExprs );
[58dd019]963                return decl->set_asmName( asmName );
[413ad05]964        } else if ( td->kind == TypeData::Aggregate ) {
[fa4805f]965                return buildAggregate( td, attributes, linkage );
[413ad05]966        } else if ( td->kind == TypeData::Enum ) {
[bd46af4]967                return buildEnum( td, attributes, linkage );
[413ad05]968        } else if ( td->kind == TypeData::Symbolic ) {
[1f370451]969                return buildSymbolic( td, attributes, name, scs, linkage );
[413ad05]970        } else {
[a7c90d4]971                return (new ObjectDecl( name, scs, linkage, bitfieldWidth, typebuild( td ), init, attributes ))->set_asmName( asmName );
[413ad05]972        } // if
[2298f728]973        return nullptr;
[413ad05]974} // buildDecl
975
[201aeb9]976
[413ad05]977FunctionType * buildFunction( const TypeData * td ) {
978        assert( td->kind == TypeData::Function );
[2a8427c6]979        FunctionType * ft = new FunctionType( buildQualifiers( td ), ! td->function.params || td->function.params->hasEllipsis );
[704d11e]980        buildList( td->function.params, ft->parameters );
981        buildForall( td->forall, ft->forall );
[413ad05]982        if ( td->base ) {
983                switch ( td->base->kind ) {
984                  case TypeData::Tuple:
[704d11e]985                        buildList( td->base->tuple, ft->returnVals );
[413ad05]986                        break;
987                  default:
[ddfd945]988                        ft->get_returnVals().push_back( dynamic_cast< DeclarationWithType * >( buildDecl( td->base, "", Type::StorageClasses(), nullptr, Type::FuncSpecifiers(), LinkageSpec::Cforall, nullptr ) ) );
[413ad05]989                } // switch
990        } else {
[68fe077a]991                ft->get_returnVals().push_back( new ObjectDecl( "", Type::StorageClasses(), LinkageSpec::Cforall, nullptr, new BasicType( Type::Qualifiers(), BasicType::SignedInt ), nullptr ) );
[413ad05]992        } // if
993        return ft;
994} // buildFunction
[b87a5ed]995
[201aeb9]996
[a7c4921]997// Transform KR routine declarations into C99 routine declarations:
998//
999//    rtn( a, b, c ) int a, c; double b {}  =>  int rtn( int a, double c, int b ) {}
1000//
1001// The type information for each post-declaration is moved to the corresponding pre-parameter and the post-declaration
1002// is deleted. Note, the order of the parameter names may not be the same as the declaration names. Duplicate names and
1003// extra names are disallowed.
1004//
1005// Note, there is no KR routine-prototype syntax:
1006//
1007//    rtn( a, b, c ) int a, c; double b; // invalid KR prototype
1008//    rtn(); // valid KR prototype
1009
[3a5131ed]1010void buildKRFunction( const TypeData::Function_t & function ) {
1011        assert( ! function.params );
[a7c4921]1012        // loop over declaration first as it is easier to spot errors
1013        for ( DeclarationNode * decl = function.oldDeclList; decl != nullptr; decl = dynamic_cast< DeclarationNode * >( decl->get_next() ) ) {
1014                // scan ALL parameter names for each declaration name to check for duplicates
[a7c90d4]1015                for ( DeclarationNode * param = function.idList; param != nullptr; param = dynamic_cast< DeclarationNode * >( param->get_next() ) ) {
[3a5131ed]1016                        if ( *decl->name == *param->name ) {
[a7c4921]1017                                // type set => parameter name already transformed by a declaration names so there is a duplicate
1018                                // declaration name attempting a second transformation
[a16764a6]1019                                if ( param->type ) SemanticError( param->location, string( "duplicate declaration name " ) + *param->name );
[a7c4921]1020                                // declaration type reset => declaration already transformed by a parameter name so there is a duplicate
1021                                // parameter name attempting a second transformation
[a16764a6]1022                                if ( ! decl->type ) SemanticError( param->location, string( "duplicate parameter name " ) + *param->name );
[a7c4921]1023                                param->type = decl->type;                               // set copy declaration type to parameter type
1024                                decl->type = nullptr;                                   // reset declaration type
1025                                param->attributes.splice( param->attributes.end(), decl->attributes ); // copy and reset attributes from declaration to parameter
[3a5131ed]1026                        } // if
1027                } // for
[a7c4921]1028                // declaration type still set => type not moved to a matching parameter so there is a missing parameter name
[a16764a6]1029                if ( decl->type ) SemanticError( decl->location, string( "missing name in parameter list " ) + *decl->name );
[3a5131ed]1030        } // for
[a7c4921]1031
1032        // Parameter names without a declaration default to type int:
1033        //
1034        //    rtb( a, b, c ) const char * b; {} => int rtn( int a, const char * b, int c ) {}
1035
[a7c90d4]1036        for ( DeclarationNode * param = function.idList; param != nullptr; param = dynamic_cast< DeclarationNode * >( param->get_next() ) ) {
[ca1a547]1037                if ( ! param->type ) {                                                  // generate type int for empty parameter type
[3a5131ed]1038                        param->type = new TypeData( TypeData::Basic );
1039                        param->type->basictype = DeclarationNode::Int;
1040                } // if
1041        } // for
1042
[a7c4921]1043        function.params = function.idList;                                      // newly modified idList becomes parameters
1044        function.idList = nullptr;                                                      // idList now empty
1045        delete function.oldDeclList;                                            // deletes entire list
1046        function.oldDeclList = nullptr;                                         // reset
[3a5131ed]1047} // buildKRFunction
1048
[b87a5ed]1049// Local Variables: //
1050// tab-width: 4 //
1051// mode: c++ //
1052// compile-command: "make install" //
1053// End: //
Note: See TracBrowser for help on using the repository browser.