source: src/SynTree/Type.cc @ 9bfc9da

ADTaaron-thesisarm-ehast-experimentalcleanup-dtorsdeferred_resndemanglerenumforall-pointer-decayjacob/cs343-translationjenkins-sandboxnew-astnew-ast-unique-exprnew-envno_listpersistent-indexerpthread-emulationqualifiedEnumresolv-newwith_gc
Last change on this file since 9bfc9da was 9bfc9da, checked in by Rob Schluntz <rschlunt@…>, 6 years ago

Refactor makeSub into genericSubstitution

  • Property mode set to 100644
File size: 3.0 KB
RevLine 
[0dd3a2f]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//
[f1b1e4c]7// Type.cc --
[0dd3a2f]8//
9// Author           : Richard C. Bilson
10// Created On       : Mon May 18 07:44:20 2015
[de9285f]11// Last Modified By : Peter A. Buhr
[201aeb9]12// Last Modified On : Mon Sep 25 15:16:32 2017
13// Update Count     : 38
[0dd3a2f]14//
[51b7345]15#include "Type.h"
[0dd3a2f]16
[9bfc9da]17#include "Attribute.h"                // for Attribute
18#include "Common/utility.h"           // for cloneAll, deleteAll, printAll
19#include "InitTweak/InitTweak.h"      // for getPointerBase
20#include "SynTree/BaseSyntaxNode.h"   // for BaseSyntaxNode
21#include "SynTree/Declaration.h"      // for TypeDecl
22#include "SynTree/TypeSubstitution.h" // for TypeSubstitution
[51b7345]23
[c0aa336]24using namespace std;
25
[17cd4eb]26const char *BasicType::typeNames[BasicType::NUMBER_OF_BASIC_TYPES] = {
[a08ba92]27        "_Bool",
28        "char",
[de9285f]29        "signed char",
[a08ba92]30        "unsigned char",
[de9285f]31        "signed short int",
32        "unsigned short int",
33        "signed int",
[a08ba92]34        "unsigned int",
[de9285f]35        "signed long int",
36        "unsigned long int",
37        "signed long long int",
38        "unsigned long long int",
[a08ba92]39        "float",
40        "double",
41        "long double",
42        "float _Complex",
43        "double _Complex",
44        "long double _Complex",
45        "float _Imaginary",
46        "double _Imaginary",
47        "long double _Imaginary",
[201aeb9]48        "__int128",
49        "unsigned __int128",
[17cd4eb]50};
[51b7345]51
[c0aa336]52Type::Type( const Qualifiers &tq, const std::list< Attribute * > & attributes ) : tq( tq ), attributes( attributes ) {}
[51b7345]53
[64ac636]54Type::Type( const Type &other ) : BaseSyntaxNode( other ), tq( other.tq ) {
[a08ba92]55        cloneAll( other.forall, forall );
[c0aa336]56        cloneAll( other.attributes, attributes );
[51b7345]57}
58
[17cd4eb]59Type::~Type() {
[a08ba92]60        deleteAll( forall );
[c0aa336]61        deleteAll( attributes );
[51b7345]62}
63
[68fe077a]64// These must remain in the same order as the corresponding bit fields.
[615a096]65const char * Type::FuncSpecifiersNames[] = { "inline", "fortran", "_Noreturn" };
66const char * Type::StorageClassesNames[] = { "extern", "static", "auto", "register", "_Thread_local" };
67const char * Type::QualifiersNames[] = { "const", "restrict", "volatile", "lvalue", "mutex", "_Atomic" };
[0dd3a2f]68
[0698aa1]69Type * Type::stripDeclarator() {
[de9285f]70        Type * type, * at;
71        for ( type = this; (at = InitTweak::getPointerBase( type )); type = at );
[6f95000]72        return type;
73}
[0dd3a2f]74
[0698aa1]75Type * Type::stripReferences() {
[de9285f]76        Type * type;
77        ReferenceType * ref;
[50377a4]78        for ( type = this; (ref = dynamic_cast<ReferenceType *>( type )); type = ref->base );
[0698aa1]79        return type;
80}
81
[e6cee92]82int Type::referenceDepth() const { return 0; }
83
[9bfc9da]84TypeSubstitution Type::genericSubstitution() const { assertf( false, "Non-aggregate type: %s", toCString( this ) ); }
85
[50377a4]86void Type::print( std::ostream &os, Indenter indent ) const {
[f1b1e4c]87        if ( ! forall.empty() ) {
88                os << "forall" << std::endl;
[50377a4]89                printAll( forall, os, indent+1 );
90                os << ++indent;
[f1b1e4c]91        } // if
[c0aa336]92
93        if ( ! attributes.empty() ) {
[50377a4]94                os << "with attributes" << endl;
95                printAll( attributes, os, indent+1 );
[c0aa336]96        } // if
[64ac636]97
[d6d747d]98        tq.print( os );
[f1b1e4c]99}
100
[65cdc1e]101// Empty Variable declarations:
102const Type::FuncSpecifiers noFuncSpecifiers;
103const Type::StorageClasses noStorageClasses;
104const Type::Qualifiers noQualifiers;
105
[0dd3a2f]106// Local Variables: //
107// tab-width: 4 //
108// mode: c++ //
109// compile-command: "make install" //
110// End: //
Note: See TracBrowser for help on using the repository browser.