annotate gcc/ipa-utils.h @ 158:494b0b89df80 default tip

...
author Shinji KONO <kono@ie.u-ryukyu.ac.jp>
date Mon, 25 May 2020 18:13:55 +0900
parents 1830386684a0
children
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
rev   line source
0
a06113de4d67 first commit
kent <kent@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
1 /* Utilities for ipa analysis.
145
1830386684a0 gcc-9.2.0
anatofuz
parents: 131
diff changeset
2 Copyright (C) 2004-2020 Free Software Foundation, Inc.
0
a06113de4d67 first commit
kent <kent@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
3 Contributed by Kenneth Zadeck <zadeck@naturalbridge.com>
a06113de4d67 first commit
kent <kent@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
4
a06113de4d67 first commit
kent <kent@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
5 This file is part of GCC.
a06113de4d67 first commit
kent <kent@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
6
a06113de4d67 first commit
kent <kent@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
7 GCC is free software; you can redistribute it and/or modify it under
a06113de4d67 first commit
kent <kent@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
8 the terms of the GNU General Public License as published by the Free
a06113de4d67 first commit
kent <kent@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
9 Software Foundation; either version 3, or (at your option) any later
a06113de4d67 first commit
kent <kent@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
10 version.
a06113de4d67 first commit
kent <kent@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
11
a06113de4d67 first commit
kent <kent@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
12 GCC is distributed in the hope that it will be useful, but WITHOUT ANY
a06113de4d67 first commit
kent <kent@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
13 WARRANTY; without even the implied warranty of MERCHANTABILITY or
a06113de4d67 first commit
kent <kent@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
14 FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License
a06113de4d67 first commit
kent <kent@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
15 for more details.
a06113de4d67 first commit
kent <kent@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
16
a06113de4d67 first commit
kent <kent@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
17 You should have received a copy of the GNU General Public License
a06113de4d67 first commit
kent <kent@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
18 along with GCC; see the file COPYING3. If not see
a06113de4d67 first commit
kent <kent@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
19 <http://www.gnu.org/licenses/>. */
a06113de4d67 first commit
kent <kent@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
20
a06113de4d67 first commit
kent <kent@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
21 #ifndef GCC_IPA_UTILS_H
a06113de4d67 first commit
kent <kent@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
22 #define GCC_IPA_UTILS_H
a06113de4d67 first commit
kent <kent@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
23
a06113de4d67 first commit
kent <kent@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
24 struct ipa_dfs_info {
a06113de4d67 first commit
kent <kent@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
25 int dfn_number;
a06113de4d67 first commit
kent <kent@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
26 int low_link;
111
kono
parents: 55
diff changeset
27 /* This field will have the samy value for any two nodes in the same strongly
kono
parents: 55
diff changeset
28 connected component. */
kono
parents: 55
diff changeset
29 int scc_no;
0
a06113de4d67 first commit
kent <kent@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
30 bool new_node;
a06113de4d67 first commit
kent <kent@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
31 bool on_stack;
a06113de4d67 first commit
kent <kent@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
32 struct cgraph_node* next_cycle;
a06113de4d67 first commit
kent <kent@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
33 PTR aux;
a06113de4d67 first commit
kent <kent@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
34 };
a06113de4d67 first commit
kent <kent@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
35
a06113de4d67 first commit
kent <kent@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
36
111
kono
parents: 55
diff changeset
37 /* In ipa-utils.c */
kono
parents: 55
diff changeset
38 void ipa_print_order (FILE*, const char *, struct cgraph_node**, int);
145
1830386684a0 gcc-9.2.0
anatofuz
parents: 131
diff changeset
39 int ipa_reduced_postorder (struct cgraph_node **, bool,
111
kono
parents: 55
diff changeset
40 bool (*ignore_edge) (struct cgraph_edge *));
kono
parents: 55
diff changeset
41 void ipa_free_postorder_info (void);
kono
parents: 55
diff changeset
42 vec<cgraph_node *> ipa_get_nodes_in_cycle (struct cgraph_node *);
kono
parents: 55
diff changeset
43 bool ipa_edge_within_scc (struct cgraph_edge *);
kono
parents: 55
diff changeset
44 int ipa_reverse_postorder (struct cgraph_node **);
kono
parents: 55
diff changeset
45 tree get_base_var (tree);
kono
parents: 55
diff changeset
46 void ipa_merge_profiles (struct cgraph_node *dst,
kono
parents: 55
diff changeset
47 struct cgraph_node *src, bool preserve_body = false);
kono
parents: 55
diff changeset
48 bool recursive_call_p (tree, tree);
0
a06113de4d67 first commit
kent <kent@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
49
111
kono
parents: 55
diff changeset
50 /* In ipa-profile.c */
kono
parents: 55
diff changeset
51 bool ipa_propagate_frequency (struct cgraph_node *node);
kono
parents: 55
diff changeset
52
kono
parents: 55
diff changeset
53 /* In ipa-devirt.c */
kono
parents: 55
diff changeset
54
kono
parents: 55
diff changeset
55 struct odr_type_d;
kono
parents: 55
diff changeset
56 typedef odr_type_d *odr_type;
145
1830386684a0 gcc-9.2.0
anatofuz
parents: 131
diff changeset
57 extern bool thunk_expansion;
111
kono
parents: 55
diff changeset
58 void build_type_inheritance_graph (void);
131
84e7813d76e9 gcc-8.2
mir3636
parents: 111
diff changeset
59 void rebuild_type_inheritance_graph (void);
111
kono
parents: 55
diff changeset
60 void update_type_inheritance_graph (void);
kono
parents: 55
diff changeset
61 vec <cgraph_node *>
kono
parents: 55
diff changeset
62 possible_polymorphic_call_targets (tree, HOST_WIDE_INT,
kono
parents: 55
diff changeset
63 ipa_polymorphic_call_context,
kono
parents: 55
diff changeset
64 bool *copletep = NULL,
kono
parents: 55
diff changeset
65 void **cache_token = NULL,
kono
parents: 55
diff changeset
66 bool speuclative = false);
kono
parents: 55
diff changeset
67 odr_type get_odr_type (tree, bool insert = false);
kono
parents: 55
diff changeset
68 bool odr_type_p (const_tree);
kono
parents: 55
diff changeset
69 bool possible_polymorphic_call_target_p (tree ref, gimple *stmt, struct cgraph_node *n);
kono
parents: 55
diff changeset
70 void dump_possible_polymorphic_call_targets (FILE *, tree, HOST_WIDE_INT,
145
1830386684a0 gcc-9.2.0
anatofuz
parents: 131
diff changeset
71 const ipa_polymorphic_call_context &,
1830386684a0 gcc-9.2.0
anatofuz
parents: 131
diff changeset
72 bool verbose = true);
111
kono
parents: 55
diff changeset
73 bool possible_polymorphic_call_target_p (tree, HOST_WIDE_INT,
kono
parents: 55
diff changeset
74 const ipa_polymorphic_call_context &,
kono
parents: 55
diff changeset
75 struct cgraph_node *);
kono
parents: 55
diff changeset
76 tree polymorphic_ctor_dtor_p (tree, bool);
kono
parents: 55
diff changeset
77 tree inlined_polymorphic_ctor_dtor_block_p (tree, bool);
kono
parents: 55
diff changeset
78 bool decl_maybe_in_construction_p (tree, tree, gimple *, tree);
kono
parents: 55
diff changeset
79 tree vtable_pointer_value_to_binfo (const_tree);
kono
parents: 55
diff changeset
80 bool vtable_pointer_value_to_vtable (const_tree, tree *, unsigned HOST_WIDE_INT *);
kono
parents: 55
diff changeset
81 tree subbinfo_with_vtable_at_offset (tree, unsigned HOST_WIDE_INT, tree);
kono
parents: 55
diff changeset
82 void compare_virtual_tables (varpool_node *, varpool_node *);
kono
parents: 55
diff changeset
83 bool type_all_derivations_known_p (const_tree);
kono
parents: 55
diff changeset
84 bool type_known_to_have_no_derivations_p (tree);
kono
parents: 55
diff changeset
85 bool contains_polymorphic_type_p (const_tree);
kono
parents: 55
diff changeset
86 void register_odr_type (tree);
kono
parents: 55
diff changeset
87 bool types_must_be_same_for_odr (tree, tree);
145
1830386684a0 gcc-9.2.0
anatofuz
parents: 131
diff changeset
88 bool types_odr_comparable (tree, tree);
111
kono
parents: 55
diff changeset
89 cgraph_node *try_speculative_devirtualization (tree, HOST_WIDE_INT,
kono
parents: 55
diff changeset
90 ipa_polymorphic_call_context);
kono
parents: 55
diff changeset
91 void warn_types_mismatch (tree t1, tree t2, location_t loc1 = UNKNOWN_LOCATION,
kono
parents: 55
diff changeset
92 location_t loc2 = UNKNOWN_LOCATION);
kono
parents: 55
diff changeset
93 bool odr_or_derived_type_p (const_tree t);
kono
parents: 55
diff changeset
94 bool odr_types_equivalent_p (tree type1, tree type2);
145
1830386684a0 gcc-9.2.0
anatofuz
parents: 131
diff changeset
95 bool odr_type_violation_reported_p (tree type);
1830386684a0 gcc-9.2.0
anatofuz
parents: 131
diff changeset
96 tree prevailing_odr_type (tree type);
1830386684a0 gcc-9.2.0
anatofuz
parents: 131
diff changeset
97 void enable_odr_based_tbaa (tree type);
1830386684a0 gcc-9.2.0
anatofuz
parents: 131
diff changeset
98 bool odr_based_tbaa_p (const_tree type);
1830386684a0 gcc-9.2.0
anatofuz
parents: 131
diff changeset
99 void set_type_canonical_for_odr_type (tree type, tree canonical);
111
kono
parents: 55
diff changeset
100
kono
parents: 55
diff changeset
101 /* Return vector containing possible targets of polymorphic call E.
kono
parents: 55
diff changeset
102 If COMPLETEP is non-NULL, store true if the list is complete.
kono
parents: 55
diff changeset
103 CACHE_TOKEN (if non-NULL) will get stored to an unique ID of entry
kono
parents: 55
diff changeset
104 in the target cache. If user needs to visit every target list
kono
parents: 55
diff changeset
105 just once, it can memoize them.
kono
parents: 55
diff changeset
106
kono
parents: 55
diff changeset
107 Returned vector is placed into cache. It is NOT caller's responsibility
kono
parents: 55
diff changeset
108 to free it. The vector can be freed on cgraph_remove_node call if
kono
parents: 55
diff changeset
109 the particular node is a virtual function present in the cache. */
kono
parents: 55
diff changeset
110
kono
parents: 55
diff changeset
111 inline vec <cgraph_node *>
kono
parents: 55
diff changeset
112 possible_polymorphic_call_targets (struct cgraph_edge *e,
kono
parents: 55
diff changeset
113 bool *completep = NULL,
kono
parents: 55
diff changeset
114 void **cache_token = NULL,
kono
parents: 55
diff changeset
115 bool speculative = false)
kono
parents: 55
diff changeset
116 {
kono
parents: 55
diff changeset
117 ipa_polymorphic_call_context context(e);
kono
parents: 55
diff changeset
118
kono
parents: 55
diff changeset
119 return possible_polymorphic_call_targets (e->indirect_info->otr_type,
kono
parents: 55
diff changeset
120 e->indirect_info->otr_token,
kono
parents: 55
diff changeset
121 context,
kono
parents: 55
diff changeset
122 completep, cache_token,
kono
parents: 55
diff changeset
123 speculative);
kono
parents: 55
diff changeset
124 }
kono
parents: 55
diff changeset
125
kono
parents: 55
diff changeset
126 /* Same as above but taking OBJ_TYPE_REF as an parameter. */
kono
parents: 55
diff changeset
127
kono
parents: 55
diff changeset
128 inline vec <cgraph_node *>
kono
parents: 55
diff changeset
129 possible_polymorphic_call_targets (tree ref,
kono
parents: 55
diff changeset
130 gimple *call,
kono
parents: 55
diff changeset
131 bool *completep = NULL,
kono
parents: 55
diff changeset
132 void **cache_token = NULL)
kono
parents: 55
diff changeset
133 {
kono
parents: 55
diff changeset
134 ipa_polymorphic_call_context context (current_function_decl, ref, call);
kono
parents: 55
diff changeset
135
kono
parents: 55
diff changeset
136 return possible_polymorphic_call_targets (obj_type_ref_class (ref),
kono
parents: 55
diff changeset
137 tree_to_uhwi
kono
parents: 55
diff changeset
138 (OBJ_TYPE_REF_TOKEN (ref)),
kono
parents: 55
diff changeset
139 context,
kono
parents: 55
diff changeset
140 completep, cache_token);
kono
parents: 55
diff changeset
141 }
kono
parents: 55
diff changeset
142
kono
parents: 55
diff changeset
143 /* Dump possible targets of a polymorphic call E into F. */
kono
parents: 55
diff changeset
144
kono
parents: 55
diff changeset
145 inline void
145
1830386684a0 gcc-9.2.0
anatofuz
parents: 131
diff changeset
146 dump_possible_polymorphic_call_targets (FILE *f, struct cgraph_edge *e,
1830386684a0 gcc-9.2.0
anatofuz
parents: 131
diff changeset
147 bool verbose = true)
111
kono
parents: 55
diff changeset
148 {
kono
parents: 55
diff changeset
149 ipa_polymorphic_call_context context(e);
kono
parents: 55
diff changeset
150
kono
parents: 55
diff changeset
151 dump_possible_polymorphic_call_targets (f, e->indirect_info->otr_type,
kono
parents: 55
diff changeset
152 e->indirect_info->otr_token,
145
1830386684a0 gcc-9.2.0
anatofuz
parents: 131
diff changeset
153 context, verbose);
111
kono
parents: 55
diff changeset
154 }
kono
parents: 55
diff changeset
155
kono
parents: 55
diff changeset
156 /* Return true if N can be possibly target of a polymorphic call of
kono
parents: 55
diff changeset
157 E. */
0
a06113de4d67 first commit
kent <kent@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
158
111
kono
parents: 55
diff changeset
159 inline bool
kono
parents: 55
diff changeset
160 possible_polymorphic_call_target_p (struct cgraph_edge *e,
kono
parents: 55
diff changeset
161 struct cgraph_node *n)
kono
parents: 55
diff changeset
162 {
kono
parents: 55
diff changeset
163 ipa_polymorphic_call_context context(e);
kono
parents: 55
diff changeset
164
kono
parents: 55
diff changeset
165 return possible_polymorphic_call_target_p (e->indirect_info->otr_type,
kono
parents: 55
diff changeset
166 e->indirect_info->otr_token,
kono
parents: 55
diff changeset
167 context, n);
kono
parents: 55
diff changeset
168 }
kono
parents: 55
diff changeset
169
kono
parents: 55
diff changeset
170 /* Return true if BINFO corresponds to a type with virtual methods.
kono
parents: 55
diff changeset
171
kono
parents: 55
diff changeset
172 Every type has several BINFOs. One is the BINFO associated by the type
kono
parents: 55
diff changeset
173 while other represents bases of derived types. The BINFOs representing
kono
parents: 55
diff changeset
174 bases do not have BINFO_VTABLE pointer set when this is the single
kono
parents: 55
diff changeset
175 inheritance (because vtables are shared). Look up the BINFO of type
kono
parents: 55
diff changeset
176 and check presence of its vtable. */
kono
parents: 55
diff changeset
177
kono
parents: 55
diff changeset
178 inline bool
kono
parents: 55
diff changeset
179 polymorphic_type_binfo_p (const_tree binfo)
kono
parents: 55
diff changeset
180 {
kono
parents: 55
diff changeset
181 return (BINFO_TYPE (binfo) && TYPE_BINFO (BINFO_TYPE (binfo))
kono
parents: 55
diff changeset
182 && BINFO_VTABLE (TYPE_BINFO (BINFO_TYPE (binfo))));
kono
parents: 55
diff changeset
183 }
kono
parents: 55
diff changeset
184
kono
parents: 55
diff changeset
185 /* Return true if T is a type with linkage defined. */
kono
parents: 55
diff changeset
186
kono
parents: 55
diff changeset
187 inline bool
kono
parents: 55
diff changeset
188 type_with_linkage_p (const_tree t)
kono
parents: 55
diff changeset
189 {
145
1830386684a0 gcc-9.2.0
anatofuz
parents: 131
diff changeset
190 gcc_checking_assert (TYPE_MAIN_VARIANT (t) == t);
131
84e7813d76e9 gcc-8.2
mir3636
parents: 111
diff changeset
191 if (!TYPE_NAME (t) || TREE_CODE (TYPE_NAME (t)) != TYPE_DECL)
111
kono
parents: 55
diff changeset
192 return false;
131
84e7813d76e9 gcc-8.2
mir3636
parents: 111
diff changeset
193
145
1830386684a0 gcc-9.2.0
anatofuz
parents: 131
diff changeset
194 /* After free_lang_data was run we can recongize
131
84e7813d76e9 gcc-8.2
mir3636
parents: 111
diff changeset
195 types with linkage by presence of mangled name. */
84e7813d76e9 gcc-8.2
mir3636
parents: 111
diff changeset
196 if (DECL_ASSEMBLER_NAME_SET_P (TYPE_NAME (t)))
84e7813d76e9 gcc-8.2
mir3636
parents: 111
diff changeset
197 return true;
84e7813d76e9 gcc-8.2
mir3636
parents: 111
diff changeset
198
111
kono
parents: 55
diff changeset
199 if (in_lto_p)
131
84e7813d76e9 gcc-8.2
mir3636
parents: 111
diff changeset
200 return false;
145
1830386684a0 gcc-9.2.0
anatofuz
parents: 131
diff changeset
201
131
84e7813d76e9 gcc-8.2
mir3636
parents: 111
diff changeset
202 /* We used to check for TYPE_STUB_DECL but that is set to NULL for forward
84e7813d76e9 gcc-8.2
mir3636
parents: 111
diff changeset
203 declarations. */
111
kono
parents: 55
diff changeset
204
kono
parents: 55
diff changeset
205 if (!RECORD_OR_UNION_TYPE_P (t) && TREE_CODE (t) != ENUMERAL_TYPE)
kono
parents: 55
diff changeset
206 return false;
kono
parents: 55
diff changeset
207
kono
parents: 55
diff changeset
208 /* Builtin types do not define linkage, their TYPE_CONTEXT is NULL. */
kono
parents: 55
diff changeset
209 if (!TYPE_CONTEXT (t))
kono
parents: 55
diff changeset
210 return false;
kono
parents: 55
diff changeset
211
145
1830386684a0 gcc-9.2.0
anatofuz
parents: 131
diff changeset
212 gcc_checking_assert (TREE_CODE (t) == ENUMERAL_TYPE || TYPE_CXX_ODR_P (t));
1830386684a0 gcc-9.2.0
anatofuz
parents: 131
diff changeset
213
111
kono
parents: 55
diff changeset
214 return true;
kono
parents: 55
diff changeset
215 }
kono
parents: 55
diff changeset
216
kono
parents: 55
diff changeset
217 /* Return true if T is in anonymous namespace.
kono
parents: 55
diff changeset
218 This works only on those C++ types with linkage defined. */
kono
parents: 55
diff changeset
219
kono
parents: 55
diff changeset
220 inline bool
kono
parents: 55
diff changeset
221 type_in_anonymous_namespace_p (const_tree t)
kono
parents: 55
diff changeset
222 {
kono
parents: 55
diff changeset
223 gcc_checking_assert (type_with_linkage_p (t));
kono
parents: 55
diff changeset
224
131
84e7813d76e9 gcc-8.2
mir3636
parents: 111
diff changeset
225 /* free_lang_data clears TYPE_STUB_DECL but sets assembler name to
84e7813d76e9 gcc-8.2
mir3636
parents: 111
diff changeset
226 "<anon>" */
84e7813d76e9 gcc-8.2
mir3636
parents: 111
diff changeset
227 if (DECL_ASSEMBLER_NAME_SET_P (TYPE_NAME (t)))
84e7813d76e9 gcc-8.2
mir3636
parents: 111
diff changeset
228 return !strcmp ("<anon>",
84e7813d76e9 gcc-8.2
mir3636
parents: 111
diff changeset
229 IDENTIFIER_POINTER
84e7813d76e9 gcc-8.2
mir3636
parents: 111
diff changeset
230 (DECL_ASSEMBLER_NAME (TYPE_NAME (t))));
84e7813d76e9 gcc-8.2
mir3636
parents: 111
diff changeset
231 else if (!TYPE_STUB_DECL (t))
84e7813d76e9 gcc-8.2
mir3636
parents: 111
diff changeset
232 return false;
84e7813d76e9 gcc-8.2
mir3636
parents: 111
diff changeset
233 else
84e7813d76e9 gcc-8.2
mir3636
parents: 111
diff changeset
234 return !TREE_PUBLIC (TYPE_STUB_DECL (t));
111
kono
parents: 55
diff changeset
235 }
kono
parents: 55
diff changeset
236
kono
parents: 55
diff changeset
237 /* Return true of T is type with One Definition Rule info attached.
kono
parents: 55
diff changeset
238 It means that either it is anonymous type or it has assembler name
kono
parents: 55
diff changeset
239 set. */
kono
parents: 55
diff changeset
240
kono
parents: 55
diff changeset
241 inline bool
kono
parents: 55
diff changeset
242 odr_type_p (const_tree t)
kono
parents: 55
diff changeset
243 {
kono
parents: 55
diff changeset
244 /* We do not have this information when not in LTO, but we do not need
kono
parents: 55
diff changeset
245 to care, since it is used only for type merging. */
kono
parents: 55
diff changeset
246 gcc_checking_assert (in_lto_p || flag_lto);
145
1830386684a0 gcc-9.2.0
anatofuz
parents: 131
diff changeset
247 return TYPE_NAME (t) && TREE_CODE (TYPE_NAME (t)) == TYPE_DECL
1830386684a0 gcc-9.2.0
anatofuz
parents: 131
diff changeset
248 && DECL_ASSEMBLER_NAME_SET_P (TYPE_NAME (t));
1830386684a0 gcc-9.2.0
anatofuz
parents: 131
diff changeset
249 }
111
kono
parents: 55
diff changeset
250
145
1830386684a0 gcc-9.2.0
anatofuz
parents: 131
diff changeset
251 /* If TYPE has mangled ODR name, return it. Otherwise return NULL.
1830386684a0 gcc-9.2.0
anatofuz
parents: 131
diff changeset
252 The function works only when free_lang_data is run. */
111
kono
parents: 55
diff changeset
253
145
1830386684a0 gcc-9.2.0
anatofuz
parents: 131
diff changeset
254 inline const char *
1830386684a0 gcc-9.2.0
anatofuz
parents: 131
diff changeset
255 get_odr_name_for_type (tree type)
1830386684a0 gcc-9.2.0
anatofuz
parents: 131
diff changeset
256 {
1830386684a0 gcc-9.2.0
anatofuz
parents: 131
diff changeset
257 tree type_name = TYPE_NAME (type);
1830386684a0 gcc-9.2.0
anatofuz
parents: 131
diff changeset
258 if (type_name == NULL_TREE
1830386684a0 gcc-9.2.0
anatofuz
parents: 131
diff changeset
259 || TREE_CODE (type_name) != TYPE_DECL
1830386684a0 gcc-9.2.0
anatofuz
parents: 131
diff changeset
260 || !DECL_ASSEMBLER_NAME_SET_P (type_name))
1830386684a0 gcc-9.2.0
anatofuz
parents: 131
diff changeset
261 return NULL;
1830386684a0 gcc-9.2.0
anatofuz
parents: 131
diff changeset
262
1830386684a0 gcc-9.2.0
anatofuz
parents: 131
diff changeset
263 return IDENTIFIER_POINTER (DECL_ASSEMBLER_NAME (type_name));
111
kono
parents: 55
diff changeset
264 }
55
77e2b8dfacca update it from 4.4.3 to 4.5.0
ryoma <e075725@ie.u-ryukyu.ac.jp>
parents: 19
diff changeset
265
0
a06113de4d67 first commit
kent <kent@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
266 #endif /* GCC_IPA_UTILS_H */