annotate gcc/ipa.c @ 111:04ced10e8804

gcc 7
author kono
date Fri, 27 Oct 2017 22:46:09 +0900
parents f6334be47118
children 84e7813d76e9
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 /* Basic IPA optimizations and utilities.
111
kono
parents: 67
diff changeset
2 Copyright (C) 2003-2017 Free Software Foundation, Inc.
0
a06113de4d67 first commit
kent <kent@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
3
a06113de4d67 first commit
kent <kent@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
4 This file is part of GCC.
a06113de4d67 first commit
kent <kent@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
5
a06113de4d67 first commit
kent <kent@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
6 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
7 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
8 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
9 version.
a06113de4d67 first commit
kent <kent@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
10
a06113de4d67 first commit
kent <kent@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
11 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
12 WARRANTY; without even the implied warranty of MERCHANTABILITY or
a06113de4d67 first commit
kent <kent@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
13 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
14 for more details.
a06113de4d67 first commit
kent <kent@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
15
a06113de4d67 first commit
kent <kent@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
16 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
17 along with GCC; see the file COPYING3. If not see
a06113de4d67 first commit
kent <kent@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
18 <http://www.gnu.org/licenses/>. */
a06113de4d67 first commit
kent <kent@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
19
a06113de4d67 first commit
kent <kent@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
20 #include "config.h"
a06113de4d67 first commit
kent <kent@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
21 #include "system.h"
a06113de4d67 first commit
kent <kent@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
22 #include "coretypes.h"
111
kono
parents: 67
diff changeset
23 #include "backend.h"
kono
parents: 67
diff changeset
24 #include "target.h"
kono
parents: 67
diff changeset
25 #include "tree.h"
55
77e2b8dfacca update it from 4.4.3 to 4.5.0
ryoma <e075725@ie.u-ryukyu.ac.jp>
parents: 0
diff changeset
26 #include "gimple.h"
111
kono
parents: 67
diff changeset
27 #include "alloc-pool.h"
kono
parents: 67
diff changeset
28 #include "tree-pass.h"
kono
parents: 67
diff changeset
29 #include "stringpool.h"
kono
parents: 67
diff changeset
30 #include "cgraph.h"
kono
parents: 67
diff changeset
31 #include "gimplify.h"
67
f6334be47118 update gcc from gcc-4.6-20100522 to gcc-4.6-20110318
nobuyasu <dimolto@cr.ie.u-ryukyu.ac.jp>
parents: 63
diff changeset
32 #include "tree-iterator.h"
111
kono
parents: 67
diff changeset
33 #include "ipa-utils.h"
kono
parents: 67
diff changeset
34 #include "symbol-summary.h"
kono
parents: 67
diff changeset
35 #include "tree-vrp.h"
kono
parents: 67
diff changeset
36 #include "ipa-prop.h"
kono
parents: 67
diff changeset
37 #include "ipa-fnsummary.h"
kono
parents: 67
diff changeset
38 #include "dbgcnt.h"
kono
parents: 67
diff changeset
39 #include "debug.h"
kono
parents: 67
diff changeset
40 #include "stringpool.h"
kono
parents: 67
diff changeset
41 #include "attribs.h"
0
a06113de4d67 first commit
kent <kent@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
42
111
kono
parents: 67
diff changeset
43 /* Return true when NODE has ADDR reference. */
kono
parents: 67
diff changeset
44
kono
parents: 67
diff changeset
45 static bool
kono
parents: 67
diff changeset
46 has_addr_references_p (struct cgraph_node *node,
kono
parents: 67
diff changeset
47 void *)
kono
parents: 67
diff changeset
48 {
kono
parents: 67
diff changeset
49 int i;
kono
parents: 67
diff changeset
50 struct ipa_ref *ref = NULL;
kono
parents: 67
diff changeset
51
kono
parents: 67
diff changeset
52 for (i = 0; node->iterate_referring (i, ref); i++)
kono
parents: 67
diff changeset
53 if (ref->use == IPA_REF_ADDR)
kono
parents: 67
diff changeset
54 return true;
kono
parents: 67
diff changeset
55 return false;
kono
parents: 67
diff changeset
56 }
kono
parents: 67
diff changeset
57
kono
parents: 67
diff changeset
58 /* Return true when NODE can be target of an indirect call. */
kono
parents: 67
diff changeset
59
kono
parents: 67
diff changeset
60 static bool
kono
parents: 67
diff changeset
61 is_indirect_call_target_p (struct cgraph_node *node, void *)
kono
parents: 67
diff changeset
62 {
kono
parents: 67
diff changeset
63 return node->indirect_call_target;
0
a06113de4d67 first commit
kent <kent@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
64 }
a06113de4d67 first commit
kent <kent@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
65
55
77e2b8dfacca update it from 4.4.3 to 4.5.0
ryoma <e075725@ie.u-ryukyu.ac.jp>
parents: 0
diff changeset
66 /* Look for all functions inlined to NODE and update their inlined_to pointers
77e2b8dfacca update it from 4.4.3 to 4.5.0
ryoma <e075725@ie.u-ryukyu.ac.jp>
parents: 0
diff changeset
67 to INLINED_TO. */
77e2b8dfacca update it from 4.4.3 to 4.5.0
ryoma <e075725@ie.u-ryukyu.ac.jp>
parents: 0
diff changeset
68
77e2b8dfacca update it from 4.4.3 to 4.5.0
ryoma <e075725@ie.u-ryukyu.ac.jp>
parents: 0
diff changeset
69 static void
77e2b8dfacca update it from 4.4.3 to 4.5.0
ryoma <e075725@ie.u-ryukyu.ac.jp>
parents: 0
diff changeset
70 update_inlined_to_pointer (struct cgraph_node *node, struct cgraph_node *inlined_to)
77e2b8dfacca update it from 4.4.3 to 4.5.0
ryoma <e075725@ie.u-ryukyu.ac.jp>
parents: 0
diff changeset
71 {
77e2b8dfacca update it from 4.4.3 to 4.5.0
ryoma <e075725@ie.u-ryukyu.ac.jp>
parents: 0
diff changeset
72 struct cgraph_edge *e;
77e2b8dfacca update it from 4.4.3 to 4.5.0
ryoma <e075725@ie.u-ryukyu.ac.jp>
parents: 0
diff changeset
73 for (e = node->callees; e; e = e->next_callee)
77e2b8dfacca update it from 4.4.3 to 4.5.0
ryoma <e075725@ie.u-ryukyu.ac.jp>
parents: 0
diff changeset
74 if (e->callee->global.inlined_to)
77e2b8dfacca update it from 4.4.3 to 4.5.0
ryoma <e075725@ie.u-ryukyu.ac.jp>
parents: 0
diff changeset
75 {
77e2b8dfacca update it from 4.4.3 to 4.5.0
ryoma <e075725@ie.u-ryukyu.ac.jp>
parents: 0
diff changeset
76 e->callee->global.inlined_to = inlined_to;
77e2b8dfacca update it from 4.4.3 to 4.5.0
ryoma <e075725@ie.u-ryukyu.ac.jp>
parents: 0
diff changeset
77 update_inlined_to_pointer (e->callee, inlined_to);
77e2b8dfacca update it from 4.4.3 to 4.5.0
ryoma <e075725@ie.u-ryukyu.ac.jp>
parents: 0
diff changeset
78 }
77e2b8dfacca update it from 4.4.3 to 4.5.0
ryoma <e075725@ie.u-ryukyu.ac.jp>
parents: 0
diff changeset
79 }
77e2b8dfacca update it from 4.4.3 to 4.5.0
ryoma <e075725@ie.u-ryukyu.ac.jp>
parents: 0
diff changeset
80
111
kono
parents: 67
diff changeset
81 /* Add symtab NODE to queue starting at FIRST.
63
b7f97abdc517 update gcc from gcc-4.5.0 to gcc-4.6
ryoma <e075725@ie.u-ryukyu.ac.jp>
parents: 55
diff changeset
82
b7f97abdc517 update gcc from gcc-4.5.0 to gcc-4.6
ryoma <e075725@ie.u-ryukyu.ac.jp>
parents: 55
diff changeset
83 The queue is linked via AUX pointers and terminated by pointer to 1.
b7f97abdc517 update gcc from gcc-4.5.0 to gcc-4.6
ryoma <e075725@ie.u-ryukyu.ac.jp>
parents: 55
diff changeset
84 We enqueue nodes at two occasions: when we find them reachable or when we find
b7f97abdc517 update gcc from gcc-4.5.0 to gcc-4.6
ryoma <e075725@ie.u-ryukyu.ac.jp>
parents: 55
diff changeset
85 their bodies needed for further clonning. In the second case we mark them
b7f97abdc517 update gcc from gcc-4.5.0 to gcc-4.6
ryoma <e075725@ie.u-ryukyu.ac.jp>
parents: 55
diff changeset
86 by pointer to 2 after processing so they are re-queue when they become
b7f97abdc517 update gcc from gcc-4.5.0 to gcc-4.6
ryoma <e075725@ie.u-ryukyu.ac.jp>
parents: 55
diff changeset
87 reachable. */
b7f97abdc517 update gcc from gcc-4.5.0 to gcc-4.6
ryoma <e075725@ie.u-ryukyu.ac.jp>
parents: 55
diff changeset
88
b7f97abdc517 update gcc from gcc-4.5.0 to gcc-4.6
ryoma <e075725@ie.u-ryukyu.ac.jp>
parents: 55
diff changeset
89 static void
111
kono
parents: 67
diff changeset
90 enqueue_node (symtab_node *node, symtab_node **first,
kono
parents: 67
diff changeset
91 hash_set<symtab_node *> *reachable)
63
b7f97abdc517 update gcc from gcc-4.5.0 to gcc-4.6
ryoma <e075725@ie.u-ryukyu.ac.jp>
parents: 55
diff changeset
92 {
b7f97abdc517 update gcc from gcc-4.5.0 to gcc-4.6
ryoma <e075725@ie.u-ryukyu.ac.jp>
parents: 55
diff changeset
93 /* Node is still in queue; do nothing. */
b7f97abdc517 update gcc from gcc-4.5.0 to gcc-4.6
ryoma <e075725@ie.u-ryukyu.ac.jp>
parents: 55
diff changeset
94 if (node->aux && node->aux != (void *) 2)
b7f97abdc517 update gcc from gcc-4.5.0 to gcc-4.6
ryoma <e075725@ie.u-ryukyu.ac.jp>
parents: 55
diff changeset
95 return;
b7f97abdc517 update gcc from gcc-4.5.0 to gcc-4.6
ryoma <e075725@ie.u-ryukyu.ac.jp>
parents: 55
diff changeset
96 /* Node was already processed as unreachable, re-enqueue
b7f97abdc517 update gcc from gcc-4.5.0 to gcc-4.6
ryoma <e075725@ie.u-ryukyu.ac.jp>
parents: 55
diff changeset
97 only if it became reachable now. */
111
kono
parents: 67
diff changeset
98 if (node->aux == (void *)2 && !reachable->contains (node))
63
b7f97abdc517 update gcc from gcc-4.5.0 to gcc-4.6
ryoma <e075725@ie.u-ryukyu.ac.jp>
parents: 55
diff changeset
99 return;
b7f97abdc517 update gcc from gcc-4.5.0 to gcc-4.6
ryoma <e075725@ie.u-ryukyu.ac.jp>
parents: 55
diff changeset
100 node->aux = *first;
b7f97abdc517 update gcc from gcc-4.5.0 to gcc-4.6
ryoma <e075725@ie.u-ryukyu.ac.jp>
parents: 55
diff changeset
101 *first = node;
b7f97abdc517 update gcc from gcc-4.5.0 to gcc-4.6
ryoma <e075725@ie.u-ryukyu.ac.jp>
parents: 55
diff changeset
102 }
b7f97abdc517 update gcc from gcc-4.5.0 to gcc-4.6
ryoma <e075725@ie.u-ryukyu.ac.jp>
parents: 55
diff changeset
103
b7f97abdc517 update gcc from gcc-4.5.0 to gcc-4.6
ryoma <e075725@ie.u-ryukyu.ac.jp>
parents: 55
diff changeset
104 /* Process references. */
b7f97abdc517 update gcc from gcc-4.5.0 to gcc-4.6
ryoma <e075725@ie.u-ryukyu.ac.jp>
parents: 55
diff changeset
105
b7f97abdc517 update gcc from gcc-4.5.0 to gcc-4.6
ryoma <e075725@ie.u-ryukyu.ac.jp>
parents: 55
diff changeset
106 static void
111
kono
parents: 67
diff changeset
107 process_references (symtab_node *snode,
kono
parents: 67
diff changeset
108 symtab_node **first,
kono
parents: 67
diff changeset
109 bool before_inlining_p,
kono
parents: 67
diff changeset
110 hash_set<symtab_node *> *reachable)
63
b7f97abdc517 update gcc from gcc-4.5.0 to gcc-4.6
ryoma <e075725@ie.u-ryukyu.ac.jp>
parents: 55
diff changeset
111 {
b7f97abdc517 update gcc from gcc-4.5.0 to gcc-4.6
ryoma <e075725@ie.u-ryukyu.ac.jp>
parents: 55
diff changeset
112 int i;
111
kono
parents: 67
diff changeset
113 struct ipa_ref *ref = NULL;
kono
parents: 67
diff changeset
114 for (i = 0; snode->iterate_reference (i, ref); i++)
63
b7f97abdc517 update gcc from gcc-4.5.0 to gcc-4.6
ryoma <e075725@ie.u-ryukyu.ac.jp>
parents: 55
diff changeset
115 {
111
kono
parents: 67
diff changeset
116 symtab_node *node = ref->referred;
kono
parents: 67
diff changeset
117 symtab_node *body = node->ultimate_alias_target ();
kono
parents: 67
diff changeset
118
kono
parents: 67
diff changeset
119 if (node->definition && !node->in_other_partition
kono
parents: 67
diff changeset
120 && ((!DECL_EXTERNAL (node->decl) || node->alias)
kono
parents: 67
diff changeset
121 || (((before_inlining_p
kono
parents: 67
diff changeset
122 && (TREE_CODE (node->decl) != FUNCTION_DECL
kono
parents: 67
diff changeset
123 || (TREE_CODE (node->decl) == FUNCTION_DECL
kono
parents: 67
diff changeset
124 && opt_for_fn (body->decl, optimize))
kono
parents: 67
diff changeset
125 || (symtab->state < IPA_SSA
kono
parents: 67
diff changeset
126 && lookup_attribute
kono
parents: 67
diff changeset
127 ("always_inline",
kono
parents: 67
diff changeset
128 DECL_ATTRIBUTES (body->decl))))))
kono
parents: 67
diff changeset
129 /* We use variable constructors during late compilation for
kono
parents: 67
diff changeset
130 constant folding. Keep references alive so partitioning
kono
parents: 67
diff changeset
131 knows about potential references. */
kono
parents: 67
diff changeset
132 || (VAR_P (node->decl)
kono
parents: 67
diff changeset
133 && flag_wpa
kono
parents: 67
diff changeset
134 && ctor_for_folding (node->decl)
kono
parents: 67
diff changeset
135 != error_mark_node))))
kono
parents: 67
diff changeset
136 {
kono
parents: 67
diff changeset
137 /* Be sure that we will not optimize out alias target
kono
parents: 67
diff changeset
138 body. */
kono
parents: 67
diff changeset
139 if (DECL_EXTERNAL (node->decl)
kono
parents: 67
diff changeset
140 && node->alias
kono
parents: 67
diff changeset
141 && before_inlining_p)
kono
parents: 67
diff changeset
142 reachable->add (body);
kono
parents: 67
diff changeset
143 reachable->add (node);
kono
parents: 67
diff changeset
144 }
kono
parents: 67
diff changeset
145 enqueue_node (node, first, reachable);
kono
parents: 67
diff changeset
146 }
kono
parents: 67
diff changeset
147 }
kono
parents: 67
diff changeset
148
kono
parents: 67
diff changeset
149 /* EDGE is an polymorphic call. If BEFORE_INLINING_P is set, mark
kono
parents: 67
diff changeset
150 all its potential targets as reachable to permit later inlining if
kono
parents: 67
diff changeset
151 devirtualization happens. After inlining still keep their declarations
kono
parents: 67
diff changeset
152 around, so we can devirtualize to a direct call.
kono
parents: 67
diff changeset
153
kono
parents: 67
diff changeset
154 Also try to make trivial devirutalization when no or only one target is
kono
parents: 67
diff changeset
155 possible. */
kono
parents: 67
diff changeset
156
kono
parents: 67
diff changeset
157 static void
kono
parents: 67
diff changeset
158 walk_polymorphic_call_targets (hash_set<void *> *reachable_call_targets,
kono
parents: 67
diff changeset
159 struct cgraph_edge *edge,
kono
parents: 67
diff changeset
160 symtab_node **first,
kono
parents: 67
diff changeset
161 hash_set<symtab_node *> *reachable,
kono
parents: 67
diff changeset
162 bool before_inlining_p)
kono
parents: 67
diff changeset
163 {
kono
parents: 67
diff changeset
164 unsigned int i;
kono
parents: 67
diff changeset
165 void *cache_token;
kono
parents: 67
diff changeset
166 bool final;
kono
parents: 67
diff changeset
167 vec <cgraph_node *>targets
kono
parents: 67
diff changeset
168 = possible_polymorphic_call_targets
kono
parents: 67
diff changeset
169 (edge, &final, &cache_token);
kono
parents: 67
diff changeset
170
kono
parents: 67
diff changeset
171 if (!reachable_call_targets->add (cache_token))
kono
parents: 67
diff changeset
172 {
kono
parents: 67
diff changeset
173 for (i = 0; i < targets.length (); i++)
63
b7f97abdc517 update gcc from gcc-4.5.0 to gcc-4.6
ryoma <e075725@ie.u-ryukyu.ac.jp>
parents: 55
diff changeset
174 {
111
kono
parents: 67
diff changeset
175 struct cgraph_node *n = targets[i];
kono
parents: 67
diff changeset
176
kono
parents: 67
diff changeset
177 /* Do not bother to mark virtual methods in anonymous namespace;
kono
parents: 67
diff changeset
178 either we will find use of virtual table defining it, or it is
kono
parents: 67
diff changeset
179 unused. */
kono
parents: 67
diff changeset
180 if (TREE_CODE (TREE_TYPE (n->decl)) == METHOD_TYPE
kono
parents: 67
diff changeset
181 && type_in_anonymous_namespace_p
kono
parents: 67
diff changeset
182 (TYPE_METHOD_BASETYPE (TREE_TYPE (n->decl))))
kono
parents: 67
diff changeset
183 continue;
kono
parents: 67
diff changeset
184
kono
parents: 67
diff changeset
185 n->indirect_call_target = true;
kono
parents: 67
diff changeset
186 symtab_node *body = n->function_symbol ();
kono
parents: 67
diff changeset
187
kono
parents: 67
diff changeset
188 /* Prior inlining, keep alive bodies of possible targets for
kono
parents: 67
diff changeset
189 devirtualization. */
kono
parents: 67
diff changeset
190 if (n->definition
kono
parents: 67
diff changeset
191 && (before_inlining_p
kono
parents: 67
diff changeset
192 && opt_for_fn (body->decl, optimize)
kono
parents: 67
diff changeset
193 && opt_for_fn (body->decl, flag_devirtualize)))
kono
parents: 67
diff changeset
194 {
kono
parents: 67
diff changeset
195 /* Be sure that we will not optimize out alias target
kono
parents: 67
diff changeset
196 body. */
kono
parents: 67
diff changeset
197 if (DECL_EXTERNAL (n->decl)
kono
parents: 67
diff changeset
198 && n->alias
kono
parents: 67
diff changeset
199 && before_inlining_p)
kono
parents: 67
diff changeset
200 reachable->add (body);
kono
parents: 67
diff changeset
201 reachable->add (n);
kono
parents: 67
diff changeset
202 }
kono
parents: 67
diff changeset
203 /* Even after inlining we want to keep the possible targets in the
kono
parents: 67
diff changeset
204 boundary, so late passes can still produce direct call even if
kono
parents: 67
diff changeset
205 the chance for inlining is lost. */
kono
parents: 67
diff changeset
206 enqueue_node (n, first, reachable);
63
b7f97abdc517 update gcc from gcc-4.5.0 to gcc-4.6
ryoma <e075725@ie.u-ryukyu.ac.jp>
parents: 55
diff changeset
207 }
111
kono
parents: 67
diff changeset
208 }
kono
parents: 67
diff changeset
209
kono
parents: 67
diff changeset
210 /* Very trivial devirtualization; when the type is
kono
parents: 67
diff changeset
211 final or anonymous (so we know all its derivation)
kono
parents: 67
diff changeset
212 and there is only one possible virtual call target,
kono
parents: 67
diff changeset
213 make the edge direct. */
kono
parents: 67
diff changeset
214 if (final)
kono
parents: 67
diff changeset
215 {
kono
parents: 67
diff changeset
216 if (targets.length () <= 1 && dbg_cnt (devirt))
63
b7f97abdc517 update gcc from gcc-4.5.0 to gcc-4.6
ryoma <e075725@ie.u-ryukyu.ac.jp>
parents: 55
diff changeset
217 {
111
kono
parents: 67
diff changeset
218 cgraph_node *target, *node = edge->caller;
kono
parents: 67
diff changeset
219 if (targets.length () == 1)
kono
parents: 67
diff changeset
220 target = targets[0];
kono
parents: 67
diff changeset
221 else
kono
parents: 67
diff changeset
222 target = cgraph_node::get_create
kono
parents: 67
diff changeset
223 (builtin_decl_implicit (BUILT_IN_UNREACHABLE));
kono
parents: 67
diff changeset
224
kono
parents: 67
diff changeset
225 if (dump_enabled_p ())
kono
parents: 67
diff changeset
226 {
kono
parents: 67
diff changeset
227 location_t locus;
kono
parents: 67
diff changeset
228 if (edge->call_stmt)
kono
parents: 67
diff changeset
229 locus = gimple_location (edge->call_stmt);
kono
parents: 67
diff changeset
230 else
kono
parents: 67
diff changeset
231 locus = UNKNOWN_LOCATION;
kono
parents: 67
diff changeset
232 dump_printf_loc (MSG_OPTIMIZED_LOCATIONS, locus,
kono
parents: 67
diff changeset
233 "devirtualizing call in %s to %s\n",
kono
parents: 67
diff changeset
234 edge->caller->dump_name (),
kono
parents: 67
diff changeset
235 target->dump_name ());
kono
parents: 67
diff changeset
236 }
kono
parents: 67
diff changeset
237 edge = edge->make_direct (target);
kono
parents: 67
diff changeset
238 if (ipa_fn_summaries)
kono
parents: 67
diff changeset
239 ipa_update_overall_fn_summary (node);
kono
parents: 67
diff changeset
240 else if (edge->call_stmt)
63
b7f97abdc517 update gcc from gcc-4.5.0 to gcc-4.6
ryoma <e075725@ie.u-ryukyu.ac.jp>
parents: 55
diff changeset
241 {
111
kono
parents: 67
diff changeset
242 edge->redirect_call_stmt_to_callee ();
kono
parents: 67
diff changeset
243
kono
parents: 67
diff changeset
244 /* Call to __builtin_unreachable shouldn't be instrumented. */
kono
parents: 67
diff changeset
245 if (!targets.length ())
kono
parents: 67
diff changeset
246 gimple_call_set_with_bounds (edge->call_stmt, false);
63
b7f97abdc517 update gcc from gcc-4.5.0 to gcc-4.6
ryoma <e075725@ie.u-ryukyu.ac.jp>
parents: 55
diff changeset
247 }
b7f97abdc517 update gcc from gcc-4.5.0 to gcc-4.6
ryoma <e075725@ie.u-ryukyu.ac.jp>
parents: 55
diff changeset
248 }
b7f97abdc517 update gcc from gcc-4.5.0 to gcc-4.6
ryoma <e075725@ie.u-ryukyu.ac.jp>
parents: 55
diff changeset
249 }
b7f97abdc517 update gcc from gcc-4.5.0 to gcc-4.6
ryoma <e075725@ie.u-ryukyu.ac.jp>
parents: 55
diff changeset
250 }
b7f97abdc517 update gcc from gcc-4.5.0 to gcc-4.6
ryoma <e075725@ie.u-ryukyu.ac.jp>
parents: 55
diff changeset
251
111
kono
parents: 67
diff changeset
252 /* Perform reachability analysis and reclaim all unreachable nodes.
kono
parents: 67
diff changeset
253
kono
parents: 67
diff changeset
254 The algorithm is basically mark&sweep but with some extra refinements:
kono
parents: 67
diff changeset
255
kono
parents: 67
diff changeset
256 - reachable extern inline functions needs special handling; the bodies needs
kono
parents: 67
diff changeset
257 to stay in memory until inlining in hope that they will be inlined.
kono
parents: 67
diff changeset
258 After inlining we release their bodies and turn them into unanalyzed
kono
parents: 67
diff changeset
259 nodes even when they are reachable.
kono
parents: 67
diff changeset
260
kono
parents: 67
diff changeset
261 - virtual functions are kept in callgraph even if they seem unreachable in
kono
parents: 67
diff changeset
262 hope calls to them will be devirtualized.
kono
parents: 67
diff changeset
263
kono
parents: 67
diff changeset
264 Again we remove them after inlining. In late optimization some
kono
parents: 67
diff changeset
265 devirtualization may happen, but it is not important since we won't inline
kono
parents: 67
diff changeset
266 the call. In theory early opts and IPA should work out all important cases.
kono
parents: 67
diff changeset
267
kono
parents: 67
diff changeset
268 - virtual clones needs bodies of their origins for later materialization;
kono
parents: 67
diff changeset
269 this means that we want to keep the body even if the origin is unreachable
kono
parents: 67
diff changeset
270 otherwise. To avoid origin from sitting in the callgraph and being
kono
parents: 67
diff changeset
271 walked by IPA passes, we turn them into unanalyzed nodes with body
kono
parents: 67
diff changeset
272 defined.
kono
parents: 67
diff changeset
273
kono
parents: 67
diff changeset
274 We maintain set of function declaration where body needs to stay in
kono
parents: 67
diff changeset
275 body_needed_for_clonning
63
b7f97abdc517 update gcc from gcc-4.5.0 to gcc-4.6
ryoma <e075725@ie.u-ryukyu.ac.jp>
parents: 55
diff changeset
276
111
kono
parents: 67
diff changeset
277 Inline clones represent special case: their declaration match the
kono
parents: 67
diff changeset
278 declaration of origin and cgraph_remove_node already knows how to
kono
parents: 67
diff changeset
279 reshape callgraph and preserve body when offline copy of function or
kono
parents: 67
diff changeset
280 inline clone is being removed.
kono
parents: 67
diff changeset
281
kono
parents: 67
diff changeset
282 - C++ virtual tables keyed to other unit are represented as DECL_EXTERNAL
kono
parents: 67
diff changeset
283 variables with DECL_INITIAL set. We finalize these and keep reachable
kono
parents: 67
diff changeset
284 ones around for constant folding purposes. After inlining we however
kono
parents: 67
diff changeset
285 stop walking their references to let everything static referneced by them
kono
parents: 67
diff changeset
286 to be removed when it is otherwise unreachable.
63
b7f97abdc517 update gcc from gcc-4.5.0 to gcc-4.6
ryoma <e075725@ie.u-ryukyu.ac.jp>
parents: 55
diff changeset
287
111
kono
parents: 67
diff changeset
288 We maintain queue of both reachable symbols (i.e. defined symbols that needs
kono
parents: 67
diff changeset
289 to stay) and symbols that are in boundary (i.e. external symbols referenced
kono
parents: 67
diff changeset
290 by reachable symbols or origins of clones). The queue is represented
kono
parents: 67
diff changeset
291 as linked list by AUX pointer terminated by 1.
kono
parents: 67
diff changeset
292
kono
parents: 67
diff changeset
293 At the end we keep all reachable symbols. For symbols in boundary we always
kono
parents: 67
diff changeset
294 turn definition into a declaration, but we may keep function body around
kono
parents: 67
diff changeset
295 based on body_needed_for_clonning
kono
parents: 67
diff changeset
296
kono
parents: 67
diff changeset
297 All symbols that enter the queue have AUX pointer non-zero and are in the
kono
parents: 67
diff changeset
298 boundary. Pointer set REACHABLE is used to track reachable symbols.
kono
parents: 67
diff changeset
299
kono
parents: 67
diff changeset
300 Every symbol can be visited twice - once as part of boundary and once
kono
parents: 67
diff changeset
301 as real reachable symbol. enqueue_node needs to decide whether the
kono
parents: 67
diff changeset
302 node needs to be re-queued for second processing. For this purpose
kono
parents: 67
diff changeset
303 we set AUX pointer of processed symbols in the boundary to constant 2. */
0
a06113de4d67 first commit
kent <kent@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
304
a06113de4d67 first commit
kent <kent@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
305 bool
111
kono
parents: 67
diff changeset
306 symbol_table::remove_unreachable_nodes (FILE *file)
0
a06113de4d67 first commit
kent <kent@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
307 {
111
kono
parents: 67
diff changeset
308 symtab_node *first = (symtab_node *) (void *) 1;
0
a06113de4d67 first commit
kent <kent@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
309 struct cgraph_node *node, *next;
111
kono
parents: 67
diff changeset
310 varpool_node *vnode, *vnext;
0
a06113de4d67 first commit
kent <kent@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
311 bool changed = false;
111
kono
parents: 67
diff changeset
312 hash_set<symtab_node *> reachable;
kono
parents: 67
diff changeset
313 hash_set<tree> body_needed_for_clonning;
kono
parents: 67
diff changeset
314 hash_set<void *> reachable_call_targets;
kono
parents: 67
diff changeset
315 bool before_inlining_p = symtab->state < (!optimize && !in_lto_p ? IPA_SSA
kono
parents: 67
diff changeset
316 : IPA_SSA_AFTER_INLINING);
0
a06113de4d67 first commit
kent <kent@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
317
111
kono
parents: 67
diff changeset
318 timevar_push (TV_IPA_UNREACHABLE);
kono
parents: 67
diff changeset
319 build_type_inheritance_graph ();
0
a06113de4d67 first commit
kent <kent@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
320 if (file)
a06113de4d67 first commit
kent <kent@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
321 fprintf (file, "\nReclaiming functions:");
111
kono
parents: 67
diff changeset
322 if (flag_checking)
kono
parents: 67
diff changeset
323 {
kono
parents: 67
diff changeset
324 FOR_EACH_FUNCTION (node)
kono
parents: 67
diff changeset
325 gcc_assert (!node->aux);
kono
parents: 67
diff changeset
326 FOR_EACH_VARIABLE (vnode)
kono
parents: 67
diff changeset
327 gcc_assert (!vnode->aux);
kono
parents: 67
diff changeset
328 }
67
f6334be47118 update gcc from gcc-4.6-20100522 to gcc-4.6-20110318
nobuyasu <dimolto@cr.ie.u-ryukyu.ac.jp>
parents: 63
diff changeset
329 /* Mark functions whose bodies are obviously needed.
f6334be47118 update gcc from gcc-4.6-20100522 to gcc-4.6-20110318
nobuyasu <dimolto@cr.ie.u-ryukyu.ac.jp>
parents: 63
diff changeset
330 This is mostly when they can be referenced externally. Inline clones
f6334be47118 update gcc from gcc-4.6-20100522 to gcc-4.6-20110318
nobuyasu <dimolto@cr.ie.u-ryukyu.ac.jp>
parents: 63
diff changeset
331 are special since their declarations are shared with master clone and thus
f6334be47118 update gcc from gcc-4.6-20100522 to gcc-4.6-20110318
nobuyasu <dimolto@cr.ie.u-ryukyu.ac.jp>
parents: 63
diff changeset
332 cgraph_can_remove_if_no_direct_calls_and_refs_p should not be called on them. */
111
kono
parents: 67
diff changeset
333 FOR_EACH_FUNCTION (node)
63
b7f97abdc517 update gcc from gcc-4.5.0 to gcc-4.6
ryoma <e075725@ie.u-ryukyu.ac.jp>
parents: 55
diff changeset
334 {
111
kono
parents: 67
diff changeset
335 node->used_as_abstract_origin = false;
kono
parents: 67
diff changeset
336 node->indirect_call_target = false;
kono
parents: 67
diff changeset
337 if (node->definition
kono
parents: 67
diff changeset
338 && !node->global.inlined_to
kono
parents: 67
diff changeset
339 && !node->in_other_partition
kono
parents: 67
diff changeset
340 && !node->can_remove_if_no_direct_calls_and_refs_p ())
63
b7f97abdc517 update gcc from gcc-4.5.0 to gcc-4.6
ryoma <e075725@ie.u-ryukyu.ac.jp>
parents: 55
diff changeset
341 {
111
kono
parents: 67
diff changeset
342 gcc_assert (!node->global.inlined_to);
kono
parents: 67
diff changeset
343 reachable.add (node);
kono
parents: 67
diff changeset
344 enqueue_node (node, &first, &reachable);
63
b7f97abdc517 update gcc from gcc-4.5.0 to gcc-4.6
ryoma <e075725@ie.u-ryukyu.ac.jp>
parents: 55
diff changeset
345 }
b7f97abdc517 update gcc from gcc-4.5.0 to gcc-4.6
ryoma <e075725@ie.u-ryukyu.ac.jp>
parents: 55
diff changeset
346 else
111
kono
parents: 67
diff changeset
347 gcc_assert (!node->aux);
kono
parents: 67
diff changeset
348 }
63
b7f97abdc517 update gcc from gcc-4.5.0 to gcc-4.6
ryoma <e075725@ie.u-ryukyu.ac.jp>
parents: 55
diff changeset
349
111
kono
parents: 67
diff changeset
350 /* Mark variables that are obviously needed. */
kono
parents: 67
diff changeset
351 FOR_EACH_DEFINED_VARIABLE (vnode)
kono
parents: 67
diff changeset
352 if (!vnode->can_remove_if_no_refs_p()
kono
parents: 67
diff changeset
353 && !vnode->in_other_partition)
kono
parents: 67
diff changeset
354 {
kono
parents: 67
diff changeset
355 reachable.add (vnode);
kono
parents: 67
diff changeset
356 enqueue_node (vnode, &first, &reachable);
kono
parents: 67
diff changeset
357 }
kono
parents: 67
diff changeset
358
kono
parents: 67
diff changeset
359 /* Perform reachability analysis. */
kono
parents: 67
diff changeset
360 while (first != (symtab_node *) (void *) 1)
0
a06113de4d67 first commit
kent <kent@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
361 {
111
kono
parents: 67
diff changeset
362 bool in_boundary_p = !reachable.contains (first);
kono
parents: 67
diff changeset
363 symtab_node *node = first;
kono
parents: 67
diff changeset
364
kono
parents: 67
diff changeset
365 first = (symtab_node *)first->aux;
0
a06113de4d67 first commit
kent <kent@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
366
111
kono
parents: 67
diff changeset
367 /* If we are processing symbol in boundary, mark its AUX pointer for
kono
parents: 67
diff changeset
368 possible later re-processing in enqueue_node. */
kono
parents: 67
diff changeset
369 if (in_boundary_p)
kono
parents: 67
diff changeset
370 {
kono
parents: 67
diff changeset
371 node->aux = (void *)2;
kono
parents: 67
diff changeset
372 if (node->alias && node->analyzed)
kono
parents: 67
diff changeset
373 enqueue_node (node->get_alias_target (), &first, &reachable);
kono
parents: 67
diff changeset
374 }
kono
parents: 67
diff changeset
375 else
kono
parents: 67
diff changeset
376 {
kono
parents: 67
diff changeset
377 if (TREE_CODE (node->decl) == FUNCTION_DECL
kono
parents: 67
diff changeset
378 && DECL_ABSTRACT_ORIGIN (node->decl))
67
f6334be47118 update gcc from gcc-4.6-20100522 to gcc-4.6-20110318
nobuyasu <dimolto@cr.ie.u-ryukyu.ac.jp>
parents: 63
diff changeset
379 {
111
kono
parents: 67
diff changeset
380 struct cgraph_node *origin_node
kono
parents: 67
diff changeset
381 = cgraph_node::get (DECL_ABSTRACT_ORIGIN (node->decl));
kono
parents: 67
diff changeset
382 if (origin_node && !origin_node->used_as_abstract_origin)
63
b7f97abdc517 update gcc from gcc-4.5.0 to gcc-4.6
ryoma <e075725@ie.u-ryukyu.ac.jp>
parents: 55
diff changeset
383 {
111
kono
parents: 67
diff changeset
384 origin_node->used_as_abstract_origin = true;
kono
parents: 67
diff changeset
385 gcc_assert (!origin_node->prev_sibling_clone);
kono
parents: 67
diff changeset
386 gcc_assert (!origin_node->next_sibling_clone);
kono
parents: 67
diff changeset
387 for (cgraph_node *n = origin_node->clones; n;
kono
parents: 67
diff changeset
388 n = n->next_sibling_clone)
kono
parents: 67
diff changeset
389 if (n->decl == DECL_ABSTRACT_ORIGIN (node->decl))
kono
parents: 67
diff changeset
390 n->used_as_abstract_origin = true;
63
b7f97abdc517 update gcc from gcc-4.5.0 to gcc-4.6
ryoma <e075725@ie.u-ryukyu.ac.jp>
parents: 55
diff changeset
391 }
67
f6334be47118 update gcc from gcc-4.6-20100522 to gcc-4.6-20110318
nobuyasu <dimolto@cr.ie.u-ryukyu.ac.jp>
parents: 63
diff changeset
392 }
111
kono
parents: 67
diff changeset
393 /* If any symbol in a comdat group is reachable, force
kono
parents: 67
diff changeset
394 all externally visible symbols in the same comdat
kono
parents: 67
diff changeset
395 group to be reachable as well. Comdat-local symbols
kono
parents: 67
diff changeset
396 can be discarded if all uses were inlined. */
kono
parents: 67
diff changeset
397 if (node->same_comdat_group)
55
77e2b8dfacca update it from 4.4.3 to 4.5.0
ryoma <e075725@ie.u-ryukyu.ac.jp>
parents: 0
diff changeset
398 {
111
kono
parents: 67
diff changeset
399 symtab_node *next;
63
b7f97abdc517 update gcc from gcc-4.5.0 to gcc-4.6
ryoma <e075725@ie.u-ryukyu.ac.jp>
parents: 55
diff changeset
400 for (next = node->same_comdat_group;
b7f97abdc517 update gcc from gcc-4.5.0 to gcc-4.6
ryoma <e075725@ie.u-ryukyu.ac.jp>
parents: 55
diff changeset
401 next != node;
b7f97abdc517 update gcc from gcc-4.5.0 to gcc-4.6
ryoma <e075725@ie.u-ryukyu.ac.jp>
parents: 55
diff changeset
402 next = next->same_comdat_group)
111
kono
parents: 67
diff changeset
403 if (!next->comdat_local_p ()
kono
parents: 67
diff changeset
404 && !reachable.add (next))
kono
parents: 67
diff changeset
405 enqueue_node (next, &first, &reachable);
55
77e2b8dfacca update it from 4.4.3 to 4.5.0
ryoma <e075725@ie.u-ryukyu.ac.jp>
parents: 0
diff changeset
406 }
111
kono
parents: 67
diff changeset
407 /* Mark references as reachable. */
kono
parents: 67
diff changeset
408 process_references (node, &first, before_inlining_p, &reachable);
kono
parents: 67
diff changeset
409 }
kono
parents: 67
diff changeset
410
kono
parents: 67
diff changeset
411 if (cgraph_node *cnode = dyn_cast <cgraph_node *> (node))
kono
parents: 67
diff changeset
412 {
kono
parents: 67
diff changeset
413 /* Mark the callees reachable unless they are direct calls to extern
kono
parents: 67
diff changeset
414 inline functions we decided to not inline. */
kono
parents: 67
diff changeset
415 if (!in_boundary_p)
kono
parents: 67
diff changeset
416 {
kono
parents: 67
diff changeset
417 struct cgraph_edge *e;
kono
parents: 67
diff changeset
418 /* Keep alive possible targets for devirtualization. */
kono
parents: 67
diff changeset
419 if (opt_for_fn (cnode->decl, optimize)
kono
parents: 67
diff changeset
420 && opt_for_fn (cnode->decl, flag_devirtualize))
kono
parents: 67
diff changeset
421 {
kono
parents: 67
diff changeset
422 struct cgraph_edge *next;
kono
parents: 67
diff changeset
423 for (e = cnode->indirect_calls; e; e = next)
kono
parents: 67
diff changeset
424 {
kono
parents: 67
diff changeset
425 next = e->next_callee;
kono
parents: 67
diff changeset
426 if (e->indirect_info->polymorphic)
kono
parents: 67
diff changeset
427 walk_polymorphic_call_targets (&reachable_call_targets,
kono
parents: 67
diff changeset
428 e, &first, &reachable,
kono
parents: 67
diff changeset
429 before_inlining_p);
kono
parents: 67
diff changeset
430 }
kono
parents: 67
diff changeset
431 }
kono
parents: 67
diff changeset
432 for (e = cnode->callees; e; e = e->next_callee)
kono
parents: 67
diff changeset
433 {
kono
parents: 67
diff changeset
434 symtab_node *body = e->callee->function_symbol ();
kono
parents: 67
diff changeset
435 if (e->callee->definition
kono
parents: 67
diff changeset
436 && !e->callee->in_other_partition
kono
parents: 67
diff changeset
437 && (!e->inline_failed
kono
parents: 67
diff changeset
438 || !DECL_EXTERNAL (e->callee->decl)
kono
parents: 67
diff changeset
439 || e->callee->alias
kono
parents: 67
diff changeset
440 || (before_inlining_p
kono
parents: 67
diff changeset
441 && (opt_for_fn (body->decl, optimize)
kono
parents: 67
diff changeset
442 || (symtab->state < IPA_SSA
kono
parents: 67
diff changeset
443 && lookup_attribute
kono
parents: 67
diff changeset
444 ("always_inline",
kono
parents: 67
diff changeset
445 DECL_ATTRIBUTES (body->decl)))))))
kono
parents: 67
diff changeset
446 {
kono
parents: 67
diff changeset
447 /* Be sure that we will not optimize out alias target
kono
parents: 67
diff changeset
448 body. */
kono
parents: 67
diff changeset
449 if (DECL_EXTERNAL (e->callee->decl)
kono
parents: 67
diff changeset
450 && e->callee->alias
kono
parents: 67
diff changeset
451 && before_inlining_p)
kono
parents: 67
diff changeset
452 reachable.add (body);
kono
parents: 67
diff changeset
453 reachable.add (e->callee);
kono
parents: 67
diff changeset
454 }
kono
parents: 67
diff changeset
455 enqueue_node (e->callee, &first, &reachable);
kono
parents: 67
diff changeset
456 }
kono
parents: 67
diff changeset
457
kono
parents: 67
diff changeset
458 /* When inline clone exists, mark body to be preserved so when removing
kono
parents: 67
diff changeset
459 offline copy of the function we don't kill it. */
kono
parents: 67
diff changeset
460 if (cnode->global.inlined_to)
kono
parents: 67
diff changeset
461 body_needed_for_clonning.add (cnode->decl);
kono
parents: 67
diff changeset
462
kono
parents: 67
diff changeset
463 /* For instrumentation clones we always need original
kono
parents: 67
diff changeset
464 function node for proper LTO privatization. */
kono
parents: 67
diff changeset
465 if (cnode->instrumentation_clone
kono
parents: 67
diff changeset
466 && cnode->definition)
kono
parents: 67
diff changeset
467 {
kono
parents: 67
diff changeset
468 gcc_assert (cnode->instrumented_version || in_lto_p);
kono
parents: 67
diff changeset
469 if (cnode->instrumented_version)
kono
parents: 67
diff changeset
470 {
kono
parents: 67
diff changeset
471 enqueue_node (cnode->instrumented_version, &first,
kono
parents: 67
diff changeset
472 &reachable);
kono
parents: 67
diff changeset
473 reachable.add (cnode->instrumented_version);
kono
parents: 67
diff changeset
474 }
kono
parents: 67
diff changeset
475 }
kono
parents: 67
diff changeset
476
kono
parents: 67
diff changeset
477 /* For non-inline clones, force their origins to the boundary and ensure
kono
parents: 67
diff changeset
478 that body is not removed. */
kono
parents: 67
diff changeset
479 while (cnode->clone_of)
kono
parents: 67
diff changeset
480 {
kono
parents: 67
diff changeset
481 bool noninline = cnode->clone_of->decl != cnode->decl;
kono
parents: 67
diff changeset
482 cnode = cnode->clone_of;
kono
parents: 67
diff changeset
483 if (noninline)
kono
parents: 67
diff changeset
484 {
kono
parents: 67
diff changeset
485 body_needed_for_clonning.add (cnode->decl);
kono
parents: 67
diff changeset
486 enqueue_node (cnode, &first, &reachable);
kono
parents: 67
diff changeset
487 }
kono
parents: 67
diff changeset
488 }
55
77e2b8dfacca update it from 4.4.3 to 4.5.0
ryoma <e075725@ie.u-ryukyu.ac.jp>
parents: 0
diff changeset
489
111
kono
parents: 67
diff changeset
490 }
kono
parents: 67
diff changeset
491 else if (cnode->thunk.thunk_p)
kono
parents: 67
diff changeset
492 enqueue_node (cnode->callees->callee, &first, &reachable);
kono
parents: 67
diff changeset
493
kono
parents: 67
diff changeset
494 /* If any reachable function has simd clones, mark them as
kono
parents: 67
diff changeset
495 reachable as well. */
kono
parents: 67
diff changeset
496 if (cnode->simd_clones)
63
b7f97abdc517 update gcc from gcc-4.5.0 to gcc-4.6
ryoma <e075725@ie.u-ryukyu.ac.jp>
parents: 55
diff changeset
497 {
111
kono
parents: 67
diff changeset
498 cgraph_node *next;
kono
parents: 67
diff changeset
499 for (next = cnode->simd_clones;
kono
parents: 67
diff changeset
500 next;
kono
parents: 67
diff changeset
501 next = next->simdclone->next_clone)
kono
parents: 67
diff changeset
502 if (in_boundary_p
kono
parents: 67
diff changeset
503 || !reachable.add (next))
kono
parents: 67
diff changeset
504 enqueue_node (next, &first, &reachable);
kono
parents: 67
diff changeset
505 }
kono
parents: 67
diff changeset
506 }
kono
parents: 67
diff changeset
507 /* When we see constructor of external variable, keep referred nodes in the
kono
parents: 67
diff changeset
508 boundary. This will also hold initializers of the external vars NODE
kono
parents: 67
diff changeset
509 refers to. */
kono
parents: 67
diff changeset
510 varpool_node *vnode = dyn_cast <varpool_node *> (node);
kono
parents: 67
diff changeset
511 if (vnode
kono
parents: 67
diff changeset
512 && DECL_EXTERNAL (node->decl)
kono
parents: 67
diff changeset
513 && !vnode->alias
kono
parents: 67
diff changeset
514 && in_boundary_p)
kono
parents: 67
diff changeset
515 {
kono
parents: 67
diff changeset
516 struct ipa_ref *ref = NULL;
kono
parents: 67
diff changeset
517 for (int i = 0; node->iterate_reference (i, ref); i++)
kono
parents: 67
diff changeset
518 enqueue_node (ref->referred, &first, &reachable);
kono
parents: 67
diff changeset
519 }
kono
parents: 67
diff changeset
520 }
kono
parents: 67
diff changeset
521
kono
parents: 67
diff changeset
522 /* Remove unreachable functions. */
kono
parents: 67
diff changeset
523 for (node = first_function (); node; node = next)
kono
parents: 67
diff changeset
524 {
kono
parents: 67
diff changeset
525 next = next_function (node);
kono
parents: 67
diff changeset
526
kono
parents: 67
diff changeset
527 /* If node is not needed at all, remove it. */
kono
parents: 67
diff changeset
528 if (!node->aux)
kono
parents: 67
diff changeset
529 {
kono
parents: 67
diff changeset
530 if (file)
kono
parents: 67
diff changeset
531 fprintf (file, " %s", node->dump_name ());
kono
parents: 67
diff changeset
532 node->remove ();
kono
parents: 67
diff changeset
533 changed = true;
kono
parents: 67
diff changeset
534 }
kono
parents: 67
diff changeset
535 /* If node is unreachable, remove its body. */
kono
parents: 67
diff changeset
536 else if (!reachable.contains (node))
kono
parents: 67
diff changeset
537 {
kono
parents: 67
diff changeset
538 /* We keep definitions of thunks and aliases in the boundary so
kono
parents: 67
diff changeset
539 we can walk to the ultimate alias targets and function symbols
kono
parents: 67
diff changeset
540 reliably. */
kono
parents: 67
diff changeset
541 if (node->alias || node->thunk.thunk_p)
kono
parents: 67
diff changeset
542 ;
kono
parents: 67
diff changeset
543 else if (!body_needed_for_clonning.contains (node->decl)
kono
parents: 67
diff changeset
544 && !node->alias && !node->thunk.thunk_p)
kono
parents: 67
diff changeset
545 node->release_body ();
kono
parents: 67
diff changeset
546 else if (!node->clone_of)
kono
parents: 67
diff changeset
547 gcc_assert (in_lto_p || DECL_RESULT (node->decl));
kono
parents: 67
diff changeset
548 if (node->definition && !node->alias && !node->thunk.thunk_p)
kono
parents: 67
diff changeset
549 {
kono
parents: 67
diff changeset
550 if (file)
kono
parents: 67
diff changeset
551 fprintf (file, " %s", node->dump_name ());
kono
parents: 67
diff changeset
552 node->body_removed = true;
kono
parents: 67
diff changeset
553 node->analyzed = false;
kono
parents: 67
diff changeset
554 node->definition = false;
kono
parents: 67
diff changeset
555 node->cpp_implicit_alias = false;
kono
parents: 67
diff changeset
556 node->alias = false;
kono
parents: 67
diff changeset
557 node->transparent_alias = false;
kono
parents: 67
diff changeset
558 node->thunk.thunk_p = false;
kono
parents: 67
diff changeset
559 node->weakref = false;
kono
parents: 67
diff changeset
560 /* After early inlining we drop always_inline attributes on
kono
parents: 67
diff changeset
561 bodies of functions that are still referenced (have their
kono
parents: 67
diff changeset
562 address taken). */
kono
parents: 67
diff changeset
563 DECL_ATTRIBUTES (node->decl)
kono
parents: 67
diff changeset
564 = remove_attribute ("always_inline",
kono
parents: 67
diff changeset
565 DECL_ATTRIBUTES (node->decl));
kono
parents: 67
diff changeset
566 if (!node->in_other_partition)
kono
parents: 67
diff changeset
567 node->local.local = false;
kono
parents: 67
diff changeset
568 node->remove_callees ();
kono
parents: 67
diff changeset
569 node->remove_all_references ();
kono
parents: 67
diff changeset
570 changed = true;
kono
parents: 67
diff changeset
571 if (node->thunk.thunk_p
kono
parents: 67
diff changeset
572 && node->thunk.add_pointer_bounds_args)
kono
parents: 67
diff changeset
573 {
kono
parents: 67
diff changeset
574 node->thunk.thunk_p = false;
kono
parents: 67
diff changeset
575 node->thunk.add_pointer_bounds_args = false;
63
b7f97abdc517 update gcc from gcc-4.5.0 to gcc-4.6
ryoma <e075725@ie.u-ryukyu.ac.jp>
parents: 55
diff changeset
576 }
b7f97abdc517 update gcc from gcc-4.5.0 to gcc-4.6
ryoma <e075725@ie.u-ryukyu.ac.jp>
parents: 55
diff changeset
577 }
b7f97abdc517 update gcc from gcc-4.5.0 to gcc-4.6
ryoma <e075725@ie.u-ryukyu.ac.jp>
parents: 55
diff changeset
578 }
111
kono
parents: 67
diff changeset
579 else
kono
parents: 67
diff changeset
580 gcc_assert (node->clone_of || !node->has_gimple_body_p ()
kono
parents: 67
diff changeset
581 || in_lto_p || DECL_RESULT (node->decl));
0
a06113de4d67 first commit
kent <kent@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
582 }
a06113de4d67 first commit
kent <kent@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
583
111
kono
parents: 67
diff changeset
584 /* Inline clones might be kept around so their materializing allows further
kono
parents: 67
diff changeset
585 cloning. If the function the clone is inlined into is removed, we need
kono
parents: 67
diff changeset
586 to turn it into normal cone. */
kono
parents: 67
diff changeset
587 FOR_EACH_FUNCTION (node)
0
a06113de4d67 first commit
kent <kent@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
588 {
55
77e2b8dfacca update it from 4.4.3 to 4.5.0
ryoma <e075725@ie.u-ryukyu.ac.jp>
parents: 0
diff changeset
589 if (node->global.inlined_to
77e2b8dfacca update it from 4.4.3 to 4.5.0
ryoma <e075725@ie.u-ryukyu.ac.jp>
parents: 0
diff changeset
590 && !node->callers)
77e2b8dfacca update it from 4.4.3 to 4.5.0
ryoma <e075725@ie.u-ryukyu.ac.jp>
parents: 0
diff changeset
591 {
77e2b8dfacca update it from 4.4.3 to 4.5.0
ryoma <e075725@ie.u-ryukyu.ac.jp>
parents: 0
diff changeset
592 gcc_assert (node->clones);
77e2b8dfacca update it from 4.4.3 to 4.5.0
ryoma <e075725@ie.u-ryukyu.ac.jp>
parents: 0
diff changeset
593 node->global.inlined_to = NULL;
77e2b8dfacca update it from 4.4.3 to 4.5.0
ryoma <e075725@ie.u-ryukyu.ac.jp>
parents: 0
diff changeset
594 update_inlined_to_pointer (node, node);
77e2b8dfacca update it from 4.4.3 to 4.5.0
ryoma <e075725@ie.u-ryukyu.ac.jp>
parents: 0
diff changeset
595 }
77e2b8dfacca update it from 4.4.3 to 4.5.0
ryoma <e075725@ie.u-ryukyu.ac.jp>
parents: 0
diff changeset
596 node->aux = NULL;
77e2b8dfacca update it from 4.4.3 to 4.5.0
ryoma <e075725@ie.u-ryukyu.ac.jp>
parents: 0
diff changeset
597 }
63
b7f97abdc517 update gcc from gcc-4.5.0 to gcc-4.6
ryoma <e075725@ie.u-ryukyu.ac.jp>
parents: 55
diff changeset
598
111
kono
parents: 67
diff changeset
599 /* Remove unreachable variables. */
63
b7f97abdc517 update gcc from gcc-4.5.0 to gcc-4.6
ryoma <e075725@ie.u-ryukyu.ac.jp>
parents: 55
diff changeset
600 if (file)
111
kono
parents: 67
diff changeset
601 fprintf (file, "\nReclaiming variables:");
kono
parents: 67
diff changeset
602 for (vnode = first_variable (); vnode; vnode = vnext)
63
b7f97abdc517 update gcc from gcc-4.5.0 to gcc-4.6
ryoma <e075725@ie.u-ryukyu.ac.jp>
parents: 55
diff changeset
603 {
111
kono
parents: 67
diff changeset
604 vnext = next_variable (vnode);
kono
parents: 67
diff changeset
605 if (!vnode->aux
kono
parents: 67
diff changeset
606 /* For can_refer_decl_in_current_unit_p we want to track for
kono
parents: 67
diff changeset
607 all external variables if they are defined in other partition
kono
parents: 67
diff changeset
608 or not. */
kono
parents: 67
diff changeset
609 && (!flag_ltrans || !DECL_EXTERNAL (vnode->decl)))
kono
parents: 67
diff changeset
610 {
kono
parents: 67
diff changeset
611 struct ipa_ref *ref = NULL;
kono
parents: 67
diff changeset
612
kono
parents: 67
diff changeset
613 /* First remove the aliases, so varpool::remove can possibly lookup
kono
parents: 67
diff changeset
614 the constructor and save it for future use. */
kono
parents: 67
diff changeset
615 while (vnode->iterate_direct_aliases (0, ref))
kono
parents: 67
diff changeset
616 {
kono
parents: 67
diff changeset
617 if (file)
kono
parents: 67
diff changeset
618 fprintf (file, " %s", ref->referred->dump_name ());
kono
parents: 67
diff changeset
619 ref->referring->remove ();
kono
parents: 67
diff changeset
620 }
63
b7f97abdc517 update gcc from gcc-4.5.0 to gcc-4.6
ryoma <e075725@ie.u-ryukyu.ac.jp>
parents: 55
diff changeset
621 if (file)
111
kono
parents: 67
diff changeset
622 fprintf (file, " %s", vnode->dump_name ());
kono
parents: 67
diff changeset
623 vnext = next_variable (vnode);
kono
parents: 67
diff changeset
624 /* Signal removal to the debug machinery. */
kono
parents: 67
diff changeset
625 if (! flag_wpa)
kono
parents: 67
diff changeset
626 {
kono
parents: 67
diff changeset
627 vnode->definition = false;
kono
parents: 67
diff changeset
628 (*debug_hooks->late_global_decl) (vnode->decl);
kono
parents: 67
diff changeset
629 }
kono
parents: 67
diff changeset
630 vnode->remove ();
63
b7f97abdc517 update gcc from gcc-4.5.0 to gcc-4.6
ryoma <e075725@ie.u-ryukyu.ac.jp>
parents: 55
diff changeset
631 changed = true;
b7f97abdc517 update gcc from gcc-4.5.0 to gcc-4.6
ryoma <e075725@ie.u-ryukyu.ac.jp>
parents: 55
diff changeset
632 }
111
kono
parents: 67
diff changeset
633 else if (!reachable.contains (vnode) && !vnode->alias)
kono
parents: 67
diff changeset
634 {
kono
parents: 67
diff changeset
635 tree init;
kono
parents: 67
diff changeset
636 if (vnode->definition)
kono
parents: 67
diff changeset
637 {
kono
parents: 67
diff changeset
638 if (file)
kono
parents: 67
diff changeset
639 fprintf (file, " %s", vnode->name ());
kono
parents: 67
diff changeset
640 changed = true;
kono
parents: 67
diff changeset
641 }
kono
parents: 67
diff changeset
642 /* Keep body if it may be useful for constant folding. */
kono
parents: 67
diff changeset
643 if ((init = ctor_for_folding (vnode->decl)) == error_mark_node
kono
parents: 67
diff changeset
644 && !POINTER_BOUNDS_P (vnode->decl))
kono
parents: 67
diff changeset
645 vnode->remove_initializer ();
kono
parents: 67
diff changeset
646 else
kono
parents: 67
diff changeset
647 DECL_INITIAL (vnode->decl) = init;
kono
parents: 67
diff changeset
648 vnode->body_removed = true;
kono
parents: 67
diff changeset
649 vnode->definition = false;
kono
parents: 67
diff changeset
650 vnode->analyzed = false;
kono
parents: 67
diff changeset
651 vnode->aux = NULL;
kono
parents: 67
diff changeset
652
kono
parents: 67
diff changeset
653 vnode->remove_from_same_comdat_group ();
kono
parents: 67
diff changeset
654
kono
parents: 67
diff changeset
655 vnode->remove_all_references ();
kono
parents: 67
diff changeset
656 }
kono
parents: 67
diff changeset
657 else
kono
parents: 67
diff changeset
658 vnode->aux = NULL;
63
b7f97abdc517 update gcc from gcc-4.5.0 to gcc-4.6
ryoma <e075725@ie.u-ryukyu.ac.jp>
parents: 55
diff changeset
659 }
b7f97abdc517 update gcc from gcc-4.5.0 to gcc-4.6
ryoma <e075725@ie.u-ryukyu.ac.jp>
parents: 55
diff changeset
660
b7f97abdc517 update gcc from gcc-4.5.0 to gcc-4.6
ryoma <e075725@ie.u-ryukyu.ac.jp>
parents: 55
diff changeset
661 /* Now update address_taken flags and try to promote functions to be local. */
b7f97abdc517 update gcc from gcc-4.5.0 to gcc-4.6
ryoma <e075725@ie.u-ryukyu.ac.jp>
parents: 55
diff changeset
662 if (file)
b7f97abdc517 update gcc from gcc-4.5.0 to gcc-4.6
ryoma <e075725@ie.u-ryukyu.ac.jp>
parents: 55
diff changeset
663 fprintf (file, "\nClearing address taken flags:");
111
kono
parents: 67
diff changeset
664 FOR_EACH_DEFINED_FUNCTION (node)
63
b7f97abdc517 update gcc from gcc-4.5.0 to gcc-4.6
ryoma <e075725@ie.u-ryukyu.ac.jp>
parents: 55
diff changeset
665 if (node->address_taken
111
kono
parents: 67
diff changeset
666 && !node->used_from_other_partition)
63
b7f97abdc517 update gcc from gcc-4.5.0 to gcc-4.6
ryoma <e075725@ie.u-ryukyu.ac.jp>
parents: 55
diff changeset
667 {
111
kono
parents: 67
diff changeset
668 if (!node->call_for_symbol_and_aliases
kono
parents: 67
diff changeset
669 (has_addr_references_p, NULL, true)
kono
parents: 67
diff changeset
670 && (!node->instrumentation_clone
kono
parents: 67
diff changeset
671 || !node->instrumented_version
kono
parents: 67
diff changeset
672 || !node->instrumented_version->address_taken))
63
b7f97abdc517 update gcc from gcc-4.5.0 to gcc-4.6
ryoma <e075725@ie.u-ryukyu.ac.jp>
parents: 55
diff changeset
673 {
b7f97abdc517 update gcc from gcc-4.5.0 to gcc-4.6
ryoma <e075725@ie.u-ryukyu.ac.jp>
parents: 55
diff changeset
674 if (file)
111
kono
parents: 67
diff changeset
675 fprintf (file, " %s", node->name ());
63
b7f97abdc517 update gcc from gcc-4.5.0 to gcc-4.6
ryoma <e075725@ie.u-ryukyu.ac.jp>
parents: 55
diff changeset
676 node->address_taken = false;
b7f97abdc517 update gcc from gcc-4.5.0 to gcc-4.6
ryoma <e075725@ie.u-ryukyu.ac.jp>
parents: 55
diff changeset
677 changed = true;
111
kono
parents: 67
diff changeset
678 if (node->local_p ()
kono
parents: 67
diff changeset
679 /* Virtual functions may be kept in cgraph just because
kono
parents: 67
diff changeset
680 of possible later devirtualization. Do not mark them as
kono
parents: 67
diff changeset
681 local too early so we won't optimize them out before
kono
parents: 67
diff changeset
682 we are done with polymorphic call analysis. */
kono
parents: 67
diff changeset
683 && (!before_inlining_p
kono
parents: 67
diff changeset
684 || !node->call_for_symbol_and_aliases
kono
parents: 67
diff changeset
685 (is_indirect_call_target_p, NULL, true)))
63
b7f97abdc517 update gcc from gcc-4.5.0 to gcc-4.6
ryoma <e075725@ie.u-ryukyu.ac.jp>
parents: 55
diff changeset
686 {
b7f97abdc517 update gcc from gcc-4.5.0 to gcc-4.6
ryoma <e075725@ie.u-ryukyu.ac.jp>
parents: 55
diff changeset
687 node->local.local = true;
b7f97abdc517 update gcc from gcc-4.5.0 to gcc-4.6
ryoma <e075725@ie.u-ryukyu.ac.jp>
parents: 55
diff changeset
688 if (file)
b7f97abdc517 update gcc from gcc-4.5.0 to gcc-4.6
ryoma <e075725@ie.u-ryukyu.ac.jp>
parents: 55
diff changeset
689 fprintf (file, " (local)");
b7f97abdc517 update gcc from gcc-4.5.0 to gcc-4.6
ryoma <e075725@ie.u-ryukyu.ac.jp>
parents: 55
diff changeset
690 }
b7f97abdc517 update gcc from gcc-4.5.0 to gcc-4.6
ryoma <e075725@ie.u-ryukyu.ac.jp>
parents: 55
diff changeset
691 }
b7f97abdc517 update gcc from gcc-4.5.0 to gcc-4.6
ryoma <e075725@ie.u-ryukyu.ac.jp>
parents: 55
diff changeset
692 }
111
kono
parents: 67
diff changeset
693 if (file)
kono
parents: 67
diff changeset
694 fprintf (file, "\n");
63
b7f97abdc517 update gcc from gcc-4.5.0 to gcc-4.6
ryoma <e075725@ie.u-ryukyu.ac.jp>
parents: 55
diff changeset
695
111
kono
parents: 67
diff changeset
696 symtab_node::checking_verify_symtab_nodes ();
kono
parents: 67
diff changeset
697
kono
parents: 67
diff changeset
698 /* If we removed something, perhaps profile could be improved. */
kono
parents: 67
diff changeset
699 if (changed && (optimize || in_lto_p) && ipa_call_summaries)
kono
parents: 67
diff changeset
700 FOR_EACH_DEFINED_FUNCTION (node)
kono
parents: 67
diff changeset
701 ipa_propagate_frequency (node);
kono
parents: 67
diff changeset
702
kono
parents: 67
diff changeset
703 timevar_pop (TV_IPA_UNREACHABLE);
kono
parents: 67
diff changeset
704 return changed;
kono
parents: 67
diff changeset
705 }
kono
parents: 67
diff changeset
706
kono
parents: 67
diff changeset
707 /* Process references to VNODE and set flags WRITTEN, ADDRESS_TAKEN, READ
kono
parents: 67
diff changeset
708 as needed, also clear EXPLICIT_REFS if the references to given variable
kono
parents: 67
diff changeset
709 do not need to be explicit. */
kono
parents: 67
diff changeset
710
kono
parents: 67
diff changeset
711 void
kono
parents: 67
diff changeset
712 process_references (varpool_node *vnode,
kono
parents: 67
diff changeset
713 bool *written, bool *address_taken,
kono
parents: 67
diff changeset
714 bool *read, bool *explicit_refs)
kono
parents: 67
diff changeset
715 {
kono
parents: 67
diff changeset
716 int i;
kono
parents: 67
diff changeset
717 struct ipa_ref *ref;
kono
parents: 67
diff changeset
718
kono
parents: 67
diff changeset
719 if (!vnode->all_refs_explicit_p ()
kono
parents: 67
diff changeset
720 || TREE_THIS_VOLATILE (vnode->decl))
kono
parents: 67
diff changeset
721 *explicit_refs = false;
55
77e2b8dfacca update it from 4.4.3 to 4.5.0
ryoma <e075725@ie.u-ryukyu.ac.jp>
parents: 0
diff changeset
722
111
kono
parents: 67
diff changeset
723 for (i = 0; vnode->iterate_referring (i, ref)
kono
parents: 67
diff changeset
724 && *explicit_refs && (!*written || !*address_taken || !*read); i++)
kono
parents: 67
diff changeset
725 switch (ref->use)
kono
parents: 67
diff changeset
726 {
kono
parents: 67
diff changeset
727 case IPA_REF_ADDR:
kono
parents: 67
diff changeset
728 *address_taken = true;
kono
parents: 67
diff changeset
729 break;
kono
parents: 67
diff changeset
730 case IPA_REF_LOAD:
kono
parents: 67
diff changeset
731 *read = true;
kono
parents: 67
diff changeset
732 break;
kono
parents: 67
diff changeset
733 case IPA_REF_STORE:
kono
parents: 67
diff changeset
734 *written = true;
kono
parents: 67
diff changeset
735 break;
kono
parents: 67
diff changeset
736 case IPA_REF_ALIAS:
kono
parents: 67
diff changeset
737 process_references (dyn_cast<varpool_node *> (ref->referring), written,
kono
parents: 67
diff changeset
738 address_taken, read, explicit_refs);
kono
parents: 67
diff changeset
739 break;
kono
parents: 67
diff changeset
740 case IPA_REF_CHKP:
kono
parents: 67
diff changeset
741 gcc_unreachable ();
kono
parents: 67
diff changeset
742 }
kono
parents: 67
diff changeset
743 }
kono
parents: 67
diff changeset
744
kono
parents: 67
diff changeset
745 /* Set TREE_READONLY bit. */
55
77e2b8dfacca update it from 4.4.3 to 4.5.0
ryoma <e075725@ie.u-ryukyu.ac.jp>
parents: 0
diff changeset
746
111
kono
parents: 67
diff changeset
747 bool
kono
parents: 67
diff changeset
748 set_readonly_bit (varpool_node *vnode, void *data ATTRIBUTE_UNUSED)
kono
parents: 67
diff changeset
749 {
kono
parents: 67
diff changeset
750 TREE_READONLY (vnode->decl) = true;
kono
parents: 67
diff changeset
751 return false;
kono
parents: 67
diff changeset
752 }
kono
parents: 67
diff changeset
753
kono
parents: 67
diff changeset
754 /* Set writeonly bit and clear the initalizer, since it will not be needed. */
kono
parents: 67
diff changeset
755
kono
parents: 67
diff changeset
756 bool
kono
parents: 67
diff changeset
757 set_writeonly_bit (varpool_node *vnode, void *data)
kono
parents: 67
diff changeset
758 {
kono
parents: 67
diff changeset
759 vnode->writeonly = true;
kono
parents: 67
diff changeset
760 if (optimize || in_lto_p)
kono
parents: 67
diff changeset
761 {
kono
parents: 67
diff changeset
762 DECL_INITIAL (vnode->decl) = NULL;
kono
parents: 67
diff changeset
763 if (!vnode->alias)
kono
parents: 67
diff changeset
764 {
kono
parents: 67
diff changeset
765 if (vnode->num_references ())
kono
parents: 67
diff changeset
766 *(bool *)data = true;
kono
parents: 67
diff changeset
767 vnode->remove_all_references ();
kono
parents: 67
diff changeset
768 }
kono
parents: 67
diff changeset
769 }
kono
parents: 67
diff changeset
770 return false;
kono
parents: 67
diff changeset
771 }
kono
parents: 67
diff changeset
772
kono
parents: 67
diff changeset
773 /* Clear addressale bit of VNODE. */
kono
parents: 67
diff changeset
774
kono
parents: 67
diff changeset
775 bool
kono
parents: 67
diff changeset
776 clear_addressable_bit (varpool_node *vnode, void *data ATTRIBUTE_UNUSED)
kono
parents: 67
diff changeset
777 {
kono
parents: 67
diff changeset
778 vnode->address_taken = false;
kono
parents: 67
diff changeset
779 TREE_ADDRESSABLE (vnode->decl) = 0;
kono
parents: 67
diff changeset
780 return false;
0
a06113de4d67 first commit
kent <kent@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
781 }
a06113de4d67 first commit
kent <kent@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
782
63
b7f97abdc517 update gcc from gcc-4.5.0 to gcc-4.6
ryoma <e075725@ie.u-ryukyu.ac.jp>
parents: 55
diff changeset
783 /* Discover variables that have no longer address taken or that are read only
b7f97abdc517 update gcc from gcc-4.5.0 to gcc-4.6
ryoma <e075725@ie.u-ryukyu.ac.jp>
parents: 55
diff changeset
784 and update their flags.
b7f97abdc517 update gcc from gcc-4.5.0 to gcc-4.6
ryoma <e075725@ie.u-ryukyu.ac.jp>
parents: 55
diff changeset
785
111
kono
parents: 67
diff changeset
786 Return true when unreachable symbol removan should be done.
kono
parents: 67
diff changeset
787
63
b7f97abdc517 update gcc from gcc-4.5.0 to gcc-4.6
ryoma <e075725@ie.u-ryukyu.ac.jp>
parents: 55
diff changeset
788 FIXME: This can not be done in between gimplify and omp_expand since
b7f97abdc517 update gcc from gcc-4.5.0 to gcc-4.6
ryoma <e075725@ie.u-ryukyu.ac.jp>
parents: 55
diff changeset
789 readonly flag plays role on what is shared and what is not. Currently we do
67
f6334be47118 update gcc from gcc-4.6-20100522 to gcc-4.6-20110318
nobuyasu <dimolto@cr.ie.u-ryukyu.ac.jp>
parents: 63
diff changeset
790 this transformation as part of whole program visibility and re-do at
f6334be47118 update gcc from gcc-4.6-20100522 to gcc-4.6-20110318
nobuyasu <dimolto@cr.ie.u-ryukyu.ac.jp>
parents: 63
diff changeset
791 ipa-reference pass (to take into account clonning), but it would
f6334be47118 update gcc from gcc-4.6-20100522 to gcc-4.6-20110318
nobuyasu <dimolto@cr.ie.u-ryukyu.ac.jp>
parents: 63
diff changeset
792 make sense to do it before early optimizations. */
63
b7f97abdc517 update gcc from gcc-4.5.0 to gcc-4.6
ryoma <e075725@ie.u-ryukyu.ac.jp>
parents: 55
diff changeset
793
111
kono
parents: 67
diff changeset
794 bool
63
b7f97abdc517 update gcc from gcc-4.5.0 to gcc-4.6
ryoma <e075725@ie.u-ryukyu.ac.jp>
parents: 55
diff changeset
795 ipa_discover_readonly_nonaddressable_vars (void)
b7f97abdc517 update gcc from gcc-4.5.0 to gcc-4.6
ryoma <e075725@ie.u-ryukyu.ac.jp>
parents: 55
diff changeset
796 {
111
kono
parents: 67
diff changeset
797 bool remove_p = false;
kono
parents: 67
diff changeset
798 varpool_node *vnode;
63
b7f97abdc517 update gcc from gcc-4.5.0 to gcc-4.6
ryoma <e075725@ie.u-ryukyu.ac.jp>
parents: 55
diff changeset
799 if (dump_file)
b7f97abdc517 update gcc from gcc-4.5.0 to gcc-4.6
ryoma <e075725@ie.u-ryukyu.ac.jp>
parents: 55
diff changeset
800 fprintf (dump_file, "Clearing variable flags:");
111
kono
parents: 67
diff changeset
801 FOR_EACH_VARIABLE (vnode)
kono
parents: 67
diff changeset
802 if (!vnode->alias
kono
parents: 67
diff changeset
803 && (TREE_ADDRESSABLE (vnode->decl)
kono
parents: 67
diff changeset
804 || !vnode->writeonly
kono
parents: 67
diff changeset
805 || !TREE_READONLY (vnode->decl)))
63
b7f97abdc517 update gcc from gcc-4.5.0 to gcc-4.6
ryoma <e075725@ie.u-ryukyu.ac.jp>
parents: 55
diff changeset
806 {
b7f97abdc517 update gcc from gcc-4.5.0 to gcc-4.6
ryoma <e075725@ie.u-ryukyu.ac.jp>
parents: 55
diff changeset
807 bool written = false;
b7f97abdc517 update gcc from gcc-4.5.0 to gcc-4.6
ryoma <e075725@ie.u-ryukyu.ac.jp>
parents: 55
diff changeset
808 bool address_taken = false;
111
kono
parents: 67
diff changeset
809 bool read = false;
kono
parents: 67
diff changeset
810 bool explicit_refs = true;
kono
parents: 67
diff changeset
811
kono
parents: 67
diff changeset
812 process_references (vnode, &written, &address_taken, &read,
kono
parents: 67
diff changeset
813 &explicit_refs);
kono
parents: 67
diff changeset
814 if (!explicit_refs)
kono
parents: 67
diff changeset
815 continue;
kono
parents: 67
diff changeset
816 if (!address_taken)
63
b7f97abdc517 update gcc from gcc-4.5.0 to gcc-4.6
ryoma <e075725@ie.u-ryukyu.ac.jp>
parents: 55
diff changeset
817 {
111
kono
parents: 67
diff changeset
818 if (TREE_ADDRESSABLE (vnode->decl) && dump_file)
kono
parents: 67
diff changeset
819 fprintf (dump_file, " %s (non-addressable)", vnode->name ());
kono
parents: 67
diff changeset
820 vnode->call_for_symbol_and_aliases (clear_addressable_bit, NULL,
kono
parents: 67
diff changeset
821 true);
63
b7f97abdc517 update gcc from gcc-4.5.0 to gcc-4.6
ryoma <e075725@ie.u-ryukyu.ac.jp>
parents: 55
diff changeset
822 }
111
kono
parents: 67
diff changeset
823 if (!address_taken && !written
63
b7f97abdc517 update gcc from gcc-4.5.0 to gcc-4.6
ryoma <e075725@ie.u-ryukyu.ac.jp>
parents: 55
diff changeset
824 /* Making variable in explicit section readonly can cause section
b7f97abdc517 update gcc from gcc-4.5.0 to gcc-4.6
ryoma <e075725@ie.u-ryukyu.ac.jp>
parents: 55
diff changeset
825 type conflict.
b7f97abdc517 update gcc from gcc-4.5.0 to gcc-4.6
ryoma <e075725@ie.u-ryukyu.ac.jp>
parents: 55
diff changeset
826 See e.g. gcc.c-torture/compile/pr23237.c */
111
kono
parents: 67
diff changeset
827 && vnode->get_section () == NULL)
kono
parents: 67
diff changeset
828 {
kono
parents: 67
diff changeset
829 if (!TREE_READONLY (vnode->decl) && dump_file)
kono
parents: 67
diff changeset
830 fprintf (dump_file, " %s (read-only)", vnode->name ());
kono
parents: 67
diff changeset
831 vnode->call_for_symbol_and_aliases (set_readonly_bit, NULL, true);
kono
parents: 67
diff changeset
832 }
kono
parents: 67
diff changeset
833 if (!vnode->writeonly && !read && !address_taken && written)
63
b7f97abdc517 update gcc from gcc-4.5.0 to gcc-4.6
ryoma <e075725@ie.u-ryukyu.ac.jp>
parents: 55
diff changeset
834 {
b7f97abdc517 update gcc from gcc-4.5.0 to gcc-4.6
ryoma <e075725@ie.u-ryukyu.ac.jp>
parents: 55
diff changeset
835 if (dump_file)
111
kono
parents: 67
diff changeset
836 fprintf (dump_file, " %s (write-only)", vnode->name ());
kono
parents: 67
diff changeset
837 vnode->call_for_symbol_and_aliases (set_writeonly_bit, &remove_p,
kono
parents: 67
diff changeset
838 true);
63
b7f97abdc517 update gcc from gcc-4.5.0 to gcc-4.6
ryoma <e075725@ie.u-ryukyu.ac.jp>
parents: 55
diff changeset
839 }
b7f97abdc517 update gcc from gcc-4.5.0 to gcc-4.6
ryoma <e075725@ie.u-ryukyu.ac.jp>
parents: 55
diff changeset
840 }
b7f97abdc517 update gcc from gcc-4.5.0 to gcc-4.6
ryoma <e075725@ie.u-ryukyu.ac.jp>
parents: 55
diff changeset
841 if (dump_file)
b7f97abdc517 update gcc from gcc-4.5.0 to gcc-4.6
ryoma <e075725@ie.u-ryukyu.ac.jp>
parents: 55
diff changeset
842 fprintf (dump_file, "\n");
111
kono
parents: 67
diff changeset
843 return remove_p;
55
77e2b8dfacca update it from 4.4.3 to 4.5.0
ryoma <e075725@ie.u-ryukyu.ac.jp>
parents: 0
diff changeset
844 }
77e2b8dfacca update it from 4.4.3 to 4.5.0
ryoma <e075725@ie.u-ryukyu.ac.jp>
parents: 0
diff changeset
845
67
f6334be47118 update gcc from gcc-4.6-20100522 to gcc-4.6-20110318
nobuyasu <dimolto@cr.ie.u-ryukyu.ac.jp>
parents: 63
diff changeset
846 /* Generate and emit a static constructor or destructor. WHICH must
111
kono
parents: 67
diff changeset
847 be one of 'I' (for a constructor), 'D' (for a destructor), 'P'
kono
parents: 67
diff changeset
848 (for chp static vars constructor) or 'B' (for chkp static bounds
kono
parents: 67
diff changeset
849 constructor). BODY is a STATEMENT_LIST containing GENERIC
kono
parents: 67
diff changeset
850 statements. PRIORITY is the initialization priority for this
kono
parents: 67
diff changeset
851 constructor or destructor.
67
f6334be47118 update gcc from gcc-4.6-20100522 to gcc-4.6-20110318
nobuyasu <dimolto@cr.ie.u-ryukyu.ac.jp>
parents: 63
diff changeset
852
f6334be47118 update gcc from gcc-4.6-20100522 to gcc-4.6-20110318
nobuyasu <dimolto@cr.ie.u-ryukyu.ac.jp>
parents: 63
diff changeset
853 FINAL specify whether the externally visible name for collect2 should
f6334be47118 update gcc from gcc-4.6-20100522 to gcc-4.6-20110318
nobuyasu <dimolto@cr.ie.u-ryukyu.ac.jp>
parents: 63
diff changeset
854 be produced. */
f6334be47118 update gcc from gcc-4.6-20100522 to gcc-4.6-20110318
nobuyasu <dimolto@cr.ie.u-ryukyu.ac.jp>
parents: 63
diff changeset
855
f6334be47118 update gcc from gcc-4.6-20100522 to gcc-4.6-20110318
nobuyasu <dimolto@cr.ie.u-ryukyu.ac.jp>
parents: 63
diff changeset
856 static void
f6334be47118 update gcc from gcc-4.6-20100522 to gcc-4.6-20110318
nobuyasu <dimolto@cr.ie.u-ryukyu.ac.jp>
parents: 63
diff changeset
857 cgraph_build_static_cdtor_1 (char which, tree body, int priority, bool final)
f6334be47118 update gcc from gcc-4.6-20100522 to gcc-4.6-20110318
nobuyasu <dimolto@cr.ie.u-ryukyu.ac.jp>
parents: 63
diff changeset
858 {
f6334be47118 update gcc from gcc-4.6-20100522 to gcc-4.6-20110318
nobuyasu <dimolto@cr.ie.u-ryukyu.ac.jp>
parents: 63
diff changeset
859 static int counter = 0;
f6334be47118 update gcc from gcc-4.6-20100522 to gcc-4.6-20110318
nobuyasu <dimolto@cr.ie.u-ryukyu.ac.jp>
parents: 63
diff changeset
860 char which_buf[16];
f6334be47118 update gcc from gcc-4.6-20100522 to gcc-4.6-20110318
nobuyasu <dimolto@cr.ie.u-ryukyu.ac.jp>
parents: 63
diff changeset
861 tree decl, name, resdecl;
f6334be47118 update gcc from gcc-4.6-20100522 to gcc-4.6-20110318
nobuyasu <dimolto@cr.ie.u-ryukyu.ac.jp>
parents: 63
diff changeset
862
f6334be47118 update gcc from gcc-4.6-20100522 to gcc-4.6-20110318
nobuyasu <dimolto@cr.ie.u-ryukyu.ac.jp>
parents: 63
diff changeset
863 /* The priority is encoded in the constructor or destructor name.
f6334be47118 update gcc from gcc-4.6-20100522 to gcc-4.6-20110318
nobuyasu <dimolto@cr.ie.u-ryukyu.ac.jp>
parents: 63
diff changeset
864 collect2 will sort the names and arrange that they are called at
f6334be47118 update gcc from gcc-4.6-20100522 to gcc-4.6-20110318
nobuyasu <dimolto@cr.ie.u-ryukyu.ac.jp>
parents: 63
diff changeset
865 program startup. */
f6334be47118 update gcc from gcc-4.6-20100522 to gcc-4.6-20110318
nobuyasu <dimolto@cr.ie.u-ryukyu.ac.jp>
parents: 63
diff changeset
866 if (final)
f6334be47118 update gcc from gcc-4.6-20100522 to gcc-4.6-20110318
nobuyasu <dimolto@cr.ie.u-ryukyu.ac.jp>
parents: 63
diff changeset
867 sprintf (which_buf, "%c_%.5d_%d", which, priority, counter++);
f6334be47118 update gcc from gcc-4.6-20100522 to gcc-4.6-20110318
nobuyasu <dimolto@cr.ie.u-ryukyu.ac.jp>
parents: 63
diff changeset
868 else
f6334be47118 update gcc from gcc-4.6-20100522 to gcc-4.6-20110318
nobuyasu <dimolto@cr.ie.u-ryukyu.ac.jp>
parents: 63
diff changeset
869 /* Proudce sane name but one not recognizable by collect2, just for the
f6334be47118 update gcc from gcc-4.6-20100522 to gcc-4.6-20110318
nobuyasu <dimolto@cr.ie.u-ryukyu.ac.jp>
parents: 63
diff changeset
870 case we fail to inline the function. */
f6334be47118 update gcc from gcc-4.6-20100522 to gcc-4.6-20110318
nobuyasu <dimolto@cr.ie.u-ryukyu.ac.jp>
parents: 63
diff changeset
871 sprintf (which_buf, "sub_%c_%.5d_%d", which, priority, counter++);
f6334be47118 update gcc from gcc-4.6-20100522 to gcc-4.6-20110318
nobuyasu <dimolto@cr.ie.u-ryukyu.ac.jp>
parents: 63
diff changeset
872 name = get_file_function_name (which_buf);
f6334be47118 update gcc from gcc-4.6-20100522 to gcc-4.6-20110318
nobuyasu <dimolto@cr.ie.u-ryukyu.ac.jp>
parents: 63
diff changeset
873
f6334be47118 update gcc from gcc-4.6-20100522 to gcc-4.6-20110318
nobuyasu <dimolto@cr.ie.u-ryukyu.ac.jp>
parents: 63
diff changeset
874 decl = build_decl (input_location, FUNCTION_DECL, name,
f6334be47118 update gcc from gcc-4.6-20100522 to gcc-4.6-20110318
nobuyasu <dimolto@cr.ie.u-ryukyu.ac.jp>
parents: 63
diff changeset
875 build_function_type_list (void_type_node, NULL_TREE));
f6334be47118 update gcc from gcc-4.6-20100522 to gcc-4.6-20110318
nobuyasu <dimolto@cr.ie.u-ryukyu.ac.jp>
parents: 63
diff changeset
876 current_function_decl = decl;
f6334be47118 update gcc from gcc-4.6-20100522 to gcc-4.6-20110318
nobuyasu <dimolto@cr.ie.u-ryukyu.ac.jp>
parents: 63
diff changeset
877
f6334be47118 update gcc from gcc-4.6-20100522 to gcc-4.6-20110318
nobuyasu <dimolto@cr.ie.u-ryukyu.ac.jp>
parents: 63
diff changeset
878 resdecl = build_decl (input_location,
f6334be47118 update gcc from gcc-4.6-20100522 to gcc-4.6-20110318
nobuyasu <dimolto@cr.ie.u-ryukyu.ac.jp>
parents: 63
diff changeset
879 RESULT_DECL, NULL_TREE, void_type_node);
f6334be47118 update gcc from gcc-4.6-20100522 to gcc-4.6-20110318
nobuyasu <dimolto@cr.ie.u-ryukyu.ac.jp>
parents: 63
diff changeset
880 DECL_ARTIFICIAL (resdecl) = 1;
f6334be47118 update gcc from gcc-4.6-20100522 to gcc-4.6-20110318
nobuyasu <dimolto@cr.ie.u-ryukyu.ac.jp>
parents: 63
diff changeset
881 DECL_RESULT (decl) = resdecl;
f6334be47118 update gcc from gcc-4.6-20100522 to gcc-4.6-20110318
nobuyasu <dimolto@cr.ie.u-ryukyu.ac.jp>
parents: 63
diff changeset
882 DECL_CONTEXT (resdecl) = decl;
f6334be47118 update gcc from gcc-4.6-20100522 to gcc-4.6-20110318
nobuyasu <dimolto@cr.ie.u-ryukyu.ac.jp>
parents: 63
diff changeset
883
f6334be47118 update gcc from gcc-4.6-20100522 to gcc-4.6-20110318
nobuyasu <dimolto@cr.ie.u-ryukyu.ac.jp>
parents: 63
diff changeset
884 allocate_struct_function (decl, false);
f6334be47118 update gcc from gcc-4.6-20100522 to gcc-4.6-20110318
nobuyasu <dimolto@cr.ie.u-ryukyu.ac.jp>
parents: 63
diff changeset
885
f6334be47118 update gcc from gcc-4.6-20100522 to gcc-4.6-20110318
nobuyasu <dimolto@cr.ie.u-ryukyu.ac.jp>
parents: 63
diff changeset
886 TREE_STATIC (decl) = 1;
f6334be47118 update gcc from gcc-4.6-20100522 to gcc-4.6-20110318
nobuyasu <dimolto@cr.ie.u-ryukyu.ac.jp>
parents: 63
diff changeset
887 TREE_USED (decl) = 1;
f6334be47118 update gcc from gcc-4.6-20100522 to gcc-4.6-20110318
nobuyasu <dimolto@cr.ie.u-ryukyu.ac.jp>
parents: 63
diff changeset
888 DECL_ARTIFICIAL (decl) = 1;
111
kono
parents: 67
diff changeset
889 DECL_IGNORED_P (decl) = 1;
67
f6334be47118 update gcc from gcc-4.6-20100522 to gcc-4.6-20110318
nobuyasu <dimolto@cr.ie.u-ryukyu.ac.jp>
parents: 63
diff changeset
890 DECL_NO_INSTRUMENT_FUNCTION_ENTRY_EXIT (decl) = 1;
f6334be47118 update gcc from gcc-4.6-20100522 to gcc-4.6-20110318
nobuyasu <dimolto@cr.ie.u-ryukyu.ac.jp>
parents: 63
diff changeset
891 DECL_SAVED_TREE (decl) = body;
f6334be47118 update gcc from gcc-4.6-20100522 to gcc-4.6-20110318
nobuyasu <dimolto@cr.ie.u-ryukyu.ac.jp>
parents: 63
diff changeset
892 if (!targetm.have_ctors_dtors && final)
f6334be47118 update gcc from gcc-4.6-20100522 to gcc-4.6-20110318
nobuyasu <dimolto@cr.ie.u-ryukyu.ac.jp>
parents: 63
diff changeset
893 {
f6334be47118 update gcc from gcc-4.6-20100522 to gcc-4.6-20110318
nobuyasu <dimolto@cr.ie.u-ryukyu.ac.jp>
parents: 63
diff changeset
894 TREE_PUBLIC (decl) = 1;
f6334be47118 update gcc from gcc-4.6-20100522 to gcc-4.6-20110318
nobuyasu <dimolto@cr.ie.u-ryukyu.ac.jp>
parents: 63
diff changeset
895 DECL_PRESERVE_P (decl) = 1;
f6334be47118 update gcc from gcc-4.6-20100522 to gcc-4.6-20110318
nobuyasu <dimolto@cr.ie.u-ryukyu.ac.jp>
parents: 63
diff changeset
896 }
f6334be47118 update gcc from gcc-4.6-20100522 to gcc-4.6-20110318
nobuyasu <dimolto@cr.ie.u-ryukyu.ac.jp>
parents: 63
diff changeset
897 DECL_UNINLINABLE (decl) = 1;
f6334be47118 update gcc from gcc-4.6-20100522 to gcc-4.6-20110318
nobuyasu <dimolto@cr.ie.u-ryukyu.ac.jp>
parents: 63
diff changeset
898
f6334be47118 update gcc from gcc-4.6-20100522 to gcc-4.6-20110318
nobuyasu <dimolto@cr.ie.u-ryukyu.ac.jp>
parents: 63
diff changeset
899 DECL_INITIAL (decl) = make_node (BLOCK);
111
kono
parents: 67
diff changeset
900 BLOCK_SUPERCONTEXT (DECL_INITIAL (decl)) = decl;
67
f6334be47118 update gcc from gcc-4.6-20100522 to gcc-4.6-20110318
nobuyasu <dimolto@cr.ie.u-ryukyu.ac.jp>
parents: 63
diff changeset
901 TREE_USED (DECL_INITIAL (decl)) = 1;
f6334be47118 update gcc from gcc-4.6-20100522 to gcc-4.6-20110318
nobuyasu <dimolto@cr.ie.u-ryukyu.ac.jp>
parents: 63
diff changeset
902
f6334be47118 update gcc from gcc-4.6-20100522 to gcc-4.6-20110318
nobuyasu <dimolto@cr.ie.u-ryukyu.ac.jp>
parents: 63
diff changeset
903 DECL_SOURCE_LOCATION (decl) = input_location;
f6334be47118 update gcc from gcc-4.6-20100522 to gcc-4.6-20110318
nobuyasu <dimolto@cr.ie.u-ryukyu.ac.jp>
parents: 63
diff changeset
904 cfun->function_end_locus = input_location;
f6334be47118 update gcc from gcc-4.6-20100522 to gcc-4.6-20110318
nobuyasu <dimolto@cr.ie.u-ryukyu.ac.jp>
parents: 63
diff changeset
905
f6334be47118 update gcc from gcc-4.6-20100522 to gcc-4.6-20110318
nobuyasu <dimolto@cr.ie.u-ryukyu.ac.jp>
parents: 63
diff changeset
906 switch (which)
f6334be47118 update gcc from gcc-4.6-20100522 to gcc-4.6-20110318
nobuyasu <dimolto@cr.ie.u-ryukyu.ac.jp>
parents: 63
diff changeset
907 {
f6334be47118 update gcc from gcc-4.6-20100522 to gcc-4.6-20110318
nobuyasu <dimolto@cr.ie.u-ryukyu.ac.jp>
parents: 63
diff changeset
908 case 'I':
f6334be47118 update gcc from gcc-4.6-20100522 to gcc-4.6-20110318
nobuyasu <dimolto@cr.ie.u-ryukyu.ac.jp>
parents: 63
diff changeset
909 DECL_STATIC_CONSTRUCTOR (decl) = 1;
f6334be47118 update gcc from gcc-4.6-20100522 to gcc-4.6-20110318
nobuyasu <dimolto@cr.ie.u-ryukyu.ac.jp>
parents: 63
diff changeset
910 decl_init_priority_insert (decl, priority);
f6334be47118 update gcc from gcc-4.6-20100522 to gcc-4.6-20110318
nobuyasu <dimolto@cr.ie.u-ryukyu.ac.jp>
parents: 63
diff changeset
911 break;
111
kono
parents: 67
diff changeset
912 case 'P':
kono
parents: 67
diff changeset
913 DECL_STATIC_CONSTRUCTOR (decl) = 1;
kono
parents: 67
diff changeset
914 DECL_ATTRIBUTES (decl) = tree_cons (get_identifier ("chkp ctor"),
kono
parents: 67
diff changeset
915 NULL,
kono
parents: 67
diff changeset
916 NULL_TREE);
kono
parents: 67
diff changeset
917 decl_init_priority_insert (decl, priority);
kono
parents: 67
diff changeset
918 break;
kono
parents: 67
diff changeset
919 case 'B':
kono
parents: 67
diff changeset
920 DECL_STATIC_CONSTRUCTOR (decl) = 1;
kono
parents: 67
diff changeset
921 DECL_ATTRIBUTES (decl) = tree_cons (get_identifier ("bnd_legacy"),
kono
parents: 67
diff changeset
922 NULL,
kono
parents: 67
diff changeset
923 NULL_TREE);
kono
parents: 67
diff changeset
924 decl_init_priority_insert (decl, priority);
kono
parents: 67
diff changeset
925 break;
67
f6334be47118 update gcc from gcc-4.6-20100522 to gcc-4.6-20110318
nobuyasu <dimolto@cr.ie.u-ryukyu.ac.jp>
parents: 63
diff changeset
926 case 'D':
f6334be47118 update gcc from gcc-4.6-20100522 to gcc-4.6-20110318
nobuyasu <dimolto@cr.ie.u-ryukyu.ac.jp>
parents: 63
diff changeset
927 DECL_STATIC_DESTRUCTOR (decl) = 1;
f6334be47118 update gcc from gcc-4.6-20100522 to gcc-4.6-20110318
nobuyasu <dimolto@cr.ie.u-ryukyu.ac.jp>
parents: 63
diff changeset
928 decl_fini_priority_insert (decl, priority);
f6334be47118 update gcc from gcc-4.6-20100522 to gcc-4.6-20110318
nobuyasu <dimolto@cr.ie.u-ryukyu.ac.jp>
parents: 63
diff changeset
929 break;
f6334be47118 update gcc from gcc-4.6-20100522 to gcc-4.6-20110318
nobuyasu <dimolto@cr.ie.u-ryukyu.ac.jp>
parents: 63
diff changeset
930 default:
f6334be47118 update gcc from gcc-4.6-20100522 to gcc-4.6-20110318
nobuyasu <dimolto@cr.ie.u-ryukyu.ac.jp>
parents: 63
diff changeset
931 gcc_unreachable ();
f6334be47118 update gcc from gcc-4.6-20100522 to gcc-4.6-20110318
nobuyasu <dimolto@cr.ie.u-ryukyu.ac.jp>
parents: 63
diff changeset
932 }
f6334be47118 update gcc from gcc-4.6-20100522 to gcc-4.6-20110318
nobuyasu <dimolto@cr.ie.u-ryukyu.ac.jp>
parents: 63
diff changeset
933
f6334be47118 update gcc from gcc-4.6-20100522 to gcc-4.6-20110318
nobuyasu <dimolto@cr.ie.u-ryukyu.ac.jp>
parents: 63
diff changeset
934 gimplify_function_tree (decl);
f6334be47118 update gcc from gcc-4.6-20100522 to gcc-4.6-20110318
nobuyasu <dimolto@cr.ie.u-ryukyu.ac.jp>
parents: 63
diff changeset
935
111
kono
parents: 67
diff changeset
936 cgraph_node::add_new_function (decl, false);
67
f6334be47118 update gcc from gcc-4.6-20100522 to gcc-4.6-20110318
nobuyasu <dimolto@cr.ie.u-ryukyu.ac.jp>
parents: 63
diff changeset
937
f6334be47118 update gcc from gcc-4.6-20100522 to gcc-4.6-20110318
nobuyasu <dimolto@cr.ie.u-ryukyu.ac.jp>
parents: 63
diff changeset
938 set_cfun (NULL);
f6334be47118 update gcc from gcc-4.6-20100522 to gcc-4.6-20110318
nobuyasu <dimolto@cr.ie.u-ryukyu.ac.jp>
parents: 63
diff changeset
939 current_function_decl = NULL;
f6334be47118 update gcc from gcc-4.6-20100522 to gcc-4.6-20110318
nobuyasu <dimolto@cr.ie.u-ryukyu.ac.jp>
parents: 63
diff changeset
940 }
f6334be47118 update gcc from gcc-4.6-20100522 to gcc-4.6-20110318
nobuyasu <dimolto@cr.ie.u-ryukyu.ac.jp>
parents: 63
diff changeset
941
f6334be47118 update gcc from gcc-4.6-20100522 to gcc-4.6-20110318
nobuyasu <dimolto@cr.ie.u-ryukyu.ac.jp>
parents: 63
diff changeset
942 /* Generate and emit a static constructor or destructor. WHICH must
111
kono
parents: 67
diff changeset
943 be one of 'I' (for a constructor), 'D' (for a destructor), 'P'
kono
parents: 67
diff changeset
944 (for chkp static vars constructor) or 'B' (for chkp static bounds
kono
parents: 67
diff changeset
945 constructor). BODY is a STATEMENT_LIST containing GENERIC
kono
parents: 67
diff changeset
946 statements. PRIORITY is the initialization priority for this
kono
parents: 67
diff changeset
947 constructor or destructor. */
67
f6334be47118 update gcc from gcc-4.6-20100522 to gcc-4.6-20110318
nobuyasu <dimolto@cr.ie.u-ryukyu.ac.jp>
parents: 63
diff changeset
948
f6334be47118 update gcc from gcc-4.6-20100522 to gcc-4.6-20110318
nobuyasu <dimolto@cr.ie.u-ryukyu.ac.jp>
parents: 63
diff changeset
949 void
f6334be47118 update gcc from gcc-4.6-20100522 to gcc-4.6-20110318
nobuyasu <dimolto@cr.ie.u-ryukyu.ac.jp>
parents: 63
diff changeset
950 cgraph_build_static_cdtor (char which, tree body, int priority)
f6334be47118 update gcc from gcc-4.6-20100522 to gcc-4.6-20110318
nobuyasu <dimolto@cr.ie.u-ryukyu.ac.jp>
parents: 63
diff changeset
951 {
f6334be47118 update gcc from gcc-4.6-20100522 to gcc-4.6-20110318
nobuyasu <dimolto@cr.ie.u-ryukyu.ac.jp>
parents: 63
diff changeset
952 cgraph_build_static_cdtor_1 (which, body, priority, false);
f6334be47118 update gcc from gcc-4.6-20100522 to gcc-4.6-20110318
nobuyasu <dimolto@cr.ie.u-ryukyu.ac.jp>
parents: 63
diff changeset
953 }
f6334be47118 update gcc from gcc-4.6-20100522 to gcc-4.6-20110318
nobuyasu <dimolto@cr.ie.u-ryukyu.ac.jp>
parents: 63
diff changeset
954
f6334be47118 update gcc from gcc-4.6-20100522 to gcc-4.6-20110318
nobuyasu <dimolto@cr.ie.u-ryukyu.ac.jp>
parents: 63
diff changeset
955 /* When target does not have ctors and dtors, we call all constructor
f6334be47118 update gcc from gcc-4.6-20100522 to gcc-4.6-20110318
nobuyasu <dimolto@cr.ie.u-ryukyu.ac.jp>
parents: 63
diff changeset
956 and destructor by special initialization/destruction function
f6334be47118 update gcc from gcc-4.6-20100522 to gcc-4.6-20110318
nobuyasu <dimolto@cr.ie.u-ryukyu.ac.jp>
parents: 63
diff changeset
957 recognized by collect2.
f6334be47118 update gcc from gcc-4.6-20100522 to gcc-4.6-20110318
nobuyasu <dimolto@cr.ie.u-ryukyu.ac.jp>
parents: 63
diff changeset
958
f6334be47118 update gcc from gcc-4.6-20100522 to gcc-4.6-20110318
nobuyasu <dimolto@cr.ie.u-ryukyu.ac.jp>
parents: 63
diff changeset
959 When we are going to build this function, collect all constructors and
f6334be47118 update gcc from gcc-4.6-20100522 to gcc-4.6-20110318
nobuyasu <dimolto@cr.ie.u-ryukyu.ac.jp>
parents: 63
diff changeset
960 destructors and turn them into normal functions. */
f6334be47118 update gcc from gcc-4.6-20100522 to gcc-4.6-20110318
nobuyasu <dimolto@cr.ie.u-ryukyu.ac.jp>
parents: 63
diff changeset
961
f6334be47118 update gcc from gcc-4.6-20100522 to gcc-4.6-20110318
nobuyasu <dimolto@cr.ie.u-ryukyu.ac.jp>
parents: 63
diff changeset
962 static void
111
kono
parents: 67
diff changeset
963 record_cdtor_fn (struct cgraph_node *node, vec<tree> *ctors, vec<tree> *dtors)
67
f6334be47118 update gcc from gcc-4.6-20100522 to gcc-4.6-20110318
nobuyasu <dimolto@cr.ie.u-ryukyu.ac.jp>
parents: 63
diff changeset
964 {
f6334be47118 update gcc from gcc-4.6-20100522 to gcc-4.6-20110318
nobuyasu <dimolto@cr.ie.u-ryukyu.ac.jp>
parents: 63
diff changeset
965 if (DECL_STATIC_CONSTRUCTOR (node->decl))
111
kono
parents: 67
diff changeset
966 ctors->safe_push (node->decl);
67
f6334be47118 update gcc from gcc-4.6-20100522 to gcc-4.6-20110318
nobuyasu <dimolto@cr.ie.u-ryukyu.ac.jp>
parents: 63
diff changeset
967 if (DECL_STATIC_DESTRUCTOR (node->decl))
111
kono
parents: 67
diff changeset
968 dtors->safe_push (node->decl);
kono
parents: 67
diff changeset
969 node = cgraph_node::get (node->decl);
kono
parents: 67
diff changeset
970 DECL_DISREGARD_INLINE_LIMITS (node->decl) = 1;
67
f6334be47118 update gcc from gcc-4.6-20100522 to gcc-4.6-20110318
nobuyasu <dimolto@cr.ie.u-ryukyu.ac.jp>
parents: 63
diff changeset
971 }
f6334be47118 update gcc from gcc-4.6-20100522 to gcc-4.6-20110318
nobuyasu <dimolto@cr.ie.u-ryukyu.ac.jp>
parents: 63
diff changeset
972
f6334be47118 update gcc from gcc-4.6-20100522 to gcc-4.6-20110318
nobuyasu <dimolto@cr.ie.u-ryukyu.ac.jp>
parents: 63
diff changeset
973 /* Define global constructors/destructor functions for the CDTORS, of
f6334be47118 update gcc from gcc-4.6-20100522 to gcc-4.6-20110318
nobuyasu <dimolto@cr.ie.u-ryukyu.ac.jp>
parents: 63
diff changeset
974 which they are LEN. The CDTORS are sorted by initialization
f6334be47118 update gcc from gcc-4.6-20100522 to gcc-4.6-20110318
nobuyasu <dimolto@cr.ie.u-ryukyu.ac.jp>
parents: 63
diff changeset
975 priority. If CTOR_P is true, these are constructors; otherwise,
f6334be47118 update gcc from gcc-4.6-20100522 to gcc-4.6-20110318
nobuyasu <dimolto@cr.ie.u-ryukyu.ac.jp>
parents: 63
diff changeset
976 they are destructors. */
f6334be47118 update gcc from gcc-4.6-20100522 to gcc-4.6-20110318
nobuyasu <dimolto@cr.ie.u-ryukyu.ac.jp>
parents: 63
diff changeset
977
f6334be47118 update gcc from gcc-4.6-20100522 to gcc-4.6-20110318
nobuyasu <dimolto@cr.ie.u-ryukyu.ac.jp>
parents: 63
diff changeset
978 static void
111
kono
parents: 67
diff changeset
979 build_cdtor (bool ctor_p, const vec<tree> &cdtors)
67
f6334be47118 update gcc from gcc-4.6-20100522 to gcc-4.6-20110318
nobuyasu <dimolto@cr.ie.u-ryukyu.ac.jp>
parents: 63
diff changeset
980 {
f6334be47118 update gcc from gcc-4.6-20100522 to gcc-4.6-20110318
nobuyasu <dimolto@cr.ie.u-ryukyu.ac.jp>
parents: 63
diff changeset
981 size_t i,j;
111
kono
parents: 67
diff changeset
982 size_t len = cdtors.length ();
67
f6334be47118 update gcc from gcc-4.6-20100522 to gcc-4.6-20110318
nobuyasu <dimolto@cr.ie.u-ryukyu.ac.jp>
parents: 63
diff changeset
983
f6334be47118 update gcc from gcc-4.6-20100522 to gcc-4.6-20110318
nobuyasu <dimolto@cr.ie.u-ryukyu.ac.jp>
parents: 63
diff changeset
984 i = 0;
f6334be47118 update gcc from gcc-4.6-20100522 to gcc-4.6-20110318
nobuyasu <dimolto@cr.ie.u-ryukyu.ac.jp>
parents: 63
diff changeset
985 while (i < len)
f6334be47118 update gcc from gcc-4.6-20100522 to gcc-4.6-20110318
nobuyasu <dimolto@cr.ie.u-ryukyu.ac.jp>
parents: 63
diff changeset
986 {
f6334be47118 update gcc from gcc-4.6-20100522 to gcc-4.6-20110318
nobuyasu <dimolto@cr.ie.u-ryukyu.ac.jp>
parents: 63
diff changeset
987 tree body;
f6334be47118 update gcc from gcc-4.6-20100522 to gcc-4.6-20110318
nobuyasu <dimolto@cr.ie.u-ryukyu.ac.jp>
parents: 63
diff changeset
988 tree fn;
f6334be47118 update gcc from gcc-4.6-20100522 to gcc-4.6-20110318
nobuyasu <dimolto@cr.ie.u-ryukyu.ac.jp>
parents: 63
diff changeset
989 priority_type priority;
f6334be47118 update gcc from gcc-4.6-20100522 to gcc-4.6-20110318
nobuyasu <dimolto@cr.ie.u-ryukyu.ac.jp>
parents: 63
diff changeset
990
f6334be47118 update gcc from gcc-4.6-20100522 to gcc-4.6-20110318
nobuyasu <dimolto@cr.ie.u-ryukyu.ac.jp>
parents: 63
diff changeset
991 priority = 0;
f6334be47118 update gcc from gcc-4.6-20100522 to gcc-4.6-20110318
nobuyasu <dimolto@cr.ie.u-ryukyu.ac.jp>
parents: 63
diff changeset
992 body = NULL_TREE;
f6334be47118 update gcc from gcc-4.6-20100522 to gcc-4.6-20110318
nobuyasu <dimolto@cr.ie.u-ryukyu.ac.jp>
parents: 63
diff changeset
993 j = i;
f6334be47118 update gcc from gcc-4.6-20100522 to gcc-4.6-20110318
nobuyasu <dimolto@cr.ie.u-ryukyu.ac.jp>
parents: 63
diff changeset
994 do
f6334be47118 update gcc from gcc-4.6-20100522 to gcc-4.6-20110318
nobuyasu <dimolto@cr.ie.u-ryukyu.ac.jp>
parents: 63
diff changeset
995 {
f6334be47118 update gcc from gcc-4.6-20100522 to gcc-4.6-20110318
nobuyasu <dimolto@cr.ie.u-ryukyu.ac.jp>
parents: 63
diff changeset
996 priority_type p;
111
kono
parents: 67
diff changeset
997 fn = cdtors[j];
67
f6334be47118 update gcc from gcc-4.6-20100522 to gcc-4.6-20110318
nobuyasu <dimolto@cr.ie.u-ryukyu.ac.jp>
parents: 63
diff changeset
998 p = ctor_p ? DECL_INIT_PRIORITY (fn) : DECL_FINI_PRIORITY (fn);
f6334be47118 update gcc from gcc-4.6-20100522 to gcc-4.6-20110318
nobuyasu <dimolto@cr.ie.u-ryukyu.ac.jp>
parents: 63
diff changeset
999 if (j == i)
f6334be47118 update gcc from gcc-4.6-20100522 to gcc-4.6-20110318
nobuyasu <dimolto@cr.ie.u-ryukyu.ac.jp>
parents: 63
diff changeset
1000 priority = p;
f6334be47118 update gcc from gcc-4.6-20100522 to gcc-4.6-20110318
nobuyasu <dimolto@cr.ie.u-ryukyu.ac.jp>
parents: 63
diff changeset
1001 else if (p != priority)
f6334be47118 update gcc from gcc-4.6-20100522 to gcc-4.6-20110318
nobuyasu <dimolto@cr.ie.u-ryukyu.ac.jp>
parents: 63
diff changeset
1002 break;
f6334be47118 update gcc from gcc-4.6-20100522 to gcc-4.6-20110318
nobuyasu <dimolto@cr.ie.u-ryukyu.ac.jp>
parents: 63
diff changeset
1003 j++;
f6334be47118 update gcc from gcc-4.6-20100522 to gcc-4.6-20110318
nobuyasu <dimolto@cr.ie.u-ryukyu.ac.jp>
parents: 63
diff changeset
1004 }
f6334be47118 update gcc from gcc-4.6-20100522 to gcc-4.6-20110318
nobuyasu <dimolto@cr.ie.u-ryukyu.ac.jp>
parents: 63
diff changeset
1005 while (j < len);
f6334be47118 update gcc from gcc-4.6-20100522 to gcc-4.6-20110318
nobuyasu <dimolto@cr.ie.u-ryukyu.ac.jp>
parents: 63
diff changeset
1006
f6334be47118 update gcc from gcc-4.6-20100522 to gcc-4.6-20110318
nobuyasu <dimolto@cr.ie.u-ryukyu.ac.jp>
parents: 63
diff changeset
1007 /* When there is only one cdtor and target supports them, do nothing. */
f6334be47118 update gcc from gcc-4.6-20100522 to gcc-4.6-20110318
nobuyasu <dimolto@cr.ie.u-ryukyu.ac.jp>
parents: 63
diff changeset
1008 if (j == i + 1
f6334be47118 update gcc from gcc-4.6-20100522 to gcc-4.6-20110318
nobuyasu <dimolto@cr.ie.u-ryukyu.ac.jp>
parents: 63
diff changeset
1009 && targetm.have_ctors_dtors)
f6334be47118 update gcc from gcc-4.6-20100522 to gcc-4.6-20110318
nobuyasu <dimolto@cr.ie.u-ryukyu.ac.jp>
parents: 63
diff changeset
1010 {
f6334be47118 update gcc from gcc-4.6-20100522 to gcc-4.6-20110318
nobuyasu <dimolto@cr.ie.u-ryukyu.ac.jp>
parents: 63
diff changeset
1011 i++;
f6334be47118 update gcc from gcc-4.6-20100522 to gcc-4.6-20110318
nobuyasu <dimolto@cr.ie.u-ryukyu.ac.jp>
parents: 63
diff changeset
1012 continue;
f6334be47118 update gcc from gcc-4.6-20100522 to gcc-4.6-20110318
nobuyasu <dimolto@cr.ie.u-ryukyu.ac.jp>
parents: 63
diff changeset
1013 }
f6334be47118 update gcc from gcc-4.6-20100522 to gcc-4.6-20110318
nobuyasu <dimolto@cr.ie.u-ryukyu.ac.jp>
parents: 63
diff changeset
1014 /* Find the next batch of constructors/destructors with the same
f6334be47118 update gcc from gcc-4.6-20100522 to gcc-4.6-20110318
nobuyasu <dimolto@cr.ie.u-ryukyu.ac.jp>
parents: 63
diff changeset
1015 initialization priority. */
f6334be47118 update gcc from gcc-4.6-20100522 to gcc-4.6-20110318
nobuyasu <dimolto@cr.ie.u-ryukyu.ac.jp>
parents: 63
diff changeset
1016 for (;i < j; i++)
f6334be47118 update gcc from gcc-4.6-20100522 to gcc-4.6-20110318
nobuyasu <dimolto@cr.ie.u-ryukyu.ac.jp>
parents: 63
diff changeset
1017 {
f6334be47118 update gcc from gcc-4.6-20100522 to gcc-4.6-20110318
nobuyasu <dimolto@cr.ie.u-ryukyu.ac.jp>
parents: 63
diff changeset
1018 tree call;
111
kono
parents: 67
diff changeset
1019 fn = cdtors[i];
67
f6334be47118 update gcc from gcc-4.6-20100522 to gcc-4.6-20110318
nobuyasu <dimolto@cr.ie.u-ryukyu.ac.jp>
parents: 63
diff changeset
1020 call = build_call_expr (fn, 0);
f6334be47118 update gcc from gcc-4.6-20100522 to gcc-4.6-20110318
nobuyasu <dimolto@cr.ie.u-ryukyu.ac.jp>
parents: 63
diff changeset
1021 if (ctor_p)
f6334be47118 update gcc from gcc-4.6-20100522 to gcc-4.6-20110318
nobuyasu <dimolto@cr.ie.u-ryukyu.ac.jp>
parents: 63
diff changeset
1022 DECL_STATIC_CONSTRUCTOR (fn) = 0;
f6334be47118 update gcc from gcc-4.6-20100522 to gcc-4.6-20110318
nobuyasu <dimolto@cr.ie.u-ryukyu.ac.jp>
parents: 63
diff changeset
1023 else
f6334be47118 update gcc from gcc-4.6-20100522 to gcc-4.6-20110318
nobuyasu <dimolto@cr.ie.u-ryukyu.ac.jp>
parents: 63
diff changeset
1024 DECL_STATIC_DESTRUCTOR (fn) = 0;
f6334be47118 update gcc from gcc-4.6-20100522 to gcc-4.6-20110318
nobuyasu <dimolto@cr.ie.u-ryukyu.ac.jp>
parents: 63
diff changeset
1025 /* We do not want to optimize away pure/const calls here.
f6334be47118 update gcc from gcc-4.6-20100522 to gcc-4.6-20110318
nobuyasu <dimolto@cr.ie.u-ryukyu.ac.jp>
parents: 63
diff changeset
1026 When optimizing, these should be already removed, when not
f6334be47118 update gcc from gcc-4.6-20100522 to gcc-4.6-20110318
nobuyasu <dimolto@cr.ie.u-ryukyu.ac.jp>
parents: 63
diff changeset
1027 optimizing, we want user to be able to breakpoint in them. */
f6334be47118 update gcc from gcc-4.6-20100522 to gcc-4.6-20110318
nobuyasu <dimolto@cr.ie.u-ryukyu.ac.jp>
parents: 63
diff changeset
1028 TREE_SIDE_EFFECTS (call) = 1;
f6334be47118 update gcc from gcc-4.6-20100522 to gcc-4.6-20110318
nobuyasu <dimolto@cr.ie.u-ryukyu.ac.jp>
parents: 63
diff changeset
1029 append_to_statement_list (call, &body);
f6334be47118 update gcc from gcc-4.6-20100522 to gcc-4.6-20110318
nobuyasu <dimolto@cr.ie.u-ryukyu.ac.jp>
parents: 63
diff changeset
1030 }
f6334be47118 update gcc from gcc-4.6-20100522 to gcc-4.6-20110318
nobuyasu <dimolto@cr.ie.u-ryukyu.ac.jp>
parents: 63
diff changeset
1031 gcc_assert (body != NULL_TREE);
f6334be47118 update gcc from gcc-4.6-20100522 to gcc-4.6-20110318
nobuyasu <dimolto@cr.ie.u-ryukyu.ac.jp>
parents: 63
diff changeset
1032 /* Generate a function to call all the function of like
f6334be47118 update gcc from gcc-4.6-20100522 to gcc-4.6-20110318
nobuyasu <dimolto@cr.ie.u-ryukyu.ac.jp>
parents: 63
diff changeset
1033 priority. */
f6334be47118 update gcc from gcc-4.6-20100522 to gcc-4.6-20110318
nobuyasu <dimolto@cr.ie.u-ryukyu.ac.jp>
parents: 63
diff changeset
1034 cgraph_build_static_cdtor_1 (ctor_p ? 'I' : 'D', body, priority, true);
f6334be47118 update gcc from gcc-4.6-20100522 to gcc-4.6-20110318
nobuyasu <dimolto@cr.ie.u-ryukyu.ac.jp>
parents: 63
diff changeset
1035 }
f6334be47118 update gcc from gcc-4.6-20100522 to gcc-4.6-20110318
nobuyasu <dimolto@cr.ie.u-ryukyu.ac.jp>
parents: 63
diff changeset
1036 }
f6334be47118 update gcc from gcc-4.6-20100522 to gcc-4.6-20110318
nobuyasu <dimolto@cr.ie.u-ryukyu.ac.jp>
parents: 63
diff changeset
1037
f6334be47118 update gcc from gcc-4.6-20100522 to gcc-4.6-20110318
nobuyasu <dimolto@cr.ie.u-ryukyu.ac.jp>
parents: 63
diff changeset
1038 /* Comparison function for qsort. P1 and P2 are actually of type
f6334be47118 update gcc from gcc-4.6-20100522 to gcc-4.6-20110318
nobuyasu <dimolto@cr.ie.u-ryukyu.ac.jp>
parents: 63
diff changeset
1039 "tree *" and point to static constructors. DECL_INIT_PRIORITY is
f6334be47118 update gcc from gcc-4.6-20100522 to gcc-4.6-20110318
nobuyasu <dimolto@cr.ie.u-ryukyu.ac.jp>
parents: 63
diff changeset
1040 used to determine the sort order. */
f6334be47118 update gcc from gcc-4.6-20100522 to gcc-4.6-20110318
nobuyasu <dimolto@cr.ie.u-ryukyu.ac.jp>
parents: 63
diff changeset
1041
f6334be47118 update gcc from gcc-4.6-20100522 to gcc-4.6-20110318
nobuyasu <dimolto@cr.ie.u-ryukyu.ac.jp>
parents: 63
diff changeset
1042 static int
f6334be47118 update gcc from gcc-4.6-20100522 to gcc-4.6-20110318
nobuyasu <dimolto@cr.ie.u-ryukyu.ac.jp>
parents: 63
diff changeset
1043 compare_ctor (const void *p1, const void *p2)
f6334be47118 update gcc from gcc-4.6-20100522 to gcc-4.6-20110318
nobuyasu <dimolto@cr.ie.u-ryukyu.ac.jp>
parents: 63
diff changeset
1044 {
f6334be47118 update gcc from gcc-4.6-20100522 to gcc-4.6-20110318
nobuyasu <dimolto@cr.ie.u-ryukyu.ac.jp>
parents: 63
diff changeset
1045 tree f1;
f6334be47118 update gcc from gcc-4.6-20100522 to gcc-4.6-20110318
nobuyasu <dimolto@cr.ie.u-ryukyu.ac.jp>
parents: 63
diff changeset
1046 tree f2;
f6334be47118 update gcc from gcc-4.6-20100522 to gcc-4.6-20110318
nobuyasu <dimolto@cr.ie.u-ryukyu.ac.jp>
parents: 63
diff changeset
1047 int priority1;
f6334be47118 update gcc from gcc-4.6-20100522 to gcc-4.6-20110318
nobuyasu <dimolto@cr.ie.u-ryukyu.ac.jp>
parents: 63
diff changeset
1048 int priority2;
f6334be47118 update gcc from gcc-4.6-20100522 to gcc-4.6-20110318
nobuyasu <dimolto@cr.ie.u-ryukyu.ac.jp>
parents: 63
diff changeset
1049
f6334be47118 update gcc from gcc-4.6-20100522 to gcc-4.6-20110318
nobuyasu <dimolto@cr.ie.u-ryukyu.ac.jp>
parents: 63
diff changeset
1050 f1 = *(const tree *)p1;
f6334be47118 update gcc from gcc-4.6-20100522 to gcc-4.6-20110318
nobuyasu <dimolto@cr.ie.u-ryukyu.ac.jp>
parents: 63
diff changeset
1051 f2 = *(const tree *)p2;
f6334be47118 update gcc from gcc-4.6-20100522 to gcc-4.6-20110318
nobuyasu <dimolto@cr.ie.u-ryukyu.ac.jp>
parents: 63
diff changeset
1052 priority1 = DECL_INIT_PRIORITY (f1);
f6334be47118 update gcc from gcc-4.6-20100522 to gcc-4.6-20110318
nobuyasu <dimolto@cr.ie.u-ryukyu.ac.jp>
parents: 63
diff changeset
1053 priority2 = DECL_INIT_PRIORITY (f2);
f6334be47118 update gcc from gcc-4.6-20100522 to gcc-4.6-20110318
nobuyasu <dimolto@cr.ie.u-ryukyu.ac.jp>
parents: 63
diff changeset
1054
f6334be47118 update gcc from gcc-4.6-20100522 to gcc-4.6-20110318
nobuyasu <dimolto@cr.ie.u-ryukyu.ac.jp>
parents: 63
diff changeset
1055 if (priority1 < priority2)
f6334be47118 update gcc from gcc-4.6-20100522 to gcc-4.6-20110318
nobuyasu <dimolto@cr.ie.u-ryukyu.ac.jp>
parents: 63
diff changeset
1056 return -1;
f6334be47118 update gcc from gcc-4.6-20100522 to gcc-4.6-20110318
nobuyasu <dimolto@cr.ie.u-ryukyu.ac.jp>
parents: 63
diff changeset
1057 else if (priority1 > priority2)
f6334be47118 update gcc from gcc-4.6-20100522 to gcc-4.6-20110318
nobuyasu <dimolto@cr.ie.u-ryukyu.ac.jp>
parents: 63
diff changeset
1058 return 1;
f6334be47118 update gcc from gcc-4.6-20100522 to gcc-4.6-20110318
nobuyasu <dimolto@cr.ie.u-ryukyu.ac.jp>
parents: 63
diff changeset
1059 else
f6334be47118 update gcc from gcc-4.6-20100522 to gcc-4.6-20110318
nobuyasu <dimolto@cr.ie.u-ryukyu.ac.jp>
parents: 63
diff changeset
1060 /* Ensure a stable sort. Constructors are executed in backwarding
f6334be47118 update gcc from gcc-4.6-20100522 to gcc-4.6-20110318
nobuyasu <dimolto@cr.ie.u-ryukyu.ac.jp>
parents: 63
diff changeset
1061 order to make LTO initialize braries first. */
f6334be47118 update gcc from gcc-4.6-20100522 to gcc-4.6-20110318
nobuyasu <dimolto@cr.ie.u-ryukyu.ac.jp>
parents: 63
diff changeset
1062 return DECL_UID (f2) - DECL_UID (f1);
f6334be47118 update gcc from gcc-4.6-20100522 to gcc-4.6-20110318
nobuyasu <dimolto@cr.ie.u-ryukyu.ac.jp>
parents: 63
diff changeset
1063 }
f6334be47118 update gcc from gcc-4.6-20100522 to gcc-4.6-20110318
nobuyasu <dimolto@cr.ie.u-ryukyu.ac.jp>
parents: 63
diff changeset
1064
f6334be47118 update gcc from gcc-4.6-20100522 to gcc-4.6-20110318
nobuyasu <dimolto@cr.ie.u-ryukyu.ac.jp>
parents: 63
diff changeset
1065 /* Comparison function for qsort. P1 and P2 are actually of type
f6334be47118 update gcc from gcc-4.6-20100522 to gcc-4.6-20110318
nobuyasu <dimolto@cr.ie.u-ryukyu.ac.jp>
parents: 63
diff changeset
1066 "tree *" and point to static destructors. DECL_FINI_PRIORITY is
f6334be47118 update gcc from gcc-4.6-20100522 to gcc-4.6-20110318
nobuyasu <dimolto@cr.ie.u-ryukyu.ac.jp>
parents: 63
diff changeset
1067 used to determine the sort order. */
f6334be47118 update gcc from gcc-4.6-20100522 to gcc-4.6-20110318
nobuyasu <dimolto@cr.ie.u-ryukyu.ac.jp>
parents: 63
diff changeset
1068
f6334be47118 update gcc from gcc-4.6-20100522 to gcc-4.6-20110318
nobuyasu <dimolto@cr.ie.u-ryukyu.ac.jp>
parents: 63
diff changeset
1069 static int
f6334be47118 update gcc from gcc-4.6-20100522 to gcc-4.6-20110318
nobuyasu <dimolto@cr.ie.u-ryukyu.ac.jp>
parents: 63
diff changeset
1070 compare_dtor (const void *p1, const void *p2)
f6334be47118 update gcc from gcc-4.6-20100522 to gcc-4.6-20110318
nobuyasu <dimolto@cr.ie.u-ryukyu.ac.jp>
parents: 63
diff changeset
1071 {
f6334be47118 update gcc from gcc-4.6-20100522 to gcc-4.6-20110318
nobuyasu <dimolto@cr.ie.u-ryukyu.ac.jp>
parents: 63
diff changeset
1072 tree f1;
f6334be47118 update gcc from gcc-4.6-20100522 to gcc-4.6-20110318
nobuyasu <dimolto@cr.ie.u-ryukyu.ac.jp>
parents: 63
diff changeset
1073 tree f2;
f6334be47118 update gcc from gcc-4.6-20100522 to gcc-4.6-20110318
nobuyasu <dimolto@cr.ie.u-ryukyu.ac.jp>
parents: 63
diff changeset
1074 int priority1;
f6334be47118 update gcc from gcc-4.6-20100522 to gcc-4.6-20110318
nobuyasu <dimolto@cr.ie.u-ryukyu.ac.jp>
parents: 63
diff changeset
1075 int priority2;
f6334be47118 update gcc from gcc-4.6-20100522 to gcc-4.6-20110318
nobuyasu <dimolto@cr.ie.u-ryukyu.ac.jp>
parents: 63
diff changeset
1076
f6334be47118 update gcc from gcc-4.6-20100522 to gcc-4.6-20110318
nobuyasu <dimolto@cr.ie.u-ryukyu.ac.jp>
parents: 63
diff changeset
1077 f1 = *(const tree *)p1;
f6334be47118 update gcc from gcc-4.6-20100522 to gcc-4.6-20110318
nobuyasu <dimolto@cr.ie.u-ryukyu.ac.jp>
parents: 63
diff changeset
1078 f2 = *(const tree *)p2;
f6334be47118 update gcc from gcc-4.6-20100522 to gcc-4.6-20110318
nobuyasu <dimolto@cr.ie.u-ryukyu.ac.jp>
parents: 63
diff changeset
1079 priority1 = DECL_FINI_PRIORITY (f1);
f6334be47118 update gcc from gcc-4.6-20100522 to gcc-4.6-20110318
nobuyasu <dimolto@cr.ie.u-ryukyu.ac.jp>
parents: 63
diff changeset
1080 priority2 = DECL_FINI_PRIORITY (f2);
f6334be47118 update gcc from gcc-4.6-20100522 to gcc-4.6-20110318
nobuyasu <dimolto@cr.ie.u-ryukyu.ac.jp>
parents: 63
diff changeset
1081
f6334be47118 update gcc from gcc-4.6-20100522 to gcc-4.6-20110318
nobuyasu <dimolto@cr.ie.u-ryukyu.ac.jp>
parents: 63
diff changeset
1082 if (priority1 < priority2)
f6334be47118 update gcc from gcc-4.6-20100522 to gcc-4.6-20110318
nobuyasu <dimolto@cr.ie.u-ryukyu.ac.jp>
parents: 63
diff changeset
1083 return -1;
f6334be47118 update gcc from gcc-4.6-20100522 to gcc-4.6-20110318
nobuyasu <dimolto@cr.ie.u-ryukyu.ac.jp>
parents: 63
diff changeset
1084 else if (priority1 > priority2)
f6334be47118 update gcc from gcc-4.6-20100522 to gcc-4.6-20110318
nobuyasu <dimolto@cr.ie.u-ryukyu.ac.jp>
parents: 63
diff changeset
1085 return 1;
f6334be47118 update gcc from gcc-4.6-20100522 to gcc-4.6-20110318
nobuyasu <dimolto@cr.ie.u-ryukyu.ac.jp>
parents: 63
diff changeset
1086 else
f6334be47118 update gcc from gcc-4.6-20100522 to gcc-4.6-20110318
nobuyasu <dimolto@cr.ie.u-ryukyu.ac.jp>
parents: 63
diff changeset
1087 /* Ensure a stable sort. */
f6334be47118 update gcc from gcc-4.6-20100522 to gcc-4.6-20110318
nobuyasu <dimolto@cr.ie.u-ryukyu.ac.jp>
parents: 63
diff changeset
1088 return DECL_UID (f1) - DECL_UID (f2);
f6334be47118 update gcc from gcc-4.6-20100522 to gcc-4.6-20110318
nobuyasu <dimolto@cr.ie.u-ryukyu.ac.jp>
parents: 63
diff changeset
1089 }
f6334be47118 update gcc from gcc-4.6-20100522 to gcc-4.6-20110318
nobuyasu <dimolto@cr.ie.u-ryukyu.ac.jp>
parents: 63
diff changeset
1090
f6334be47118 update gcc from gcc-4.6-20100522 to gcc-4.6-20110318
nobuyasu <dimolto@cr.ie.u-ryukyu.ac.jp>
parents: 63
diff changeset
1091 /* Generate functions to call static constructors and destructors
f6334be47118 update gcc from gcc-4.6-20100522 to gcc-4.6-20110318
nobuyasu <dimolto@cr.ie.u-ryukyu.ac.jp>
parents: 63
diff changeset
1092 for targets that do not support .ctors/.dtors sections. These
f6334be47118 update gcc from gcc-4.6-20100522 to gcc-4.6-20110318
nobuyasu <dimolto@cr.ie.u-ryukyu.ac.jp>
parents: 63
diff changeset
1093 functions have magic names which are detected by collect2. */
f6334be47118 update gcc from gcc-4.6-20100522 to gcc-4.6-20110318
nobuyasu <dimolto@cr.ie.u-ryukyu.ac.jp>
parents: 63
diff changeset
1094
f6334be47118 update gcc from gcc-4.6-20100522 to gcc-4.6-20110318
nobuyasu <dimolto@cr.ie.u-ryukyu.ac.jp>
parents: 63
diff changeset
1095 static void
111
kono
parents: 67
diff changeset
1096 build_cdtor_fns (vec<tree> *ctors, vec<tree> *dtors)
67
f6334be47118 update gcc from gcc-4.6-20100522 to gcc-4.6-20110318
nobuyasu <dimolto@cr.ie.u-ryukyu.ac.jp>
parents: 63
diff changeset
1097 {
111
kono
parents: 67
diff changeset
1098 if (!ctors->is_empty ())
67
f6334be47118 update gcc from gcc-4.6-20100522 to gcc-4.6-20110318
nobuyasu <dimolto@cr.ie.u-ryukyu.ac.jp>
parents: 63
diff changeset
1099 {
f6334be47118 update gcc from gcc-4.6-20100522 to gcc-4.6-20110318
nobuyasu <dimolto@cr.ie.u-ryukyu.ac.jp>
parents: 63
diff changeset
1100 gcc_assert (!targetm.have_ctors_dtors || in_lto_p);
111
kono
parents: 67
diff changeset
1101 ctors->qsort (compare_ctor);
kono
parents: 67
diff changeset
1102 build_cdtor (/*ctor_p=*/true, *ctors);
67
f6334be47118 update gcc from gcc-4.6-20100522 to gcc-4.6-20110318
nobuyasu <dimolto@cr.ie.u-ryukyu.ac.jp>
parents: 63
diff changeset
1103 }
f6334be47118 update gcc from gcc-4.6-20100522 to gcc-4.6-20110318
nobuyasu <dimolto@cr.ie.u-ryukyu.ac.jp>
parents: 63
diff changeset
1104
111
kono
parents: 67
diff changeset
1105 if (!dtors->is_empty ())
67
f6334be47118 update gcc from gcc-4.6-20100522 to gcc-4.6-20110318
nobuyasu <dimolto@cr.ie.u-ryukyu.ac.jp>
parents: 63
diff changeset
1106 {
f6334be47118 update gcc from gcc-4.6-20100522 to gcc-4.6-20110318
nobuyasu <dimolto@cr.ie.u-ryukyu.ac.jp>
parents: 63
diff changeset
1107 gcc_assert (!targetm.have_ctors_dtors || in_lto_p);
111
kono
parents: 67
diff changeset
1108 dtors->qsort (compare_dtor);
kono
parents: 67
diff changeset
1109 build_cdtor (/*ctor_p=*/false, *dtors);
67
f6334be47118 update gcc from gcc-4.6-20100522 to gcc-4.6-20110318
nobuyasu <dimolto@cr.ie.u-ryukyu.ac.jp>
parents: 63
diff changeset
1110 }
f6334be47118 update gcc from gcc-4.6-20100522 to gcc-4.6-20110318
nobuyasu <dimolto@cr.ie.u-ryukyu.ac.jp>
parents: 63
diff changeset
1111 }
f6334be47118 update gcc from gcc-4.6-20100522 to gcc-4.6-20110318
nobuyasu <dimolto@cr.ie.u-ryukyu.ac.jp>
parents: 63
diff changeset
1112
f6334be47118 update gcc from gcc-4.6-20100522 to gcc-4.6-20110318
nobuyasu <dimolto@cr.ie.u-ryukyu.ac.jp>
parents: 63
diff changeset
1113 /* Look for constructors and destructors and produce function calling them.
f6334be47118 update gcc from gcc-4.6-20100522 to gcc-4.6-20110318
nobuyasu <dimolto@cr.ie.u-ryukyu.ac.jp>
parents: 63
diff changeset
1114 This is needed for targets not supporting ctors or dtors, but we perform the
111
kono
parents: 67
diff changeset
1115 transformation also at linktime to merge possibly numerous
67
f6334be47118 update gcc from gcc-4.6-20100522 to gcc-4.6-20110318
nobuyasu <dimolto@cr.ie.u-ryukyu.ac.jp>
parents: 63
diff changeset
1116 constructors/destructors into single function to improve code locality and
f6334be47118 update gcc from gcc-4.6-20100522 to gcc-4.6-20110318
nobuyasu <dimolto@cr.ie.u-ryukyu.ac.jp>
parents: 63
diff changeset
1117 reduce size. */
f6334be47118 update gcc from gcc-4.6-20100522 to gcc-4.6-20110318
nobuyasu <dimolto@cr.ie.u-ryukyu.ac.jp>
parents: 63
diff changeset
1118
f6334be47118 update gcc from gcc-4.6-20100522 to gcc-4.6-20110318
nobuyasu <dimolto@cr.ie.u-ryukyu.ac.jp>
parents: 63
diff changeset
1119 static unsigned int
f6334be47118 update gcc from gcc-4.6-20100522 to gcc-4.6-20110318
nobuyasu <dimolto@cr.ie.u-ryukyu.ac.jp>
parents: 63
diff changeset
1120 ipa_cdtor_merge (void)
f6334be47118 update gcc from gcc-4.6-20100522 to gcc-4.6-20110318
nobuyasu <dimolto@cr.ie.u-ryukyu.ac.jp>
parents: 63
diff changeset
1121 {
111
kono
parents: 67
diff changeset
1122 /* A vector of FUNCTION_DECLs declared as static constructors. */
kono
parents: 67
diff changeset
1123 auto_vec<tree, 20> ctors;
kono
parents: 67
diff changeset
1124 /* A vector of FUNCTION_DECLs declared as static destructors. */
kono
parents: 67
diff changeset
1125 auto_vec<tree, 20> dtors;
67
f6334be47118 update gcc from gcc-4.6-20100522 to gcc-4.6-20110318
nobuyasu <dimolto@cr.ie.u-ryukyu.ac.jp>
parents: 63
diff changeset
1126 struct cgraph_node *node;
111
kono
parents: 67
diff changeset
1127 FOR_EACH_DEFINED_FUNCTION (node)
kono
parents: 67
diff changeset
1128 if (DECL_STATIC_CONSTRUCTOR (node->decl)
kono
parents: 67
diff changeset
1129 || DECL_STATIC_DESTRUCTOR (node->decl))
kono
parents: 67
diff changeset
1130 record_cdtor_fn (node, &ctors, &dtors);
kono
parents: 67
diff changeset
1131 build_cdtor_fns (&ctors, &dtors);
67
f6334be47118 update gcc from gcc-4.6-20100522 to gcc-4.6-20110318
nobuyasu <dimolto@cr.ie.u-ryukyu.ac.jp>
parents: 63
diff changeset
1132 return 0;
f6334be47118 update gcc from gcc-4.6-20100522 to gcc-4.6-20110318
nobuyasu <dimolto@cr.ie.u-ryukyu.ac.jp>
parents: 63
diff changeset
1133 }
f6334be47118 update gcc from gcc-4.6-20100522 to gcc-4.6-20110318
nobuyasu <dimolto@cr.ie.u-ryukyu.ac.jp>
parents: 63
diff changeset
1134
111
kono
parents: 67
diff changeset
1135 namespace {
kono
parents: 67
diff changeset
1136
kono
parents: 67
diff changeset
1137 const pass_data pass_data_ipa_cdtor_merge =
kono
parents: 67
diff changeset
1138 {
kono
parents: 67
diff changeset
1139 IPA_PASS, /* type */
kono
parents: 67
diff changeset
1140 "cdtor", /* name */
kono
parents: 67
diff changeset
1141 OPTGROUP_NONE, /* optinfo_flags */
kono
parents: 67
diff changeset
1142 TV_CGRAPHOPT, /* tv_id */
kono
parents: 67
diff changeset
1143 0, /* properties_required */
kono
parents: 67
diff changeset
1144 0, /* properties_provided */
kono
parents: 67
diff changeset
1145 0, /* properties_destroyed */
kono
parents: 67
diff changeset
1146 0, /* todo_flags_start */
kono
parents: 67
diff changeset
1147 0, /* todo_flags_finish */
kono
parents: 67
diff changeset
1148 };
kono
parents: 67
diff changeset
1149
kono
parents: 67
diff changeset
1150 class pass_ipa_cdtor_merge : public ipa_opt_pass_d
kono
parents: 67
diff changeset
1151 {
kono
parents: 67
diff changeset
1152 public:
kono
parents: 67
diff changeset
1153 pass_ipa_cdtor_merge (gcc::context *ctxt)
kono
parents: 67
diff changeset
1154 : ipa_opt_pass_d (pass_data_ipa_cdtor_merge, ctxt,
kono
parents: 67
diff changeset
1155 NULL, /* generate_summary */
kono
parents: 67
diff changeset
1156 NULL, /* write_summary */
kono
parents: 67
diff changeset
1157 NULL, /* read_summary */
kono
parents: 67
diff changeset
1158 NULL, /* write_optimization_summary */
kono
parents: 67
diff changeset
1159 NULL, /* read_optimization_summary */
kono
parents: 67
diff changeset
1160 NULL, /* stmt_fixup */
kono
parents: 67
diff changeset
1161 0, /* function_transform_todo_flags_start */
kono
parents: 67
diff changeset
1162 NULL, /* function_transform */
kono
parents: 67
diff changeset
1163 NULL) /* variable_transform */
kono
parents: 67
diff changeset
1164 {}
kono
parents: 67
diff changeset
1165
kono
parents: 67
diff changeset
1166 /* opt_pass methods: */
kono
parents: 67
diff changeset
1167 virtual bool gate (function *);
kono
parents: 67
diff changeset
1168 virtual unsigned int execute (function *) { return ipa_cdtor_merge (); }
kono
parents: 67
diff changeset
1169
kono
parents: 67
diff changeset
1170 }; // class pass_ipa_cdtor_merge
kono
parents: 67
diff changeset
1171
kono
parents: 67
diff changeset
1172 bool
kono
parents: 67
diff changeset
1173 pass_ipa_cdtor_merge::gate (function *)
kono
parents: 67
diff changeset
1174 {
kono
parents: 67
diff changeset
1175 /* Perform the pass when we have no ctors/dtors support
kono
parents: 67
diff changeset
1176 or at LTO time to merge multiple constructors into single
kono
parents: 67
diff changeset
1177 function. */
kono
parents: 67
diff changeset
1178 return !targetm.have_ctors_dtors || in_lto_p;
kono
parents: 67
diff changeset
1179 }
kono
parents: 67
diff changeset
1180
kono
parents: 67
diff changeset
1181 } // anon namespace
kono
parents: 67
diff changeset
1182
kono
parents: 67
diff changeset
1183 ipa_opt_pass_d *
kono
parents: 67
diff changeset
1184 make_pass_ipa_cdtor_merge (gcc::context *ctxt)
kono
parents: 67
diff changeset
1185 {
kono
parents: 67
diff changeset
1186 return new pass_ipa_cdtor_merge (ctxt);
kono
parents: 67
diff changeset
1187 }
kono
parents: 67
diff changeset
1188
kono
parents: 67
diff changeset
1189 /* Invalid pointer representing BOTTOM for single user dataflow. */
kono
parents: 67
diff changeset
1190 #define BOTTOM ((cgraph_node *)(size_t) 2)
kono
parents: 67
diff changeset
1191
kono
parents: 67
diff changeset
1192 /* Meet operation for single user dataflow.
kono
parents: 67
diff changeset
1193 Here we want to associate variables with sigle function that may access it.
kono
parents: 67
diff changeset
1194
kono
parents: 67
diff changeset
1195 FUNCTION is current single user of a variable, VAR is variable that uses it.
kono
parents: 67
diff changeset
1196 Latttice is stored in SINGLE_USER_MAP.
67
f6334be47118 update gcc from gcc-4.6-20100522 to gcc-4.6-20110318
nobuyasu <dimolto@cr.ie.u-ryukyu.ac.jp>
parents: 63
diff changeset
1197
111
kono
parents: 67
diff changeset
1198 We represent:
kono
parents: 67
diff changeset
1199 - TOP by no entry in SIGNLE_USER_MAP
kono
parents: 67
diff changeset
1200 - BOTTOM by BOTTOM in AUX pointer (to save lookups)
kono
parents: 67
diff changeset
1201 - known single user by cgraph pointer in SINGLE_USER_MAP. */
kono
parents: 67
diff changeset
1202
kono
parents: 67
diff changeset
1203 cgraph_node *
kono
parents: 67
diff changeset
1204 meet (cgraph_node *function, varpool_node *var,
kono
parents: 67
diff changeset
1205 hash_map<varpool_node *, cgraph_node *> &single_user_map)
67
f6334be47118 update gcc from gcc-4.6-20100522 to gcc-4.6-20110318
nobuyasu <dimolto@cr.ie.u-ryukyu.ac.jp>
parents: 63
diff changeset
1206 {
111
kono
parents: 67
diff changeset
1207 struct cgraph_node *user, **f;
kono
parents: 67
diff changeset
1208
kono
parents: 67
diff changeset
1209 if (var->aux == BOTTOM)
kono
parents: 67
diff changeset
1210 return BOTTOM;
kono
parents: 67
diff changeset
1211
kono
parents: 67
diff changeset
1212 f = single_user_map.get (var);
kono
parents: 67
diff changeset
1213 if (!f)
kono
parents: 67
diff changeset
1214 return function;
kono
parents: 67
diff changeset
1215 user = *f;
kono
parents: 67
diff changeset
1216 if (!function)
kono
parents: 67
diff changeset
1217 return user;
kono
parents: 67
diff changeset
1218 else if (function != user)
kono
parents: 67
diff changeset
1219 return BOTTOM;
kono
parents: 67
diff changeset
1220 else
kono
parents: 67
diff changeset
1221 return function;
kono
parents: 67
diff changeset
1222 }
kono
parents: 67
diff changeset
1223
kono
parents: 67
diff changeset
1224 /* Propagation step of single-use dataflow.
kono
parents: 67
diff changeset
1225
kono
parents: 67
diff changeset
1226 Check all uses of VNODE and see if they are used by single function FUNCTION.
kono
parents: 67
diff changeset
1227 SINGLE_USER_MAP represents the dataflow lattice. */
kono
parents: 67
diff changeset
1228
kono
parents: 67
diff changeset
1229 cgraph_node *
kono
parents: 67
diff changeset
1230 propagate_single_user (varpool_node *vnode, cgraph_node *function,
kono
parents: 67
diff changeset
1231 hash_map<varpool_node *, cgraph_node *> &single_user_map)
kono
parents: 67
diff changeset
1232 {
kono
parents: 67
diff changeset
1233 int i;
kono
parents: 67
diff changeset
1234 struct ipa_ref *ref;
kono
parents: 67
diff changeset
1235
kono
parents: 67
diff changeset
1236 gcc_assert (!vnode->externally_visible);
kono
parents: 67
diff changeset
1237
kono
parents: 67
diff changeset
1238 /* If node is an alias, first meet with its target. */
kono
parents: 67
diff changeset
1239 if (vnode->alias)
kono
parents: 67
diff changeset
1240 function = meet (function, vnode->get_alias_target (), single_user_map);
kono
parents: 67
diff changeset
1241
kono
parents: 67
diff changeset
1242 /* Check all users and see if they correspond to a single function. */
kono
parents: 67
diff changeset
1243 for (i = 0; vnode->iterate_referring (i, ref) && function != BOTTOM; i++)
kono
parents: 67
diff changeset
1244 {
kono
parents: 67
diff changeset
1245 struct cgraph_node *cnode = dyn_cast <cgraph_node *> (ref->referring);
kono
parents: 67
diff changeset
1246 if (cnode)
kono
parents: 67
diff changeset
1247 {
kono
parents: 67
diff changeset
1248 if (cnode->global.inlined_to)
kono
parents: 67
diff changeset
1249 cnode = cnode->global.inlined_to;
kono
parents: 67
diff changeset
1250 if (!function)
kono
parents: 67
diff changeset
1251 function = cnode;
kono
parents: 67
diff changeset
1252 else if (function != cnode)
kono
parents: 67
diff changeset
1253 function = BOTTOM;
kono
parents: 67
diff changeset
1254 }
kono
parents: 67
diff changeset
1255 else
kono
parents: 67
diff changeset
1256 function = meet (function, dyn_cast <varpool_node *> (ref->referring),
kono
parents: 67
diff changeset
1257 single_user_map);
kono
parents: 67
diff changeset
1258 }
kono
parents: 67
diff changeset
1259 return function;
67
f6334be47118 update gcc from gcc-4.6-20100522 to gcc-4.6-20110318
nobuyasu <dimolto@cr.ie.u-ryukyu.ac.jp>
parents: 63
diff changeset
1260 }
f6334be47118 update gcc from gcc-4.6-20100522 to gcc-4.6-20110318
nobuyasu <dimolto@cr.ie.u-ryukyu.ac.jp>
parents: 63
diff changeset
1261
111
kono
parents: 67
diff changeset
1262 /* Pass setting used_by_single_function flag.
kono
parents: 67
diff changeset
1263 This flag is set on variable when there is only one function that may
kono
parents: 67
diff changeset
1264 possibly referr to it. */
kono
parents: 67
diff changeset
1265
kono
parents: 67
diff changeset
1266 static unsigned int
kono
parents: 67
diff changeset
1267 ipa_single_use (void)
67
f6334be47118 update gcc from gcc-4.6-20100522 to gcc-4.6-20110318
nobuyasu <dimolto@cr.ie.u-ryukyu.ac.jp>
parents: 63
diff changeset
1268 {
111
kono
parents: 67
diff changeset
1269 varpool_node *first = (varpool_node *) (void *) 1;
kono
parents: 67
diff changeset
1270 varpool_node *var;
kono
parents: 67
diff changeset
1271 hash_map<varpool_node *, cgraph_node *> single_user_map;
kono
parents: 67
diff changeset
1272
kono
parents: 67
diff changeset
1273 FOR_EACH_DEFINED_VARIABLE (var)
kono
parents: 67
diff changeset
1274 if (!var->all_refs_explicit_p ())
kono
parents: 67
diff changeset
1275 var->aux = BOTTOM;
kono
parents: 67
diff changeset
1276 else
kono
parents: 67
diff changeset
1277 {
kono
parents: 67
diff changeset
1278 /* Enqueue symbol for dataflow. */
kono
parents: 67
diff changeset
1279 var->aux = first;
kono
parents: 67
diff changeset
1280 first = var;
kono
parents: 67
diff changeset
1281 }
kono
parents: 67
diff changeset
1282
kono
parents: 67
diff changeset
1283 /* The actual dataflow. */
kono
parents: 67
diff changeset
1284
kono
parents: 67
diff changeset
1285 while (first != (void *) 1)
kono
parents: 67
diff changeset
1286 {
kono
parents: 67
diff changeset
1287 cgraph_node *user, *orig_user, **f;
kono
parents: 67
diff changeset
1288
kono
parents: 67
diff changeset
1289 var = first;
kono
parents: 67
diff changeset
1290 first = (varpool_node *)first->aux;
kono
parents: 67
diff changeset
1291
kono
parents: 67
diff changeset
1292 f = single_user_map.get (var);
kono
parents: 67
diff changeset
1293 if (f)
kono
parents: 67
diff changeset
1294 orig_user = *f;
kono
parents: 67
diff changeset
1295 else
kono
parents: 67
diff changeset
1296 orig_user = NULL;
kono
parents: 67
diff changeset
1297 user = propagate_single_user (var, orig_user, single_user_map);
kono
parents: 67
diff changeset
1298
kono
parents: 67
diff changeset
1299 gcc_checking_assert (var->aux != BOTTOM);
kono
parents: 67
diff changeset
1300
kono
parents: 67
diff changeset
1301 /* If user differs, enqueue all references. */
kono
parents: 67
diff changeset
1302 if (user != orig_user)
kono
parents: 67
diff changeset
1303 {
kono
parents: 67
diff changeset
1304 unsigned int i;
kono
parents: 67
diff changeset
1305 ipa_ref *ref;
kono
parents: 67
diff changeset
1306
kono
parents: 67
diff changeset
1307 single_user_map.put (var, user);
kono
parents: 67
diff changeset
1308
kono
parents: 67
diff changeset
1309 /* Enqueue all aliases for re-processing. */
kono
parents: 67
diff changeset
1310 for (i = 0; var->iterate_direct_aliases (i, ref); i++)
kono
parents: 67
diff changeset
1311 if (!ref->referring->aux)
kono
parents: 67
diff changeset
1312 {
kono
parents: 67
diff changeset
1313 ref->referring->aux = first;
kono
parents: 67
diff changeset
1314 first = dyn_cast <varpool_node *> (ref->referring);
kono
parents: 67
diff changeset
1315 }
kono
parents: 67
diff changeset
1316 /* Enqueue all users for re-processing. */
kono
parents: 67
diff changeset
1317 for (i = 0; var->iterate_reference (i, ref); i++)
kono
parents: 67
diff changeset
1318 if (!ref->referred->aux
kono
parents: 67
diff changeset
1319 && ref->referred->definition
kono
parents: 67
diff changeset
1320 && is_a <varpool_node *> (ref->referred))
kono
parents: 67
diff changeset
1321 {
kono
parents: 67
diff changeset
1322 ref->referred->aux = first;
kono
parents: 67
diff changeset
1323 first = dyn_cast <varpool_node *> (ref->referred);
kono
parents: 67
diff changeset
1324 }
kono
parents: 67
diff changeset
1325
kono
parents: 67
diff changeset
1326 /* If user is BOTTOM, just punt on this var. */
kono
parents: 67
diff changeset
1327 if (user == BOTTOM)
kono
parents: 67
diff changeset
1328 var->aux = BOTTOM;
kono
parents: 67
diff changeset
1329 else
kono
parents: 67
diff changeset
1330 var->aux = NULL;
kono
parents: 67
diff changeset
1331 }
kono
parents: 67
diff changeset
1332 else
kono
parents: 67
diff changeset
1333 var->aux = NULL;
kono
parents: 67
diff changeset
1334 }
kono
parents: 67
diff changeset
1335
kono
parents: 67
diff changeset
1336 FOR_EACH_DEFINED_VARIABLE (var)
kono
parents: 67
diff changeset
1337 {
kono
parents: 67
diff changeset
1338 if (var->aux != BOTTOM)
kono
parents: 67
diff changeset
1339 {
kono
parents: 67
diff changeset
1340 /* Not having the single user known means that the VAR is
kono
parents: 67
diff changeset
1341 unreachable. Either someone forgot to remove unreachable
kono
parents: 67
diff changeset
1342 variables or the reachability here is wrong. */
kono
parents: 67
diff changeset
1343
kono
parents: 67
diff changeset
1344 gcc_checking_assert (single_user_map.get (var));
kono
parents: 67
diff changeset
1345
kono
parents: 67
diff changeset
1346 if (dump_file)
kono
parents: 67
diff changeset
1347 {
kono
parents: 67
diff changeset
1348 fprintf (dump_file, "Variable %s is used by single function\n",
kono
parents: 67
diff changeset
1349 var->dump_name ());
kono
parents: 67
diff changeset
1350 }
kono
parents: 67
diff changeset
1351 var->used_by_single_function = true;
kono
parents: 67
diff changeset
1352 }
kono
parents: 67
diff changeset
1353 var->aux = NULL;
kono
parents: 67
diff changeset
1354 }
kono
parents: 67
diff changeset
1355 return 0;
kono
parents: 67
diff changeset
1356 }
kono
parents: 67
diff changeset
1357
kono
parents: 67
diff changeset
1358 namespace {
kono
parents: 67
diff changeset
1359
kono
parents: 67
diff changeset
1360 const pass_data pass_data_ipa_single_use =
kono
parents: 67
diff changeset
1361 {
kono
parents: 67
diff changeset
1362 IPA_PASS, /* type */
kono
parents: 67
diff changeset
1363 "single-use", /* name */
kono
parents: 67
diff changeset
1364 OPTGROUP_NONE, /* optinfo_flags */
kono
parents: 67
diff changeset
1365 TV_CGRAPHOPT, /* tv_id */
kono
parents: 67
diff changeset
1366 0, /* properties_required */
kono
parents: 67
diff changeset
1367 0, /* properties_provided */
kono
parents: 67
diff changeset
1368 0, /* properties_destroyed */
kono
parents: 67
diff changeset
1369 0, /* todo_flags_start */
kono
parents: 67
diff changeset
1370 0, /* todo_flags_finish */
67
f6334be47118 update gcc from gcc-4.6-20100522 to gcc-4.6-20110318
nobuyasu <dimolto@cr.ie.u-ryukyu.ac.jp>
parents: 63
diff changeset
1371 };
111
kono
parents: 67
diff changeset
1372
kono
parents: 67
diff changeset
1373 class pass_ipa_single_use : public ipa_opt_pass_d
kono
parents: 67
diff changeset
1374 {
kono
parents: 67
diff changeset
1375 public:
kono
parents: 67
diff changeset
1376 pass_ipa_single_use (gcc::context *ctxt)
kono
parents: 67
diff changeset
1377 : ipa_opt_pass_d (pass_data_ipa_single_use, ctxt,
kono
parents: 67
diff changeset
1378 NULL, /* generate_summary */
kono
parents: 67
diff changeset
1379 NULL, /* write_summary */
kono
parents: 67
diff changeset
1380 NULL, /* read_summary */
kono
parents: 67
diff changeset
1381 NULL, /* write_optimization_summary */
kono
parents: 67
diff changeset
1382 NULL, /* read_optimization_summary */
kono
parents: 67
diff changeset
1383 NULL, /* stmt_fixup */
kono
parents: 67
diff changeset
1384 0, /* function_transform_todo_flags_start */
kono
parents: 67
diff changeset
1385 NULL, /* function_transform */
kono
parents: 67
diff changeset
1386 NULL) /* variable_transform */
kono
parents: 67
diff changeset
1387 {}
kono
parents: 67
diff changeset
1388
kono
parents: 67
diff changeset
1389 /* opt_pass methods: */
kono
parents: 67
diff changeset
1390 virtual unsigned int execute (function *) { return ipa_single_use (); }
kono
parents: 67
diff changeset
1391
kono
parents: 67
diff changeset
1392 }; // class pass_ipa_single_use
kono
parents: 67
diff changeset
1393
kono
parents: 67
diff changeset
1394 } // anon namespace
kono
parents: 67
diff changeset
1395
kono
parents: 67
diff changeset
1396 ipa_opt_pass_d *
kono
parents: 67
diff changeset
1397 make_pass_ipa_single_use (gcc::context *ctxt)
kono
parents: 67
diff changeset
1398 {
kono
parents: 67
diff changeset
1399 return new pass_ipa_single_use (ctxt);
kono
parents: 67
diff changeset
1400 }
kono
parents: 67
diff changeset
1401
kono
parents: 67
diff changeset
1402 /* Materialize all clones. */
kono
parents: 67
diff changeset
1403
kono
parents: 67
diff changeset
1404 namespace {
kono
parents: 67
diff changeset
1405
kono
parents: 67
diff changeset
1406 const pass_data pass_data_materialize_all_clones =
kono
parents: 67
diff changeset
1407 {
kono
parents: 67
diff changeset
1408 SIMPLE_IPA_PASS, /* type */
kono
parents: 67
diff changeset
1409 "materialize-all-clones", /* name */
kono
parents: 67
diff changeset
1410 OPTGROUP_NONE, /* optinfo_flags */
kono
parents: 67
diff changeset
1411 TV_IPA_OPT, /* tv_id */
kono
parents: 67
diff changeset
1412 0, /* properties_required */
kono
parents: 67
diff changeset
1413 0, /* properties_provided */
kono
parents: 67
diff changeset
1414 0, /* properties_destroyed */
kono
parents: 67
diff changeset
1415 0, /* todo_flags_start */
kono
parents: 67
diff changeset
1416 0, /* todo_flags_finish */
kono
parents: 67
diff changeset
1417 };
kono
parents: 67
diff changeset
1418
kono
parents: 67
diff changeset
1419 class pass_materialize_all_clones : public simple_ipa_opt_pass
kono
parents: 67
diff changeset
1420 {
kono
parents: 67
diff changeset
1421 public:
kono
parents: 67
diff changeset
1422 pass_materialize_all_clones (gcc::context *ctxt)
kono
parents: 67
diff changeset
1423 : simple_ipa_opt_pass (pass_data_materialize_all_clones, ctxt)
kono
parents: 67
diff changeset
1424 {}
kono
parents: 67
diff changeset
1425
kono
parents: 67
diff changeset
1426 /* opt_pass methods: */
kono
parents: 67
diff changeset
1427 virtual unsigned int execute (function *)
kono
parents: 67
diff changeset
1428 {
kono
parents: 67
diff changeset
1429 symtab->materialize_all_clones ();
kono
parents: 67
diff changeset
1430 return 0;
kono
parents: 67
diff changeset
1431 }
kono
parents: 67
diff changeset
1432
kono
parents: 67
diff changeset
1433 }; // class pass_materialize_all_clones
kono
parents: 67
diff changeset
1434
kono
parents: 67
diff changeset
1435 } // anon namespace
kono
parents: 67
diff changeset
1436
kono
parents: 67
diff changeset
1437 simple_ipa_opt_pass *
kono
parents: 67
diff changeset
1438 make_pass_materialize_all_clones (gcc::context *ctxt)
kono
parents: 67
diff changeset
1439 {
kono
parents: 67
diff changeset
1440 return new pass_materialize_all_clones (ctxt);
kono
parents: 67
diff changeset
1441 }