]>
Commit | Line | Data |
---|---|---|
aed81407 | 1 | /* Definitions for C++ name lookup routines. |
4514aa8c | 2 | Copyright (C) 2003, 2004, 2005 Free Software Foundation, Inc. |
aed81407 GDR |
3 | Contributed by Gabriel Dos Reis <gdr@integrable-solutions.net> |
4 | ||
ed3cf953 | 5 | This file is part of GCC. |
aed81407 | 6 | |
ed3cf953 | 7 | GCC is free software; you can redistribute it and/or modify |
aed81407 GDR |
8 | it under the terms of the GNU General Public License as published by |
9 | the Free Software Foundation; either version 2, or (at your option) | |
10 | any later version. | |
11 | ||
ed3cf953 | 12 | GCC is distributed in the hope that it will be useful, |
aed81407 GDR |
13 | but WITHOUT ANY WARRANTY; without even the implied warranty of |
14 | MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the | |
15 | GNU General Public License for more details. | |
16 | ||
17 | You should have received a copy of the GNU General Public License | |
ed3cf953 | 18 | along with GCC; see the file COPYING. If not, write to |
1788952f KC |
19 | the Free Software Foundation, 51 Franklin Street, Fifth Floor, |
20 | Boston, MA 02110-1301, USA. */ | |
aed81407 GDR |
21 | |
22 | #include "config.h" | |
23 | #include "system.h" | |
24 | #include "coretypes.h" | |
25 | #include "tm.h" | |
a5e6b29b | 26 | #include "flags.h" |
aed81407 GDR |
27 | #include "tree.h" |
28 | #include "cp-tree.h" | |
29 | #include "name-lookup.h" | |
ed3cf953 | 30 | #include "timevar.h" |
c87ceb13 | 31 | #include "toplev.h" |
00e8de68 | 32 | #include "diagnostic.h" |
6097b0c3 | 33 | #include "debug.h" |
00e8de68 | 34 | |
15f8ac7f GK |
35 | /* The bindings for a particular name in a particular scope. */ |
36 | ||
37 | struct scope_binding { | |
38 | tree value; | |
39 | tree type; | |
40 | }; | |
41 | #define EMPTY_SCOPE_BINDING { NULL_TREE, NULL_TREE } | |
42 | ||
00e8de68 | 43 | static cxx_scope *innermost_nonclass_level (void); |
15f8ac7f | 44 | static tree select_decl (const struct scope_binding *, int); |
5a167978 | 45 | static cxx_binding *binding_for_name (cxx_scope *, tree); |
461c6fce | 46 | static tree lookup_name_innermost_nonclass_level (tree); |
d63d5d0c | 47 | static tree push_overloaded_decl (tree, int, bool); |
15f8ac7f | 48 | static bool lookup_using_namespace (tree, struct scope_binding *, tree, |
0cbd7506 | 49 | tree, int); |
15f8ac7f GK |
50 | static bool qualified_lookup_using_namespace (tree, tree, |
51 | struct scope_binding *, int); | |
a5e6b29b GDR |
52 | static tree lookup_type_current_level (tree); |
53 | static tree push_using_directive (tree); | |
5a167978 GDR |
54 | |
55 | /* The :: namespace. */ | |
56 | ||
57 | tree global_namespace; | |
00e8de68 | 58 | |
ed36980c JM |
59 | /* The name of the anonymous namespace, throughout this translation |
60 | unit. */ | |
aa26a3f6 | 61 | static GTY(()) tree anonymous_namespace_name; |
ed36980c | 62 | |
aed81407 | 63 | |
5e0c54e5 GDR |
64 | /* Compute the chain index of a binding_entry given the HASH value of its |
65 | name and the total COUNT of chains. COUNT is assumed to be a power | |
66 | of 2. */ | |
daafa301 | 67 | |
5e0c54e5 GDR |
68 | #define ENTRY_INDEX(HASH, COUNT) (((HASH) >> 3) & ((COUNT) - 1)) |
69 | ||
70 | /* A free list of "binding_entry"s awaiting for re-use. */ | |
daafa301 | 71 | |
1431042e | 72 | static GTY((deletable)) binding_entry free_binding_entry = NULL; |
5e0c54e5 GDR |
73 | |
74 | /* Create a binding_entry object for (NAME, TYPE). */ | |
daafa301 | 75 | |
5e0c54e5 GDR |
76 | static inline binding_entry |
77 | binding_entry_make (tree name, tree type) | |
78 | { | |
79 | binding_entry entry; | |
80 | ||
81 | if (free_binding_entry) | |
82 | { | |
83 | entry = free_binding_entry; | |
84 | free_binding_entry = entry->chain; | |
85 | } | |
86 | else | |
99dd239f | 87 | entry = GGC_NEW (struct binding_entry_s); |
5e0c54e5 GDR |
88 | |
89 | entry->name = name; | |
90 | entry->type = type; | |
7e8f3096 | 91 | entry->chain = NULL; |
5e0c54e5 GDR |
92 | |
93 | return entry; | |
94 | } | |
95 | ||
96 | /* Put ENTRY back on the free list. */ | |
e57df6fe | 97 | #if 0 |
5e0c54e5 GDR |
98 | static inline void |
99 | binding_entry_free (binding_entry entry) | |
100 | { | |
04693f2f GDR |
101 | entry->name = NULL; |
102 | entry->type = NULL; | |
5e0c54e5 GDR |
103 | entry->chain = free_binding_entry; |
104 | free_binding_entry = entry; | |
105 | } | |
e57df6fe | 106 | #endif |
5e0c54e5 GDR |
107 | |
108 | /* The datatype used to implement the mapping from names to types at | |
109 | a given scope. */ | |
110 | struct binding_table_s GTY(()) | |
111 | { | |
112 | /* Array of chains of "binding_entry"s */ | |
113 | binding_entry * GTY((length ("%h.chain_count"))) chain; | |
114 | ||
115 | /* The number of chains in this table. This is the length of the | |
7e8f3096 | 116 | the member "chain" considered as an array. */ |
5e0c54e5 GDR |
117 | size_t chain_count; |
118 | ||
119 | /* Number of "binding_entry"s in this table. */ | |
120 | size_t entry_count; | |
121 | }; | |
122 | ||
123 | /* Construct TABLE with an initial CHAIN_COUNT. */ | |
daafa301 | 124 | |
5e0c54e5 GDR |
125 | static inline void |
126 | binding_table_construct (binding_table table, size_t chain_count) | |
127 | { | |
128 | table->chain_count = chain_count; | |
129 | table->entry_count = 0; | |
99dd239f | 130 | table->chain = GGC_CNEWVEC (binding_entry, table->chain_count); |
5e0c54e5 GDR |
131 | } |
132 | ||
daafa301 | 133 | /* Make TABLE's entries ready for reuse. */ |
e57df6fe | 134 | #if 0 |
00e8de68 | 135 | static void |
5e0c54e5 GDR |
136 | binding_table_free (binding_table table) |
137 | { | |
138 | size_t i; | |
daafa301 GDR |
139 | size_t count; |
140 | ||
5e0c54e5 GDR |
141 | if (table == NULL) |
142 | return; | |
143 | ||
daafa301 | 144 | for (i = 0, count = table->chain_count; i < count; ++i) |
5e0c54e5 | 145 | { |
7e8f3096 AP |
146 | binding_entry temp = table->chain[i]; |
147 | while (temp != NULL) | |
0cbd7506 MS |
148 | { |
149 | binding_entry entry = temp; | |
150 | temp = entry->chain; | |
151 | binding_entry_free (entry); | |
152 | } | |
daafa301 | 153 | table->chain[i] = NULL; |
5e0c54e5 GDR |
154 | } |
155 | table->entry_count = 0; | |
156 | } | |
e57df6fe | 157 | #endif |
5e0c54e5 GDR |
158 | |
159 | /* Allocate a table with CHAIN_COUNT, assumed to be a power of two. */ | |
daafa301 | 160 | |
00e8de68 | 161 | static inline binding_table |
5e0c54e5 GDR |
162 | binding_table_new (size_t chain_count) |
163 | { | |
99dd239f | 164 | binding_table table = GGC_NEW (struct binding_table_s); |
7e8f3096 | 165 | table->chain = NULL; |
5e0c54e5 GDR |
166 | binding_table_construct (table, chain_count); |
167 | return table; | |
168 | } | |
169 | ||
170 | /* Expand TABLE to twice its current chain_count. */ | |
daafa301 | 171 | |
5e0c54e5 GDR |
172 | static void |
173 | binding_table_expand (binding_table table) | |
174 | { | |
175 | const size_t old_chain_count = table->chain_count; | |
176 | const size_t old_entry_count = table->entry_count; | |
177 | const size_t new_chain_count = 2 * old_chain_count; | |
178 | binding_entry *old_chains = table->chain; | |
179 | size_t i; | |
180 | ||
181 | binding_table_construct (table, new_chain_count); | |
182 | for (i = 0; i < old_chain_count; ++i) | |
183 | { | |
184 | binding_entry entry = old_chains[i]; | |
185 | for (; entry != NULL; entry = old_chains[i]) | |
0cbd7506 MS |
186 | { |
187 | const unsigned int hash = IDENTIFIER_HASH_VALUE (entry->name); | |
188 | const size_t j = ENTRY_INDEX (hash, new_chain_count); | |
189 | ||
190 | old_chains[i] = entry->chain; | |
191 | entry->chain = table->chain[j]; | |
192 | table->chain[j] = entry; | |
193 | } | |
5e0c54e5 GDR |
194 | } |
195 | table->entry_count = old_entry_count; | |
196 | } | |
197 | ||
daafa301 GDR |
198 | /* Insert a binding for NAME to TYPE into TABLE. */ |
199 | ||
00e8de68 | 200 | static void |
5e0c54e5 GDR |
201 | binding_table_insert (binding_table table, tree name, tree type) |
202 | { | |
203 | const unsigned int hash = IDENTIFIER_HASH_VALUE (name); | |
204 | const size_t i = ENTRY_INDEX (hash, table->chain_count); | |
205 | binding_entry entry = binding_entry_make (name, type); | |
206 | ||
207 | entry->chain = table->chain[i]; | |
208 | table->chain[i] = entry; | |
209 | ++table->entry_count; | |
210 | ||
211 | if (3 * table->chain_count < 5 * table->entry_count) | |
212 | binding_table_expand (table); | |
213 | } | |
214 | ||
215 | /* Return the binding_entry, if any, that maps NAME. */ | |
daafa301 | 216 | |
5e0c54e5 GDR |
217 | binding_entry |
218 | binding_table_find (binding_table table, tree name) | |
219 | { | |
220 | const unsigned int hash = IDENTIFIER_HASH_VALUE (name); | |
221 | binding_entry entry = table->chain[ENTRY_INDEX (hash, table->chain_count)]; | |
222 | ||
223 | while (entry != NULL && entry->name != name) | |
224 | entry = entry->chain; | |
225 | ||
226 | return entry; | |
227 | } | |
228 | ||
5e0c54e5 | 229 | /* Apply PROC -- with DATA -- to all entries in TABLE. */ |
daafa301 | 230 | |
5e0c54e5 GDR |
231 | void |
232 | binding_table_foreach (binding_table table, bt_foreach_proc proc, void *data) | |
233 | { | |
234 | const size_t chain_count = table->chain_count; | |
235 | size_t i; | |
236 | ||
237 | for (i = 0; i < chain_count; ++i) | |
238 | { | |
239 | binding_entry entry = table->chain[i]; | |
240 | for (; entry != NULL; entry = entry->chain) | |
0cbd7506 | 241 | proc (entry, data); |
5e0c54e5 GDR |
242 | } |
243 | } | |
244 | \f | |
00e8de68 GDR |
245 | #ifndef ENABLE_SCOPE_CHECKING |
246 | # define ENABLE_SCOPE_CHECKING 0 | |
247 | #else | |
248 | # define ENABLE_SCOPE_CHECKING 1 | |
249 | #endif | |
5e0c54e5 | 250 | |
aed81407 | 251 | /* A free list of "cxx_binding"s, connected by their PREVIOUS. */ |
daafa301 | 252 | |
1431042e | 253 | static GTY((deletable)) cxx_binding *free_bindings; |
aed81407 | 254 | |
89b578be MM |
255 | /* Initialize VALUE and TYPE field for BINDING, and set the PREVIOUS |
256 | field to NULL. */ | |
257 | ||
258 | static inline void | |
259 | cxx_binding_init (cxx_binding *binding, tree value, tree type) | |
260 | { | |
261 | binding->value = value; | |
262 | binding->type = type; | |
263 | binding->previous = NULL; | |
264 | } | |
265 | ||
aed81407 | 266 | /* (GC)-allocate a binding object with VALUE and TYPE member initialized. */ |
daafa301 | 267 | |
00e8de68 | 268 | static cxx_binding * |
aed81407 GDR |
269 | cxx_binding_make (tree value, tree type) |
270 | { | |
271 | cxx_binding *binding; | |
272 | if (free_bindings) | |
273 | { | |
274 | binding = free_bindings; | |
275 | free_bindings = binding->previous; | |
276 | } | |
277 | else | |
99dd239f | 278 | binding = GGC_NEW (cxx_binding); |
aed81407 | 279 | |
89b578be | 280 | cxx_binding_init (binding, value, type); |
aed81407 GDR |
281 | |
282 | return binding; | |
283 | } | |
284 | ||
285 | /* Put BINDING back on the free list. */ | |
daafa301 | 286 | |
00e8de68 | 287 | static inline void |
aed81407 GDR |
288 | cxx_binding_free (cxx_binding *binding) |
289 | { | |
daafa301 | 290 | binding->scope = NULL; |
aed81407 GDR |
291 | binding->previous = free_bindings; |
292 | free_bindings = binding; | |
293 | } | |
c87ceb13 | 294 | |
90ea9897 MM |
295 | /* Create a new binding for NAME (with the indicated VALUE and TYPE |
296 | bindings) in the class scope indicated by SCOPE. */ | |
00e8de68 | 297 | |
90ea9897 MM |
298 | static cxx_binding * |
299 | new_class_binding (tree name, tree value, tree type, cxx_scope *scope) | |
00e8de68 | 300 | { |
90ea9897 | 301 | cp_class_binding *cb; |
89b578be | 302 | cxx_binding *binding; |
c8094d83 | 303 | |
90ea9897 | 304 | if (VEC_length (cp_class_binding, scope->class_shadowed)) |
89b578be | 305 | { |
90ea9897 MM |
306 | cp_class_binding *old_base; |
307 | old_base = VEC_index (cp_class_binding, scope->class_shadowed, 0); | |
d4e6fecb | 308 | if (VEC_reserve (cp_class_binding, gc, scope->class_shadowed, 1)) |
7de5bccc NS |
309 | { |
310 | /* Fixup the current bindings, as they might have moved. */ | |
311 | size_t i; | |
c8094d83 | 312 | |
7de5bccc | 313 | for (i = 0; |
9ba5ff0f | 314 | VEC_iterate (cp_class_binding, scope->class_shadowed, i, cb); |
7de5bccc | 315 | i++) |
90ea9897 MM |
316 | { |
317 | cxx_binding **b; | |
318 | b = &IDENTIFIER_BINDING (cb->identifier); | |
319 | while (*b != &old_base[i].base) | |
320 | b = &((*b)->previous); | |
321 | *b = &cb->base; | |
322 | } | |
7de5bccc | 323 | } |
90ea9897 MM |
324 | cb = VEC_quick_push (cp_class_binding, scope->class_shadowed, NULL); |
325 | } | |
326 | else | |
d4e6fecb | 327 | cb = VEC_safe_push (cp_class_binding, gc, scope->class_shadowed, NULL); |
c8094d83 | 328 | |
90ea9897 MM |
329 | cb->identifier = name; |
330 | binding = &cb->base; | |
331 | binding->scope = scope; | |
332 | cxx_binding_init (binding, value, type); | |
333 | return binding; | |
334 | } | |
335 | ||
336 | /* Make DECL the innermost binding for ID. The LEVEL is the binding | |
337 | level at which this declaration is being bound. */ | |
338 | ||
339 | static void | |
340 | push_binding (tree id, tree decl, cxx_scope* level) | |
341 | { | |
342 | cxx_binding *binding; | |
7de5bccc | 343 | |
90ea9897 MM |
344 | if (level != class_binding_level) |
345 | { | |
346 | binding = cxx_binding_make (decl, NULL_TREE); | |
347 | binding->scope = level; | |
89b578be | 348 | } |
90ea9897 MM |
349 | else |
350 | binding = new_class_binding (id, decl, /*type=*/NULL_TREE, level); | |
c8094d83 | 351 | |
00e8de68 GDR |
352 | /* Now, fill in the binding information. */ |
353 | binding->previous = IDENTIFIER_BINDING (id); | |
00e8de68 GDR |
354 | INHERITED_VALUE_BINDING_P (binding) = 0; |
355 | LOCAL_BINDING_P (binding) = (level != class_binding_level); | |
356 | ||
357 | /* And put it on the front of the list of bindings for ID. */ | |
358 | IDENTIFIER_BINDING (id) = binding; | |
359 | } | |
360 | ||
361 | /* Remove the binding for DECL which should be the innermost binding | |
362 | for ID. */ | |
363 | ||
364 | void | |
365 | pop_binding (tree id, tree decl) | |
366 | { | |
367 | cxx_binding *binding; | |
368 | ||
369 | if (id == NULL_TREE) | |
370 | /* It's easiest to write the loops that call this function without | |
371 | checking whether or not the entities involved have names. We | |
372 | get here for such an entity. */ | |
373 | return; | |
374 | ||
375 | /* Get the innermost binding for ID. */ | |
376 | binding = IDENTIFIER_BINDING (id); | |
377 | ||
378 | /* The name should be bound. */ | |
50bc768d | 379 | gcc_assert (binding != NULL); |
00e8de68 GDR |
380 | |
381 | /* The DECL will be either the ordinary binding or the type | |
382 | binding for this identifier. Remove that binding. */ | |
383 | if (binding->value == decl) | |
384 | binding->value = NULL_TREE; | |
00e8de68 | 385 | else |
315fb5db NS |
386 | { |
387 | gcc_assert (binding->type == decl); | |
388 | binding->type = NULL_TREE; | |
389 | } | |
00e8de68 GDR |
390 | |
391 | if (!binding->value && !binding->type) | |
392 | { | |
393 | /* We're completely done with the innermost binding for this | |
394 | identifier. Unhook it from the list of bindings. */ | |
395 | IDENTIFIER_BINDING (id) = binding->previous; | |
396 | ||
397 | /* Add it to the free list. */ | |
398 | cxx_binding_free (binding); | |
399 | } | |
400 | } | |
401 | ||
c72a1a86 | 402 | /* BINDING records an existing declaration for a name in the current scope. |
c87ceb13 GDR |
403 | But, DECL is another declaration for that same identifier in the |
404 | same scope. This is the `struct stat' hack whereby a non-typedef | |
405 | class name or enum-name can be bound at the same level as some other | |
406 | kind of entity. | |
407 | 3.3.7/1 | |
408 | ||
409 | A class name (9.1) or enumeration name (7.2) can be hidden by the | |
410 | name of an object, function, or enumerator declared in the same scope. | |
411 | If a class or enumeration name and an object, function, or enumerator | |
412 | are declared in the same scope (in any order) with the same name, the | |
413 | class or enumeration name is hidden wherever the object, function, or | |
414 | enumerator name is visible. | |
415 | ||
416 | It's the responsibility of the caller to check that | |
417 | inserting this name is valid here. Returns nonzero if the new binding | |
418 | was successful. */ | |
419 | ||
00e8de68 | 420 | static bool |
c87ceb13 GDR |
421 | supplement_binding (cxx_binding *binding, tree decl) |
422 | { | |
423 | tree bval = binding->value; | |
424 | bool ok = true; | |
425 | ||
426 | timevar_push (TV_NAME_LOOKUP); | |
427 | if (TREE_CODE (decl) == TYPE_DECL && DECL_ARTIFICIAL (decl)) | |
428 | /* The new name is the type name. */ | |
429 | binding->type = decl; | |
62d99768 MM |
430 | else if (/* BVAL is null when push_class_level_binding moves an |
431 | inherited type-binding out of the way to make room for a | |
432 | new value binding. */ | |
c8094d83 | 433 | !bval |
62d99768 MM |
434 | /* BVAL is error_mark_node when DECL's name has been used |
435 | in a non-class scope prior declaration. In that case, | |
436 | we should have already issued a diagnostic; for graceful | |
437 | error recovery purpose, pretend this was the intended | |
438 | declaration for that name. */ | |
439 | || bval == error_mark_node | |
d63d5d0c | 440 | /* If BVAL is anticipated but has not yet been declared, |
62d99768 MM |
441 | pretend it is not there at all. */ |
442 | || (TREE_CODE (bval) == FUNCTION_DECL | |
d63d5d0c ILT |
443 | && DECL_ANTICIPATED (bval) |
444 | && !DECL_HIDDEN_FRIEND_P (bval))) | |
c87ceb13 GDR |
445 | binding->value = decl; |
446 | else if (TREE_CODE (bval) == TYPE_DECL && DECL_ARTIFICIAL (bval)) | |
447 | { | |
448 | /* The old binding was a type name. It was placed in | |
147135cc | 449 | VALUE field because it was thought, at the point it was |
c87ceb13 GDR |
450 | declared, to be the only entity with such a name. Move the |
451 | type name into the type slot; it is now hidden by the new | |
452 | binding. */ | |
453 | binding->type = bval; | |
454 | binding->value = decl; | |
455 | binding->value_is_inherited = false; | |
456 | } | |
457 | else if (TREE_CODE (bval) == TYPE_DECL | |
458 | && TREE_CODE (decl) == TYPE_DECL | |
459 | && DECL_NAME (decl) == DECL_NAME (bval) | |
9306cccb | 460 | && binding->scope->kind != sk_class |
c87ceb13 GDR |
461 | && (same_type_p (TREE_TYPE (decl), TREE_TYPE (bval)) |
462 | /* If either type involves template parameters, we must | |
463 | wait until instantiation. */ | |
464 | || uses_template_parms (TREE_TYPE (decl)) | |
465 | || uses_template_parms (TREE_TYPE (bval)))) | |
466 | /* We have two typedef-names, both naming the same type to have | |
9306cccb | 467 | the same name. In general, this is OK because of: |
c87ceb13 | 468 | |
0cbd7506 | 469 | [dcl.typedef] |
c87ceb13 GDR |
470 | |
471 | In a given scope, a typedef specifier can be used to redefine | |
472 | the name of any type declared in that scope to refer to the | |
c8094d83 | 473 | type to which it already refers. |
9306cccb MM |
474 | |
475 | However, in class scopes, this rule does not apply due to the | |
476 | stricter language in [class.mem] prohibiting redeclarations of | |
477 | members. */ | |
c87ceb13 GDR |
478 | ok = false; |
479 | /* There can be two block-scope declarations of the same variable, | |
480 | so long as they are `extern' declarations. However, there cannot | |
481 | be two declarations of the same static data member: | |
482 | ||
483 | [class.mem] | |
484 | ||
485 | A member shall not be declared twice in the | |
486 | member-specification. */ | |
487 | else if (TREE_CODE (decl) == VAR_DECL && TREE_CODE (bval) == VAR_DECL | |
488 | && DECL_EXTERNAL (decl) && DECL_EXTERNAL (bval) | |
489 | && !DECL_CLASS_SCOPE_P (decl)) | |
490 | { | |
d63d5d0c | 491 | duplicate_decls (decl, binding->value, /*newdecl_is_friend=*/false); |
c87ceb13 GDR |
492 | ok = false; |
493 | } | |
f746161e MM |
494 | else if (TREE_CODE (decl) == NAMESPACE_DECL |
495 | && TREE_CODE (bval) == NAMESPACE_DECL | |
496 | && DECL_NAMESPACE_ALIAS (decl) | |
497 | && DECL_NAMESPACE_ALIAS (bval) | |
498 | && ORIGINAL_NAMESPACE (bval) == ORIGINAL_NAMESPACE (decl)) | |
499 | /* [namespace.alias] | |
c8094d83 | 500 | |
f746161e MM |
501 | In a declarative region, a namespace-alias-definition can be |
502 | used to redefine a namespace-alias declared in that declarative | |
503 | region to refer only to the namespace to which it already | |
504 | refers. */ | |
505 | ok = false; | |
c87ceb13 GDR |
506 | else |
507 | { | |
2a13a625 | 508 | error ("declaration of %q#D", decl); |
dee15844 | 509 | error ("conflicts with previous declaration %q+#D", bval); |
c87ceb13 GDR |
510 | ok = false; |
511 | } | |
512 | ||
513 | POP_TIMEVAR_AND_RETURN (TV_NAME_LOOKUP, ok); | |
514 | } | |
00e8de68 GDR |
515 | |
516 | /* Add DECL to the list of things declared in B. */ | |
517 | ||
a5e6b29b | 518 | static void |
00e8de68 GDR |
519 | add_decl_to_level (tree decl, cxx_scope *b) |
520 | { | |
c8094d83 | 521 | if (TREE_CODE (decl) == NAMESPACE_DECL |
00e8de68 GDR |
522 | && !DECL_NAMESPACE_ALIAS (decl)) |
523 | { | |
524 | TREE_CHAIN (decl) = b->namespaces; | |
525 | b->namespaces = decl; | |
526 | } | |
527 | else if (TREE_CODE (decl) == VAR_DECL && DECL_VIRTUAL_P (decl)) | |
528 | { | |
529 | TREE_CHAIN (decl) = b->vtables; | |
530 | b->vtables = decl; | |
531 | } | |
c8094d83 | 532 | else |
00e8de68 GDR |
533 | { |
534 | /* We build up the list in reverse order, and reverse it later if | |
0cbd7506 | 535 | necessary. */ |
00e8de68 GDR |
536 | TREE_CHAIN (decl) = b->names; |
537 | b->names = decl; | |
538 | b->names_size++; | |
539 | ||
97b6d55b | 540 | /* If appropriate, add decl to separate list of statics. We |
c8094d83 | 541 | include extern variables because they might turn out to be |
97b6d55b | 542 | static later. It's OK for this list to contain a few false |
324f9dfb | 543 | positives. */ |
00e8de68 | 544 | if (b->kind == sk_namespace) |
97b6d55b MA |
545 | if ((TREE_CODE (decl) == VAR_DECL |
546 | && (TREE_STATIC (decl) || DECL_EXTERNAL (decl))) | |
00e8de68 GDR |
547 | || (TREE_CODE (decl) == FUNCTION_DECL |
548 | && (!TREE_PUBLIC (decl) || DECL_DECLARED_INLINE_P (decl)))) | |
9857866d | 549 | VEC_safe_push (tree, gc, b->static_decls, decl); |
00e8de68 GDR |
550 | } |
551 | } | |
552 | ||
a5e6b29b GDR |
553 | /* Record a decl-node X as belonging to the current lexical scope. |
554 | Check for errors (such as an incompatible declaration for the same | |
d63d5d0c ILT |
555 | name already seen in the same scope). IS_FRIEND is true if X is |
556 | declared as a friend. | |
a5e6b29b GDR |
557 | |
558 | Returns either X or an old decl for the same name. | |
559 | If an old decl is returned, it may have been smashed | |
560 | to agree with what X says. */ | |
561 | ||
562 | tree | |
d63d5d0c | 563 | pushdecl_maybe_friend (tree x, bool is_friend) |
a5e6b29b | 564 | { |
926ce8bd KH |
565 | tree t; |
566 | tree name; | |
a5e6b29b GDR |
567 | int need_new_binding; |
568 | ||
569 | timevar_push (TV_NAME_LOOKUP); | |
570 | ||
571 | need_new_binding = 1; | |
572 | ||
573 | if (DECL_TEMPLATE_PARM_P (x)) | |
574 | /* Template parameters have no context; they are not X::T even | |
575 | when declared within a class or namespace. */ | |
576 | ; | |
577 | else | |
578 | { | |
579 | if (current_function_decl && x != current_function_decl | |
580 | /* A local declaration for a function doesn't constitute | |
0cbd7506 | 581 | nesting. */ |
4656bc85 | 582 | && TREE_CODE (x) != FUNCTION_DECL |
a5e6b29b GDR |
583 | /* A local declaration for an `extern' variable is in the |
584 | scope of the current namespace, not the current | |
585 | function. */ | |
586 | && !(TREE_CODE (x) == VAR_DECL && DECL_EXTERNAL (x)) | |
587 | && !DECL_CONTEXT (x)) | |
588 | DECL_CONTEXT (x) = current_function_decl; | |
589 | ||
590 | /* If this is the declaration for a namespace-scope function, | |
591 | but the declaration itself is in a local scope, mark the | |
592 | declaration. */ | |
593 | if (TREE_CODE (x) == FUNCTION_DECL | |
594 | && DECL_NAMESPACE_SCOPE_P (x) | |
595 | && current_function_decl | |
596 | && x != current_function_decl) | |
597 | DECL_LOCAL_FUNCTION_P (x) = 1; | |
598 | } | |
599 | ||
600 | name = DECL_NAME (x); | |
601 | if (name) | |
602 | { | |
603 | int different_binding_level = 0; | |
604 | ||
607c855e VR |
605 | if (TREE_CODE (x) == FUNCTION_DECL || DECL_FUNCTION_TEMPLATE_P (x)) |
606 | check_default_args (x); | |
607 | ||
a5e6b29b GDR |
608 | if (TREE_CODE (name) == TEMPLATE_ID_EXPR) |
609 | name = TREE_OPERAND (name, 0); | |
610 | ||
611 | /* In case this decl was explicitly namespace-qualified, look it | |
612 | up in its namespace context. */ | |
7813d14c | 613 | if (DECL_NAMESPACE_SCOPE_P (x) && namespace_bindings_p ()) |
a5e6b29b GDR |
614 | t = namespace_binding (name, DECL_CONTEXT (x)); |
615 | else | |
461c6fce | 616 | t = lookup_name_innermost_nonclass_level (name); |
a5e6b29b GDR |
617 | |
618 | /* [basic.link] If there is a visible declaration of an entity | |
619 | with linkage having the same name and type, ignoring entities | |
620 | declared outside the innermost enclosing namespace scope, the | |
621 | block scope declaration declares that same entity and | |
622 | receives the linkage of the previous declaration. */ | |
623 | if (! t && current_function_decl && x != current_function_decl | |
624 | && (TREE_CODE (x) == FUNCTION_DECL || TREE_CODE (x) == VAR_DECL) | |
625 | && DECL_EXTERNAL (x)) | |
626 | { | |
627 | /* Look in block scope. */ | |
90ea9897 | 628 | t = innermost_non_namespace_value (name); |
a5e6b29b GDR |
629 | /* Or in the innermost namespace. */ |
630 | if (! t) | |
631 | t = namespace_binding (name, DECL_CONTEXT (x)); | |
632 | /* Does it have linkage? Note that if this isn't a DECL, it's an | |
633 | OVERLOAD, which is OK. */ | |
634 | if (t && DECL_P (t) && ! (TREE_STATIC (t) || DECL_EXTERNAL (t))) | |
635 | t = NULL_TREE; | |
636 | if (t) | |
637 | different_binding_level = 1; | |
638 | } | |
639 | ||
640 | /* If we are declaring a function, and the result of name-lookup | |
641 | was an OVERLOAD, look for an overloaded instance that is | |
642 | actually the same as the function we are declaring. (If | |
643 | there is one, we have to merge our declaration with the | |
644 | previous declaration.) */ | |
645 | if (t && TREE_CODE (t) == OVERLOAD) | |
646 | { | |
647 | tree match; | |
648 | ||
649 | if (TREE_CODE (x) == FUNCTION_DECL) | |
650 | for (match = t; match; match = OVL_NEXT (match)) | |
651 | { | |
652 | if (decls_match (OVL_CURRENT (match), x)) | |
653 | break; | |
654 | } | |
655 | else | |
656 | /* Just choose one. */ | |
657 | match = t; | |
658 | ||
659 | if (match) | |
660 | t = OVL_CURRENT (match); | |
661 | else | |
662 | t = NULL_TREE; | |
663 | } | |
664 | ||
58ec3cc5 | 665 | if (t && t != error_mark_node) |
a5e6b29b GDR |
666 | { |
667 | if (different_binding_level) | |
668 | { | |
669 | if (decls_match (x, t)) | |
670 | /* The standard only says that the local extern | |
671 | inherits linkage from the previous decl; in | |
84b8b0e0 ZW |
672 | particular, default args are not shared. We must |
673 | also tell cgraph to treat these decls as the same, | |
674 | or we may neglect to emit an "unused" static - we | |
675 | do this by making the DECL_UIDs equal, which should | |
676 | be viewed as a kludge. FIXME. */ | |
677 | { | |
678 | TREE_PUBLIC (x) = TREE_PUBLIC (t); | |
679 | DECL_UID (x) = DECL_UID (t); | |
680 | } | |
a5e6b29b GDR |
681 | } |
682 | else if (TREE_CODE (t) == PARM_DECL) | |
683 | { | |
315fb5db | 684 | gcc_assert (DECL_CONTEXT (t)); |
a5e6b29b GDR |
685 | |
686 | /* Check for duplicate params. */ | |
d63d5d0c | 687 | if (duplicate_decls (x, t, is_friend)) |
a5e6b29b GDR |
688 | POP_TIMEVAR_AND_RETURN (TV_NAME_LOOKUP, t); |
689 | } | |
690 | else if ((DECL_EXTERN_C_FUNCTION_P (x) | |
691 | || DECL_FUNCTION_TEMPLATE_P (x)) | |
692 | && is_overloaded_fn (t)) | |
693 | /* Don't do anything just yet. */; | |
694 | else if (t == wchar_decl_node) | |
695 | { | |
696 | if (pedantic && ! DECL_IN_SYSTEM_HEADER (x)) | |
2a13a625 | 697 | pedwarn ("redeclaration of %<wchar_t%> as %qT", |
0cbd7506 | 698 | TREE_TYPE (x)); |
a5e6b29b GDR |
699 | |
700 | /* Throw away the redeclaration. */ | |
701 | POP_TIMEVAR_AND_RETURN (TV_NAME_LOOKUP, t); | |
702 | } | |
b1a19c7c | 703 | else |
a5e6b29b | 704 | { |
d63d5d0c | 705 | tree olddecl = duplicate_decls (x, t, is_friend); |
c8094d83 | 706 | |
b1a19c7c MM |
707 | /* If the redeclaration failed, we can stop at this |
708 | point. */ | |
709 | if (olddecl == error_mark_node) | |
710 | POP_TIMEVAR_AND_RETURN (TV_NAME_LOOKUP, error_mark_node); | |
711 | ||
712 | if (olddecl) | |
713 | { | |
714 | if (TREE_CODE (t) == TYPE_DECL) | |
715 | SET_IDENTIFIER_TYPE_VALUE (name, TREE_TYPE (t)); | |
a5e6b29b | 716 | |
b1a19c7c MM |
717 | POP_TIMEVAR_AND_RETURN (TV_NAME_LOOKUP, t); |
718 | } | |
9d363a56 | 719 | else if (DECL_MAIN_P (x) && TREE_CODE (t) == FUNCTION_DECL) |
b1a19c7c MM |
720 | { |
721 | /* A redeclaration of main, but not a duplicate of the | |
722 | previous one. | |
c8094d83 | 723 | |
b1a19c7c | 724 | [basic.start.main] |
c8094d83 | 725 | |
b1a19c7c | 726 | This function shall not be overloaded. */ |
dee15844 | 727 | error ("invalid redeclaration of %q+D", t); |
2a13a625 | 728 | error ("as %qD", x); |
b1a19c7c MM |
729 | /* We don't try to push this declaration since that |
730 | causes a crash. */ | |
731 | POP_TIMEVAR_AND_RETURN (TV_NAME_LOOKUP, x); | |
732 | } | |
a5e6b29b GDR |
733 | } |
734 | } | |
735 | ||
736 | check_template_shadow (x); | |
737 | ||
738 | /* If this is a function conjured up by the backend, massage it | |
739 | so it looks friendly. */ | |
740 | if (DECL_NON_THUNK_FUNCTION_P (x) && ! DECL_LANG_SPECIFIC (x)) | |
741 | { | |
742 | retrofit_lang_decl (x); | |
743 | SET_DECL_LANGUAGE (x, lang_c); | |
744 | } | |
745 | ||
746 | if (DECL_NON_THUNK_FUNCTION_P (x) && ! DECL_FUNCTION_MEMBER_P (x)) | |
747 | { | |
d63d5d0c | 748 | t = push_overloaded_decl (x, PUSH_LOCAL, is_friend); |
a5e6b29b GDR |
749 | if (t != x) |
750 | POP_TIMEVAR_AND_RETURN (TV_NAME_LOOKUP, t); | |
751 | if (!namespace_bindings_p ()) | |
752 | /* We do not need to create a binding for this name; | |
753 | push_overloaded_decl will have already done so if | |
754 | necessary. */ | |
755 | need_new_binding = 0; | |
756 | } | |
757 | else if (DECL_FUNCTION_TEMPLATE_P (x) && DECL_NAMESPACE_SCOPE_P (x)) | |
758 | { | |
d63d5d0c | 759 | t = push_overloaded_decl (x, PUSH_GLOBAL, is_friend); |
a5e6b29b GDR |
760 | if (t == x) |
761 | add_decl_to_level (x, NAMESPACE_LEVEL (CP_DECL_CONTEXT (t))); | |
762 | POP_TIMEVAR_AND_RETURN (TV_NAME_LOOKUP, t); | |
763 | } | |
764 | ||
765 | /* If declaring a type as a typedef, copy the type (unless we're | |
766 | at line 0), and install this TYPE_DECL as the new type's typedef | |
767 | name. See the extensive comment in ../c-decl.c (pushdecl). */ | |
768 | if (TREE_CODE (x) == TYPE_DECL) | |
769 | { | |
770 | tree type = TREE_TYPE (x); | |
93409b8c | 771 | if (DECL_IS_BUILTIN (x)) |
0cbd7506 | 772 | { |
a5e6b29b | 773 | if (TYPE_NAME (type) == 0) |
0cbd7506 MS |
774 | TYPE_NAME (type) = x; |
775 | } | |
776 | else if (type != error_mark_node && TYPE_NAME (type) != x | |
a5e6b29b GDR |
777 | /* We don't want to copy the type when all we're |
778 | doing is making a TYPE_DECL for the purposes of | |
779 | inlining. */ | |
780 | && (!TYPE_NAME (type) | |
781 | || TYPE_NAME (type) != DECL_ABSTRACT_ORIGIN (x))) | |
0cbd7506 | 782 | { |
a5e6b29b | 783 | DECL_ORIGINAL_TYPE (x) = type; |
0cbd7506 | 784 | type = build_variant_type_copy (type); |
a5e6b29b | 785 | TYPE_STUB_DECL (type) = TYPE_STUB_DECL (DECL_ORIGINAL_TYPE (x)); |
0cbd7506 MS |
786 | TYPE_NAME (type) = x; |
787 | TREE_TYPE (x) = type; | |
788 | } | |
a5e6b29b GDR |
789 | |
790 | if (type != error_mark_node | |
791 | && TYPE_NAME (type) | |
792 | && TYPE_IDENTIFIER (type)) | |
0cbd7506 | 793 | set_identifier_type_value (DECL_NAME (x), x); |
a5e6b29b GDR |
794 | } |
795 | ||
796 | /* Multiple external decls of the same identifier ought to match. | |
797 | ||
798 | We get warnings about inline functions where they are defined. | |
799 | We get warnings about other functions from push_overloaded_decl. | |
800 | ||
801 | Avoid duplicate warnings where they are used. */ | |
802 | if (TREE_PUBLIC (x) && TREE_CODE (x) != FUNCTION_DECL) | |
803 | { | |
804 | tree decl; | |
805 | ||
806 | decl = IDENTIFIER_NAMESPACE_VALUE (name); | |
807 | if (decl && TREE_CODE (decl) == OVERLOAD) | |
808 | decl = OVL_FUNCTION (decl); | |
809 | ||
810 | if (decl && decl != error_mark_node | |
811 | && (DECL_EXTERNAL (decl) || TREE_PUBLIC (decl)) | |
812 | /* If different sort of thing, we already gave an error. */ | |
813 | && TREE_CODE (decl) == TREE_CODE (x) | |
814 | && !same_type_p (TREE_TYPE (x), TREE_TYPE (decl))) | |
815 | { | |
2a13a625 | 816 | pedwarn ("type mismatch with previous external decl of %q#D", x); |
dee15844 | 817 | pedwarn ("previous external decl of %q+#D", decl); |
a5e6b29b GDR |
818 | } |
819 | } | |
820 | ||
d63d5d0c ILT |
821 | if (TREE_CODE (x) == FUNCTION_DECL |
822 | && is_friend | |
823 | && !flag_friend_injection) | |
824 | { | |
825 | /* This is a new declaration of a friend function, so hide | |
826 | it from ordinary function lookup. */ | |
827 | DECL_ANTICIPATED (x) = 1; | |
828 | DECL_HIDDEN_FRIEND_P (x) = 1; | |
829 | } | |
830 | ||
a5e6b29b GDR |
831 | /* This name is new in its binding level. |
832 | Install the new declaration and return it. */ | |
833 | if (namespace_bindings_p ()) | |
834 | { | |
835 | /* Install a global value. */ | |
836 | ||
837 | /* If the first global decl has external linkage, | |
838 | warn if we later see static one. */ | |
839 | if (IDENTIFIER_GLOBAL_VALUE (name) == NULL_TREE && TREE_PUBLIC (x)) | |
840 | TREE_PUBLIC (name) = 1; | |
841 | ||
0cbd7506 MS |
842 | /* Bind the name for the entity. */ |
843 | if (!(TREE_CODE (x) == TYPE_DECL && DECL_ARTIFICIAL (x) | |
844 | && t != NULL_TREE) | |
845 | && (TREE_CODE (x) == TYPE_DECL | |
846 | || TREE_CODE (x) == VAR_DECL | |
0cbd7506 MS |
847 | || TREE_CODE (x) == NAMESPACE_DECL |
848 | || TREE_CODE (x) == CONST_DECL | |
849 | || TREE_CODE (x) == TEMPLATE_DECL)) | |
850 | SET_IDENTIFIER_NAMESPACE_VALUE (name, x); | |
a5e6b29b | 851 | |
a5e6b29b GDR |
852 | /* If new decl is `static' and an `extern' was seen previously, |
853 | warn about it. */ | |
854 | if (x != NULL_TREE && t != NULL_TREE && decls_match (x, t)) | |
855 | warn_extern_redeclared_static (x, t); | |
856 | } | |
857 | else | |
858 | { | |
859 | /* Here to install a non-global value. */ | |
90ea9897 | 860 | tree oldlocal = innermost_non_namespace_value (name); |
a5e6b29b GDR |
861 | tree oldglobal = IDENTIFIER_NAMESPACE_VALUE (name); |
862 | ||
863 | if (need_new_binding) | |
864 | { | |
865 | push_local_binding (name, x, 0); | |
866 | /* Because push_local_binding will hook X on to the | |
867 | current_binding_level's name list, we don't want to | |
868 | do that again below. */ | |
869 | need_new_binding = 0; | |
870 | } | |
871 | ||
872 | /* If this is a TYPE_DECL, push it into the type value slot. */ | |
873 | if (TREE_CODE (x) == TYPE_DECL) | |
874 | set_identifier_type_value (name, x); | |
875 | ||
876 | /* Clear out any TYPE_DECL shadowed by a namespace so that | |
877 | we won't think this is a type. The C struct hack doesn't | |
878 | go through namespaces. */ | |
879 | if (TREE_CODE (x) == NAMESPACE_DECL) | |
880 | set_identifier_type_value (name, NULL_TREE); | |
881 | ||
882 | if (oldlocal) | |
883 | { | |
884 | tree d = oldlocal; | |
885 | ||
886 | while (oldlocal | |
887 | && TREE_CODE (oldlocal) == VAR_DECL | |
888 | && DECL_DEAD_FOR_LOCAL (oldlocal)) | |
889 | oldlocal = DECL_SHADOWED_FOR_VAR (oldlocal); | |
890 | ||
891 | if (oldlocal == NULL_TREE) | |
892 | oldlocal = IDENTIFIER_NAMESPACE_VALUE (DECL_NAME (d)); | |
893 | } | |
894 | ||
895 | /* If this is an extern function declaration, see if we | |
896 | have a global definition or declaration for the function. */ | |
897 | if (oldlocal == NULL_TREE | |
898 | && DECL_EXTERNAL (x) | |
899 | && oldglobal != NULL_TREE | |
900 | && TREE_CODE (x) == FUNCTION_DECL | |
901 | && TREE_CODE (oldglobal) == FUNCTION_DECL) | |
902 | { | |
903 | /* We have one. Their types must agree. */ | |
904 | if (decls_match (x, oldglobal)) | |
905 | /* OK */; | |
906 | else | |
907 | { | |
d4ee4d25 | 908 | warning (0, "extern declaration of %q#D doesn't match", x); |
dee15844 | 909 | warning (0, "global declaration %q+#D", oldglobal); |
a5e6b29b GDR |
910 | } |
911 | } | |
912 | /* If we have a local external declaration, | |
913 | and no file-scope declaration has yet been seen, | |
914 | then if we later have a file-scope decl it must not be static. */ | |
915 | if (oldlocal == NULL_TREE | |
916 | && oldglobal == NULL_TREE | |
917 | && DECL_EXTERNAL (x) | |
918 | && TREE_PUBLIC (x)) | |
919 | TREE_PUBLIC (name) = 1; | |
920 | ||
921 | /* Warn if shadowing an argument at the top level of the body. */ | |
922 | if (oldlocal != NULL_TREE && !DECL_EXTERNAL (x) | |
923 | /* Inline decls shadow nothing. */ | |
924 | && !DECL_FROM_INLINE (x) | |
925 | && TREE_CODE (oldlocal) == PARM_DECL | |
926 | /* Don't check the `this' parameter. */ | |
927 | && !DECL_ARTIFICIAL (oldlocal)) | |
928 | { | |
929 | bool err = false; | |
930 | ||
931 | /* Don't complain if it's from an enclosing function. */ | |
932 | if (DECL_CONTEXT (oldlocal) == current_function_decl | |
933 | && TREE_CODE (x) != PARM_DECL) | |
934 | { | |
935 | /* Go to where the parms should be and see if we find | |
936 | them there. */ | |
937 | struct cp_binding_level *b = current_binding_level->level_chain; | |
938 | ||
86ad3aa9 JM |
939 | if (FUNCTION_NEEDS_BODY_BLOCK (current_function_decl)) |
940 | /* Skip the ctor/dtor cleanup level. */ | |
941 | b = b->level_chain; | |
a5e6b29b GDR |
942 | |
943 | /* ARM $8.3 */ | |
944 | if (b->kind == sk_function_parms) | |
945 | { | |
2a13a625 | 946 | error ("declaration of %q#D shadows a parameter", x); |
a5e6b29b GDR |
947 | err = true; |
948 | } | |
949 | } | |
950 | ||
951 | if (warn_shadow && !err) | |
a6f78652 | 952 | { |
d4ee4d25 DD |
953 | warning (0, "declaration of %q#D shadows a parameter", x); |
954 | warning (0, "%Jshadowed declaration is here", oldlocal); | |
a6f78652 | 955 | } |
a5e6b29b GDR |
956 | } |
957 | ||
958 | /* Maybe warn if shadowing something else. */ | |
959 | else if (warn_shadow && !DECL_EXTERNAL (x) | |
960 | /* No shadow warnings for internally generated vars. */ | |
961 | && ! DECL_ARTIFICIAL (x) | |
962 | /* No shadow warnings for vars made for inlining. */ | |
963 | && ! DECL_FROM_INLINE (x)) | |
964 | { | |
39fb05d0 MM |
965 | tree member; |
966 | ||
967 | if (current_class_ptr) | |
968 | member = lookup_member (current_class_type, | |
969 | name, | |
970 | /*protect=*/0, | |
971 | /*want_type=*/false); | |
972 | else | |
973 | member = NULL_TREE; | |
c8094d83 | 974 | |
39fb05d0 | 975 | if (member && !TREE_STATIC (member)) |
a6f78652 ZW |
976 | { |
977 | /* Location of previous decl is not useful in this case. */ | |
d4ee4d25 | 978 | warning (0, "declaration of %qD shadows a member of 'this'", |
a6f78652 ZW |
979 | x); |
980 | } | |
a5e6b29b GDR |
981 | else if (oldlocal != NULL_TREE |
982 | && TREE_CODE (oldlocal) == VAR_DECL) | |
a6f78652 | 983 | { |
d4ee4d25 DD |
984 | warning (0, "declaration of %qD shadows a previous local", x); |
985 | warning (0, "%Jshadowed declaration is here", oldlocal); | |
a6f78652 | 986 | } |
a5e6b29b GDR |
987 | else if (oldglobal != NULL_TREE |
988 | && TREE_CODE (oldglobal) == VAR_DECL) | |
989 | /* XXX shadow warnings in outer-more namespaces */ | |
a6f78652 | 990 | { |
d4ee4d25 | 991 | warning (0, "declaration of %qD shadows a global declaration", |
a6f78652 | 992 | x); |
d4ee4d25 | 993 | warning (0, "%Jshadowed declaration is here", oldglobal); |
a6f78652 | 994 | } |
a5e6b29b GDR |
995 | } |
996 | } | |
997 | ||
a5e6b29b GDR |
998 | if (TREE_CODE (x) == VAR_DECL) |
999 | maybe_register_incomplete_var (x); | |
1000 | } | |
1001 | ||
1002 | if (need_new_binding) | |
1003 | add_decl_to_level (x, | |
1004 | DECL_NAMESPACE_SCOPE_P (x) | |
1005 | ? NAMESPACE_LEVEL (CP_DECL_CONTEXT (x)) | |
1006 | : current_binding_level); | |
1007 | ||
1008 | POP_TIMEVAR_AND_RETURN (TV_NAME_LOOKUP, x); | |
1009 | } | |
1010 | ||
d63d5d0c ILT |
1011 | /* Record a decl-node X as belonging to the current lexical scope. */ |
1012 | ||
1013 | tree | |
1014 | pushdecl (tree x) | |
1015 | { | |
1016 | return pushdecl_maybe_friend (x, false); | |
1017 | } | |
1018 | ||
a5e6b29b GDR |
1019 | /* Enter DECL into the symbol table, if that's appropriate. Returns |
1020 | DECL, or a modified version thereof. */ | |
1021 | ||
1022 | tree | |
1023 | maybe_push_decl (tree decl) | |
1024 | { | |
1025 | tree type = TREE_TYPE (decl); | |
1026 | ||
1027 | /* Add this decl to the current binding level, but not if it comes | |
1028 | from another scope, e.g. a static member variable. TEM may equal | |
1029 | DECL or it may be a previous decl of the same name. */ | |
1030 | if (decl == error_mark_node | |
1031 | || (TREE_CODE (decl) != PARM_DECL | |
1032 | && DECL_CONTEXT (decl) != NULL_TREE | |
1033 | /* Definitions of namespace members outside their namespace are | |
1034 | possible. */ | |
1035 | && TREE_CODE (DECL_CONTEXT (decl)) != NAMESPACE_DECL) | |
1036 | || (TREE_CODE (decl) == TEMPLATE_DECL && !namespace_bindings_p ()) | |
1037 | || TREE_CODE (type) == UNKNOWN_TYPE | |
1038 | /* The declaration of a template specialization does not affect | |
1039 | the functions available for overload resolution, so we do not | |
1040 | call pushdecl. */ | |
1041 | || (TREE_CODE (decl) == FUNCTION_DECL | |
1042 | && DECL_TEMPLATE_SPECIALIZATION (decl))) | |
1043 | return decl; | |
1044 | else | |
1045 | return pushdecl (decl); | |
1046 | } | |
1047 | ||
00e8de68 GDR |
1048 | /* Bind DECL to ID in the current_binding_level, assumed to be a local |
1049 | binding level. If PUSH_USING is set in FLAGS, we know that DECL | |
1050 | doesn't really belong to this binding level, that it got here | |
1051 | through a using-declaration. */ | |
1052 | ||
58ec3cc5 | 1053 | void |
00e8de68 GDR |
1054 | push_local_binding (tree id, tree decl, int flags) |
1055 | { | |
1056 | struct cp_binding_level *b; | |
1057 | ||
1058 | /* Skip over any local classes. This makes sense if we call | |
1059 | push_local_binding with a friend decl of a local class. */ | |
1060 | b = innermost_nonclass_level (); | |
1061 | ||
461c6fce | 1062 | if (lookup_name_innermost_nonclass_level (id)) |
00e8de68 GDR |
1063 | { |
1064 | /* Supplement the existing binding. */ | |
1065 | if (!supplement_binding (IDENTIFIER_BINDING (id), decl)) | |
1066 | /* It didn't work. Something else must be bound at this | |
1067 | level. Do not add DECL to the list of things to pop | |
1068 | later. */ | |
1069 | return; | |
1070 | } | |
1071 | else | |
1072 | /* Create a new binding. */ | |
1073 | push_binding (id, decl, b); | |
1074 | ||
1075 | if (TREE_CODE (decl) == OVERLOAD || (flags & PUSH_USING)) | |
1076 | /* We must put the OVERLOAD into a TREE_LIST since the | |
1077 | TREE_CHAIN of an OVERLOAD is already used. Similarly for | |
1078 | decls that got here through a using-declaration. */ | |
1079 | decl = build_tree_list (NULL_TREE, decl); | |
1080 | ||
1081 | /* And put DECL on the list of things declared by the current | |
1082 | binding level. */ | |
1083 | add_decl_to_level (decl, b); | |
1084 | } | |
a5e6b29b | 1085 | |
a5e6b29b GDR |
1086 | /* Check to see whether or not DECL is a variable that would have been |
1087 | in scope under the ARM, but is not in scope under the ANSI/ISO | |
1088 | standard. If so, issue an error message. If name lookup would | |
1089 | work in both cases, but return a different result, this function | |
1090 | returns the result of ANSI/ISO lookup. Otherwise, it returns | |
1091 | DECL. */ | |
1092 | ||
1093 | tree | |
1094 | check_for_out_of_scope_variable (tree decl) | |
1095 | { | |
1096 | tree shadowed; | |
1097 | ||
1098 | /* We only care about out of scope variables. */ | |
1099 | if (!(TREE_CODE (decl) == VAR_DECL && DECL_DEAD_FOR_LOCAL (decl))) | |
1100 | return decl; | |
1101 | ||
820cc88f DB |
1102 | shadowed = DECL_HAS_SHADOWED_FOR_VAR_P (decl) |
1103 | ? DECL_SHADOWED_FOR_VAR (decl) : NULL_TREE ; | |
a5e6b29b GDR |
1104 | while (shadowed != NULL_TREE && TREE_CODE (shadowed) == VAR_DECL |
1105 | && DECL_DEAD_FOR_LOCAL (shadowed)) | |
820cc88f DB |
1106 | shadowed = DECL_HAS_SHADOWED_FOR_VAR_P (shadowed) |
1107 | ? DECL_SHADOWED_FOR_VAR (shadowed) : NULL_TREE; | |
a5e6b29b GDR |
1108 | if (!shadowed) |
1109 | shadowed = IDENTIFIER_NAMESPACE_VALUE (DECL_NAME (decl)); | |
1110 | if (shadowed) | |
1111 | { | |
1112 | if (!DECL_ERROR_REPORTED (decl)) | |
1113 | { | |
d4ee4d25 | 1114 | warning (0, "name lookup of %qD changed", DECL_NAME (decl)); |
dee15844 JM |
1115 | warning (0, " matches this %q+D under ISO standard rules", |
1116 | shadowed); | |
1117 | warning (0, " matches this %q+D under old rules", decl); | |
a5e6b29b GDR |
1118 | DECL_ERROR_REPORTED (decl) = 1; |
1119 | } | |
1120 | return shadowed; | |
1121 | } | |
1122 | ||
1123 | /* If we have already complained about this declaration, there's no | |
1124 | need to do it again. */ | |
1125 | if (DECL_ERROR_REPORTED (decl)) | |
1126 | return decl; | |
1127 | ||
1128 | DECL_ERROR_REPORTED (decl) = 1; | |
ae5cbc33 RS |
1129 | |
1130 | if (TREE_TYPE (decl) == error_mark_node) | |
1131 | return decl; | |
1132 | ||
a5e6b29b GDR |
1133 | if (TYPE_HAS_NONTRIVIAL_DESTRUCTOR (TREE_TYPE (decl))) |
1134 | { | |
2a13a625 | 1135 | error ("name lookup of %qD changed for new ISO %<for%> scoping", |
a5e6b29b | 1136 | DECL_NAME (decl)); |
dee15844 JM |
1137 | error (" cannot use obsolete binding at %q+D because " |
1138 | "it has a destructor", decl); | |
a5e6b29b GDR |
1139 | return error_mark_node; |
1140 | } | |
1141 | else | |
1142 | { | |
2a13a625 | 1143 | pedwarn ("name lookup of %qD changed for new ISO %<for%> scoping", |
a5e6b29b | 1144 | DECL_NAME (decl)); |
dee15844 | 1145 | pedwarn (" using obsolete binding at %q+D", decl); |
a5e6b29b GDR |
1146 | } |
1147 | ||
1148 | return decl; | |
1149 | } | |
00e8de68 GDR |
1150 | \f |
1151 | /* true means unconditionally make a BLOCK for the next level pushed. */ | |
1152 | ||
1153 | static bool keep_next_level_flag; | |
1154 | ||
1155 | static int binding_depth = 0; | |
1156 | static int is_class_level = 0; | |
1157 | ||
1158 | static void | |
1159 | indent (int depth) | |
1160 | { | |
1161 | int i; | |
1162 | ||
1163 | for (i = 0; i < depth * 2; i++) | |
1164 | putc (' ', stderr); | |
1165 | } | |
1166 | ||
1167 | /* Return a string describing the kind of SCOPE we have. */ | |
1168 | static const char * | |
1169 | cxx_scope_descriptor (cxx_scope *scope) | |
1170 | { | |
1171 | /* The order of this table must match the "scope_kind" | |
1172 | enumerators. */ | |
1173 | static const char* scope_kind_names[] = { | |
1174 | "block-scope", | |
1175 | "cleanup-scope", | |
1176 | "try-scope", | |
1177 | "catch-scope", | |
1178 | "for-scope", | |
1179 | "function-parameter-scope", | |
1180 | "class-scope", | |
1181 | "namespace-scope", | |
1182 | "template-parameter-scope", | |
1183 | "template-explicit-spec-scope" | |
1184 | }; | |
1185 | const scope_kind kind = scope->explicit_spec_p | |
1186 | ? sk_template_spec : scope->kind; | |
1187 | ||
1188 | return scope_kind_names[kind]; | |
1189 | } | |
1190 | ||
cd0be382 | 1191 | /* Output a debugging information about SCOPE when performing |
00e8de68 GDR |
1192 | ACTION at LINE. */ |
1193 | static void | |
1194 | cxx_scope_debug (cxx_scope *scope, int line, const char *action) | |
1195 | { | |
1196 | const char *desc = cxx_scope_descriptor (scope); | |
1197 | if (scope->this_entity) | |
1198 | verbatim ("%s %s(%E) %p %d\n", action, desc, | |
0cbd7506 | 1199 | scope->this_entity, (void *) scope, line); |
00e8de68 GDR |
1200 | else |
1201 | verbatim ("%s %s %p %d\n", action, desc, (void *) scope, line); | |
1202 | } | |
1203 | ||
1204 | /* Return the estimated initial size of the hashtable of a NAMESPACE | |
1205 | scope. */ | |
1206 | ||
1207 | static inline size_t | |
1208 | namespace_scope_ht_size (tree ns) | |
1209 | { | |
1210 | tree name = DECL_NAME (ns); | |
1211 | ||
1212 | return name == std_identifier | |
1213 | ? NAMESPACE_STD_HT_SIZE | |
1214 | : (name == global_scope_name | |
1215 | ? GLOBAL_SCOPE_HT_SIZE | |
1216 | : NAMESPACE_ORDINARY_HT_SIZE); | |
1217 | } | |
1218 | ||
1219 | /* A chain of binding_level structures awaiting reuse. */ | |
1220 | ||
1431042e | 1221 | static GTY((deletable)) struct cp_binding_level *free_binding_level; |
00e8de68 | 1222 | |
89b578be MM |
1223 | /* Insert SCOPE as the innermost binding level. */ |
1224 | ||
1225 | void | |
1226 | push_binding_level (struct cp_binding_level *scope) | |
1227 | { | |
1228 | /* Add it to the front of currently active scopes stack. */ | |
1229 | scope->level_chain = current_binding_level; | |
1230 | current_binding_level = scope; | |
1231 | keep_next_level_flag = false; | |
1232 | ||
1233 | if (ENABLE_SCOPE_CHECKING) | |
1234 | { | |
1235 | scope->binding_depth = binding_depth; | |
1236 | indent (binding_depth); | |
1237 | cxx_scope_debug (scope, input_line, "push"); | |
1238 | is_class_level = 0; | |
1239 | binding_depth++; | |
1240 | } | |
1241 | } | |
1242 | ||
00e8de68 GDR |
1243 | /* Create a new KIND scope and make it the top of the active scopes stack. |
1244 | ENTITY is the scope of the associated C++ entity (namespace, class, | |
1245 | function); it is NULL otherwise. */ | |
1246 | ||
1247 | cxx_scope * | |
1248 | begin_scope (scope_kind kind, tree entity) | |
1249 | { | |
1250 | cxx_scope *scope; | |
c8094d83 | 1251 | |
00e8de68 GDR |
1252 | /* Reuse or create a struct for this binding level. */ |
1253 | if (!ENABLE_SCOPE_CHECKING && free_binding_level) | |
1254 | { | |
1255 | scope = free_binding_level; | |
1256 | free_binding_level = scope->level_chain; | |
1257 | } | |
1258 | else | |
99dd239f | 1259 | scope = GGC_NEW (cxx_scope); |
00e8de68 GDR |
1260 | memset (scope, 0, sizeof (cxx_scope)); |
1261 | ||
1262 | scope->this_entity = entity; | |
1263 | scope->more_cleanups_ok = true; | |
1264 | switch (kind) | |
1265 | { | |
1266 | case sk_cleanup: | |
1267 | scope->keep = true; | |
1268 | break; | |
c8094d83 | 1269 | |
00e8de68 GDR |
1270 | case sk_template_spec: |
1271 | scope->explicit_spec_p = true; | |
1272 | kind = sk_template_parms; | |
f4f206f4 | 1273 | /* Fall through. */ |
00e8de68 GDR |
1274 | case sk_template_parms: |
1275 | case sk_block: | |
1276 | case sk_try: | |
1277 | case sk_catch: | |
1278 | case sk_for: | |
1279 | case sk_class: | |
1280 | case sk_function_parms: | |
1281 | scope->keep = keep_next_level_flag; | |
1282 | break; | |
1283 | ||
1284 | case sk_namespace: | |
00e8de68 | 1285 | NAMESPACE_LEVEL (entity) = scope; |
9857866d KH |
1286 | scope->static_decls = |
1287 | VEC_alloc (tree, gc, | |
1288 | DECL_NAME (entity) == std_identifier | |
1289 | || DECL_NAME (entity) == global_scope_name | |
1290 | ? 200 : 10); | |
00e8de68 GDR |
1291 | break; |
1292 | ||
1293 | default: | |
1294 | /* Should not happen. */ | |
50bc768d | 1295 | gcc_unreachable (); |
00e8de68 GDR |
1296 | break; |
1297 | } | |
1298 | scope->kind = kind; | |
1299 | ||
89b578be | 1300 | push_binding_level (scope); |
00e8de68 GDR |
1301 | |
1302 | return scope; | |
1303 | } | |
1304 | ||
1305 | /* We're about to leave current scope. Pop the top of the stack of | |
1306 | currently active scopes. Return the enclosing scope, now active. */ | |
1307 | ||
1308 | cxx_scope * | |
1309 | leave_scope (void) | |
1310 | { | |
1311 | cxx_scope *scope = current_binding_level; | |
1312 | ||
1313 | if (scope->kind == sk_namespace && class_binding_level) | |
1314 | current_binding_level = class_binding_level; | |
1315 | ||
1316 | /* We cannot leave a scope, if there are none left. */ | |
1317 | if (NAMESPACE_LEVEL (global_namespace)) | |
50bc768d | 1318 | gcc_assert (!global_scope_p (scope)); |
c8094d83 | 1319 | |
00e8de68 GDR |
1320 | if (ENABLE_SCOPE_CHECKING) |
1321 | { | |
1322 | indent (--binding_depth); | |
93409b8c | 1323 | cxx_scope_debug (scope, input_line, "leave"); |
00e8de68 | 1324 | if (is_class_level != (scope == class_binding_level)) |
0cbd7506 MS |
1325 | { |
1326 | indent (binding_depth); | |
1327 | verbatim ("XXX is_class_level != (current_scope == class_scope)\n"); | |
1328 | } | |
00e8de68 GDR |
1329 | is_class_level = 0; |
1330 | } | |
1331 | ||
1332 | /* Move one nesting level up. */ | |
1333 | current_binding_level = scope->level_chain; | |
1334 | ||
89b578be MM |
1335 | /* Namespace-scopes are left most probably temporarily, not |
1336 | completely; they can be reopen later, e.g. in namespace-extension | |
1337 | or any name binding activity that requires us to resume a | |
1338 | namespace. For classes, we cache some binding levels. For other | |
00e8de68 | 1339 | scopes, we just make the structure available for reuse. */ |
89b578be MM |
1340 | if (scope->kind != sk_namespace |
1341 | && scope->kind != sk_class) | |
00e8de68 GDR |
1342 | { |
1343 | scope->level_chain = free_binding_level; | |
50bc768d NS |
1344 | gcc_assert (!ENABLE_SCOPE_CHECKING |
1345 | || scope->binding_depth == binding_depth); | |
00e8de68 GDR |
1346 | free_binding_level = scope; |
1347 | } | |
1348 | ||
1349 | /* Find the innermost enclosing class scope, and reset | |
1350 | CLASS_BINDING_LEVEL appropriately. */ | |
5423d7eb RS |
1351 | if (scope->kind == sk_class) |
1352 | { | |
1353 | class_binding_level = NULL; | |
1354 | for (scope = current_binding_level; scope; scope = scope->level_chain) | |
1355 | if (scope->kind == sk_class) | |
1356 | { | |
1357 | class_binding_level = scope; | |
1358 | break; | |
1359 | } | |
1360 | } | |
00e8de68 GDR |
1361 | |
1362 | return current_binding_level; | |
1363 | } | |
1364 | ||
1365 | static void | |
1366 | resume_scope (struct cp_binding_level* b) | |
1367 | { | |
1368 | /* Resuming binding levels is meant only for namespaces, | |
1369 | and those cannot nest into classes. */ | |
50bc768d | 1370 | gcc_assert (!class_binding_level); |
00e8de68 | 1371 | /* Also, resuming a non-directly nested namespace is a no-no. */ |
50bc768d | 1372 | gcc_assert (b->level_chain == current_binding_level); |
00e8de68 GDR |
1373 | current_binding_level = b; |
1374 | if (ENABLE_SCOPE_CHECKING) | |
1375 | { | |
1376 | b->binding_depth = binding_depth; | |
1377 | indent (binding_depth); | |
93409b8c | 1378 | cxx_scope_debug (b, input_line, "resume"); |
00e8de68 GDR |
1379 | is_class_level = 0; |
1380 | binding_depth++; | |
1381 | } | |
1382 | } | |
1383 | ||
1384 | /* Return the innermost binding level that is not for a class scope. */ | |
1385 | ||
1386 | static cxx_scope * | |
1387 | innermost_nonclass_level (void) | |
1388 | { | |
1389 | cxx_scope *b; | |
1390 | ||
1391 | b = current_binding_level; | |
1392 | while (b->kind == sk_class) | |
1393 | b = b->level_chain; | |
1394 | ||
1395 | return b; | |
1396 | } | |
1397 | ||
1398 | /* We're defining an object of type TYPE. If it needs a cleanup, but | |
1399 | we're not allowed to add any more objects with cleanups to the current | |
1400 | scope, create a new binding level. */ | |
1401 | ||
1402 | void | |
1403 | maybe_push_cleanup_level (tree type) | |
1404 | { | |
bb8b4ed6 MM |
1405 | if (type != error_mark_node |
1406 | && TYPE_HAS_NONTRIVIAL_DESTRUCTOR (type) | |
00e8de68 GDR |
1407 | && current_binding_level->more_cleanups_ok == 0) |
1408 | { | |
1409 | begin_scope (sk_cleanup, NULL); | |
325c3691 | 1410 | current_binding_level->statement_list = push_stmt_list (); |
00e8de68 GDR |
1411 | } |
1412 | } | |
1413 | ||
1414 | /* Nonzero if we are currently in the global binding level. */ | |
1415 | ||
1416 | int | |
1417 | global_bindings_p (void) | |
1418 | { | |
1419 | return global_scope_p (current_binding_level); | |
1420 | } | |
1421 | ||
1422 | /* True if we are currently in a toplevel binding level. This | |
1423 | means either the global binding level or a namespace in a toplevel | |
1424 | binding level. Since there are no non-toplevel namespace levels, | |
1425 | this really means any namespace or template parameter level. We | |
1426 | also include a class whose context is toplevel. */ | |
1427 | ||
1428 | bool | |
1429 | toplevel_bindings_p (void) | |
1430 | { | |
1431 | struct cp_binding_level *b = innermost_nonclass_level (); | |
1432 | ||
1433 | return b->kind == sk_namespace || b->kind == sk_template_parms; | |
1434 | } | |
1435 | ||
1436 | /* True if this is a namespace scope, or if we are defining a class | |
1437 | which is itself at namespace scope, or whose enclosing class is | |
1438 | such a class, etc. */ | |
1439 | ||
1440 | bool | |
1441 | namespace_bindings_p (void) | |
1442 | { | |
1443 | struct cp_binding_level *b = innermost_nonclass_level (); | |
1444 | ||
1445 | return b->kind == sk_namespace; | |
1446 | } | |
1447 | ||
1448 | /* True if the current level needs to have a BLOCK made. */ | |
1449 | ||
1450 | bool | |
1451 | kept_level_p (void) | |
1452 | { | |
1453 | return (current_binding_level->blocks != NULL_TREE | |
1454 | || current_binding_level->keep | |
0cbd7506 | 1455 | || current_binding_level->kind == sk_cleanup |
e57df6fe | 1456 | || current_binding_level->names != NULL_TREE); |
00e8de68 GDR |
1457 | } |
1458 | ||
1459 | /* Returns the kind of the innermost scope. */ | |
1460 | ||
1461 | scope_kind | |
1462 | innermost_scope_kind (void) | |
1463 | { | |
1464 | return current_binding_level->kind; | |
1465 | } | |
1466 | ||
1467 | /* Returns true if this scope was created to store template parameters. */ | |
1468 | ||
1469 | bool | |
1470 | template_parm_scope_p (void) | |
1471 | { | |
1472 | return innermost_scope_kind () == sk_template_parms; | |
1473 | } | |
1474 | ||
1475 | /* If KEEP is true, make a BLOCK node for the next binding level, | |
1476 | unconditionally. Otherwise, use the normal logic to decide whether | |
1477 | or not to create a BLOCK. */ | |
1478 | ||
1479 | void | |
1480 | keep_next_level (bool keep) | |
1481 | { | |
1482 | keep_next_level_flag = keep; | |
1483 | } | |
1484 | ||
1485 | /* Return the list of declarations of the current level. | |
1486 | Note that this list is in reverse order unless/until | |
1487 | you nreverse it; and when you do nreverse it, you must | |
1488 | store the result back using `storedecls' or you will lose. */ | |
1489 | ||
1490 | tree | |
1491 | getdecls (void) | |
1492 | { | |
1493 | return current_binding_level->names; | |
1494 | } | |
1495 | ||
00e8de68 GDR |
1496 | /* For debugging. */ |
1497 | static int no_print_functions = 0; | |
1498 | static int no_print_builtins = 0; | |
1499 | ||
b8c1703b | 1500 | static void |
00e8de68 GDR |
1501 | print_binding_level (struct cp_binding_level* lvl) |
1502 | { | |
1503 | tree t; | |
1504 | int i = 0, len; | |
06145cb9 | 1505 | fprintf (stderr, " blocks=%p", (void *) lvl->blocks); |
00e8de68 GDR |
1506 | if (lvl->more_cleanups_ok) |
1507 | fprintf (stderr, " more-cleanups-ok"); | |
1508 | if (lvl->have_cleanups) | |
1509 | fprintf (stderr, " have-cleanups"); | |
1510 | fprintf (stderr, "\n"); | |
1511 | if (lvl->names) | |
1512 | { | |
1513 | fprintf (stderr, " names:\t"); | |
1514 | /* We can probably fit 3 names to a line? */ | |
1515 | for (t = lvl->names; t; t = TREE_CHAIN (t)) | |
1516 | { | |
1517 | if (no_print_functions && (TREE_CODE (t) == FUNCTION_DECL)) | |
1518 | continue; | |
1519 | if (no_print_builtins | |
1520 | && (TREE_CODE (t) == TYPE_DECL) | |
93409b8c | 1521 | && DECL_IS_BUILTIN (t)) |
00e8de68 GDR |
1522 | continue; |
1523 | ||
1524 | /* Function decls tend to have longer names. */ | |
1525 | if (TREE_CODE (t) == FUNCTION_DECL) | |
1526 | len = 3; | |
1527 | else | |
1528 | len = 2; | |
1529 | i += len; | |
1530 | if (i > 6) | |
1531 | { | |
1532 | fprintf (stderr, "\n\t"); | |
1533 | i = len; | |
1534 | } | |
1535 | print_node_brief (stderr, "", t, 0); | |
1536 | if (t == error_mark_node) | |
1537 | break; | |
1538 | } | |
1539 | if (i) | |
0cbd7506 | 1540 | fprintf (stderr, "\n"); |
00e8de68 | 1541 | } |
89b578be | 1542 | if (VEC_length (cp_class_binding, lvl->class_shadowed)) |
00e8de68 | 1543 | { |
89b578be MM |
1544 | size_t i; |
1545 | cp_class_binding *b; | |
00e8de68 | 1546 | fprintf (stderr, " class-shadowed:"); |
c8094d83 | 1547 | for (i = 0; |
9ba5ff0f | 1548 | VEC_iterate(cp_class_binding, lvl->class_shadowed, i, b); |
c8094d83 | 1549 | ++i) |
89b578be | 1550 | fprintf (stderr, " %s ", IDENTIFIER_POINTER (b->identifier)); |
00e8de68 GDR |
1551 | fprintf (stderr, "\n"); |
1552 | } | |
1553 | if (lvl->type_shadowed) | |
1554 | { | |
1555 | fprintf (stderr, " type-shadowed:"); | |
1556 | for (t = lvl->type_shadowed; t; t = TREE_CHAIN (t)) | |
0cbd7506 | 1557 | { |
00e8de68 | 1558 | fprintf (stderr, " %s ", IDENTIFIER_POINTER (TREE_PURPOSE (t))); |
0cbd7506 | 1559 | } |
00e8de68 GDR |
1560 | fprintf (stderr, "\n"); |
1561 | } | |
1562 | } | |
1563 | ||
1564 | void | |
1565 | print_other_binding_stack (struct cp_binding_level *stack) | |
1566 | { | |
1567 | struct cp_binding_level *level; | |
1568 | for (level = stack; !global_scope_p (level); level = level->level_chain) | |
1569 | { | |
06145cb9 | 1570 | fprintf (stderr, "binding level %p\n", (void *) level); |
00e8de68 GDR |
1571 | print_binding_level (level); |
1572 | } | |
1573 | } | |
1574 | ||
1575 | void | |
1576 | print_binding_stack (void) | |
1577 | { | |
1578 | struct cp_binding_level *b; | |
06145cb9 KG |
1579 | fprintf (stderr, "current_binding_level=%p\n" |
1580 | "class_binding_level=%p\n" | |
1581 | "NAMESPACE_LEVEL (global_namespace)=%p\n", | |
00e8de68 | 1582 | (void *) current_binding_level, (void *) class_binding_level, |
0cbd7506 | 1583 | (void *) NAMESPACE_LEVEL (global_namespace)); |
00e8de68 GDR |
1584 | if (class_binding_level) |
1585 | { | |
1586 | for (b = class_binding_level; b; b = b->level_chain) | |
1587 | if (b == current_binding_level) | |
1588 | break; | |
1589 | if (b) | |
1590 | b = class_binding_level; | |
1591 | else | |
1592 | b = current_binding_level; | |
1593 | } | |
1594 | else | |
1595 | b = current_binding_level; | |
1596 | print_other_binding_stack (b); | |
1597 | fprintf (stderr, "global:\n"); | |
1598 | print_binding_level (NAMESPACE_LEVEL (global_namespace)); | |
1599 | } | |
ed3cf953 | 1600 | \f |
00e8de68 GDR |
1601 | /* Return the type associated with id. */ |
1602 | ||
1603 | tree | |
1604 | identifier_type_value (tree id) | |
1605 | { | |
1606 | timevar_push (TV_NAME_LOOKUP); | |
1607 | /* There is no type with that name, anywhere. */ | |
1608 | if (REAL_IDENTIFIER_TYPE_VALUE (id) == NULL_TREE) | |
1609 | POP_TIMEVAR_AND_RETURN (TV_NAME_LOOKUP, NULL_TREE); | |
1610 | /* This is not the type marker, but the real thing. */ | |
1611 | if (REAL_IDENTIFIER_TYPE_VALUE (id) != global_type_node) | |
1612 | POP_TIMEVAR_AND_RETURN (TV_NAME_LOOKUP, REAL_IDENTIFIER_TYPE_VALUE (id)); | |
1613 | /* Have to search for it. It must be on the global level, now. | |
1614 | Ask lookup_name not to return non-types. */ | |
12cf89fa | 1615 | id = lookup_name_real (id, 2, 1, /*block_p=*/true, 0, LOOKUP_COMPLAIN); |
00e8de68 GDR |
1616 | if (id) |
1617 | POP_TIMEVAR_AND_RETURN (TV_NAME_LOOKUP, TREE_TYPE (id)); | |
1618 | POP_TIMEVAR_AND_RETURN (TV_NAME_LOOKUP, NULL_TREE); | |
1619 | } | |
1620 | ||
1621 | /* Return the IDENTIFIER_GLOBAL_VALUE of T, for use in common code, since | |
1622 | the definition of IDENTIFIER_GLOBAL_VALUE is different for C and C++. */ | |
1623 | ||
1624 | tree | |
1625 | identifier_global_value (tree t) | |
1626 | { | |
1627 | return IDENTIFIER_GLOBAL_VALUE (t); | |
1628 | } | |
1629 | ||
1630 | /* Push a definition of struct, union or enum tag named ID. into | |
1631 | binding_level B. DECL is a TYPE_DECL for the type. We assume that | |
1632 | the tag ID is not already defined. */ | |
1633 | ||
1634 | static void | |
1635 | set_identifier_type_value_with_scope (tree id, tree decl, cxx_scope *b) | |
1636 | { | |
1637 | tree type; | |
1638 | ||
1639 | if (b->kind != sk_namespace) | |
1640 | { | |
1641 | /* Shadow the marker, not the real thing, so that the marker | |
1642 | gets restored later. */ | |
1643 | tree old_type_value = REAL_IDENTIFIER_TYPE_VALUE (id); | |
1644 | b->type_shadowed | |
1645 | = tree_cons (id, old_type_value, b->type_shadowed); | |
1646 | type = decl ? TREE_TYPE (decl) : NULL_TREE; | |
39fb05d0 | 1647 | TREE_TYPE (b->type_shadowed) = type; |
00e8de68 GDR |
1648 | } |
1649 | else | |
1650 | { | |
1651 | cxx_binding *binding = | |
1652 | binding_for_name (NAMESPACE_LEVEL (current_namespace), id); | |
315fb5db NS |
1653 | gcc_assert (decl); |
1654 | if (binding->value) | |
1655 | supplement_binding (binding, decl); | |
00e8de68 | 1656 | else |
315fb5db | 1657 | binding->value = decl; |
c8094d83 | 1658 | |
00e8de68 GDR |
1659 | /* Store marker instead of real type. */ |
1660 | type = global_type_node; | |
1661 | } | |
1662 | SET_IDENTIFIER_TYPE_VALUE (id, type); | |
1663 | } | |
1664 | ||
1665 | /* As set_identifier_type_value_with_scope, but using | |
1666 | current_binding_level. */ | |
1667 | ||
1668 | void | |
1669 | set_identifier_type_value (tree id, tree decl) | |
1670 | { | |
1671 | set_identifier_type_value_with_scope (id, decl, current_binding_level); | |
1672 | } | |
1673 | ||
5a167978 GDR |
1674 | /* Return the name for the constructor (or destructor) for the |
1675 | specified class TYPE. When given a template, this routine doesn't | |
1676 | lose the specialization. */ | |
1677 | ||
b8c1703b | 1678 | static inline tree |
5a167978 GDR |
1679 | constructor_name_full (tree type) |
1680 | { | |
508a1c9c | 1681 | return TYPE_IDENTIFIER (TYPE_MAIN_VARIANT (type)); |
5a167978 GDR |
1682 | } |
1683 | ||
1684 | /* Return the name for the constructor (or destructor) for the | |
1685 | specified class. When given a template, return the plain | |
1686 | unspecialized name. */ | |
1687 | ||
1688 | tree | |
1689 | constructor_name (tree type) | |
1690 | { | |
1691 | tree name; | |
1692 | name = constructor_name_full (type); | |
1693 | if (IDENTIFIER_TEMPLATE (name)) | |
1694 | name = IDENTIFIER_TEMPLATE (name); | |
1695 | return name; | |
1696 | } | |
1697 | ||
1698 | /* Returns TRUE if NAME is the name for the constructor for TYPE. */ | |
1699 | ||
1700 | bool | |
1701 | constructor_name_p (tree name, tree type) | |
1702 | { | |
1703 | tree ctor_name; | |
1704 | ||
1705 | if (!name) | |
1706 | return false; | |
c8094d83 | 1707 | |
5a167978 GDR |
1708 | if (TREE_CODE (name) != IDENTIFIER_NODE) |
1709 | return false; | |
c8094d83 | 1710 | |
5a167978 GDR |
1711 | ctor_name = constructor_name_full (type); |
1712 | if (name == ctor_name) | |
1713 | return true; | |
1714 | if (IDENTIFIER_TEMPLATE (ctor_name) | |
1715 | && name == IDENTIFIER_TEMPLATE (ctor_name)) | |
1716 | return true; | |
1717 | return false; | |
1718 | } | |
1719 | ||
a5e6b29b GDR |
1720 | /* Counter used to create anonymous type names. */ |
1721 | ||
1722 | static GTY(()) int anon_cnt; | |
1723 | ||
1724 | /* Return an IDENTIFIER which can be used as a name for | |
1725 | anonymous structs and unions. */ | |
1726 | ||
1727 | tree | |
1728 | make_anon_name (void) | |
1729 | { | |
1730 | char buf[32]; | |
1731 | ||
1732 | sprintf (buf, ANON_AGGRNAME_FORMAT, anon_cnt++); | |
1733 | return get_identifier (buf); | |
1734 | } | |
1735 | ||
c8094d83 | 1736 | /* Return (from the stack of) the BINDING, if any, established at SCOPE. */ |
ed3cf953 GDR |
1737 | |
1738 | static inline cxx_binding * | |
1739 | find_binding (cxx_scope *scope, cxx_binding *binding) | |
1740 | { | |
1741 | timevar_push (TV_NAME_LOOKUP); | |
1742 | ||
1743 | for (; binding != NULL; binding = binding->previous) | |
147135cc | 1744 | if (binding->scope == scope) |
ed3cf953 GDR |
1745 | POP_TIMEVAR_AND_RETURN (TV_NAME_LOOKUP, binding); |
1746 | ||
da247ccc | 1747 | POP_TIMEVAR_AND_RETURN (TV_NAME_LOOKUP, (cxx_binding *)0); |
ed3cf953 GDR |
1748 | } |
1749 | ||
1750 | /* Return the binding for NAME in SCOPE, if any. Otherwise, return NULL. */ | |
daafa301 | 1751 | |
5a167978 | 1752 | static inline cxx_binding * |
ed3cf953 GDR |
1753 | cxx_scope_find_binding_for_name (cxx_scope *scope, tree name) |
1754 | { | |
1755 | cxx_binding *b = IDENTIFIER_NAMESPACE_BINDINGS (name); | |
1756 | if (b) | |
1757 | { | |
1758 | /* Fold-in case where NAME is used only once. */ | |
147135cc | 1759 | if (scope == b->scope && b->previous == NULL) |
0cbd7506 | 1760 | return b; |
ed3cf953 GDR |
1761 | return find_binding (scope, b); |
1762 | } | |
1763 | return NULL; | |
1764 | } | |
1765 | ||
1766 | /* Always returns a binding for name in scope. If no binding is | |
1767 | found, make a new one. */ | |
1768 | ||
5a167978 | 1769 | static cxx_binding * |
ed3cf953 GDR |
1770 | binding_for_name (cxx_scope *scope, tree name) |
1771 | { | |
1772 | cxx_binding *result; | |
1773 | ||
1774 | result = cxx_scope_find_binding_for_name (scope, name); | |
1775 | if (result) | |
1776 | return result; | |
1777 | /* Not found, make a new one. */ | |
1778 | result = cxx_binding_make (NULL, NULL); | |
1779 | result->previous = IDENTIFIER_NAMESPACE_BINDINGS (name); | |
147135cc | 1780 | result->scope = scope; |
ed3cf953 GDR |
1781 | result->is_local = false; |
1782 | result->value_is_inherited = false; | |
1783 | IDENTIFIER_NAMESPACE_BINDINGS (name) = result; | |
1784 | return result; | |
1785 | } | |
ed3cf953 | 1786 | |
a5e6b29b GDR |
1787 | /* Insert another USING_DECL into the current binding level, returning |
1788 | this declaration. If this is a redeclaration, do nothing, and | |
1789 | return NULL_TREE if this not in namespace scope (in namespace | |
1790 | scope, a using decl might extend any previous bindings). */ | |
1791 | ||
1792 | tree | |
1793 | push_using_decl (tree scope, tree name) | |
1794 | { | |
1795 | tree decl; | |
1796 | ||
1797 | timevar_push (TV_NAME_LOOKUP); | |
50bc768d NS |
1798 | gcc_assert (TREE_CODE (scope) == NAMESPACE_DECL); |
1799 | gcc_assert (TREE_CODE (name) == IDENTIFIER_NODE); | |
a5e6b29b | 1800 | for (decl = current_binding_level->usings; decl; decl = TREE_CHAIN (decl)) |
98ed9dae | 1801 | if (USING_DECL_SCOPE (decl) == scope && DECL_NAME (decl) == name) |
a5e6b29b GDR |
1802 | break; |
1803 | if (decl) | |
1804 | POP_TIMEVAR_AND_RETURN (TV_NAME_LOOKUP, | |
0cbd7506 | 1805 | namespace_bindings_p () ? decl : NULL_TREE); |
98ed9dae NS |
1806 | decl = build_lang_decl (USING_DECL, name, NULL_TREE); |
1807 | USING_DECL_SCOPE (decl) = scope; | |
a5e6b29b GDR |
1808 | TREE_CHAIN (decl) = current_binding_level->usings; |
1809 | current_binding_level->usings = decl; | |
1810 | POP_TIMEVAR_AND_RETURN (TV_NAME_LOOKUP, decl); | |
1811 | } | |
1812 | ||
00e8de68 GDR |
1813 | /* Same as pushdecl, but define X in binding-level LEVEL. We rely on the |
1814 | caller to set DECL_CONTEXT properly. */ | |
ed3cf953 GDR |
1815 | |
1816 | tree | |
d63d5d0c | 1817 | pushdecl_with_scope (tree x, cxx_scope *level, bool is_friend) |
ed3cf953 | 1818 | { |
926ce8bd | 1819 | struct cp_binding_level *b; |
00e8de68 | 1820 | tree function_decl = current_function_decl; |
ed3cf953 | 1821 | |
00e8de68 GDR |
1822 | timevar_push (TV_NAME_LOOKUP); |
1823 | current_function_decl = NULL_TREE; | |
1824 | if (level->kind == sk_class) | |
1825 | { | |
1826 | b = class_binding_level; | |
1827 | class_binding_level = level; | |
1828 | pushdecl_class_level (x); | |
1829 | class_binding_level = b; | |
1830 | } | |
1831 | else | |
1832 | { | |
1833 | b = current_binding_level; | |
1834 | current_binding_level = level; | |
d63d5d0c | 1835 | x = pushdecl_maybe_friend (x, is_friend); |
00e8de68 GDR |
1836 | current_binding_level = b; |
1837 | } | |
1838 | current_function_decl = function_decl; | |
1839 | POP_TIMEVAR_AND_RETURN (TV_NAME_LOOKUP, x); | |
1840 | } | |
1841 | ||
a5e6b29b GDR |
1842 | /* DECL is a FUNCTION_DECL for a non-member function, which may have |
1843 | other definitions already in place. We get around this by making | |
1844 | the value of the identifier point to a list of all the things that | |
1845 | want to be referenced by that name. It is then up to the users of | |
1846 | that name to decide what to do with that list. | |
1847 | ||
1848 | DECL may also be a TEMPLATE_DECL, with a FUNCTION_DECL in its | |
1849 | DECL_TEMPLATE_RESULT. It is dealt with the same way. | |
1850 | ||
1851 | FLAGS is a bitwise-or of the following values: | |
1852 | PUSH_LOCAL: Bind DECL in the current scope, rather than at | |
0cbd7506 | 1853 | namespace scope. |
a5e6b29b | 1854 | PUSH_USING: DECL is being pushed as the result of a using |
0cbd7506 | 1855 | declaration. |
a5e6b29b | 1856 | |
d63d5d0c ILT |
1857 | IS_FRIEND is true if this is a friend declaration. |
1858 | ||
a5e6b29b GDR |
1859 | The value returned may be a previous declaration if we guessed wrong |
1860 | about what language DECL should belong to (C or C++). Otherwise, | |
1861 | it's always DECL (and never something that's not a _DECL). */ | |
1862 | ||
1863 | static tree | |
d63d5d0c | 1864 | push_overloaded_decl (tree decl, int flags, bool is_friend) |
a5e6b29b GDR |
1865 | { |
1866 | tree name = DECL_NAME (decl); | |
1867 | tree old; | |
1868 | tree new_binding; | |
1869 | int doing_global = (namespace_bindings_p () || !(flags & PUSH_LOCAL)); | |
1870 | ||
1871 | timevar_push (TV_NAME_LOOKUP); | |
1872 | if (doing_global) | |
1873 | old = namespace_binding (name, DECL_CONTEXT (decl)); | |
1874 | else | |
461c6fce | 1875 | old = lookup_name_innermost_nonclass_level (name); |
a5e6b29b GDR |
1876 | |
1877 | if (old) | |
1878 | { | |
1879 | if (TREE_CODE (old) == TYPE_DECL && DECL_ARTIFICIAL (old)) | |
1880 | { | |
1881 | tree t = TREE_TYPE (old); | |
1882 | if (IS_AGGR_TYPE (t) && warn_shadow | |
1883 | && (! DECL_IN_SYSTEM_HEADER (decl) | |
1884 | || ! DECL_IN_SYSTEM_HEADER (old))) | |
d4ee4d25 | 1885 | warning (0, "%q#D hides constructor for %q#T", decl, t); |
a5e6b29b GDR |
1886 | old = NULL_TREE; |
1887 | } | |
1888 | else if (is_overloaded_fn (old)) | |
0cbd7506 MS |
1889 | { |
1890 | tree tmp; | |
a5e6b29b GDR |
1891 | |
1892 | for (tmp = old; tmp; tmp = OVL_NEXT (tmp)) | |
1893 | { | |
1894 | tree fn = OVL_CURRENT (tmp); | |
1895 | ||
1896 | if (TREE_CODE (tmp) == OVERLOAD && OVL_USED (tmp) | |
1897 | && !(flags & PUSH_USING) | |
1898 | && compparms (TYPE_ARG_TYPES (TREE_TYPE (fn)), | |
713101a6 AO |
1899 | TYPE_ARG_TYPES (TREE_TYPE (decl))) |
1900 | && ! decls_match (fn, decl)) | |
2a13a625 | 1901 | error ("%q#D conflicts with previous using declaration %q#D", |
0cbd7506 | 1902 | decl, fn); |
a5e6b29b | 1903 | |
d63d5d0c | 1904 | if (duplicate_decls (decl, fn, is_friend) == fn) |
a5e6b29b GDR |
1905 | POP_TIMEVAR_AND_RETURN (TV_NAME_LOOKUP, fn); |
1906 | } | |
1a32490a AO |
1907 | |
1908 | /* We don't overload implicit built-ins. duplicate_decls() | |
1909 | may fail to merge the decls if the new decl is e.g. a | |
1910 | template function. */ | |
1911 | if (TREE_CODE (old) == FUNCTION_DECL | |
d63d5d0c ILT |
1912 | && DECL_ANTICIPATED (old) |
1913 | && !DECL_HIDDEN_FRIEND_P (old)) | |
1a32490a | 1914 | old = NULL; |
a5e6b29b GDR |
1915 | } |
1916 | else if (old == error_mark_node) | |
1917 | /* Ignore the undefined symbol marker. */ | |
1918 | old = NULL_TREE; | |
1919 | else | |
1920 | { | |
dee15844 | 1921 | error ("previous non-function declaration %q+#D", old); |
2a13a625 | 1922 | error ("conflicts with function declaration %q#D", decl); |
a5e6b29b GDR |
1923 | POP_TIMEVAR_AND_RETURN (TV_NAME_LOOKUP, decl); |
1924 | } | |
1925 | } | |
1926 | ||
f3162000 GB |
1927 | if (old || TREE_CODE (decl) == TEMPLATE_DECL |
1928 | /* If it's a using declaration, we always need to build an OVERLOAD, | |
1929 | because it's the only way to remember that the declaration comes | |
1930 | from 'using', and have the lookup behave correctly. */ | |
1931 | || (flags & PUSH_USING)) | |
a5e6b29b GDR |
1932 | { |
1933 | if (old && TREE_CODE (old) != OVERLOAD) | |
1934 | new_binding = ovl_cons (decl, ovl_cons (old, NULL_TREE)); | |
1935 | else | |
1936 | new_binding = ovl_cons (decl, old); | |
1937 | if (flags & PUSH_USING) | |
1938 | OVL_USED (new_binding) = 1; | |
1939 | } | |
1940 | else | |
3c28fc74 | 1941 | /* NAME is not ambiguous. */ |
a5e6b29b GDR |
1942 | new_binding = decl; |
1943 | ||
1944 | if (doing_global) | |
1945 | set_namespace_binding (name, current_namespace, new_binding); | |
1946 | else | |
1947 | { | |
1948 | /* We only create an OVERLOAD if there was a previous binding at | |
1949 | this level, or if decl is a template. In the former case, we | |
1950 | need to remove the old binding and replace it with the new | |
1951 | binding. We must also run through the NAMES on the binding | |
1952 | level where the name was bound to update the chain. */ | |
1953 | ||
1954 | if (TREE_CODE (new_binding) == OVERLOAD && old) | |
1955 | { | |
1956 | tree *d; | |
1957 | ||
1958 | for (d = &IDENTIFIER_BINDING (name)->scope->names; | |
1959 | *d; | |
1960 | d = &TREE_CHAIN (*d)) | |
1961 | if (*d == old | |
1962 | || (TREE_CODE (*d) == TREE_LIST | |
1963 | && TREE_VALUE (*d) == old)) | |
1964 | { | |
1965 | if (TREE_CODE (*d) == TREE_LIST) | |
1966 | /* Just replace the old binding with the new. */ | |
1967 | TREE_VALUE (*d) = new_binding; | |
1968 | else | |
1969 | /* Build a TREE_LIST to wrap the OVERLOAD. */ | |
1970 | *d = tree_cons (NULL_TREE, new_binding, | |
1971 | TREE_CHAIN (*d)); | |
1972 | ||
1973 | /* And update the cxx_binding node. */ | |
1974 | IDENTIFIER_BINDING (name)->value = new_binding; | |
1975 | POP_TIMEVAR_AND_RETURN (TV_NAME_LOOKUP, decl); | |
1976 | } | |
1977 | ||
1978 | /* We should always find a previous binding in this case. */ | |
315fb5db | 1979 | gcc_unreachable (); |
a5e6b29b GDR |
1980 | } |
1981 | ||
1982 | /* Install the new binding. */ | |
1983 | push_local_binding (name, new_binding, flags); | |
1984 | } | |
1985 | ||
1986 | POP_TIMEVAR_AND_RETURN (TV_NAME_LOOKUP, decl); | |
1987 | } | |
1988 | ||
5a167978 GDR |
1989 | /* Check a non-member using-declaration. Return the name and scope |
1990 | being used, and the USING_DECL, or NULL_TREE on failure. */ | |
1991 | ||
1992 | static tree | |
ed5f054f | 1993 | validate_nonmember_using_decl (tree decl, tree scope, tree name) |
5a167978 | 1994 | { |
7756db03 MM |
1995 | /* [namespace.udecl] |
1996 | A using-declaration for a class member shall be a | |
1997 | member-declaration. */ | |
1998 | if (TYPE_P (scope)) | |
1999 | { | |
2a13a625 | 2000 | error ("%qT is not a namespace", scope); |
7756db03 MM |
2001 | return NULL_TREE; |
2002 | } | |
2003 | else if (scope == error_mark_node) | |
2004 | return NULL_TREE; | |
2005 | ||
5a167978 GDR |
2006 | if (TREE_CODE (decl) == TEMPLATE_ID_EXPR) |
2007 | { | |
5a167978 GDR |
2008 | /* 7.3.3/5 |
2009 | A using-declaration shall not name a template-id. */ | |
2a13a625 | 2010 | error ("a using-declaration cannot specify a template-id. " |
0cbd7506 | 2011 | "Try %<using %D%>", name); |
5a167978 GDR |
2012 | return NULL_TREE; |
2013 | } | |
2014 | ||
2015 | if (TREE_CODE (decl) == NAMESPACE_DECL) | |
2016 | { | |
2a13a625 | 2017 | error ("namespace %qD not allowed in using-declaration", decl); |
5a167978 GDR |
2018 | return NULL_TREE; |
2019 | } | |
2020 | ||
2021 | if (TREE_CODE (decl) == SCOPE_REF) | |
2022 | { | |
2023 | /* It's a nested name with template parameter dependent scope. | |
2024 | This can only be using-declaration for class member. */ | |
2a13a625 | 2025 | error ("%qT is not a namespace", TREE_OPERAND (decl, 0)); |
5a167978 GDR |
2026 | return NULL_TREE; |
2027 | } | |
2028 | ||
2029 | if (is_overloaded_fn (decl)) | |
2030 | decl = get_first_fn (decl); | |
2031 | ||
50bc768d | 2032 | gcc_assert (DECL_P (decl)); |
5a167978 | 2033 | |
5a167978 | 2034 | /* Make a USING_DECL. */ |
ed5f054f | 2035 | return push_using_decl (scope, name); |
5a167978 GDR |
2036 | } |
2037 | ||
2038 | /* Process local and global using-declarations. */ | |
2039 | ||
2040 | static void | |
2041 | do_nonmember_using_decl (tree scope, tree name, tree oldval, tree oldtype, | |
0cbd7506 | 2042 | tree *newval, tree *newtype) |
5a167978 | 2043 | { |
15f8ac7f | 2044 | struct scope_binding decls = EMPTY_SCOPE_BINDING; |
5a167978 GDR |
2045 | |
2046 | *newval = *newtype = NULL_TREE; | |
5a167978 GDR |
2047 | if (!qualified_lookup_using_namespace (name, scope, &decls, 0)) |
2048 | /* Lookup error */ | |
2049 | return; | |
2050 | ||
2051 | if (!decls.value && !decls.type) | |
2052 | { | |
2a13a625 | 2053 | error ("%qD not declared", name); |
5a167978 GDR |
2054 | return; |
2055 | } | |
2056 | ||
d035c296 MM |
2057 | /* It is impossible to overload a built-in function; any explicit |
2058 | declaration eliminates the built-in declaration. So, if OLDVAL | |
2059 | is a built-in, then we can just pretend it isn't there. */ | |
c8094d83 | 2060 | if (oldval |
d035c296 | 2061 | && TREE_CODE (oldval) == FUNCTION_DECL |
d63d5d0c ILT |
2062 | && DECL_ANTICIPATED (oldval) |
2063 | && !DECL_HIDDEN_FRIEND_P (oldval)) | |
d035c296 MM |
2064 | oldval = NULL_TREE; |
2065 | ||
5a167978 GDR |
2066 | /* Check for using functions. */ |
2067 | if (decls.value && is_overloaded_fn (decls.value)) | |
2068 | { | |
2069 | tree tmp, tmp1; | |
2070 | ||
2071 | if (oldval && !is_overloaded_fn (oldval)) | |
2072 | { | |
2073 | if (!DECL_IMPLICIT_TYPEDEF_P (oldval)) | |
2a13a625 | 2074 | error ("%qD is already declared in this scope", name); |
5a167978 GDR |
2075 | oldval = NULL_TREE; |
2076 | } | |
2077 | ||
2078 | *newval = oldval; | |
2079 | for (tmp = decls.value; tmp; tmp = OVL_NEXT (tmp)) | |
2080 | { | |
2081 | tree new_fn = OVL_CURRENT (tmp); | |
2082 | ||
2083 | /* [namespace.udecl] | |
2084 | ||
2085 | If a function declaration in namespace scope or block | |
2086 | scope has the same name and the same parameter types as a | |
2087 | function introduced by a using declaration the program is | |
2088 | ill-formed. */ | |
2089 | for (tmp1 = oldval; tmp1; tmp1 = OVL_NEXT (tmp1)) | |
2090 | { | |
2091 | tree old_fn = OVL_CURRENT (tmp1); | |
2092 | ||
0cbd7506 MS |
2093 | if (new_fn == old_fn) |
2094 | /* The function already exists in the current namespace. */ | |
2095 | break; | |
5a167978 | 2096 | else if (OVL_USED (tmp1)) |
0cbd7506 | 2097 | continue; /* this is a using decl */ |
5a167978 | 2098 | else if (compparms (TYPE_ARG_TYPES (TREE_TYPE (new_fn)), |
0cbd7506 | 2099 | TYPE_ARG_TYPES (TREE_TYPE (old_fn)))) |
5a167978 | 2100 | { |
d63d5d0c ILT |
2101 | gcc_assert (!DECL_ANTICIPATED (old_fn) |
2102 | || DECL_HIDDEN_FRIEND_P (old_fn)); | |
e3016344 | 2103 | |
0cbd7506 | 2104 | /* There was already a non-using declaration in |
5a167978 | 2105 | this scope with the same parameter types. If both |
0cbd7506 MS |
2106 | are the same extern "C" functions, that's ok. */ |
2107 | if (decls_match (new_fn, old_fn)) | |
e3016344 MM |
2108 | break; |
2109 | else | |
0cbd7506 | 2110 | { |
2a13a625 | 2111 | error ("%qD is already declared in this scope", name); |
5a167978 GDR |
2112 | break; |
2113 | } | |
5a167978 GDR |
2114 | } |
2115 | } | |
2116 | ||
2117 | /* If we broke out of the loop, there's no reason to add | |
2118 | this function to the using declarations for this | |
2119 | scope. */ | |
2120 | if (tmp1) | |
2121 | continue; | |
c8094d83 | 2122 | |
26bcf8fc MM |
2123 | /* If we are adding to an existing OVERLOAD, then we no |
2124 | longer know the type of the set of functions. */ | |
2125 | if (*newval && TREE_CODE (*newval) == OVERLOAD) | |
2126 | TREE_TYPE (*newval) = unknown_type_node; | |
2127 | /* Add this new function to the set. */ | |
5a167978 | 2128 | *newval = build_overload (OVL_CURRENT (tmp), *newval); |
26bcf8fc MM |
2129 | /* If there is only one function, then we use its type. (A |
2130 | using-declaration naming a single function can be used in | |
2131 | contexts where overload resolution cannot be | |
2132 | performed.) */ | |
5a167978 | 2133 | if (TREE_CODE (*newval) != OVERLOAD) |
26bcf8fc MM |
2134 | { |
2135 | *newval = ovl_cons (*newval, NULL_TREE); | |
2136 | TREE_TYPE (*newval) = TREE_TYPE (OVL_CURRENT (tmp)); | |
2137 | } | |
5a167978 GDR |
2138 | OVL_USED (*newval) = 1; |
2139 | } | |
2140 | } | |
c8094d83 | 2141 | else |
5a167978 GDR |
2142 | { |
2143 | *newval = decls.value; | |
2144 | if (oldval && !decls_match (*newval, oldval)) | |
2a13a625 | 2145 | error ("%qD is already declared in this scope", name); |
5a167978 GDR |
2146 | } |
2147 | ||
2148 | *newtype = decls.type; | |
2149 | if (oldtype && *newtype && !same_type_p (oldtype, *newtype)) | |
2150 | { | |
2a13a625 | 2151 | error ("using declaration %qD introduced ambiguous type %qT", |
0cbd7506 | 2152 | name, oldtype); |
5a167978 GDR |
2153 | return; |
2154 | } | |
2155 | } | |
2156 | ||
2157 | /* Process a using-declaration at function scope. */ | |
2158 | ||
2159 | void | |
ed5f054f | 2160 | do_local_using_decl (tree decl, tree scope, tree name) |
5a167978 | 2161 | { |
5a167978 | 2162 | tree oldval, oldtype, newval, newtype; |
6097b0c3 | 2163 | tree orig_decl = decl; |
5a167978 | 2164 | |
ed5f054f | 2165 | decl = validate_nonmember_using_decl (decl, scope, name); |
5a167978 GDR |
2166 | if (decl == NULL_TREE) |
2167 | return; | |
2168 | ||
2169 | if (building_stmt_tree () | |
2170 | && at_function_scope_p ()) | |
350fae66 | 2171 | add_decl_expr (decl); |
5a167978 | 2172 | |
461c6fce | 2173 | oldval = lookup_name_innermost_nonclass_level (name); |
5a167978 GDR |
2174 | oldtype = lookup_type_current_level (name); |
2175 | ||
2176 | do_nonmember_using_decl (scope, name, oldval, oldtype, &newval, &newtype); | |
2177 | ||
2178 | if (newval) | |
2179 | { | |
2180 | if (is_overloaded_fn (newval)) | |
2181 | { | |
2182 | tree fn, term; | |
2183 | ||
2184 | /* We only need to push declarations for those functions | |
2185 | that were not already bound in the current level. | |
2186 | The old value might be NULL_TREE, it might be a single | |
2187 | function, or an OVERLOAD. */ | |
2188 | if (oldval && TREE_CODE (oldval) == OVERLOAD) | |
2189 | term = OVL_FUNCTION (oldval); | |
2190 | else | |
2191 | term = oldval; | |
c8094d83 | 2192 | for (fn = newval; fn && OVL_CURRENT (fn) != term; |
5a167978 | 2193 | fn = OVL_NEXT (fn)) |
c8094d83 | 2194 | push_overloaded_decl (OVL_CURRENT (fn), |
d63d5d0c ILT |
2195 | PUSH_LOCAL | PUSH_USING, |
2196 | false); | |
5a167978 GDR |
2197 | } |
2198 | else | |
2199 | push_local_binding (name, newval, PUSH_USING); | |
2200 | } | |
2201 | if (newtype) | |
4546865e MM |
2202 | { |
2203 | push_local_binding (name, newtype, PUSH_USING); | |
2204 | set_identifier_type_value (name, newtype); | |
2205 | } | |
6097b0c3 DP |
2206 | |
2207 | /* Emit debug info. */ | |
2208 | if (!processing_template_decl) | |
2209 | cp_emit_debug_info_for_using (orig_decl, current_scope()); | |
5a167978 GDR |
2210 | } |
2211 | ||
5a167978 GDR |
2212 | /* Returns true if ROOT (a namespace, class, or function) encloses |
2213 | CHILD. CHILD may be either a class type or a namespace. */ | |
2214 | ||
2215 | bool | |
2216 | is_ancestor (tree root, tree child) | |
2217 | { | |
50bc768d NS |
2218 | gcc_assert ((TREE_CODE (root) == NAMESPACE_DECL |
2219 | || TREE_CODE (root) == FUNCTION_DECL | |
2220 | || CLASS_TYPE_P (root))); | |
2221 | gcc_assert ((TREE_CODE (child) == NAMESPACE_DECL | |
2222 | || CLASS_TYPE_P (child))); | |
c8094d83 | 2223 | |
5a167978 GDR |
2224 | /* The global namespace encloses everything. */ |
2225 | if (root == global_namespace) | |
2226 | return true; | |
2227 | ||
2228 | while (true) | |
2229 | { | |
2230 | /* If we've run out of scopes, stop. */ | |
2231 | if (!child) | |
2232 | return false; | |
2233 | /* If we've reached the ROOT, it encloses CHILD. */ | |
2234 | if (root == child) | |
2235 | return true; | |
2236 | /* Go out one level. */ | |
2237 | if (TYPE_P (child)) | |
2238 | child = TYPE_NAME (child); | |
2239 | child = DECL_CONTEXT (child); | |
2240 | } | |
2241 | } | |
2242 | ||
4514aa8c NS |
2243 | /* Enter the class or namespace scope indicated by T suitable for name |
2244 | lookup. T can be arbitrary scope, not necessary nested inside the | |
2245 | current scope. Returns a non-null scope to pop iff pop_scope | |
2246 | should be called later to exit this scope. */ | |
5a167978 | 2247 | |
4514aa8c | 2248 | tree |
5a167978 GDR |
2249 | push_scope (tree t) |
2250 | { | |
2251 | if (TREE_CODE (t) == NAMESPACE_DECL) | |
2252 | push_decl_namespace (t); | |
91b004e5 MM |
2253 | else if (CLASS_TYPE_P (t)) |
2254 | { | |
2255 | if (!at_class_scope_p () | |
2256 | || !same_type_p (current_class_type, t)) | |
2257 | push_nested_class (t); | |
2258 | else | |
2259 | /* T is the same as the current scope. There is therefore no | |
2260 | need to re-enter the scope. Since we are not actually | |
2261 | pushing a new scope, our caller should not call | |
2262 | pop_scope. */ | |
4514aa8c | 2263 | t = NULL_TREE; |
91b004e5 MM |
2264 | } |
2265 | ||
4514aa8c | 2266 | return t; |
5a167978 GDR |
2267 | } |
2268 | ||
2269 | /* Leave scope pushed by push_scope. */ | |
2270 | ||
2271 | void | |
2272 | pop_scope (tree t) | |
2273 | { | |
2274 | if (TREE_CODE (t) == NAMESPACE_DECL) | |
2275 | pop_decl_namespace (); | |
2276 | else if CLASS_TYPE_P (t) | |
2277 | pop_nested_class (); | |
2278 | } | |
87c465f5 KL |
2279 | |
2280 | /* Subroutine of push_inner_scope. */ | |
2281 | ||
2282 | static void | |
2283 | push_inner_scope_r (tree outer, tree inner) | |
2284 | { | |
2285 | tree prev; | |
2286 | ||
2287 | if (outer == inner | |
2288 | || (TREE_CODE (inner) != NAMESPACE_DECL && !CLASS_TYPE_P (inner))) | |
2289 | return; | |
2290 | ||
2291 | prev = CP_DECL_CONTEXT (TREE_CODE (inner) == NAMESPACE_DECL ? inner : TYPE_NAME (inner)); | |
2292 | if (outer != prev) | |
2293 | push_inner_scope_r (outer, prev); | |
2294 | if (TREE_CODE (inner) == NAMESPACE_DECL) | |
2295 | { | |
2296 | struct cp_binding_level *save_template_parm = 0; | |
2297 | /* Temporary take out template parameter scopes. They are saved | |
2298 | in reversed order in save_template_parm. */ | |
2299 | while (current_binding_level->kind == sk_template_parms) | |
2300 | { | |
2301 | struct cp_binding_level *b = current_binding_level; | |
2302 | current_binding_level = b->level_chain; | |
2303 | b->level_chain = save_template_parm; | |
2304 | save_template_parm = b; | |
2305 | } | |
2306 | ||
2307 | resume_scope (NAMESPACE_LEVEL (inner)); | |
2308 | current_namespace = inner; | |
2309 | ||
2310 | /* Restore template parameter scopes. */ | |
2311 | while (save_template_parm) | |
2312 | { | |
2313 | struct cp_binding_level *b = save_template_parm; | |
2314 | save_template_parm = b->level_chain; | |
2315 | b->level_chain = current_binding_level; | |
2316 | current_binding_level = b; | |
2317 | } | |
2318 | } | |
2319 | else | |
2320 | pushclass (inner); | |
2321 | } | |
2322 | ||
2323 | /* Enter the scope INNER from current scope. INNER must be a scope | |
2324 | nested inside current scope. This works with both name lookup and | |
2325 | pushing name into scope. In case a template parameter scope is present, | |
2326 | namespace is pushed under the template parameter scope according to | |
2327 | name lookup rule in 14.6.1/6. | |
c8094d83 | 2328 | |
87c465f5 KL |
2329 | Return the former current scope suitable for pop_inner_scope. */ |
2330 | ||
2331 | tree | |
2332 | push_inner_scope (tree inner) | |
2333 | { | |
2334 | tree outer = current_scope (); | |
2335 | if (!outer) | |
2336 | outer = current_namespace; | |
2337 | ||
2338 | push_inner_scope_r (outer, inner); | |
2339 | return outer; | |
2340 | } | |
2341 | ||
2342 | /* Exit the current scope INNER back to scope OUTER. */ | |
2343 | ||
2344 | void | |
2345 | pop_inner_scope (tree outer, tree inner) | |
2346 | { | |
2347 | if (outer == inner | |
2348 | || (TREE_CODE (inner) != NAMESPACE_DECL && !CLASS_TYPE_P (inner))) | |
2349 | return; | |
2350 | ||
2351 | while (outer != inner) | |
2352 | { | |
2353 | if (TREE_CODE (inner) == NAMESPACE_DECL) | |
2354 | { | |
2355 | struct cp_binding_level *save_template_parm = 0; | |
2356 | /* Temporary take out template parameter scopes. They are saved | |
2357 | in reversed order in save_template_parm. */ | |
2358 | while (current_binding_level->kind == sk_template_parms) | |
2359 | { | |
2360 | struct cp_binding_level *b = current_binding_level; | |
2361 | current_binding_level = b->level_chain; | |
2362 | b->level_chain = save_template_parm; | |
2363 | save_template_parm = b; | |
2364 | } | |
2365 | ||
2366 | pop_namespace (); | |
2367 | ||
2368 | /* Restore template parameter scopes. */ | |
2369 | while (save_template_parm) | |
2370 | { | |
2371 | struct cp_binding_level *b = save_template_parm; | |
2372 | save_template_parm = b->level_chain; | |
2373 | b->level_chain = current_binding_level; | |
2374 | current_binding_level = b; | |
2375 | } | |
2376 | } | |
2377 | else | |
2378 | popclass (); | |
2379 | ||
2380 | inner = CP_DECL_CONTEXT (TREE_CODE (inner) == NAMESPACE_DECL ? inner : TYPE_NAME (inner)); | |
2381 | } | |
2382 | } | |
00e8de68 GDR |
2383 | \f |
2384 | /* Do a pushlevel for class declarations. */ | |
2385 | ||
2386 | void | |
2387 | pushlevel_class (void) | |
2388 | { | |
2389 | if (ENABLE_SCOPE_CHECKING) | |
2390 | is_class_level = 1; | |
2391 | ||
2392 | class_binding_level = begin_scope (sk_class, current_class_type); | |
2393 | } | |
2394 | ||
2395 | /* ...and a poplevel for class declarations. */ | |
2396 | ||
2397 | void | |
2398 | poplevel_class (void) | |
2399 | { | |
926ce8bd | 2400 | struct cp_binding_level *level = class_binding_level; |
89b578be MM |
2401 | cp_class_binding *cb; |
2402 | size_t i; | |
00e8de68 GDR |
2403 | tree shadowed; |
2404 | ||
2405 | timevar_push (TV_NAME_LOOKUP); | |
50bc768d | 2406 | gcc_assert (level != 0); |
00e8de68 | 2407 | |
39fb05d0 MM |
2408 | /* If we're leaving a toplevel class, cache its binding level. */ |
2409 | if (current_class_depth == 1) | |
89b578be | 2410 | previous_class_level = level; |
00e8de68 GDR |
2411 | for (shadowed = level->type_shadowed; |
2412 | shadowed; | |
2413 | shadowed = TREE_CHAIN (shadowed)) | |
2414 | SET_IDENTIFIER_TYPE_VALUE (TREE_PURPOSE (shadowed), TREE_VALUE (shadowed)); | |
2415 | ||
2416 | /* Remove the bindings for all of the class-level declarations. */ | |
90ea9897 MM |
2417 | if (level->class_shadowed) |
2418 | { | |
2419 | for (i = 0; | |
9ba5ff0f | 2420 | VEC_iterate (cp_class_binding, level->class_shadowed, i, cb); |
90ea9897 MM |
2421 | ++i) |
2422 | IDENTIFIER_BINDING (cb->identifier) = cb->base.previous; | |
2423 | ggc_free (level->class_shadowed); | |
2424 | level->class_shadowed = NULL; | |
2425 | } | |
00e8de68 GDR |
2426 | |
2427 | /* Now, pop out of the binding level which we created up in the | |
2428 | `pushlevel_class' routine. */ | |
2429 | if (ENABLE_SCOPE_CHECKING) | |
2430 | is_class_level = 1; | |
2431 | ||
2432 | leave_scope (); | |
2433 | timevar_pop (TV_NAME_LOOKUP); | |
2434 | } | |
2435 | ||
90ea9897 MM |
2436 | /* Set INHERITED_VALUE_BINDING_P on BINDING to true or false, as |
2437 | appropriate. DECL is the value to which a name has just been | |
df05a794 | 2438 | bound. CLASS_TYPE is the class in which the lookup occurred. */ |
00e8de68 | 2439 | |
90ea9897 | 2440 | static void |
df05a794 MM |
2441 | set_inherited_value_binding_p (cxx_binding *binding, tree decl, |
2442 | tree class_type) | |
00e8de68 | 2443 | { |
00e8de68 GDR |
2444 | if (binding->value == decl && TREE_CODE (decl) != TREE_LIST) |
2445 | { | |
90ea9897 MM |
2446 | tree context; |
2447 | ||
00e8de68 GDR |
2448 | if (TREE_CODE (decl) == OVERLOAD) |
2449 | context = CP_DECL_CONTEXT (OVL_CURRENT (decl)); | |
2450 | else | |
2451 | { | |
50bc768d | 2452 | gcc_assert (DECL_P (decl)); |
00e8de68 GDR |
2453 | context = context_for_name_lookup (decl); |
2454 | } | |
2455 | ||
df05a794 | 2456 | if (is_properly_derived_from (class_type, context)) |
00e8de68 GDR |
2457 | INHERITED_VALUE_BINDING_P (binding) = 1; |
2458 | else | |
2459 | INHERITED_VALUE_BINDING_P (binding) = 0; | |
2460 | } | |
2461 | else if (binding->value == decl) | |
90ea9897 MM |
2462 | /* We only encounter a TREE_LIST when there is an ambiguity in the |
2463 | base classes. Such an ambiguity can be overridden by a | |
2464 | definition in this class. */ | |
00e8de68 | 2465 | INHERITED_VALUE_BINDING_P (binding) = 1; |
90ea9897 MM |
2466 | else |
2467 | INHERITED_VALUE_BINDING_P (binding) = 0; | |
00e8de68 GDR |
2468 | } |
2469 | ||
00e8de68 GDR |
2470 | /* Make the declaration of X appear in CLASS scope. */ |
2471 | ||
2472 | bool | |
2473 | pushdecl_class_level (tree x) | |
2474 | { | |
2475 | tree name; | |
2476 | bool is_valid = true; | |
2477 | ||
2478 | timevar_push (TV_NAME_LOOKUP); | |
2479 | /* Get the name of X. */ | |
2480 | if (TREE_CODE (x) == OVERLOAD) | |
2481 | name = DECL_NAME (get_first_fn (x)); | |
2482 | else | |
2483 | name = DECL_NAME (x); | |
2484 | ||
2485 | if (name) | |
2486 | { | |
2487 | is_valid = push_class_level_binding (name, x); | |
2488 | if (TREE_CODE (x) == TYPE_DECL) | |
2489 | set_identifier_type_value (name, x); | |
2490 | } | |
2491 | else if (ANON_AGGR_TYPE_P (TREE_TYPE (x))) | |
2492 | { | |
2493 | /* If X is an anonymous aggregate, all of its members are | |
2494 | treated as if they were members of the class containing the | |
2495 | aggregate, for naming purposes. */ | |
2496 | tree f; | |
2497 | ||
2498 | for (f = TYPE_FIELDS (TREE_TYPE (x)); f; f = TREE_CHAIN (f)) | |
2499 | { | |
2500 | location_t save_location = input_location; | |
2501 | input_location = DECL_SOURCE_LOCATION (f); | |
2502 | if (!pushdecl_class_level (f)) | |
2503 | is_valid = false; | |
2504 | input_location = save_location; | |
2505 | } | |
2506 | } | |
be99edf8 | 2507 | POP_TIMEVAR_AND_RETURN (TV_NAME_LOOKUP, is_valid); |
00e8de68 GDR |
2508 | } |
2509 | ||
90ea9897 MM |
2510 | /* Return the BINDING (if any) for NAME in SCOPE, which is a class |
2511 | scope. If the value returned is non-NULL, and the PREVIOUS field | |
2512 | is not set, callers must set the PREVIOUS field explicitly. */ | |
2513 | ||
2514 | static cxx_binding * | |
2515 | get_class_binding (tree name, cxx_scope *scope) | |
2516 | { | |
2517 | tree class_type; | |
2518 | tree type_binding; | |
2519 | tree value_binding; | |
2520 | cxx_binding *binding; | |
2521 | ||
2522 | class_type = scope->this_entity; | |
2523 | ||
2524 | /* Get the type binding. */ | |
2525 | type_binding = lookup_member (class_type, name, | |
2526 | /*protect=*/2, /*want_type=*/true); | |
2527 | /* Get the value binding. */ | |
2528 | value_binding = lookup_member (class_type, name, | |
2529 | /*protect=*/2, /*want_type=*/false); | |
2530 | ||
2531 | if (value_binding | |
2532 | && (TREE_CODE (value_binding) == TYPE_DECL | |
2533 | || DECL_CLASS_TEMPLATE_P (value_binding) | |
2534 | || (TREE_CODE (value_binding) == TREE_LIST | |
2535 | && TREE_TYPE (value_binding) == error_mark_node | |
2536 | && (TREE_CODE (TREE_VALUE (value_binding)) | |
2537 | == TYPE_DECL)))) | |
2538 | /* We found a type binding, even when looking for a non-type | |
2539 | binding. This means that we already processed this binding | |
2540 | above. */ | |
2541 | ; | |
2542 | else if (value_binding) | |
2543 | { | |
c8094d83 | 2544 | if (TREE_CODE (value_binding) == TREE_LIST |
90ea9897 MM |
2545 | && TREE_TYPE (value_binding) == error_mark_node) |
2546 | /* NAME is ambiguous. */ | |
2547 | ; | |
2548 | else if (BASELINK_P (value_binding)) | |
2549 | /* NAME is some overloaded functions. */ | |
2550 | value_binding = BASELINK_FUNCTIONS (value_binding); | |
2551 | } | |
2552 | ||
2553 | /* If we found either a type binding or a value binding, create a | |
2554 | new binding object. */ | |
2555 | if (type_binding || value_binding) | |
2556 | { | |
c8094d83 MS |
2557 | binding = new_class_binding (name, |
2558 | value_binding, | |
90ea9897 MM |
2559 | type_binding, |
2560 | scope); | |
2561 | /* This is a class-scope binding, not a block-scope binding. */ | |
2562 | LOCAL_BINDING_P (binding) = 0; | |
df05a794 | 2563 | set_inherited_value_binding_p (binding, value_binding, class_type); |
90ea9897 MM |
2564 | } |
2565 | else | |
2566 | binding = NULL; | |
2567 | ||
2568 | return binding; | |
2569 | } | |
c8094d83 | 2570 | |
00e8de68 GDR |
2571 | /* Make the declaration(s) of X appear in CLASS scope under the name |
2572 | NAME. Returns true if the binding is valid. */ | |
2573 | ||
2574 | bool | |
2575 | push_class_level_binding (tree name, tree x) | |
2576 | { | |
2577 | cxx_binding *binding; | |
90ea9897 MM |
2578 | tree decl = x; |
2579 | bool ok; | |
00e8de68 GDR |
2580 | |
2581 | timevar_push (TV_NAME_LOOKUP); | |
2582 | /* The class_binding_level will be NULL if x is a template | |
2583 | parameter name in a member template. */ | |
2584 | if (!class_binding_level) | |
2585 | POP_TIMEVAR_AND_RETURN (TV_NAME_LOOKUP, true); | |
2586 | ||
90ea9897 | 2587 | /* Check for invalid member names. */ |
50bc768d | 2588 | gcc_assert (TYPE_BEING_DEFINED (current_class_type)); |
90ea9897 MM |
2589 | /* We could have been passed a tree list if this is an ambiguous |
2590 | declaration. If so, pull the declaration out because | |
03fd3f84 | 2591 | check_template_shadow will not handle a TREE_LIST. */ |
c8094d83 | 2592 | if (TREE_CODE (decl) == TREE_LIST |
90ea9897 MM |
2593 | && TREE_TYPE (decl) == error_mark_node) |
2594 | decl = TREE_VALUE (decl); | |
ece95d90 | 2595 | |
90ea9897 | 2596 | check_template_shadow (decl); |
00e8de68 | 2597 | |
90ea9897 | 2598 | /* [class.mem] |
d2f2c87b | 2599 | |
90ea9897 MM |
2600 | If T is the name of a class, then each of the following shall |
2601 | have a name different from T: | |
d2f2c87b | 2602 | |
90ea9897 | 2603 | -- every static data member of class T; |
d2f2c87b | 2604 | |
90ea9897 | 2605 | -- every member of class T that is itself a type; |
d2f2c87b | 2606 | |
90ea9897 MM |
2607 | -- every enumerator of every member of class T that is an |
2608 | enumerated type; | |
d2f2c87b | 2609 | |
90ea9897 MM |
2610 | -- every member of every anonymous union that is a member of |
2611 | class T. | |
d2f2c87b | 2612 | |
90ea9897 MM |
2613 | (Non-static data members were also forbidden to have the same |
2614 | name as T until TC1.) */ | |
2615 | if ((TREE_CODE (x) == VAR_DECL | |
2616 | || TREE_CODE (x) == CONST_DECL | |
2617 | || (TREE_CODE (x) == TYPE_DECL | |
2618 | && !DECL_SELF_REFERENCE_P (x)) | |
2619 | /* A data member of an anonymous union. */ | |
2620 | || (TREE_CODE (x) == FIELD_DECL | |
2621 | && DECL_CONTEXT (x) != current_class_type)) | |
2622 | && DECL_NAME (x) == constructor_name (current_class_type)) | |
2623 | { | |
2624 | tree scope = context_for_name_lookup (x); | |
2625 | if (TYPE_P (scope) && same_type_p (scope, current_class_type)) | |
a6567a0f | 2626 | { |
2a13a625 | 2627 | error ("%qD has the same name as the class in which it is " |
90ea9897 MM |
2628 | "declared", |
2629 | x); | |
2630 | POP_TIMEVAR_AND_RETURN (TV_NAME_LOOKUP, false); | |
a6567a0f | 2631 | } |
d2f2c87b MM |
2632 | } |
2633 | ||
90ea9897 | 2634 | /* Get the current binding for NAME in this class, if any. */ |
00e8de68 | 2635 | binding = IDENTIFIER_BINDING (name); |
90ea9897 MM |
2636 | if (!binding || binding->scope != class_binding_level) |
2637 | { | |
2638 | binding = get_class_binding (name, class_binding_level); | |
2639 | /* If a new binding was created, put it at the front of the | |
2640 | IDENTIFIER_BINDING list. */ | |
2641 | if (binding) | |
2642 | { | |
2643 | binding->previous = IDENTIFIER_BINDING (name); | |
2644 | IDENTIFIER_BINDING (name) = binding; | |
2645 | } | |
2646 | } | |
2647 | ||
2648 | /* If there is already a binding, then we may need to update the | |
2649 | current value. */ | |
00e8de68 GDR |
2650 | if (binding && binding->value) |
2651 | { | |
2652 | tree bval = binding->value; | |
2653 | tree old_decl = NULL_TREE; | |
2654 | ||
2655 | if (INHERITED_VALUE_BINDING_P (binding)) | |
2656 | { | |
2657 | /* If the old binding was from a base class, and was for a | |
0cbd7506 MS |
2658 | tag name, slide it over to make room for the new binding. |
2659 | The old binding is still visible if explicitly qualified | |
2660 | with a class-key. */ | |
00e8de68 GDR |
2661 | if (TREE_CODE (bval) == TYPE_DECL && DECL_ARTIFICIAL (bval) |
2662 | && !(TREE_CODE (x) == TYPE_DECL && DECL_ARTIFICIAL (x))) | |
2663 | { | |
2664 | old_decl = binding->type; | |
2665 | binding->type = bval; | |
2666 | binding->value = NULL_TREE; | |
2667 | INHERITED_VALUE_BINDING_P (binding) = 0; | |
2668 | } | |
2669 | else | |
862e1e62 MM |
2670 | { |
2671 | old_decl = bval; | |
2672 | /* Any inherited type declaration is hidden by the type | |
2673 | declaration in the derived class. */ | |
2674 | if (TREE_CODE (x) == TYPE_DECL && DECL_ARTIFICIAL (x)) | |
2675 | binding->type = NULL_TREE; | |
2676 | } | |
00e8de68 GDR |
2677 | } |
2678 | else if (TREE_CODE (x) == OVERLOAD && is_overloaded_fn (bval)) | |
2679 | old_decl = bval; | |
2680 | else if (TREE_CODE (x) == USING_DECL && TREE_CODE (bval) == USING_DECL) | |
2681 | POP_TIMEVAR_AND_RETURN (TV_NAME_LOOKUP, true); | |
2682 | else if (TREE_CODE (x) == USING_DECL && is_overloaded_fn (bval)) | |
2683 | old_decl = bval; | |
2684 | else if (TREE_CODE (bval) == USING_DECL && is_overloaded_fn (x)) | |
2685 | POP_TIMEVAR_AND_RETURN (TV_NAME_LOOKUP, true); | |
89b578be | 2686 | |
90ea9897 | 2687 | if (old_decl && binding->scope == class_binding_level) |
00e8de68 | 2688 | { |
f31045fd MM |
2689 | binding->value = x; |
2690 | /* It is always safe to clear INHERITED_VALUE_BINDING_P | |
df05a794 MM |
2691 | here. This function is only used to register bindings |
2692 | from with the class definition itself. */ | |
f31045fd | 2693 | INHERITED_VALUE_BINDING_P (binding) = 0; |
f31045fd | 2694 | POP_TIMEVAR_AND_RETURN (TV_NAME_LOOKUP, true); |
00e8de68 GDR |
2695 | } |
2696 | } | |
2697 | ||
90ea9897 MM |
2698 | /* Note that we declared this value so that we can issue an error if |
2699 | this is an invalid redeclaration of a name already used for some | |
2700 | other purpose. */ | |
2701 | note_name_declared_in_class (name, decl); | |
2702 | ||
00e8de68 | 2703 | /* If we didn't replace an existing binding, put the binding on the |
90ea9897 MM |
2704 | stack of bindings for the identifier, and update the shadowed |
2705 | list. */ | |
2706 | if (binding && binding->scope == class_binding_level) | |
2707 | /* Supplement the existing binding. */ | |
2708 | ok = supplement_binding (binding, decl); | |
2709 | else | |
2710 | { | |
2711 | /* Create a new binding. */ | |
2712 | push_binding (name, decl, class_binding_level); | |
2713 | ok = true; | |
2714 | } | |
00e8de68 | 2715 | |
90ea9897 | 2716 | POP_TIMEVAR_AND_RETURN (TV_NAME_LOOKUP, ok); |
00e8de68 GDR |
2717 | } |
2718 | ||
1d786913 MM |
2719 | /* Process "using SCOPE::NAME" in a class scope. Return the |
2720 | USING_DECL created. */ | |
2721 | ||
5a167978 | 2722 | tree |
1d786913 | 2723 | do_class_using_decl (tree scope, tree name) |
5a167978 | 2724 | { |
98ed9dae NS |
2725 | tree value, decl, binfo; |
2726 | base_kind b_kind; | |
2727 | bool dependent_p; | |
c8094d83 | 2728 | |
1d786913 | 2729 | if (!scope || !TYPE_P (scope)) |
5a167978 GDR |
2730 | { |
2731 | error ("using-declaration for non-member at class scope"); | |
2732 | return NULL_TREE; | |
2733 | } | |
98ed9dae NS |
2734 | |
2735 | /* Make sure the scope is a base. */ | |
2736 | dependent_p = dependent_type_p (scope); | |
2737 | if (!dependent_p) | |
2738 | binfo = lookup_base (current_class_type, scope, ba_any, &b_kind); | |
2739 | else | |
2740 | { | |
2741 | binfo = NULL; | |
2742 | if (same_type_p (current_class_type, scope)) | |
2743 | b_kind = bk_same_type; | |
2744 | else | |
2745 | b_kind = bk_proper_base; | |
2746 | } | |
c8094d83 | 2747 | |
98ed9dae NS |
2748 | if (b_kind < bk_proper_base) |
2749 | { | |
2750 | error_not_base_type (scope, current_class_type); | |
2751 | return NULL_TREE; | |
2752 | } | |
c8094d83 | 2753 | |
98ed9dae | 2754 | /* Make sure the name is not invalid */ |
5a167978 GDR |
2755 | if (TREE_CODE (name) == BIT_NOT_EXPR) |
2756 | { | |
98ed9dae NS |
2757 | error ("%<%T::%D%> names destructor", scope, name); |
2758 | return NULL_TREE; | |
2759 | } | |
2760 | if (constructor_name_p (name, scope)) | |
2761 | { | |
2762 | error ("%<%T::%D%> names constructor", scope, name); | |
2763 | return NULL_TREE; | |
2764 | } | |
2765 | if (constructor_name_p (name, current_class_type)) | |
2766 | { | |
2767 | error ("%<%T::%D%> names constructor in %qT", | |
2768 | scope, name, current_class_type); | |
5a167978 GDR |
2769 | return NULL_TREE; |
2770 | } | |
5a167978 | 2771 | |
98ed9dae NS |
2772 | if (!dependent_p |
2773 | && IDENTIFIER_OPNAME_P (name) && dependent_type_p (TREE_TYPE (name))) | |
2774 | dependent_p = 1; | |
6097b0c3 | 2775 | |
98ed9dae NS |
2776 | /* See if there are any members of the base. */ |
2777 | if (!dependent_p) | |
6097b0c3 | 2778 | { |
98ed9dae | 2779 | decl = lookup_member (binfo, name, 0, false); |
c8094d83 | 2780 | |
98ed9dae NS |
2781 | if (!decl) |
2782 | { | |
2783 | error ("no members matching %<%T::%D%> in %q#T", scope, name, scope); | |
2784 | return NULL_TREE; | |
2785 | } | |
2786 | ||
2787 | if (BASELINK_P (decl)) | |
2788 | /* Ignore base type this came from. */ | |
2789 | decl = BASELINK_FUNCTIONS (decl); | |
2790 | } | |
2791 | else | |
2792 | decl = NULL_TREE; | |
2793 | ||
2794 | value = build_lang_decl (USING_DECL, name, NULL_TREE); | |
2795 | USING_DECL_DECLS (value) = decl; | |
2796 | USING_DECL_SCOPE (value) = scope; | |
2797 | DECL_DEPENDENT_P (value) = dependent_p; | |
6097b0c3 | 2798 | |
5a167978 GDR |
2799 | return value; |
2800 | } | |
2801 | ||
00e8de68 GDR |
2802 | \f |
2803 | /* Return the binding value for name in scope. */ | |
2804 | ||
2805 | tree | |
2806 | namespace_binding (tree name, tree scope) | |
2807 | { | |
2808 | cxx_binding *binding; | |
2809 | ||
2810 | if (scope == NULL) | |
2811 | scope = global_namespace; | |
8245c194 MA |
2812 | else |
2813 | /* Unnecessary for the global namespace because it can't be an alias. */ | |
2814 | scope = ORIGINAL_NAMESPACE (scope); | |
2815 | ||
00e8de68 GDR |
2816 | binding = cxx_scope_find_binding_for_name (NAMESPACE_LEVEL (scope), name); |
2817 | ||
2818 | return binding ? binding->value : NULL_TREE; | |
2819 | } | |
2820 | ||
2821 | /* Set the binding value for name in scope. */ | |
ed3cf953 GDR |
2822 | |
2823 | void | |
2824 | set_namespace_binding (tree name, tree scope, tree val) | |
2825 | { | |
2826 | cxx_binding *b; | |
2827 | ||
2828 | timevar_push (TV_NAME_LOOKUP); | |
2829 | if (scope == NULL_TREE) | |
2830 | scope = global_namespace; | |
2831 | b = binding_for_name (NAMESPACE_LEVEL (scope), name); | |
3c28fc74 | 2832 | if (!b->value || TREE_CODE (val) == OVERLOAD || val == error_mark_node) |
147135cc | 2833 | b->value = val; |
4b0d3cbe | 2834 | else |
c87ceb13 | 2835 | supplement_binding (b, val); |
ed3cf953 GDR |
2836 | timevar_pop (TV_NAME_LOOKUP); |
2837 | } | |
2838 | ||
5a167978 GDR |
2839 | /* Set the context of a declaration to scope. Complain if we are not |
2840 | outside scope. */ | |
2841 | ||
2842 | void | |
2843 | set_decl_namespace (tree decl, tree scope, bool friendp) | |
2844 | { | |
664a90c0 | 2845 | tree old, fn; |
c8094d83 | 2846 | |
5a167978 GDR |
2847 | /* Get rid of namespace aliases. */ |
2848 | scope = ORIGINAL_NAMESPACE (scope); | |
c8094d83 | 2849 | |
5a167978 GDR |
2850 | /* It is ok for friends to be qualified in parallel space. */ |
2851 | if (!friendp && !is_ancestor (current_namespace, scope)) | |
c4f73174 | 2852 | error ("declaration of %qD not in a namespace surrounding %qD", |
0cbd7506 | 2853 | decl, scope); |
5a167978 | 2854 | DECL_CONTEXT (decl) = FROB_CONTEXT (scope); |
5ae9ba3e | 2855 | |
c8094d83 MS |
2856 | /* Writing "int N::i" to declare a variable within "N" is invalid. */ |
2857 | if (scope == current_namespace) | |
5ae9ba3e MM |
2858 | { |
2859 | if (at_namespace_scope_p ()) | |
c85ce869 | 2860 | error ("explicit qualification in declaration of %qD", |
5ae9ba3e MM |
2861 | decl); |
2862 | return; | |
5a167978 | 2863 | } |
5ae9ba3e MM |
2864 | |
2865 | /* See whether this has been declared in the namespace. */ | |
664a90c0 | 2866 | old = lookup_qualified_name (scope, DECL_NAME (decl), false, true); |
5ae9ba3e MM |
2867 | if (!old) |
2868 | /* No old declaration at all. */ | |
2869 | goto complain; | |
5ae9ba3e MM |
2870 | if (!is_overloaded_fn (decl)) |
2871 | /* Don't compare non-function decls with decls_match here, since | |
2872 | it can't check for the correct constness at this | |
2873 | point. pushdecl will find those errors later. */ | |
2874 | return; | |
2875 | /* Since decl is a function, old should contain a function decl. */ | |
2876 | if (!is_overloaded_fn (old)) | |
2877 | goto complain; | |
664a90c0 | 2878 | fn = OVL_CURRENT (old); |
08d295c5 | 2879 | if (!is_associated_namespace (scope, CP_DECL_CONTEXT (fn))) |
664a90c0 JM |
2880 | goto complain; |
2881 | /* A template can be explicitly specialized in any namespace. */ | |
2882 | if (processing_explicit_instantiation) | |
2883 | return; | |
5ae9ba3e MM |
2884 | if (processing_template_decl || processing_specialization) |
2885 | /* We have not yet called push_template_decl to turn a | |
2886 | FUNCTION_DECL into a TEMPLATE_DECL, so the declarations won't | |
2887 | match. But, we'll check later, when we construct the | |
2888 | template. */ | |
5a167978 | 2889 | return; |
abc088aa MM |
2890 | /* Instantiations or specializations of templates may be declared as |
2891 | friends in any namespace. */ | |
2892 | if (friendp && DECL_USE_TEMPLATE (decl)) | |
2893 | return; | |
5ae9ba3e MM |
2894 | if (is_overloaded_fn (old)) |
2895 | { | |
2896 | for (; old; old = OVL_NEXT (old)) | |
2897 | if (decls_match (decl, OVL_CURRENT (old))) | |
2898 | return; | |
2899 | } | |
2900 | else if (decls_match (decl, old)) | |
2901 | return; | |
5a167978 | 2902 | complain: |
2a13a625 | 2903 | error ("%qD should have been declared inside %qD", decl, scope); |
c8094d83 | 2904 | } |
5a167978 GDR |
2905 | |
2906 | /* Return the namespace where the current declaration is declared. */ | |
2907 | ||
b8c1703b | 2908 | static tree |
5a167978 GDR |
2909 | current_decl_namespace (void) |
2910 | { | |
2911 | tree result; | |
2912 | /* If we have been pushed into a different namespace, use it. */ | |
2913 | if (decl_namespace_list) | |
2914 | return TREE_PURPOSE (decl_namespace_list); | |
2915 | ||
2916 | if (current_class_type) | |
b1cc95ce | 2917 | result = decl_namespace_context (current_class_type); |
5a167978 | 2918 | else if (current_function_decl) |
b1cc95ce | 2919 | result = decl_namespace_context (current_function_decl); |
c8094d83 | 2920 | else |
5a167978 GDR |
2921 | result = current_namespace; |
2922 | return result; | |
2923 | } | |
2924 | ||
00e8de68 GDR |
2925 | /* Push into the scope of the NAME namespace. If NAME is NULL_TREE, then we |
2926 | select a name that is unique to this compilation unit. */ | |
2927 | ||
2928 | void | |
2929 | push_namespace (tree name) | |
2930 | { | |
2931 | tree d = NULL_TREE; | |
2932 | int need_new = 1; | |
2933 | int implicit_use = 0; | |
ed36980c | 2934 | bool anon = !name; |
00e8de68 GDR |
2935 | |
2936 | timevar_push (TV_NAME_LOOKUP); | |
c8094d83 | 2937 | |
00e8de68 GDR |
2938 | /* We should not get here if the global_namespace is not yet constructed |
2939 | nor if NAME designates the global namespace: The global scope is | |
2940 | constructed elsewhere. */ | |
50bc768d | 2941 | gcc_assert (global_namespace != NULL && name != global_scope_name); |
00e8de68 | 2942 | |
ed36980c | 2943 | if (anon) |
00e8de68 GDR |
2944 | { |
2945 | /* The name of anonymous namespace is unique for the translation | |
0cbd7506 | 2946 | unit. */ |
00e8de68 | 2947 | if (!anonymous_namespace_name) |
0cbd7506 | 2948 | anonymous_namespace_name = get_file_function_name ('N'); |
00e8de68 GDR |
2949 | name = anonymous_namespace_name; |
2950 | d = IDENTIFIER_NAMESPACE_VALUE (name); | |
2951 | if (d) | |
0cbd7506 MS |
2952 | /* Reopening anonymous namespace. */ |
2953 | need_new = 0; | |
00e8de68 GDR |
2954 | implicit_use = 1; |
2955 | } | |
2956 | else | |
2957 | { | |
2958 | /* Check whether this is an extended namespace definition. */ | |
2959 | d = IDENTIFIER_NAMESPACE_VALUE (name); | |
2960 | if (d != NULL_TREE && TREE_CODE (d) == NAMESPACE_DECL) | |
0cbd7506 MS |
2961 | { |
2962 | need_new = 0; | |
2963 | if (DECL_NAMESPACE_ALIAS (d)) | |
2964 | { | |
2965 | error ("namespace alias %qD not allowed here, assuming %qD", | |
2966 | d, DECL_NAMESPACE_ALIAS (d)); | |
2967 | d = DECL_NAMESPACE_ALIAS (d); | |
2968 | } | |
2969 | } | |
00e8de68 GDR |
2970 | } |
2971 | ||
2972 | if (need_new) | |
2973 | { | |
2974 | /* Make a new namespace, binding the name to it. */ | |
2975 | d = build_lang_decl (NAMESPACE_DECL, name, void_type_node); | |
2976 | DECL_CONTEXT (d) = FROB_CONTEXT (current_namespace); | |
c0694c4b | 2977 | pushdecl (d); |
ed36980c JM |
2978 | if (anon) |
2979 | { | |
2980 | /* Clear DECL_NAME for the benefit of debugging back ends. */ | |
2981 | SET_DECL_ASSEMBLER_NAME (d, name); | |
2982 | DECL_NAME (d) = NULL_TREE; | |
2983 | } | |
00e8de68 GDR |
2984 | begin_scope (sk_namespace, d); |
2985 | } | |
2986 | else | |
2987 | resume_scope (NAMESPACE_LEVEL (d)); | |
2988 | ||
2989 | if (implicit_use) | |
2990 | do_using_directive (d); | |
2991 | /* Enter the name space. */ | |
2992 | current_namespace = d; | |
2993 | ||
2994 | timevar_pop (TV_NAME_LOOKUP); | |
2995 | } | |
2996 | ||
2997 | /* Pop from the scope of the current namespace. */ | |
2998 | ||
2999 | void | |
3000 | pop_namespace (void) | |
3001 | { | |
50bc768d | 3002 | gcc_assert (current_namespace != global_namespace); |
00e8de68 GDR |
3003 | current_namespace = CP_DECL_CONTEXT (current_namespace); |
3004 | /* The binding level is not popped, as it might be re-opened later. */ | |
3005 | leave_scope (); | |
3006 | } | |
3007 | ||
3008 | /* Push into the scope of the namespace NS, even if it is deeply | |
3009 | nested within another namespace. */ | |
3010 | ||
3011 | void | |
3012 | push_nested_namespace (tree ns) | |
3013 | { | |
3014 | if (ns == global_namespace) | |
3015 | push_to_top_level (); | |
3016 | else | |
3017 | { | |
3018 | push_nested_namespace (CP_DECL_CONTEXT (ns)); | |
3019 | push_namespace (DECL_NAME (ns)); | |
3020 | } | |
3021 | } | |
3022 | ||
3023 | /* Pop back from the scope of the namespace NS, which was previously | |
3024 | entered with push_nested_namespace. */ | |
3025 | ||
3026 | void | |
3027 | pop_nested_namespace (tree ns) | |
3028 | { | |
3029 | timevar_push (TV_NAME_LOOKUP); | |
3030 | while (ns != global_namespace) | |
3031 | { | |
3032 | pop_namespace (); | |
3033 | ns = CP_DECL_CONTEXT (ns); | |
3034 | } | |
3035 | ||
3036 | pop_from_top_level (); | |
3037 | timevar_pop (TV_NAME_LOOKUP); | |
3038 | } | |
3039 | ||
5a167978 GDR |
3040 | /* Temporarily set the namespace for the current declaration. */ |
3041 | ||
3042 | void | |
3043 | push_decl_namespace (tree decl) | |
3044 | { | |
3045 | if (TREE_CODE (decl) != NAMESPACE_DECL) | |
b1cc95ce | 3046 | decl = decl_namespace_context (decl); |
5a167978 | 3047 | decl_namespace_list = tree_cons (ORIGINAL_NAMESPACE (decl), |
0cbd7506 | 3048 | NULL_TREE, decl_namespace_list); |
5a167978 GDR |
3049 | } |
3050 | ||
3051 | /* [namespace.memdef]/2 */ | |
3052 | ||
3053 | void | |
3054 | pop_decl_namespace (void) | |
3055 | { | |
3056 | decl_namespace_list = TREE_CHAIN (decl_namespace_list); | |
3057 | } | |
3058 | ||
c8094d83 | 3059 | /* Return the namespace that is the common ancestor |
5a167978 GDR |
3060 | of two given namespaces. */ |
3061 | ||
a5e6b29b | 3062 | static tree |
5a167978 GDR |
3063 | namespace_ancestor (tree ns1, tree ns2) |
3064 | { | |
3065 | timevar_push (TV_NAME_LOOKUP); | |
3066 | if (is_ancestor (ns1, ns2)) | |
3067 | POP_TIMEVAR_AND_RETURN (TV_NAME_LOOKUP, ns1); | |
3068 | POP_TIMEVAR_AND_RETURN (TV_NAME_LOOKUP, | |
0cbd7506 | 3069 | namespace_ancestor (CP_DECL_CONTEXT (ns1), ns2)); |
5a167978 GDR |
3070 | } |
3071 | ||
3072 | /* Process a namespace-alias declaration. */ | |
3073 | ||
3074 | void | |
3075 | do_namespace_alias (tree alias, tree namespace) | |
3076 | { | |
166206ce VR |
3077 | if (namespace == error_mark_node) |
3078 | return; | |
3079 | ||
3080 | gcc_assert (TREE_CODE (namespace) == NAMESPACE_DECL); | |
5a167978 GDR |
3081 | |
3082 | namespace = ORIGINAL_NAMESPACE (namespace); | |
3083 | ||
3084 | /* Build the alias. */ | |
c8094d83 | 3085 | alias = build_lang_decl (NAMESPACE_DECL, alias, void_type_node); |
5a167978 GDR |
3086 | DECL_NAMESPACE_ALIAS (alias) = namespace; |
3087 | DECL_EXTERNAL (alias) = 1; | |
6ac1920d | 3088 | DECL_CONTEXT (alias) = FROB_CONTEXT (current_scope ()); |
5a167978 | 3089 | pushdecl (alias); |
6097b0c3 DP |
3090 | |
3091 | /* Emit debug info for namespace alias. */ | |
3092 | (*debug_hooks->global_decl) (alias); | |
5a167978 GDR |
3093 | } |
3094 | ||
00e8de68 GDR |
3095 | /* Like pushdecl, only it places X in the current namespace, |
3096 | if appropriate. */ | |
3097 | ||
3098 | tree | |
d63d5d0c | 3099 | pushdecl_namespace_level (tree x, bool is_friend) |
00e8de68 | 3100 | { |
926ce8bd KH |
3101 | struct cp_binding_level *b = current_binding_level; |
3102 | tree t; | |
00e8de68 GDR |
3103 | |
3104 | timevar_push (TV_NAME_LOOKUP); | |
d63d5d0c | 3105 | t = pushdecl_with_scope (x, NAMESPACE_LEVEL (current_namespace), is_friend); |
00e8de68 GDR |
3106 | |
3107 | /* Now, the type_shadowed stack may screw us. Munge it so it does | |
3108 | what we want. */ | |
6fc98adf | 3109 | if (TREE_CODE (t) == TYPE_DECL) |
00e8de68 | 3110 | { |
6fc98adf | 3111 | tree name = DECL_NAME (t); |
00e8de68 GDR |
3112 | tree newval; |
3113 | tree *ptr = (tree *)0; | |
3114 | for (; !global_scope_p (b); b = b->level_chain) | |
0cbd7506 MS |
3115 | { |
3116 | tree shadowed = b->type_shadowed; | |
3117 | for (; shadowed; shadowed = TREE_CHAIN (shadowed)) | |
3118 | if (TREE_PURPOSE (shadowed) == name) | |
3119 | { | |
00e8de68 GDR |
3120 | ptr = &TREE_VALUE (shadowed); |
3121 | /* Can't break out of the loop here because sometimes | |
3122 | a binding level will have duplicate bindings for | |
3123 | PT names. It's gross, but I haven't time to fix it. */ | |
0cbd7506 MS |
3124 | } |
3125 | } | |
6fc98adf | 3126 | newval = TREE_TYPE (t); |
00e8de68 | 3127 | if (ptr == (tree *)0) |
0cbd7506 MS |
3128 | { |
3129 | /* @@ This shouldn't be needed. My test case "zstring.cc" trips | |
3130 | up here if this is changed to an assertion. --KR */ | |
6fc98adf | 3131 | SET_IDENTIFIER_TYPE_VALUE (name, t); |
00e8de68 GDR |
3132 | } |
3133 | else | |
0cbd7506 | 3134 | { |
00e8de68 | 3135 | *ptr = newval; |
0cbd7506 | 3136 | } |
00e8de68 GDR |
3137 | } |
3138 | POP_TIMEVAR_AND_RETURN (TV_NAME_LOOKUP, t); | |
3139 | } | |
3140 | ||
5a167978 GDR |
3141 | /* Insert USED into the using list of USER. Set INDIRECT_flag if this |
3142 | directive is not directly from the source. Also find the common | |
3143 | ancestor and let our users know about the new namespace */ | |
c8094d83 | 3144 | static void |
5a167978 GDR |
3145 | add_using_namespace (tree user, tree used, bool indirect) |
3146 | { | |
3147 | tree t; | |
3148 | timevar_push (TV_NAME_LOOKUP); | |
3149 | /* Using oneself is a no-op. */ | |
3150 | if (user == used) | |
3151 | { | |
3152 | timevar_pop (TV_NAME_LOOKUP); | |
3153 | return; | |
3154 | } | |
50bc768d NS |
3155 | gcc_assert (TREE_CODE (user) == NAMESPACE_DECL); |
3156 | gcc_assert (TREE_CODE (used) == NAMESPACE_DECL); | |
5a167978 GDR |
3157 | /* Check if we already have this. */ |
3158 | t = purpose_member (used, DECL_NAMESPACE_USING (user)); | |
3159 | if (t != NULL_TREE) | |
3160 | { | |
3161 | if (!indirect) | |
3162 | /* Promote to direct usage. */ | |
3163 | TREE_INDIRECT_USING (t) = 0; | |
3164 | timevar_pop (TV_NAME_LOOKUP); | |
3165 | return; | |
3166 | } | |
3167 | ||
3168 | /* Add used to the user's using list. */ | |
c8094d83 MS |
3169 | DECL_NAMESPACE_USING (user) |
3170 | = tree_cons (used, namespace_ancestor (user, used), | |
5a167978 GDR |
3171 | DECL_NAMESPACE_USING (user)); |
3172 | ||
3173 | TREE_INDIRECT_USING (DECL_NAMESPACE_USING (user)) = indirect; | |
3174 | ||
3175 | /* Add user to the used's users list. */ | |
3176 | DECL_NAMESPACE_USERS (used) | |
3177 | = tree_cons (user, 0, DECL_NAMESPACE_USERS (used)); | |
3178 | ||
3179 | /* Recursively add all namespaces used. */ | |
3180 | for (t = DECL_NAMESPACE_USING (used); t; t = TREE_CHAIN (t)) | |
3181 | /* indirect usage */ | |
3182 | add_using_namespace (user, TREE_PURPOSE (t), 1); | |
3183 | ||
3184 | /* Tell everyone using us about the new used namespaces. */ | |
3185 | for (t = DECL_NAMESPACE_USERS (user); t; t = TREE_CHAIN (t)) | |
3186 | add_using_namespace (TREE_PURPOSE (t), used, 1); | |
3187 | timevar_pop (TV_NAME_LOOKUP); | |
3188 | } | |
3189 | ||
3190 | /* Process a using-declaration not appearing in class or local scope. */ | |
3191 | ||
3192 | void | |
ed5f054f | 3193 | do_toplevel_using_decl (tree decl, tree scope, tree name) |
5a167978 | 3194 | { |
5a167978 | 3195 | tree oldval, oldtype, newval, newtype; |
6097b0c3 | 3196 | tree orig_decl = decl; |
5a167978 GDR |
3197 | cxx_binding *binding; |
3198 | ||
ed5f054f | 3199 | decl = validate_nonmember_using_decl (decl, scope, name); |
5a167978 GDR |
3200 | if (decl == NULL_TREE) |
3201 | return; | |
c8094d83 | 3202 | |
5a167978 GDR |
3203 | binding = binding_for_name (NAMESPACE_LEVEL (current_namespace), name); |
3204 | ||
3205 | oldval = binding->value; | |
3206 | oldtype = binding->type; | |
3207 | ||
3208 | do_nonmember_using_decl (scope, name, oldval, oldtype, &newval, &newtype); | |
3209 | ||
6097b0c3 DP |
3210 | /* Emit debug info. */ |
3211 | if (!processing_template_decl) | |
3212 | cp_emit_debug_info_for_using (orig_decl, current_namespace); | |
3213 | ||
5a167978 GDR |
3214 | /* Copy declarations found. */ |
3215 | if (newval) | |
3216 | binding->value = newval; | |
3217 | if (newtype) | |
3218 | binding->type = newtype; | |
3219 | return; | |
3220 | } | |
3221 | ||
3222 | /* Process a using-directive. */ | |
3223 | ||
3224 | void | |
3225 | do_using_directive (tree namespace) | |
3226 | { | |
6097b0c3 DP |
3227 | tree context = NULL_TREE; |
3228 | ||
166206ce VR |
3229 | if (namespace == error_mark_node) |
3230 | return; | |
3231 | ||
3232 | gcc_assert (TREE_CODE (namespace) == NAMESPACE_DECL); | |
3233 | ||
5a167978 GDR |
3234 | if (building_stmt_tree ()) |
3235 | add_stmt (build_stmt (USING_STMT, namespace)); | |
5a167978 | 3236 | namespace = ORIGINAL_NAMESPACE (namespace); |
166206ce | 3237 | |
5a167978 | 3238 | if (!toplevel_bindings_p ()) |
6097b0c3 DP |
3239 | { |
3240 | push_using_directive (namespace); | |
3241 | context = current_scope (); | |
3242 | } | |
5a167978 | 3243 | else |
6097b0c3 DP |
3244 | { |
3245 | /* direct usage */ | |
3246 | add_using_namespace (current_namespace, namespace, 0); | |
3247 | if (current_namespace != global_namespace) | |
3248 | context = current_namespace; | |
3249 | } | |
c8094d83 | 3250 | |
6097b0c3 DP |
3251 | /* Emit debugging info. */ |
3252 | if (!processing_template_decl) | |
3253 | (*debug_hooks->imported_module_or_decl) (namespace, context); | |
5a167978 GDR |
3254 | } |
3255 | ||
86098eb8 JM |
3256 | /* Deal with a using-directive seen by the parser. Currently we only |
3257 | handle attributes here, since they cannot appear inside a template. */ | |
3258 | ||
3259 | void | |
3260 | parse_using_directive (tree namespace, tree attribs) | |
3261 | { | |
3262 | tree a; | |
3263 | ||
3264 | do_using_directive (namespace); | |
3265 | ||
3266 | for (a = attribs; a; a = TREE_CHAIN (a)) | |
3267 | { | |
3268 | tree name = TREE_PURPOSE (a); | |
3269 | if (is_attribute_p ("strong", name)) | |
3270 | { | |
3271 | if (!toplevel_bindings_p ()) | |
3272 | error ("strong using only meaningful at namespace scope"); | |
db3a9519 | 3273 | else if (namespace != error_mark_node) |
86098eb8 JM |
3274 | DECL_NAMESPACE_ASSOCIATIONS (namespace) |
3275 | = tree_cons (current_namespace, 0, | |
3276 | DECL_NAMESPACE_ASSOCIATIONS (namespace)); | |
3277 | } | |
3278 | else | |
5c498b10 | 3279 | warning (OPT_Wattributes, "%qD attribute directive ignored", name); |
86098eb8 JM |
3280 | } |
3281 | } | |
3282 | ||
a5e6b29b GDR |
3283 | /* Like pushdecl, only it places X in the global scope if appropriate. |
3284 | Calls cp_finish_decl to register the variable, initializing it with | |
3285 | *INIT, if INIT is non-NULL. */ | |
3286 | ||
3287 | static tree | |
d63d5d0c | 3288 | pushdecl_top_level_1 (tree x, tree *init, bool is_friend) |
a5e6b29b GDR |
3289 | { |
3290 | timevar_push (TV_NAME_LOOKUP); | |
3291 | push_to_top_level (); | |
d63d5d0c | 3292 | x = pushdecl_namespace_level (x, is_friend); |
a5e6b29b GDR |
3293 | if (init) |
3294 | cp_finish_decl (x, *init, NULL_TREE, 0); | |
3295 | pop_from_top_level (); | |
3296 | POP_TIMEVAR_AND_RETURN (TV_NAME_LOOKUP, x); | |
3297 | } | |
3298 | ||
3299 | /* Like pushdecl, only it places X in the global scope if appropriate. */ | |
3300 | ||
3301 | tree | |
3302 | pushdecl_top_level (tree x) | |
3303 | { | |
d63d5d0c ILT |
3304 | return pushdecl_top_level_1 (x, NULL, false); |
3305 | } | |
3306 | ||
3307 | /* Like pushdecl_top_level, but adding the IS_FRIEND parameter. */ | |
3308 | ||
3309 | tree | |
3310 | pushdecl_top_level_maybe_friend (tree x, bool is_friend) | |
3311 | { | |
3312 | return pushdecl_top_level_1 (x, NULL, is_friend); | |
a5e6b29b GDR |
3313 | } |
3314 | ||
3315 | /* Like pushdecl, only it places X in the global scope if | |
3316 | appropriate. Calls cp_finish_decl to register the variable, | |
3317 | initializing it with INIT. */ | |
3318 | ||
3319 | tree | |
3320 | pushdecl_top_level_and_finish (tree x, tree init) | |
3321 | { | |
d63d5d0c | 3322 | return pushdecl_top_level_1 (x, &init, false); |
a5e6b29b GDR |
3323 | } |
3324 | ||
5a167978 GDR |
3325 | /* Combines two sets of overloaded functions into an OVERLOAD chain, removing |
3326 | duplicates. The first list becomes the tail of the result. | |
3327 | ||
3328 | The algorithm is O(n^2). We could get this down to O(n log n) by | |
3329 | doing a sort on the addresses of the functions, if that becomes | |
3330 | necessary. */ | |
3331 | ||
3332 | static tree | |
3333 | merge_functions (tree s1, tree s2) | |
3334 | { | |
3335 | for (; s2; s2 = OVL_NEXT (s2)) | |
3336 | { | |
3337 | tree fn2 = OVL_CURRENT (s2); | |
3338 | tree fns1; | |
3339 | ||
3340 | for (fns1 = s1; fns1; fns1 = OVL_NEXT (fns1)) | |
3341 | { | |
3342 | tree fn1 = OVL_CURRENT (fns1); | |
3343 | ||
3344 | /* If the function from S2 is already in S1, there is no | |
3345 | need to add it again. For `extern "C"' functions, we | |
3346 | might have two FUNCTION_DECLs for the same function, in | |
3347 | different namespaces; again, we only need one of them. */ | |
c8094d83 | 3348 | if (fn1 == fn2 |
5a167978 GDR |
3349 | || (DECL_EXTERN_C_P (fn1) && DECL_EXTERN_C_P (fn2) |
3350 | && DECL_NAME (fn1) == DECL_NAME (fn2))) | |
3351 | break; | |
3352 | } | |
c8094d83 | 3353 | |
5a167978 GDR |
3354 | /* If we exhausted all of the functions in S1, FN2 is new. */ |
3355 | if (!fns1) | |
3356 | s1 = build_overload (fn2, s1); | |
3357 | } | |
3358 | return s1; | |
3359 | } | |
3360 | ||
3361 | /* This should return an error not all definitions define functions. | |
3362 | It is not an error if we find two functions with exactly the | |
3363 | same signature, only if these are selected in overload resolution. | |
3364 | old is the current set of bindings, new the freshly-found binding. | |
3365 | XXX Do we want to give *all* candidates in case of ambiguity? | |
3366 | XXX In what way should I treat extern declarations? | |
3367 | XXX I don't want to repeat the entire duplicate_decls here */ | |
3368 | ||
15f8ac7f GK |
3369 | static void |
3370 | ambiguous_decl (tree name, struct scope_binding *old, cxx_binding *new, | |
3371 | int flags) | |
5a167978 GDR |
3372 | { |
3373 | tree val, type; | |
50bc768d | 3374 | gcc_assert (old != NULL); |
5a167978 GDR |
3375 | /* Copy the value. */ |
3376 | val = new->value; | |
3377 | if (val) | |
3378 | switch (TREE_CODE (val)) | |
3379 | { | |
3380 | case TEMPLATE_DECL: | |
0cbd7506 MS |
3381 | /* If we expect types or namespaces, and not templates, |
3382 | or this is not a template class. */ | |
3383 | if ((LOOKUP_QUALIFIERS_ONLY (flags) | |
bd3d082e KL |
3384 | && !DECL_CLASS_TEMPLATE_P (val)) |
3385 | || hidden_name_p (val)) | |
0cbd7506 MS |
3386 | val = NULL_TREE; |
3387 | break; | |
5a167978 | 3388 | case TYPE_DECL: |
0cbd7506 MS |
3389 | if (LOOKUP_NAMESPACES_ONLY (flags) || hidden_name_p (val)) |
3390 | val = NULL_TREE; | |
3391 | break; | |
5a167978 | 3392 | case NAMESPACE_DECL: |
0cbd7506 MS |
3393 | if (LOOKUP_TYPES_ONLY (flags)) |
3394 | val = NULL_TREE; | |
3395 | break; | |
5a167978 | 3396 | case FUNCTION_DECL: |
0cbd7506 MS |
3397 | /* Ignore built-in functions that are still anticipated. */ |
3398 | if (LOOKUP_QUALIFIERS_ONLY (flags) || hidden_name_p (val)) | |
3399 | val = NULL_TREE; | |
3400 | break; | |
5a167978 | 3401 | default: |
0cbd7506 MS |
3402 | if (LOOKUP_QUALIFIERS_ONLY (flags)) |
3403 | val = NULL_TREE; | |
5a167978 | 3404 | } |
c8094d83 | 3405 | |
5a167978 GDR |
3406 | if (!old->value) |
3407 | old->value = val; | |
3408 | else if (val && val != old->value) | |
3409 | { | |
3410 | if (is_overloaded_fn (old->value) && is_overloaded_fn (val)) | |
0cbd7506 | 3411 | old->value = merge_functions (old->value, val); |
5a167978 GDR |
3412 | else |
3413 | { | |
91b1ca65 MM |
3414 | old->value = tree_cons (NULL_TREE, old->value, |
3415 | build_tree_list (NULL_TREE, new->value)); | |
3416 | TREE_TYPE (old->value) = error_mark_node; | |
5a167978 GDR |
3417 | } |
3418 | } | |
3419 | /* ... and copy the type. */ | |
3420 | type = new->type; | |
3421 | if (LOOKUP_NAMESPACES_ONLY (flags)) | |
3422 | type = NULL_TREE; | |
3423 | if (!old->type) | |
3424 | old->type = type; | |
3425 | else if (type && old->type != type) | |
3426 | { | |
3427 | if (flags & LOOKUP_COMPLAIN) | |
0cbd7506 MS |
3428 | { |
3429 | error ("%qD denotes an ambiguous type",name); | |
3430 | error ("%J first type here", TYPE_MAIN_DECL (old->type)); | |
3431 | error ("%J other type here", TYPE_MAIN_DECL (type)); | |
3432 | } | |
5a167978 | 3433 | } |
5a167978 GDR |
3434 | } |
3435 | ||
00e8de68 GDR |
3436 | /* Return the declarations that are members of the namespace NS. */ |
3437 | ||
3438 | tree | |
3439 | cp_namespace_decls (tree ns) | |
3440 | { | |
3441 | return NAMESPACE_LEVEL (ns)->names; | |
3442 | } | |
3443 | ||
3444 | /* Combine prefer_type and namespaces_only into flags. */ | |
3445 | ||
3446 | static int | |
3447 | lookup_flags (int prefer_type, int namespaces_only) | |
3448 | { | |
3449 | if (namespaces_only) | |
3450 | return LOOKUP_PREFER_NAMESPACES; | |
3451 | if (prefer_type > 1) | |
3452 | return LOOKUP_PREFER_TYPES; | |
3453 | if (prefer_type > 0) | |
3454 | return LOOKUP_PREFER_BOTH; | |
3455 | return 0; | |
3456 | } | |
3457 | ||
3458 | /* Given a lookup that returned VAL, use FLAGS to decide if we want to | |
bd3d082e KL |
3459 | ignore it or not. Subroutine of lookup_name_real and |
3460 | lookup_type_scope. */ | |
00e8de68 | 3461 | |
bd3d082e | 3462 | static bool |
00e8de68 GDR |
3463 | qualify_lookup (tree val, int flags) |
3464 | { | |
3465 | if (val == NULL_TREE) | |
bd3d082e | 3466 | return false; |
00e8de68 | 3467 | if ((flags & LOOKUP_PREFER_NAMESPACES) && TREE_CODE (val) == NAMESPACE_DECL) |
bd3d082e | 3468 | return true; |
00e8de68 GDR |
3469 | if ((flags & LOOKUP_PREFER_TYPES) |
3470 | && (TREE_CODE (val) == TYPE_DECL || TREE_CODE (val) == TEMPLATE_DECL)) | |
bd3d082e | 3471 | return true; |
00e8de68 | 3472 | if (flags & (LOOKUP_PREFER_NAMESPACES | LOOKUP_PREFER_TYPES)) |
bd3d082e KL |
3473 | return false; |
3474 | return true; | |
3475 | } | |
3476 | ||
c8094d83 | 3477 | /* Given a lookup that returned VAL, decide if we want to ignore it or |
d63d5d0c | 3478 | not based on DECL_ANTICIPATED. */ |
bd3d082e KL |
3479 | |
3480 | bool | |
3481 | hidden_name_p (tree val) | |
3482 | { | |
3483 | if (DECL_P (val) | |
3484 | && DECL_LANG_SPECIFIC (val) | |
3485 | && DECL_ANTICIPATED (val)) | |
3486 | return true; | |
3487 | return false; | |
00e8de68 GDR |
3488 | } |
3489 | ||
d63d5d0c ILT |
3490 | /* Remove any hidden friend functions from a possibly overloaded set |
3491 | of functions. */ | |
3492 | ||
3493 | tree | |
3494 | remove_hidden_names (tree fns) | |
3495 | { | |
3496 | if (!fns) | |
3497 | return fns; | |
3498 | ||
3499 | if (TREE_CODE (fns) == FUNCTION_DECL && hidden_name_p (fns)) | |
3500 | fns = NULL_TREE; | |
3501 | else if (TREE_CODE (fns) == OVERLOAD) | |
3502 | { | |
3503 | tree o; | |
3504 | ||
3505 | for (o = fns; o; o = OVL_NEXT (o)) | |
3506 | if (hidden_name_p (OVL_CURRENT (o))) | |
3507 | break; | |
3508 | if (o) | |
3509 | { | |
3510 | tree n = NULL_TREE; | |
3511 | ||
3512 | for (o = fns; o; o = OVL_NEXT (o)) | |
3513 | if (!hidden_name_p (OVL_CURRENT (o))) | |
3514 | n = build_overload (OVL_CURRENT (o), n); | |
3515 | fns = n; | |
3516 | } | |
3517 | } | |
3518 | ||
3519 | return fns; | |
3520 | } | |
3521 | ||
00e8de68 GDR |
3522 | /* Select the right _DECL from multiple choices. */ |
3523 | ||
3524 | static tree | |
15f8ac7f | 3525 | select_decl (const struct scope_binding *binding, int flags) |
00e8de68 GDR |
3526 | { |
3527 | tree val; | |
3528 | val = binding->value; | |
3529 | ||
3530 | timevar_push (TV_NAME_LOOKUP); | |
3531 | if (LOOKUP_NAMESPACES_ONLY (flags)) | |
3532 | { | |
3533 | /* We are not interested in types. */ | |
91b1ca65 MM |
3534 | if (val && (TREE_CODE (val) == NAMESPACE_DECL |
3535 | || TREE_CODE (val) == TREE_LIST)) | |
0cbd7506 | 3536 | POP_TIMEVAR_AND_RETURN (TV_NAME_LOOKUP, val); |
00e8de68 GDR |
3537 | POP_TIMEVAR_AND_RETURN (TV_NAME_LOOKUP, NULL_TREE); |
3538 | } | |
3539 | ||
3540 | /* If looking for a type, or if there is no non-type binding, select | |
3541 | the value binding. */ | |
3542 | if (binding->type && (!val || (flags & LOOKUP_PREFER_TYPES))) | |
3543 | val = binding->type; | |
3544 | /* Don't return non-types if we really prefer types. */ | |
c8094d83 | 3545 | else if (val && LOOKUP_TYPES_ONLY (flags) |
15f8ac7f | 3546 | && ! DECL_DECLARES_TYPE_P (val)) |
00e8de68 GDR |
3547 | val = NULL_TREE; |
3548 | ||
3549 | POP_TIMEVAR_AND_RETURN (TV_NAME_LOOKUP, val); | |
3550 | } | |
3551 | ||
3552 | /* Unscoped lookup of a global: iterate over current namespaces, | |
543ebd4a | 3553 | considering using-directives. */ |
00e8de68 | 3554 | |
a5e6b29b | 3555 | static tree |
543ebd4a | 3556 | unqualified_namespace_lookup (tree name, int flags) |
00e8de68 GDR |
3557 | { |
3558 | tree initial = current_decl_namespace (); | |
3559 | tree scope = initial; | |
3560 | tree siter; | |
3561 | struct cp_binding_level *level; | |
3562 | tree val = NULL_TREE; | |
15f8ac7f | 3563 | struct scope_binding binding = EMPTY_SCOPE_BINDING; |
00e8de68 GDR |
3564 | |
3565 | timevar_push (TV_NAME_LOOKUP); | |
00e8de68 GDR |
3566 | |
3567 | for (; !val; scope = CP_DECL_CONTEXT (scope)) | |
3568 | { | |
3569 | cxx_binding *b = | |
0cbd7506 | 3570 | cxx_scope_find_binding_for_name (NAMESPACE_LEVEL (scope), name); |
00e8de68 | 3571 | |
ba18e4db MM |
3572 | if (b) |
3573 | { | |
bd3d082e KL |
3574 | if (b->value && hidden_name_p (b->value)) |
3575 | /* Ignore anticipated built-in functions and friends. */ | |
ba18e4db MM |
3576 | ; |
3577 | else | |
3578 | binding.value = b->value; | |
3579 | binding.type = b->type; | |
3580 | } | |
00e8de68 GDR |
3581 | |
3582 | /* Add all _DECLs seen through local using-directives. */ | |
3583 | for (level = current_binding_level; | |
3584 | level->kind != sk_namespace; | |
3585 | level = level->level_chain) | |
3586 | if (!lookup_using_namespace (name, &binding, level->using_directives, | |
0cbd7506 | 3587 | scope, flags)) |
00e8de68 GDR |
3588 | /* Give up because of error. */ |
3589 | POP_TIMEVAR_AND_RETURN (TV_NAME_LOOKUP, error_mark_node); | |
3590 | ||
3591 | /* Add all _DECLs seen through global using-directives. */ | |
3592 | /* XXX local and global using lists should work equally. */ | |
3593 | siter = initial; | |
3594 | while (1) | |
3595 | { | |
3596 | if (!lookup_using_namespace (name, &binding, | |
0cbd7506 | 3597 | DECL_NAMESPACE_USING (siter), |
543ebd4a | 3598 | scope, flags)) |
00e8de68 GDR |
3599 | /* Give up because of error. */ |
3600 | POP_TIMEVAR_AND_RETURN (TV_NAME_LOOKUP, error_mark_node); | |
3601 | if (siter == scope) break; | |
3602 | siter = CP_DECL_CONTEXT (siter); | |
3603 | } | |
3604 | ||
3605 | val = select_decl (&binding, flags); | |
3606 | if (scope == global_namespace) | |
3607 | break; | |
3608 | } | |
3609 | POP_TIMEVAR_AND_RETURN (TV_NAME_LOOKUP, val); | |
3610 | } | |
3611 | ||
3612 | /* Look up NAME (an IDENTIFIER_NODE) in SCOPE (either a NAMESPACE_DECL | |
3613 | or a class TYPE). If IS_TYPE_P is TRUE, then ignore non-type | |
c8094d83 | 3614 | bindings. |
00e8de68 GDR |
3615 | |
3616 | Returns a DECL (or OVERLOAD, or BASELINK) representing the | |
3617 | declaration found. If no suitable declaration can be found, | |
8f78f01f | 3618 | ERROR_MARK_NODE is returned. If COMPLAIN is true and SCOPE is |
00e8de68 GDR |
3619 | neither a class-type nor a namespace a diagnostic is issued. */ |
3620 | ||
3621 | tree | |
3622 | lookup_qualified_name (tree scope, tree name, bool is_type_p, bool complain) | |
3623 | { | |
3624 | int flags = 0; | |
3625 | ||
3626 | if (TREE_CODE (scope) == NAMESPACE_DECL) | |
3627 | { | |
15f8ac7f | 3628 | struct scope_binding binding = EMPTY_SCOPE_BINDING; |
00e8de68 | 3629 | |
00e8de68 GDR |
3630 | flags |= LOOKUP_COMPLAIN; |
3631 | if (is_type_p) | |
3632 | flags |= LOOKUP_PREFER_TYPES; | |
543ebd4a | 3633 | if (qualified_lookup_using_namespace (name, scope, &binding, flags)) |
00e8de68 GDR |
3634 | return select_decl (&binding, flags); |
3635 | } | |
3636 | else if (is_aggr_type (scope, complain)) | |
3637 | { | |
3638 | tree t; | |
8f78f01f | 3639 | t = lookup_member (scope, name, 2, is_type_p); |
00e8de68 GDR |
3640 | if (t) |
3641 | return t; | |
3642 | } | |
3643 | ||
3644 | return error_mark_node; | |
3645 | } | |
3646 | ||
cd0be382 | 3647 | /* Subroutine of unqualified_namespace_lookup: |
5a167978 GDR |
3648 | Add the bindings of NAME in used namespaces to VAL. |
3649 | We are currently looking for names in namespace SCOPE, so we | |
3650 | look through USINGS for using-directives of namespaces | |
3651 | which have SCOPE as a common ancestor with the current scope. | |
3652 | Returns false on errors. */ | |
3653 | ||
a5e6b29b | 3654 | static bool |
15f8ac7f GK |
3655 | lookup_using_namespace (tree name, struct scope_binding *val, |
3656 | tree usings, tree scope, int flags) | |
5a167978 GDR |
3657 | { |
3658 | tree iter; | |
3659 | timevar_push (TV_NAME_LOOKUP); | |
3660 | /* Iterate over all used namespaces in current, searching for using | |
3661 | directives of scope. */ | |
3662 | for (iter = usings; iter; iter = TREE_CHAIN (iter)) | |
3663 | if (TREE_VALUE (iter) == scope) | |
3664 | { | |
0cbd7506 MS |
3665 | tree used = ORIGINAL_NAMESPACE (TREE_PURPOSE (iter)); |
3666 | cxx_binding *val1 = | |
3667 | cxx_scope_find_binding_for_name (NAMESPACE_LEVEL (used), name); | |
3668 | /* Resolve ambiguities. */ | |
3669 | if (val1) | |
3670 | ambiguous_decl (name, val, val1, flags); | |
5a167978 GDR |
3671 | } |
3672 | POP_TIMEVAR_AND_RETURN (TV_NAME_LOOKUP, val->value != error_mark_node); | |
3673 | } | |
3674 | ||
3675 | /* [namespace.qual] | |
3676 | Accepts the NAME to lookup and its qualifying SCOPE. | |
3677 | Returns the name/type pair found into the cxx_binding *RESULT, | |
3678 | or false on error. */ | |
3679 | ||
a5e6b29b | 3680 | static bool |
15f8ac7f GK |
3681 | qualified_lookup_using_namespace (tree name, tree scope, |
3682 | struct scope_binding *result, int flags) | |
5a167978 GDR |
3683 | { |
3684 | /* Maintain a list of namespaces visited... */ | |
3685 | tree seen = NULL_TREE; | |
3686 | /* ... and a list of namespace yet to see. */ | |
3687 | tree todo = NULL_TREE; | |
dc55c941 | 3688 | tree todo_maybe = NULL_TREE; |
5a167978 GDR |
3689 | tree usings; |
3690 | timevar_push (TV_NAME_LOOKUP); | |
3691 | /* Look through namespace aliases. */ | |
3692 | scope = ORIGINAL_NAMESPACE (scope); | |
3693 | while (scope && result->value != error_mark_node) | |
3694 | { | |
3695 | cxx_binding *binding = | |
dc55c941 | 3696 | cxx_scope_find_binding_for_name (NAMESPACE_LEVEL (scope), name); |
5a167978 GDR |
3697 | seen = tree_cons (scope, NULL_TREE, seen); |
3698 | if (binding) | |
0cbd7506 | 3699 | ambiguous_decl (name, result, binding, flags); |
c404ab02 AO |
3700 | |
3701 | /* Consider strong using directives always, and non-strong ones | |
3702 | if we haven't found a binding yet. ??? Shouldn't we consider | |
3703 | non-strong ones if the initial RESULT is non-NULL, but the | |
3704 | binding in the given namespace is? */ | |
3705 | for (usings = DECL_NAMESPACE_USING (scope); usings; | |
3706 | usings = TREE_CHAIN (usings)) | |
3707 | /* If this was a real directive, and we have not seen it. */ | |
dc55c941 AO |
3708 | if (!TREE_INDIRECT_USING (usings)) |
3709 | { | |
3710 | /* Try to avoid queuing the same namespace more than once, | |
3711 | the exception being when a namespace was already | |
3712 | enqueued for todo_maybe and then a strong using is | |
3713 | found for it. We could try to remove it from | |
3714 | todo_maybe, but it's probably not worth the effort. */ | |
3715 | if (is_associated_namespace (scope, TREE_PURPOSE (usings)) | |
3716 | && !purpose_member (TREE_PURPOSE (usings), seen) | |
3717 | && !purpose_member (TREE_PURPOSE (usings), todo)) | |
3718 | todo = tree_cons (TREE_PURPOSE (usings), NULL_TREE, todo); | |
3719 | else if ((!result->value && !result->type) | |
3720 | && !purpose_member (TREE_PURPOSE (usings), seen) | |
3721 | && !purpose_member (TREE_PURPOSE (usings), todo) | |
3722 | && !purpose_member (TREE_PURPOSE (usings), todo_maybe)) | |
3723 | todo_maybe = tree_cons (TREE_PURPOSE (usings), NULL_TREE, | |
3724 | todo_maybe); | |
3725 | } | |
5a167978 GDR |
3726 | if (todo) |
3727 | { | |
3728 | scope = TREE_PURPOSE (todo); | |
3729 | todo = TREE_CHAIN (todo); | |
3730 | } | |
dc55c941 AO |
3731 | else if (todo_maybe |
3732 | && (!result->value && !result->type)) | |
3733 | { | |
3734 | scope = TREE_PURPOSE (todo_maybe); | |
3735 | todo = TREE_CHAIN (todo_maybe); | |
3736 | todo_maybe = NULL_TREE; | |
3737 | } | |
5a167978 GDR |
3738 | else |
3739 | scope = NULL_TREE; /* If there never was a todo list. */ | |
3740 | } | |
3741 | POP_TIMEVAR_AND_RETURN (TV_NAME_LOOKUP, result->value != error_mark_node); | |
3742 | } | |
3743 | ||
90ea9897 MM |
3744 | /* Return the innermost non-namespace binding for NAME from a scope |
3745 | containing BINDING, or, if BINDING is NULL, the current scope. If | |
3746 | CLASS_P is false, then class bindings are ignored. */ | |
3747 | ||
3748 | cxx_binding * | |
c8094d83 | 3749 | outer_binding (tree name, |
90ea9897 MM |
3750 | cxx_binding *binding, |
3751 | bool class_p) | |
3752 | { | |
3753 | cxx_binding *outer; | |
3754 | cxx_scope *scope; | |
3755 | cxx_scope *outer_scope; | |
3756 | ||
3757 | if (binding) | |
3758 | { | |
3759 | scope = binding->scope->level_chain; | |
3760 | outer = binding->previous; | |
3761 | } | |
3762 | else | |
3763 | { | |
3764 | scope = current_binding_level; | |
3765 | outer = IDENTIFIER_BINDING (name); | |
3766 | } | |
3767 | outer_scope = outer ? outer->scope : NULL; | |
3768 | ||
3769 | /* Because we create class bindings lazily, we might be missing a | |
3770 | class binding for NAME. If there are any class binding levels | |
3771 | between the LAST_BINDING_LEVEL and the scope in which OUTER was | |
3772 | declared, we must lookup NAME in those class scopes. */ | |
3773 | if (class_p) | |
3774 | while (scope && scope != outer_scope && scope->kind != sk_namespace) | |
3775 | { | |
c8094d83 | 3776 | if (scope->kind == sk_class) |
90ea9897 MM |
3777 | { |
3778 | cxx_binding *class_binding; | |
c8094d83 | 3779 | |
90ea9897 MM |
3780 | class_binding = get_class_binding (name, scope); |
3781 | if (class_binding) | |
3782 | { | |
3783 | /* Thread this new class-scope binding onto the | |
3784 | IDENTIFIER_BINDING list so that future lookups | |
3785 | find it quickly. */ | |
3786 | class_binding->previous = outer; | |
3787 | if (binding) | |
3788 | binding->previous = class_binding; | |
3789 | else | |
3790 | IDENTIFIER_BINDING (name) = class_binding; | |
3791 | return class_binding; | |
3792 | } | |
3793 | } | |
3794 | scope = scope->level_chain; | |
3795 | } | |
3796 | ||
3797 | return outer; | |
3798 | } | |
3799 | ||
3800 | /* Return the innermost block-scope or class-scope value binding for | |
3801 | NAME, or NULL_TREE if there is no such binding. */ | |
3802 | ||
3803 | tree | |
3804 | innermost_non_namespace_value (tree name) | |
3805 | { | |
3806 | cxx_binding *binding; | |
3807 | binding = outer_binding (name, /*binding=*/NULL, /*class_p=*/true); | |
3808 | return binding ? binding->value : NULL_TREE; | |
3809 | } | |
3810 | ||
00e8de68 GDR |
3811 | /* Look up NAME in the current binding level and its superiors in the |
3812 | namespace of variables, functions and typedefs. Return a ..._DECL | |
3813 | node of some kind representing its definition if there is only one | |
3814 | such declaration, or return a TREE_LIST with all the overloaded | |
3815 | definitions if there are many, or return 0 if it is undefined. | |
bd3d082e KL |
3816 | Hidden name, either friend declaration or built-in function, are |
3817 | not ignored. | |
00e8de68 GDR |
3818 | |
3819 | If PREFER_TYPE is > 0, we prefer TYPE_DECLs or namespaces. | |
3820 | If PREFER_TYPE is > 1, we reject non-type decls (e.g. namespaces). | |
3821 | Otherwise we prefer non-TYPE_DECLs. | |
3822 | ||
39fb05d0 MM |
3823 | If NONCLASS is nonzero, bindings in class scopes are ignored. If |
3824 | BLOCK_P is false, bindings in block scopes are ignored. */ | |
00e8de68 GDR |
3825 | |
3826 | tree | |
12cf89fa | 3827 | lookup_name_real (tree name, int prefer_type, int nonclass, bool block_p, |
00e8de68 GDR |
3828 | int namespaces_only, int flags) |
3829 | { | |
3830 | cxx_binding *iter; | |
3831 | tree val = NULL_TREE; | |
3832 | ||
3833 | timevar_push (TV_NAME_LOOKUP); | |
3834 | /* Conversion operators are handled specially because ordinary | |
3835 | unqualified name lookup will not find template conversion | |
3836 | operators. */ | |
c8094d83 | 3837 | if (IDENTIFIER_TYPENAME_P (name)) |
00e8de68 GDR |
3838 | { |
3839 | struct cp_binding_level *level; | |
3840 | ||
c8094d83 | 3841 | for (level = current_binding_level; |
00e8de68 GDR |
3842 | level && level->kind != sk_namespace; |
3843 | level = level->level_chain) | |
3844 | { | |
3845 | tree class_type; | |
3846 | tree operators; | |
c8094d83 MS |
3847 | |
3848 | /* A conversion operator can only be declared in a class | |
00e8de68 GDR |
3849 | scope. */ |
3850 | if (level->kind != sk_class) | |
3851 | continue; | |
c8094d83 | 3852 | |
00e8de68 GDR |
3853 | /* Lookup the conversion operator in the class. */ |
3854 | class_type = level->this_entity; | |
3855 | operators = lookup_fnfields (class_type, name, /*protect=*/0); | |
3856 | if (operators) | |
3857 | POP_TIMEVAR_AND_RETURN (TV_NAME_LOOKUP, operators); | |
3858 | } | |
3859 | ||
3860 | POP_TIMEVAR_AND_RETURN (TV_NAME_LOOKUP, NULL_TREE); | |
3861 | } | |
3862 | ||
3863 | flags |= lookup_flags (prefer_type, namespaces_only); | |
3864 | ||
3865 | /* First, look in non-namespace scopes. */ | |
3866 | ||
3867 | if (current_class_type == NULL_TREE) | |
3868 | nonclass = 1; | |
3869 | ||
12cf89fa | 3870 | if (block_p || !nonclass) |
90ea9897 MM |
3871 | for (iter = outer_binding (name, NULL, !nonclass); |
3872 | iter; | |
3873 | iter = outer_binding (name, iter, !nonclass)) | |
12cf89fa MM |
3874 | { |
3875 | tree binding; | |
c8094d83 | 3876 | |
12cf89fa MM |
3877 | /* Skip entities we don't want. */ |
3878 | if (LOCAL_BINDING_P (iter) ? !block_p : nonclass) | |
3879 | continue; | |
c8094d83 | 3880 | |
12cf89fa | 3881 | /* If this is the kind of thing we're looking for, we're done. */ |
bd3d082e KL |
3882 | if (qualify_lookup (iter->value, flags) |
3883 | && !hidden_name_p (iter->value)) | |
12cf89fa MM |
3884 | binding = iter->value; |
3885 | else if ((flags & LOOKUP_PREFER_TYPES) | |
bd3d082e KL |
3886 | && qualify_lookup (iter->type, flags) |
3887 | && !hidden_name_p (iter->type)) | |
12cf89fa MM |
3888 | binding = iter->type; |
3889 | else | |
3890 | binding = NULL_TREE; | |
c8094d83 | 3891 | |
12cf89fa MM |
3892 | if (binding) |
3893 | { | |
3894 | val = binding; | |
3895 | break; | |
3896 | } | |
3897 | } | |
00e8de68 GDR |
3898 | |
3899 | /* Now lookup in namespace scopes. */ | |
3900 | if (!val) | |
29ef83de | 3901 | val = unqualified_namespace_lookup (name, flags); |
00e8de68 | 3902 | |
0c8ce11b VR |
3903 | /* If we have a single function from a using decl, pull it out. */ |
3904 | if (val && TREE_CODE (val) == OVERLOAD && !really_overloaded_fn (val)) | |
3905 | val = OVL_FUNCTION (val); | |
00e8de68 GDR |
3906 | |
3907 | POP_TIMEVAR_AND_RETURN (TV_NAME_LOOKUP, val); | |
3908 | } | |
3909 | ||
3910 | tree | |
3911 | lookup_name_nonclass (tree name) | |
3912 | { | |
12cf89fa | 3913 | return lookup_name_real (name, 0, 1, /*block_p=*/true, 0, LOOKUP_COMPLAIN); |
00e8de68 GDR |
3914 | } |
3915 | ||
3916 | tree | |
12cf89fa | 3917 | lookup_function_nonclass (tree name, tree args, bool block_p) |
00e8de68 | 3918 | { |
c8094d83 MS |
3919 | return |
3920 | lookup_arg_dependent (name, | |
3921 | lookup_name_real (name, 0, 1, block_p, 0, | |
12cf89fa MM |
3922 | LOOKUP_COMPLAIN), |
3923 | args); | |
00e8de68 GDR |
3924 | } |
3925 | ||
3926 | tree | |
10e6657a | 3927 | lookup_name (tree name) |
00e8de68 | 3928 | { |
10e6657a | 3929 | return lookup_name_real (name, 0, 0, /*block_p=*/true, 0, LOOKUP_COMPLAIN); |
00e8de68 GDR |
3930 | } |
3931 | ||
98803730 | 3932 | tree |
10e6657a | 3933 | lookup_name_prefer_type (tree name, int prefer_type) |
98803730 | 3934 | { |
10e6657a RH |
3935 | return lookup_name_real (name, prefer_type, 0, /*block_p=*/true, |
3936 | 0, LOOKUP_COMPLAIN); | |
98803730 MS |
3937 | } |
3938 | ||
461c6fce | 3939 | /* Look up NAME for type used in elaborated name specifier in |
29ef83de | 3940 | the scopes given by SCOPE. SCOPE can be either TS_CURRENT or |
87c465f5 KL |
3941 | TS_WITHIN_ENCLOSING_NON_CLASS. Although not implied by the |
3942 | name, more scopes are checked if cleanup or template parameter | |
3943 | scope is encountered. | |
29ef83de KL |
3944 | |
3945 | Unlike lookup_name_real, we make sure that NAME is actually | |
87c465f5 KL |
3946 | declared in the desired scope, not from inheritance, nor using |
3947 | directive. For using declaration, there is DR138 still waiting | |
13a44ee0 | 3948 | to be resolved. Hidden name coming from an earlier friend |
bd3d082e | 3949 | declaration is also returned. |
87c465f5 KL |
3950 | |
3951 | A TYPE_DECL best matching the NAME is returned. Catching error | |
3952 | and issuing diagnostics are caller's responsibility. */ | |
461c6fce KL |
3953 | |
3954 | tree | |
29ef83de | 3955 | lookup_type_scope (tree name, tag_scope scope) |
461c6fce KL |
3956 | { |
3957 | cxx_binding *iter = NULL; | |
3958 | tree val = NULL_TREE; | |
3959 | ||
3960 | timevar_push (TV_NAME_LOOKUP); | |
3961 | ||
3962 | /* Look in non-namespace scope first. */ | |
3963 | if (current_binding_level->kind != sk_namespace) | |
3964 | iter = outer_binding (name, NULL, /*class_p=*/ true); | |
3965 | for (; iter; iter = outer_binding (name, iter, /*class_p=*/ true)) | |
3966 | { | |
3967 | /* Check if this is the kind of thing we're looking for. | |
c8094d83 | 3968 | If SCOPE is TS_CURRENT, also make sure it doesn't come from |
29ef83de | 3969 | base class. For ITER->VALUE, we can simply use |
c8094d83 | 3970 | INHERITED_VALUE_BINDING_P. For ITER->TYPE, we have to use |
29ef83de | 3971 | our own check. |
461c6fce KL |
3972 | |
3973 | We check ITER->TYPE before ITER->VALUE in order to handle | |
3974 | typedef struct C {} C; | |
3975 | correctly. */ | |
3976 | ||
3977 | if (qualify_lookup (iter->type, LOOKUP_PREFER_TYPES) | |
29ef83de KL |
3978 | && (scope != ts_current |
3979 | || LOCAL_BINDING_P (iter) | |
461c6fce KL |
3980 | || DECL_CONTEXT (iter->type) == iter->scope->this_entity)) |
3981 | val = iter->type; | |
29ef83de KL |
3982 | else if ((scope != ts_current |
3983 | || !INHERITED_VALUE_BINDING_P (iter)) | |
461c6fce KL |
3984 | && qualify_lookup (iter->value, LOOKUP_PREFER_TYPES)) |
3985 | val = iter->value; | |
3986 | ||
3987 | if (val) | |
3988 | break; | |
3989 | } | |
3990 | ||
3991 | /* Look in namespace scope. */ | |
3992 | if (!val) | |
3993 | { | |
3994 | iter = cxx_scope_find_binding_for_name | |
3995 | (NAMESPACE_LEVEL (current_decl_namespace ()), name); | |
3996 | ||
3997 | if (iter) | |
3998 | { | |
bd3d082e | 3999 | /* If this is the kind of thing we're looking for, we're done. */ |
87c465f5 | 4000 | if (qualify_lookup (iter->type, LOOKUP_PREFER_TYPES)) |
461c6fce | 4001 | val = iter->type; |
87c465f5 | 4002 | else if (qualify_lookup (iter->value, LOOKUP_PREFER_TYPES)) |
461c6fce KL |
4003 | val = iter->value; |
4004 | } | |
c8094d83 | 4005 | |
461c6fce KL |
4006 | } |
4007 | ||
29ef83de | 4008 | /* Type found, check if it is in the allowed scopes, ignoring cleanup |
461c6fce KL |
4009 | and template parameter scopes. */ |
4010 | if (val) | |
4011 | { | |
4012 | struct cp_binding_level *b = current_binding_level; | |
4013 | while (b) | |
4014 | { | |
4015 | if (iter->scope == b) | |
4016 | POP_TIMEVAR_AND_RETURN (TV_NAME_LOOKUP, val); | |
4017 | ||
4018 | if (b->kind == sk_cleanup || b->kind == sk_template_parms) | |
4019 | b = b->level_chain; | |
29ef83de KL |
4020 | else if (b->kind == sk_class |
4021 | && scope == ts_within_enclosing_non_class) | |
4022 | b = b->level_chain; | |
461c6fce KL |
4023 | else |
4024 | break; | |
4025 | } | |
4026 | } | |
4027 | ||
4028 | POP_TIMEVAR_AND_RETURN (TV_NAME_LOOKUP, NULL_TREE); | |
4029 | } | |
4030 | ||
00e8de68 GDR |
4031 | /* Similar to `lookup_name' but look only in the innermost non-class |
4032 | binding level. */ | |
4033 | ||
a5e6b29b | 4034 | static tree |
461c6fce | 4035 | lookup_name_innermost_nonclass_level (tree name) |
00e8de68 GDR |
4036 | { |
4037 | struct cp_binding_level *b; | |
4038 | tree t = NULL_TREE; | |
4039 | ||
4040 | timevar_push (TV_NAME_LOOKUP); | |
4041 | b = innermost_nonclass_level (); | |
4042 | ||
4043 | if (b->kind == sk_namespace) | |
4044 | { | |
4045 | t = IDENTIFIER_NAMESPACE_VALUE (name); | |
4046 | ||
4047 | /* extern "C" function() */ | |
4048 | if (t != NULL_TREE && TREE_CODE (t) == TREE_LIST) | |
4049 | t = TREE_VALUE (t); | |
4050 | } | |
4051 | else if (IDENTIFIER_BINDING (name) | |
4052 | && LOCAL_BINDING_P (IDENTIFIER_BINDING (name))) | |
4053 | { | |
90ea9897 MM |
4054 | cxx_binding *binding; |
4055 | binding = IDENTIFIER_BINDING (name); | |
00e8de68 GDR |
4056 | while (1) |
4057 | { | |
90ea9897 MM |
4058 | if (binding->scope == b |
4059 | && !(TREE_CODE (binding->value) == VAR_DECL | |
4060 | && DECL_DEAD_FOR_LOCAL (binding->value))) | |
4061 | POP_TIMEVAR_AND_RETURN (TV_NAME_LOOKUP, binding->value); | |
00e8de68 GDR |
4062 | |
4063 | if (b->kind == sk_cleanup) | |
4064 | b = b->level_chain; | |
4065 | else | |
4066 | break; | |
4067 | } | |
4068 | } | |
4069 | ||
4070 | POP_TIMEVAR_AND_RETURN (TV_NAME_LOOKUP, t); | |
4071 | } | |
4072 | ||
461c6fce | 4073 | /* Like lookup_name_innermost_nonclass_level, but for types. */ |
00e8de68 | 4074 | |
a5e6b29b | 4075 | static tree |
00e8de68 GDR |
4076 | lookup_type_current_level (tree name) |
4077 | { | |
926ce8bd | 4078 | tree t = NULL_TREE; |
00e8de68 GDR |
4079 | |
4080 | timevar_push (TV_NAME_LOOKUP); | |
50bc768d | 4081 | gcc_assert (current_binding_level->kind != sk_namespace); |
00e8de68 GDR |
4082 | |
4083 | if (REAL_IDENTIFIER_TYPE_VALUE (name) != NULL_TREE | |
4084 | && REAL_IDENTIFIER_TYPE_VALUE (name) != global_type_node) | |
4085 | { | |
4086 | struct cp_binding_level *b = current_binding_level; | |
4087 | while (1) | |
4088 | { | |
4089 | if (purpose_member (name, b->type_shadowed)) | |
4090 | POP_TIMEVAR_AND_RETURN (TV_NAME_LOOKUP, | |
0cbd7506 | 4091 | REAL_IDENTIFIER_TYPE_VALUE (name)); |
00e8de68 GDR |
4092 | if (b->kind == sk_cleanup) |
4093 | b = b->level_chain; | |
4094 | else | |
4095 | break; | |
4096 | } | |
4097 | } | |
4098 | ||
4099 | POP_TIMEVAR_AND_RETURN (TV_NAME_LOOKUP, t); | |
4100 | } | |
4101 | ||
5a167978 GDR |
4102 | /* [basic.lookup.koenig] */ |
4103 | /* A nonzero return value in the functions below indicates an error. */ | |
4104 | ||
4105 | struct arg_lookup | |
4106 | { | |
4107 | tree name; | |
d63d5d0c | 4108 | tree args; |
5a167978 GDR |
4109 | tree namespaces; |
4110 | tree classes; | |
4111 | tree functions; | |
4112 | }; | |
4113 | ||
4114 | static bool arg_assoc (struct arg_lookup*, tree); | |
4115 | static bool arg_assoc_args (struct arg_lookup*, tree); | |
4116 | static bool arg_assoc_type (struct arg_lookup*, tree); | |
4117 | static bool add_function (struct arg_lookup *, tree); | |
4118 | static bool arg_assoc_namespace (struct arg_lookup *, tree); | |
4119 | static bool arg_assoc_class (struct arg_lookup *, tree); | |
4120 | static bool arg_assoc_template_arg (struct arg_lookup*, tree); | |
4121 | ||
4122 | /* Add a function to the lookup structure. | |
4123 | Returns true on error. */ | |
4124 | ||
4125 | static bool | |
4126 | add_function (struct arg_lookup *k, tree fn) | |
4127 | { | |
4128 | /* We used to check here to see if the function was already in the list, | |
4129 | but that's O(n^2), which is just too expensive for function lookup. | |
4130 | Now we deal with the occasional duplicate in joust. In doing this, we | |
4131 | assume that the number of duplicates will be small compared to the | |
4132 | total number of functions being compared, which should usually be the | |
4133 | case. */ | |
4134 | ||
4135 | /* We must find only functions, or exactly one non-function. */ | |
c8094d83 | 4136 | if (!k->functions) |
5a167978 GDR |
4137 | k->functions = fn; |
4138 | else if (fn == k->functions) | |
4139 | ; | |
4140 | else if (is_overloaded_fn (k->functions) && is_overloaded_fn (fn)) | |
4141 | k->functions = build_overload (fn, k->functions); | |
4142 | else | |
4143 | { | |
4144 | tree f1 = OVL_CURRENT (k->functions); | |
4145 | tree f2 = fn; | |
4146 | if (is_overloaded_fn (f1)) | |
4147 | { | |
4148 | fn = f1; f1 = f2; f2 = fn; | |
4149 | } | |
dee15844 JM |
4150 | error ("%q+D is not a function,", f1); |
4151 | error (" conflict with %q+D", f2); | |
2a13a625 | 4152 | error (" in call to %qD", k->name); |
5a167978 GDR |
4153 | return true; |
4154 | } | |
4155 | ||
4156 | return false; | |
4157 | } | |
4158 | ||
86098eb8 JM |
4159 | /* Returns true iff CURRENT has declared itself to be an associated |
4160 | namespace of SCOPE via a strong using-directive (or transitive chain | |
4161 | thereof). Both are namespaces. */ | |
4162 | ||
4163 | bool | |
4164 | is_associated_namespace (tree current, tree scope) | |
4165 | { | |
4166 | tree seen = NULL_TREE; | |
4167 | tree todo = NULL_TREE; | |
4168 | tree t; | |
4169 | while (1) | |
4170 | { | |
4171 | if (scope == current) | |
4172 | return true; | |
4173 | seen = tree_cons (scope, NULL_TREE, seen); | |
4174 | for (t = DECL_NAMESPACE_ASSOCIATIONS (scope); t; t = TREE_CHAIN (t)) | |
4175 | if (!purpose_member (TREE_PURPOSE (t), seen)) | |
4176 | todo = tree_cons (TREE_PURPOSE (t), NULL_TREE, todo); | |
4177 | if (todo) | |
4178 | { | |
4179 | scope = TREE_PURPOSE (todo); | |
4180 | todo = TREE_CHAIN (todo); | |
4181 | } | |
4182 | else | |
4183 | return false; | |
4184 | } | |
4185 | } | |
4186 | ||
d63d5d0c ILT |
4187 | /* Return whether FN is a friend of an associated class of ARG. */ |
4188 | ||
4189 | static bool | |
4190 | friend_of_associated_class_p (tree arg, tree fn) | |
4191 | { | |
4192 | tree type; | |
4193 | ||
4194 | if (TYPE_P (arg)) | |
4195 | type = arg; | |
4196 | else if (type_unknown_p (arg)) | |
4197 | return false; | |
4198 | else | |
4199 | type = TREE_TYPE (arg); | |
4200 | ||
4201 | /* If TYPE is a class, the class itself and all base classes are | |
4202 | associated classes. */ | |
4203 | if (CLASS_TYPE_P (type)) | |
4204 | { | |
4205 | if (is_friend (type, fn)) | |
4206 | return true; | |
4207 | ||
4208 | if (TYPE_BINFO (type)) | |
4209 | { | |
4210 | tree binfo, base_binfo; | |
4211 | int i; | |
4212 | ||
4213 | for (binfo = TYPE_BINFO (type), i = 0; | |
4214 | BINFO_BASE_ITERATE (binfo, i, base_binfo); | |
4215 | i++) | |
4216 | if (is_friend (BINFO_TYPE (base_binfo), fn)) | |
4217 | return true; | |
4218 | } | |
4219 | } | |
4220 | ||
4221 | /* If TYPE is a class member, the class of which it is a member is | |
4222 | an associated class. */ | |
4223 | if ((CLASS_TYPE_P (type) | |
4224 | || TREE_CODE (type) == UNION_TYPE | |
4225 | || TREE_CODE (type) == ENUMERAL_TYPE) | |
4226 | && TYPE_CONTEXT (type) | |
4227 | && CLASS_TYPE_P (TYPE_CONTEXT (type)) | |
4228 | && is_friend (TYPE_CONTEXT (type), fn)) | |
4229 | return true; | |
4230 | ||
4231 | return false; | |
4232 | } | |
4233 | ||
5a167978 GDR |
4234 | /* Add functions of a namespace to the lookup structure. |
4235 | Returns true on error. */ | |
4236 | ||
4237 | static bool | |
4238 | arg_assoc_namespace (struct arg_lookup *k, tree scope) | |
4239 | { | |
4240 | tree value; | |
4241 | ||
4242 | if (purpose_member (scope, k->namespaces)) | |
4243 | return 0; | |
4244 | k->namespaces = tree_cons (scope, NULL_TREE, k->namespaces); | |
86098eb8 JM |
4245 | |
4246 | /* Check out our super-users. */ | |
4247 | for (value = DECL_NAMESPACE_ASSOCIATIONS (scope); value; | |
4248 | value = TREE_CHAIN (value)) | |
4249 | if (arg_assoc_namespace (k, TREE_PURPOSE (value))) | |
4250 | return true; | |
c8094d83 | 4251 | |
5a167978 GDR |
4252 | value = namespace_binding (k->name, scope); |
4253 | if (!value) | |
4254 | return false; | |
4255 | ||
4256 | for (; value; value = OVL_NEXT (value)) | |
d63d5d0c ILT |
4257 | { |
4258 | /* We don't want to find arbitrary hidden functions via argument | |
4259 | dependent lookup. We only want to find friends of associated | |
4260 | classes. */ | |
4261 | if (hidden_name_p (OVL_CURRENT (value))) | |
4262 | { | |
4263 | tree args; | |
4264 | ||
4265 | for (args = k->args; args; args = TREE_CHAIN (args)) | |
4266 | if (friend_of_associated_class_p (TREE_VALUE (args), | |
4267 | OVL_CURRENT (value))) | |
4268 | break; | |
4269 | if (!args) | |
4270 | continue; | |
4271 | } | |
4272 | ||
4273 | if (add_function (k, OVL_CURRENT (value))) | |
4274 | return true; | |
4275 | } | |
c8094d83 | 4276 | |
5a167978 GDR |
4277 | return false; |
4278 | } | |
4279 | ||
4280 | /* Adds everything associated with a template argument to the lookup | |
4281 | structure. Returns true on error. */ | |
4282 | ||
4283 | static bool | |
4284 | arg_assoc_template_arg (struct arg_lookup *k, tree arg) | |
4285 | { | |
4286 | /* [basic.lookup.koenig] | |
4287 | ||
4288 | If T is a template-id, its associated namespaces and classes are | |
4289 | ... the namespaces and classes associated with the types of the | |
4290 | template arguments provided for template type parameters | |
4291 | (excluding template template parameters); the namespaces in which | |
4292 | any template template arguments are defined; and the classes in | |
4293 | which any member templates used as template template arguments | |
4294 | are defined. [Note: non-type template arguments do not | |
4295 | contribute to the set of associated namespaces. ] */ | |
4296 | ||
4297 | /* Consider first template template arguments. */ | |
4298 | if (TREE_CODE (arg) == TEMPLATE_TEMPLATE_PARM | |
4299 | || TREE_CODE (arg) == UNBOUND_CLASS_TEMPLATE) | |
4300 | return false; | |
4301 | else if (TREE_CODE (arg) == TEMPLATE_DECL) | |
4302 | { | |
4303 | tree ctx = CP_DECL_CONTEXT (arg); | |
4304 | ||
4305 | /* It's not a member template. */ | |
4306 | if (TREE_CODE (ctx) == NAMESPACE_DECL) | |
0cbd7506 | 4307 | return arg_assoc_namespace (k, ctx); |
5a167978 | 4308 | /* Otherwise, it must be member template. */ |
c8094d83 | 4309 | else |
0cbd7506 | 4310 | return arg_assoc_class (k, ctx); |
5a167978 GDR |
4311 | } |
4312 | /* It's not a template template argument, but it is a type template | |
4313 | argument. */ | |
4314 | else if (TYPE_P (arg)) | |
4315 | return arg_assoc_type (k, arg); | |
4316 | /* It's a non-type template argument. */ | |
4317 | else | |
4318 | return false; | |
4319 | } | |
4320 | ||
4321 | /* Adds everything associated with class to the lookup structure. | |
4322 | Returns true on error. */ | |
4323 | ||
4324 | static bool | |
4325 | arg_assoc_class (struct arg_lookup *k, tree type) | |
4326 | { | |
4327 | tree list, friends, context; | |
4328 | int i; | |
c8094d83 | 4329 | |
5a167978 GDR |
4330 | /* Backend build structures, such as __builtin_va_list, aren't |
4331 | affected by all this. */ | |
4332 | if (!CLASS_TYPE_P (type)) | |
4333 | return false; | |
4334 | ||
4335 | if (purpose_member (type, k->classes)) | |
4336 | return false; | |
4337 | k->classes = tree_cons (type, NULL_TREE, k->classes); | |
c8094d83 | 4338 | |
b1cc95ce | 4339 | context = decl_namespace_context (type); |
5a167978 GDR |
4340 | if (arg_assoc_namespace (k, context)) |
4341 | return true; | |
ccb14335 NS |
4342 | |
4343 | if (TYPE_BINFO (type)) | |
fa743e8c NS |
4344 | { |
4345 | /* Process baseclasses. */ | |
4346 | tree binfo, base_binfo; | |
c8094d83 | 4347 | |
fa743e8c NS |
4348 | for (binfo = TYPE_BINFO (type), i = 0; |
4349 | BINFO_BASE_ITERATE (binfo, i, base_binfo); i++) | |
4350 | if (arg_assoc_class (k, BINFO_TYPE (base_binfo))) | |
4351 | return true; | |
4352 | } | |
c8094d83 | 4353 | |
5a167978 | 4354 | /* Process friends. */ |
c8094d83 | 4355 | for (list = DECL_FRIENDLIST (TYPE_MAIN_DECL (type)); list; |
5a167978 GDR |
4356 | list = TREE_CHAIN (list)) |
4357 | if (k->name == FRIEND_NAME (list)) | |
c8094d83 | 4358 | for (friends = FRIEND_DECLS (list); friends; |
5a167978 | 4359 | friends = TREE_CHAIN (friends)) |
c8b2e872 MM |
4360 | { |
4361 | tree fn = TREE_VALUE (friends); | |
4362 | ||
4363 | /* Only interested in global functions with potentially hidden | |
4364 | (i.e. unqualified) declarations. */ | |
4365 | if (CP_DECL_CONTEXT (fn) != context) | |
4366 | continue; | |
4367 | /* Template specializations are never found by name lookup. | |
4368 | (Templates themselves can be found, but not template | |
4369 | specializations.) */ | |
4370 | if (TREE_CODE (fn) == FUNCTION_DECL && DECL_USE_TEMPLATE (fn)) | |
4371 | continue; | |
4372 | if (add_function (k, fn)) | |
5a167978 | 4373 | return true; |
c8b2e872 | 4374 | } |
5a167978 GDR |
4375 | |
4376 | /* Process template arguments. */ | |
c8094d83 | 4377 | if (CLASSTYPE_TEMPLATE_INFO (type) |
146d3c99 | 4378 | && PRIMARY_TEMPLATE_P (CLASSTYPE_TI_TEMPLATE (type))) |
5a167978 GDR |
4379 | { |
4380 | list = INNERMOST_TEMPLATE_ARGS (CLASSTYPE_TI_ARGS (type)); | |
c8094d83 | 4381 | for (i = 0; i < TREE_VEC_LENGTH (list); ++i) |
0cbd7506 | 4382 | arg_assoc_template_arg (k, TREE_VEC_ELT (list, i)); |
5a167978 GDR |
4383 | } |
4384 | ||
4385 | return false; | |
4386 | } | |
4387 | ||
4388 | /* Adds everything associated with a given type. | |
4389 | Returns 1 on error. */ | |
4390 | ||
4391 | static bool | |
4392 | arg_assoc_type (struct arg_lookup *k, tree type) | |
4393 | { | |
4394 | /* As we do not get the type of non-type dependent expressions | |
4395 | right, we can end up with such things without a type. */ | |
4396 | if (!type) | |
4397 | return false; | |
4398 | ||
4399 | if (TYPE_PTRMEM_P (type)) | |
4400 | { | |
4401 | /* Pointer to member: associate class type and value type. */ | |
4402 | if (arg_assoc_type (k, TYPE_PTRMEM_CLASS_TYPE (type))) | |
4403 | return true; | |
4404 | return arg_assoc_type (k, TYPE_PTRMEM_POINTED_TO_TYPE (type)); | |
4405 | } | |
4406 | else switch (TREE_CODE (type)) | |
4407 | { | |
4408 | case ERROR_MARK: | |
4409 | return false; | |
4410 | case VOID_TYPE: | |
4411 | case INTEGER_TYPE: | |
4412 | case REAL_TYPE: | |
4413 | case COMPLEX_TYPE: | |
4414 | case VECTOR_TYPE: | |
4415 | case CHAR_TYPE: | |
4416 | case BOOLEAN_TYPE: | |
4417 | return false; | |
4418 | case RECORD_TYPE: | |
4419 | if (TYPE_PTRMEMFUNC_P (type)) | |
4420 | return arg_assoc_type (k, TYPE_PTRMEMFUNC_FN_TYPE (type)); | |
4421 | return arg_assoc_class (k, type); | |
4422 | case POINTER_TYPE: | |
4423 | case REFERENCE_TYPE: | |
4424 | case ARRAY_TYPE: | |
4425 | return arg_assoc_type (k, TREE_TYPE (type)); | |
4426 | case UNION_TYPE: | |
4427 | case ENUMERAL_TYPE: | |
b1cc95ce | 4428 | return arg_assoc_namespace (k, decl_namespace_context (type)); |
5a167978 GDR |
4429 | case METHOD_TYPE: |
4430 | /* The basetype is referenced in the first arg type, so just | |
4431 | fall through. */ | |
4432 | case FUNCTION_TYPE: | |
4433 | /* Associate the parameter types. */ | |
4434 | if (arg_assoc_args (k, TYPE_ARG_TYPES (type))) | |
4435 | return true; | |
4436 | /* Associate the return type. */ | |
4437 | return arg_assoc_type (k, TREE_TYPE (type)); | |
4438 | case TEMPLATE_TYPE_PARM: | |
4439 | case BOUND_TEMPLATE_TEMPLATE_PARM: | |
4440 | return false; | |
4441 | case TYPENAME_TYPE: | |
4442 | return false; | |
4443 | case LANG_TYPE: | |
315fb5db NS |
4444 | gcc_assert (type == unknown_type_node); |
4445 | return false; | |
5a167978 | 4446 | default: |
315fb5db | 4447 | gcc_unreachable (); |
5a167978 GDR |
4448 | } |
4449 | return false; | |
4450 | } | |
4451 | ||
4452 | /* Adds everything associated with arguments. Returns true on error. */ | |
4453 | ||
4454 | static bool | |
4455 | arg_assoc_args (struct arg_lookup *k, tree args) | |
4456 | { | |
4457 | for (; args; args = TREE_CHAIN (args)) | |
4458 | if (arg_assoc (k, TREE_VALUE (args))) | |
4459 | return true; | |
4460 | return false; | |
4461 | } | |
4462 | ||
4463 | /* Adds everything associated with a given tree_node. Returns 1 on error. */ | |
4464 | ||
4465 | static bool | |
4466 | arg_assoc (struct arg_lookup *k, tree n) | |
4467 | { | |
4468 | if (n == error_mark_node) | |
4469 | return false; | |
4470 | ||
4471 | if (TYPE_P (n)) | |
4472 | return arg_assoc_type (k, n); | |
4473 | ||
4474 | if (! type_unknown_p (n)) | |
4475 | return arg_assoc_type (k, TREE_TYPE (n)); | |
4476 | ||
4477 | if (TREE_CODE (n) == ADDR_EXPR) | |
4478 | n = TREE_OPERAND (n, 0); | |
4479 | if (TREE_CODE (n) == COMPONENT_REF) | |
4480 | n = TREE_OPERAND (n, 1); | |
4481 | if (TREE_CODE (n) == OFFSET_REF) | |
4482 | n = TREE_OPERAND (n, 1); | |
4483 | while (TREE_CODE (n) == TREE_LIST) | |
4484 | n = TREE_VALUE (n); | |
4485 | if (TREE_CODE (n) == BASELINK) | |
4486 | n = BASELINK_FUNCTIONS (n); | |
4487 | ||
4488 | if (TREE_CODE (n) == FUNCTION_DECL) | |
4489 | return arg_assoc_type (k, TREE_TYPE (n)); | |
4490 | if (TREE_CODE (n) == TEMPLATE_ID_EXPR) | |
4491 | { | |
4492 | /* [basic.lookup.koenig] | |
4493 | ||
4494 | If T is a template-id, its associated namespaces and classes | |
4495 | are the namespace in which the template is defined; for | |
4496 | member templates, the member template's class... */ | |
4497 | tree template = TREE_OPERAND (n, 0); | |
4498 | tree args = TREE_OPERAND (n, 1); | |
4499 | tree ctx; | |
4500 | int ix; | |
4501 | ||
4502 | if (TREE_CODE (template) == COMPONENT_REF) | |
0cbd7506 | 4503 | template = TREE_OPERAND (template, 1); |
c8094d83 | 4504 | |
5a167978 GDR |
4505 | /* First, the template. There may actually be more than one if |
4506 | this is an overloaded function template. But, in that case, | |
4507 | we only need the first; all the functions will be in the same | |
4508 | namespace. */ | |
4509 | template = OVL_CURRENT (template); | |
4510 | ||
4511 | ctx = CP_DECL_CONTEXT (template); | |
c8094d83 | 4512 | |
5a167978 GDR |
4513 | if (TREE_CODE (ctx) == NAMESPACE_DECL) |
4514 | { | |
4515 | if (arg_assoc_namespace (k, ctx) == 1) | |
4516 | return true; | |
4517 | } | |
4518 | /* It must be a member template. */ | |
4519 | else if (arg_assoc_class (k, ctx) == 1) | |
4520 | return true; | |
4521 | ||
4522 | /* Now the arguments. */ | |
c19aaba5 NS |
4523 | if (args) |
4524 | for (ix = TREE_VEC_LENGTH (args); ix--;) | |
4525 | if (arg_assoc_template_arg (k, TREE_VEC_ELT (args, ix)) == 1) | |
4526 | return true; | |
5a167978 | 4527 | } |
c1cca8d4 | 4528 | else if (TREE_CODE (n) == OVERLOAD) |
5a167978 | 4529 | { |
5a167978 GDR |
4530 | for (; n; n = OVL_CHAIN (n)) |
4531 | if (arg_assoc_type (k, TREE_TYPE (OVL_FUNCTION (n)))) | |
4532 | return true; | |
4533 | } | |
4534 | ||
4535 | return false; | |
4536 | } | |
4537 | ||
4538 | /* Performs Koenig lookup depending on arguments, where fns | |
4539 | are the functions found in normal lookup. */ | |
4540 | ||
4541 | tree | |
4542 | lookup_arg_dependent (tree name, tree fns, tree args) | |
4543 | { | |
4544 | struct arg_lookup k; | |
5a167978 GDR |
4545 | |
4546 | timevar_push (TV_NAME_LOOKUP); | |
d63d5d0c ILT |
4547 | |
4548 | /* Remove any hidden friend functions from the list of functions | |
4549 | found so far. They will be added back by arg_assoc_class as | |
4550 | appropriate. */ | |
4551 | fns = remove_hidden_names (fns); | |
4552 | ||
5a167978 | 4553 | k.name = name; |
d63d5d0c | 4554 | k.args = args; |
5a167978 GDR |
4555 | k.functions = fns; |
4556 | k.classes = NULL_TREE; | |
4557 | ||
20ac1e03 DG |
4558 | /* We previously performed an optimization here by setting |
4559 | NAMESPACES to the current namespace when it was safe. However, DR | |
4560 | 164 says that namespaces that were already searched in the first | |
4561 | stage of template processing are searched again (potentially | |
4562 | picking up later definitions) in the second stage. */ | |
4563 | k.namespaces = NULL_TREE; | |
5a167978 GDR |
4564 | |
4565 | arg_assoc_args (&k, args); | |
4566 | POP_TIMEVAR_AND_RETURN (TV_NAME_LOOKUP, k.functions); | |
4567 | } | |
4568 | ||
00e8de68 GDR |
4569 | /* Add namespace to using_directives. Return NULL_TREE if nothing was |
4570 | changed (i.e. there was already a directive), or the fresh | |
4571 | TREE_LIST otherwise. */ | |
4572 | ||
a5e6b29b | 4573 | static tree |
00e8de68 GDR |
4574 | push_using_directive (tree used) |
4575 | { | |
4576 | tree ud = current_binding_level->using_directives; | |
4577 | tree iter, ancestor; | |
4578 | ||
4579 | timevar_push (TV_NAME_LOOKUP); | |
4580 | /* Check if we already have this. */ | |
4581 | if (purpose_member (used, ud) != NULL_TREE) | |
4582 | POP_TIMEVAR_AND_RETURN (TV_NAME_LOOKUP, NULL_TREE); | |
4583 | ||
4584 | ancestor = namespace_ancestor (current_decl_namespace (), used); | |
4585 | ud = current_binding_level->using_directives; | |
4586 | ud = tree_cons (used, ancestor, ud); | |
4587 | current_binding_level->using_directives = ud; | |
4588 | ||
4589 | /* Recursively add all namespaces used. */ | |
4590 | for (iter = DECL_NAMESPACE_USING (used); iter; iter = TREE_CHAIN (iter)) | |
4591 | push_using_directive (TREE_PURPOSE (iter)); | |
4592 | ||
4593 | POP_TIMEVAR_AND_RETURN (TV_NAME_LOOKUP, ud); | |
4594 | } | |
4595 | ||
4596 | /* The type TYPE is being declared. If it is a class template, or a | |
4597 | specialization of a class template, do any processing required and | |
4598 | perform error-checking. If IS_FRIEND is nonzero, this TYPE is | |
4599 | being declared a friend. B is the binding level at which this TYPE | |
4600 | should be bound. | |
4601 | ||
4602 | Returns the TYPE_DECL for TYPE, which may have been altered by this | |
4603 | processing. */ | |
4604 | ||
4605 | static tree | |
bd3d082e | 4606 | maybe_process_template_type_declaration (tree type, int is_friend, |
0cbd7506 | 4607 | cxx_scope *b) |
00e8de68 GDR |
4608 | { |
4609 | tree decl = TYPE_NAME (type); | |
4610 | ||
4611 | if (processing_template_parmlist) | |
4612 | /* You can't declare a new template type in a template parameter | |
4613 | list. But, you can declare a non-template type: | |
4614 | ||
0cbd7506 | 4615 | template <class A*> struct S; |
00e8de68 GDR |
4616 | |
4617 | is a forward-declaration of `A'. */ | |
4618 | ; | |
c43e95f8 MM |
4619 | else if (b->kind == sk_namespace |
4620 | && current_binding_level->kind != sk_namespace) | |
4621 | /* If this new type is being injected into a containing scope, | |
4622 | then it's not a template type. */ | |
4623 | ; | |
00e8de68 GDR |
4624 | else |
4625 | { | |
50bc768d | 4626 | gcc_assert (IS_AGGR_TYPE (type) || TREE_CODE (type) == ENUMERAL_TYPE); |
00e8de68 GDR |
4627 | |
4628 | if (processing_template_decl) | |
4629 | { | |
4630 | /* This may change after the call to | |
4631 | push_template_decl_real, but we want the original value. */ | |
4632 | tree name = DECL_NAME (decl); | |
4633 | ||
bd3d082e | 4634 | decl = push_template_decl_real (decl, is_friend); |
00e8de68 GDR |
4635 | /* If the current binding level is the binding level for the |
4636 | template parameters (see the comment in | |
4637 | begin_template_parm_list) and the enclosing level is a class | |
4638 | scope, and we're not looking at a friend, push the | |
4639 | declaration of the member class into the class scope. In the | |
4640 | friend case, push_template_decl will already have put the | |
4641 | friend into global scope, if appropriate. */ | |
4642 | if (TREE_CODE (type) != ENUMERAL_TYPE | |
bd3d082e | 4643 | && !is_friend && b->kind == sk_template_parms |
00e8de68 GDR |
4644 | && b->level_chain->kind == sk_class) |
4645 | { | |
4646 | finish_member_declaration (CLASSTYPE_TI_TEMPLATE (type)); | |
e57df6fe | 4647 | |
00e8de68 GDR |
4648 | if (!COMPLETE_TYPE_P (current_class_type)) |
4649 | { | |
4650 | maybe_add_class_template_decl_list (current_class_type, | |
4651 | type, /*friend_p=*/0); | |
c72a1a86 | 4652 | /* Put this UTD in the table of UTDs for the class. */ |
e57df6fe KL |
4653 | if (CLASSTYPE_NESTED_UTDS (current_class_type) == NULL) |
4654 | CLASSTYPE_NESTED_UTDS (current_class_type) = | |
4655 | binding_table_new (SCOPE_DEFAULT_HT_SIZE); | |
4656 | ||
4657 | binding_table_insert | |
4658 | (CLASSTYPE_NESTED_UTDS (current_class_type), name, type); | |
00e8de68 GDR |
4659 | } |
4660 | } | |
4661 | } | |
4662 | } | |
4663 | ||
4664 | return decl; | |
4665 | } | |
4666 | ||
5a24482e KL |
4667 | /* Push a tag name NAME for struct/class/union/enum type TYPE. In case |
4668 | that the NAME is a class template, the tag is processed but not pushed. | |
4669 | ||
4670 | The pushed scope depend on the SCOPE parameter: | |
4671 | - When SCOPE is TS_CURRENT, put it into the inner-most non-sk_cleanup | |
4672 | scope. | |
4673 | - When SCOPE is TS_GLOBAL, put it in the inner-most non-class and | |
4674 | non-template-parameter scope. This case is needed for forward | |
4675 | declarations. | |
4676 | - When SCOPE is TS_WITHIN_ENCLOSING_NON_CLASS, this is similar to | |
4677 | TS_GLOBAL case except that names within template-parameter scopes | |
4678 | are not pushed at all. | |
4679 | ||
c6f9f83b | 4680 | Returns TYPE upon success and ERROR_MARK_NODE otherwise. */ |
00e8de68 | 4681 | |
c6f9f83b | 4682 | tree |
bd3d082e | 4683 | pushtag (tree name, tree type, tag_scope scope) |
00e8de68 | 4684 | { |
926ce8bd | 4685 | struct cp_binding_level *b; |
6a000704 | 4686 | tree decl; |
00e8de68 GDR |
4687 | |
4688 | timevar_push (TV_NAME_LOOKUP); | |
4689 | b = current_binding_level; | |
7c82a41e MM |
4690 | while (/* Cleanup scopes are not scopes from the point of view of |
4691 | the language. */ | |
4692 | b->kind == sk_cleanup | |
4693 | /* Neither are the scopes used to hold template parameters | |
4694 | for an explicit specialization. For an ordinary template | |
4695 | declaration, these scopes are not scopes from the point of | |
5a24482e KL |
4696 | view of the language. */ |
4697 | || (b->kind == sk_template_parms | |
4698 | && (b->explicit_spec_p || scope == ts_global)) | |
00e8de68 | 4699 | || (b->kind == sk_class |
bd3d082e | 4700 | && (scope != ts_current |
00e8de68 GDR |
4701 | /* We may be defining a new type in the initializer |
4702 | of a static member variable. We allow this when | |
4703 | not pedantic, and it is particularly useful for | |
4704 | type punning via an anonymous union. */ | |
4705 | || COMPLETE_TYPE_P (b->this_entity)))) | |
4706 | b = b->level_chain; | |
4707 | ||
6a000704 NS |
4708 | gcc_assert (TREE_CODE (name) == IDENTIFIER_NODE); |
4709 | ||
4710 | /* Do C++ gratuitous typedefing. */ | |
4711 | if (IDENTIFIER_TYPE_VALUE (name) != type) | |
00e8de68 | 4712 | { |
6a000704 NS |
4713 | tree tdef; |
4714 | int in_class = 0; | |
4715 | tree context = TYPE_CONTEXT (type); | |
00e8de68 | 4716 | |
6a000704 NS |
4717 | if (! context) |
4718 | { | |
4719 | tree cs = current_scope (); | |
4720 | ||
4721 | if (scope == ts_current) | |
4722 | context = cs; | |
4723 | else if (cs != NULL_TREE && TYPE_P (cs)) | |
4724 | /* When declaring a friend class of a local class, we want | |
4725 | to inject the newly named class into the scope | |
4726 | containing the local class, not the namespace | |
4727 | scope. */ | |
4728 | context = decl_function_context (get_type_decl (cs)); | |
4729 | } | |
4730 | if (!context) | |
4731 | context = current_namespace; | |
bd3d082e | 4732 | |
6a000704 NS |
4733 | if (b->kind == sk_class |
4734 | || (b->kind == sk_template_parms | |
4735 | && b->level_chain->kind == sk_class)) | |
4736 | in_class = 1; | |
00e8de68 | 4737 | |
6a000704 NS |
4738 | if (current_lang_name == lang_name_java) |
4739 | TYPE_FOR_JAVA (type) = 1; | |
00e8de68 | 4740 | |
6a000704 NS |
4741 | tdef = create_implicit_typedef (name, type); |
4742 | DECL_CONTEXT (tdef) = FROB_CONTEXT (context); | |
4743 | if (scope == ts_within_enclosing_non_class) | |
00e8de68 | 4744 | { |
6a000704 NS |
4745 | /* This is a friend. Make this TYPE_DECL node hidden from |
4746 | ordinary name lookup. Its corresponding TEMPLATE_DECL | |
4747 | will be marked in push_template_decl_real. */ | |
4748 | retrofit_lang_decl (tdef); | |
4749 | DECL_ANTICIPATED (tdef) = 1; | |
4750 | DECL_FRIEND_P (tdef) = 1; | |
4751 | } | |
e57df6fe | 4752 | |
6a000704 NS |
4753 | decl = maybe_process_template_type_declaration |
4754 | (type, scope == ts_within_enclosing_non_class, b); | |
4755 | if (decl == error_mark_node) | |
4756 | POP_TIMEVAR_AND_RETURN (TV_NAME_LOOKUP, decl); | |
4757 | ||
4758 | if (! in_class) | |
4759 | set_identifier_type_value_with_scope (name, tdef, b); | |
e57df6fe | 4760 | |
6a000704 NS |
4761 | if (b->kind == sk_class) |
4762 | { | |
4763 | if (!PROCESSING_REAL_TEMPLATE_DECL_P ()) | |
4764 | /* Put this TYPE_DECL on the TYPE_FIELDS list for the | |
4765 | class. But if it's a member template class, we want | |
4766 | the TEMPLATE_DECL, not the TYPE_DECL, so this is done | |
4767 | later. */ | |
4768 | finish_member_declaration (decl); | |
4769 | else | |
4770 | pushdecl_class_level (decl); | |
00e8de68 | 4771 | } |
6a000704 | 4772 | else if (b->kind != sk_template_parms) |
d63d5d0c | 4773 | decl = pushdecl_with_scope (decl, b, /*is_friend=*/false); |
6a000704 NS |
4774 | |
4775 | TYPE_CONTEXT (type) = DECL_CONTEXT (decl); | |
4776 | ||
4777 | /* If this is a local class, keep track of it. We need this | |
4778 | information for name-mangling, and so that it is possible to | |
4779 | find all function definitions in a translation unit in a | |
4780 | convenient way. (It's otherwise tricky to find a member | |
4781 | function definition it's only pointed to from within a local | |
4782 | class.) */ | |
4783 | if (TYPE_CONTEXT (type) | |
4784 | && TREE_CODE (TYPE_CONTEXT (type)) == FUNCTION_DECL) | |
4785 | VEC_safe_push (tree, gc, local_classes, type); | |
00e8de68 | 4786 | } |
6a000704 NS |
4787 | if (b->kind == sk_class |
4788 | && !COMPLETE_TYPE_P (current_class_type)) | |
00e8de68 | 4789 | { |
6a000704 NS |
4790 | maybe_add_class_template_decl_list (current_class_type, |
4791 | type, /*friend_p=*/0); | |
4792 | ||
4793 | if (CLASSTYPE_NESTED_UTDS (current_class_type) == NULL) | |
4794 | CLASSTYPE_NESTED_UTDS (current_class_type) | |
4795 | = binding_table_new (SCOPE_DEFAULT_HT_SIZE); | |
4796 | ||
4797 | binding_table_insert | |
4798 | (CLASSTYPE_NESTED_UTDS (current_class_type), name, type); | |
00e8de68 | 4799 | } |
6a000704 NS |
4800 | |
4801 | decl = TYPE_NAME (type); | |
4802 | gcc_assert (TREE_CODE (decl) == TYPE_DECL); | |
4803 | TYPE_STUB_DECL (type) = decl; | |
4804 | ||
c6f9f83b | 4805 | POP_TIMEVAR_AND_RETURN (TV_NAME_LOOKUP, type); |
00e8de68 GDR |
4806 | } |
4807 | \f | |
00e8de68 GDR |
4808 | /* Subroutines for reverting temporarily to top-level for instantiation |
4809 | of templates and such. We actually need to clear out the class- and | |
4810 | local-value slots of all identifiers, so that only the global values | |
4811 | are at all visible. Simply setting current_binding_level to the global | |
4812 | scope isn't enough, because more binding levels may be pushed. */ | |
4813 | struct saved_scope *scope_chain; | |
4814 | ||
f44b0c8e MM |
4815 | /* If ID has not already been marked, add an appropriate binding to |
4816 | *OLD_BINDINGS. */ | |
89b578be | 4817 | |
f44b0c8e | 4818 | static void |
d4e6fecb | 4819 | store_binding (tree id, VEC(cxx_saved_binding,gc) **old_bindings) |
89b578be MM |
4820 | { |
4821 | cxx_saved_binding *saved; | |
89b578be | 4822 | |
39fb05d0 | 4823 | if (!id || !IDENTIFIER_BINDING (id)) |
f44b0c8e | 4824 | return; |
89b578be | 4825 | |
f44b0c8e MM |
4826 | if (IDENTIFIER_MARKED (id)) |
4827 | return; | |
c8094d83 | 4828 | |
f44b0c8e | 4829 | IDENTIFIER_MARKED (id) = 1; |
89b578be | 4830 | |
d4e6fecb | 4831 | saved = VEC_safe_push (cxx_saved_binding, gc, *old_bindings, NULL); |
89b578be MM |
4832 | saved->identifier = id; |
4833 | saved->binding = IDENTIFIER_BINDING (id); | |
89b578be MM |
4834 | saved->real_type_value = REAL_IDENTIFIER_TYPE_VALUE (id); |
4835 | IDENTIFIER_BINDING (id) = NULL; | |
89b578be MM |
4836 | } |
4837 | ||
f44b0c8e | 4838 | static void |
d4e6fecb | 4839 | store_bindings (tree names, VEC(cxx_saved_binding,gc) **old_bindings) |
00e8de68 GDR |
4840 | { |
4841 | tree t; | |
00e8de68 GDR |
4842 | |
4843 | timevar_push (TV_NAME_LOOKUP); | |
4844 | for (t = names; t; t = TREE_CHAIN (t)) | |
4845 | { | |
4846 | tree id; | |
00e8de68 GDR |
4847 | |
4848 | if (TREE_CODE (t) == TREE_LIST) | |
4849 | id = TREE_PURPOSE (t); | |
4850 | else | |
4851 | id = DECL_NAME (t); | |
4852 | ||
f44b0c8e | 4853 | store_binding (id, old_bindings); |
00e8de68 | 4854 | } |
f44b0c8e | 4855 | timevar_pop (TV_NAME_LOOKUP); |
00e8de68 GDR |
4856 | } |
4857 | ||
89b578be MM |
4858 | /* Like store_bindings, but NAMES is a vector of cp_class_binding |
4859 | objects, rather than a TREE_LIST. */ | |
4860 | ||
f44b0c8e | 4861 | static void |
c8094d83 | 4862 | store_class_bindings (VEC(cp_class_binding,gc) *names, |
d4e6fecb | 4863 | VEC(cxx_saved_binding,gc) **old_bindings) |
89b578be MM |
4864 | { |
4865 | size_t i; | |
4866 | cp_class_binding *cb; | |
89b578be MM |
4867 | |
4868 | timevar_push (TV_NAME_LOOKUP); | |
9ba5ff0f | 4869 | for (i = 0; VEC_iterate(cp_class_binding, names, i, cb); ++i) |
f44b0c8e MM |
4870 | store_binding (cb->identifier, old_bindings); |
4871 | timevar_pop (TV_NAME_LOOKUP); | |
89b578be MM |
4872 | } |
4873 | ||
00e8de68 | 4874 | void |
c353b8e3 | 4875 | push_to_top_level (void) |
00e8de68 GDR |
4876 | { |
4877 | struct saved_scope *s; | |
4878 | struct cp_binding_level *b; | |
f44b0c8e MM |
4879 | cxx_saved_binding *sb; |
4880 | size_t i; | |
00e8de68 GDR |
4881 | int need_pop; |
4882 | ||
4883 | timevar_push (TV_NAME_LOOKUP); | |
99dd239f | 4884 | s = GGC_CNEW (struct saved_scope); |
00e8de68 GDR |
4885 | |
4886 | b = scope_chain ? current_binding_level : 0; | |
4887 | ||
4888 | /* If we're in the middle of some function, save our state. */ | |
4889 | if (cfun) | |
4890 | { | |
4891 | need_pop = 1; | |
4892 | push_function_context_to (NULL_TREE); | |
4893 | } | |
4894 | else | |
4895 | need_pop = 0; | |
4896 | ||
89b578be | 4897 | if (scope_chain && previous_class_level) |
f44b0c8e MM |
4898 | store_class_bindings (previous_class_level->class_shadowed, |
4899 | &s->old_bindings); | |
00e8de68 GDR |
4900 | |
4901 | /* Have to include the global scope, because class-scope decls | |
4902 | aren't listed anywhere useful. */ | |
4903 | for (; b; b = b->level_chain) | |
4904 | { | |
4905 | tree t; | |
4906 | ||
4907 | /* Template IDs are inserted into the global level. If they were | |
4908 | inserted into namespace level, finish_file wouldn't find them | |
4909 | when doing pending instantiations. Therefore, don't stop at | |
4910 | namespace level, but continue until :: . */ | |
c353b8e3 | 4911 | if (global_scope_p (b)) |
00e8de68 GDR |
4912 | break; |
4913 | ||
f44b0c8e | 4914 | store_bindings (b->names, &s->old_bindings); |
00e8de68 GDR |
4915 | /* We also need to check class_shadowed to save class-level type |
4916 | bindings, since pushclass doesn't fill in b->names. */ | |
4917 | if (b->kind == sk_class) | |
f44b0c8e | 4918 | store_class_bindings (b->class_shadowed, &s->old_bindings); |
00e8de68 GDR |
4919 | |
4920 | /* Unwind type-value slots back to top level. */ | |
4921 | for (t = b->type_shadowed; t; t = TREE_CHAIN (t)) | |
4922 | SET_IDENTIFIER_TYPE_VALUE (TREE_PURPOSE (t), TREE_VALUE (t)); | |
4923 | } | |
f44b0c8e | 4924 | |
9ba5ff0f | 4925 | for (i = 0; VEC_iterate (cxx_saved_binding, s->old_bindings, i, sb); ++i) |
f44b0c8e MM |
4926 | IDENTIFIER_MARKED (sb->identifier) = 0; |
4927 | ||
00e8de68 | 4928 | s->prev = scope_chain; |
00e8de68 GDR |
4929 | s->bindings = b; |
4930 | s->need_pop_function_context = need_pop; | |
4931 | s->function_decl = current_function_decl; | |
b794e321 | 4932 | s->skip_evaluation = skip_evaluation; |
00e8de68 GDR |
4933 | |
4934 | scope_chain = s; | |
4935 | current_function_decl = NULL_TREE; | |
aff44741 | 4936 | current_lang_base = VEC_alloc (tree, gc, 10); |
00e8de68 GDR |
4937 | current_lang_name = lang_name_cplusplus; |
4938 | current_namespace = global_namespace; | |
c888c93b | 4939 | push_class_stack (); |
b794e321 | 4940 | skip_evaluation = 0; |
00e8de68 GDR |
4941 | timevar_pop (TV_NAME_LOOKUP); |
4942 | } | |
4943 | ||
00e8de68 GDR |
4944 | void |
4945 | pop_from_top_level (void) | |
4946 | { | |
4947 | struct saved_scope *s = scope_chain; | |
4948 | cxx_saved_binding *saved; | |
f44b0c8e | 4949 | size_t i; |
00e8de68 | 4950 | |
c8094d83 | 4951 | timevar_push (TV_NAME_LOOKUP); |
00e8de68 | 4952 | /* Clear out class-level bindings cache. */ |
89b578be | 4953 | if (previous_class_level) |
00e8de68 | 4954 | invalidate_class_lookup_cache (); |
c888c93b | 4955 | pop_class_stack (); |
00e8de68 GDR |
4956 | |
4957 | current_lang_base = 0; | |
4958 | ||
4959 | scope_chain = s->prev; | |
9ba5ff0f | 4960 | for (i = 0; VEC_iterate (cxx_saved_binding, s->old_bindings, i, saved); ++i) |
00e8de68 GDR |
4961 | { |
4962 | tree id = saved->identifier; | |
4963 | ||
4964 | IDENTIFIER_BINDING (id) = saved->binding; | |
00e8de68 GDR |
4965 | SET_IDENTIFIER_TYPE_VALUE (id, saved->real_type_value); |
4966 | } | |
4967 | ||
4968 | /* If we were in the middle of compiling a function, restore our | |
4969 | state. */ | |
4970 | if (s->need_pop_function_context) | |
4971 | pop_function_context_from (NULL_TREE); | |
4972 | current_function_decl = s->function_decl; | |
b794e321 | 4973 | skip_evaluation = s->skip_evaluation; |
00e8de68 GDR |
4974 | timevar_pop (TV_NAME_LOOKUP); |
4975 | } | |
4976 | ||
4977 | /* Pop off extraneous binding levels left over due to syntax errors. | |
4978 | ||
4979 | We don't pop past namespaces, as they might be valid. */ | |
4980 | ||
4981 | void | |
4982 | pop_everything (void) | |
4983 | { | |
4984 | if (ENABLE_SCOPE_CHECKING) | |
4985 | verbatim ("XXX entering pop_everything ()\n"); | |
4986 | while (!toplevel_bindings_p ()) | |
4987 | { | |
4988 | if (current_binding_level->kind == sk_class) | |
4989 | pop_nested_class (); | |
4990 | else | |
4991 | poplevel (0, 0, 0); | |
4992 | } | |
4993 | if (ENABLE_SCOPE_CHECKING) | |
4994 | verbatim ("XXX leaving pop_everything ()\n"); | |
4995 | } | |
4996 | ||
6097b0c3 | 4997 | /* Emit debugging information for using declarations and directives. |
c8094d83 | 4998 | If input tree is overloaded fn then emit debug info for all |
6097b0c3 DP |
4999 | candidates. */ |
5000 | ||
98ed9dae | 5001 | void |
6097b0c3 DP |
5002 | cp_emit_debug_info_for_using (tree t, tree context) |
5003 | { | |
099f36ab JM |
5004 | /* Don't try to emit any debug information if we have errors. */ |
5005 | if (sorrycount || errorcount) | |
5006 | return; | |
5007 | ||
c8094d83 | 5008 | /* Ignore this FUNCTION_DECL if it refers to a builtin declaration |
6097b0c3 | 5009 | of a builtin function. */ |
c8094d83 | 5010 | if (TREE_CODE (t) == FUNCTION_DECL |
6097b0c3 DP |
5011 | && DECL_EXTERNAL (t) |
5012 | && DECL_BUILT_IN (t)) | |
5013 | return; | |
5014 | ||
5015 | /* Do not supply context to imported_module_or_decl, if | |
5016 | it is a global namespace. */ | |
5017 | if (context == global_namespace) | |
5018 | context = NULL_TREE; | |
c8094d83 | 5019 | |
6097b0c3 DP |
5020 | if (BASELINK_P (t)) |
5021 | t = BASELINK_FUNCTIONS (t); | |
c8094d83 | 5022 | |
6097b0c3 DP |
5023 | /* FIXME: Handle TEMPLATE_DECLs. */ |
5024 | for (t = OVL_CURRENT (t); t; t = OVL_NEXT (t)) | |
5025 | if (TREE_CODE (t) != TEMPLATE_DECL) | |
5026 | (*debug_hooks->imported_module_or_decl) (t, context); | |
98ed9dae | 5027 | } |
6097b0c3 | 5028 | |
28ea4c88 | 5029 | #include "gt-cp-name-lookup.h" |