]> git.ipfire.org Git - thirdparty/gcc.git/blame - gcc/cgraph.c
re PR target/57431 (ICE in simplify_const_unary_operation vld1_dup_s64/vst1_s64)
[thirdparty/gcc.git] / gcc / cgraph.c
CommitLineData
e72fcfe8 1/* Callgraph handling code.
d1e082c2 2 Copyright (C) 2003-2013 Free Software Foundation, Inc.
e72fcfe8
JH
3 Contributed by Jan Hubicka
4
5This file is part of GCC.
6
7GCC is free software; you can redistribute it and/or modify it under
8the terms of the GNU General Public License as published by the Free
9dcd6f09 9Software Foundation; either version 3, or (at your option) any later
e72fcfe8
JH
10version.
11
12GCC is distributed in the hope that it will be useful, but WITHOUT ANY
13WARRANTY; without even the implied warranty of MERCHANTABILITY or
14FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License
15for more details.
16
17You should have received a copy of the GNU General Public License
9dcd6f09
NC
18along with GCC; see the file COPYING3. If not see
19<http://www.gnu.org/licenses/>. */
e72fcfe8 20
8a4a83ed 21/* This file contains basic routines manipulating call graph
c22cacf3 22
9c8305f8
JH
23 The call-graph is a data structure designed for intra-procedural optimization.
24 It represents a multi-graph where nodes are functions and edges are call sites. */
18c6ada9 25
e72fcfe8
JH
26#include "config.h"
27#include "system.h"
28#include "coretypes.h"
29#include "tm.h"
30#include "tree.h"
cd9c7bd2 31#include "tree-inline.h"
e72fcfe8
JH
32#include "langhooks.h"
33#include "hashtab.h"
34#include "toplev.h"
35#include "flags.h"
36#include "ggc.h"
37#include "debug.h"
38#include "target.h"
cd9c7bd2 39#include "basic-block.h"
1c4a429a 40#include "cgraph.h"
dc0bfe6a 41#include "intl.h"
726a989a 42#include "gimple.h"
7ee2468b
SB
43#include "timevar.h"
44#include "dumpfile.h"
7a388ee4 45#include "tree-flow.h"
a63f2942 46#include "value-prof.h"
f9417da1 47#include "except.h"
1da2ed5f 48#include "diagnostic-core.h"
715a4e08 49#include "rtl.h"
a940b4d9 50#include "ipa-utils.h"
99fecd47 51#include "lto-streamer.h"
e7f23018 52#include "ipa-inline.h"
7d776ee2 53#include "cfgloop.h"
9c8305f8 54#include "gimple-pretty-print.h"
988d1653 55
7ee2468b
SB
56/* FIXME: Only for PROP_loops, but cgraph shouldn't have to know about this. */
57#include "tree-pass.h"
58
2563c224
RG
59static void cgraph_node_remove_callers (struct cgraph_node *node);
60static inline void cgraph_edge_remove_caller (struct cgraph_edge *e);
61static inline void cgraph_edge_remove_callee (struct cgraph_edge *e);
62
1668aabc 63/* Queue of cgraph nodes scheduled to be lowered. */
960bfb69
JH
64symtab_node x_cgraph_nodes_queue;
65#define cgraph_nodes_queue ((struct cgraph_node *)x_cgraph_nodes_queue)
1668aabc 66
e72fcfe8 67/* Number of nodes in existence. */
1c4a429a 68int cgraph_n_nodes;
e72fcfe8 69
b58b1157
JH
70/* Maximal uid used in cgraph nodes. */
71int cgraph_max_uid;
72
9088c1cc
MJ
73/* Maximal uid used in cgraph edges. */
74int cgraph_edge_max_uid;
75
dafc5b82
JH
76/* Set when whole unit has been analyzed so we can access global info. */
77bool cgraph_global_info_ready = false;
78
f45e0ad1 79/* What state callgraph is in right now. */
66058468 80enum cgraph_state cgraph_state = CGRAPH_STATE_PARSING;
f45e0ad1 81
cd9c7bd2
JH
82/* Set when the cgraph is fully build and the basic flags are computed. */
83bool cgraph_function_flags_ready = false;
84
61502ca8 85/* List of hooks triggered on cgraph_edge events. */
9088c1cc
MJ
86struct cgraph_edge_hook_list {
87 cgraph_edge_hook hook;
88 void *data;
89 struct cgraph_edge_hook_list *next;
90};
91
61502ca8 92/* List of hooks triggered on cgraph_node events. */
9088c1cc
MJ
93struct cgraph_node_hook_list {
94 cgraph_node_hook hook;
95 void *data;
96 struct cgraph_node_hook_list *next;
97};
98
61502ca8 99/* List of hooks triggered on events involving two cgraph_edges. */
9088c1cc
MJ
100struct cgraph_2edge_hook_list {
101 cgraph_2edge_hook hook;
102 void *data;
103 struct cgraph_2edge_hook_list *next;
104};
105
61502ca8 106/* List of hooks triggered on events involving two cgraph_nodes. */
9088c1cc
MJ
107struct cgraph_2node_hook_list {
108 cgraph_2node_hook hook;
109 void *data;
110 struct cgraph_2node_hook_list *next;
111};
112
113/* List of hooks triggered when an edge is removed. */
114struct cgraph_edge_hook_list *first_cgraph_edge_removal_hook;
115/* List of hooks triggered when a node is removed. */
116struct cgraph_node_hook_list *first_cgraph_node_removal_hook;
117/* List of hooks triggered when an edge is duplicated. */
118struct cgraph_2edge_hook_list *first_cgraph_edge_duplicated_hook;
119/* List of hooks triggered when a node is duplicated. */
120struct cgraph_2node_hook_list *first_cgraph_node_duplicated_hook;
129a37fc
JH
121/* List of hooks triggered when an function is inserted. */
122struct cgraph_node_hook_list *first_cgraph_function_insertion_hook;
9088c1cc 123
2fb16412
MJ
124/* Head of a linked list of unused (freed) call graph nodes.
125 Do not GTY((delete)) this list so UIDs gets reliably recycled. */
126static GTY(()) struct cgraph_node *free_nodes;
934cb78a
MJ
127/* Head of a linked list of unused (freed) call graph edges.
128 Do not GTY((delete)) this list so UIDs gets reliably recycled. */
129static GTY(()) struct cgraph_edge *free_edges;
130
39e2db00 131/* Did procss_same_body_aliases run? */
40a7fe1e 132bool cpp_implicit_aliases_done;
39e2db00 133
3649b9b7
ST
134/* Map a cgraph_node to cgraph_function_version_info using this htab.
135 The cgraph_function_version_info has a THIS_NODE field that is the
136 corresponding cgraph_node.. */
137
138static htab_t GTY((param_is (struct cgraph_function_version_info *)))
139 cgraph_fnver_htab = NULL;
140
141/* Hash function for cgraph_fnver_htab. */
142static hashval_t
143cgraph_fnver_htab_hash (const void *ptr)
144{
145 int uid = ((const struct cgraph_function_version_info *)ptr)->this_node->uid;
146 return (hashval_t)(uid);
147}
148
149/* eq function for cgraph_fnver_htab. */
150static int
151cgraph_fnver_htab_eq (const void *p1, const void *p2)
152{
153 const struct cgraph_function_version_info *n1
154 = (const struct cgraph_function_version_info *)p1;
155 const struct cgraph_function_version_info *n2
156 = (const struct cgraph_function_version_info *)p2;
157
158 return n1->this_node->uid == n2->this_node->uid;
159}
160
161/* Mark as GC root all allocated nodes. */
162static GTY(()) struct cgraph_function_version_info *
163 version_info_node = NULL;
164
165/* Get the cgraph_function_version_info node corresponding to node. */
166struct cgraph_function_version_info *
167get_cgraph_node_version (struct cgraph_node *node)
168{
169 struct cgraph_function_version_info *ret;
170 struct cgraph_function_version_info key;
171 key.this_node = node;
172
173 if (cgraph_fnver_htab == NULL)
174 return NULL;
175
176 ret = (struct cgraph_function_version_info *)
177 htab_find (cgraph_fnver_htab, &key);
178
179 return ret;
180}
181
182/* Insert a new cgraph_function_version_info node into cgraph_fnver_htab
183 corresponding to cgraph_node NODE. */
184struct cgraph_function_version_info *
185insert_new_cgraph_node_version (struct cgraph_node *node)
186{
187 void **slot;
188
189 version_info_node = NULL;
190 version_info_node = ggc_alloc_cleared_cgraph_function_version_info ();
191 version_info_node->this_node = node;
192
193 if (cgraph_fnver_htab == NULL)
194 cgraph_fnver_htab = htab_create_ggc (2, cgraph_fnver_htab_hash,
195 cgraph_fnver_htab_eq, NULL);
196
197 slot = htab_find_slot (cgraph_fnver_htab, version_info_node, INSERT);
198 gcc_assert (slot != NULL);
199 *slot = version_info_node;
200 return version_info_node;
201}
202
203/* Remove the cgraph_function_version_info and cgraph_node for DECL. This
204 DECL is a duplicate declaration. */
205void
206delete_function_version (tree decl)
207{
beb42d20 208 struct cgraph_node *decl_node = cgraph_get_node (decl);
3649b9b7
ST
209 struct cgraph_function_version_info *decl_v = NULL;
210
211 if (decl_node == NULL)
212 return;
213
214 decl_v = get_cgraph_node_version (decl_node);
215
216 if (decl_v == NULL)
217 return;
218
219 if (decl_v->prev != NULL)
220 decl_v->prev->next = decl_v->next;
221
222 if (decl_v->next != NULL)
223 decl_v->next->prev = decl_v->prev;
224
225 if (cgraph_fnver_htab != NULL)
226 htab_remove_elt (cgraph_fnver_htab, decl_v);
227
228 cgraph_remove_node (decl_node);
229}
230
231/* Record that DECL1 and DECL2 are semantically identical function
232 versions. */
233void
234record_function_versions (tree decl1, tree decl2)
235{
236 struct cgraph_node *decl1_node = cgraph_get_create_node (decl1);
237 struct cgraph_node *decl2_node = cgraph_get_create_node (decl2);
238 struct cgraph_function_version_info *decl1_v = NULL;
239 struct cgraph_function_version_info *decl2_v = NULL;
240 struct cgraph_function_version_info *before;
241 struct cgraph_function_version_info *after;
242
243 gcc_assert (decl1_node != NULL && decl2_node != NULL);
244 decl1_v = get_cgraph_node_version (decl1_node);
245 decl2_v = get_cgraph_node_version (decl2_node);
246
247 if (decl1_v != NULL && decl2_v != NULL)
248 return;
249
250 if (decl1_v == NULL)
251 decl1_v = insert_new_cgraph_node_version (decl1_node);
252
253 if (decl2_v == NULL)
254 decl2_v = insert_new_cgraph_node_version (decl2_node);
255
256 /* Chain decl2_v and decl1_v. All semantically identical versions
257 will be chained together. */
258
259 before = decl1_v;
260 after = decl2_v;
261
262 while (before->next != NULL)
263 before = before->next;
264
265 while (after->prev != NULL)
266 after= after->prev;
267
268 before->next = after;
269 after->prev = before;
270}
271
2fb16412
MJ
272/* Macros to access the next item in the list of free cgraph nodes and
273 edges. */
2aae7680
JH
274#define NEXT_FREE_NODE(NODE) cgraph ((NODE)->symbol.next)
275#define SET_NEXT_FREE_NODE(NODE,NODE2) ((NODE))->symbol.next = (symtab_node)NODE2
934cb78a 276#define NEXT_FREE_EDGE(EDGE) (EDGE)->prev_caller
9088c1cc
MJ
277
278/* Register HOOK to be called with DATA on each removed edge. */
279struct cgraph_edge_hook_list *
280cgraph_add_edge_removal_hook (cgraph_edge_hook hook, void *data)
281{
282 struct cgraph_edge_hook_list *entry;
283 struct cgraph_edge_hook_list **ptr = &first_cgraph_edge_removal_hook;
284
285 entry = (struct cgraph_edge_hook_list *) xmalloc (sizeof (*entry));
286 entry->hook = hook;
287 entry->data = data;
288 entry->next = NULL;
289 while (*ptr)
290 ptr = &(*ptr)->next;
291 *ptr = entry;
292 return entry;
293}
294
295/* Remove ENTRY from the list of hooks called on removing edges. */
296void
297cgraph_remove_edge_removal_hook (struct cgraph_edge_hook_list *entry)
298{
299 struct cgraph_edge_hook_list **ptr = &first_cgraph_edge_removal_hook;
300
301 while (*ptr != entry)
302 ptr = &(*ptr)->next;
303 *ptr = entry->next;
934cb78a 304 free (entry);
9088c1cc
MJ
305}
306
307/* Call all edge removal hooks. */
308static void
309cgraph_call_edge_removal_hooks (struct cgraph_edge *e)
310{
311 struct cgraph_edge_hook_list *entry = first_cgraph_edge_removal_hook;
312 while (entry)
313 {
314 entry->hook (e, entry->data);
315 entry = entry->next;
316 }
317}
318
319/* Register HOOK to be called with DATA on each removed node. */
320struct cgraph_node_hook_list *
321cgraph_add_node_removal_hook (cgraph_node_hook hook, void *data)
322{
323 struct cgraph_node_hook_list *entry;
324 struct cgraph_node_hook_list **ptr = &first_cgraph_node_removal_hook;
325
326 entry = (struct cgraph_node_hook_list *) xmalloc (sizeof (*entry));
327 entry->hook = hook;
328 entry->data = data;
329 entry->next = NULL;
330 while (*ptr)
331 ptr = &(*ptr)->next;
332 *ptr = entry;
333 return entry;
334}
335
336/* Remove ENTRY from the list of hooks called on removing nodes. */
337void
338cgraph_remove_node_removal_hook (struct cgraph_node_hook_list *entry)
339{
340 struct cgraph_node_hook_list **ptr = &first_cgraph_node_removal_hook;
341
342 while (*ptr != entry)
343 ptr = &(*ptr)->next;
344 *ptr = entry->next;
934cb78a 345 free (entry);
9088c1cc
MJ
346}
347
348/* Call all node removal hooks. */
349static void
350cgraph_call_node_removal_hooks (struct cgraph_node *node)
351{
352 struct cgraph_node_hook_list *entry = first_cgraph_node_removal_hook;
353 while (entry)
354 {
355 entry->hook (node, entry->data);
356 entry = entry->next;
357 }
358}
359
6544865a 360/* Register HOOK to be called with DATA on each inserted node. */
129a37fc
JH
361struct cgraph_node_hook_list *
362cgraph_add_function_insertion_hook (cgraph_node_hook hook, void *data)
363{
364 struct cgraph_node_hook_list *entry;
365 struct cgraph_node_hook_list **ptr = &first_cgraph_function_insertion_hook;
366
367 entry = (struct cgraph_node_hook_list *) xmalloc (sizeof (*entry));
368 entry->hook = hook;
369 entry->data = data;
370 entry->next = NULL;
371 while (*ptr)
372 ptr = &(*ptr)->next;
373 *ptr = entry;
374 return entry;
375}
376
6544865a 377/* Remove ENTRY from the list of hooks called on inserted nodes. */
129a37fc
JH
378void
379cgraph_remove_function_insertion_hook (struct cgraph_node_hook_list *entry)
380{
381 struct cgraph_node_hook_list **ptr = &first_cgraph_function_insertion_hook;
382
383 while (*ptr != entry)
384 ptr = &(*ptr)->next;
385 *ptr = entry->next;
934cb78a 386 free (entry);
129a37fc
JH
387}
388
6544865a 389/* Call all node insertion hooks. */
129a37fc
JH
390void
391cgraph_call_function_insertion_hooks (struct cgraph_node *node)
392{
393 struct cgraph_node_hook_list *entry = first_cgraph_function_insertion_hook;
394 while (entry)
395 {
396 entry->hook (node, entry->data);
397 entry = entry->next;
398 }
399}
400
9088c1cc
MJ
401/* Register HOOK to be called with DATA on each duplicated edge. */
402struct cgraph_2edge_hook_list *
403cgraph_add_edge_duplication_hook (cgraph_2edge_hook hook, void *data)
404{
405 struct cgraph_2edge_hook_list *entry;
406 struct cgraph_2edge_hook_list **ptr = &first_cgraph_edge_duplicated_hook;
407
408 entry = (struct cgraph_2edge_hook_list *) xmalloc (sizeof (*entry));
409 entry->hook = hook;
410 entry->data = data;
411 entry->next = NULL;
412 while (*ptr)
413 ptr = &(*ptr)->next;
414 *ptr = entry;
415 return entry;
416}
417
418/* Remove ENTRY from the list of hooks called on duplicating edges. */
419void
420cgraph_remove_edge_duplication_hook (struct cgraph_2edge_hook_list *entry)
421{
422 struct cgraph_2edge_hook_list **ptr = &first_cgraph_edge_duplicated_hook;
423
424 while (*ptr != entry)
425 ptr = &(*ptr)->next;
426 *ptr = entry->next;
934cb78a 427 free (entry);
9088c1cc
MJ
428}
429
430/* Call all edge duplication hooks. */
66a20fc2 431void
9088c1cc
MJ
432cgraph_call_edge_duplication_hooks (struct cgraph_edge *cs1,
433 struct cgraph_edge *cs2)
434{
435 struct cgraph_2edge_hook_list *entry = first_cgraph_edge_duplicated_hook;
436 while (entry)
437 {
438 entry->hook (cs1, cs2, entry->data);
439 entry = entry->next;
440 }
441}
442
443/* Register HOOK to be called with DATA on each duplicated node. */
444struct cgraph_2node_hook_list *
445cgraph_add_node_duplication_hook (cgraph_2node_hook hook, void *data)
446{
447 struct cgraph_2node_hook_list *entry;
448 struct cgraph_2node_hook_list **ptr = &first_cgraph_node_duplicated_hook;
449
450 entry = (struct cgraph_2node_hook_list *) xmalloc (sizeof (*entry));
451 entry->hook = hook;
452 entry->data = data;
453 entry->next = NULL;
454 while (*ptr)
455 ptr = &(*ptr)->next;
456 *ptr = entry;
457 return entry;
458}
459
460/* Remove ENTRY from the list of hooks called on duplicating nodes. */
461void
462cgraph_remove_node_duplication_hook (struct cgraph_2node_hook_list *entry)
463{
464 struct cgraph_2node_hook_list **ptr = &first_cgraph_node_duplicated_hook;
465
466 while (*ptr != entry)
467 ptr = &(*ptr)->next;
468 *ptr = entry->next;
934cb78a 469 free (entry);
9088c1cc
MJ
470}
471
472/* Call all node duplication hooks. */
b0d0a291 473void
9088c1cc
MJ
474cgraph_call_node_duplication_hooks (struct cgraph_node *node1,
475 struct cgraph_node *node2)
476{
477 struct cgraph_2node_hook_list *entry = first_cgraph_node_duplicated_hook;
478 while (entry)
479 {
480 entry->hook (node1, node2, entry->data);
481 entry = entry->next;
482 }
483}
484
b2583345 485/* Allocate new callgraph node. */
0550e7b7 486
b2583345
JJ
487static inline struct cgraph_node *
488cgraph_allocate_node (void)
18c6ada9
JH
489{
490 struct cgraph_node *node;
491
2fb16412
MJ
492 if (free_nodes)
493 {
494 node = free_nodes;
495 free_nodes = NEXT_FREE_NODE (node);
496 }
497 else
498 {
a9429e29 499 node = ggc_alloc_cleared_cgraph_node ();
2fb16412
MJ
500 node->uid = cgraph_max_uid++;
501 }
502
b2583345
JJ
503 return node;
504}
505
506/* Allocate new callgraph node and insert it into basic data structures. */
507
66a20fc2
JH
508struct cgraph_node *
509cgraph_create_empty_node (void)
b2583345
JJ
510{
511 struct cgraph_node *node = cgraph_allocate_node ();
512
1f00098b 513 node->symbol.type = SYMTAB_FUNCTION;
5fefcf92 514 node->frequency = NODE_FREQUENCY_NORMAL;
db0bf14f 515 node->count_materialization_scale = REG_BR_PROB_BASE;
18c6ada9
JH
516 cgraph_n_nodes++;
517 return node;
518}
519
e72fcfe8 520/* Return cgraph node assigned to DECL. Create new one when needed. */
0550e7b7 521
1c4a429a 522struct cgraph_node *
a358e188 523cgraph_create_node (tree decl)
e72fcfe8 524{
66a20fc2 525 struct cgraph_node *node = cgraph_create_empty_node ();
341c100f 526 gcc_assert (TREE_CODE (decl) == FUNCTION_DECL);
988d1653 527
960bfb69 528 node->symbol.decl = decl;
1ab24192
JH
529 symtab_register_node ((symtab_node) node);
530
5c2e00ee 531 if (DECL_CONTEXT (decl) && TREE_CODE (DECL_CONTEXT (decl)) == FUNCTION_DECL)
e72fcfe8 532 {
a358e188 533 node->origin = cgraph_get_create_node (DECL_CONTEXT (decl));
e72fcfe8
JH
534 node->next_nested = node->origin->nested;
535 node->origin->nested = node;
536 }
537 return node;
538}
539
a358e188
MJ
540/* Try to find a call graph node for declaration DECL and if it does not exist,
541 create it. */
542
543struct cgraph_node *
544cgraph_get_create_node (tree decl)
545{
546 struct cgraph_node *node;
547
548 node = cgraph_get_node (decl);
549 if (node)
550 return node;
551
552 return cgraph_create_node (decl);
553}
554
87e7b310 555/* Mark ALIAS as an alias to DECL. DECL_NODE is cgraph node representing
073a8998 556 the function body is associated with (not necessarily cgraph_node (DECL). */
b2583345 557
39e2db00 558struct cgraph_node *
40a7fe1e 559cgraph_create_function_alias (tree alias, tree target)
b2583345 560{
39e2db00 561 struct cgraph_node *alias_node;
b2583345 562
40a7fe1e
JH
563 gcc_assert (TREE_CODE (target) == FUNCTION_DECL
564 || TREE_CODE (target) == IDENTIFIER_NODE);
b2583345 565 gcc_assert (TREE_CODE (alias) == FUNCTION_DECL);
39e2db00 566 alias_node = cgraph_get_create_node (alias);
e70670cf 567 gcc_assert (!alias_node->symbol.definition);
40a7fe1e 568 alias_node->symbol.alias_target = target;
e70670cf
JH
569 alias_node->symbol.definition = true;
570 alias_node->symbol.alias = true;
08346abd
JH
571 if (lookup_attribute ("weakref", DECL_ATTRIBUTES (alias)) != NULL)
572 alias_node->symbol.weakref = true;
6744a6ab
JH
573 return alias_node;
574}
575
051f8cc6 576/* Attempt to mark ALIAS as an alias to DECL. Return alias node if successful
a358e188 577 and NULL otherwise.
6744a6ab 578 Same body aliases are output whenever the body of DECL is output,
a358e188 579 and cgraph_get_node (ALIAS) transparently returns cgraph_get_node (DECL). */
6744a6ab 580
051f8cc6 581struct cgraph_node *
39e2db00 582cgraph_same_body_alias (struct cgraph_node *decl_node ATTRIBUTE_UNUSED, tree alias, tree decl)
6744a6ab 583{
39e2db00 584 struct cgraph_node *n;
6744a6ab
JH
585#ifndef ASM_OUTPUT_DEF
586 /* If aliases aren't supported by the assembler, fail. */
051f8cc6 587 return NULL;
6744a6ab 588#endif
39e2db00
JH
589 /* Langhooks can create same body aliases of symbols not defined.
590 Those are useless. Drop them on the floor. */
591 if (cgraph_global_info_ready)
592 return NULL;
6744a6ab 593
39e2db00 594 n = cgraph_create_function_alias (alias, decl);
40a7fe1e
JH
595 n->symbol.cpp_implicit_alias = true;
596 if (cpp_implicit_aliases_done)
597 symtab_resolve_alias ((symtab_node)n,
598 (symtab_node)cgraph_get_node (decl));
39e2db00 599 return n;
6744a6ab
JH
600}
601
051f8cc6 602/* Add thunk alias into callgraph. The alias declaration is ALIAS and it
61502ca8 603 aliases DECL with an adjustments made into the first parameter.
051f8cc6
JH
604 See comments in thunk_adjust for detail on the parameters. */
605
606struct cgraph_node *
c47d0034 607cgraph_add_thunk (struct cgraph_node *decl_node ATTRIBUTE_UNUSED,
66058468 608 tree alias, tree decl ATTRIBUTE_UNUSED,
87e7b310 609 bool this_adjusting,
6744a6ab
JH
610 HOST_WIDE_INT fixed_offset, HOST_WIDE_INT virtual_value,
611 tree virtual_offset,
612 tree real_alias)
613{
c47d0034 614 struct cgraph_node *node;
6744a6ab 615
c47d0034 616 node = cgraph_get_node (alias);
6744a6ab
JH
617 if (node)
618 {
e70670cf
JH
619 gcc_assert (node->symbol.definition);
620 gcc_assert (!node->symbol.alias);
be330ed4 621 gcc_assert (!node->thunk.thunk_p);
6744a6ab
JH
622 cgraph_remove_node (node);
623 }
624
c47d0034 625 node = cgraph_create_node (alias);
77a74ed7 626 gcc_checking_assert (!virtual_offset
27bcd47c
LC
627 || tree_to_double_int (virtual_offset) ==
628 double_int::from_shwi (virtual_value));
6744a6ab
JH
629 node->thunk.fixed_offset = fixed_offset;
630 node->thunk.this_adjusting = this_adjusting;
631 node->thunk.virtual_value = virtual_value;
632 node->thunk.virtual_offset_p = virtual_offset != NULL;
633 node->thunk.alias = real_alias;
634 node->thunk.thunk_p = true;
e70670cf 635 node->symbol.definition = true;
c47d0034 636
051f8cc6 637 return node;
b2583345
JJ
638}
639
bedb9fc0
RH
640/* Return the cgraph node that has ASMNAME for its DECL_ASSEMBLER_NAME.
641 Return NULL if there's no such node. */
642
643struct cgraph_node *
644cgraph_node_for_asm (tree asmname)
645{
1ab24192 646 /* We do not want to look at inline clones. */
5d59b5e1
LC
647 for (symtab_node node = symtab_node_for_asm (asmname);
648 node;
649 node = node->symbol.next_sharing_asm_name)
650 {
651 cgraph_node *cn = dyn_cast <cgraph_node> (node);
652 if (cn && !cn->global.inlined_to)
653 return cn;
654 }
bedb9fc0
RH
655 return NULL;
656}
657
6bdf3519 658/* Returns a hash value for X (which really is a cgraph_edge). */
70d539ce
JH
659
660static hashval_t
661edge_hash (const void *x)
662{
741ac903 663 return htab_hash_pointer (((const struct cgraph_edge *) x)->call_stmt);
70d539ce
JH
664}
665
6bdf3519 666/* Return nonzero if the call_stmt of of cgraph_edge X is stmt *Y. */
70d539ce
JH
667
668static int
669edge_eq (const void *x, const void *y)
670{
741ac903 671 return ((const struct cgraph_edge *) x)->call_stmt == y;
70d539ce
JH
672}
673
e33c6cd6
MJ
674/* Add call graph edge E to call site hash of its caller. */
675
676static inline void
677cgraph_add_edge_to_call_site_hash (struct cgraph_edge *e)
678{
679 void **slot;
680 slot = htab_find_slot_with_hash (e->caller->call_site_hash,
681 e->call_stmt,
682 htab_hash_pointer (e->call_stmt),
683 INSERT);
684 gcc_assert (!*slot);
685 *slot = e;
686}
726a989a
RB
687
688/* Return the callgraph edge representing the GIMPLE_CALL statement
689 CALL_STMT. */
690
18c6ada9 691struct cgraph_edge *
726a989a 692cgraph_edge (struct cgraph_node *node, gimple call_stmt)
18c6ada9 693{
70d539ce
JH
694 struct cgraph_edge *e, *e2;
695 int n = 0;
696
697 if (node->call_site_hash)
f883e0a7
KG
698 return (struct cgraph_edge *)
699 htab_find_with_hash (node->call_site_hash, call_stmt,
52c76998 700 htab_hash_pointer (call_stmt));
18c6ada9
JH
701
702 /* This loop may turn out to be performance problem. In such case adding
703 hashtables into call nodes with very many edges is probably best
2b8a92de 704 solution. It is not good idea to add pointer into CALL_EXPR itself
18c6ada9
JH
705 because we want to make possible having multiple cgraph nodes representing
706 different clones of the same body before the body is actually cloned. */
e33c6cd6 707 for (e = node->callees; e; e = e->next_callee)
70d539ce
JH
708 {
709 if (e->call_stmt == call_stmt)
710 break;
711 n++;
712 }
726a989a 713
e33c6cd6
MJ
714 if (!e)
715 for (e = node->indirect_calls; e; e = e->next_callee)
716 {
717 if (e->call_stmt == call_stmt)
718 break;
719 n++;
720 }
721
70d539ce
JH
722 if (n > 100)
723 {
724 node->call_site_hash = htab_create_ggc (120, edge_hash, edge_eq, NULL);
725 for (e2 = node->callees; e2; e2 = e2->next_callee)
e33c6cd6
MJ
726 cgraph_add_edge_to_call_site_hash (e2);
727 for (e2 = node->indirect_calls; e2; e2 = e2->next_callee)
728 cgraph_add_edge_to_call_site_hash (e2);
70d539ce 729 }
726a989a 730
18c6ada9
JH
731 return e;
732}
733
726a989a 734
9187e02d 735/* Change field call_stmt of edge E to NEW_STMT. */
0550e7b7 736
70d539ce 737void
726a989a 738cgraph_set_call_stmt (struct cgraph_edge *e, gimple new_stmt)
70d539ce 739{
e33c6cd6
MJ
740 tree decl;
741
70d539ce
JH
742 if (e->caller->call_site_hash)
743 {
744 htab_remove_elt_with_hash (e->caller->call_site_hash,
745 e->call_stmt,
746 htab_hash_pointer (e->call_stmt));
747 }
e33c6cd6 748
70d539ce 749 e->call_stmt = new_stmt;
e33c6cd6
MJ
750 if (e->indirect_unknown_callee
751 && (decl = gimple_call_fndecl (new_stmt)))
752 {
753 /* Constant propagation (and possibly also inlining?) can turn an
754 indirect call into a direct one. */
a358e188 755 struct cgraph_node *new_callee = cgraph_get_node (decl);
e33c6cd6 756
a358e188 757 gcc_checking_assert (new_callee);
81fa35bd 758 cgraph_make_edge_direct (e, new_callee);
e33c6cd6
MJ
759 }
760
960bfb69 761 push_cfun (DECL_STRUCT_FUNCTION (e->caller->symbol.decl));
2505c5ed 762 e->can_throw_external = stmt_can_throw_external (new_stmt);
b6fa5b01 763 pop_cfun ();
70d539ce 764 if (e->caller->call_site_hash)
e33c6cd6 765 cgraph_add_edge_to_call_site_hash (e);
70d539ce
JH
766}
767
e33c6cd6
MJ
768/* Allocate a cgraph_edge structure and fill it with data according to the
769 parameters of which only CALLEE can be NULL (when creating an indirect call
770 edge). */
e72fcfe8 771
e33c6cd6
MJ
772static struct cgraph_edge *
773cgraph_create_edge_1 (struct cgraph_node *caller, struct cgraph_node *callee,
898b8927 774 gimple call_stmt, gcov_type count, int freq)
e72fcfe8 775{
934cb78a 776 struct cgraph_edge *edge;
18c6ada9 777
d7f09764
DN
778 /* LTO does not actually have access to the call_stmt since these
779 have not been loaded yet. */
780 if (call_stmt)
781 {
61502ca8 782 /* This is a rather expensive check possibly triggering
77a74ed7
NF
783 construction of call stmt hashtable. */
784 gcc_checking_assert (!cgraph_edge (caller, call_stmt));
18c6ada9 785
d7f09764
DN
786 gcc_assert (is_gimple_call (call_stmt));
787 }
b58b1157 788
934cb78a
MJ
789 if (free_edges)
790 {
791 edge = free_edges;
792 free_edges = NEXT_FREE_EDGE (edge);
793 }
794 else
795 {
a9429e29 796 edge = ggc_alloc_cgraph_edge ();
934cb78a
MJ
797 edge->uid = cgraph_edge_max_uid++;
798 }
799
18c6ada9 800 edge->aux = NULL;
e72fcfe8
JH
801 edge->caller = caller;
802 edge->callee = callee;
e33c6cd6
MJ
803 edge->prev_caller = NULL;
804 edge->next_caller = NULL;
805 edge->prev_callee = NULL;
806 edge->next_callee = NULL;
807
808 edge->count = count;
809 gcc_assert (count >= 0);
810 edge->frequency = freq;
811 gcc_assert (freq >= 0);
812 gcc_assert (freq <= CGRAPH_FREQ_MAX);
e33c6cd6 813
e0704a46 814 edge->call_stmt = call_stmt;
960bfb69 815 push_cfun (DECL_STRUCT_FUNCTION (caller->symbol.decl));
9f3f7d13
RG
816 edge->can_throw_external
817 = call_stmt ? stmt_can_throw_external (call_stmt) : false;
b6fa5b01 818 pop_cfun ();
89faf322 819 if (call_stmt
960bfb69 820 && callee && callee->symbol.decl
4de09b85
DC
821 && !gimple_check_call_matching_types (call_stmt, callee->symbol.decl,
822 false))
89faf322
RG
823 edge->call_stmt_cannot_inline_p = true;
824 else
825 edge->call_stmt_cannot_inline_p = false;
e33c6cd6
MJ
826 if (call_stmt && caller->call_site_hash)
827 cgraph_add_edge_to_call_site_hash (edge);
828
829 edge->indirect_info = NULL;
830 edge->indirect_inlining_edge = 0;
831
832 return edge;
833}
834
835/* Create edge from CALLER to CALLEE in the cgraph. */
836
837struct cgraph_edge *
838cgraph_create_edge (struct cgraph_node *caller, struct cgraph_node *callee,
898b8927 839 gimple call_stmt, gcov_type count, int freq)
e33c6cd6
MJ
840{
841 struct cgraph_edge *edge = cgraph_create_edge_1 (caller, callee, call_stmt,
898b8927 842 count, freq);
e33c6cd6
MJ
843
844 edge->indirect_unknown_callee = 0;
845 initialize_inline_failed (edge);
846
e72fcfe8 847 edge->next_caller = callee->callers;
2563c224
RG
848 if (callee->callers)
849 callee->callers->prev_caller = edge;
e72fcfe8 850 edge->next_callee = caller->callees;
2563c224
RG
851 if (caller->callees)
852 caller->callees->prev_callee = edge;
e72fcfe8
JH
853 caller->callees = edge;
854 callee->callers = edge;
3dc9eaa6 855
e33c6cd6
MJ
856 return edge;
857}
858
ce47fda3
MJ
859/* Allocate cgraph_indirect_call_info and set its fields to default values. */
860
861struct cgraph_indirect_call_info *
862cgraph_allocate_init_indirect_info (void)
863{
864 struct cgraph_indirect_call_info *ii;
865
866 ii = ggc_alloc_cleared_cgraph_indirect_call_info ();
867 ii->param_index = -1;
868 return ii;
869}
e33c6cd6
MJ
870
871/* Create an indirect edge with a yet-undetermined callee where the call
872 statement destination is a formal parameter of the caller with index
873 PARAM_INDEX. */
874
875struct cgraph_edge *
876cgraph_create_indirect_edge (struct cgraph_node *caller, gimple call_stmt,
5f902d76 877 int ecf_flags,
898b8927 878 gcov_type count, int freq)
e33c6cd6
MJ
879{
880 struct cgraph_edge *edge = cgraph_create_edge_1 (caller, NULL, call_stmt,
898b8927 881 count, freq);
e33c6cd6
MJ
882
883 edge->indirect_unknown_callee = 1;
3dc9eaa6
AN
884 initialize_inline_failed (edge);
885
ce47fda3 886 edge->indirect_info = cgraph_allocate_init_indirect_info ();
5f902d76 887 edge->indirect_info->ecf_flags = ecf_flags;
e33c6cd6
MJ
888
889 edge->next_callee = caller->indirect_calls;
890 if (caller->indirect_calls)
891 caller->indirect_calls->prev_callee = edge;
892 caller->indirect_calls = edge;
893
e72fcfe8
JH
894 return edge;
895}
896
2563c224
RG
897/* Remove the edge E from the list of the callers of the callee. */
898
899static inline void
900cgraph_edge_remove_callee (struct cgraph_edge *e)
901{
e33c6cd6 902 gcc_assert (!e->indirect_unknown_callee);
2563c224
RG
903 if (e->prev_caller)
904 e->prev_caller->next_caller = e->next_caller;
905 if (e->next_caller)
906 e->next_caller->prev_caller = e->prev_caller;
907 if (!e->prev_caller)
908 e->callee->callers = e->next_caller;
909}
910
911/* Remove the edge E from the list of the callees of the caller. */
912
913static inline void
914cgraph_edge_remove_caller (struct cgraph_edge *e)
915{
916 if (e->prev_callee)
917 e->prev_callee->next_callee = e->next_callee;
918 if (e->next_callee)
919 e->next_callee->prev_callee = e->prev_callee;
920 if (!e->prev_callee)
e33c6cd6
MJ
921 {
922 if (e->indirect_unknown_callee)
923 e->caller->indirect_calls = e->next_callee;
924 else
925 e->caller->callees = e->next_callee;
926 }
70d539ce
JH
927 if (e->caller->call_site_hash)
928 htab_remove_elt_with_hash (e->caller->call_site_hash,
929 e->call_stmt,
930 htab_hash_pointer (e->call_stmt));
2563c224
RG
931}
932
934cb78a
MJ
933/* Put the edge onto the free list. */
934
935static void
936cgraph_free_edge (struct cgraph_edge *e)
937{
938 int uid = e->uid;
939
940 /* Clear out the edge so we do not dangle pointers. */
5c0466b5 941 memset (e, 0, sizeof (*e));
934cb78a
MJ
942 e->uid = uid;
943 NEXT_FREE_EDGE (e) = free_edges;
944 free_edges = e;
945}
946
2563c224 947/* Remove the edge E in the cgraph. */
e72fcfe8 948
cb967da5 949void
18c6ada9 950cgraph_remove_edge (struct cgraph_edge *e)
e72fcfe8 951{
934cb78a 952 /* Call all edge removal hooks. */
9088c1cc 953 cgraph_call_edge_removal_hooks (e);
934cb78a 954
e33c6cd6
MJ
955 if (!e->indirect_unknown_callee)
956 /* Remove from callers list of the callee. */
957 cgraph_edge_remove_callee (e);
2563c224
RG
958
959 /* Remove from callees list of the callers. */
960 cgraph_edge_remove_caller (e);
934cb78a
MJ
961
962 /* Put the edge onto the free list. */
963 cgraph_free_edge (e);
e72fcfe8
JH
964}
965
e33c6cd6
MJ
966/* Set callee of call graph edge E and add it to the corresponding set of
967 callers. */
968
969static void
970cgraph_set_edge_callee (struct cgraph_edge *e, struct cgraph_node *n)
971{
972 e->prev_caller = NULL;
973 if (n->callers)
974 n->callers->prev_caller = e;
975 e->next_caller = n->callers;
976 n->callers = e;
977 e->callee = n;
978}
979
18c6ada9
JH
980/* Redirect callee of E to N. The function does not update underlying
981 call expression. */
982
983void
984cgraph_redirect_edge_callee (struct cgraph_edge *e, struct cgraph_node *n)
985{
2563c224
RG
986 /* Remove from callers list of the current callee. */
987 cgraph_edge_remove_callee (e);
18c6ada9 988
2563c224 989 /* Insert to callers list of the new callee. */
e33c6cd6
MJ
990 cgraph_set_edge_callee (e, n);
991}
992
993/* Make an indirect EDGE with an unknown callee an ordinary edge leading to
ce47fda3
MJ
994 CALLEE. DELTA is an integer constant that is to be added to the this
995 pointer (first parameter) to compensate for skipping a thunk adjustment. */
e33c6cd6
MJ
996
997void
81fa35bd 998cgraph_make_edge_direct (struct cgraph_edge *edge, struct cgraph_node *callee)
e33c6cd6
MJ
999{
1000 edge->indirect_unknown_callee = 0;
1001
1002 /* Get the edge out of the indirect edge list. */
1003 if (edge->prev_callee)
1004 edge->prev_callee->next_callee = edge->next_callee;
1005 if (edge->next_callee)
1006 edge->next_callee->prev_callee = edge->prev_callee;
1007 if (!edge->prev_callee)
1008 edge->caller->indirect_calls = edge->next_callee;
1009
1010 /* Put it into the normal callee list */
1011 edge->prev_callee = NULL;
1012 edge->next_callee = edge->caller->callees;
1013 if (edge->caller->callees)
1014 edge->caller->callees->prev_callee = edge;
1015 edge->caller->callees = edge;
1016
1017 /* Insert to callers list of the new callee. */
1018 cgraph_set_edge_callee (edge, callee);
1019
89faf322
RG
1020 if (edge->call_stmt)
1021 edge->call_stmt_cannot_inline_p
4de09b85
DC
1022 = !gimple_check_call_matching_types (edge->call_stmt, callee->symbol.decl,
1023 false);
f2906a8e 1024
e33c6cd6
MJ
1025 /* We need to re-determine the inlining status of the edge. */
1026 initialize_inline_failed (edge);
2563c224
RG
1027}
1028
66a20fc2
JH
1029/* If necessary, change the function declaration in the call statement
1030 associated with E so that it corresponds to the edge callee. */
1031
1032gimple
1033cgraph_redirect_edge_call_stmt_to_callee (struct cgraph_edge *e)
1034{
1035 tree decl = gimple_call_fndecl (e->call_stmt);
1036 gimple new_stmt;
1037 gimple_stmt_iterator gsi;
1038#ifdef ENABLE_CHECKING
1039 struct cgraph_node *node;
1040#endif
1041
1042 if (e->indirect_unknown_callee
1043 || decl == e->callee->symbol.decl)
1044 return e->call_stmt;
1045
1046#ifdef ENABLE_CHECKING
1047 if (decl)
1048 {
1049 node = cgraph_get_node (decl);
1050 gcc_assert (!node || !node->clone.combined_args_to_skip);
1051 }
1052#endif
1053
1054 if (cgraph_dump_file)
1055 {
1056 fprintf (cgraph_dump_file, "updating call of %s/%i -> %s/%i: ",
9de04252
MJ
1057 xstrdup (cgraph_node_name (e->caller)), e->caller->symbol.order,
1058 xstrdup (cgraph_node_name (e->callee)), e->callee->symbol.order);
66a20fc2
JH
1059 print_gimple_stmt (cgraph_dump_file, e->call_stmt, 0, dump_flags);
1060 if (e->callee->clone.combined_args_to_skip)
1061 {
1062 fprintf (cgraph_dump_file, " combined args to skip: ");
1063 dump_bitmap (cgraph_dump_file,
1064 e->callee->clone.combined_args_to_skip);
1065 }
1066 }
1067
1068 if (e->callee->clone.combined_args_to_skip)
1069 {
1070 int lp_nr;
1071
1072 new_stmt
1073 = gimple_call_copy_skip_args (e->call_stmt,
1074 e->callee->clone.combined_args_to_skip);
1075 gimple_call_set_fndecl (new_stmt, e->callee->symbol.decl);
c52da5f7 1076 gimple_call_set_fntype (new_stmt, gimple_call_fntype (e->call_stmt));
66a20fc2
JH
1077
1078 if (gimple_vdef (new_stmt)
1079 && TREE_CODE (gimple_vdef (new_stmt)) == SSA_NAME)
1080 SSA_NAME_DEF_STMT (gimple_vdef (new_stmt)) = new_stmt;
1081
1082 gsi = gsi_for_stmt (e->call_stmt);
1083 gsi_replace (&gsi, new_stmt, false);
1084 /* We need to defer cleaning EH info on the new statement to
1085 fixup-cfg. We may not have dominator information at this point
1086 and thus would end up with unreachable blocks and have no way
1087 to communicate that we need to run CFG cleanup then. */
1088 lp_nr = lookup_stmt_eh_lp (e->call_stmt);
1089 if (lp_nr != 0)
1090 {
1091 remove_stmt_from_eh_lp (e->call_stmt);
1092 add_stmt_to_eh_lp (new_stmt, lp_nr);
1093 }
1094 }
1095 else
1096 {
1097 new_stmt = e->call_stmt;
1098 gimple_call_set_fndecl (new_stmt, e->callee->symbol.decl);
1099 update_stmt (new_stmt);
1100 }
1101
1102 cgraph_set_call_stmt_including_clones (e->caller, e->call_stmt, new_stmt);
1103
1104 if (cgraph_dump_file)
1105 {
1106 fprintf (cgraph_dump_file, " updated to:");
1107 print_gimple_stmt (cgraph_dump_file, e->call_stmt, 0, dump_flags);
1108 }
1109 return new_stmt;
1110}
726a989a
RB
1111
1112/* Update or remove the corresponding cgraph edge if a GIMPLE_CALL
4b685e14 1113 OLD_STMT changed into NEW_STMT. OLD_CALL is gimple_call_fndecl
a9d24544
JJ
1114 of OLD_STMT if it was previously call statement.
1115 If NEW_STMT is NULL, the call has been dropped without any
1116 replacement. */
2bafad93 1117
9187e02d
JH
1118static void
1119cgraph_update_edges_for_call_stmt_node (struct cgraph_node *node,
a9d24544
JJ
1120 gimple old_stmt, tree old_call,
1121 gimple new_stmt)
2bafad93 1122{
a9d24544
JJ
1123 tree new_call = (new_stmt && is_gimple_call (new_stmt))
1124 ? gimple_call_fndecl (new_stmt) : 0;
2bafad93 1125
4b685e14
JH
1126 /* We are seeing indirect calls, then there is nothing to update. */
1127 if (!new_call && !old_call)
1128 return;
1129 /* See if we turned indirect call into direct call or folded call to one builtin
61502ca8 1130 into different builtin. */
2bafad93
JJ
1131 if (old_call != new_call)
1132 {
1133 struct cgraph_edge *e = cgraph_edge (node, old_stmt);
1134 struct cgraph_edge *ne = NULL;
4b685e14
JH
1135 gcov_type count;
1136 int frequency;
2bafad93
JJ
1137
1138 if (e)
1139 {
e33c6cd6
MJ
1140 /* See if the edge is already there and has the correct callee. It
1141 might be so because of indirect inlining has already updated
97ba0040
JH
1142 it. We also might've cloned and redirected the edge. */
1143 if (new_call && e->callee)
1144 {
1145 struct cgraph_node *callee = e->callee;
1146 while (callee)
1147 {
960bfb69 1148 if (callee->symbol.decl == new_call
97ba0040
JH
1149 || callee->former_clone_of == new_call)
1150 return;
1151 callee = callee->clone_of;
1152 }
1153 }
4b685e14
JH
1154
1155 /* Otherwise remove edge and create new one; we can't simply redirect
1156 since function has changed, so inline plan and other information
1157 attached to edge is invalid. */
4b685e14
JH
1158 count = e->count;
1159 frequency = e->frequency;
f8754107 1160 cgraph_remove_edge (e);
4b685e14 1161 }
a9d24544 1162 else if (new_call)
4b685e14
JH
1163 {
1164 /* We are seeing new direct call; compute profile info based on BB. */
1165 basic_block bb = gimple_bb (new_stmt);
1166 count = bb->count;
1167 frequency = compute_call_stmt_bb_frequency (current_function_decl,
1168 bb);
2bafad93 1169 }
2bafad93 1170
4b685e14
JH
1171 if (new_call)
1172 {
a358e188 1173 ne = cgraph_create_edge (node, cgraph_get_create_node (new_call),
898b8927 1174 new_stmt, count, frequency);
4b685e14
JH
1175 gcc_assert (ne->inline_failed);
1176 }
2bafad93 1177 }
4b685e14
JH
1178 /* We only updated the call stmt; update pointer in cgraph edge.. */
1179 else if (old_stmt != new_stmt)
1180 cgraph_set_call_stmt (cgraph_edge (node, old_stmt), new_stmt);
2bafad93
JJ
1181}
1182
9187e02d 1183/* Update or remove the corresponding cgraph edge if a GIMPLE_CALL
4b685e14
JH
1184 OLD_STMT changed into NEW_STMT. OLD_DECL is gimple_call_fndecl
1185 of OLD_STMT before it was updated (updating can happen inplace). */
9187e02d
JH
1186
1187void
4b685e14 1188cgraph_update_edges_for_call_stmt (gimple old_stmt, tree old_decl, gimple new_stmt)
9187e02d 1189{
a358e188 1190 struct cgraph_node *orig = cgraph_get_node (cfun->decl);
9187e02d
JH
1191 struct cgraph_node *node;
1192
a358e188 1193 gcc_checking_assert (orig);
4b685e14 1194 cgraph_update_edges_for_call_stmt_node (orig, old_stmt, old_decl, new_stmt);
9187e02d
JH
1195 if (orig->clones)
1196 for (node = orig->clones; node != orig;)
1197 {
4b685e14 1198 cgraph_update_edges_for_call_stmt_node (node, old_stmt, old_decl, new_stmt);
9187e02d
JH
1199 if (node->clones)
1200 node = node->clones;
1201 else if (node->next_sibling_clone)
1202 node = node->next_sibling_clone;
1203 else
1204 {
1205 while (node != orig && !node->next_sibling_clone)
1206 node = node->clone_of;
1207 if (node != orig)
1208 node = node->next_sibling_clone;
1209 }
1210 }
1211}
1212
726a989a 1213
2563c224
RG
1214/* Remove all callees from the node. */
1215
1216void
1217cgraph_node_remove_callees (struct cgraph_node *node)
1218{
5c0466b5 1219 struct cgraph_edge *e, *f;
2563c224
RG
1220
1221 /* It is sufficient to remove the edges from the lists of callers of
1222 the callees. The callee list of the node can be zapped with one
1223 assignment. */
5c0466b5 1224 for (e = node->callees; e; e = f)
9088c1cc 1225 {
5c0466b5 1226 f = e->next_callee;
9088c1cc 1227 cgraph_call_edge_removal_hooks (e);
e33c6cd6
MJ
1228 if (!e->indirect_unknown_callee)
1229 cgraph_edge_remove_callee (e);
934cb78a 1230 cgraph_free_edge (e);
9088c1cc 1231 }
5f902d76
JH
1232 for (e = node->indirect_calls; e; e = f)
1233 {
1234 f = e->next_callee;
1235 cgraph_call_edge_removal_hooks (e);
1236 if (!e->indirect_unknown_callee)
1237 cgraph_edge_remove_callee (e);
1238 cgraph_free_edge (e);
1239 }
1240 node->indirect_calls = NULL;
2563c224 1241 node->callees = NULL;
70d539ce
JH
1242 if (node->call_site_hash)
1243 {
1244 htab_delete (node->call_site_hash);
1245 node->call_site_hash = NULL;
1246 }
2563c224
RG
1247}
1248
1249/* Remove all callers from the node. */
1250
1251static void
1252cgraph_node_remove_callers (struct cgraph_node *node)
1253{
5c0466b5 1254 struct cgraph_edge *e, *f;
2563c224
RG
1255
1256 /* It is sufficient to remove the edges from the lists of callees of
1257 the callers. The caller list of the node can be zapped with one
1258 assignment. */
5c0466b5 1259 for (e = node->callers; e; e = f)
9088c1cc 1260 {
5c0466b5 1261 f = e->next_caller;
9088c1cc
MJ
1262 cgraph_call_edge_removal_hooks (e);
1263 cgraph_edge_remove_caller (e);
934cb78a 1264 cgraph_free_edge (e);
9088c1cc 1265 }
2563c224 1266 node->callers = NULL;
18c6ada9
JH
1267}
1268
49bde175
JH
1269/* Helper function for cgraph_release_function_body and free_lang_data.
1270 It releases body from function DECL without having to inspect its
1271 possibly non-existent symtab node. */
3a40c18a
JH
1272
1273void
49bde175 1274release_function_body (tree decl)
3a40c18a 1275{
49bde175 1276 if (DECL_STRUCT_FUNCTION (decl))
3a40c18a 1277 {
49bde175 1278 push_cfun (DECL_STRUCT_FUNCTION (decl));
7d776ee2
RG
1279 if (cfun->cfg
1280 && current_loops)
1281 {
1282 cfun->curr_properties &= ~PROP_loops;
1283 loop_optimizer_finalize ();
1284 }
936fc9ba
JH
1285 if (cfun->gimple_df)
1286 {
936fc9ba
JH
1287 delete_tree_ssa ();
1288 delete_tree_cfg_annotations ();
1289 cfun->eh = NULL;
936fc9ba
JH
1290 }
1291 if (cfun->cfg)
1292 {
1293 gcc_assert (dom_computed[0] == DOM_NONE);
1294 gcc_assert (dom_computed[1] == DOM_NONE);
1295 clear_edges ();
7bca81dc 1296 cfun->cfg = NULL;
936fc9ba 1297 }
a63f2942
JH
1298 if (cfun->value_histograms)
1299 free_histograms ();
3a40c18a 1300 pop_cfun();
49bde175 1301 gimple_set_body (decl, NULL);
936fc9ba
JH
1302 /* Struct function hangs a lot of data that would leak if we didn't
1303 removed all pointers to it. */
49bde175
JH
1304 ggc_free (DECL_STRUCT_FUNCTION (decl));
1305 DECL_STRUCT_FUNCTION (decl) = NULL;
1306 }
1307 DECL_SAVED_TREE (decl) = NULL;
1308}
1309
1310/* Release memory used to represent body of function NODE.
1311 Use this only for functions that are released before being translated to
1312 target code (i.e. RTL). Functions that are compiled to RTL and beyond
1313 are free'd in final.c via free_after_compilation(). */
1314
1315void
1316cgraph_release_function_body (struct cgraph_node *node)
1317{
1318 node->ipa_transforms_to_apply.release ();
c0c123ef 1319 if (!node->used_as_abstract_origin && cgraph_state != CGRAPH_STATE_PARSING)
49bde175
JH
1320 {
1321 DECL_RESULT (node->symbol.decl) = NULL;
1322 DECL_ARGUMENTS (node->symbol.decl) = NULL;
3a40c18a 1323 }
6b20f353
DS
1324 /* If the node is abstract and needed, then do not clear DECL_INITIAL
1325 of its associated function function declaration because it's
1326 needed to emit debug info later. */
c0c123ef 1327 if (!node->used_as_abstract_origin && DECL_INITIAL (node->symbol.decl))
960bfb69 1328 DECL_INITIAL (node->symbol.decl) = error_mark_node;
49bde175 1329 release_function_body (node->symbol.decl);
3a40c18a
JH
1330}
1331
18d13f34
JH
1332/* Remove the node from cgraph. */
1333
1334void
439f7bc3 1335cgraph_remove_node (struct cgraph_node *node)
18d13f34 1336{
ca30a539 1337 struct cgraph_node *n;
2fb16412 1338 int uid = node->uid;
18c6ada9 1339
9088c1cc 1340 cgraph_call_node_removal_hooks (node);
2563c224
RG
1341 cgraph_node_remove_callers (node);
1342 cgraph_node_remove_callees (node);
9771b263 1343 node->ipa_transforms_to_apply.release ();
266ad5c8 1344
96fc428c
JH
1345 /* Incremental inlining access removed nodes stored in the postorder list.
1346 */
93a18a70 1347 node->symbol.force_output = false;
edb983b2 1348 node->symbol.forced_by_abi = false;
ca30a539
JH
1349 for (n = node->nested; n; n = n->next_nested)
1350 n->origin = NULL;
1351 node->nested = NULL;
18d13f34
JH
1352 if (node->origin)
1353 {
1354 struct cgraph_node **node2 = &node->origin->nested;
1355
1356 while (*node2 != node)
1357 node2 = &(*node2)->next_nested;
1358 *node2 = node->next_nested;
1359 }
2aae7680 1360 symtab_unregister_node ((symtab_node)node);
9187e02d
JH
1361 if (node->prev_sibling_clone)
1362 node->prev_sibling_clone->next_sibling_clone = node->next_sibling_clone;
1363 else if (node->clone_of)
1364 node->clone_of->clones = node->next_sibling_clone;
1365 if (node->next_sibling_clone)
1366 node->next_sibling_clone->prev_sibling_clone = node->prev_sibling_clone;
1367 if (node->clones)
18c6ada9 1368 {
47cb0d7d
JH
1369 struct cgraph_node *n, *next;
1370
1371 if (node->clone_of)
1372 {
1373 for (n = node->clones; n->next_sibling_clone; n = n->next_sibling_clone)
1374 n->clone_of = node->clone_of;
1375 n->clone_of = node->clone_of;
1376 n->next_sibling_clone = node->clone_of->clones;
1377 if (node->clone_of->clones)
1378 node->clone_of->clones->prev_sibling_clone = n;
1379 node->clone_of->clones = node->clones;
1380 }
1381 else
1382 {
66a20fc2 1383 /* We are removing node with clones. This makes clones inconsistent,
47cb0d7d
JH
1384 but assume they will be removed subsequently and just keep clone
1385 tree intact. This can happen in unreachable function removal since
1386 we remove unreachable functions in random order, not by bottom-up
1387 walk of clone trees. */
1388 for (n = node->clones; n; n = next)
1389 {
1390 next = n->next_sibling_clone;
1391 n->next_sibling_clone = NULL;
1392 n->prev_sibling_clone = NULL;
1393 n->clone_of = NULL;
1394 }
1395 }
18c6ada9
JH
1396 }
1397
c22cacf3 1398 /* While all the clones are removed after being proceeded, the function
4a76d91a
JH
1399 itself is kept in the cgraph even after it is compiled. Check whether
1400 we are done with this body and reclaim it proactively if this is the case.
1401 */
4f63dfc6
JH
1402 if (cgraph_state != CGRAPH_LTO_STREAMING)
1403 {
1404 n = cgraph_get_node (node->symbol.decl);
1405 if (!n
1406 || (!n->clones && !n->clone_of && !n->global.inlined_to
1407 && (cgraph_global_info_ready
1408 && (TREE_ASM_WRITTEN (n->symbol.decl)
1409 || DECL_EXTERNAL (n->symbol.decl)
1410 || !n->symbol.analyzed
1411 || (!flag_wpa && n->symbol.in_other_partition)))))
1412 cgraph_release_function_body (node);
1413 }
1ab24192 1414
960bfb69 1415 node->symbol.decl = NULL;
70d539ce
JH
1416 if (node->call_site_hash)
1417 {
1418 htab_delete (node->call_site_hash);
1419 node->call_site_hash = NULL;
1420 }
18c6ada9 1421 cgraph_n_nodes--;
2fb16412
MJ
1422
1423 /* Clear out the node to NULL all pointers and add the node to the free
1424 list. */
1425 memset (node, 0, sizeof(*node));
960bfb69 1426 node->symbol.type = SYMTAB_FUNCTION;
2fb16412 1427 node->uid = uid;
2aae7680 1428 SET_NEXT_FREE_NODE (node, free_nodes);
2fb16412 1429 free_nodes = node;
18d13f34
JH
1430}
1431
39ff5a96
JH
1432/* Likewise indicate that a node is having address taken. */
1433
1434void
1435cgraph_mark_address_taken_node (struct cgraph_node *node)
1436{
4502fe8d
MJ
1437 /* Indirect inlining can figure out that all uses of the address are
1438 inlined. */
1439 if (node->global.inlined_to)
1440 {
1441 gcc_assert (cfun->after_inlining);
1442 gcc_assert (node->callers->indirect_inlining_edge);
1443 return;
1444 }
39e2db00
JH
1445 /* FIXME: address_taken flag is used both as a shortcut for testing whether
1446 IPA_REF_ADDR reference exists (and thus it should be set on node
1447 representing alias we take address of) and as a test whether address
1448 of the object was taken (and thus it should be set on node alias is
1449 referring to). We should remove the first use and the remove the
1450 following set. */
960bfb69 1451 node->symbol.address_taken = 1;
39e2db00 1452 node = cgraph_function_or_thunk_node (node, NULL);
960bfb69 1453 node->symbol.address_taken = 1;
39ff5a96
JH
1454}
1455
dafc5b82
JH
1456/* Return local info for the compiled function. */
1457
1458struct cgraph_local_info *
439f7bc3 1459cgraph_local_info (tree decl)
dafc5b82
JH
1460{
1461 struct cgraph_node *node;
c22cacf3 1462
341c100f 1463 gcc_assert (TREE_CODE (decl) == FUNCTION_DECL);
9f9ebcdf
MJ
1464 node = cgraph_get_node (decl);
1465 if (!node)
1466 return NULL;
dafc5b82
JH
1467 return &node->local;
1468}
1469
1470/* Return local info for the compiled function. */
1471
1472struct cgraph_global_info *
439f7bc3 1473cgraph_global_info (tree decl)
dafc5b82
JH
1474{
1475 struct cgraph_node *node;
c22cacf3 1476
341c100f 1477 gcc_assert (TREE_CODE (decl) == FUNCTION_DECL && cgraph_global_info_ready);
9f9ebcdf
MJ
1478 node = cgraph_get_node (decl);
1479 if (!node)
1480 return NULL;
dafc5b82
JH
1481 return &node->global;
1482}
1483
b255a036
JH
1484/* Return local info for the compiled function. */
1485
1486struct cgraph_rtl_info *
439f7bc3 1487cgraph_rtl_info (tree decl)
b255a036
JH
1488{
1489 struct cgraph_node *node;
c22cacf3 1490
341c100f 1491 gcc_assert (TREE_CODE (decl) == FUNCTION_DECL);
9f9ebcdf
MJ
1492 node = cgraph_get_node (decl);
1493 if (!node
1494 || (decl != current_function_decl
960bfb69 1495 && !TREE_ASM_WRITTEN (node->symbol.decl)))
b255a036
JH
1496 return NULL;
1497 return &node->rtl;
1498}
1499
61a05df1
JH
1500/* Return a string describing the failure REASON. */
1501
1502const char*
1503cgraph_inline_failed_string (cgraph_inline_failed_t reason)
1504{
1505#undef DEFCIFCODE
1506#define DEFCIFCODE(code, string) string,
1507
1508 static const char *cif_string_table[CIF_N_REASONS] = {
1509#include "cif-code.def"
1510 };
1511
1512 /* Signedness of an enum type is implementation defined, so cast it
1513 to unsigned before testing. */
1514 gcc_assert ((unsigned) reason < CIF_N_REASONS);
1515 return cif_string_table[reason];
1516}
1517
6b02a499 1518/* Names used to print out the availability enum. */
8a4a83ed 1519const char * const cgraph_availability_names[] =
fa10beec 1520 {"unset", "not_available", "overwritable", "available", "local"};
6b02a499 1521
c4e622b6
DN
1522
1523/* Dump call graph node NODE to file F. */
1524
18c6ada9
JH
1525void
1526dump_cgraph_node (FILE *f, struct cgraph_node *node)
1527{
1528 struct cgraph_edge *edge;
e33c6cd6
MJ
1529 int indirect_calls_count = 0;
1530
8f940ee6
JH
1531 dump_symtab_base (f, (symtab_node) node);
1532
18c6ada9 1533 if (node->global.inlined_to)
8f940ee6 1534 fprintf (f, " Function %s/%i is inline copy in %s/%i\n",
036c0102 1535 xstrdup (cgraph_node_name (node)),
8f940ee6 1536 node->symbol.order,
036c0102 1537 xstrdup (cgraph_node_name (node->global.inlined_to)),
8f940ee6 1538 node->global.inlined_to->symbol.order);
9187e02d 1539 if (node->clone_of)
8f940ee6
JH
1540 fprintf (f, " Clone of %s/%i\n",
1541 cgraph_node_asm_name (node->clone_of),
1542 node->clone_of->symbol.order);
6b02a499 1543 if (cgraph_function_flags_ready)
8f940ee6 1544 fprintf (f, " Availability: %s\n",
8a4a83ed 1545 cgraph_availability_names [cgraph_function_body_availability (node)]);
8f940ee6
JH
1546
1547 fprintf (f, " Function flags:");
e42922b1
JH
1548 if (node->count)
1549 fprintf (f, " executed "HOST_WIDEST_INT_PRINT_DEC"x",
1550 (HOST_WIDEST_INT)node->count);
18c6ada9 1551 if (node->origin)
8f940ee6 1552 fprintf (f, " nested in: %s", cgraph_node_asm_name (node->origin));
960bfb69 1553 if (gimple_has_body_p (node->symbol.decl))
726a989a 1554 fprintf (f, " body");
257eb6e3
JH
1555 if (node->process)
1556 fprintf (f, " process");
18c6ada9
JH
1557 if (node->local.local)
1558 fprintf (f, " local");
e7d6beb0
JH
1559 if (node->local.redefined_extern_inline)
1560 fprintf (f, " redefined_extern_inline");
844db5d0
JH
1561 if (node->only_called_at_startup)
1562 fprintf (f, " only_called_at_startup");
1563 if (node->only_called_at_exit)
1564 fprintf (f, " only_called_at_exit");
0a35513e
AH
1565 if (node->tm_clone)
1566 fprintf (f, " tm_clone");
18c6ada9 1567
c47d0034
JH
1568 fprintf (f, "\n");
1569
1570 if (node->thunk.thunk_p)
1571 {
40a7fe1e
JH
1572 fprintf (f, " Thunk");
1573 if (node->thunk.alias)
1574 fprintf (f, " of %s (asm: %s)",
1575 lang_hooks.decl_printable_name (node->thunk.alias, 2),
1576 IDENTIFIER_POINTER (DECL_ASSEMBLER_NAME (node->thunk.alias)));
1577 fprintf (f, " fixed offset %i virtual value %i has "
c47d0034 1578 "virtual offset %i)\n",
c47d0034
JH
1579 (int)node->thunk.fixed_offset,
1580 (int)node->thunk.virtual_value,
1581 (int)node->thunk.virtual_offset_p);
1582 }
e70670cf
JH
1583 if (node->symbol.alias && node->thunk.alias
1584 && DECL_P (node->thunk.alias))
39e2db00 1585 {
8f940ee6 1586 fprintf (f, " Alias of %s",
39e2db00
JH
1587 lang_hooks.decl_printable_name (node->thunk.alias, 2));
1588 if (DECL_ASSEMBLER_NAME_SET_P (node->thunk.alias))
1589 fprintf (f, " (asm: %s)",
1590 IDENTIFIER_POINTER (DECL_ASSEMBLER_NAME (node->thunk.alias)));
1591 fprintf (f, "\n");
1592 }
c47d0034 1593
8f940ee6 1594 fprintf (f, " Called by: ");
c47d0034 1595
18c6ada9
JH
1596 for (edge = node->callers; edge; edge = edge->next_caller)
1597 {
8f940ee6
JH
1598 fprintf (f, "%s/%i ", cgraph_node_asm_name (edge->caller),
1599 edge->caller->symbol.order);
e42922b1
JH
1600 if (edge->count)
1601 fprintf (f, "("HOST_WIDEST_INT_PRINT_DEC"x) ",
1602 (HOST_WIDEST_INT)edge->count);
45a80bb9
JH
1603 if (edge->frequency)
1604 fprintf (f, "(%.2f per call) ",
1605 edge->frequency / (double)CGRAPH_FREQ_BASE);
18c6ada9
JH
1606 if (!edge->inline_failed)
1607 fprintf(f, "(inlined) ");
e33c6cd6
MJ
1608 if (edge->indirect_inlining_edge)
1609 fprintf(f, "(indirect_inlining) ");
2505c5ed
JH
1610 if (edge->can_throw_external)
1611 fprintf(f, "(can throw external) ");
18c6ada9
JH
1612 }
1613
8f940ee6 1614 fprintf (f, "\n Calls: ");
18c6ada9
JH
1615 for (edge = node->callees; edge; edge = edge->next_callee)
1616 {
8f940ee6
JH
1617 fprintf (f, "%s/%i ", cgraph_node_asm_name (edge->callee),
1618 edge->callee->symbol.order);
18c6ada9
JH
1619 if (!edge->inline_failed)
1620 fprintf(f, "(inlined) ");
e33c6cd6
MJ
1621 if (edge->indirect_inlining_edge)
1622 fprintf(f, "(indirect_inlining) ");
6b02a499
JH
1623 if (edge->count)
1624 fprintf (f, "("HOST_WIDEST_INT_PRINT_DEC"x) ",
1625 (HOST_WIDEST_INT)edge->count);
45a80bb9
JH
1626 if (edge->frequency)
1627 fprintf (f, "(%.2f per call) ",
1628 edge->frequency / (double)CGRAPH_FREQ_BASE);
b6fa5b01
JH
1629 if (edge->can_throw_external)
1630 fprintf(f, "(can throw external) ");
18c6ada9
JH
1631 }
1632 fprintf (f, "\n");
6744a6ab 1633
e33c6cd6
MJ
1634 for (edge = node->indirect_calls; edge; edge = edge->next_callee)
1635 indirect_calls_count++;
1636 if (indirect_calls_count)
8f940ee6 1637 fprintf (f, " Has %i outgoing edges for indirect calls.\n",
e33c6cd6 1638 indirect_calls_count);
18c6ada9
JH
1639}
1640
c4e622b6
DN
1641
1642/* Dump call graph node NODE to stderr. */
1643
24e47c76 1644DEBUG_FUNCTION void
c4e622b6
DN
1645debug_cgraph_node (struct cgraph_node *node)
1646{
1647 dump_cgraph_node (stderr, node);
1648}
1649
1650
1651/* Dump the callgraph to file F. */
e72fcfe8
JH
1652
1653void
439f7bc3 1654dump_cgraph (FILE *f)
e72fcfe8
JH
1655{
1656 struct cgraph_node *node;
1657
7d82fe7c 1658 fprintf (f, "callgraph:\n\n");
65c70e6b 1659 FOR_EACH_FUNCTION (node)
18c6ada9 1660 dump_cgraph_node (f, node);
e72fcfe8 1661}
988d1653 1662
c4e622b6
DN
1663
1664/* Dump the call graph to stderr. */
1665
24e47c76 1666DEBUG_FUNCTION void
c4e622b6
DN
1667debug_cgraph (void)
1668{
1669 dump_cgraph (stderr);
1670}
1671
1bb17c21
JH
1672/* Return true when the DECL can possibly be inlined. */
1673bool
1674cgraph_function_possibly_inlined_p (tree decl)
1675{
1bb17c21 1676 if (!cgraph_global_info_ready)
e90acd93 1677 return !DECL_UNINLINABLE (decl);
6f312d18 1678 return DECL_POSSIBLY_INLINED (decl);
18c6ada9
JH
1679}
1680
8f235343
JH
1681/* NODE is no longer nested function; update cgraph accordingly. */
1682void
1683cgraph_unnest_node (struct cgraph_node *node)
1684{
1685 struct cgraph_node **node2 = &node->origin->nested;
1686 gcc_assert (node->origin);
1687
1688 while (*node2 != node)
1689 node2 = &(*node2)->next_nested;
1690 *node2 = node->next_nested;
1691 node->origin = NULL;
1692}
6b02a499
JH
1693
1694/* Return function availability. See cgraph.h for description of individual
1695 return values. */
1696enum availability
1697cgraph_function_body_availability (struct cgraph_node *node)
1698{
1699 enum availability avail;
e70670cf 1700 if (!node->symbol.analyzed)
6b02a499
JH
1701 avail = AVAIL_NOT_AVAILABLE;
1702 else if (node->local.local)
1703 avail = AVAIL_LOCAL;
960bfb69 1704 else if (!node->symbol.externally_visible)
6b02a499 1705 avail = AVAIL_AVAILABLE;
61502ca8
NF
1706 /* Inline functions are safe to be analyzed even if their symbol can
1707 be overwritten at runtime. It is not meaningful to enforce any sane
4a371c8d 1708 behaviour on replacing inline function by different body. */
960bfb69 1709 else if (DECL_DECLARED_INLINE_P (node->symbol.decl))
4a371c8d 1710 avail = AVAIL_AVAILABLE;
6b02a499
JH
1711
1712 /* If the function can be overwritten, return OVERWRITABLE. Take
1713 care at least of two notable extensions - the COMDAT functions
1714 used to share template instantiations in C++ (this is symmetric
1715 to code cp_cannot_inline_tree_fn and probably shall be shared and
ff5c4582 1716 the inlinability hooks completely eliminated).
6b02a499
JH
1717
1718 ??? Does the C++ one definition rule allow us to always return
1719 AVAIL_AVAILABLE here? That would be good reason to preserve this
4a371c8d
JH
1720 bit. */
1721
960bfb69
JH
1722 else if (decl_replaceable_p (node->symbol.decl)
1723 && !DECL_EXTERNAL (node->symbol.decl))
6b02a499
JH
1724 avail = AVAIL_OVERWRITABLE;
1725 else avail = AVAIL_AVAILABLE;
1726
1727 return avail;
1728}
1729
be330ed4
JH
1730/* Worker for cgraph_node_can_be_local_p. */
1731static bool
1732cgraph_node_cannot_be_local_p_1 (struct cgraph_node *node,
1733 void *data ATTRIBUTE_UNUSED)
1734{
ead84f73 1735 return !(!node->symbol.force_output
960bfb69 1736 && ((DECL_COMDAT (node->symbol.decl)
edb983b2
JH
1737 && !node->symbol.forced_by_abi
1738 && !symtab_used_from_object_file_p ((symtab_node) node)
960bfb69
JH
1739 && !node->symbol.same_comdat_group)
1740 || !node->symbol.externally_visible));
be330ed4
JH
1741}
1742
a550d677
MJ
1743/* Return true if NODE can be made local for API change.
1744 Extern inline functions and C++ COMDAT functions can be made local
1745 at the expense of possible code size growth if function is used in multiple
1746 compilation units. */
1747bool
1748cgraph_node_can_be_local_p (struct cgraph_node *node)
1749{
960bfb69 1750 return (!node->symbol.address_taken
be330ed4
JH
1751 && !cgraph_for_node_and_aliases (node,
1752 cgraph_node_cannot_be_local_p_1,
1753 NULL, true));
a550d677
MJ
1754}
1755
073a8998 1756/* Call calback on NODE, thunks and aliases associated to NODE.
be330ed4
JH
1757 When INCLUDE_OVERWRITABLE is false, overwritable aliases and thunks are
1758 skipped. */
1759
1760bool
1761cgraph_for_node_thunks_and_aliases (struct cgraph_node *node,
1762 bool (*callback) (struct cgraph_node *, void *),
1763 void *data,
1764 bool include_overwritable)
1765{
1766 struct cgraph_edge *e;
39e2db00
JH
1767 int i;
1768 struct ipa_ref *ref;
be330ed4
JH
1769
1770 if (callback (node, data))
1771 return true;
be330ed4
JH
1772 for (e = node->callers; e; e = e->next_caller)
1773 if (e->caller->thunk.thunk_p
1774 && (include_overwritable
25e2c40d 1775 || cgraph_function_body_availability (e->caller) > AVAIL_OVERWRITABLE))
9aa3f5c5
JH
1776 if (cgraph_for_node_thunks_and_aliases (e->caller, callback, data,
1777 include_overwritable))
1778 return true;
5932a4d4 1779 for (i = 0; ipa_ref_list_referring_iterate (&node->symbol.ref_list, i, ref); i++)
39e2db00
JH
1780 if (ref->use == IPA_REF_ALIAS)
1781 {
5932a4d4 1782 struct cgraph_node *alias = ipa_ref_referring_node (ref);
39e2db00
JH
1783 if (include_overwritable
1784 || cgraph_function_body_availability (alias) > AVAIL_OVERWRITABLE)
9aa3f5c5
JH
1785 if (cgraph_for_node_thunks_and_aliases (alias, callback, data,
1786 include_overwritable))
1787 return true;
39e2db00 1788 }
be330ed4
JH
1789 return false;
1790}
1791
073a8998 1792/* Call calback on NODE and aliases associated to NODE.
be330ed4
JH
1793 When INCLUDE_OVERWRITABLE is false, overwritable aliases and thunks are
1794 skipped. */
1795
1796bool
1797cgraph_for_node_and_aliases (struct cgraph_node *node,
1798 bool (*callback) (struct cgraph_node *, void *),
1799 void *data,
39e2db00 1800 bool include_overwritable)
a550d677 1801{
39e2db00
JH
1802 int i;
1803 struct ipa_ref *ref;
be330ed4
JH
1804
1805 if (callback (node, data))
1806 return true;
5932a4d4 1807 for (i = 0; ipa_ref_list_referring_iterate (&node->symbol.ref_list, i, ref); i++)
39e2db00
JH
1808 if (ref->use == IPA_REF_ALIAS)
1809 {
5932a4d4 1810 struct cgraph_node *alias = ipa_ref_referring_node (ref);
39e2db00
JH
1811 if (include_overwritable
1812 || cgraph_function_body_availability (alias) > AVAIL_OVERWRITABLE)
9aa3f5c5
JH
1813 if (cgraph_for_node_and_aliases (alias, callback, data,
1814 include_overwritable))
1815 return true;
39e2db00 1816 }
be330ed4
JH
1817 return false;
1818}
1819
1820/* Worker to bring NODE local. */
1821
1822static bool
1823cgraph_make_node_local_1 (struct cgraph_node *node, void *data ATTRIBUTE_UNUSED)
1824{
1825 gcc_checking_assert (cgraph_node_can_be_local_p (node));
960bfb69 1826 if (DECL_COMDAT (node->symbol.decl) || DECL_EXTERNAL (node->symbol.decl))
a550d677 1827 {
65d630d4 1828 symtab_make_decl_local (node->symbol.decl);
715a4e08 1829
960bfb69 1830 node->symbol.externally_visible = false;
edb983b2 1831 node->symbol.forced_by_abi = false;
a550d677 1832 node->local.local = true;
702d8703
JH
1833 node->symbol.unique_name = (node->symbol.resolution == LDPR_PREVAILING_DEF_IRONLY
1834 || node->symbol.resolution == LDPR_PREVAILING_DEF_IRONLY_EXP);
960bfb69 1835 node->symbol.resolution = LDPR_PREVAILING_DEF_IRONLY;
a550d677
MJ
1836 gcc_assert (cgraph_function_body_availability (node) == AVAIL_LOCAL);
1837 }
be330ed4 1838 return false;
a550d677
MJ
1839}
1840
be330ed4
JH
1841/* Bring NODE local. */
1842
1843void
1844cgraph_make_node_local (struct cgraph_node *node)
1845{
1846 cgraph_for_node_thunks_and_aliases (node, cgraph_make_node_local_1,
1847 NULL, true);
1848}
1849
1850/* Worker to set nothrow flag. */
1851
1852static bool
1853cgraph_set_nothrow_flag_1 (struct cgraph_node *node, void *data)
1854{
71fb4f92
JH
1855 struct cgraph_edge *e;
1856
960bfb69 1857 TREE_NOTHROW (node->symbol.decl) = data != NULL;
71fb4f92
JH
1858
1859 if (data != NULL)
1860 for (e = node->callers; e; e = e->next_caller)
1861 e->can_throw_external = false;
be330ed4
JH
1862 return false;
1863}
1864
1865/* Set TREE_NOTHROW on NODE's decl and on aliases of NODE
20cdc2be
JJ
1866 if any to NOTHROW. */
1867
1868void
1869cgraph_set_nothrow_flag (struct cgraph_node *node, bool nothrow)
1870{
be330ed4
JH
1871 cgraph_for_node_thunks_and_aliases (node, cgraph_set_nothrow_flag_1,
1872 (void *)(size_t)nothrow, false);
20cdc2be
JJ
1873}
1874
be330ed4 1875/* Worker to set const flag. */
20cdc2be 1876
be330ed4
JH
1877static bool
1878cgraph_set_const_flag_1 (struct cgraph_node *node, void *data)
20cdc2be 1879{
530f3a1b
JH
1880 /* Static constructors and destructors without a side effect can be
1881 optimized out. */
be330ed4 1882 if (data && !((size_t)data & 2))
530f3a1b 1883 {
960bfb69
JH
1884 if (DECL_STATIC_CONSTRUCTOR (node->symbol.decl))
1885 DECL_STATIC_CONSTRUCTOR (node->symbol.decl) = 0;
1886 if (DECL_STATIC_DESTRUCTOR (node->symbol.decl))
1887 DECL_STATIC_DESTRUCTOR (node->symbol.decl) = 0;
530f3a1b 1888 }
960bfb69
JH
1889 TREE_READONLY (node->symbol.decl) = data != NULL;
1890 DECL_LOOPING_CONST_OR_PURE_P (node->symbol.decl) = ((size_t)data & 2) != 0;
be330ed4 1891 return false;
20cdc2be
JJ
1892}
1893
be330ed4
JH
1894/* Set TREE_READONLY on NODE's decl and on aliases of NODE
1895 if any to READONLY. */
20cdc2be
JJ
1896
1897void
be330ed4 1898cgraph_set_const_flag (struct cgraph_node *node, bool readonly, bool looping)
20cdc2be 1899{
be330ed4
JH
1900 cgraph_for_node_thunks_and_aliases (node, cgraph_set_const_flag_1,
1901 (void *)(size_t)(readonly + (int)looping * 2),
1902 false);
1903}
1904
1905/* Worker to set pure flag. */
1906
1907static bool
1908cgraph_set_pure_flag_1 (struct cgraph_node *node, void *data)
1909{
a1ffba98 1910 /* Static constructors and destructors without a side effect can be
530f3a1b 1911 optimized out. */
be330ed4 1912 if (data && !((size_t)data & 2))
530f3a1b 1913 {
960bfb69
JH
1914 if (DECL_STATIC_CONSTRUCTOR (node->symbol.decl))
1915 DECL_STATIC_CONSTRUCTOR (node->symbol.decl) = 0;
1916 if (DECL_STATIC_DESTRUCTOR (node->symbol.decl))
1917 DECL_STATIC_DESTRUCTOR (node->symbol.decl) = 0;
530f3a1b 1918 }
960bfb69
JH
1919 DECL_PURE_P (node->symbol.decl) = data != NULL;
1920 DECL_LOOPING_CONST_OR_PURE_P (node->symbol.decl) = ((size_t)data & 2) != 0;
be330ed4 1921 return false;
20cdc2be
JJ
1922}
1923
be330ed4
JH
1924/* Set DECL_PURE_P on NODE's decl and on aliases of NODE
1925 if any to PURE. */
1926
1927void
1928cgraph_set_pure_flag (struct cgraph_node *node, bool pure, bool looping)
fa5f5e27 1929{
be330ed4
JH
1930 cgraph_for_node_thunks_and_aliases (node, cgraph_set_pure_flag_1,
1931 (void *)(size_t)(pure + (int)looping * 2),
1932 false);
1933}
844db5d0 1934
be330ed4 1935/* Data used by cgraph_propagate_frequency. */
844db5d0 1936
be330ed4
JH
1937struct cgraph_propagate_frequency_data
1938{
1939 bool maybe_unlikely_executed;
1940 bool maybe_executed_once;
1941 bool only_called_at_startup;
1942 bool only_called_at_exit;
1943};
1944
1945/* Worker for cgraph_propagate_frequency_1. */
1946
1947static bool
1948cgraph_propagate_frequency_1 (struct cgraph_node *node, void *data)
1949{
1950 struct cgraph_propagate_frequency_data *d;
1951 struct cgraph_edge *edge;
1952
1953 d = (struct cgraph_propagate_frequency_data *)data;
fa5f5e27 1954 for (edge = node->callers;
be330ed4
JH
1955 edge && (d->maybe_unlikely_executed || d->maybe_executed_once
1956 || d->only_called_at_startup || d->only_called_at_exit);
fa5f5e27
JH
1957 edge = edge->next_caller)
1958 {
844db5d0
JH
1959 if (edge->caller != node)
1960 {
be330ed4 1961 d->only_called_at_startup &= edge->caller->only_called_at_startup;
61502ca8 1962 /* It makes sense to put main() together with the static constructors.
844db5d0 1963 It will be executed for sure, but rest of functions called from
61502ca8 1964 main are definitely not at startup only. */
960bfb69 1965 if (MAIN_NAME_P (DECL_NAME (edge->caller->symbol.decl)))
be330ed4
JH
1966 d->only_called_at_startup = 0;
1967 d->only_called_at_exit &= edge->caller->only_called_at_exit;
844db5d0 1968 }
fa5f5e27
JH
1969 if (!edge->frequency)
1970 continue;
1971 switch (edge->caller->frequency)
1972 {
1973 case NODE_FREQUENCY_UNLIKELY_EXECUTED:
1974 break;
1975 case NODE_FREQUENCY_EXECUTED_ONCE:
1976 if (dump_file && (dump_flags & TDF_DETAILS))
844db5d0 1977 fprintf (dump_file, " Called by %s that is executed once\n",
87e7b310 1978 cgraph_node_name (edge->caller));
be330ed4 1979 d->maybe_unlikely_executed = false;
898b8927 1980 if (inline_edge_summary (edge)->loop_depth)
fa5f5e27 1981 {
be330ed4 1982 d->maybe_executed_once = false;
fa5f5e27
JH
1983 if (dump_file && (dump_flags & TDF_DETAILS))
1984 fprintf (dump_file, " Called in loop\n");
1985 }
1986 break;
1987 case NODE_FREQUENCY_HOT:
1988 case NODE_FREQUENCY_NORMAL:
1989 if (dump_file && (dump_flags & TDF_DETAILS))
844db5d0 1990 fprintf (dump_file, " Called by %s that is normal or hot\n",
87e7b310 1991 cgraph_node_name (edge->caller));
be330ed4
JH
1992 d->maybe_unlikely_executed = false;
1993 d->maybe_executed_once = false;
fa5f5e27
JH
1994 break;
1995 }
1996 }
be330ed4
JH
1997 return edge != NULL;
1998}
1999
2000/* See if the frequency of NODE can be updated based on frequencies of its
2001 callers. */
2002bool
2003cgraph_propagate_frequency (struct cgraph_node *node)
2004{
2005 struct cgraph_propagate_frequency_data d = {true, true, true, true};
2006 bool changed = false;
2007
2008 if (!node->local.local)
2009 return false;
e70670cf 2010 gcc_assert (node->symbol.analyzed);
be330ed4
JH
2011 if (dump_file && (dump_flags & TDF_DETAILS))
2012 fprintf (dump_file, "Processing frequency %s\n", cgraph_node_name (node));
2013
2014 cgraph_for_node_and_aliases (node, cgraph_propagate_frequency_1, &d, true);
2015
2016 if ((d.only_called_at_startup && !d.only_called_at_exit)
844db5d0
JH
2017 && !node->only_called_at_startup)
2018 {
2019 node->only_called_at_startup = true;
fa5f5e27 2020 if (dump_file)
844db5d0
JH
2021 fprintf (dump_file, "Node %s promoted to only called at startup.\n",
2022 cgraph_node_name (node));
2023 changed = true;
2024 }
be330ed4 2025 if ((d.only_called_at_exit && !d.only_called_at_startup)
844db5d0
JH
2026 && !node->only_called_at_exit)
2027 {
2028 node->only_called_at_exit = true;
fa5f5e27 2029 if (dump_file)
844db5d0
JH
2030 fprintf (dump_file, "Node %s promoted to only called at exit.\n",
2031 cgraph_node_name (node));
2032 changed = true;
2033 }
2034 /* These come either from profile or user hints; never update them. */
2035 if (node->frequency == NODE_FREQUENCY_HOT
2036 || node->frequency == NODE_FREQUENCY_UNLIKELY_EXECUTED)
2037 return changed;
be330ed4 2038 if (d.maybe_unlikely_executed)
844db5d0
JH
2039 {
2040 node->frequency = NODE_FREQUENCY_UNLIKELY_EXECUTED;
2041 if (dump_file)
2042 fprintf (dump_file, "Node %s promoted to unlikely executed.\n",
2043 cgraph_node_name (node));
2044 changed = true;
2045 }
be330ed4 2046 else if (d.maybe_executed_once && node->frequency != NODE_FREQUENCY_EXECUTED_ONCE)
844db5d0
JH
2047 {
2048 node->frequency = NODE_FREQUENCY_EXECUTED_ONCE;
2049 if (dump_file)
2050 fprintf (dump_file, "Node %s promoted to executed once.\n",
2051 cgraph_node_name (node));
2052 changed = true;
2053 }
2054 return changed;
fa5f5e27
JH
2055}
2056
d56026c2
JH
2057/* Return true when NODE can not return or throw and thus
2058 it is safe to ignore its side effects for IPA analysis. */
2059
2060bool
2061cgraph_node_cannot_return (struct cgraph_node *node)
2062{
960bfb69 2063 int flags = flags_from_decl_or_type (node->symbol.decl);
d56026c2
JH
2064 if (!flag_exceptions)
2065 return (flags & ECF_NORETURN) != 0;
2066 else
2067 return ((flags & (ECF_NORETURN | ECF_NOTHROW))
2068 == (ECF_NORETURN | ECF_NOTHROW));
2069}
2070
2071/* Return true when call of E can not lead to return from caller
2072 and thus it is safe to ignore its side effects for IPA analysis
2073 when computing side effects of the caller.
2074 FIXME: We could actually mark all edges that have no reaching
2075 patch to EXIT_BLOCK_PTR or throw to get better results. */
2076bool
2077cgraph_edge_cannot_lead_to_return (struct cgraph_edge *e)
2078{
f10ea640
JH
2079 if (cgraph_node_cannot_return (e->caller))
2080 return true;
d56026c2
JH
2081 if (e->indirect_unknown_callee)
2082 {
2083 int flags = e->indirect_info->ecf_flags;
2084 if (!flag_exceptions)
2085 return (flags & ECF_NORETURN) != 0;
2086 else
2087 return ((flags & (ECF_NORETURN | ECF_NOTHROW))
2088 == (ECF_NORETURN | ECF_NOTHROW));
2089 }
2090 else
2091 return cgraph_node_cannot_return (e->callee);
2092}
2093
508e4757
JH
2094/* Return true when function NODE can be removed from callgraph
2095 if all direct calls are eliminated. */
2096
2097bool
2098cgraph_can_remove_if_no_direct_calls_and_refs_p (struct cgraph_node *node)
2099{
530f3a1b
JH
2100 gcc_assert (!node->global.inlined_to);
2101 /* Extern inlines can always go, we will use the external definition. */
960bfb69 2102 if (DECL_EXTERNAL (node->symbol.decl))
530f3a1b 2103 return true;
508e4757 2104 /* When function is needed, we can not remove it. */
ead84f73 2105 if (node->symbol.force_output || node->symbol.used_from_other_partition)
508e4757 2106 return false;
960bfb69
JH
2107 if (DECL_STATIC_CONSTRUCTOR (node->symbol.decl)
2108 || DECL_STATIC_DESTRUCTOR (node->symbol.decl))
530f3a1b 2109 return false;
508e4757 2110 /* Only COMDAT functions can be removed if externally visible. */
960bfb69
JH
2111 if (node->symbol.externally_visible
2112 && (!DECL_COMDAT (node->symbol.decl)
edb983b2 2113 || node->symbol.forced_by_abi
65d630d4 2114 || symtab_used_from_object_file_p ((symtab_node) node)))
508e4757 2115 return false;
508e4757
JH
2116 return true;
2117}
2118
9aa3f5c5
JH
2119/* Worker for cgraph_can_remove_if_no_direct_calls_p. */
2120
2121static bool
2122nonremovable_p (struct cgraph_node *node, void *data ATTRIBUTE_UNUSED)
2123{
2124 return !cgraph_can_remove_if_no_direct_calls_and_refs_p (node);
2125}
2126
2127/* Return true when function NODE and its aliases can be removed from callgraph
2128 if all direct calls are eliminated. */
2129
2130bool
2131cgraph_can_remove_if_no_direct_calls_p (struct cgraph_node *node)
2132{
2133 /* Extern inlines can always go, we will use the external definition. */
960bfb69 2134 if (DECL_EXTERNAL (node->symbol.decl))
9aa3f5c5 2135 return true;
960bfb69 2136 if (node->symbol.address_taken)
9aa3f5c5
JH
2137 return false;
2138 return !cgraph_for_node_and_aliases (node, nonremovable_p, NULL, true);
2139}
2140
2141/* Worker for cgraph_can_remove_if_no_direct_calls_p. */
2142
2143static bool
2144used_from_object_file_p (struct cgraph_node *node, void *data ATTRIBUTE_UNUSED)
2145{
65d630d4 2146 return symtab_used_from_object_file_p ((symtab_node) node);
9aa3f5c5
JH
2147}
2148
61502ca8 2149/* Return true when function NODE can be expected to be removed
09411461
JH
2150 from program when direct calls in this compilation unit are removed.
2151
2152 As a special case COMDAT functions are
2153 cgraph_can_remove_if_no_direct_calls_p while the are not
2154 cgraph_only_called_directly_p (it is possible they are called from other
2155 unit)
2156
2157 This function behaves as cgraph_only_called_directly_p because eliminating
61502ca8 2158 all uses of COMDAT function does not make it necessarily disappear from
09411461
JH
2159 the program unless we are compiling whole program or we do LTO. In this
2160 case we know we win since dynamic linking will not really discard the
2161 linkonce section. */
2162
2163bool
2164cgraph_will_be_removed_from_program_if_no_direct_calls (struct cgraph_node *node)
2165{
530f3a1b 2166 gcc_assert (!node->global.inlined_to);
9aa3f5c5 2167 if (cgraph_for_node_and_aliases (node, used_from_object_file_p, NULL, true))
09411461
JH
2168 return false;
2169 if (!in_lto_p && !flag_whole_program)
2170 return cgraph_only_called_directly_p (node);
2171 else
530f3a1b 2172 {
960bfb69 2173 if (DECL_EXTERNAL (node->symbol.decl))
530f3a1b
JH
2174 return true;
2175 return cgraph_can_remove_if_no_direct_calls_p (node);
2176 }
09411461
JH
2177}
2178
051f8cc6 2179
be330ed4
JH
2180/* Worker for cgraph_only_called_directly_p. */
2181
2182static bool
2183cgraph_not_only_called_directly_p_1 (struct cgraph_node *node, void *data ATTRIBUTE_UNUSED)
2184{
2185 return !cgraph_only_called_directly_or_aliased_p (node);
2186}
2187
2188/* Return true when function NODE and all its aliases are only called
2189 directly.
2190 i.e. it is not externally visible, address was not taken and
2191 it is not used in any other non-standard way. */
2192
2193bool
2194cgraph_only_called_directly_p (struct cgraph_node *node)
2195{
2196 gcc_assert (cgraph_function_or_thunk_node (node, NULL) == node);
2197 return !cgraph_for_node_and_aliases (node, cgraph_not_only_called_directly_p_1,
2198 NULL, true);
2199}
2200
2201
2202/* Collect all callers of NODE. Worker for collect_callers_of_node. */
2203
2204static bool
2205collect_callers_of_node_1 (struct cgraph_node *node, void *data)
2206{
9771b263 2207 vec<cgraph_edge_p> *redirect_callers = (vec<cgraph_edge_p> *)data;
be330ed4
JH
2208 struct cgraph_edge *cs;
2209 enum availability avail;
2210 cgraph_function_or_thunk_node (node, &avail);
2211
2212 if (avail > AVAIL_OVERWRITABLE)
2213 for (cs = node->callers; cs != NULL; cs = cs->next_caller)
2214 if (!cs->indirect_inlining_edge)
9771b263 2215 redirect_callers->safe_push (cs);
be330ed4
JH
2216 return false;
2217}
2218
2219/* Collect all callers of NODE and its aliases that are known to lead to NODE
2220 (i.e. are not overwritable). */
2221
9771b263 2222vec<cgraph_edge_p>
be330ed4
JH
2223collect_callers_of_node (struct cgraph_node *node)
2224{
6e1aa848 2225 vec<cgraph_edge_p> redirect_callers = vNULL;
be330ed4
JH
2226 cgraph_for_node_and_aliases (node, collect_callers_of_node_1,
2227 &redirect_callers, false);
2228 return redirect_callers;
2229}
2230
9c8305f8
JH
2231/* Return TRUE if NODE2 is equivalent to NODE or its clone. */
2232static bool
2233clone_of_p (struct cgraph_node *node, struct cgraph_node *node2)
2234{
2235 node = cgraph_function_or_thunk_node (node, NULL);
2236 node2 = cgraph_function_or_thunk_node (node2, NULL);
2237 while (node != node2 && node2)
2238 node2 = node2->clone_of;
2239 return node2 != NULL;
2240}
2241
2242/* Verify edge E count and frequency. */
2243
2244static bool
2245verify_edge_count_and_frequency (struct cgraph_edge *e)
2246{
2247 bool error_found = false;
2248 if (e->count < 0)
2249 {
2250 error ("caller edge count is negative");
2251 error_found = true;
2252 }
2253 if (e->frequency < 0)
2254 {
2255 error ("caller edge frequency is negative");
2256 error_found = true;
2257 }
2258 if (e->frequency > CGRAPH_FREQ_MAX)
2259 {
2260 error ("caller edge frequency is too large");
2261 error_found = true;
2262 }
2263 if (gimple_has_body_p (e->caller->symbol.decl)
2264 && !e->caller->global.inlined_to
2265 /* FIXME: Inline-analysis sets frequency to 0 when edge is optimized out.
073a8998 2266 Remove this once edges are actually removed from the function at that time. */
9c8305f8 2267 && (e->frequency
9771b263
DN
2268 || (inline_edge_summary_vec.exists ()
2269 && ((inline_edge_summary_vec.length () <= (unsigned) e->uid)
9c8305f8
JH
2270 || !inline_edge_summary (e)->predicate)))
2271 && (e->frequency
2272 != compute_call_stmt_bb_frequency (e->caller->symbol.decl,
2273 gimple_bb (e->call_stmt))))
2274 {
2275 error ("caller edge frequency %i does not match BB frequency %i",
2276 e->frequency,
2277 compute_call_stmt_bb_frequency (e->caller->symbol.decl,
2278 gimple_bb (e->call_stmt)));
2279 error_found = true;
2280 }
2281 return error_found;
2282}
2283
2284/* Switch to THIS_CFUN if needed and print STMT to stderr. */
2285static void
2286cgraph_debug_gimple_stmt (struct function *this_cfun, gimple stmt)
2287{
27f7e1c3 2288 bool fndecl_was_null = false;
9c8305f8
JH
2289 /* debug_gimple_stmt needs correct cfun */
2290 if (cfun != this_cfun)
2291 set_cfun (this_cfun);
27f7e1c3
AH
2292 /* ...and an actual current_function_decl */
2293 if (!current_function_decl)
2294 {
2295 current_function_decl = this_cfun->decl;
2296 fndecl_was_null = true;
2297 }
9c8305f8 2298 debug_gimple_stmt (stmt);
27f7e1c3
AH
2299 if (fndecl_was_null)
2300 current_function_decl = NULL;
9c8305f8
JH
2301}
2302
2303/* Verify that call graph edge E corresponds to DECL from the associated
2304 statement. Return true if the verification should fail. */
2305
2306static bool
2307verify_edge_corresponds_to_fndecl (struct cgraph_edge *e, tree decl)
2308{
2309 struct cgraph_node *node;
2310
2311 if (!decl || e->callee->global.inlined_to)
2312 return false;
ca0f62a8
JH
2313 if (cgraph_state == CGRAPH_LTO_STREAMING)
2314 return false;
9c8305f8
JH
2315 node = cgraph_get_node (decl);
2316
2317 /* We do not know if a node from a different partition is an alias or what it
2318 aliases and therefore cannot do the former_clone_of check reliably. */
2319 if (!node || node->symbol.in_other_partition)
2320 return false;
2321 node = cgraph_function_or_thunk_node (node, NULL);
2322
40a7fe1e 2323 if (e->callee->former_clone_of != node->symbol.decl
9c8305f8
JH
2324 /* IPA-CP sometimes redirect edge to clone and then back to the former
2325 function. This ping-pong has to go, eventually. */
2326 && (node != cgraph_function_or_thunk_node (e->callee, NULL))
40a7fe1e 2327 && !clone_of_p (cgraph_function_or_thunk_node (node, NULL), e->callee))
9c8305f8
JH
2328 return true;
2329 else
2330 return false;
2331}
2332
2333/* Verify cgraph nodes of given cgraph node. */
2334DEBUG_FUNCTION void
2335verify_cgraph_node (struct cgraph_node *node)
2336{
2337 struct cgraph_edge *e;
2338 struct function *this_cfun = DECL_STRUCT_FUNCTION (node->symbol.decl);
2339 basic_block this_block;
2340 gimple_stmt_iterator gsi;
2341 bool error_found = false;
2342
2343 if (seen_error ())
2344 return;
2345
2346 timevar_push (TV_CGRAPH_VERIFY);
2347 error_found |= verify_symtab_base ((symtab_node) node);
2348 for (e = node->callees; e; e = e->next_callee)
2349 if (e->aux)
2350 {
2351 error ("aux field set for edge %s->%s",
2352 identifier_to_locale (cgraph_node_name (e->caller)),
2353 identifier_to_locale (cgraph_node_name (e->callee)));
2354 error_found = true;
2355 }
2356 if (node->count < 0)
2357 {
2358 error ("execution count is negative");
2359 error_found = true;
2360 }
65d630d4
JH
2361 if (node->global.inlined_to && node->symbol.same_comdat_group)
2362 {
2363 error ("inline clone in same comdat group list");
2364 error_found = true;
2365 }
51a5c0c2 2366 if (!node->symbol.definition && !node->symbol.in_other_partition && node->local.local)
e70670cf
JH
2367 {
2368 error ("local symbols must be defined");
2369 error_found = true;
2370 }
9c8305f8
JH
2371 if (node->global.inlined_to && node->symbol.externally_visible)
2372 {
2373 error ("externally visible inline clone");
2374 error_found = true;
2375 }
2376 if (node->global.inlined_to && node->symbol.address_taken)
2377 {
2378 error ("inline clone with address taken");
2379 error_found = true;
2380 }
2381 if (node->global.inlined_to && node->symbol.force_output)
2382 {
2383 error ("inline clone is forced to output");
2384 error_found = true;
2385 }
2386 for (e = node->indirect_calls; e; e = e->next_callee)
2387 {
2388 if (e->aux)
2389 {
2390 error ("aux field set for indirect edge from %s",
2391 identifier_to_locale (cgraph_node_name (e->caller)));
2392 error_found = true;
2393 }
2394 if (!e->indirect_unknown_callee
2395 || !e->indirect_info)
2396 {
2397 error ("An indirect edge from %s is not marked as indirect or has "
2398 "associated indirect_info, the corresponding statement is: ",
2399 identifier_to_locale (cgraph_node_name (e->caller)));
2400 cgraph_debug_gimple_stmt (this_cfun, e->call_stmt);
2401 error_found = true;
2402 }
2403 }
2404 for (e = node->callers; e; e = e->next_caller)
2405 {
2406 if (verify_edge_count_and_frequency (e))
2407 error_found = true;
2408 if (!e->inline_failed)
2409 {
2410 if (node->global.inlined_to
2411 != (e->caller->global.inlined_to
2412 ? e->caller->global.inlined_to : e->caller))
2413 {
2414 error ("inlined_to pointer is wrong");
2415 error_found = true;
2416 }
2417 if (node->callers->next_caller)
2418 {
2419 error ("multiple inline callers");
2420 error_found = true;
2421 }
2422 }
2423 else
2424 if (node->global.inlined_to)
2425 {
2426 error ("inlined_to pointer set for noninline callers");
2427 error_found = true;
2428 }
2429 }
2430 for (e = node->indirect_calls; e; e = e->next_callee)
2431 if (verify_edge_count_and_frequency (e))
2432 error_found = true;
2433 if (!node->callers && node->global.inlined_to)
2434 {
2435 error ("inlined_to pointer is set but no predecessors found");
2436 error_found = true;
2437 }
2438 if (node->global.inlined_to == node)
2439 {
2440 error ("inlined_to pointer refers to itself");
2441 error_found = true;
2442 }
2443
2444 if (node->clone_of)
2445 {
2446 struct cgraph_node *n;
2447 for (n = node->clone_of->clones; n; n = n->next_sibling_clone)
2448 if (n == node)
2449 break;
2450 if (!n)
2451 {
2452 error ("node has wrong clone_of");
2453 error_found = true;
2454 }
2455 }
2456 if (node->clones)
2457 {
2458 struct cgraph_node *n;
2459 for (n = node->clones; n; n = n->next_sibling_clone)
2460 if (n->clone_of != node)
2461 break;
2462 if (n)
2463 {
2464 error ("node has wrong clone list");
2465 error_found = true;
2466 }
2467 }
2468 if ((node->prev_sibling_clone || node->next_sibling_clone) && !node->clone_of)
2469 {
2470 error ("node is in clone list but it is not clone");
2471 error_found = true;
2472 }
2473 if (!node->prev_sibling_clone && node->clone_of && node->clone_of->clones != node)
2474 {
2475 error ("node has wrong prev_clone pointer");
2476 error_found = true;
2477 }
2478 if (node->prev_sibling_clone && node->prev_sibling_clone->next_sibling_clone != node)
2479 {
2480 error ("double linked list of clones corrupted");
2481 error_found = true;
2482 }
2483
e70670cf 2484 if (node->symbol.analyzed && node->symbol.alias)
9c8305f8
JH
2485 {
2486 bool ref_found = false;
2487 int i;
2488 struct ipa_ref *ref;
2489
2490 if (node->callees)
2491 {
2492 error ("Alias has call edges");
2493 error_found = true;
2494 }
2495 for (i = 0; ipa_ref_list_reference_iterate (&node->symbol.ref_list,
2496 i, ref); i++)
2497 if (ref->use != IPA_REF_ALIAS)
2498 {
2499 error ("Alias has non-alias reference");
2500 error_found = true;
2501 }
2502 else if (ref_found)
2503 {
2504 error ("Alias has more than one alias reference");
2505 error_found = true;
2506 }
2507 else
2508 ref_found = true;
2509 if (!ref_found)
2510 {
2511 error ("Analyzed alias has no reference");
2512 error_found = true;
2513 }
2514 }
e70670cf 2515 if (node->symbol.analyzed && node->thunk.thunk_p)
9c8305f8
JH
2516 {
2517 if (!node->callees)
2518 {
2519 error ("No edge out of thunk node");
2520 error_found = true;
2521 }
2522 else if (node->callees->next_callee)
2523 {
2524 error ("More than one edge out of thunk node");
2525 error_found = true;
2526 }
2527 if (gimple_has_body_p (node->symbol.decl))
2528 {
2529 error ("Thunk is not supposed to have body");
2530 error_found = true;
2531 }
2532 }
e70670cf 2533 else if (node->symbol.analyzed && gimple_has_body_p (node->symbol.decl)
9c8305f8
JH
2534 && !TREE_ASM_WRITTEN (node->symbol.decl)
2535 && (!DECL_EXTERNAL (node->symbol.decl) || node->global.inlined_to)
2536 && !flag_wpa)
2537 {
2538 if (this_cfun->cfg)
2539 {
9c8305f8
JH
2540 /* Reach the trees by walking over the CFG, and note the
2541 enclosing basic-blocks in the call edges. */
2542 FOR_EACH_BB_FN (this_block, this_cfun)
2543 for (gsi = gsi_start_bb (this_block);
2544 !gsi_end_p (gsi);
2545 gsi_next (&gsi))
2546 {
2547 gimple stmt = gsi_stmt (gsi);
2548 if (is_gimple_call (stmt))
2549 {
2550 struct cgraph_edge *e = cgraph_edge (node, stmt);
2551 tree decl = gimple_call_fndecl (stmt);
2552 if (e)
2553 {
2554 if (e->aux)
2555 {
2556 error ("shared call_stmt:");
2557 cgraph_debug_gimple_stmt (this_cfun, stmt);
2558 error_found = true;
2559 }
2560 if (!e->indirect_unknown_callee)
2561 {
2562 if (verify_edge_corresponds_to_fndecl (e, decl))
2563 {
2564 error ("edge points to wrong declaration:");
2565 debug_tree (e->callee->symbol.decl);
2566 fprintf (stderr," Instead of:");
2567 debug_tree (decl);
2568 error_found = true;
2569 }
2570 }
2571 else if (decl)
2572 {
2573 error ("an indirect edge with unknown callee "
2574 "corresponding to a call_stmt with "
2575 "a known declaration:");
2576 error_found = true;
2577 cgraph_debug_gimple_stmt (this_cfun, e->call_stmt);
2578 }
2579 e->aux = (void *)1;
2580 }
2581 else if (decl)
2582 {
2583 error ("missing callgraph edge for call stmt:");
2584 cgraph_debug_gimple_stmt (this_cfun, stmt);
2585 error_found = true;
2586 }
2587 }
2588 }
9c8305f8
JH
2589 }
2590 else
2591 /* No CFG available?! */
2592 gcc_unreachable ();
2593
2594 for (e = node->callees; e; e = e->next_callee)
2595 {
2596 if (!e->aux)
2597 {
2598 error ("edge %s->%s has no corresponding call_stmt",
2599 identifier_to_locale (cgraph_node_name (e->caller)),
2600 identifier_to_locale (cgraph_node_name (e->callee)));
2601 cgraph_debug_gimple_stmt (this_cfun, e->call_stmt);
2602 error_found = true;
2603 }
2604 e->aux = 0;
2605 }
2606 for (e = node->indirect_calls; e; e = e->next_callee)
2607 {
2608 if (!e->aux)
2609 {
2610 error ("an indirect edge from %s has no corresponding call_stmt",
2611 identifier_to_locale (cgraph_node_name (e->caller)));
2612 cgraph_debug_gimple_stmt (this_cfun, e->call_stmt);
2613 error_found = true;
2614 }
2615 e->aux = 0;
2616 }
2617 }
2618 if (error_found)
2619 {
2620 dump_cgraph_node (stderr, node);
2621 internal_error ("verify_cgraph_node failed");
2622 }
2623 timevar_pop (TV_CGRAPH_VERIFY);
2624}
2625
2626/* Verify whole cgraph structure. */
2627DEBUG_FUNCTION void
2628verify_cgraph (void)
2629{
2630 struct cgraph_node *node;
2631
2632 if (seen_error ())
2633 return;
2634
2635 FOR_EACH_FUNCTION (node)
2636 verify_cgraph_node (node);
2637}
48f4a6fa
JH
2638
2639/* Create external decl node for DECL.
2640 The difference i nbetween cgraph_get_create_node and
2641 cgraph_get_create_real_symbol_node is that cgraph_get_create_node
2642 may return inline clone, while cgraph_get_create_real_symbol_node
2643 will create a new node in this case.
2644 FIXME: This function should be removed once clones are put out of decl
2645 hash. */
2646
2647struct cgraph_node *
2648cgraph_get_create_real_symbol_node (tree decl)
2649{
2650 struct cgraph_node *first_clone = cgraph_get_node (decl);
2651 struct cgraph_node *node;
2652 /* create symbol table node. even if inline clone exists, we can not take
2653 it as a target of non-inlined call. */
2654 node = cgraph_get_node (decl);
2655 if (node && !node->global.inlined_to)
2656 return node;
2657
2658 node = cgraph_create_node (decl);
2659
2660 /* ok, we previously inlined the function, then removed the offline copy and
2661 now we want it back for external call. this can happen when devirtualizing
2662 while inlining function called once that happens after extern inlined and
2663 virtuals are already removed. in this case introduce the external node
2664 and make it available for call. */
2665 if (first_clone)
2666 {
2667 first_clone->clone_of = node;
2668 node->clones = first_clone;
2669 symtab_prevail_in_asm_name_hash ((symtab_node) node);
2670 symtab_insert_node_to_hashtable ((symtab_node) node);
2671 if (dump_file)
2672 fprintf (dump_file, "Introduced new external node "
2673 "(%s/%i) and turned into root of the clone tree.\n",
9de04252 2674 xstrdup (cgraph_node_name (node)), node->symbol.order);
48f4a6fa
JH
2675 }
2676 else if (dump_file)
2677 fprintf (dump_file, "Introduced new external node "
9de04252
MJ
2678 "(%s/%i).\n", xstrdup (cgraph_node_name (node)),
2679 node->symbol.order);
48f4a6fa
JH
2680 return node;
2681}
e70670cf
JH
2682
2683
2684/* Given NODE, walk the alias chain to return the function NODE is alias of.
2685 Walk through thunk, too.
2686 When AVAILABILITY is non-NULL, get minimal availability in the chain. */
2687
2688struct cgraph_node *
2689cgraph_function_node (struct cgraph_node *node, enum availability *availability)
2690{
2691 do
2692 {
2693 node = cgraph_function_or_thunk_node (node, availability);
2694 if (node->thunk.thunk_p)
2695 {
2696 node = node->callees->callee;
2697 if (availability)
2698 {
2699 enum availability a;
2700 a = cgraph_function_body_availability (node);
2701 if (a < *availability)
2702 *availability = a;
2703 }
2704 node = cgraph_function_or_thunk_node (node, availability);
2705 }
2706 } while (node && node->thunk.thunk_p);
2707 return node;
2708}
2709
a2e2a668
JH
2710/* When doing LTO, read NODE's body from disk if it is not already present. */
2711
2712bool
2713cgraph_get_body (struct cgraph_node *node)
2714{
2715 struct lto_file_decl_data *file_data;
2716 const char *data, *name;
2717 size_t len;
2718 tree decl = node->symbol.decl;
2719
2720 if (DECL_RESULT (decl))
2721 return false;
2722
2723 gcc_assert (in_lto_p);
2724
2725 file_data = node->symbol.lto_file_data;
2726 name = IDENTIFIER_POINTER (DECL_ASSEMBLER_NAME (decl));
2727
2728 /* We may have renamed the declaration, e.g., a static function. */
2729 name = lto_get_decl_name_mapping (file_data, name);
2730
2731 data = lto_get_section_data (file_data, LTO_section_function_body,
2732 name, &len);
2733 if (!data)
2734 {
2735 dump_cgraph_node (stderr, node);
2736 fatal_error ("%s: section %s is missing",
2737 file_data->file_name,
2738 name);
2739 }
2740
2741 gcc_assert (DECL_STRUCT_FUNCTION (decl) == NULL);
2742
2743 lto_input_function_body (file_data, decl, data);
2744 lto_stats.num_function_bodies++;
2745 lto_free_section_data (file_data, LTO_section_function_body, name,
2746 data, len);
2747 return true;
2748}
2749
988d1653 2750#include "gt-cgraph.h"