source: src/SynTree/Type.cc @ f3fc8cbe

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 f3fc8cbe was baf7fee, checked in by Rob Schluntz <rschlunt@…>, 8 years ago

added output operators for AST types, made makeTyVars public in PolyMutator?

  • Property mode set to 100644
File size: 1.8 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 : Rob Schluntz
12// Last Modified On : Wed Dec 09 14:08:48 2015
13// Update Count     : 4
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
82std::ostream & operator<<( std::ostream & out, Type * type ) {
83        type->print( out );
84        return out;
85}
86
87// Local Variables: //
88// tab-width: 4 //
89// mode: c++ //
90// compile-command: "make install" //
91// End: //
Note: See TracBrowser for help on using the repository browser.