diff options
author | Jason Merrill <jason@redhat.com> | 2010-03-03 14:01:58 -0500 |
---|---|---|
committer | Jason Merrill <jason@gcc.gnu.org> | 2010-03-03 14:01:58 -0500 |
commit | 2c71ac786646a4ed4d221a574b2797c66549e9d6 (patch) | |
tree | b5f41f7d05cddfdd91243f5dd7ab8fd79204aada /gcc/varpool.c | |
parent | d6dcdbd5f673e4005a11419d83c0b99af6a512bb (diff) | |
download | gcc-2c71ac786646a4ed4d221a574b2797c66549e9d6.zip gcc-2c71ac786646a4ed4d221a574b2797c66549e9d6.tar.gz gcc-2c71ac786646a4ed4d221a574b2797c66549e9d6.tar.bz2 |
re PR c++/12909 (ambiguity in mangling vector types)
PR c++/12909
* cgraph.h (varpool_node): Add extra_name field.
* varpool.c (varpool_extra_name_alias): New.
(varpool_assemble_decl): Emit extra name aliases.
(varpool_mark_needed_node): Look past an extra name alias.
cp/
* mangle.c (mangle_decl): Handle VAR_DECL, too.
From-SVN: r157203
Diffstat (limited to 'gcc/varpool.c')
-rw-r--r-- | gcc/varpool.c | 51 |
1 files changed, 51 insertions, 0 deletions
diff --git a/gcc/varpool.c b/gcc/varpool.c index 157755b..121086e 100644 --- a/gcc/varpool.c +++ b/gcc/varpool.c @@ -207,6 +207,8 @@ varpool_enqueue_needed_node (struct varpool_node *node) void varpool_mark_needed_node (struct varpool_node *node) { + if (node->alias && node->extra_name) + node = node->extra_name; if (!node->needed && node->finalized && !TREE_ASM_WRITTEN (node->decl)) varpool_enqueue_needed_node (node); @@ -383,9 +385,22 @@ varpool_assemble_decl (struct varpool_node *node) assemble_variable (decl, 0, 1, 0); if (TREE_ASM_WRITTEN (decl)) { + struct varpool_node *alias; + node->next_needed = varpool_assembled_nodes_queue; varpool_assembled_nodes_queue = node; node->finalized = 1; + + /* Also emit any extra name aliases. */ + for (alias = node->extra_name; alias; alias = alias->next) + { + /* Update linkage fields in case they've changed. */ + DECL_WEAK (alias->decl) = DECL_WEAK (decl); + TREE_PUBLIC (alias->decl) = TREE_PUBLIC (decl); + DECL_VISIBILITY (alias->decl) = DECL_VISIBILITY (decl); + assemble_alias (alias->decl, DECL_ASSEMBLER_NAME (decl)); + } + return true; } } @@ -507,4 +522,40 @@ add_new_static_var (tree type) return new_node->decl; } +/* Attempt to mark ALIAS as an alias to DECL. Return TRUE if successful. + Extra name aliases are output whenever DECL is output. */ + +bool +varpool_extra_name_alias (tree alias, tree decl) +{ + struct varpool_node key, *alias_node, *decl_node, **slot; + +#ifndef ASM_OUTPUT_DEF + /* If aliases aren't supported by the assembler, fail. */ + return false; +#endif + + gcc_assert (TREE_CODE (decl) == VAR_DECL); + gcc_assert (TREE_CODE (alias) == VAR_DECL); + /* Make sure the hash table has been created. */ + decl_node = varpool_node (decl); + + key.decl = alias; + + slot = (struct varpool_node **) htab_find_slot (varpool_hash, &key, INSERT); + + /* If the varpool_node has been already created, fail. */ + if (*slot) + return false; + + alias_node = GGC_CNEW (struct varpool_node); + alias_node->decl = alias; + alias_node->alias = 1; + alias_node->extra_name = decl_node; + alias_node->next = decl_node->extra_name; + decl_node->extra_name = alias_node; + *slot = alias_node; + return true; +} + #include "gt-varpool.h" |