source: src/Parser/TypeData.cc @ ede87c6

ADTaaron-thesisarm-ehast-experimentalcleanup-dtorsenumforall-pointer-decayjacob/cs343-translationjenkins-sandboxnew-astnew-ast-unique-exprno_listpersistent-indexerpthread-emulationqualifiedEnum
Last change on this file since ede87c6 was 07ec1a2, checked in by Thierry Delisle <tdelisle@…>, 5 years ago

Removed unnecessary trailing whitespaces in tests

  • Property mode set to 100644
File size: 36.0 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
[c45b304]12// Last Modified On : Fri Nov  2 07:54:26 2018
13// Update Count     : 624
[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;
[d15a45d]69                aggregate.kind = DeclarationNode::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:
[dd020c0]347                os << DeclarationNode::aggregateNames[ 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);
[f0ecf9b]491                if ( n->variable.tyClass == DeclarationNode::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:
[f441c88]524                        // fill in implicit int
525                        return new BasicType( buildQualifiers( td ), BasicType::SignedInt );
[413ad05]526          case TypeData::Basic:
[f441c88]527                        return buildBasicType( td );
[413ad05]528          case TypeData::Pointer:
[f441c88]529                        return buildPointer( td );
[413ad05]530          case TypeData::Array:
[f441c88]531                        return buildArray( td );
[ce8c12f]532          case TypeData::Reference:
[f441c88]533                        return buildReference( td );
[413ad05]534          case TypeData::Function:
[f441c88]535                        return buildFunction( td );
[413ad05]536          case TypeData::AggregateInst:
[f441c88]537                        return buildAggInst( td );
[413ad05]538          case TypeData::EnumConstant:
[f441c88]539                        // the name gets filled in later -- by SymTab::Validate
540                        return new EnumInstType( buildQualifiers( td ), "" );
[413ad05]541          case TypeData::SymbolicInst:
[f441c88]542                        return buildSymbolicInst( td );
[413ad05]543          case TypeData::Tuple:
[f441c88]544                        return buildTuple( td );
[413ad05]545          case TypeData::Typeof:
[f855545]546          case TypeData::Basetypeof:
[f441c88]547                        return buildTypeof( td );
[413ad05]548          case TypeData::Builtin:
[f441c88]549                        if (td->builtintype == DeclarationNode::Zero) {
550                                return new ZeroType( noQualifiers );
551                        }
552                        else if (td->builtintype == DeclarationNode::One) {
553                                return new OneType( noQualifiers );
554                        }
555                        else {
556                                return new VarArgsType( buildQualifiers( td ) );
557                        }
[c194661]558          case TypeData::GlobalScope:
[f441c88]559                        return new GlobalScopeType();
[c194661]560                case TypeData::Qualified:
[f441c88]561                        return new QualifiedType( buildQualifiers( td ), typebuild( td->qualified.parent ), typebuild( td->qualified.child ) );
[413ad05]562          case TypeData::Symbolic:
563          case TypeData::Enum:
564          case TypeData::Aggregate:
[f441c88]565                        assert( false );
[68cd1ce]566        } // switch
[c194661]567
[2298f728]568        return nullptr;
[413ad05]569} // typebuild
570
[201aeb9]571
[413ad05]572TypeData * typeextractAggregate( const TypeData * td, bool toplevel ) {
[2298f728]573        TypeData * ret = nullptr;
[51b7345]574
[413ad05]575        switch ( td->kind ) {
576          case TypeData::Aggregate:
[b2da0574]577                if ( ! toplevel && td->aggregate.body ) {
[413ad05]578                        ret = td->clone();
579                } // if
580                break;
581          case TypeData::Enum:
[b2da0574]582                if ( ! toplevel && td->enumeration.body ) {
[413ad05]583                        ret = td->clone();
584                } // if
585                break;
586          case TypeData::AggregateInst:
[8f6f47d7]587                if ( td->aggInst.aggregate ) {
588                        ret = typeextractAggregate( td->aggInst.aggregate, false );
[413ad05]589                } // if
590                break;
591          default:
592                if ( td->base ) {
593                        ret = typeextractAggregate( td->base, false );
594                } // if
595        } // switch
596        return ret;
597} // typeextractAggregate
598
[201aeb9]599
[413ad05]600Type::Qualifiers buildQualifiers( const TypeData * td ) {
[738e304]601        return td->qualifiers;
[413ad05]602} // buildQualifiers
[51b7345]603
[201aeb9]604
605static string genTSError( string msg, DeclarationNode::BasicType basictype ) {
[a16764a6]606        SemanticError( yylloc, string( "invalid type specifier \"" ) + msg + "\" for type \"" + DeclarationNode::basicTypeNames[basictype] + "\"." );
[201aeb9]607} // genTSError
608
[413ad05]609Type * buildBasicType( const TypeData * td ) {
[b87a5ed]610        BasicType::Kind ret;
611
[5b639ee]612        switch ( td->basictype ) {
613          case DeclarationNode::Void:
[201aeb9]614                if ( td->signedness != DeclarationNode::NoSignedness ) {
615                        genTSError( DeclarationNode::signednessNames[ td->signedness ], td->basictype );
616                } // if
617                if ( td->length != DeclarationNode::NoLength ) {
618                        genTSError( DeclarationNode::lengthNames[ td->length ], td->basictype );
[68cd1ce]619                } // if
[5b639ee]620                return new VoidType( buildQualifiers( td ) );
621                break;
622
623          case DeclarationNode::Bool:
624                if ( td->signedness != DeclarationNode::NoSignedness ) {
[201aeb9]625                        genTSError( DeclarationNode::signednessNames[ td->signedness ], td->basictype );
[5b639ee]626                } // if
627                if ( td->length != DeclarationNode::NoLength ) {
[201aeb9]628                        genTSError( DeclarationNode::lengthNames[ td->length ], td->basictype );
[68cd1ce]629                } // if
[51b7345]630
[5b639ee]631                ret = BasicType::Bool;
632                break;
633
634          case DeclarationNode::Char:
635                // C11 Standard 6.2.5.15: The three types char, signed char, and unsigned char are collectively called the
636                // character types. The implementation shall define char to have the same range, representation, and behavior as
637                // either signed char or unsigned char.
[8c49c0e]638                static BasicType::Kind chartype[] = { BasicType::SignedChar, BasicType::UnsignedChar, BasicType::Char };
[5b639ee]639
640                if ( td->length != DeclarationNode::NoLength ) {
[201aeb9]641                        genTSError( DeclarationNode::lengthNames[ td->length ], td->basictype );
[5b639ee]642                } // if
643
644                ret = chartype[ td->signedness ];
645                break;
646
647          case DeclarationNode::Int:
648                static BasicType::Kind inttype[2][4] = {
649                        { BasicType::ShortSignedInt, BasicType::LongSignedInt, BasicType::LongLongSignedInt, BasicType::SignedInt },
650                        { BasicType::ShortUnsignedInt, BasicType::LongUnsignedInt, BasicType::LongLongUnsignedInt, BasicType::UnsignedInt },
651                };
652
653          Integral: ;
654                if ( td->signedness == DeclarationNode::NoSignedness ) {
655                        const_cast<TypeData *>(td)->signedness = DeclarationNode::Signed;
656                } // if
657                ret = inttype[ td->signedness ][ td->length ];
658                break;
659
[201aeb9]660          case DeclarationNode::Int128:
[4ee3b0c1]661                ret = td->signedness == DeclarationNode::Unsigned ? BasicType::UnsignedInt128 : BasicType::SignedInt128;
[201aeb9]662                if ( td->length != DeclarationNode::NoLength ) {
663                        genTSError( DeclarationNode::lengthNames[ td->length ], td->basictype );
664                } // if
665                break;
666
[5b639ee]667          case DeclarationNode::Float:
[201aeb9]668          case DeclarationNode::Float80:
669          case DeclarationNode::Float128:
[5b639ee]670          case DeclarationNode::Double:
671          case DeclarationNode::LongDouble:                                     // not set until below
672                static BasicType::Kind floattype[3][3] = {
673                        { BasicType::FloatComplex, BasicType::DoubleComplex, BasicType::LongDoubleComplex },
674                        { BasicType::FloatImaginary, BasicType::DoubleImaginary, BasicType::LongDoubleImaginary },
675                        { BasicType::Float, BasicType::Double, BasicType::LongDouble },
676                };
677
678          FloatingPoint: ;
679                if ( td->signedness != DeclarationNode::NoSignedness ) {
[201aeb9]680                        genTSError( DeclarationNode::signednessNames[ td->signedness ], td->basictype );
[5b639ee]681                } // if
682                if ( td->length == DeclarationNode::Short || td->length == DeclarationNode::LongLong ) {
[201aeb9]683                        genTSError( DeclarationNode::lengthNames[ td->length ], td->basictype );
[5b639ee]684                } // if
[4ee3b0c1]685                if ( td->basictype != DeclarationNode::Double && td->length == DeclarationNode::Long ) {
[201aeb9]686                        genTSError( DeclarationNode::lengthNames[ td->length ], td->basictype );
[5b639ee]687                } // if
688                if ( td->length == DeclarationNode::Long ) {
689                        const_cast<TypeData *>(td)->basictype = DeclarationNode::LongDouble;
690                } // if
691
[4ee3b0c1]692                if ( td->basictype == DeclarationNode::Float80 || td->basictype == DeclarationNode::Float128 ) {
[2ee0076]693                        // if ( td->complextype != DeclarationNode::NoComplexType ) {
694                        //      genTSError( DeclarationNode::complexTypeNames[ td->complextype ], td->basictype );
695                        // }
[4ee3b0c1]696                        if ( td->basictype == DeclarationNode::Float80 ) ret = BasicType::Float80;
697                        else ret = BasicType::Float128;
698                        break;
699                }
700
[5b639ee]701                ret = floattype[ td->complextype ][ td->basictype - DeclarationNode::Float ];
702                break;
703
704          case DeclarationNode::NoBasicType:
705                // No basic type in declaration => default double for Complex/Imaginary and int type for integral types
706                if ( td->complextype == DeclarationNode::Complex || td->complextype == DeclarationNode::Imaginary ) {
707                        const_cast<TypeData *>(td)->basictype = DeclarationNode::Double;
708                        goto FloatingPoint;
709                } // if
710
711                const_cast<TypeData *>(td)->basictype = DeclarationNode::Int;
712                goto Integral;
[2ee5426]713          default:
[201aeb9]714                assertf( false, "unknown basic type" );
[2ee5426]715                return nullptr;
[5b639ee]716        } // switch
717
718        BasicType * bt = new BasicType( buildQualifiers( td ), ret );
[413ad05]719        buildForall( td->forall, bt->get_forall() );
[b87a5ed]720        return bt;
[413ad05]721} // buildBasicType
[51b7345]722
[201aeb9]723
[413ad05]724PointerType * buildPointer( const TypeData * td ) {
725        PointerType * pt;
726        if ( td->base ) {
727                pt = new PointerType( buildQualifiers( td ), typebuild( td->base ) );
[b87a5ed]728        } else {
[413ad05]729                pt = new PointerType( buildQualifiers( td ), new BasicType( Type::Qualifiers(), BasicType::SignedInt ) );
[68cd1ce]730        } // if
[413ad05]731        buildForall( td->forall, pt->get_forall() );
[b87a5ed]732        return pt;
[413ad05]733} // buildPointer
[51b7345]734
[201aeb9]735
[413ad05]736ArrayType * buildArray( const TypeData * td ) {
737        ArrayType * at;
738        if ( td->base ) {
[8f6f47d7]739                at = new ArrayType( buildQualifiers( td ), typebuild( td->base ), maybeBuild< Expression >( td->array.dimension ),
740                                                        td->array.isVarLen, td->array.isStatic );
[b87a5ed]741        } else {
[413ad05]742                at = new ArrayType( buildQualifiers( td ), new BasicType( Type::Qualifiers(), BasicType::SignedInt ),
[8f6f47d7]743                                                        maybeBuild< Expression >( td->array.dimension ), td->array.isVarLen, td->array.isStatic );
[68cd1ce]744        } // if
[413ad05]745        buildForall( td->forall, at->get_forall() );
[b87a5ed]746        return at;
[ce8c12f]747} // buildArray
748
[201aeb9]749
[ce8c12f]750ReferenceType * buildReference( const TypeData * td ) {
751        ReferenceType * rt;
752        if ( td->base ) {
753                rt = new ReferenceType( buildQualifiers( td ), typebuild( td->base ) );
754        } else {
755                rt = new ReferenceType( buildQualifiers( td ), new BasicType( Type::Qualifiers(), BasicType::SignedInt ) );
756        } // if
757        buildForall( td->forall, rt->get_forall() );
758        return rt;
759} // buildReference
[51b7345]760
[201aeb9]761
[fa4805f]762AggregateDecl * buildAggregate( const TypeData * td, std::list< Attribute * > attributes, LinkageSpec::Spec linkage ) {
[413ad05]763        assert( td->kind == TypeData::Aggregate );
764        AggregateDecl * at;
[8f6f47d7]765        switch ( td->aggregate.kind ) {
[b87a5ed]766          case DeclarationNode::Struct:
[409433da]767          case DeclarationNode::Coroutine:
768          case DeclarationNode::Monitor:
769          case DeclarationNode::Thread:
[fa4805f]770                at = new StructDecl( *td->aggregate.name, td->aggregate.kind, attributes, linkage );
[8f6f47d7]771                buildForall( td->aggregate.params, at->get_parameters() );
[b87a5ed]772                break;
773          case DeclarationNode::Union:
[bd46af4]774                at = new UnionDecl( *td->aggregate.name, attributes, linkage );
[8f6f47d7]775                buildForall( td->aggregate.params, at->get_parameters() );
[b87a5ed]776                break;
[4040425]777          case DeclarationNode::Trait:
[bd46af4]778                at = new TraitDecl( *td->aggregate.name, attributes, linkage );
[8f6f47d7]779                buildList( td->aggregate.params, at->get_parameters() );
[b87a5ed]780                break;
781          default:
782                assert( false );
[68cd1ce]783        } // switch
[4e06c1e]784
[8f6f47d7]785        buildList( td->aggregate.fields, at->get_members() );
786        at->set_body( td->aggregate.body );
[b87a5ed]787
788        return at;
[413ad05]789} // buildAggregate
[51b7345]790
[201aeb9]791
[fa4805f]792ReferenceToType * buildComAggInst( const TypeData * type, std::list< Attribute * > attributes, LinkageSpec::Spec linkage ) {
[43c89a7]793        switch ( type->kind ) {
794          case TypeData::Enum: {
795                  if ( type->enumeration.body ) {
[bd46af4]796                          EnumDecl * typedecl = buildEnum( type, attributes, linkage );
[43c89a7]797                          return new EnumInstType( buildQualifiers( type ), typedecl );
798                  } else {
799                          return new EnumInstType( buildQualifiers( type ), *type->enumeration.name );
800                  } // if
801          }
802          case TypeData::Aggregate: {
803                  ReferenceToType * ret;
804                  if ( type->aggregate.body ) {
[fa4805f]805                          AggregateDecl * typedecl = buildAggregate( type, attributes, linkage );
[43c89a7]806                          switch ( type->aggregate.kind ) {
807                                case DeclarationNode::Struct:
[409433da]808                                case DeclarationNode::Coroutine:
809                                case DeclarationNode::Monitor:
810                                case DeclarationNode::Thread:
[43c89a7]811                                  ret = new StructInstType( buildQualifiers( type ), (StructDecl *)typedecl );
812                                  break;
813                                case DeclarationNode::Union:
814                                  ret = new UnionInstType( buildQualifiers( type ), (UnionDecl *)typedecl );
815                                  break;
816                                case DeclarationNode::Trait:
817                                  assert( false );
818                                  //ret = new TraitInstType( buildQualifiers( type ), (TraitDecl *)typedecl );
819                                  break;
820                                default:
821                                  assert( false );
822                          } // switch
823                  } else {
824                          switch ( type->aggregate.kind ) {
825                                case DeclarationNode::Struct:
[409433da]826                                case DeclarationNode::Coroutine:
827                                case DeclarationNode::Monitor:
828                                case DeclarationNode::Thread:
[43c89a7]829                                  ret = new StructInstType( buildQualifiers( type ), *type->aggregate.name );
830                                  break;
831                                case DeclarationNode::Union:
832                                  ret = new UnionInstType( buildQualifiers( type ), *type->aggregate.name );
833                                  break;
834                                case DeclarationNode::Trait:
835                                  ret = new TraitInstType( buildQualifiers( type ), *type->aggregate.name );
836                                  break;
837                                default:
838                                  assert( false );
839                          } // switch
840                  } // if
841                  return ret;
842          }
843          default:
844                assert( false );
845        } // switch
846} // buildAggInst
847
[201aeb9]848
[413ad05]849ReferenceToType * buildAggInst( const TypeData * td ) {
850        assert( td->kind == TypeData::AggregateInst );
[b87a5ed]851
[43c89a7]852        // ReferenceToType * ret = buildComAggInst( td->aggInst.aggregate, std::list< Attribute * >() );
853        ReferenceToType * ret = nullptr;
854        TypeData * type = td->aggInst.aggregate;
855        switch ( type->kind ) {
856          case TypeData::Enum: {
857                  return new EnumInstType( buildQualifiers( type ), *type->enumeration.name );
858          }
859          case TypeData::Aggregate: {
860                  switch ( type->aggregate.kind ) {
861                        case DeclarationNode::Struct:
[409433da]862                        case DeclarationNode::Coroutine:
863                        case DeclarationNode::Monitor:
864                        case DeclarationNode::Thread:
[43c89a7]865                          ret = new StructInstType( buildQualifiers( type ), *type->aggregate.name );
866                          break;
867                        case DeclarationNode::Union:
868                          ret = new UnionInstType( buildQualifiers( type ), *type->aggregate.name );
869                          break;
870                        case DeclarationNode::Trait:
871                          ret = new TraitInstType( buildQualifiers( type ), *type->aggregate.name );
872                          break;
873                        default:
874                          assert( false );
875                  } // switch
876          }
877          break;
878          default:
879                assert( false );
880        } // switch
881
882        ret->set_hoistType( td->aggInst.hoistType );
[8f6f47d7]883        buildList( td->aggInst.params, ret->get_parameters() );
[413ad05]884        buildForall( td->forall, ret->get_forall() );
[b87a5ed]885        return ret;
[413ad05]886} // buildAggInst
887
[201aeb9]888
[1f370451]889NamedTypeDecl * buildSymbolic( const TypeData * td, std::list< Attribute * > attributes, const string & name, Type::StorageClasses scs, LinkageSpec::Spec linkage ) {
[413ad05]890        assert( td->kind == TypeData::Symbolic );
891        NamedTypeDecl * ret;
892        assert( td->base );
[8f6f47d7]893        if ( td->symbolic.isTypedef ) {
[0b0f1dd]894                ret = new TypedefDecl( name, td->location, scs, typebuild( td->base ), linkage );
[b87a5ed]895        } else {
[f0ecf9b]896                ret = new TypeDecl( name, scs, typebuild( td->base ), TypeDecl::Dtype, true );
[68cd1ce]897        } // if
[8f6f47d7]898        buildList( td->symbolic.params, ret->get_parameters() );
899        buildList( td->symbolic.assertions, ret->get_assertions() );
[1f370451]900        ret->base->attributes.splice( ret->base->attributes.end(), attributes );
[b87a5ed]901        return ret;
[413ad05]902} // buildSymbolic
[51b7345]903
[201aeb9]904
[bd46af4]905EnumDecl * buildEnum( const TypeData * td, std::list< Attribute * > attributes, LinkageSpec::Spec linkage ) {
[413ad05]906        assert( td->kind == TypeData::Enum );
[bd46af4]907        EnumDecl * ret = new EnumDecl( *td->enumeration.name, attributes, linkage );
[8f6f47d7]908        buildList( td->enumeration.constants, ret->get_members() );
[2298f728]909        list< Declaration * >::iterator members = ret->get_members().begin();
[8f6f47d7]910        for ( const DeclarationNode * cur = td->enumeration. constants; cur != nullptr; cur = dynamic_cast< DeclarationNode * >( cur->get_next() ), ++members ) {
[4f147cc]911                if ( cur->has_enumeratorValue() ) {
[413ad05]912                        ObjectDecl * member = dynamic_cast< ObjectDecl * >(* members);
[e4d829b]913                        member->set_init( new SingleInit( maybeMoveBuild< Expression >( cur->consume_enumeratorValue() ) ) );
[90c3b1c]914                } // if
915        } // for
[ca1a547]916        ret->set_body( td->enumeration.body );
[b87a5ed]917        return ret;
[413ad05]918} // buildEnum
[51b7345]919
[201aeb9]920
[413ad05]921TypeInstType * buildSymbolicInst( const TypeData * td ) {
922        assert( td->kind == TypeData::SymbolicInst );
[2298f728]923        TypeInstType * ret = new TypeInstType( buildQualifiers( td ), *td->symbolic.name, false );
[8f6f47d7]924        buildList( td->symbolic.actuals, ret->get_parameters() );
[413ad05]925        buildForall( td->forall, ret->get_forall() );
[b87a5ed]926        return ret;
[413ad05]927} // buildSymbolicInst
[51b7345]928
[201aeb9]929
[413ad05]930TupleType * buildTuple( const TypeData * td ) {
931        assert( td->kind == TypeData::Tuple );
[62423350]932        std::list< Type * > types;
933        buildTypeList( td->tuple, types );
934        TupleType * ret = new TupleType( buildQualifiers( td ), types );
[413ad05]935        buildForall( td->forall, ret->get_forall() );
[b87a5ed]936        return ret;
[413ad05]937} // buildTuple
938
[201aeb9]939
[413ad05]940TypeofType * buildTypeof( const TypeData * td ) {
[f855545]941        assert( td->kind == TypeData::Typeof || td->kind == TypeData::Basetypeof );
[413ad05]942        assert( td->typeexpr );
[8f6f47d7]943        // assert( td->typeexpr->expr );
[07ec1a2]944        return new TypeofType{
[f441c88]945                buildQualifiers( td ), td->typeexpr->build(), td->kind == TypeData::Basetypeof };
[413ad05]946} // buildTypeof
947
[201aeb9]948
[e612146c]949Declaration * 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]950        if ( td->kind == TypeData::Function ) {
[ca1a547]951                if ( td->function.idList ) {                                    // KR function ?
952                        buildKRFunction( td->function );                        // transform into C11 function
[3a5131ed]953                } // if
954
[413ad05]955                FunctionDecl * decl;
[ca1a547]956                Statement * stmt = maybeBuild<Statement>( td->function.body );
[a7c90d4]957                CompoundStmt * body = dynamic_cast< CompoundStmt * >( stmt );
958                decl = new FunctionDecl( name, scs, linkage, buildFunction( td ), body, attributes, funcSpec );
[c453ac4]959                buildList( td->function.withExprs, decl->withExprs );
[58dd019]960                return decl->set_asmName( asmName );
[413ad05]961        } else if ( td->kind == TypeData::Aggregate ) {
[fa4805f]962                return buildAggregate( td, attributes, linkage );
[413ad05]963        } else if ( td->kind == TypeData::Enum ) {
[bd46af4]964                return buildEnum( td, attributes, linkage );
[413ad05]965        } else if ( td->kind == TypeData::Symbolic ) {
[1f370451]966                return buildSymbolic( td, attributes, name, scs, linkage );
[413ad05]967        } else {
[a7c90d4]968                return (new ObjectDecl( name, scs, linkage, bitfieldWidth, typebuild( td ), init, attributes ))->set_asmName( asmName );
[413ad05]969        } // if
[2298f728]970        return nullptr;
[413ad05]971} // buildDecl
972
[201aeb9]973
[413ad05]974FunctionType * buildFunction( const TypeData * td ) {
975        assert( td->kind == TypeData::Function );
[2a8427c6]976        FunctionType * ft = new FunctionType( buildQualifiers( td ), ! td->function.params || td->function.params->hasEllipsis );
[704d11e]977        buildList( td->function.params, ft->parameters );
978        buildForall( td->forall, ft->forall );
[413ad05]979        if ( td->base ) {
980                switch ( td->base->kind ) {
981                  case TypeData::Tuple:
[704d11e]982                        buildList( td->base->tuple, ft->returnVals );
[413ad05]983                        break;
984                  default:
[ddfd945]985                        ft->get_returnVals().push_back( dynamic_cast< DeclarationWithType * >( buildDecl( td->base, "", Type::StorageClasses(), nullptr, Type::FuncSpecifiers(), LinkageSpec::Cforall, nullptr ) ) );
[413ad05]986                } // switch
987        } else {
[68fe077a]988                ft->get_returnVals().push_back( new ObjectDecl( "", Type::StorageClasses(), LinkageSpec::Cforall, nullptr, new BasicType( Type::Qualifiers(), BasicType::SignedInt ), nullptr ) );
[413ad05]989        } // if
990        return ft;
991} // buildFunction
[b87a5ed]992
[201aeb9]993
[a7c4921]994// Transform KR routine declarations into C99 routine declarations:
995//
996//    rtn( a, b, c ) int a, c; double b {}  =>  int rtn( int a, double c, int b ) {}
997//
998// The type information for each post-declaration is moved to the corresponding pre-parameter and the post-declaration
999// is deleted. Note, the order of the parameter names may not be the same as the declaration names. Duplicate names and
1000// extra names are disallowed.
1001//
1002// Note, there is no KR routine-prototype syntax:
1003//
1004//    rtn( a, b, c ) int a, c; double b; // invalid KR prototype
1005//    rtn(); // valid KR prototype
1006
[3a5131ed]1007void buildKRFunction( const TypeData::Function_t & function ) {
1008        assert( ! function.params );
[a7c4921]1009        // loop over declaration first as it is easier to spot errors
1010        for ( DeclarationNode * decl = function.oldDeclList; decl != nullptr; decl = dynamic_cast< DeclarationNode * >( decl->get_next() ) ) {
1011                // scan ALL parameter names for each declaration name to check for duplicates
[a7c90d4]1012                for ( DeclarationNode * param = function.idList; param != nullptr; param = dynamic_cast< DeclarationNode * >( param->get_next() ) ) {
[3a5131ed]1013                        if ( *decl->name == *param->name ) {
[a7c4921]1014                                // type set => parameter name already transformed by a declaration names so there is a duplicate
1015                                // declaration name attempting a second transformation
[a16764a6]1016                                if ( param->type ) SemanticError( param->location, string( "duplicate declaration name " ) + *param->name );
[a7c4921]1017                                // declaration type reset => declaration already transformed by a parameter name so there is a duplicate
1018                                // parameter name attempting a second transformation
[a16764a6]1019                                if ( ! decl->type ) SemanticError( param->location, string( "duplicate parameter name " ) + *param->name );
[a7c4921]1020                                param->type = decl->type;                               // set copy declaration type to parameter type
1021                                decl->type = nullptr;                                   // reset declaration type
1022                                param->attributes.splice( param->attributes.end(), decl->attributes ); // copy and reset attributes from declaration to parameter
[3a5131ed]1023                        } // if
1024                } // for
[a7c4921]1025                // declaration type still set => type not moved to a matching parameter so there is a missing parameter name
[a16764a6]1026                if ( decl->type ) SemanticError( decl->location, string( "missing name in parameter list " ) + *decl->name );
[3a5131ed]1027        } // for
[a7c4921]1028
1029        // Parameter names without a declaration default to type int:
1030        //
1031        //    rtb( a, b, c ) const char * b; {} => int rtn( int a, const char * b, int c ) {}
1032
[a7c90d4]1033        for ( DeclarationNode * param = function.idList; param != nullptr; param = dynamic_cast< DeclarationNode * >( param->get_next() ) ) {
[ca1a547]1034                if ( ! param->type ) {                                                  // generate type int for empty parameter type
[3a5131ed]1035                        param->type = new TypeData( TypeData::Basic );
1036                        param->type->basictype = DeclarationNode::Int;
1037                } // if
1038        } // for
1039
[a7c4921]1040        function.params = function.idList;                                      // newly modified idList becomes parameters
1041        function.idList = nullptr;                                                      // idList now empty
1042        delete function.oldDeclList;                                            // deletes entire list
1043        function.oldDeclList = nullptr;                                         // reset
[3a5131ed]1044} // buildKRFunction
1045
[b87a5ed]1046// Local Variables: //
1047// tab-width: 4 //
1048// mode: c++ //
1049// compile-command: "make install" //
1050// End: //
Note: See TracBrowser for help on using the repository browser.