Daily bump.
[gcc.git] / gcc / passes.c
1 /* Top level of GCC compilers (cc1, cc1plus, etc.)
2 Copyright (C) 1987, 1988, 1989, 1992, 1993, 1994, 1995, 1996, 1997, 1998,
3 1999, 2000, 2001, 2002, 2003, 2004, 2005, 2006, 2007, 2008, 2009, 2010,
4 2011, 2012 Free Software Foundation, Inc.
5
6 This file is part of GCC.
7
8 GCC is free software; you can redistribute it and/or modify it under
9 the terms of the GNU General Public License as published by the Free
10 Software Foundation; either version 3, or (at your option) any later
11 version.
12
13 GCC is distributed in the hope that it will be useful, but WITHOUT ANY
14 WARRANTY; without even the implied warranty of MERCHANTABILITY or
15 FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License
16 for more details.
17
18 You should have received a copy of the GNU General Public License
19 along with GCC; see the file COPYING3. If not see
20 <http://www.gnu.org/licenses/>. */
21
22 /* This is the top level of cc1/c++.
23 It parses command args, opens files, invokes the various passes
24 in the proper order, and counts the time used by each.
25 Error messages and low-level interface to malloc also handled here. */
26
27 #include "config.h"
28 #include "system.h"
29 #include "coretypes.h"
30 #include "tm.h"
31 #include "line-map.h"
32 #include "input.h"
33 #include "tree.h"
34 #include "rtl.h"
35 #include "tm_p.h"
36 #include "flags.h"
37 #include "insn-attr.h"
38 #include "insn-config.h"
39 #include "insn-flags.h"
40 #include "hard-reg-set.h"
41 #include "recog.h"
42 #include "output.h"
43 #include "except.h"
44 #include "function.h"
45 #include "toplev.h"
46 #include "expr.h"
47 #include "basic-block.h"
48 #include "intl.h"
49 #include "ggc.h"
50 #include "graph.h"
51 #include "regs.h"
52 #include "diagnostic-core.h"
53 #include "params.h"
54 #include "reload.h"
55 #include "debug.h"
56 #include "target.h"
57 #include "langhooks.h"
58 #include "cfgloop.h"
59 #include "hosthooks.h"
60 #include "cgraph.h"
61 #include "opts.h"
62 #include "coverage.h"
63 #include "value-prof.h"
64 #include "tree-inline.h"
65 #include "tree-flow.h"
66 #include "tree-pass.h"
67 #include "tree-dump.h"
68 #include "df.h"
69 #include "predict.h"
70 #include "lto-streamer.h"
71 #include "plugin.h"
72 #include "ipa-utils.h"
73 #include "tree-pretty-print.h" /* for dump_function_header */
74
75 /* This is used for debugging. It allows the current pass to printed
76 from anywhere in compilation.
77 The variable current_pass is also used for statistics and plugins. */
78 struct opt_pass *current_pass;
79
80 static void register_pass_name (struct opt_pass *, const char *);
81
82 /* Call from anywhere to find out what pass this is. Useful for
83 printing out debugging information deep inside an service
84 routine. */
85 void
86 print_current_pass (FILE *file)
87 {
88 if (current_pass)
89 fprintf (file, "current pass = %s (%d)\n",
90 current_pass->name, current_pass->static_pass_number);
91 else
92 fprintf (file, "no current pass.\n");
93 }
94
95
96 /* Call from the debugger to get the current pass name. */
97 DEBUG_FUNCTION void
98 debug_pass (void)
99 {
100 print_current_pass (stderr);
101 }
102
103
104
105 /* Global variables used to communicate with passes. */
106 bool in_gimple_form;
107 bool first_pass_instance;
108
109
110 /* This is called from various places for FUNCTION_DECL, VAR_DECL,
111 and TYPE_DECL nodes.
112
113 This does nothing for local (non-static) variables, unless the
114 variable is a register variable with DECL_ASSEMBLER_NAME set. In
115 that case, or if the variable is not an automatic, it sets up the
116 RTL and outputs any assembler code (label definition, storage
117 allocation and initialization).
118
119 DECL is the declaration. TOP_LEVEL is nonzero
120 if this declaration is not within a function. */
121
122 void
123 rest_of_decl_compilation (tree decl,
124 int top_level,
125 int at_end)
126 {
127 /* We deferred calling assemble_alias so that we could collect
128 other attributes such as visibility. Emit the alias now. */
129 if (!in_lto_p)
130 {
131 tree alias;
132 alias = lookup_attribute ("alias", DECL_ATTRIBUTES (decl));
133 if (alias)
134 {
135 alias = TREE_VALUE (TREE_VALUE (alias));
136 alias = get_identifier (TREE_STRING_POINTER (alias));
137 /* A quirk of the initial implementation of aliases required that the
138 user add "extern" to all of them. Which is silly, but now
139 historical. Do note that the symbol is in fact locally defined. */
140 if (!lookup_attribute ("weakref", DECL_ATTRIBUTES (decl)))
141 DECL_EXTERNAL (decl) = 0;
142 assemble_alias (decl, alias);
143 }
144 }
145
146 /* Can't defer this, because it needs to happen before any
147 later function definitions are processed. */
148 if (DECL_ASSEMBLER_NAME_SET_P (decl) && DECL_REGISTER (decl))
149 make_decl_rtl (decl);
150
151 /* Forward declarations for nested functions are not "external",
152 but we need to treat them as if they were. */
153 if (TREE_STATIC (decl) || DECL_EXTERNAL (decl)
154 || TREE_CODE (decl) == FUNCTION_DECL)
155 {
156 timevar_push (TV_VARCONST);
157
158 /* Don't output anything when a tentative file-scope definition
159 is seen. But at end of compilation, do output code for them.
160
161 We do output all variables and rely on
162 callgraph code to defer them except for forward declarations
163 (see gcc.c-torture/compile/920624-1.c) */
164 if ((at_end
165 || !DECL_DEFER_OUTPUT (decl)
166 || DECL_INITIAL (decl))
167 && (TREE_CODE (decl) != VAR_DECL || !DECL_HAS_VALUE_EXPR_P (decl))
168 && !DECL_EXTERNAL (decl))
169 {
170 /* When reading LTO unit, we also read varpool, so do not
171 rebuild it. */
172 if (in_lto_p && !at_end)
173 ;
174 else if (TREE_CODE (decl) != FUNCTION_DECL)
175 varpool_finalize_decl (decl);
176 }
177
178 #ifdef ASM_FINISH_DECLARE_OBJECT
179 if (decl == last_assemble_variable_decl)
180 {
181 ASM_FINISH_DECLARE_OBJECT (asm_out_file, decl,
182 top_level, at_end);
183 }
184 #endif
185
186 timevar_pop (TV_VARCONST);
187 }
188 else if (TREE_CODE (decl) == TYPE_DECL
189 /* Like in rest_of_type_compilation, avoid confusing the debug
190 information machinery when there are errors. */
191 && !seen_error ())
192 {
193 timevar_push (TV_SYMOUT);
194 debug_hooks->type_decl (decl, !top_level);
195 timevar_pop (TV_SYMOUT);
196 }
197
198 /* Let cgraph know about the existence of variables. */
199 if (in_lto_p && !at_end)
200 ;
201 else if (TREE_CODE (decl) == VAR_DECL && !DECL_EXTERNAL (decl)
202 && TREE_STATIC (decl))
203 varpool_node_for_decl (decl);
204 }
205
206 /* Called after finishing a record, union or enumeral type. */
207
208 void
209 rest_of_type_compilation (tree type, int toplev)
210 {
211 /* Avoid confusing the debug information machinery when there are
212 errors. */
213 if (seen_error ())
214 return;
215
216 timevar_push (TV_SYMOUT);
217 debug_hooks->type_decl (TYPE_STUB_DECL (type), !toplev);
218 timevar_pop (TV_SYMOUT);
219 }
220
221 \f
222
223 void
224 finish_optimization_passes (void)
225 {
226 int i;
227 struct dump_file_info *dfi;
228 char *name;
229
230 timevar_push (TV_DUMP);
231 if (profile_arc_flag || flag_test_coverage || flag_branch_probabilities)
232 {
233 dump_start (pass_profile.pass.static_pass_number, NULL);
234 end_branch_prob ();
235 dump_finish (pass_profile.pass.static_pass_number);
236 }
237
238 if (optimize > 0)
239 {
240 dump_start (pass_profile.pass.static_pass_number, NULL);
241 print_combine_total_stats ();
242 dump_finish (pass_profile.pass.static_pass_number);
243 }
244
245 /* Do whatever is necessary to finish printing the graphs. */
246 for (i = TDI_end; (dfi = get_dump_file_info (i)) != NULL; ++i)
247 if (dump_initialized_p (i)
248 && (dfi->pflags & TDF_GRAPH) != 0
249 && (name = get_dump_file_name (i)) != NULL)
250 {
251 finish_graph_dump_file (name);
252 free (name);
253 }
254
255 timevar_pop (TV_DUMP);
256 }
257
258 static unsigned int
259 execute_all_early_local_passes (void)
260 {
261 /* Once this pass (and its sub-passes) are complete, all functions
262 will be in SSA form. Technically this state change is happening
263 a tad early, since the sub-passes have not yet run, but since
264 none of the sub-passes are IPA passes and do not create new
265 functions, this is ok. We're setting this value for the benefit
266 of IPA passes that follow. */
267 if (cgraph_state < CGRAPH_STATE_IPA_SSA)
268 cgraph_state = CGRAPH_STATE_IPA_SSA;
269 return 0;
270 }
271
272 /* Gate: execute, or not, all of the non-trivial optimizations. */
273
274 static bool
275 gate_all_early_local_passes (void)
276 {
277 /* Don't bother doing anything if the program has errors. */
278 return (!seen_error () && !in_lto_p);
279 }
280
281 struct simple_ipa_opt_pass pass_early_local_passes =
282 {
283 {
284 SIMPLE_IPA_PASS,
285 "early_local_cleanups", /* name */
286 OPTGROUP_NONE, /* optinfo_flags */
287 gate_all_early_local_passes, /* gate */
288 execute_all_early_local_passes, /* execute */
289 NULL, /* sub */
290 NULL, /* next */
291 0, /* static_pass_number */
292 TV_EARLY_LOCAL, /* tv_id */
293 0, /* properties_required */
294 0, /* properties_provided */
295 0, /* properties_destroyed */
296 0, /* todo_flags_start */
297 TODO_remove_functions /* todo_flags_finish */
298 }
299 };
300
301 /* Gate: execute, or not, all of the non-trivial optimizations. */
302
303 static bool
304 gate_all_early_optimizations (void)
305 {
306 return (optimize >= 1
307 /* Don't bother doing anything if the program has errors. */
308 && !seen_error ());
309 }
310
311 static struct gimple_opt_pass pass_all_early_optimizations =
312 {
313 {
314 GIMPLE_PASS,
315 "early_optimizations", /* name */
316 OPTGROUP_NONE, /* optinfo_flags */
317 gate_all_early_optimizations, /* gate */
318 NULL, /* execute */
319 NULL, /* sub */
320 NULL, /* next */
321 0, /* static_pass_number */
322 TV_NONE, /* tv_id */
323 0, /* properties_required */
324 0, /* properties_provided */
325 0, /* properties_destroyed */
326 0, /* todo_flags_start */
327 0 /* todo_flags_finish */
328 }
329 };
330
331 /* Gate: execute, or not, all of the non-trivial optimizations. */
332
333 static bool
334 gate_all_optimizations (void)
335 {
336 return optimize >= 1 && !optimize_debug;
337 }
338
339 static struct gimple_opt_pass pass_all_optimizations =
340 {
341 {
342 GIMPLE_PASS,
343 "*all_optimizations", /* name */
344 OPTGROUP_NONE, /* optinfo_flags */
345 gate_all_optimizations, /* gate */
346 NULL, /* execute */
347 NULL, /* sub */
348 NULL, /* next */
349 0, /* static_pass_number */
350 TV_OPTIMIZE, /* tv_id */
351 0, /* properties_required */
352 0, /* properties_provided */
353 0, /* properties_destroyed */
354 0, /* todo_flags_start */
355 0 /* todo_flags_finish */
356 }
357 };
358
359 /* Gate: execute, or not, all of the non-trivial optimizations. */
360
361 static bool
362 gate_all_optimizations_g (void)
363 {
364 return optimize >= 1 && optimize_debug;
365 }
366
367 static struct gimple_opt_pass pass_all_optimizations_g =
368 {
369 {
370 GIMPLE_PASS,
371 "*all_optimizations_g", /* name */
372 OPTGROUP_NONE, /* optinfo_flags */
373 gate_all_optimizations_g, /* gate */
374 NULL, /* execute */
375 NULL, /* sub */
376 NULL, /* next */
377 0, /* static_pass_number */
378 TV_OPTIMIZE, /* tv_id */
379 0, /* properties_required */
380 0, /* properties_provided */
381 0, /* properties_destroyed */
382 0, /* todo_flags_start */
383 0 /* todo_flags_finish */
384 }
385 };
386
387 static bool
388 gate_rest_of_compilation (void)
389 {
390 /* Early return if there were errors. We can run afoul of our
391 consistency checks, and there's not really much point in fixing them. */
392 return !(rtl_dump_and_exit || flag_syntax_only || seen_error ());
393 }
394
395 static struct rtl_opt_pass pass_rest_of_compilation =
396 {
397 {
398 RTL_PASS,
399 "*rest_of_compilation", /* name */
400 OPTGROUP_NONE, /* optinfo_flags */
401 gate_rest_of_compilation, /* gate */
402 NULL, /* execute */
403 NULL, /* sub */
404 NULL, /* next */
405 0, /* static_pass_number */
406 TV_REST_OF_COMPILATION, /* tv_id */
407 PROP_rtl, /* properties_required */
408 0, /* properties_provided */
409 0, /* properties_destroyed */
410 0, /* todo_flags_start */
411 TODO_ggc_collect /* todo_flags_finish */
412 }
413 };
414
415 static bool
416 gate_postreload (void)
417 {
418 return reload_completed;
419 }
420
421 static struct rtl_opt_pass pass_postreload =
422 {
423 {
424 RTL_PASS,
425 "*all-postreload", /* name */
426 OPTGROUP_NONE, /* optinfo_flags */
427 gate_postreload, /* gate */
428 NULL, /* execute */
429 NULL, /* sub */
430 NULL, /* next */
431 0, /* static_pass_number */
432 TV_POSTRELOAD, /* tv_id */
433 PROP_rtl, /* properties_required */
434 0, /* properties_provided */
435 0, /* properties_destroyed */
436 0, /* todo_flags_start */
437 TODO_ggc_collect | TODO_verify_rtl_sharing /* todo_flags_finish */
438 }
439 };
440
441
442
443 /* The root of the compilation pass tree, once constructed. */
444 struct opt_pass *all_passes, *all_small_ipa_passes, *all_lowering_passes,
445 *all_regular_ipa_passes, *all_late_ipa_passes, *all_lto_gen_passes;
446
447 /* This is used by plugins, and should also be used in register_pass. */
448 #define DEF_PASS_LIST(LIST) &LIST,
449 struct opt_pass **gcc_pass_lists[] = { GCC_PASS_LISTS NULL };
450 #undef DEF_PASS_LIST
451
452 /* A map from static pass id to optimization pass. */
453 struct opt_pass **passes_by_id;
454 int passes_by_id_size;
455
456 /* Set the static pass number of pass PASS to ID and record that
457 in the mapping from static pass number to pass. */
458
459 static void
460 set_pass_for_id (int id, struct opt_pass *pass)
461 {
462 pass->static_pass_number = id;
463 if (passes_by_id_size <= id)
464 {
465 passes_by_id = XRESIZEVEC (struct opt_pass *, passes_by_id, id + 1);
466 memset (passes_by_id + passes_by_id_size, 0,
467 (id + 1 - passes_by_id_size) * sizeof (void *));
468 passes_by_id_size = id + 1;
469 }
470 passes_by_id[id] = pass;
471 }
472
473 /* Return the pass with the static pass number ID. */
474
475 struct opt_pass *
476 get_pass_for_id (int id)
477 {
478 if (id >= passes_by_id_size)
479 return NULL;
480 return passes_by_id[id];
481 }
482
483 /* Iterate over the pass tree allocating dump file numbers. We want
484 to do this depth first, and independent of whether the pass is
485 enabled or not. */
486
487 void
488 register_one_dump_file (struct opt_pass *pass)
489 {
490 char *dot_name, *flag_name, *glob_name;
491 const char *name, *full_name, *prefix;
492 char num[10];
493 int flags, id;
494 int optgroup_flags = OPTGROUP_NONE;
495
496 /* See below in next_pass_1. */
497 num[0] = '\0';
498 if (pass->static_pass_number != -1)
499 sprintf (num, "%d", ((int) pass->static_pass_number < 0
500 ? 1 : pass->static_pass_number));
501
502 /* The name is both used to identify the pass for the purposes of plugins,
503 and to specify dump file name and option.
504 The latter two might want something short which is not quite unique; for
505 that reason, we may have a disambiguating prefix, followed by a space
506 to mark the start of the following dump file name / option string. */
507 name = strchr (pass->name, ' ');
508 name = name ? name + 1 : pass->name;
509 dot_name = concat (".", name, num, NULL);
510 if (pass->type == SIMPLE_IPA_PASS || pass->type == IPA_PASS)
511 {
512 prefix = "ipa-";
513 flags = TDF_IPA;
514 optgroup_flags |= OPTGROUP_IPA;
515 }
516 else if (pass->type == GIMPLE_PASS)
517 {
518 prefix = "tree-";
519 flags = TDF_TREE;
520 }
521 else
522 {
523 prefix = "rtl-";
524 flags = TDF_RTL;
525 }
526
527 flag_name = concat (prefix, name, num, NULL);
528 glob_name = concat (prefix, name, NULL);
529 optgroup_flags |= pass->optinfo_flags;
530 id = dump_register (dot_name, flag_name, glob_name, flags, optgroup_flags);
531 set_pass_for_id (id, pass);
532 full_name = concat (prefix, pass->name, num, NULL);
533 register_pass_name (pass, full_name);
534 free (CONST_CAST (char *, full_name));
535 }
536
537 /* Recursive worker function for register_dump_files. */
538
539 static int
540 register_dump_files_1 (struct opt_pass *pass, int properties)
541 {
542 do
543 {
544 int new_properties = (properties | pass->properties_provided)
545 & ~pass->properties_destroyed;
546
547 if (pass->name && pass->name[0] != '*')
548 register_one_dump_file (pass);
549
550 if (pass->sub)
551 new_properties = register_dump_files_1 (pass->sub, new_properties);
552
553 /* If we have a gate, combine the properties that we could have with
554 and without the pass being examined. */
555 if (pass->gate)
556 properties &= new_properties;
557 else
558 properties = new_properties;
559
560 pass = pass->next;
561 }
562 while (pass);
563
564 return properties;
565 }
566
567 /* Register the dump files for the pipeline starting at PASS.
568 PROPERTIES reflects the properties that are guaranteed to be available at
569 the beginning of the pipeline. */
570
571 static void
572 register_dump_files (struct opt_pass *pass,int properties)
573 {
574 pass->properties_required |= properties;
575 register_dump_files_1 (pass, properties);
576 }
577
578 struct pass_registry
579 {
580 const char* unique_name;
581 struct opt_pass *pass;
582 };
583
584 /* Pass registry hash function. */
585
586 static hashval_t
587 passr_hash (const void *p)
588 {
589 const struct pass_registry *const s = (const struct pass_registry *const) p;
590 return htab_hash_string (s->unique_name);
591 }
592
593 /* Hash equal function */
594
595 static int
596 passr_eq (const void *p1, const void *p2)
597 {
598 const struct pass_registry *const s1 = (const struct pass_registry *const) p1;
599 const struct pass_registry *const s2 = (const struct pass_registry *const) p2;
600
601 return !strcmp (s1->unique_name, s2->unique_name);
602 }
603
604 static htab_t name_to_pass_map = NULL;
605
606 /* Register PASS with NAME. */
607
608 static void
609 register_pass_name (struct opt_pass *pass, const char *name)
610 {
611 struct pass_registry **slot;
612 struct pass_registry pr;
613
614 if (!name_to_pass_map)
615 name_to_pass_map = htab_create (256, passr_hash, passr_eq, NULL);
616
617 pr.unique_name = name;
618 slot = (struct pass_registry **) htab_find_slot (name_to_pass_map, &pr, INSERT);
619 if (!*slot)
620 {
621 struct pass_registry *new_pr;
622
623 new_pr = XCNEW (struct pass_registry);
624 new_pr->unique_name = xstrdup (name);
625 new_pr->pass = pass;
626 *slot = new_pr;
627 }
628 else
629 return; /* Ignore plugin passes. */
630 }
631
632 /* Map from pass id to canonicalized pass name. */
633
634 typedef const char *char_ptr;
635 static vec<char_ptr> pass_tab = vNULL;
636
637 /* Callback function for traversing NAME_TO_PASS_MAP. */
638
639 static int
640 pass_traverse (void **slot, void *data ATTRIBUTE_UNUSED)
641 {
642 struct pass_registry **p = (struct pass_registry **)slot;
643 struct opt_pass *pass = (*p)->pass;
644
645 gcc_assert (pass->static_pass_number > 0);
646 gcc_assert (pass_tab.exists ());
647
648 pass_tab[pass->static_pass_number] = (*p)->unique_name;
649
650 return 1;
651 }
652
653 /* The function traverses NAME_TO_PASS_MAP and creates a pass info
654 table for dumping purpose. */
655
656 static void
657 create_pass_tab (void)
658 {
659 if (!flag_dump_passes)
660 return;
661
662 pass_tab.safe_grow_cleared (passes_by_id_size + 1);
663 htab_traverse (name_to_pass_map, pass_traverse, NULL);
664 }
665
666 static bool override_gate_status (struct opt_pass *, tree, bool);
667
668 /* Dump the instantiated name for PASS. IS_ON indicates if PASS
669 is turned on or not. */
670
671 static void
672 dump_one_pass (struct opt_pass *pass, int pass_indent)
673 {
674 int indent = 3 * pass_indent;
675 const char *pn;
676 bool is_on, is_really_on;
677
678 is_on = (pass->gate == NULL) ? true : pass->gate();
679 is_really_on = override_gate_status (pass, current_function_decl, is_on);
680
681 if (pass->static_pass_number <= 0)
682 pn = pass->name;
683 else
684 pn = pass_tab[pass->static_pass_number];
685
686 fprintf (stderr, "%*s%-40s%*s:%s%s\n", indent, " ", pn,
687 (15 - indent < 0 ? 0 : 15 - indent), " ",
688 is_on ? " ON" : " OFF",
689 ((!is_on) == (!is_really_on) ? ""
690 : (is_really_on ? " (FORCED_ON)" : " (FORCED_OFF)")));
691 }
692
693 /* Dump pass list PASS with indentation INDENT. */
694
695 static void
696 dump_pass_list (struct opt_pass *pass, int indent)
697 {
698 do
699 {
700 dump_one_pass (pass, indent);
701 if (pass->sub)
702 dump_pass_list (pass->sub, indent + 1);
703 pass = pass->next;
704 }
705 while (pass);
706 }
707
708 /* Dump all optimization passes. */
709
710 void
711 dump_passes (void)
712 {
713 struct cgraph_node *n, *node = NULL;
714
715 create_pass_tab();
716
717 FOR_EACH_DEFINED_FUNCTION (n)
718 if (DECL_STRUCT_FUNCTION (n->symbol.decl))
719 {
720 node = n;
721 break;
722 }
723
724 if (!node)
725 return;
726
727 push_cfun (DECL_STRUCT_FUNCTION (node->symbol.decl));
728
729 dump_pass_list (all_lowering_passes, 1);
730 dump_pass_list (all_small_ipa_passes, 1);
731 dump_pass_list (all_regular_ipa_passes, 1);
732 dump_pass_list (all_lto_gen_passes, 1);
733 dump_pass_list (all_late_ipa_passes, 1);
734 dump_pass_list (all_passes, 1);
735
736 pop_cfun ();
737 }
738
739
740 /* Returns the pass with NAME. */
741
742 static struct opt_pass *
743 get_pass_by_name (const char *name)
744 {
745 struct pass_registry **slot, pr;
746
747 pr.unique_name = name;
748 slot = (struct pass_registry **) htab_find_slot (name_to_pass_map,
749 &pr, NO_INSERT);
750
751 if (!slot || !*slot)
752 return NULL;
753
754 return (*slot)->pass;
755 }
756
757
758 /* Range [start, last]. */
759
760 struct uid_range
761 {
762 unsigned int start;
763 unsigned int last;
764 const char *assem_name;
765 struct uid_range *next;
766 };
767
768 typedef struct uid_range *uid_range_p;
769
770
771 static vec<uid_range_p>
772 enabled_pass_uid_range_tab = vNULL;
773 static vec<uid_range_p>
774 disabled_pass_uid_range_tab = vNULL;
775
776
777 /* Parse option string for -fdisable- and -fenable-
778 The syntax of the options:
779
780 -fenable-<pass_name>
781 -fdisable-<pass_name>
782
783 -fenable-<pass_name>=s1:e1,s2:e2,...
784 -fdisable-<pass_name>=s1:e1,s2:e2,...
785 */
786
787 static void
788 enable_disable_pass (const char *arg, bool is_enable)
789 {
790 struct opt_pass *pass;
791 char *range_str, *phase_name;
792 char *argstr = xstrdup (arg);
793 vec<uid_range_p> *tab = 0;
794
795 range_str = strchr (argstr,'=');
796 if (range_str)
797 {
798 *range_str = '\0';
799 range_str++;
800 }
801
802 phase_name = argstr;
803 if (!*phase_name)
804 {
805 if (is_enable)
806 error ("unrecognized option -fenable");
807 else
808 error ("unrecognized option -fdisable");
809 free (argstr);
810 return;
811 }
812 pass = get_pass_by_name (phase_name);
813 if (!pass || pass->static_pass_number == -1)
814 {
815 if (is_enable)
816 error ("unknown pass %s specified in -fenable", phase_name);
817 else
818 error ("unknown pass %s specified in -fdisable", phase_name);
819 free (argstr);
820 return;
821 }
822
823 if (is_enable)
824 tab = &enabled_pass_uid_range_tab;
825 else
826 tab = &disabled_pass_uid_range_tab;
827
828 if ((unsigned) pass->static_pass_number >= tab->length ())
829 tab->safe_grow_cleared (pass->static_pass_number + 1);
830
831 if (!range_str)
832 {
833 uid_range_p slot;
834 uid_range_p new_range = XCNEW (struct uid_range);
835
836 new_range->start = 0;
837 new_range->last = (unsigned)-1;
838
839 slot = (*tab)[pass->static_pass_number];
840 new_range->next = slot;
841 (*tab)[pass->static_pass_number] = new_range;
842 if (is_enable)
843 inform (UNKNOWN_LOCATION, "enable pass %s for functions in the range "
844 "of [%u, %u]", phase_name, new_range->start, new_range->last);
845 else
846 inform (UNKNOWN_LOCATION, "disable pass %s for functions in the range "
847 "of [%u, %u]", phase_name, new_range->start, new_range->last);
848 }
849 else
850 {
851 char *next_range = NULL;
852 char *one_range = range_str;
853 char *end_val = NULL;
854
855 do
856 {
857 uid_range_p slot;
858 uid_range_p new_range;
859 char *invalid = NULL;
860 long start;
861 char *func_name = NULL;
862
863 next_range = strchr (one_range, ',');
864 if (next_range)
865 {
866 *next_range = '\0';
867 next_range++;
868 }
869
870 end_val = strchr (one_range, ':');
871 if (end_val)
872 {
873 *end_val = '\0';
874 end_val++;
875 }
876 start = strtol (one_range, &invalid, 10);
877 if (*invalid || start < 0)
878 {
879 if (end_val || (one_range[0] >= '0'
880 && one_range[0] <= '9'))
881 {
882 error ("Invalid range %s in option %s",
883 one_range,
884 is_enable ? "-fenable" : "-fdisable");
885 free (argstr);
886 return;
887 }
888 func_name = one_range;
889 }
890 if (!end_val)
891 {
892 new_range = XCNEW (struct uid_range);
893 if (!func_name)
894 {
895 new_range->start = (unsigned) start;
896 new_range->last = (unsigned) start;
897 }
898 else
899 {
900 new_range->start = (unsigned) -1;
901 new_range->last = (unsigned) -1;
902 new_range->assem_name = xstrdup (func_name);
903 }
904 }
905 else
906 {
907 long last = strtol (end_val, &invalid, 10);
908 if (*invalid || last < start)
909 {
910 error ("Invalid range %s in option %s",
911 end_val,
912 is_enable ? "-fenable" : "-fdisable");
913 free (argstr);
914 return;
915 }
916 new_range = XCNEW (struct uid_range);
917 new_range->start = (unsigned) start;
918 new_range->last = (unsigned) last;
919 }
920
921 slot = (*tab)[pass->static_pass_number];
922 new_range->next = slot;
923 (*tab)[pass->static_pass_number] = new_range;
924 if (is_enable)
925 {
926 if (new_range->assem_name)
927 inform (UNKNOWN_LOCATION,
928 "enable pass %s for function %s",
929 phase_name, new_range->assem_name);
930 else
931 inform (UNKNOWN_LOCATION,
932 "enable pass %s for functions in the range of [%u, %u]",
933 phase_name, new_range->start, new_range->last);
934 }
935 else
936 {
937 if (new_range->assem_name)
938 inform (UNKNOWN_LOCATION,
939 "disable pass %s for function %s",
940 phase_name, new_range->assem_name);
941 else
942 inform (UNKNOWN_LOCATION,
943 "disable pass %s for functions in the range of [%u, %u]",
944 phase_name, new_range->start, new_range->last);
945 }
946
947 one_range = next_range;
948 } while (next_range);
949 }
950
951 free (argstr);
952 }
953
954 /* Enable pass specified by ARG. */
955
956 void
957 enable_pass (const char *arg)
958 {
959 enable_disable_pass (arg, true);
960 }
961
962 /* Disable pass specified by ARG. */
963
964 void
965 disable_pass (const char *arg)
966 {
967 enable_disable_pass (arg, false);
968 }
969
970 /* Returns true if PASS is explicitly enabled/disabled for FUNC. */
971
972 static bool
973 is_pass_explicitly_enabled_or_disabled (struct opt_pass *pass,
974 tree func,
975 vec<uid_range_p> tab)
976 {
977 uid_range_p slot, range;
978 int cgraph_uid;
979 const char *aname = NULL;
980
981 if (!tab.exists ()
982 || (unsigned) pass->static_pass_number >= tab.length ()
983 || pass->static_pass_number == -1)
984 return false;
985
986 slot = tab[pass->static_pass_number];
987 if (!slot)
988 return false;
989
990 cgraph_uid = func ? cgraph_get_node (func)->uid : 0;
991 if (func && DECL_ASSEMBLER_NAME_SET_P (func))
992 aname = IDENTIFIER_POINTER (DECL_ASSEMBLER_NAME (func));
993
994 range = slot;
995 while (range)
996 {
997 if ((unsigned) cgraph_uid >= range->start
998 && (unsigned) cgraph_uid <= range->last)
999 return true;
1000 if (range->assem_name && aname
1001 && !strcmp (range->assem_name, aname))
1002 return true;
1003 range = range->next;
1004 }
1005
1006 return false;
1007 }
1008
1009 /* Look at the static_pass_number and duplicate the pass
1010 if it is already added to a list. */
1011
1012 static struct opt_pass *
1013 make_pass_instance (struct opt_pass *pass, bool track_duplicates)
1014 {
1015 /* A nonzero static_pass_number indicates that the
1016 pass is already in the list. */
1017 if (pass->static_pass_number)
1018 {
1019 struct opt_pass *new_pass;
1020
1021 if (pass->type == GIMPLE_PASS
1022 || pass->type == RTL_PASS
1023 || pass->type == SIMPLE_IPA_PASS)
1024 {
1025 new_pass = XNEW (struct opt_pass);
1026 memcpy (new_pass, pass, sizeof (struct opt_pass));
1027 }
1028 else if (pass->type == IPA_PASS)
1029 {
1030 new_pass = (struct opt_pass *)XNEW (struct ipa_opt_pass_d);
1031 memcpy (new_pass, pass, sizeof (struct ipa_opt_pass_d));
1032 }
1033 else
1034 gcc_unreachable ();
1035
1036 new_pass->next = NULL;
1037
1038 new_pass->todo_flags_start &= ~TODO_mark_first_instance;
1039
1040 /* Indicate to register_dump_files that this pass has duplicates,
1041 and so it should rename the dump file. The first instance will
1042 be -1, and be number of duplicates = -static_pass_number - 1.
1043 Subsequent instances will be > 0 and just the duplicate number. */
1044 if ((pass->name && pass->name[0] != '*') || track_duplicates)
1045 {
1046 pass->static_pass_number -= 1;
1047 new_pass->static_pass_number = -pass->static_pass_number;
1048 }
1049 return new_pass;
1050 }
1051 else
1052 {
1053 pass->todo_flags_start |= TODO_mark_first_instance;
1054 pass->static_pass_number = -1;
1055
1056 invoke_plugin_callbacks (PLUGIN_NEW_PASS, pass);
1057 }
1058 return pass;
1059 }
1060
1061 /* Add a pass to the pass list. Duplicate the pass if it's already
1062 in the list. */
1063
1064 static struct opt_pass **
1065 next_pass_1 (struct opt_pass **list, struct opt_pass *pass)
1066 {
1067 /* Every pass should have a name so that plugins can refer to them. */
1068 gcc_assert (pass->name != NULL);
1069
1070 *list = make_pass_instance (pass, false);
1071
1072 return &(*list)->next;
1073 }
1074
1075 /* List node for an inserted pass instance. We need to keep track of all
1076 the newly-added pass instances (with 'added_pass_nodes' defined below)
1077 so that we can register their dump files after pass-positioning is finished.
1078 Registering dumping files needs to be post-processed or the
1079 static_pass_number of the opt_pass object would be modified and mess up
1080 the dump file names of future pass instances to be added. */
1081
1082 struct pass_list_node
1083 {
1084 struct opt_pass *pass;
1085 struct pass_list_node *next;
1086 };
1087
1088 static struct pass_list_node *added_pass_nodes = NULL;
1089 static struct pass_list_node *prev_added_pass_node;
1090
1091 /* Insert the pass at the proper position. Return true if the pass
1092 is successfully added.
1093
1094 NEW_PASS_INFO - new pass to be inserted
1095 PASS_LIST - root of the pass list to insert the new pass to */
1096
1097 static bool
1098 position_pass (struct register_pass_info *new_pass_info,
1099 struct opt_pass **pass_list)
1100 {
1101 struct opt_pass *pass = *pass_list, *prev_pass = NULL;
1102 bool success = false;
1103
1104 for ( ; pass; prev_pass = pass, pass = pass->next)
1105 {
1106 /* Check if the current pass is of the same type as the new pass and
1107 matches the name and the instance number of the reference pass. */
1108 if (pass->type == new_pass_info->pass->type
1109 && pass->name
1110 && !strcmp (pass->name, new_pass_info->reference_pass_name)
1111 && ((new_pass_info->ref_pass_instance_number == 0)
1112 || (new_pass_info->ref_pass_instance_number ==
1113 pass->static_pass_number)
1114 || (new_pass_info->ref_pass_instance_number == 1
1115 && pass->todo_flags_start & TODO_mark_first_instance)))
1116 {
1117 struct opt_pass *new_pass;
1118 struct pass_list_node *new_pass_node;
1119
1120 new_pass = make_pass_instance (new_pass_info->pass, true);
1121
1122 /* Insert the new pass instance based on the positioning op. */
1123 switch (new_pass_info->pos_op)
1124 {
1125 case PASS_POS_INSERT_AFTER:
1126 new_pass->next = pass->next;
1127 pass->next = new_pass;
1128
1129 /* Skip newly inserted pass to avoid repeated
1130 insertions in the case where the new pass and the
1131 existing one have the same name. */
1132 pass = new_pass;
1133 break;
1134 case PASS_POS_INSERT_BEFORE:
1135 new_pass->next = pass;
1136 if (prev_pass)
1137 prev_pass->next = new_pass;
1138 else
1139 *pass_list = new_pass;
1140 break;
1141 case PASS_POS_REPLACE:
1142 new_pass->next = pass->next;
1143 if (prev_pass)
1144 prev_pass->next = new_pass;
1145 else
1146 *pass_list = new_pass;
1147 new_pass->sub = pass->sub;
1148 new_pass->tv_id = pass->tv_id;
1149 pass = new_pass;
1150 break;
1151 default:
1152 error ("invalid pass positioning operation");
1153 return false;
1154 }
1155
1156 /* Save the newly added pass (instance) in the added_pass_nodes
1157 list so that we can register its dump file later. Note that
1158 we cannot register the dump file now because doing so will modify
1159 the static_pass_number of the opt_pass object and therefore
1160 mess up the dump file name of future instances. */
1161 new_pass_node = XCNEW (struct pass_list_node);
1162 new_pass_node->pass = new_pass;
1163 if (!added_pass_nodes)
1164 added_pass_nodes = new_pass_node;
1165 else
1166 prev_added_pass_node->next = new_pass_node;
1167 prev_added_pass_node = new_pass_node;
1168
1169 success = true;
1170 }
1171
1172 if (pass->sub && position_pass (new_pass_info, &pass->sub))
1173 success = true;
1174 }
1175
1176 return success;
1177 }
1178
1179 /* Hooks a new pass into the pass lists.
1180
1181 PASS_INFO - pass information that specifies the opt_pass object,
1182 reference pass, instance number, and how to position
1183 the pass */
1184
1185 void
1186 register_pass (struct register_pass_info *pass_info)
1187 {
1188 bool all_instances, success;
1189
1190 /* The checks below could fail in buggy plugins. Existing GCC
1191 passes should never fail these checks, so we mention plugin in
1192 the messages. */
1193 if (!pass_info->pass)
1194 fatal_error ("plugin cannot register a missing pass");
1195
1196 if (!pass_info->pass->name)
1197 fatal_error ("plugin cannot register an unnamed pass");
1198
1199 if (!pass_info->reference_pass_name)
1200 fatal_error
1201 ("plugin cannot register pass %qs without reference pass name",
1202 pass_info->pass->name);
1203
1204 /* Try to insert the new pass to the pass lists. We need to check
1205 all five lists as the reference pass could be in one (or all) of
1206 them. */
1207 all_instances = pass_info->ref_pass_instance_number == 0;
1208 success = position_pass (pass_info, &all_lowering_passes);
1209 if (!success || all_instances)
1210 success |= position_pass (pass_info, &all_small_ipa_passes);
1211 if (!success || all_instances)
1212 success |= position_pass (pass_info, &all_regular_ipa_passes);
1213 if (!success || all_instances)
1214 success |= position_pass (pass_info, &all_lto_gen_passes);
1215 if (!success || all_instances)
1216 success |= position_pass (pass_info, &all_late_ipa_passes);
1217 if (!success || all_instances)
1218 success |= position_pass (pass_info, &all_passes);
1219 if (!success)
1220 fatal_error
1221 ("pass %qs not found but is referenced by new pass %qs",
1222 pass_info->reference_pass_name, pass_info->pass->name);
1223
1224 /* OK, we have successfully inserted the new pass. We need to register
1225 the dump files for the newly added pass and its duplicates (if any).
1226 Because the registration of plugin/backend passes happens after the
1227 command-line options are parsed, the options that specify single
1228 pass dumping (e.g. -fdump-tree-PASSNAME) cannot be used for new
1229 passes. Therefore we currently can only enable dumping of
1230 new passes when the 'dump-all' flags (e.g. -fdump-tree-all)
1231 are specified. While doing so, we also delete the pass_list_node
1232 objects created during pass positioning. */
1233 while (added_pass_nodes)
1234 {
1235 struct pass_list_node *next_node = added_pass_nodes->next;
1236 enum tree_dump_index tdi;
1237 register_one_dump_file (added_pass_nodes->pass);
1238 if (added_pass_nodes->pass->type == SIMPLE_IPA_PASS
1239 || added_pass_nodes->pass->type == IPA_PASS)
1240 tdi = TDI_ipa_all;
1241 else if (added_pass_nodes->pass->type == GIMPLE_PASS)
1242 tdi = TDI_tree_all;
1243 else
1244 tdi = TDI_rtl_all;
1245 /* Check if dump-all flag is specified. */
1246 if (get_dump_file_info (tdi)->pstate)
1247 get_dump_file_info (added_pass_nodes->pass->static_pass_number)
1248 ->pstate = get_dump_file_info (tdi)->pstate;
1249 XDELETE (added_pass_nodes);
1250 added_pass_nodes = next_node;
1251 }
1252 }
1253
1254 /* Construct the pass tree. The sequencing of passes is driven by
1255 the cgraph routines:
1256
1257 finalize_compilation_unit ()
1258 for each node N in the cgraph
1259 cgraph_analyze_function (N)
1260 cgraph_lower_function (N) -> all_lowering_passes
1261
1262 If we are optimizing, compile is then invoked:
1263
1264 compile ()
1265 ipa_passes () -> all_small_ipa_passes
1266 -> Analysis of all_regular_ipa_passes
1267 * possible LTO streaming at copmilation time *
1268 -> Execution of all_regular_ipa_passes
1269 * possible LTO streaming at link time *
1270 -> all_late_ipa_passes
1271 expand_all_functions ()
1272 for each node N in the cgraph
1273 expand_function (N) -> Transformation of all_regular_ipa_passes
1274 -> all_passes
1275 */
1276
1277 void
1278 init_optimization_passes (void)
1279 {
1280 struct opt_pass **p;
1281
1282 #define NEXT_PASS(PASS) (p = next_pass_1 (p, &((PASS).pass)))
1283
1284 /* All passes needed to lower the function into shape optimizers can
1285 operate on. These passes are always run first on the function, but
1286 backend might produce already lowered functions that are not processed
1287 by these passes. */
1288 p = &all_lowering_passes;
1289 NEXT_PASS (pass_warn_unused_result);
1290 NEXT_PASS (pass_diagnose_omp_blocks);
1291 NEXT_PASS (pass_diagnose_tm_blocks);
1292 NEXT_PASS (pass_mudflap_1);
1293 NEXT_PASS (pass_lower_omp);
1294 NEXT_PASS (pass_lower_cf);
1295 NEXT_PASS (pass_lower_tm);
1296 NEXT_PASS (pass_refactor_eh);
1297 NEXT_PASS (pass_lower_eh);
1298 NEXT_PASS (pass_build_cfg);
1299 NEXT_PASS (pass_warn_function_return);
1300 NEXT_PASS (pass_build_cgraph_edges);
1301 *p = NULL;
1302
1303 /* Interprocedural optimization passes. */
1304 p = &all_small_ipa_passes;
1305 NEXT_PASS (pass_ipa_free_lang_data);
1306 NEXT_PASS (pass_ipa_function_and_variable_visibility);
1307 NEXT_PASS (pass_early_local_passes);
1308 {
1309 struct opt_pass **p = &pass_early_local_passes.pass.sub;
1310 NEXT_PASS (pass_fixup_cfg);
1311 NEXT_PASS (pass_init_datastructures);
1312 NEXT_PASS (pass_expand_omp);
1313
1314 NEXT_PASS (pass_build_ssa);
1315 NEXT_PASS (pass_lower_vector);
1316 NEXT_PASS (pass_early_warn_uninitialized);
1317 NEXT_PASS (pass_rebuild_cgraph_edges);
1318 NEXT_PASS (pass_inline_parameters);
1319 NEXT_PASS (pass_early_inline);
1320 NEXT_PASS (pass_all_early_optimizations);
1321 {
1322 struct opt_pass **p = &pass_all_early_optimizations.pass.sub;
1323 NEXT_PASS (pass_remove_cgraph_callee_edges);
1324 NEXT_PASS (pass_rename_ssa_copies);
1325 NEXT_PASS (pass_ccp);
1326 /* After CCP we rewrite no longer addressed locals into SSA
1327 form if possible. */
1328 NEXT_PASS (pass_forwprop);
1329 /* pass_build_ealias is a dummy pass that ensures that we
1330 execute TODO_rebuild_alias at this point. */
1331 NEXT_PASS (pass_build_ealias);
1332 NEXT_PASS (pass_sra_early);
1333 NEXT_PASS (pass_fre);
1334 NEXT_PASS (pass_copy_prop);
1335 NEXT_PASS (pass_merge_phi);
1336 NEXT_PASS (pass_cd_dce);
1337 NEXT_PASS (pass_early_ipa_sra);
1338 NEXT_PASS (pass_tail_recursion);
1339 NEXT_PASS (pass_convert_switch);
1340 NEXT_PASS (pass_cleanup_eh);
1341 NEXT_PASS (pass_profile);
1342 NEXT_PASS (pass_local_pure_const);
1343 /* Split functions creates parts that are not run through
1344 early optimizations again. It is thus good idea to do this
1345 late. */
1346 NEXT_PASS (pass_split_functions);
1347 }
1348 NEXT_PASS (pass_release_ssa_names);
1349 NEXT_PASS (pass_rebuild_cgraph_edges);
1350 NEXT_PASS (pass_inline_parameters);
1351 }
1352 NEXT_PASS (pass_ipa_free_inline_summary);
1353 NEXT_PASS (pass_ipa_tree_profile);
1354 {
1355 struct opt_pass **p = &pass_ipa_tree_profile.pass.sub;
1356 NEXT_PASS (pass_feedback_split_functions);
1357 }
1358 NEXT_PASS (pass_ipa_increase_alignment);
1359 NEXT_PASS (pass_ipa_tm);
1360 NEXT_PASS (pass_ipa_lower_emutls);
1361 *p = NULL;
1362
1363 p = &all_regular_ipa_passes;
1364 NEXT_PASS (pass_ipa_whole_program_visibility);
1365 NEXT_PASS (pass_ipa_profile);
1366 NEXT_PASS (pass_ipa_cp);
1367 NEXT_PASS (pass_ipa_cdtor_merge);
1368 NEXT_PASS (pass_ipa_inline);
1369 NEXT_PASS (pass_ipa_pure_const);
1370 NEXT_PASS (pass_ipa_reference);
1371 *p = NULL;
1372
1373 p = &all_lto_gen_passes;
1374 NEXT_PASS (pass_ipa_lto_gimple_out);
1375 NEXT_PASS (pass_ipa_lto_finish_out); /* This must be the last LTO pass. */
1376 *p = NULL;
1377
1378 /* Simple IPA passes executed after the regular passes. In WHOPR mode the
1379 passes are executed after partitioning and thus see just parts of the
1380 compiled unit. */
1381 p = &all_late_ipa_passes;
1382 NEXT_PASS (pass_ipa_pta);
1383 *p = NULL;
1384
1385 /* These passes are run after IPA passes on every function that is being
1386 output to the assembler file. */
1387 p = &all_passes;
1388 NEXT_PASS (pass_fixup_cfg);
1389 NEXT_PASS (pass_lower_eh_dispatch);
1390 NEXT_PASS (pass_all_optimizations);
1391 {
1392 struct opt_pass **p = &pass_all_optimizations.pass.sub;
1393 NEXT_PASS (pass_remove_cgraph_callee_edges);
1394 /* Initial scalar cleanups before alias computation.
1395 They ensure memory accesses are not indirect wherever possible. */
1396 NEXT_PASS (pass_strip_predict_hints);
1397 NEXT_PASS (pass_rename_ssa_copies);
1398 NEXT_PASS (pass_complete_unrolli);
1399 NEXT_PASS (pass_ccp);
1400 /* After CCP we rewrite no longer addressed locals into SSA
1401 form if possible. */
1402 NEXT_PASS (pass_forwprop);
1403 /* pass_build_alias is a dummy pass that ensures that we
1404 execute TODO_rebuild_alias at this point. */
1405 NEXT_PASS (pass_build_alias);
1406 NEXT_PASS (pass_return_slot);
1407 NEXT_PASS (pass_phiprop);
1408 NEXT_PASS (pass_fre);
1409 NEXT_PASS (pass_copy_prop);
1410 NEXT_PASS (pass_merge_phi);
1411 NEXT_PASS (pass_vrp);
1412 NEXT_PASS (pass_dce);
1413 NEXT_PASS (pass_call_cdce);
1414 NEXT_PASS (pass_cselim);
1415 NEXT_PASS (pass_tree_ifcombine);
1416 NEXT_PASS (pass_phiopt);
1417 NEXT_PASS (pass_tail_recursion);
1418 NEXT_PASS (pass_ch);
1419 NEXT_PASS (pass_stdarg);
1420 NEXT_PASS (pass_lower_complex);
1421 NEXT_PASS (pass_sra);
1422 NEXT_PASS (pass_rename_ssa_copies);
1423 /* The dom pass will also resolve all __builtin_constant_p calls
1424 that are still there to 0. This has to be done after some
1425 propagations have already run, but before some more dead code
1426 is removed, and this place fits nicely. Remember this when
1427 trying to move or duplicate pass_dominator somewhere earlier. */
1428 NEXT_PASS (pass_dominator);
1429 /* The only const/copy propagation opportunities left after
1430 DOM should be due to degenerate PHI nodes. So rather than
1431 run the full propagators, run a specialized pass which
1432 only examines PHIs to discover const/copy propagation
1433 opportunities. */
1434 NEXT_PASS (pass_phi_only_cprop);
1435 NEXT_PASS (pass_dse);
1436 NEXT_PASS (pass_reassoc);
1437 NEXT_PASS (pass_dce);
1438 NEXT_PASS (pass_forwprop);
1439 NEXT_PASS (pass_phiopt);
1440 NEXT_PASS (pass_object_sizes);
1441 NEXT_PASS (pass_strlen);
1442 NEXT_PASS (pass_ccp);
1443 /* After CCP we rewrite no longer addressed locals into SSA
1444 form if possible. */
1445 NEXT_PASS (pass_copy_prop);
1446 NEXT_PASS (pass_cse_sincos);
1447 NEXT_PASS (pass_optimize_bswap);
1448 NEXT_PASS (pass_split_crit_edges);
1449 NEXT_PASS (pass_pre);
1450 NEXT_PASS (pass_sink_code);
1451 NEXT_PASS (pass_asan);
1452 NEXT_PASS (pass_tsan);
1453 NEXT_PASS (pass_tree_loop);
1454 {
1455 struct opt_pass **p = &pass_tree_loop.pass.sub;
1456 NEXT_PASS (pass_tree_loop_init);
1457 NEXT_PASS (pass_lim);
1458 NEXT_PASS (pass_copy_prop);
1459 NEXT_PASS (pass_dce_loop);
1460 NEXT_PASS (pass_tree_unswitch);
1461 NEXT_PASS (pass_scev_cprop);
1462 NEXT_PASS (pass_record_bounds);
1463 NEXT_PASS (pass_check_data_deps);
1464 NEXT_PASS (pass_loop_distribution);
1465 NEXT_PASS (pass_copy_prop);
1466 NEXT_PASS (pass_graphite);
1467 {
1468 struct opt_pass **p = &pass_graphite.pass.sub;
1469 NEXT_PASS (pass_graphite_transforms);
1470 NEXT_PASS (pass_lim);
1471 NEXT_PASS (pass_copy_prop);
1472 NEXT_PASS (pass_dce_loop);
1473 }
1474 NEXT_PASS (pass_iv_canon);
1475 NEXT_PASS (pass_if_conversion);
1476 NEXT_PASS (pass_vectorize);
1477 {
1478 struct opt_pass **p = &pass_vectorize.pass.sub;
1479 NEXT_PASS (pass_dce_loop);
1480 }
1481 NEXT_PASS (pass_predcom);
1482 NEXT_PASS (pass_complete_unroll);
1483 NEXT_PASS (pass_slp_vectorize);
1484 NEXT_PASS (pass_parallelize_loops);
1485 NEXT_PASS (pass_loop_prefetch);
1486 NEXT_PASS (pass_iv_optimize);
1487 NEXT_PASS (pass_lim);
1488 NEXT_PASS (pass_tree_loop_done);
1489 }
1490 NEXT_PASS (pass_lower_vector_ssa);
1491 NEXT_PASS (pass_cse_reciprocals);
1492 NEXT_PASS (pass_reassoc);
1493 NEXT_PASS (pass_vrp);
1494 NEXT_PASS (pass_strength_reduction);
1495 NEXT_PASS (pass_dominator);
1496 /* The only const/copy propagation opportunities left after
1497 DOM should be due to degenerate PHI nodes. So rather than
1498 run the full propagators, run a specialized pass which
1499 only examines PHIs to discover const/copy propagation
1500 opportunities. */
1501 NEXT_PASS (pass_phi_only_cprop);
1502 NEXT_PASS (pass_cd_dce);
1503 NEXT_PASS (pass_tracer);
1504
1505 /* FIXME: If DCE is not run before checking for uninitialized uses,
1506 we may get false warnings (e.g., testsuite/gcc.dg/uninit-5.c).
1507 However, this also causes us to misdiagnose cases that should be
1508 real warnings (e.g., testsuite/gcc.dg/pr18501.c).
1509
1510 To fix the false positives in uninit-5.c, we would have to
1511 account for the predicates protecting the set and the use of each
1512 variable. Using a representation like Gated Single Assignment
1513 may help. */
1514 NEXT_PASS (pass_late_warn_uninitialized);
1515 NEXT_PASS (pass_dse);
1516 NEXT_PASS (pass_forwprop);
1517 NEXT_PASS (pass_phiopt);
1518 NEXT_PASS (pass_fold_builtins);
1519 NEXT_PASS (pass_optimize_widening_mul);
1520 NEXT_PASS (pass_tail_calls);
1521 NEXT_PASS (pass_rename_ssa_copies);
1522 NEXT_PASS (pass_uncprop);
1523 NEXT_PASS (pass_local_pure_const);
1524 }
1525 NEXT_PASS (pass_all_optimizations_g);
1526 {
1527 struct opt_pass **p = &pass_all_optimizations_g.pass.sub;
1528 NEXT_PASS (pass_remove_cgraph_callee_edges);
1529 NEXT_PASS (pass_strip_predict_hints);
1530 /* Lower remaining pieces of GIMPLE. */
1531 NEXT_PASS (pass_lower_complex);
1532 NEXT_PASS (pass_lower_vector_ssa);
1533 /* Perform simple scalar cleanup which is constant/copy propagation. */
1534 NEXT_PASS (pass_ccp);
1535 NEXT_PASS (pass_object_sizes);
1536 /* Copy propagation also copy-propagates constants, this is necessary
1537 to forward object-size results properly. */
1538 NEXT_PASS (pass_copy_prop);
1539 NEXT_PASS (pass_asan);
1540 NEXT_PASS (pass_tsan);
1541 NEXT_PASS (pass_rename_ssa_copies);
1542 NEXT_PASS (pass_dce);
1543 /* Fold remaining builtins. */
1544 NEXT_PASS (pass_fold_builtins);
1545 /* ??? We do want some kind of loop invariant motion, but we possibly
1546 need to adjust LIM to be more friendly towards preserving accurate
1547 debug information here. */
1548 NEXT_PASS (pass_late_warn_uninitialized);
1549 NEXT_PASS (pass_uncprop);
1550 NEXT_PASS (pass_local_pure_const);
1551 }
1552 NEXT_PASS (pass_tm_init);
1553 {
1554 struct opt_pass **p = &pass_tm_init.pass.sub;
1555 NEXT_PASS (pass_tm_mark);
1556 NEXT_PASS (pass_tm_memopt);
1557 NEXT_PASS (pass_tm_edges);
1558 }
1559 NEXT_PASS (pass_lower_complex_O0);
1560 NEXT_PASS (pass_asan_O0);
1561 NEXT_PASS (pass_tsan_O0);
1562 NEXT_PASS (pass_cleanup_eh);
1563 NEXT_PASS (pass_lower_resx);
1564 NEXT_PASS (pass_nrv);
1565 NEXT_PASS (pass_mudflap_2);
1566 NEXT_PASS (pass_cleanup_cfg_post_optimizing);
1567 NEXT_PASS (pass_warn_function_noreturn);
1568
1569 NEXT_PASS (pass_expand);
1570
1571 NEXT_PASS (pass_rest_of_compilation);
1572 {
1573 struct opt_pass **p = &pass_rest_of_compilation.pass.sub;
1574 NEXT_PASS (pass_instantiate_virtual_regs);
1575 NEXT_PASS (pass_into_cfg_layout_mode);
1576 NEXT_PASS (pass_jump);
1577 NEXT_PASS (pass_lower_subreg);
1578 NEXT_PASS (pass_df_initialize_opt);
1579 NEXT_PASS (pass_cse);
1580 NEXT_PASS (pass_rtl_fwprop);
1581 NEXT_PASS (pass_rtl_cprop);
1582 NEXT_PASS (pass_rtl_pre);
1583 NEXT_PASS (pass_rtl_hoist);
1584 NEXT_PASS (pass_rtl_cprop);
1585 NEXT_PASS (pass_rtl_store_motion);
1586 NEXT_PASS (pass_cse_after_global_opts);
1587 NEXT_PASS (pass_rtl_ifcvt);
1588 NEXT_PASS (pass_reginfo_init);
1589 /* Perform loop optimizations. It might be better to do them a bit
1590 sooner, but we want the profile feedback to work more
1591 efficiently. */
1592 NEXT_PASS (pass_loop2);
1593 {
1594 struct opt_pass **p = &pass_loop2.pass.sub;
1595 NEXT_PASS (pass_rtl_loop_init);
1596 NEXT_PASS (pass_rtl_move_loop_invariants);
1597 NEXT_PASS (pass_rtl_unswitch);
1598 NEXT_PASS (pass_rtl_unroll_and_peel_loops);
1599 NEXT_PASS (pass_rtl_doloop);
1600 NEXT_PASS (pass_rtl_loop_done);
1601 *p = NULL;
1602 }
1603 NEXT_PASS (pass_web);
1604 NEXT_PASS (pass_rtl_cprop);
1605 NEXT_PASS (pass_cse2);
1606 NEXT_PASS (pass_rtl_dse1);
1607 NEXT_PASS (pass_rtl_fwprop_addr);
1608 NEXT_PASS (pass_inc_dec);
1609 NEXT_PASS (pass_initialize_regs);
1610 NEXT_PASS (pass_ud_rtl_dce);
1611 NEXT_PASS (pass_combine);
1612 NEXT_PASS (pass_if_after_combine);
1613 NEXT_PASS (pass_partition_blocks);
1614 NEXT_PASS (pass_regmove);
1615 NEXT_PASS (pass_outof_cfg_layout_mode);
1616 NEXT_PASS (pass_split_all_insns);
1617 NEXT_PASS (pass_lower_subreg2);
1618 NEXT_PASS (pass_df_initialize_no_opt);
1619 NEXT_PASS (pass_stack_ptr_mod);
1620 NEXT_PASS (pass_mode_switching);
1621 NEXT_PASS (pass_match_asm_constraints);
1622 NEXT_PASS (pass_sms);
1623 NEXT_PASS (pass_sched);
1624 NEXT_PASS (pass_ira);
1625 NEXT_PASS (pass_reload);
1626 NEXT_PASS (pass_postreload);
1627 {
1628 struct opt_pass **p = &pass_postreload.pass.sub;
1629 NEXT_PASS (pass_postreload_cse);
1630 NEXT_PASS (pass_gcse2);
1631 NEXT_PASS (pass_split_after_reload);
1632 NEXT_PASS (pass_ree);
1633 NEXT_PASS (pass_compare_elim_after_reload);
1634 NEXT_PASS (pass_branch_target_load_optimize1);
1635 NEXT_PASS (pass_thread_prologue_and_epilogue);
1636 NEXT_PASS (pass_rtl_dse2);
1637 NEXT_PASS (pass_stack_adjustments);
1638 NEXT_PASS (pass_jump2);
1639 NEXT_PASS (pass_peephole2);
1640 NEXT_PASS (pass_if_after_reload);
1641 NEXT_PASS (pass_regrename);
1642 NEXT_PASS (pass_cprop_hardreg);
1643 NEXT_PASS (pass_fast_rtl_dce);
1644 NEXT_PASS (pass_reorder_blocks);
1645 NEXT_PASS (pass_branch_target_load_optimize2);
1646 NEXT_PASS (pass_leaf_regs);
1647 NEXT_PASS (pass_split_before_sched2);
1648 NEXT_PASS (pass_sched2);
1649 NEXT_PASS (pass_stack_regs);
1650 {
1651 struct opt_pass **p = &pass_stack_regs.pass.sub;
1652 NEXT_PASS (pass_split_before_regstack);
1653 NEXT_PASS (pass_stack_regs_run);
1654 }
1655 NEXT_PASS (pass_compute_alignments);
1656 NEXT_PASS (pass_duplicate_computed_gotos);
1657 NEXT_PASS (pass_variable_tracking);
1658 NEXT_PASS (pass_free_cfg);
1659 NEXT_PASS (pass_machine_reorg);
1660 NEXT_PASS (pass_cleanup_barriers);
1661 NEXT_PASS (pass_delay_slots);
1662 NEXT_PASS (pass_split_for_shorten_branches);
1663 NEXT_PASS (pass_convert_to_eh_region_ranges);
1664 NEXT_PASS (pass_shorten_branches);
1665 NEXT_PASS (pass_set_nothrow_function_flags);
1666 NEXT_PASS (pass_dwarf2_frame);
1667 NEXT_PASS (pass_final);
1668 }
1669 NEXT_PASS (pass_df_finish);
1670 }
1671 NEXT_PASS (pass_clean_state);
1672 *p = NULL;
1673
1674 #undef NEXT_PASS
1675
1676 /* Register the passes with the tree dump code. */
1677 register_dump_files (all_lowering_passes, PROP_gimple_any);
1678 register_dump_files (all_small_ipa_passes,
1679 PROP_gimple_any | PROP_gimple_lcf | PROP_gimple_leh
1680 | PROP_cfg);
1681 register_dump_files (all_regular_ipa_passes,
1682 PROP_gimple_any | PROP_gimple_lcf | PROP_gimple_leh
1683 | PROP_cfg);
1684 register_dump_files (all_lto_gen_passes,
1685 PROP_gimple_any | PROP_gimple_lcf | PROP_gimple_leh
1686 | PROP_cfg);
1687 register_dump_files (all_late_ipa_passes,
1688 PROP_gimple_any | PROP_gimple_lcf | PROP_gimple_leh
1689 | PROP_cfg);
1690 register_dump_files (all_passes,
1691 PROP_gimple_any | PROP_gimple_lcf | PROP_gimple_leh
1692 | PROP_cfg);
1693 }
1694
1695 /* If we are in IPA mode (i.e., current_function_decl is NULL), call
1696 function CALLBACK for every function in the call graph. Otherwise,
1697 call CALLBACK on the current function. */
1698
1699 static void
1700 do_per_function (void (*callback) (void *data), void *data)
1701 {
1702 if (current_function_decl)
1703 callback (data);
1704 else
1705 {
1706 struct cgraph_node *node;
1707 FOR_EACH_DEFINED_FUNCTION (node)
1708 if (gimple_has_body_p (node->symbol.decl)
1709 && (!node->clone_of || node->symbol.decl != node->clone_of->symbol.decl))
1710 {
1711 push_cfun (DECL_STRUCT_FUNCTION (node->symbol.decl));
1712 callback (data);
1713 if (!flag_wpa)
1714 {
1715 free_dominance_info (CDI_DOMINATORS);
1716 free_dominance_info (CDI_POST_DOMINATORS);
1717 }
1718 pop_cfun ();
1719 ggc_collect ();
1720 }
1721 }
1722 }
1723
1724 /* Because inlining might remove no-longer reachable nodes, we need to
1725 keep the array visible to garbage collector to avoid reading collected
1726 out nodes. */
1727 static int nnodes;
1728 static GTY ((length ("nnodes"))) cgraph_node_ptr *order;
1729
1730 /* If we are in IPA mode (i.e., current_function_decl is NULL), call
1731 function CALLBACK for every function in the call graph. Otherwise,
1732 call CALLBACK on the current function.
1733 This function is global so that plugins can use it. */
1734 void
1735 do_per_function_toporder (void (*callback) (void *data), void *data)
1736 {
1737 int i;
1738
1739 if (current_function_decl)
1740 callback (data);
1741 else
1742 {
1743 gcc_assert (!order);
1744 order = ggc_alloc_vec_cgraph_node_ptr (cgraph_n_nodes);
1745 nnodes = ipa_reverse_postorder (order);
1746 for (i = nnodes - 1; i >= 0; i--)
1747 order[i]->process = 1;
1748 for (i = nnodes - 1; i >= 0; i--)
1749 {
1750 struct cgraph_node *node = order[i];
1751
1752 /* Allow possibly removed nodes to be garbage collected. */
1753 order[i] = NULL;
1754 node->process = 0;
1755 if (cgraph_function_with_gimple_body_p (node))
1756 {
1757 push_cfun (DECL_STRUCT_FUNCTION (node->symbol.decl));
1758 callback (data);
1759 free_dominance_info (CDI_DOMINATORS);
1760 free_dominance_info (CDI_POST_DOMINATORS);
1761 pop_cfun ();
1762 ggc_collect ();
1763 }
1764 }
1765 }
1766 ggc_free (order);
1767 order = NULL;
1768 nnodes = 0;
1769 }
1770
1771 /* Helper function to perform function body dump. */
1772
1773 static void
1774 execute_function_dump (void *data ATTRIBUTE_UNUSED)
1775 {
1776 if (dump_file && current_function_decl)
1777 {
1778 if (cfun->curr_properties & PROP_trees)
1779 dump_function_to_file (current_function_decl, dump_file, dump_flags);
1780 else
1781 print_rtl_with_bb (dump_file, get_insns (), dump_flags);
1782
1783 /* Flush the file. If verification fails, we won't be able to
1784 close the file before aborting. */
1785 fflush (dump_file);
1786
1787 if ((cfun->curr_properties & PROP_cfg)
1788 && (dump_flags & TDF_GRAPH))
1789 print_graph_cfg (dump_file_name, cfun);
1790 }
1791 }
1792
1793 static struct profile_record *profile_record;
1794
1795 /* Do profile consistency book-keeping for the pass with static number INDEX.
1796 If SUBPASS is zero, we run _before_ the pass, and if SUBPASS is one, then
1797 we run _after_ the pass. RUN is true if the pass really runs, or FALSE
1798 if we are only book-keeping on passes that may have selectively disabled
1799 themselves on a given function. */
1800 static void
1801 check_profile_consistency (int index, int subpass, bool run)
1802 {
1803 if (index == -1)
1804 return;
1805 if (!profile_record)
1806 profile_record = XCNEWVEC (struct profile_record,
1807 passes_by_id_size);
1808 gcc_assert (index < passes_by_id_size && index >= 0);
1809 gcc_assert (subpass < 2);
1810 profile_record[index].run |= run;
1811 account_profile_record (&profile_record[index], subpass);
1812 }
1813
1814 /* Output profile consistency. */
1815
1816 void
1817 dump_profile_report (void)
1818 {
1819 int i, j;
1820 int last_freq_in = 0, last_count_in = 0, last_freq_out = 0, last_count_out = 0;
1821 gcov_type last_time = 0, last_size = 0;
1822 double rel_time_change, rel_size_change;
1823 int last_reported = 0;
1824
1825 if (!profile_record)
1826 return;
1827 fprintf (stderr, "\nProfile consistency report:\n\n");
1828 fprintf (stderr, "Pass name |mismatch in |mismated out|Overall\n");
1829 fprintf (stderr, " |freq count |freq count |size time\n");
1830
1831 for (i = 0; i < passes_by_id_size; i++)
1832 for (j = 0 ; j < 2; j++)
1833 if (profile_record[i].run)
1834 {
1835 if (last_time)
1836 rel_time_change = (profile_record[i].time[j]
1837 - (double)last_time) * 100 / (double)last_time;
1838 else
1839 rel_time_change = 0;
1840 if (last_size)
1841 rel_size_change = (profile_record[i].size[j]
1842 - (double)last_size) * 100 / (double)last_size;
1843 else
1844 rel_size_change = 0;
1845
1846 if (profile_record[i].num_mismatched_freq_in[j] != last_freq_in
1847 || profile_record[i].num_mismatched_freq_out[j] != last_freq_out
1848 || profile_record[i].num_mismatched_count_in[j] != last_count_in
1849 || profile_record[i].num_mismatched_count_out[j] != last_count_out
1850 || rel_time_change || rel_size_change)
1851 {
1852 last_reported = i;
1853 fprintf (stderr, "%-20s %s",
1854 passes_by_id [i]->name,
1855 j ? "(after TODO)" : " ");
1856 if (profile_record[i].num_mismatched_freq_in[j] != last_freq_in)
1857 fprintf (stderr, "| %+5i",
1858 profile_record[i].num_mismatched_freq_in[j]
1859 - last_freq_in);
1860 else
1861 fprintf (stderr, "| ");
1862 if (profile_record[i].num_mismatched_count_in[j] != last_count_in)
1863 fprintf (stderr, " %+5i",
1864 profile_record[i].num_mismatched_count_in[j]
1865 - last_count_in);
1866 else
1867 fprintf (stderr, " ");
1868 if (profile_record[i].num_mismatched_freq_out[j] != last_freq_out)
1869 fprintf (stderr, "| %+5i",
1870 profile_record[i].num_mismatched_freq_out[j]
1871 - last_freq_out);
1872 else
1873 fprintf (stderr, "| ");
1874 if (profile_record[i].num_mismatched_count_out[j] != last_count_out)
1875 fprintf (stderr, " %+5i",
1876 profile_record[i].num_mismatched_count_out[j]
1877 - last_count_out);
1878 else
1879 fprintf (stderr, " ");
1880
1881 /* Size/time units change across gimple and RTL. */
1882 if (i == pass_expand.pass.static_pass_number)
1883 fprintf (stderr, "|----------");
1884 else
1885 {
1886 if (rel_size_change)
1887 fprintf (stderr, "| %+8.4f%%", rel_size_change);
1888 else
1889 fprintf (stderr, "| ");
1890 if (rel_time_change)
1891 fprintf (stderr, " %+8.4f%%", rel_time_change);
1892 }
1893 fprintf (stderr, "\n");
1894 last_freq_in = profile_record[i].num_mismatched_freq_in[j];
1895 last_freq_out = profile_record[i].num_mismatched_freq_out[j];
1896 last_count_in = profile_record[i].num_mismatched_count_in[j];
1897 last_count_out = profile_record[i].num_mismatched_count_out[j];
1898 }
1899 else if (j && last_reported != i)
1900 {
1901 last_reported = i;
1902 fprintf (stderr, "%-20s ------------| | |\n",
1903 passes_by_id [i]->name);
1904 }
1905 last_time = profile_record[i].time[j];
1906 last_size = profile_record[i].size[j];
1907 }
1908 }
1909
1910 /* Perform all TODO actions that ought to be done on each function. */
1911
1912 static void
1913 execute_function_todo (void *data)
1914 {
1915 unsigned int flags = (size_t)data;
1916 flags &= ~cfun->last_verified;
1917 if (!flags)
1918 return;
1919
1920 /* Always cleanup the CFG before trying to update SSA. */
1921 if (flags & TODO_cleanup_cfg)
1922 {
1923 bool cleanup = cleanup_tree_cfg ();
1924
1925 if (cleanup && (cfun->curr_properties & PROP_ssa))
1926 flags |= TODO_remove_unused_locals;
1927
1928 /* When cleanup_tree_cfg merges consecutive blocks, it may
1929 perform some simplistic propagation when removing single
1930 valued PHI nodes. This propagation may, in turn, cause the
1931 SSA form to become out-of-date (see PR 22037). So, even
1932 if the parent pass had not scheduled an SSA update, we may
1933 still need to do one. */
1934 if (!(flags & TODO_update_ssa_any) && need_ssa_update_p (cfun))
1935 flags |= TODO_update_ssa;
1936 }
1937
1938 if (flags & TODO_update_ssa_any)
1939 {
1940 unsigned update_flags = flags & TODO_update_ssa_any;
1941 update_ssa (update_flags);
1942 cfun->last_verified &= ~TODO_verify_ssa;
1943 }
1944
1945 if (flag_tree_pta && (flags & TODO_rebuild_alias))
1946 compute_may_aliases ();
1947
1948 if (optimize && (flags & TODO_update_address_taken))
1949 execute_update_addresses_taken ();
1950
1951 if (flags & TODO_remove_unused_locals)
1952 remove_unused_locals ();
1953
1954 if (flags & TODO_rebuild_frequencies)
1955 rebuild_frequencies ();
1956
1957 if (flags & TODO_rebuild_cgraph_edges)
1958 rebuild_cgraph_edges ();
1959
1960 /* If we've seen errors do not bother running any verifiers. */
1961 if (seen_error ())
1962 return;
1963
1964 #if defined ENABLE_CHECKING
1965 if (flags & TODO_verify_ssa
1966 || (current_loops && loops_state_satisfies_p (LOOP_CLOSED_SSA)))
1967 {
1968 verify_gimple_in_cfg (cfun);
1969 verify_ssa (true);
1970 }
1971 else if (flags & TODO_verify_stmts)
1972 verify_gimple_in_cfg (cfun);
1973 if (flags & TODO_verify_flow)
1974 verify_flow_info ();
1975 if (current_loops && loops_state_satisfies_p (LOOP_CLOSED_SSA))
1976 verify_loop_closed_ssa (false);
1977 if (flags & TODO_verify_rtl_sharing)
1978 verify_rtl_sharing ();
1979 #endif
1980
1981 cfun->last_verified = flags & TODO_verify_all;
1982 }
1983
1984 /* Perform all TODO actions. */
1985 static void
1986 execute_todo (unsigned int flags)
1987 {
1988 #if defined ENABLE_CHECKING
1989 if (cfun
1990 && need_ssa_update_p (cfun))
1991 gcc_assert (flags & TODO_update_ssa_any);
1992 #endif
1993
1994 timevar_push (TV_TODO);
1995
1996 /* Inform the pass whether it is the first time it is run. */
1997 first_pass_instance = (flags & TODO_mark_first_instance) != 0;
1998
1999 statistics_fini_pass ();
2000
2001 do_per_function (execute_function_todo, (void *)(size_t) flags);
2002
2003 /* Always remove functions just as before inlining: IPA passes might be
2004 interested to see bodies of extern inline functions that are not inlined
2005 to analyze side effects. The full removal is done just at the end
2006 of IPA pass queue. */
2007 if (flags & TODO_remove_functions)
2008 {
2009 gcc_assert (!cfun);
2010 symtab_remove_unreachable_nodes (true, dump_file);
2011 }
2012
2013 if ((flags & TODO_dump_symtab) && dump_file && !current_function_decl)
2014 {
2015 gcc_assert (!cfun);
2016 dump_symtab (dump_file);
2017 /* Flush the file. If verification fails, we won't be able to
2018 close the file before aborting. */
2019 fflush (dump_file);
2020 }
2021
2022 if (flags & TODO_ggc_collect)
2023 ggc_collect ();
2024
2025 /* Now that the dumping has been done, we can get rid of the optional
2026 df problems. */
2027 if (flags & TODO_df_finish)
2028 df_finish_pass ((flags & TODO_df_verify) != 0);
2029
2030 timevar_pop (TV_TODO);
2031 }
2032
2033 /* Verify invariants that should hold between passes. This is a place
2034 to put simple sanity checks. */
2035
2036 static void
2037 verify_interpass_invariants (void)
2038 {
2039 gcc_checking_assert (!fold_deferring_overflow_warnings_p ());
2040 }
2041
2042 /* Clear the last verified flag. */
2043
2044 static void
2045 clear_last_verified (void *data ATTRIBUTE_UNUSED)
2046 {
2047 cfun->last_verified = 0;
2048 }
2049
2050 /* Helper function. Verify that the properties has been turn into the
2051 properties expected by the pass. */
2052
2053 #ifdef ENABLE_CHECKING
2054 static void
2055 verify_curr_properties (void *data)
2056 {
2057 unsigned int props = (size_t)data;
2058 gcc_assert ((cfun->curr_properties & props) == props);
2059 }
2060 #endif
2061
2062 /* Initialize pass dump file. */
2063 /* This is non-static so that the plugins can use it. */
2064
2065 bool
2066 pass_init_dump_file (struct opt_pass *pass)
2067 {
2068 /* If a dump file name is present, open it if enabled. */
2069 if (pass->static_pass_number != -1)
2070 {
2071 timevar_push (TV_DUMP);
2072 bool initializing_dump = !dump_initialized_p (pass->static_pass_number);
2073 dump_file_name = get_dump_file_name (pass->static_pass_number);
2074 dump_start (pass->static_pass_number, &dump_flags);
2075 if (dump_file && current_function_decl)
2076 dump_function_header (dump_file, current_function_decl, dump_flags);
2077 if (initializing_dump
2078 && dump_file && (dump_flags & TDF_GRAPH)
2079 && cfun && (cfun->curr_properties & PROP_cfg))
2080 clean_graph_dump_file (dump_file_name);
2081 timevar_pop (TV_DUMP);
2082 return initializing_dump;
2083 }
2084 else
2085 return false;
2086 }
2087
2088 /* Flush PASS dump file. */
2089 /* This is non-static so that plugins can use it. */
2090
2091 void
2092 pass_fini_dump_file (struct opt_pass *pass)
2093 {
2094 timevar_push (TV_DUMP);
2095
2096 /* Flush and close dump file. */
2097 if (dump_file_name)
2098 {
2099 free (CONST_CAST (char *, dump_file_name));
2100 dump_file_name = NULL;
2101 }
2102
2103 dump_finish (pass->static_pass_number);
2104 timevar_pop (TV_DUMP);
2105 }
2106
2107 /* After executing the pass, apply expected changes to the function
2108 properties. */
2109
2110 static void
2111 update_properties_after_pass (void *data)
2112 {
2113 struct opt_pass *pass = (struct opt_pass *) data;
2114 cfun->curr_properties = (cfun->curr_properties | pass->properties_provided)
2115 & ~pass->properties_destroyed;
2116 }
2117
2118 /* Execute summary generation for all of the passes in IPA_PASS. */
2119
2120 void
2121 execute_ipa_summary_passes (struct ipa_opt_pass_d *ipa_pass)
2122 {
2123 while (ipa_pass)
2124 {
2125 struct opt_pass *pass = &ipa_pass->pass;
2126
2127 /* Execute all of the IPA_PASSes in the list. */
2128 if (ipa_pass->pass.type == IPA_PASS
2129 && (!pass->gate || pass->gate ())
2130 && ipa_pass->generate_summary)
2131 {
2132 pass_init_dump_file (pass);
2133
2134 /* If a timevar is present, start it. */
2135 if (pass->tv_id)
2136 timevar_push (pass->tv_id);
2137
2138 ipa_pass->generate_summary ();
2139
2140 /* Stop timevar. */
2141 if (pass->tv_id)
2142 timevar_pop (pass->tv_id);
2143
2144 pass_fini_dump_file (pass);
2145 }
2146 ipa_pass = (struct ipa_opt_pass_d *)ipa_pass->pass.next;
2147 }
2148 }
2149
2150 /* Execute IPA_PASS function transform on NODE. */
2151
2152 static void
2153 execute_one_ipa_transform_pass (struct cgraph_node *node,
2154 struct ipa_opt_pass_d *ipa_pass)
2155 {
2156 struct opt_pass *pass = &ipa_pass->pass;
2157 unsigned int todo_after = 0;
2158
2159 current_pass = pass;
2160 if (!ipa_pass->function_transform)
2161 return;
2162
2163 /* Note that the folders should only create gimple expressions.
2164 This is a hack until the new folder is ready. */
2165 in_gimple_form = (cfun && (cfun->curr_properties & PROP_trees)) != 0;
2166
2167 pass_init_dump_file (pass);
2168
2169 /* Run pre-pass verification. */
2170 execute_todo (ipa_pass->function_transform_todo_flags_start);
2171
2172 /* If a timevar is present, start it. */
2173 if (pass->tv_id != TV_NONE)
2174 timevar_push (pass->tv_id);
2175
2176 /* Do it! */
2177 todo_after = ipa_pass->function_transform (node);
2178
2179 /* Stop timevar. */
2180 if (pass->tv_id != TV_NONE)
2181 timevar_pop (pass->tv_id);
2182
2183 if (profile_report && cfun && (cfun->curr_properties & PROP_cfg))
2184 check_profile_consistency (pass->static_pass_number, 0, true);
2185
2186 /* Run post-pass cleanup and verification. */
2187 execute_todo (todo_after);
2188 verify_interpass_invariants ();
2189 if (profile_report && cfun && (cfun->curr_properties & PROP_cfg))
2190 check_profile_consistency (pass->static_pass_number, 1, true);
2191
2192 do_per_function (execute_function_dump, NULL);
2193 pass_fini_dump_file (pass);
2194
2195 current_pass = NULL;
2196 }
2197
2198 /* For the current function, execute all ipa transforms. */
2199
2200 void
2201 execute_all_ipa_transforms (void)
2202 {
2203 struct cgraph_node *node;
2204 if (!cfun)
2205 return;
2206 node = cgraph_get_node (current_function_decl);
2207
2208 if (node->ipa_transforms_to_apply.exists ())
2209 {
2210 unsigned int i;
2211
2212 for (i = 0; i < node->ipa_transforms_to_apply.length (); i++)
2213 execute_one_ipa_transform_pass (node, node->ipa_transforms_to_apply[i]);
2214 node->ipa_transforms_to_apply.release ();
2215 }
2216 }
2217
2218 /* Callback for do_per_function to apply all IPA transforms. */
2219
2220 static void
2221 apply_ipa_transforms (void *data)
2222 {
2223 struct cgraph_node *node = cgraph_get_node (current_function_decl);
2224 if (!node->global.inlined_to && node->ipa_transforms_to_apply.exists ())
2225 {
2226 *(bool *)data = true;
2227 execute_all_ipa_transforms();
2228 rebuild_cgraph_edges ();
2229 }
2230 }
2231
2232 /* Check if PASS is explicitly disabled or enabled and return
2233 the gate status. FUNC is the function to be processed, and
2234 GATE_STATUS is the gate status determined by pass manager by
2235 default. */
2236
2237 static bool
2238 override_gate_status (struct opt_pass *pass, tree func, bool gate_status)
2239 {
2240 bool explicitly_enabled = false;
2241 bool explicitly_disabled = false;
2242
2243 explicitly_enabled
2244 = is_pass_explicitly_enabled_or_disabled (pass, func,
2245 enabled_pass_uid_range_tab);
2246 explicitly_disabled
2247 = is_pass_explicitly_enabled_or_disabled (pass, func,
2248 disabled_pass_uid_range_tab);
2249
2250 gate_status = !explicitly_disabled && (gate_status || explicitly_enabled);
2251
2252 return gate_status;
2253 }
2254
2255
2256 /* Execute PASS. */
2257
2258 bool
2259 execute_one_pass (struct opt_pass *pass)
2260 {
2261 unsigned int todo_after = 0;
2262
2263 bool gate_status;
2264
2265 /* IPA passes are executed on whole program, so cfun should be NULL.
2266 Other passes need function context set. */
2267 if (pass->type == SIMPLE_IPA_PASS || pass->type == IPA_PASS)
2268 gcc_assert (!cfun && !current_function_decl);
2269 else
2270 gcc_assert (cfun && current_function_decl);
2271
2272 current_pass = pass;
2273
2274 /* Check whether gate check should be avoided.
2275 User controls the value of the gate through the parameter "gate_status". */
2276 gate_status = (pass->gate == NULL) ? true : pass->gate();
2277 gate_status = override_gate_status (pass, current_function_decl, gate_status);
2278
2279 /* Override gate with plugin. */
2280 invoke_plugin_callbacks (PLUGIN_OVERRIDE_GATE, &gate_status);
2281
2282 if (!gate_status)
2283 {
2284 /* Run so passes selectively disabling themselves on a given function
2285 are not miscounted. */
2286 if (profile_report && cfun && (cfun->curr_properties & PROP_cfg))
2287 {
2288 check_profile_consistency (pass->static_pass_number, 0, false);
2289 check_profile_consistency (pass->static_pass_number, 1, false);
2290 }
2291 current_pass = NULL;
2292 return false;
2293 }
2294
2295 /* Pass execution event trigger: useful to identify passes being
2296 executed. */
2297 invoke_plugin_callbacks (PLUGIN_PASS_EXECUTION, pass);
2298
2299 /* SIPLE IPA passes do not handle callgraphs with IPA transforms in it.
2300 Apply all trnasforms first. */
2301 if (pass->type == SIMPLE_IPA_PASS)
2302 {
2303 bool applied = false;
2304 do_per_function (apply_ipa_transforms, (void *)&applied);
2305 if (applied)
2306 symtab_remove_unreachable_nodes (true, dump_file);
2307 /* Restore current_pass. */
2308 current_pass = pass;
2309 }
2310
2311 if (!quiet_flag && !cfun)
2312 fprintf (stderr, " <%s>", pass->name ? pass->name : "");
2313
2314 /* Note that the folders should only create gimple expressions.
2315 This is a hack until the new folder is ready. */
2316 in_gimple_form = (cfun && (cfun->curr_properties & PROP_trees)) != 0;
2317
2318 pass_init_dump_file (pass);
2319
2320 /* Run pre-pass verification. */
2321 execute_todo (pass->todo_flags_start);
2322
2323 #ifdef ENABLE_CHECKING
2324 do_per_function (verify_curr_properties,
2325 (void *)(size_t)pass->properties_required);
2326 #endif
2327
2328 /* If a timevar is present, start it. */
2329 if (pass->tv_id != TV_NONE)
2330 timevar_push (pass->tv_id);
2331
2332 /* Do it! */
2333 if (pass->execute)
2334 {
2335 todo_after = pass->execute ();
2336 do_per_function (clear_last_verified, NULL);
2337 }
2338
2339 /* Stop timevar. */
2340 if (pass->tv_id != TV_NONE)
2341 timevar_pop (pass->tv_id);
2342
2343 do_per_function (update_properties_after_pass, pass);
2344
2345 if (profile_report && cfun && (cfun->curr_properties & PROP_cfg))
2346 check_profile_consistency (pass->static_pass_number, 0, true);
2347
2348 /* Run post-pass cleanup and verification. */
2349 execute_todo (todo_after | pass->todo_flags_finish);
2350 if (profile_report && cfun && (cfun->curr_properties & PROP_cfg))
2351 check_profile_consistency (pass->static_pass_number, 1, true);
2352
2353 verify_interpass_invariants ();
2354 do_per_function (execute_function_dump, NULL);
2355 if (pass->type == IPA_PASS)
2356 {
2357 struct cgraph_node *node;
2358 FOR_EACH_FUNCTION_WITH_GIMPLE_BODY (node)
2359 node->ipa_transforms_to_apply.safe_push ((struct ipa_opt_pass_d *)pass);
2360 }
2361
2362 if (!current_function_decl)
2363 cgraph_process_new_functions ();
2364
2365 pass_fini_dump_file (pass);
2366
2367 if (pass->type != SIMPLE_IPA_PASS && pass->type != IPA_PASS)
2368 gcc_assert (!(cfun->curr_properties & PROP_trees)
2369 || pass->type != RTL_PASS);
2370
2371 current_pass = NULL;
2372
2373 return true;
2374 }
2375
2376 void
2377 execute_pass_list (struct opt_pass *pass)
2378 {
2379 do
2380 {
2381 gcc_assert (pass->type == GIMPLE_PASS
2382 || pass->type == RTL_PASS);
2383 if (execute_one_pass (pass) && pass->sub)
2384 execute_pass_list (pass->sub);
2385 pass = pass->next;
2386 }
2387 while (pass);
2388 }
2389
2390 /* Same as execute_pass_list but assume that subpasses of IPA passes
2391 are local passes. If SET is not NULL, write out summaries of only
2392 those node in SET. */
2393
2394 static void
2395 ipa_write_summaries_2 (struct opt_pass *pass, struct lto_out_decl_state *state)
2396 {
2397 while (pass)
2398 {
2399 struct ipa_opt_pass_d *ipa_pass = (struct ipa_opt_pass_d *)pass;
2400 gcc_assert (!current_function_decl);
2401 gcc_assert (!cfun);
2402 gcc_assert (pass->type == SIMPLE_IPA_PASS || pass->type == IPA_PASS);
2403 if (pass->type == IPA_PASS
2404 && ipa_pass->write_summary
2405 && (!pass->gate || pass->gate ()))
2406 {
2407 /* If a timevar is present, start it. */
2408 if (pass->tv_id)
2409 timevar_push (pass->tv_id);
2410
2411 pass_init_dump_file (pass);
2412
2413 ipa_pass->write_summary ();
2414
2415 pass_fini_dump_file (pass);
2416
2417 /* If a timevar is present, start it. */
2418 if (pass->tv_id)
2419 timevar_pop (pass->tv_id);
2420 }
2421
2422 if (pass->sub && pass->sub->type != GIMPLE_PASS)
2423 ipa_write_summaries_2 (pass->sub, state);
2424
2425 pass = pass->next;
2426 }
2427 }
2428
2429 /* Helper function of ipa_write_summaries. Creates and destroys the
2430 decl state and calls ipa_write_summaries_2 for all passes that have
2431 summaries. SET is the set of nodes to be written. */
2432
2433 static void
2434 ipa_write_summaries_1 (lto_symtab_encoder_t encoder)
2435 {
2436 struct lto_out_decl_state *state = lto_new_out_decl_state ();
2437 state->symtab_node_encoder = encoder;
2438
2439 lto_push_out_decl_state (state);
2440
2441 gcc_assert (!flag_wpa);
2442 ipa_write_summaries_2 (all_regular_ipa_passes, state);
2443 ipa_write_summaries_2 (all_lto_gen_passes, state);
2444
2445 gcc_assert (lto_get_out_decl_state () == state);
2446 lto_pop_out_decl_state ();
2447 lto_delete_out_decl_state (state);
2448 }
2449
2450 /* Write out summaries for all the nodes in the callgraph. */
2451
2452 void
2453 ipa_write_summaries (void)
2454 {
2455 lto_symtab_encoder_t encoder;
2456 int i, order_pos;
2457 struct varpool_node *vnode;
2458 struct cgraph_node **order;
2459
2460 if (!flag_generate_lto || seen_error ())
2461 return;
2462
2463 encoder = lto_symtab_encoder_new (false);
2464
2465 /* Create the callgraph set in the same order used in
2466 cgraph_expand_all_functions. This mostly facilitates debugging,
2467 since it causes the gimple file to be processed in the same order
2468 as the source code. */
2469 order = XCNEWVEC (struct cgraph_node *, cgraph_n_nodes);
2470 order_pos = ipa_reverse_postorder (order);
2471 gcc_assert (order_pos == cgraph_n_nodes);
2472
2473 for (i = order_pos - 1; i >= 0; i--)
2474 {
2475 struct cgraph_node *node = order[i];
2476
2477 if (cgraph_function_with_gimple_body_p (node))
2478 {
2479 /* When streaming out references to statements as part of some IPA
2480 pass summary, the statements need to have uids assigned and the
2481 following does that for all the IPA passes here. Naturally, this
2482 ordering then matches the one IPA-passes get in their stmt_fixup
2483 hooks. */
2484
2485 push_cfun (DECL_STRUCT_FUNCTION (node->symbol.decl));
2486 renumber_gimple_stmt_uids ();
2487 pop_cfun ();
2488 }
2489 if (node->analyzed)
2490 lto_set_symtab_encoder_in_partition (encoder, (symtab_node)node);
2491 }
2492
2493 FOR_EACH_DEFINED_VARIABLE (vnode)
2494 if ((!vnode->alias || vnode->alias_of))
2495 lto_set_symtab_encoder_in_partition (encoder, (symtab_node)vnode);
2496
2497 ipa_write_summaries_1 (compute_ltrans_boundary (encoder));
2498
2499 free (order);
2500 }
2501
2502 /* Same as execute_pass_list but assume that subpasses of IPA passes
2503 are local passes. If SET is not NULL, write out optimization summaries of
2504 only those node in SET. */
2505
2506 static void
2507 ipa_write_optimization_summaries_1 (struct opt_pass *pass, struct lto_out_decl_state *state)
2508 {
2509 while (pass)
2510 {
2511 struct ipa_opt_pass_d *ipa_pass = (struct ipa_opt_pass_d *)pass;
2512 gcc_assert (!current_function_decl);
2513 gcc_assert (!cfun);
2514 gcc_assert (pass->type == SIMPLE_IPA_PASS || pass->type == IPA_PASS);
2515 if (pass->type == IPA_PASS
2516 && ipa_pass->write_optimization_summary
2517 && (!pass->gate || pass->gate ()))
2518 {
2519 /* If a timevar is present, start it. */
2520 if (pass->tv_id)
2521 timevar_push (pass->tv_id);
2522
2523 pass_init_dump_file (pass);
2524
2525 ipa_pass->write_optimization_summary ();
2526
2527 pass_fini_dump_file (pass);
2528
2529 /* If a timevar is present, start it. */
2530 if (pass->tv_id)
2531 timevar_pop (pass->tv_id);
2532 }
2533
2534 if (pass->sub && pass->sub->type != GIMPLE_PASS)
2535 ipa_write_optimization_summaries_1 (pass->sub, state);
2536
2537 pass = pass->next;
2538 }
2539 }
2540
2541 /* Write all the optimization summaries for the cgraph nodes in SET. If SET is
2542 NULL, write out all summaries of all nodes. */
2543
2544 void
2545 ipa_write_optimization_summaries (lto_symtab_encoder_t encoder)
2546 {
2547 struct lto_out_decl_state *state = lto_new_out_decl_state ();
2548 lto_symtab_encoder_iterator lsei;
2549 state->symtab_node_encoder = encoder;
2550
2551 lto_push_out_decl_state (state);
2552 for (lsei = lsei_start_function_in_partition (encoder);
2553 !lsei_end_p (lsei); lsei_next_function_in_partition (&lsei))
2554 {
2555 struct cgraph_node *node = lsei_cgraph_node (lsei);
2556 /* When streaming out references to statements as part of some IPA
2557 pass summary, the statements need to have uids assigned.
2558
2559 For functions newly born at WPA stage we need to initialize
2560 the uids here. */
2561 if (node->analyzed
2562 && gimple_has_body_p (node->symbol.decl))
2563 {
2564 push_cfun (DECL_STRUCT_FUNCTION (node->symbol.decl));
2565 renumber_gimple_stmt_uids ();
2566 pop_cfun ();
2567 }
2568 }
2569
2570 gcc_assert (flag_wpa);
2571 ipa_write_optimization_summaries_1 (all_regular_ipa_passes, state);
2572 ipa_write_optimization_summaries_1 (all_lto_gen_passes, state);
2573
2574 gcc_assert (lto_get_out_decl_state () == state);
2575 lto_pop_out_decl_state ();
2576 lto_delete_out_decl_state (state);
2577 }
2578
2579 /* Same as execute_pass_list but assume that subpasses of IPA passes
2580 are local passes. */
2581
2582 static void
2583 ipa_read_summaries_1 (struct opt_pass *pass)
2584 {
2585 while (pass)
2586 {
2587 struct ipa_opt_pass_d *ipa_pass = (struct ipa_opt_pass_d *) pass;
2588
2589 gcc_assert (!current_function_decl);
2590 gcc_assert (!cfun);
2591 gcc_assert (pass->type == SIMPLE_IPA_PASS || pass->type == IPA_PASS);
2592
2593 if (pass->gate == NULL || pass->gate ())
2594 {
2595 if (pass->type == IPA_PASS && ipa_pass->read_summary)
2596 {
2597 /* If a timevar is present, start it. */
2598 if (pass->tv_id)
2599 timevar_push (pass->tv_id);
2600
2601 pass_init_dump_file (pass);
2602
2603 ipa_pass->read_summary ();
2604
2605 pass_fini_dump_file (pass);
2606
2607 /* Stop timevar. */
2608 if (pass->tv_id)
2609 timevar_pop (pass->tv_id);
2610 }
2611
2612 if (pass->sub && pass->sub->type != GIMPLE_PASS)
2613 ipa_read_summaries_1 (pass->sub);
2614 }
2615 pass = pass->next;
2616 }
2617 }
2618
2619
2620 /* Read all the summaries for all_regular_ipa_passes and all_lto_gen_passes. */
2621
2622 void
2623 ipa_read_summaries (void)
2624 {
2625 ipa_read_summaries_1 (all_regular_ipa_passes);
2626 ipa_read_summaries_1 (all_lto_gen_passes);
2627 }
2628
2629 /* Same as execute_pass_list but assume that subpasses of IPA passes
2630 are local passes. */
2631
2632 static void
2633 ipa_read_optimization_summaries_1 (struct opt_pass *pass)
2634 {
2635 while (pass)
2636 {
2637 struct ipa_opt_pass_d *ipa_pass = (struct ipa_opt_pass_d *) pass;
2638
2639 gcc_assert (!current_function_decl);
2640 gcc_assert (!cfun);
2641 gcc_assert (pass->type == SIMPLE_IPA_PASS || pass->type == IPA_PASS);
2642
2643 if (pass->gate == NULL || pass->gate ())
2644 {
2645 if (pass->type == IPA_PASS && ipa_pass->read_optimization_summary)
2646 {
2647 /* If a timevar is present, start it. */
2648 if (pass->tv_id)
2649 timevar_push (pass->tv_id);
2650
2651 pass_init_dump_file (pass);
2652
2653 ipa_pass->read_optimization_summary ();
2654
2655 pass_fini_dump_file (pass);
2656
2657 /* Stop timevar. */
2658 if (pass->tv_id)
2659 timevar_pop (pass->tv_id);
2660 }
2661
2662 if (pass->sub && pass->sub->type != GIMPLE_PASS)
2663 ipa_read_optimization_summaries_1 (pass->sub);
2664 }
2665 pass = pass->next;
2666 }
2667 }
2668
2669 /* Read all the summaries for all_regular_ipa_passes and all_lto_gen_passes. */
2670
2671 void
2672 ipa_read_optimization_summaries (void)
2673 {
2674 ipa_read_optimization_summaries_1 (all_regular_ipa_passes);
2675 ipa_read_optimization_summaries_1 (all_lto_gen_passes);
2676 }
2677
2678 /* Same as execute_pass_list but assume that subpasses of IPA passes
2679 are local passes. */
2680 void
2681 execute_ipa_pass_list (struct opt_pass *pass)
2682 {
2683 do
2684 {
2685 gcc_assert (!current_function_decl);
2686 gcc_assert (!cfun);
2687 gcc_assert (pass->type == SIMPLE_IPA_PASS || pass->type == IPA_PASS);
2688 if (execute_one_pass (pass) && pass->sub)
2689 {
2690 if (pass->sub->type == GIMPLE_PASS)
2691 {
2692 invoke_plugin_callbacks (PLUGIN_EARLY_GIMPLE_PASSES_START, NULL);
2693 do_per_function_toporder ((void (*)(void *))execute_pass_list,
2694 pass->sub);
2695 invoke_plugin_callbacks (PLUGIN_EARLY_GIMPLE_PASSES_END, NULL);
2696 }
2697 else if (pass->sub->type == SIMPLE_IPA_PASS
2698 || pass->sub->type == IPA_PASS)
2699 execute_ipa_pass_list (pass->sub);
2700 else
2701 gcc_unreachable ();
2702 }
2703 gcc_assert (!current_function_decl);
2704 cgraph_process_new_functions ();
2705 pass = pass->next;
2706 }
2707 while (pass);
2708 }
2709
2710 /* Execute stmt fixup hooks of all passes in PASS for NODE and STMTS. */
2711
2712 static void
2713 execute_ipa_stmt_fixups (struct opt_pass *pass,
2714 struct cgraph_node *node, gimple *stmts)
2715 {
2716 while (pass)
2717 {
2718 /* Execute all of the IPA_PASSes in the list. */
2719 if (pass->type == IPA_PASS
2720 && (!pass->gate || pass->gate ()))
2721 {
2722 struct ipa_opt_pass_d *ipa_pass = (struct ipa_opt_pass_d *) pass;
2723
2724 if (ipa_pass->stmt_fixup)
2725 {
2726 pass_init_dump_file (pass);
2727 /* If a timevar is present, start it. */
2728 if (pass->tv_id)
2729 timevar_push (pass->tv_id);
2730
2731 ipa_pass->stmt_fixup (node, stmts);
2732
2733 /* Stop timevar. */
2734 if (pass->tv_id)
2735 timevar_pop (pass->tv_id);
2736 pass_fini_dump_file (pass);
2737 }
2738 if (pass->sub)
2739 execute_ipa_stmt_fixups (pass->sub, node, stmts);
2740 }
2741 pass = pass->next;
2742 }
2743 }
2744
2745 /* Execute stmt fixup hooks of all IPA passes for NODE and STMTS. */
2746
2747 void
2748 execute_all_ipa_stmt_fixups (struct cgraph_node *node, gimple *stmts)
2749 {
2750 execute_ipa_stmt_fixups (all_regular_ipa_passes, node, stmts);
2751 }
2752
2753
2754 extern void debug_properties (unsigned int);
2755 extern void dump_properties (FILE *, unsigned int);
2756
2757 DEBUG_FUNCTION void
2758 dump_properties (FILE *dump, unsigned int props)
2759 {
2760 fprintf (dump, "Properties:\n");
2761 if (props & PROP_gimple_any)
2762 fprintf (dump, "PROP_gimple_any\n");
2763 if (props & PROP_gimple_lcf)
2764 fprintf (dump, "PROP_gimple_lcf\n");
2765 if (props & PROP_gimple_leh)
2766 fprintf (dump, "PROP_gimple_leh\n");
2767 if (props & PROP_cfg)
2768 fprintf (dump, "PROP_cfg\n");
2769 if (props & PROP_ssa)
2770 fprintf (dump, "PROP_ssa\n");
2771 if (props & PROP_no_crit_edges)
2772 fprintf (dump, "PROP_no_crit_edges\n");
2773 if (props & PROP_rtl)
2774 fprintf (dump, "PROP_rtl\n");
2775 if (props & PROP_gimple_lomp)
2776 fprintf (dump, "PROP_gimple_lomp\n");
2777 if (props & PROP_gimple_lcx)
2778 fprintf (dump, "PROP_gimple_lcx\n");
2779 if (props & PROP_cfglayout)
2780 fprintf (dump, "PROP_cfglayout\n");
2781 }
2782
2783 DEBUG_FUNCTION void
2784 debug_properties (unsigned int props)
2785 {
2786 dump_properties (stderr, props);
2787 }
2788
2789 /* Called by local passes to see if function is called by already processed nodes.
2790 Because we process nodes in topological order, this means that function is
2791 in recursive cycle or we introduced new direct calls. */
2792 bool
2793 function_called_by_processed_nodes_p (void)
2794 {
2795 struct cgraph_edge *e;
2796 for (e = cgraph_get_node (current_function_decl)->callers;
2797 e;
2798 e = e->next_caller)
2799 {
2800 if (e->caller->symbol.decl == current_function_decl)
2801 continue;
2802 if (!cgraph_function_with_gimple_body_p (e->caller))
2803 continue;
2804 if (TREE_ASM_WRITTEN (e->caller->symbol.decl))
2805 continue;
2806 if (!e->caller->process && !e->caller->global.inlined_to)
2807 break;
2808 }
2809 if (dump_file && e)
2810 {
2811 fprintf (dump_file, "Already processed call to:\n");
2812 dump_cgraph_node (dump_file, e->caller);
2813 }
2814 return e != NULL;
2815 }
2816
2817 #include "gt-passes.h"