vbsl.c: New file.
[gcc.git] / gcc / cgraphbuild.c
1 /* Callgraph construction.
2 Copyright (C) 2003-2014 Free Software Foundation, Inc.
3 Contributed by Jan Hubicka
4
5 This file is part of GCC.
6
7 GCC is free software; you can redistribute it and/or modify it under
8 the terms of the GNU General Public License as published by the Free
9 Software Foundation; either version 3, or (at your option) any later
10 version.
11
12 GCC is distributed in the hope that it will be useful, but WITHOUT ANY
13 WARRANTY; without even the implied warranty of MERCHANTABILITY or
14 FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License
15 for more details.
16
17 You should have received a copy of the GNU General Public License
18 along with GCC; see the file COPYING3. If not see
19 <http://www.gnu.org/licenses/>. */
20
21 #include "config.h"
22 #include "system.h"
23 #include "coretypes.h"
24 #include "tm.h"
25 #include "tree.h"
26 #include "basic-block.h"
27 #include "tree-ssa-alias.h"
28 #include "internal-fn.h"
29 #include "gimple-fold.h"
30 #include "gimple-expr.h"
31 #include "is-a.h"
32 #include "gimple.h"
33 #include "gimple-iterator.h"
34 #include "gimple-walk.h"
35 #include "langhooks.h"
36 #include "intl.h"
37 #include "tree-pass.h"
38 #include "ipa-utils.h"
39 #include "except.h"
40 #include "ipa-inline.h"
41
42 /* Context of record_reference. */
43 struct record_reference_ctx
44 {
45 bool only_vars;
46 class varpool_node *varpool_node;
47 };
48
49 /* Walk tree and record all calls and references to functions/variables.
50 Called via walk_tree: TP is pointer to tree to be examined.
51 When DATA is non-null, record references to callgraph.
52 */
53
54 static tree
55 record_reference (tree *tp, int *walk_subtrees, void *data)
56 {
57 tree t = *tp;
58 tree decl;
59 record_reference_ctx *ctx = (record_reference_ctx *)data;
60
61 t = canonicalize_constructor_val (t, NULL);
62 if (!t)
63 t = *tp;
64 else if (t != *tp)
65 *tp = t;
66
67 switch (TREE_CODE (t))
68 {
69 case VAR_DECL:
70 case FUNCTION_DECL:
71 gcc_unreachable ();
72 break;
73
74 case FDESC_EXPR:
75 case ADDR_EXPR:
76 /* Record dereferences to the functions. This makes the
77 functions reachable unconditionally. */
78 decl = get_base_var (*tp);
79 if (TREE_CODE (decl) == FUNCTION_DECL)
80 {
81 cgraph_node *node = cgraph_node::get_create (decl);
82 if (!ctx->only_vars)
83 node->mark_address_taken ();
84 ctx->varpool_node->create_reference (node, IPA_REF_ADDR);
85 }
86
87 if (TREE_CODE (decl) == VAR_DECL)
88 {
89 varpool_node *vnode = varpool_node::get_create (decl);
90 ctx->varpool_node->create_reference (vnode, IPA_REF_ADDR);
91 }
92 *walk_subtrees = 0;
93 break;
94
95 default:
96 /* Save some cycles by not walking types and declaration as we
97 won't find anything useful there anyway. */
98 if (IS_TYPE_OR_DECL_P (*tp))
99 {
100 *walk_subtrees = 0;
101 break;
102 }
103 break;
104 }
105
106 return NULL_TREE;
107 }
108
109 /* Record references to typeinfos in the type list LIST. */
110
111 static void
112 record_type_list (cgraph_node *node, tree list)
113 {
114 for (; list; list = TREE_CHAIN (list))
115 {
116 tree type = TREE_VALUE (list);
117
118 if (TYPE_P (type))
119 type = lookup_type_for_runtime (type);
120 STRIP_NOPS (type);
121 if (TREE_CODE (type) == ADDR_EXPR)
122 {
123 type = TREE_OPERAND (type, 0);
124 if (TREE_CODE (type) == VAR_DECL)
125 {
126 varpool_node *vnode = varpool_node::get_create (type);
127 node->create_reference (vnode, IPA_REF_ADDR);
128 }
129 }
130 }
131 }
132
133 /* Record all references we will introduce by producing EH tables
134 for NODE. */
135
136 static void
137 record_eh_tables (cgraph_node *node, function *fun)
138 {
139 eh_region i;
140
141 if (DECL_FUNCTION_PERSONALITY (node->decl))
142 {
143 tree per_decl = DECL_FUNCTION_PERSONALITY (node->decl);
144 cgraph_node *per_node = cgraph_node::get_create (per_decl);
145
146 node->create_reference (per_node, IPA_REF_ADDR);
147 per_node->mark_address_taken ();
148 }
149
150 i = fun->eh->region_tree;
151 if (!i)
152 return;
153
154 while (1)
155 {
156 switch (i->type)
157 {
158 case ERT_CLEANUP:
159 case ERT_MUST_NOT_THROW:
160 break;
161
162 case ERT_TRY:
163 {
164 eh_catch c;
165 for (c = i->u.eh_try.first_catch; c; c = c->next_catch)
166 record_type_list (node, c->type_list);
167 }
168 break;
169
170 case ERT_ALLOWED_EXCEPTIONS:
171 record_type_list (node, i->u.allowed.type_list);
172 break;
173 }
174 /* If there are sub-regions, process them. */
175 if (i->inner)
176 i = i->inner;
177 /* If there are peers, process them. */
178 else if (i->next_peer)
179 i = i->next_peer;
180 /* Otherwise, step back up the tree to the next peer. */
181 else
182 {
183 do
184 {
185 i = i->outer;
186 if (i == NULL)
187 return;
188 }
189 while (i->next_peer == NULL);
190 i = i->next_peer;
191 }
192 }
193 }
194
195 /* Computes the frequency of the call statement so that it can be stored in
196 cgraph_edge. BB is the basic block of the call statement. */
197 int
198 compute_call_stmt_bb_frequency (tree decl, basic_block bb)
199 {
200 int entry_freq = ENTRY_BLOCK_PTR_FOR_FN
201 (DECL_STRUCT_FUNCTION (decl))->frequency;
202 int freq = bb->frequency;
203
204 if (profile_status_for_fn (DECL_STRUCT_FUNCTION (decl)) == PROFILE_ABSENT)
205 return CGRAPH_FREQ_BASE;
206
207 if (!entry_freq)
208 entry_freq = 1, freq++;
209
210 freq = freq * CGRAPH_FREQ_BASE / entry_freq;
211 if (freq > CGRAPH_FREQ_MAX)
212 freq = CGRAPH_FREQ_MAX;
213
214 return freq;
215 }
216
217 /* Mark address taken in STMT. */
218
219 static bool
220 mark_address (gimple stmt, tree addr, tree, void *data)
221 {
222 addr = get_base_address (addr);
223 if (TREE_CODE (addr) == FUNCTION_DECL)
224 {
225 cgraph_node *node = cgraph_node::get_create (addr);
226 node->mark_address_taken ();
227 ((symtab_node *)data)->create_reference (node, IPA_REF_ADDR, stmt);
228 }
229 else if (addr && TREE_CODE (addr) == VAR_DECL
230 && (TREE_STATIC (addr) || DECL_EXTERNAL (addr)))
231 {
232 varpool_node *vnode = varpool_node::get_create (addr);
233
234 ((symtab_node *)data)->create_reference (vnode, IPA_REF_ADDR, stmt);
235 }
236
237 return false;
238 }
239
240 /* Mark load of T. */
241
242 static bool
243 mark_load (gimple stmt, tree t, tree, void *data)
244 {
245 t = get_base_address (t);
246 if (t && TREE_CODE (t) == FUNCTION_DECL)
247 {
248 /* ??? This can happen on platforms with descriptors when these are
249 directly manipulated in the code. Pretend that it's an address. */
250 cgraph_node *node = cgraph_node::get_create (t);
251 node->mark_address_taken ();
252 ((symtab_node *)data)->create_reference (node, IPA_REF_ADDR, stmt);
253 }
254 else if (t && TREE_CODE (t) == VAR_DECL
255 && (TREE_STATIC (t) || DECL_EXTERNAL (t)))
256 {
257 varpool_node *vnode = varpool_node::get_create (t);
258
259 ((symtab_node *)data)->create_reference (vnode, IPA_REF_LOAD, stmt);
260 }
261 return false;
262 }
263
264 /* Mark store of T. */
265
266 static bool
267 mark_store (gimple stmt, tree t, tree, void *data)
268 {
269 t = get_base_address (t);
270 if (t && TREE_CODE (t) == VAR_DECL
271 && (TREE_STATIC (t) || DECL_EXTERNAL (t)))
272 {
273 varpool_node *vnode = varpool_node::get_create (t);
274
275 ((symtab_node *)data)->create_reference (vnode, IPA_REF_STORE, stmt);
276 }
277 return false;
278 }
279
280 /* Record all references from cgraph_node that are taken in statement STMT. */
281
282 void
283 cgraph_node::record_stmt_references (gimple stmt)
284 {
285 walk_stmt_load_store_addr_ops (stmt, this, mark_load, mark_store,
286 mark_address);
287 }
288
289 /* Create cgraph edges for function calls.
290 Also look for functions and variables having addresses taken. */
291
292 namespace {
293
294 const pass_data pass_data_build_cgraph_edges =
295 {
296 GIMPLE_PASS, /* type */
297 "*build_cgraph_edges", /* name */
298 OPTGROUP_NONE, /* optinfo_flags */
299 TV_NONE, /* tv_id */
300 PROP_cfg, /* properties_required */
301 0, /* properties_provided */
302 0, /* properties_destroyed */
303 0, /* todo_flags_start */
304 0, /* todo_flags_finish */
305 };
306
307 class pass_build_cgraph_edges : public gimple_opt_pass
308 {
309 public:
310 pass_build_cgraph_edges (gcc::context *ctxt)
311 : gimple_opt_pass (pass_data_build_cgraph_edges, ctxt)
312 {}
313
314 /* opt_pass methods: */
315 virtual unsigned int execute (function *);
316
317 }; // class pass_build_cgraph_edges
318
319 unsigned int
320 pass_build_cgraph_edges::execute (function *fun)
321 {
322 basic_block bb;
323 cgraph_node *node = cgraph_node::get (current_function_decl);
324 gimple_stmt_iterator gsi;
325 tree decl;
326 unsigned ix;
327
328 /* Create the callgraph edges and record the nodes referenced by the function.
329 body. */
330 FOR_EACH_BB_FN (bb, fun)
331 {
332 for (gsi = gsi_start_bb (bb); !gsi_end_p (gsi); gsi_next (&gsi))
333 {
334 gimple stmt = gsi_stmt (gsi);
335 tree decl;
336
337 if (is_gimple_debug (stmt))
338 continue;
339
340 if (is_gimple_call (stmt))
341 {
342 int freq = compute_call_stmt_bb_frequency (current_function_decl,
343 bb);
344 decl = gimple_call_fndecl (stmt);
345 if (decl)
346 node->create_edge (cgraph_node::get_create (decl), stmt, bb->count, freq);
347 else if (gimple_call_internal_p (stmt))
348 ;
349 else
350 node->create_indirect_edge (stmt,
351 gimple_call_flags (stmt),
352 bb->count, freq);
353 }
354 node->record_stmt_references (stmt);
355 if (gimple_code (stmt) == GIMPLE_OMP_PARALLEL
356 && gimple_omp_parallel_child_fn (stmt))
357 {
358 tree fn = gimple_omp_parallel_child_fn (stmt);
359 node->create_reference (cgraph_node::get_create (fn),
360 IPA_REF_ADDR, stmt);
361 }
362 if (gimple_code (stmt) == GIMPLE_OMP_TASK)
363 {
364 tree fn = gimple_omp_task_child_fn (stmt);
365 if (fn)
366 node->create_reference (cgraph_node::get_create (fn),
367 IPA_REF_ADDR, stmt);
368 fn = gimple_omp_task_copy_fn (stmt);
369 if (fn)
370 node->create_reference (cgraph_node::get_create (fn),
371 IPA_REF_ADDR, stmt);
372 }
373 }
374 for (gsi = gsi_start_phis (bb); !gsi_end_p (gsi); gsi_next (&gsi))
375 node->record_stmt_references (gsi_stmt (gsi));
376 }
377
378 /* Look for initializers of constant variables and private statics. */
379 FOR_EACH_LOCAL_DECL (fun, ix, decl)
380 if (TREE_CODE (decl) == VAR_DECL
381 && (TREE_STATIC (decl) && !DECL_EXTERNAL (decl))
382 && !DECL_HAS_VALUE_EXPR_P (decl))
383 varpool_node::finalize_decl (decl);
384 record_eh_tables (node, fun);
385
386 return 0;
387 }
388
389 } // anon namespace
390
391 gimple_opt_pass *
392 make_pass_build_cgraph_edges (gcc::context *ctxt)
393 {
394 return new pass_build_cgraph_edges (ctxt);
395 }
396
397 /* Record references to functions and other variables present in the
398 initial value of DECL, a variable.
399 When ONLY_VARS is true, we mark needed only variables, not functions. */
400
401 void
402 record_references_in_initializer (tree decl, bool only_vars)
403 {
404 varpool_node *node = varpool_node::get_create (decl);
405 hash_set<tree> visited_nodes;
406 record_reference_ctx ctx = {false, NULL};
407
408 ctx.varpool_node = node;
409 ctx.only_vars = only_vars;
410 walk_tree (&DECL_INITIAL (decl), record_reference,
411 &ctx, &visited_nodes);
412 }
413
414 /* Rebuild cgraph edges for current function node. This needs to be run after
415 passes that don't update the cgraph. */
416
417 unsigned int
418 cgraph_edge::rebuild_edges (void)
419 {
420 basic_block bb;
421 cgraph_node *node = cgraph_node::get (current_function_decl);
422 gimple_stmt_iterator gsi;
423
424 node->remove_callees ();
425 node->remove_all_references ();
426
427 node->count = ENTRY_BLOCK_PTR_FOR_FN (cfun)->count;
428
429 FOR_EACH_BB_FN (bb, cfun)
430 {
431 for (gsi = gsi_start_bb (bb); !gsi_end_p (gsi); gsi_next (&gsi))
432 {
433 gimple stmt = gsi_stmt (gsi);
434 tree decl;
435
436 if (is_gimple_call (stmt))
437 {
438 int freq = compute_call_stmt_bb_frequency (current_function_decl,
439 bb);
440 decl = gimple_call_fndecl (stmt);
441 if (decl)
442 node->create_edge (cgraph_node::get_create (decl), stmt,
443 bb->count, freq);
444 else if (gimple_call_internal_p (stmt))
445 ;
446 else
447 node->create_indirect_edge (stmt,
448 gimple_call_flags (stmt),
449 bb->count, freq);
450 }
451 node->record_stmt_references (stmt);
452 }
453 for (gsi = gsi_start_phis (bb); !gsi_end_p (gsi); gsi_next (&gsi))
454 node->record_stmt_references (gsi_stmt (gsi));
455 }
456 record_eh_tables (node, cfun);
457 gcc_assert (!node->global.inlined_to);
458
459 return 0;
460 }
461
462 /* Rebuild cgraph references for current function node. This needs to be run
463 after passes that don't update the cgraph. */
464
465 void
466 cgraph_edge::rebuild_references (void)
467 {
468 basic_block bb;
469 cgraph_node *node = cgraph_node::get (current_function_decl);
470 gimple_stmt_iterator gsi;
471 ipa_ref *ref = NULL;
472 int i;
473
474 /* Keep speculative references for further cgraph edge expansion. */
475 for (i = 0; node->iterate_reference (i, ref);)
476 if (!ref->speculative)
477 ref->remove_reference ();
478 else
479 i++;
480
481 node->count = ENTRY_BLOCK_PTR_FOR_FN (cfun)->count;
482
483 FOR_EACH_BB_FN (bb, cfun)
484 {
485 for (gsi = gsi_start_bb (bb); !gsi_end_p (gsi); gsi_next (&gsi))
486 node->record_stmt_references (gsi_stmt (gsi));
487 for (gsi = gsi_start_phis (bb); !gsi_end_p (gsi); gsi_next (&gsi))
488 node->record_stmt_references (gsi_stmt (gsi));
489 }
490 record_eh_tables (node, cfun);
491 }
492
493 namespace {
494
495 const pass_data pass_data_rebuild_cgraph_edges =
496 {
497 GIMPLE_PASS, /* type */
498 "*rebuild_cgraph_edges", /* name */
499 OPTGROUP_NONE, /* optinfo_flags */
500 TV_CGRAPH, /* tv_id */
501 PROP_cfg, /* properties_required */
502 0, /* properties_provided */
503 0, /* properties_destroyed */
504 0, /* todo_flags_start */
505 0, /* todo_flags_finish */
506 };
507
508 class pass_rebuild_cgraph_edges : public gimple_opt_pass
509 {
510 public:
511 pass_rebuild_cgraph_edges (gcc::context *ctxt)
512 : gimple_opt_pass (pass_data_rebuild_cgraph_edges, ctxt)
513 {}
514
515 /* opt_pass methods: */
516 opt_pass * clone () { return new pass_rebuild_cgraph_edges (m_ctxt); }
517 virtual unsigned int execute (function *)
518 {
519 return cgraph_edge::rebuild_edges ();
520 }
521
522 }; // class pass_rebuild_cgraph_edges
523
524 } // anon namespace
525
526 gimple_opt_pass *
527 make_pass_rebuild_cgraph_edges (gcc::context *ctxt)
528 {
529 return new pass_rebuild_cgraph_edges (ctxt);
530 }
531
532
533 namespace {
534
535 const pass_data pass_data_remove_cgraph_callee_edges =
536 {
537 GIMPLE_PASS, /* type */
538 "*remove_cgraph_callee_edges", /* name */
539 OPTGROUP_NONE, /* optinfo_flags */
540 TV_NONE, /* tv_id */
541 0, /* properties_required */
542 0, /* properties_provided */
543 0, /* properties_destroyed */
544 0, /* todo_flags_start */
545 0, /* todo_flags_finish */
546 };
547
548 class pass_remove_cgraph_callee_edges : public gimple_opt_pass
549 {
550 public:
551 pass_remove_cgraph_callee_edges (gcc::context *ctxt)
552 : gimple_opt_pass (pass_data_remove_cgraph_callee_edges, ctxt)
553 {}
554
555 /* opt_pass methods: */
556 opt_pass * clone () {
557 return new pass_remove_cgraph_callee_edges (m_ctxt);
558 }
559 virtual unsigned int execute (function *);
560
561 }; // class pass_remove_cgraph_callee_edges
562
563 unsigned int
564 pass_remove_cgraph_callee_edges::execute (function *)
565 {
566 cgraph_node *node = cgraph_node::get (current_function_decl);
567 node->remove_callees ();
568 node->remove_all_references ();
569 return 0;
570 }
571
572 } // anon namespace
573
574 gimple_opt_pass *
575 make_pass_remove_cgraph_callee_edges (gcc::context *ctxt)
576 {
577 return new pass_remove_cgraph_callee_edges (ctxt);
578 }