source: src/SynTree/Type.cc @ bfc7811

new-envwith_gc
Last change on this file since bfc7811 was 68f9c43, checked in by Aaron Moss <a3moss@…>, 6 years ago

First pass at delete removal

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