2011-04-04 Tobias Burnus <burnus@net-b.de>
[official-gcc.git] / gcc / cp / cp-objcp-common.c
blob6e042694a8760d0eb0069784f2e4d60bb8cfa952
1 /* Some code common to C++ and ObjC++ front ends.
2 Copyright (C) 2004, 2007, 2008, 2009, 2010, 2011
3 Free Software Foundation, Inc.
4 Contributed by Ziemowit Laski <zlaski@apple.com>
6 This file is part of GCC.
8 GCC is free software; you can redistribute it and/or modify it under
9 the terms of the GNU General Public License as published by the Free
10 Software Foundation; either version 3, or (at your option) any later
11 version.
13 GCC is distributed in the hope that it will be useful, but WITHOUT ANY
14 WARRANTY; without even the implied warranty of MERCHANTABILITY or
15 FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License
16 for more details.
18 You should have received a copy of the GNU General Public License
19 along with GCC; see the file COPYING3. If not see
20 <http://www.gnu.org/licenses/>. */
22 #include "config.h"
23 #include "system.h"
24 #include "coretypes.h"
25 #include "tm.h"
26 #include "tree.h"
27 #include "cp-tree.h"
28 #include "c-family/c-common.h"
29 #include "langhooks.h"
30 #include "langhooks-def.h"
31 #include "diagnostic.h"
32 #include "debug.h"
33 #include "cxx-pretty-print.h"
34 #include "cp-objcp-common.h"
36 /* Special routine to get the alias set for C++. */
38 alias_set_type
39 cxx_get_alias_set (tree t)
41 if (IS_FAKE_BASE_TYPE (t))
42 /* The base variant of a type must be in the same alias set as the
43 complete type. */
44 return get_alias_set (TYPE_CONTEXT (t));
46 /* Punt on PMFs until we canonicalize functions properly. */
47 if (TYPE_PTRMEMFUNC_P (t)
48 || (POINTER_TYPE_P (t)
49 && TYPE_PTRMEMFUNC_P (TREE_TYPE (t))))
50 return 0;
52 return c_common_get_alias_set (t);
55 /* Called from check_global_declarations. */
57 bool
58 cxx_warn_unused_global_decl (const_tree decl)
60 if (TREE_CODE (decl) == FUNCTION_DECL && DECL_DECLARED_INLINE_P (decl))
61 return false;
62 if (DECL_IN_SYSTEM_HEADER (decl))
63 return false;
65 /* Const variables take the place of #defines in C++. */
66 if (TREE_CODE (decl) == VAR_DECL && TREE_READONLY (decl))
67 return false;
69 return true;
72 /* Langhook for tree_size: determine size of our 'x' and 'c' nodes. */
73 size_t
74 cp_tree_size (enum tree_code code)
76 switch (code)
78 case PTRMEM_CST: return sizeof (struct ptrmem_cst);
79 case BASELINK: return sizeof (struct tree_baselink);
80 case TEMPLATE_PARM_INDEX: return sizeof (template_parm_index);
81 case DEFAULT_ARG: return sizeof (struct tree_default_arg);
82 case OVERLOAD: return sizeof (struct tree_overload);
83 case STATIC_ASSERT: return sizeof (struct tree_static_assert);
84 case TYPE_ARGUMENT_PACK:
85 case TYPE_PACK_EXPANSION:
86 return sizeof (struct tree_common);
88 case NONTYPE_ARGUMENT_PACK:
89 case EXPR_PACK_EXPANSION:
90 return sizeof (struct tree_exp);
92 case ARGUMENT_PACK_SELECT:
93 return sizeof (struct tree_argument_pack_select);
95 case TRAIT_EXPR:
96 return sizeof (struct tree_trait_expr);
98 case LAMBDA_EXPR: return sizeof (struct tree_lambda_expr);
100 case TEMPLATE_INFO: return sizeof (struct tree_template_info);
102 default:
103 gcc_unreachable ();
105 /* NOTREACHED */
108 /* Returns true if T is a variably modified type, in the sense of C99.
109 FN is as passed to variably_modified_p.
110 This routine needs only check cases that cannot be handled by the
111 language-independent logic in tree.c. */
113 bool
114 cp_var_mod_type_p (tree type, tree fn)
116 /* If TYPE is a pointer-to-member, it is variably modified if either
117 the class or the member are variably modified. */
118 if (TYPE_PTR_TO_MEMBER_P (type))
119 return (variably_modified_type_p (TYPE_PTRMEM_CLASS_TYPE (type), fn)
120 || variably_modified_type_p (TYPE_PTRMEM_POINTED_TO_TYPE (type),
121 fn));
123 /* All other types are not variably modified. */
124 return false;
127 /* Construct a C++-aware pretty-printer for CONTEXT. It is assumed
128 that CONTEXT->printer is an already constructed basic pretty_printer. */
129 void
130 cxx_initialize_diagnostics (diagnostic_context *context)
132 pretty_printer *base;
133 cxx_pretty_printer *pp;
135 c_common_initialize_diagnostics (context);
137 base = context->printer;
138 pp = XNEW (cxx_pretty_printer);
139 memcpy (pp_base (pp), base, sizeof (pretty_printer));
140 pp_cxx_pretty_printer_init (pp);
141 context->printer = (pretty_printer *) pp;
143 /* It is safe to free this object because it was previously malloc()'d. */
144 free (base);
147 /* This compares two types for equivalence ("compatible" in C-based languages).
148 This routine should only return 1 if it is sure. It should not be used
149 in contexts where erroneously returning 0 causes problems. */
152 cxx_types_compatible_p (tree x, tree y)
154 return same_type_ignoring_top_level_qualifiers_p (x, y);
157 /* Return true if DECL is explicit member function. */
159 bool
160 cp_function_decl_explicit_p (tree decl)
162 return (decl
163 && FUNCTION_FIRST_USER_PARMTYPE (decl) != void_list_node
164 && DECL_LANG_SPECIFIC (STRIP_TEMPLATE (decl))
165 && DECL_NONCONVERTING_P (decl));
168 /* Stubs to keep c-opts.c happy. */
169 void
170 push_file_scope (void)
174 void
175 pop_file_scope (void)
179 /* c-pragma.c needs to query whether a decl has extern "C" linkage. */
180 bool
181 has_c_linkage (const_tree decl)
183 return DECL_EXTERN_C_P (decl);
186 static GTY ((if_marked ("tree_decl_map_marked_p"), param_is (struct tree_decl_map)))
187 htab_t shadowed_var_for_decl;
189 /* Lookup a shadowed var for FROM, and return it if we find one. */
191 tree
192 decl_shadowed_for_var_lookup (tree from)
194 struct tree_decl_map *h, in;
195 in.base.from = from;
197 h = (struct tree_decl_map *)
198 htab_find_with_hash (shadowed_var_for_decl, &in, DECL_UID (from));
199 if (h)
200 return h->to;
201 return NULL_TREE;
204 /* Insert a mapping FROM->TO in the shadowed var hashtable. */
206 void
207 decl_shadowed_for_var_insert (tree from, tree to)
209 struct tree_decl_map *h;
210 void **loc;
212 h = ggc_alloc_tree_decl_map ();
213 h->base.from = from;
214 h->to = to;
215 loc = htab_find_slot_with_hash (shadowed_var_for_decl, h, DECL_UID (from),
216 INSERT);
217 *(struct tree_decl_map **) loc = h;
220 void
221 init_shadowed_var_for_decl (void)
223 shadowed_var_for_decl = htab_create_ggc (512, tree_decl_map_hash,
224 tree_decl_map_eq, 0);
228 #include "gt-cp-cp-objcp-common.h"