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 | // ReferenceToType.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 Feb 23 16:38:54 2017 |
---|
13 | // Update Count : 24 |
---|
14 | // |
---|
15 | |
---|
16 | #include <cassert> // for assert |
---|
17 | #include <list> // for list, _List_const_iterator, list<>::cons... |
---|
18 | #include <ostream> // for operator<<, basic_ostream, ostream, endl |
---|
19 | #include <string> // for string, operator<<, char_traits, operator== |
---|
20 | |
---|
21 | #include "Common/utility.h" // for printAll, cloneAll, deleteAll |
---|
22 | #include "Declaration.h" // for StructDecl, UnionDecl, EnumDecl, Declara... |
---|
23 | #include "Expression.h" // for Expression |
---|
24 | #include "Type.h" // for TypeInstType, StructInstType, UnionInstType |
---|
25 | #include "TypeSubstitution.h" // for TypeSubstitution |
---|
26 | |
---|
27 | class Attribute; |
---|
28 | |
---|
29 | ReferenceToType::ReferenceToType( const Type::Qualifiers &tq, const std::string &name, const std::list< Attribute * > & attributes ) : Type( tq, attributes ), name( name ), hoistType( false ) { |
---|
30 | } |
---|
31 | |
---|
32 | ReferenceToType::ReferenceToType( const ReferenceToType &other ) : Type( other ), name( other.name ), hoistType( other.hoistType ) { |
---|
33 | cloneAll( other.parameters, parameters ); |
---|
34 | } |
---|
35 | |
---|
36 | ReferenceToType::~ReferenceToType() { |
---|
37 | deleteAll( parameters ); |
---|
38 | } |
---|
39 | |
---|
40 | void ReferenceToType::print( std::ostream &os, Indenter indent ) const { |
---|
41 | using std::endl; |
---|
42 | |
---|
43 | Type::print( os, indent ); |
---|
44 | os << "instance of " << typeString() << " " << name << " "; |
---|
45 | if ( ! parameters.empty() ) { |
---|
46 | os << endl << indent << "... with parameters" << endl; |
---|
47 | printAll( parameters, os, indent+1 ); |
---|
48 | } // if |
---|
49 | } |
---|
50 | |
---|
51 | namespace { |
---|
52 | void doLookup( const std::list< Declaration * > & members, const std::string & name, std::list< Declaration* > & foundDecls ) { |
---|
53 | for ( Declaration * decl : members ) { |
---|
54 | if ( decl->name == name ) { |
---|
55 | foundDecls.push_back( decl ); |
---|
56 | } // if |
---|
57 | } // for |
---|
58 | } |
---|
59 | } // namespace |
---|
60 | |
---|
61 | StructInstType::StructInstType( const Type::Qualifiers & tq, StructDecl * baseStruct, const std::list< Attribute * > & attributes ) : |
---|
62 | Parent( tq, baseStruct->name, attributes ), baseStruct( baseStruct ) {} |
---|
63 | |
---|
64 | std::string StructInstType::typeString() const { return "struct"; } |
---|
65 | |
---|
66 | const std::list<TypeDecl*>* StructInstType::get_baseParameters() const { |
---|
67 | if ( ! baseStruct ) return nullptr; |
---|
68 | return &baseStruct->get_parameters(); |
---|
69 | } |
---|
70 | |
---|
71 | std::list<TypeDecl*>* StructInstType::get_baseParameters() { |
---|
72 | if ( ! baseStruct ) return nullptr; |
---|
73 | return &baseStruct->get_parameters(); |
---|
74 | } |
---|
75 | |
---|
76 | bool StructInstType::isComplete() const { return baseStruct ? baseStruct->has_body() : false; } |
---|
77 | |
---|
78 | AggregateDecl * StructInstType::getAggr() const { return baseStruct; } |
---|
79 | |
---|
80 | TypeSubstitution StructInstType::genericSubstitution() const { |
---|
81 | return TypeSubstitution( get_baseParameters()->begin(), get_baseParameters()->end(), parameters.begin() ); |
---|
82 | } |
---|
83 | |
---|
84 | void StructInstType::lookup( const std::string &name, std::list< Declaration* > &foundDecls ) const { |
---|
85 | assert( baseStruct ); |
---|
86 | doLookup( baseStruct->members, name, foundDecls ); |
---|
87 | } |
---|
88 | |
---|
89 | void StructInstType::print( std::ostream &os, Indenter indent ) const { |
---|
90 | using std::endl; |
---|
91 | |
---|
92 | if ( baseStruct == nullptr ) ReferenceToType::print( os, indent ); |
---|
93 | else { |
---|
94 | Type::print( os, indent ); |
---|
95 | os << "instance of " << typeString() << " " << name << " with body " << baseStruct->has_body(); |
---|
96 | if ( ! parameters.empty() ) { |
---|
97 | os << endl << indent << "... with parameters" << endl; |
---|
98 | printAll( parameters, os, indent+1 ); |
---|
99 | } // if |
---|
100 | } // if |
---|
101 | } |
---|
102 | |
---|
103 | |
---|
104 | UnionInstType::UnionInstType( const Type::Qualifiers & tq, UnionDecl * baseUnion, const std::list< Attribute * > & attributes ) : |
---|
105 | Parent( tq, baseUnion->name, attributes ), baseUnion( baseUnion ) {} |
---|
106 | |
---|
107 | std::string UnionInstType::typeString() const { return "union"; } |
---|
108 | |
---|
109 | std::list< TypeDecl * > * UnionInstType::get_baseParameters() { |
---|
110 | if ( ! baseUnion ) return nullptr; |
---|
111 | return &baseUnion->get_parameters(); |
---|
112 | } |
---|
113 | |
---|
114 | const std::list< TypeDecl * > * UnionInstType::get_baseParameters() const { |
---|
115 | if ( ! baseUnion ) return nullptr; |
---|
116 | return &baseUnion->get_parameters(); |
---|
117 | } |
---|
118 | |
---|
119 | bool UnionInstType::isComplete() const { return baseUnion ? baseUnion->has_body() : false; } |
---|
120 | |
---|
121 | AggregateDecl * UnionInstType::getAggr() const { return baseUnion; } |
---|
122 | |
---|
123 | TypeSubstitution UnionInstType::genericSubstitution() const { |
---|
124 | return TypeSubstitution( get_baseParameters()->begin(), get_baseParameters()->end(), parameters.begin() ); |
---|
125 | } |
---|
126 | |
---|
127 | void UnionInstType::lookup( const std::string &name, std::list< Declaration* > &foundDecls ) const { |
---|
128 | assert( baseUnion ); |
---|
129 | doLookup( baseUnion->members, name, foundDecls ); |
---|
130 | } |
---|
131 | |
---|
132 | void UnionInstType::print( std::ostream &os, Indenter indent ) const { |
---|
133 | using std::endl; |
---|
134 | |
---|
135 | if ( baseUnion == nullptr ) ReferenceToType::print( os, indent ); |
---|
136 | else { |
---|
137 | Type::print( os, indent ); |
---|
138 | os << "instance of " << typeString() << " " << name << " with body " << baseUnion->has_body(); |
---|
139 | if ( ! parameters.empty() ) { |
---|
140 | os << endl << indent << "... with parameters" << endl; |
---|
141 | printAll( parameters, os, indent+1 ); |
---|
142 | } // if |
---|
143 | } // if |
---|
144 | } |
---|
145 | |
---|
146 | |
---|
147 | EnumInstType::EnumInstType( const Type::Qualifiers & tq, EnumDecl * baseEnum, const std::list< Attribute * > & attributes ) : |
---|
148 | Parent( tq, baseEnum->get_name(), attributes ), baseEnum( baseEnum ) {} |
---|
149 | |
---|
150 | std::string EnumInstType::typeString() const { return "enum"; } |
---|
151 | |
---|
152 | bool EnumInstType::isComplete() const { return baseEnum ? baseEnum->has_body() : false; } |
---|
153 | |
---|
154 | AggregateDecl * EnumInstType::getAggr() const { return baseEnum; } |
---|
155 | |
---|
156 | void EnumInstType::print( std::ostream &os, Indenter indent ) const { |
---|
157 | using std::endl; |
---|
158 | |
---|
159 | if ( baseEnum == nullptr ) ReferenceToType::print( os, indent ); |
---|
160 | else { |
---|
161 | Type::print( os, indent ); |
---|
162 | os << "instance of " << typeString() << " " << name << " with body " << baseEnum->has_body(); |
---|
163 | } // if |
---|
164 | } |
---|
165 | |
---|
166 | |
---|
167 | std::string TraitInstType::typeString() const { return "trait"; } |
---|
168 | |
---|
169 | TraitInstType::TraitInstType( const Type::Qualifiers & tq, TraitDecl * baseTrait, const std::list< Attribute * > & attributes ) : Parent( tq, baseTrait->name, attributes ), baseTrait( baseTrait ) {} |
---|
170 | |
---|
171 | TraitInstType::TraitInstType( const TraitInstType &other ) : Parent( other ), baseTrait( other.baseTrait ) { |
---|
172 | } |
---|
173 | |
---|
174 | TraitInstType::~TraitInstType() { |
---|
175 | } |
---|
176 | |
---|
177 | bool TraitInstType::isComplete() const { assert( false ); } |
---|
178 | |
---|
179 | TypeInstType::TypeInstType( const Type::Qualifiers &tq, const std::string &name, TypeDecl *baseType, const std::list< Attribute * > & attributes ) : Parent( tq, name, attributes ) { |
---|
180 | set_baseType( baseType ); |
---|
181 | } |
---|
182 | |
---|
183 | TypeInstType::TypeInstType( const Type::Qualifiers &tq, const std::string &name, bool isFtype, const std::list< Attribute * > & attributes ) : Parent( tq, name, attributes ), baseType( 0 ), isFtype( isFtype ) { |
---|
184 | } |
---|
185 | |
---|
186 | TypeInstType::TypeInstType( const TypeInstType &other ) : Parent( other ), baseType( other.baseType ), isFtype( other.isFtype ) { |
---|
187 | } |
---|
188 | |
---|
189 | |
---|
190 | TypeInstType::~TypeInstType() { |
---|
191 | // delete baseType; //This is shared and should not be deleted |
---|
192 | } |
---|
193 | |
---|
194 | void TypeInstType::set_baseType( TypeDecl *newValue ) { |
---|
195 | baseType = newValue; |
---|
196 | isFtype = newValue->get_kind() == TypeDecl::Ftype; |
---|
197 | } |
---|
198 | |
---|
199 | std::string TypeInstType::typeString() const { return "type"; } |
---|
200 | |
---|
201 | bool TypeInstType::isComplete() const { return baseType->isComplete(); } |
---|
202 | |
---|
203 | void TypeInstType::print( std::ostream &os, Indenter indent ) const { |
---|
204 | using std::endl; |
---|
205 | |
---|
206 | Type::print( os, indent ); |
---|
207 | os << "instance of " << typeString() << " " << get_name() << " (" << ( isFtype ? "" : "not" ) << " function type)"; |
---|
208 | if ( ! parameters.empty() ) { |
---|
209 | os << endl << indent << "... with parameters" << endl; |
---|
210 | printAll( parameters, os, indent+1 ); |
---|
211 | } // if |
---|
212 | } |
---|
213 | |
---|
214 | // Local Variables: // |
---|
215 | // tab-width: 4 // |
---|
216 | // mode: c++ // |
---|
217 | // compile-command: "make install" // |
---|
218 | // End: // |
---|