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 1e8f143 was
843054c2,
checked in by Peter A. Buhr <pabuhr@…>, 9 years ago
|
licencing: seventh groups of files
|
-
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 : Tue May 19 16:52:27 2015 |
---|
13 | // Update Count : 2 |
---|
14 | // |
---|
15 | |
---|
16 | #include "SynTree.h" |
---|
17 | #include "Visitor.h" |
---|
18 | #include "Type.h" |
---|
19 | #include "Declaration.h" |
---|
20 | #include "utility.h" |
---|
21 | |
---|
22 | const 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 | |
---|
46 | Type::Type( const Qualifiers &tq ) : tq( tq ) {} |
---|
47 | |
---|
48 | Type::Type( const Type &other ) : tq( other.tq ) { |
---|
49 | cloneAll( other.forall, forall ); |
---|
50 | } |
---|
51 | |
---|
52 | Type::~Type() { |
---|
53 | deleteAll( forall ); |
---|
54 | } |
---|
55 | |
---|
56 | void 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 | } |
---|
78 | |
---|
79 | // Local Variables: // |
---|
80 | // tab-width: 4 // |
---|
81 | // mode: c++ // |
---|
82 | // compile-command: "make install" // |
---|
83 | // End: // |
---|
Note: See
TracBrowser
for help on using the repository browser.