source: src/SynTree/Type.cc @ ed94eac

ADTaaron-thesisarm-ehast-experimentalcleanup-dtorsctordeferred_resndemanglerenumforall-pointer-decaygc_noraiijacob/cs343-translationjenkins-sandboxmemorynew-astnew-ast-unique-exprnew-envno_listpersistent-indexerpthread-emulationqualifiedEnumresolv-newstringwith_gc
Last change on this file since ed94eac was 1db21619, checked in by Peter A. Buhr <pabuhr@…>, 9 years ago

add CFA flag, remove -p from cc1, typedef on functions become function declarations, move isInline/isNoreturn to Declaration, cleaned up label code

  • Property mode set to 100644
File size: 1.7 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 : Thu Jul  9 16:45:13 2015
13// Update Count     : 3
14//
15
16#include "SynTree.h"
17#include "Visitor.h"
18#include "Type.h"
19#include "Declaration.h"
20#include "utility.h"
21
22const char *BasicType::typeNames[BasicType::NUMBER_OF_BASIC_TYPES] = {
23        "_Bool",
24        "char",
25        "char",
26        "unsigned char",
27        "short",
28        "short unsigned",
29        "int",
30        "unsigned int",
31        "long int",
32        "long unsigned int",
33        "long long int",
34        "long long unsigned int",
35        "float",
36        "double",
37        "long double",
38        "float _Complex",
39        "double _Complex",
40        "long double _Complex",
41        "float _Imaginary",
42        "double _Imaginary",
43        "long double _Imaginary",
44};
45
46Type::Type( const Qualifiers &tq ) : tq( tq ) {}
47
48Type::Type( const Type &other ) : tq( other.tq ) {
49        cloneAll( other.forall, forall );
50}
51
52Type::~Type() {
53        deleteAll( forall );
54}
55
56void Type::print( std::ostream &os, int indent ) const {
57        if ( ! forall.empty() ) {
58                os << "forall" << std::endl;
59                printAll( forall, os, indent + 4 );
60                os << std::string( indent+2, ' ' );
61        } // if
62        if ( tq.isConst ) {
63                os << "const ";
64        } // if
65        if ( tq.isVolatile ) {
66                os << "volatile ";
67        } // if
68        if ( tq.isRestrict ) {
69                os << "restrict ";
70        } // if
71        if ( tq.isLvalue ) {
72                os << "lvalue ";
73        } // if
74        if ( tq.isAtomic ) {
75                os << "_Atomic ";
76        } // if
77        if ( tq.isAttribute ) {
78                os << "__attribute(( )) ";
79        } // if
80}
81
82// Local Variables: //
83// tab-width: 4 //
84// mode: c++ //
85// compile-command: "make install" //
86// End: //
Note: See TracBrowser for help on using the repository browser.