]> git.ipfire.org Git - thirdparty/gcc.git/blame - gcc/passes.c
Remove trailing white spaces.
[thirdparty/gcc.git] / gcc / passes.c
CommitLineData
f6db1481
RH
1/* Top level of GCC compilers (cc1, cc1plus, etc.)
2 Copyright (C) 1987, 1988, 1989, 1992, 1993, 1994, 1995, 1996, 1997, 1998,
66647d44 3 1999, 2000, 2001, 2002, 2003, 2004, 2005, 2006, 2007, 2008, 2009
e53a16e7 4 Free Software Foundation, Inc.
f6db1481
RH
5
6This file is part of GCC.
7
8GCC is free software; you can redistribute it and/or modify it under
9the terms of the GNU General Public License as published by the Free
9dcd6f09 10Software Foundation; either version 3, or (at your option) any later
f6db1481
RH
11version.
12
13GCC is distributed in the hope that it will be useful, but WITHOUT ANY
14WARRANTY; without even the implied warranty of MERCHANTABILITY or
15FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License
16for more details.
17
18You should have received a copy of the GNU General Public License
9dcd6f09
NC
19along with GCC; see the file COPYING3. If not see
20<http://www.gnu.org/licenses/>. */
f6db1481
RH
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#undef FLOAT /* This is for hpux. They should change hpux. */
29#undef FFS /* Some systems define this in param.h. */
30#include "system.h"
31#include "coretypes.h"
32#include "tm.h"
33#include <signal.h>
34
35#ifdef HAVE_SYS_RESOURCE_H
36# include <sys/resource.h>
37#endif
38
39#ifdef HAVE_SYS_TIMES_H
40# include <sys/times.h>
41#endif
42
43#include "line-map.h"
44#include "input.h"
45#include "tree.h"
46#include "rtl.h"
47#include "tm_p.h"
48#include "flags.h"
49#include "insn-attr.h"
50#include "insn-config.h"
51#include "insn-flags.h"
52#include "hard-reg-set.h"
53#include "recog.h"
54#include "output.h"
55#include "except.h"
56#include "function.h"
57#include "toplev.h"
58#include "expr.h"
59#include "basic-block.h"
60#include "intl.h"
61#include "ggc.h"
62#include "graph.h"
f6db1481
RH
63#include "regs.h"
64#include "timevar.h"
65#include "diagnostic.h"
66#include "params.h"
67#include "reload.h"
68#include "dwarf2asm.h"
69#include "integrate.h"
70#include "real.h"
71#include "debug.h"
72#include "target.h"
73#include "langhooks.h"
74#include "cfglayout.h"
75#include "cfgloop.h"
76#include "hosthooks.h"
77#include "cgraph.h"
78#include "opts.h"
79#include "coverage.h"
80#include "value-prof.h"
ef330312
PB
81#include "tree-inline.h"
82#include "tree-flow.h"
2f8e398b 83#include "tree-pass.h"
9f8628ba 84#include "tree-dump.h"
6fb5fa3c 85#include "df.h"
45a80bb9 86#include "predict.h"
d7f09764 87#include "lto-streamer.h"
f6db1481
RH
88
89#if defined (DWARF2_UNWIND_INFO) || defined (DWARF2_DEBUGGING_INFO)
90#include "dwarf2out.h"
91#endif
92
97b0ade3 93#if defined (DBX_DEBUGGING_INFO) || defined (XCOFF_DEBUGGING_INFO)
f6db1481
RH
94#include "dbxout.h"
95#endif
96
97#ifdef SDB_DEBUGGING_INFO
98#include "sdbout.h"
99#endif
100
101#ifdef XCOFF_DEBUGGING_INFO
102#include "xcoffout.h" /* Needed for external data
103 declarations for e.g. AIX 4.x. */
104#endif
105
6fb5fa3c
DB
106/* This is used for debugging. It allows the current pass to printed
107 from anywhere in compilation. */
8ddbbcae 108struct opt_pass *current_pass;
6fb5fa3c
DB
109
110/* Call from anywhere to find out what pass this is. Useful for
111 printing out debugging information deep inside an service
112 routine. */
113void
114print_current_pass (FILE *file)
115{
116 if (current_pass)
b8698a0f 117 fprintf (file, "current pass = %s (%d)\n",
6fb5fa3c
DB
118 current_pass->name, current_pass->static_pass_number);
119 else
120 fprintf (file, "no current pass.\n");
121}
122
123
124/* Call from the debugger to get the current pass name. */
125void
126debug_pass (void)
127{
128 print_current_pass (stderr);
b8698a0f 129}
6fb5fa3c
DB
130
131
132
ef330312
PB
133/* Global variables used to communicate with passes. */
134int dump_flags;
135bool in_gimple_form;
b02b9b53 136bool first_pass_instance;
f6db1481 137
f6db1481
RH
138
139/* This is called from various places for FUNCTION_DECL, VAR_DECL,
140 and TYPE_DECL nodes.
141
142 This does nothing for local (non-static) variables, unless the
0e6df31e
GK
143 variable is a register variable with DECL_ASSEMBLER_NAME set. In
144 that case, or if the variable is not an automatic, it sets up the
145 RTL and outputs any assembler code (label definition, storage
146 allocation and initialization).
f6db1481 147
0e6df31e 148 DECL is the declaration. TOP_LEVEL is nonzero
f6db1481
RH
149 if this declaration is not within a function. */
150
151void
152rest_of_decl_compilation (tree decl,
f6db1481
RH
153 int top_level,
154 int at_end)
155{
156 /* We deferred calling assemble_alias so that we could collect
157 other attributes such as visibility. Emit the alias now. */
158 {
159 tree alias;
160 alias = lookup_attribute ("alias", DECL_ATTRIBUTES (decl));
161 if (alias)
162 {
163 alias = TREE_VALUE (TREE_VALUE (alias));
164 alias = get_identifier (TREE_STRING_POINTER (alias));
165 assemble_alias (decl, alias);
166 }
167 }
168
0e6df31e
GK
169 /* Can't defer this, because it needs to happen before any
170 later function definitions are processed. */
820cc88f 171 if (DECL_ASSEMBLER_NAME_SET_P (decl) && DECL_REGISTER (decl))
0e6df31e
GK
172 make_decl_rtl (decl);
173
f6db1481
RH
174 /* Forward declarations for nested functions are not "external",
175 but we need to treat them as if they were. */
176 if (TREE_STATIC (decl) || DECL_EXTERNAL (decl)
177 || TREE_CODE (decl) == FUNCTION_DECL)
178 {
179 timevar_push (TV_VARCONST);
180
f6db1481
RH
181 /* Don't output anything when a tentative file-scope definition
182 is seen. But at end of compilation, do output code for them.
183
7e8b322a 184 We do output all variables and rely on
f6db1481
RH
185 callgraph code to defer them except for forward declarations
186 (see gcc.c-torture/compile/920624-1.c) */
187 if ((at_end
188 || !DECL_DEFER_OUTPUT (decl)
cd9c7bd2 189 || DECL_INITIAL (decl))
f6db1481
RH
190 && !DECL_EXTERNAL (decl))
191 {
db5f8b93 192 if (TREE_CODE (decl) != FUNCTION_DECL)
8a4a83ed 193 varpool_finalize_decl (decl);
f6db1481
RH
194 else
195 assemble_variable (decl, top_level, at_end, 0);
196 }
197
198#ifdef ASM_FINISH_DECLARE_OBJECT
199 if (decl == last_assemble_variable_decl)
200 {
201 ASM_FINISH_DECLARE_OBJECT (asm_out_file, decl,
202 top_level, at_end);
203 }
204#endif
205
206 timevar_pop (TV_VARCONST);
207 }
ef11c839
SB
208 else if (TREE_CODE (decl) == TYPE_DECL
209 /* Like in rest_of_type_compilation, avoid confusing the debug
210 information machinery when there are errors. */
211 && !(sorrycount || errorcount))
f6db1481
RH
212 {
213 timevar_push (TV_SYMOUT);
214 debug_hooks->type_decl (decl, !top_level);
215 timevar_pop (TV_SYMOUT);
216 }
e4d5432a 217
aabcd309 218 /* Let cgraph know about the existence of variables. */
e4d5432a 219 if (TREE_CODE (decl) == VAR_DECL && !DECL_EXTERNAL (decl))
8a4a83ed 220 varpool_node (decl);
f6db1481
RH
221}
222
223/* Called after finishing a record, union or enumeral type. */
224
225void
226rest_of_type_compilation (tree type, int toplev)
227{
228 /* Avoid confusing the debug information machinery when there are
229 errors. */
230 if (errorcount != 0 || sorrycount != 0)
231 return;
232
233 timevar_push (TV_SYMOUT);
234 debug_hooks->type_decl (TYPE_STUB_DECL (type), !toplev);
235 timevar_pop (TV_SYMOUT);
236}
237
ef330312 238\f
f6db1481 239
ef330312
PB
240void
241finish_optimization_passes (void)
f6db1481 242{
09639a83 243 int i;
ef330312
PB
244 struct dump_file_info *dfi;
245 char *name;
f6db1481 246
ef330312
PB
247 timevar_push (TV_DUMP);
248 if (profile_arc_flag || flag_test_coverage || flag_branch_probabilities)
f6db1481 249 {
8ddbbcae 250 dump_file = dump_begin (pass_profile.pass.static_pass_number, NULL);
ef330312
PB
251 end_branch_prob ();
252 if (dump_file)
8ddbbcae 253 dump_end (pass_profile.pass.static_pass_number, dump_file);
f6db1481 254 }
f6db1481 255
ef330312 256 if (optimize > 0)
f6db1481 257 {
8ddbbcae 258 dump_file = dump_begin (pass_combine.pass.static_pass_number, NULL);
ef330312 259 if (dump_file)
f6db1481 260 {
ef330312 261 dump_combine_total_stats (dump_file);
8ddbbcae 262 dump_end (pass_combine.pass.static_pass_number, dump_file);
f6db1481
RH
263 }
264 }
265
ef330312
PB
266 /* Do whatever is necessary to finish printing the graphs. */
267 if (graph_dump_format != no_graph)
268 for (i = TDI_end; (dfi = get_dump_file_info (i)) != NULL; ++i)
269 if (dump_initialized_p (i)
5e34206b 270 && (dfi->flags & TDF_GRAPH) != 0
ef330312 271 && (name = get_dump_file_name (i)) != NULL)
5e34206b
JJ
272 {
273 finish_graph_dump_file (name);
274 free (name);
275 }
f6db1481 276
ef330312 277 timevar_pop (TV_DUMP);
f6db1481 278}
f6db1481 279
ef330312
PB
280static bool
281gate_rest_of_compilation (void)
f6db1481 282{
ef330312
PB
283 /* Early return if there were errors. We can run afoul of our
284 consistency checks, and there's not really much point in fixing them. */
285 return !(rtl_dump_and_exit || flag_syntax_only || errorcount || sorrycount);
f6db1481
RH
286}
287
8ddbbcae 288struct gimple_opt_pass pass_rest_of_compilation =
f6db1481 289{
8ddbbcae
JH
290 {
291 GIMPLE_PASS,
cf400ddb 292 "*rest_of_compilation", /* name */
ef330312
PB
293 gate_rest_of_compilation, /* gate */
294 NULL, /* execute */
295 NULL, /* sub */
296 NULL, /* next */
297 0, /* static_pass_number */
298 TV_REST_OF_COMPILATION, /* tv_id */
299 PROP_rtl, /* properties_required */
300 0, /* properties_provided */
301 0, /* properties_destroyed */
302 0, /* todo_flags_start */
8ddbbcae
JH
303 TODO_ggc_collect /* todo_flags_finish */
304 }
ef330312 305};
f6db1481 306
ef330312
PB
307static bool
308gate_postreload (void)
309{
310 return reload_completed;
f6db1481
RH
311}
312
8ddbbcae 313struct rtl_opt_pass pass_postreload =
f6db1481 314{
8ddbbcae
JH
315 {
316 RTL_PASS,
e0a42b0f 317 "*all-postreload", /* name */
ef330312
PB
318 gate_postreload, /* gate */
319 NULL, /* execute */
320 NULL, /* sub */
321 NULL, /* next */
322 0, /* static_pass_number */
7072a650 323 TV_NONE, /* tv_id */
ef330312
PB
324 PROP_rtl, /* properties_required */
325 0, /* properties_provided */
326 0, /* properties_destroyed */
327 0, /* todo_flags_start */
8ddbbcae
JH
328 TODO_ggc_collect | TODO_verify_rtl_sharing /* todo_flags_finish */
329 }
ef330312 330};
f6db1481 331
97b0ade3 332
f6db1481 333
ef330312 334/* The root of the compilation pass tree, once constructed. */
d7f09764
DN
335struct opt_pass *all_passes, *all_small_ipa_passes, *all_lowering_passes,
336 *all_regular_ipa_passes, *all_lto_gen_passes;
f6db1481 337
9fe0cb7d
RG
338/* A map from static pass id to optimization pass. */
339struct opt_pass **passes_by_id;
340int passes_by_id_size;
341
342/* Set the static pass number of pass PASS to ID and record that
343 in the mapping from static pass number to pass. */
344
345static void
346set_pass_for_id (int id, struct opt_pass *pass)
347{
348 pass->static_pass_number = id;
349 if (passes_by_id_size <= id)
350 {
d3bfe4de 351 passes_by_id = XRESIZEVEC (struct opt_pass *, passes_by_id, id + 1);
9fe0cb7d
RG
352 memset (passes_by_id + passes_by_id_size, 0,
353 (id + 1 - passes_by_id_size) * sizeof (void *));
354 passes_by_id_size = id + 1;
355 }
356 passes_by_id[id] = pass;
357}
358
359/* Return the pass with the static pass number ID. */
360
361struct opt_pass *
362get_pass_for_id (int id)
363{
364 if (id >= passes_by_id_size)
365 return NULL;
366 return passes_by_id[id];
367}
368
ef330312
PB
369/* Iterate over the pass tree allocating dump file numbers. We want
370 to do this depth first, and independent of whether the pass is
371 enabled or not. */
f6db1481 372
68a607d8 373void
9e016eba 374register_one_dump_file (struct opt_pass *pass)
ef330312
PB
375{
376 char *dot_name, *flag_name, *glob_name;
e0a42b0f 377 const char *name, *prefix;
ef330312 378 char num[10];
9fe0cb7d 379 int flags, id;
f6db1481 380
ef330312
PB
381 /* See below in next_pass_1. */
382 num[0] = '\0';
383 if (pass->static_pass_number != -1)
384 sprintf (num, "%d", ((int) pass->static_pass_number < 0
385 ? 1 : pass->static_pass_number));
f6db1481 386
e0a42b0f
ZC
387 /* The name is both used to identify the pass for the purposes of plugins,
388 and to specify dump file name and option.
389 The latter two might want something short which is not quite unique; for
390 that reason, we may have a disambiguating prefix, followed by a space
391 to mark the start of the following dump file name / option string. */
392 name = strchr (pass->name, ' ');
393 name = name ? name + 1 : pass->name;
394 dot_name = concat (".", name, num, NULL);
17653c00 395 if (pass->type == SIMPLE_IPA_PASS || pass->type == IPA_PASS)
bbbe4e7b 396 prefix = "ipa-", flags = TDF_IPA;
9e016eba 397 else if (pass->type == GIMPLE_PASS)
bbbe4e7b 398 prefix = "tree-", flags = TDF_TREE;
f6db1481 399 else
bbbe4e7b
PB
400 prefix = "rtl-", flags = TDF_RTL;
401
e0a42b0f
ZC
402 flag_name = concat (prefix, name, num, NULL);
403 glob_name = concat (prefix, name, NULL);
9fe0cb7d
RG
404 id = dump_register (dot_name, flag_name, glob_name, flags);
405 set_pass_for_id (id, pass);
97b0ade3
PB
406}
407
bbbe4e7b
PB
408/* Recursive worker function for register_dump_files. */
409
b8698a0f 410static int
9e016eba 411register_dump_files_1 (struct opt_pass *pass, int properties)
97b0ade3 412{
ef330312
PB
413 do
414 {
bbbe4e7b
PB
415 int new_properties = (properties | pass->properties_provided)
416 & ~pass->properties_destroyed;
f6db1481 417
8e352cd3 418 if (pass->name && pass->name[0] != '*')
9e016eba 419 register_one_dump_file (pass);
f6db1481 420
ef330312 421 if (pass->sub)
9e016eba 422 new_properties = register_dump_files_1 (pass->sub, new_properties);
f6db1481 423
ef330312
PB
424 /* If we have a gate, combine the properties that we could have with
425 and without the pass being examined. */
426 if (pass->gate)
427 properties &= new_properties;
428 else
429 properties = new_properties;
f6db1481 430
ef330312 431 pass = pass->next;
f6db1481 432 }
ef330312 433 while (pass);
f6db1481 434
ef330312 435 return properties;
f6db1481 436}
f9957958 437
b8698a0f 438/* Register the dump files for the pipeline starting at PASS.
9e016eba
JH
439 PROPERTIES reflects the properties that are guaranteed to be available at
440 the beginning of the pipeline. */
bbbe4e7b 441
b8698a0f 442static void
9e016eba 443register_dump_files (struct opt_pass *pass,int properties)
bbbe4e7b
PB
444{
445 pass->properties_required |= properties;
9e016eba 446 register_dump_files_1 (pass, properties);
bbbe4e7b
PB
447}
448
b80b0fd9
ST
449/* Look at the static_pass_number and duplicate the pass
450 if it is already added to a list. */
f9957958 451
b80b0fd9
ST
452static struct opt_pass *
453make_pass_instance (struct opt_pass *pass, bool track_duplicates)
f6db1481 454{
ef330312
PB
455 /* A nonzero static_pass_number indicates that the
456 pass is already in the list. */
457 if (pass->static_pass_number)
458 {
82d6e6fc 459 struct opt_pass *new_pass;
f6db1481 460
82d6e6fc
KG
461 new_pass = XNEW (struct opt_pass);
462 memcpy (new_pass, pass, sizeof (*new_pass));
463 new_pass->next = NULL;
f6db1481 464
82d6e6fc 465 new_pass->todo_flags_start &= ~TODO_mark_first_instance;
b02b9b53 466
ef330312
PB
467 /* Indicate to register_dump_files that this pass has duplicates,
468 and so it should rename the dump file. The first instance will
469 be -1, and be number of duplicates = -static_pass_number - 1.
470 Subsequent instances will be > 0 and just the duplicate number. */
e0a42b0f 471 if ((pass->name && pass->name[0] != '*') || track_duplicates)
ef330312
PB
472 {
473 pass->static_pass_number -= 1;
82d6e6fc 474 new_pass->static_pass_number = -pass->static_pass_number;
ef330312 475 }
b80b0fd9 476 return new_pass;
ef330312
PB
477 }
478 else
479 {
b02b9b53 480 pass->todo_flags_start |= TODO_mark_first_instance;
ef330312 481 pass->static_pass_number = -1;
b8698a0f
L
482 }
483 return pass;
b80b0fd9
ST
484}
485
486/* Add a pass to the pass list. Duplicate the pass if it's already
487 in the list. */
488
489static struct opt_pass **
490next_pass_1 (struct opt_pass **list, struct opt_pass *pass)
491{
e0a42b0f
ZC
492 /* Every pass should have a name so that plugins can refer to them. */
493 gcc_assert (pass->name != NULL);
494
b80b0fd9 495 *list = make_pass_instance (pass, false);
b8698a0f 496
ef330312 497 return &(*list)->next;
f6db1481
RH
498}
499
b80b0fd9
ST
500/* List node for an inserted pass instance. We need to keep track of all
501 the newly-added pass instances (with 'added_pass_nodes' defined below)
502 so that we can register their dump files after pass-positioning is finished.
503 Registering dumping files needs to be post-processed or the
504 static_pass_number of the opt_pass object would be modified and mess up
505 the dump file names of future pass instances to be added. */
506
507struct pass_list_node
508{
509 struct opt_pass *pass;
510 struct pass_list_node *next;
511};
512
513static struct pass_list_node *added_pass_nodes = NULL;
514static struct pass_list_node *prev_added_pass_node;
515
b8698a0f 516/* Insert the pass at the proper position. Return true if the pass
b80b0fd9
ST
517 is successfully added.
518
519 NEW_PASS_INFO - new pass to be inserted
520 PASS_LIST - root of the pass list to insert the new pass to */
521
522static bool
523position_pass (struct register_pass_info *new_pass_info,
524 struct opt_pass **pass_list)
525{
526 struct opt_pass *pass = *pass_list, *prev_pass = NULL;
527 bool success = false;
528
529 for ( ; pass; prev_pass = pass, pass = pass->next)
530 {
531 /* Check if the current pass is of the same type as the new pass and
532 matches the name and the instance number of the reference pass. */
533 if (pass->type == new_pass_info->pass->type
534 && pass->name
535 && !strcmp (pass->name, new_pass_info->reference_pass_name)
536 && ((new_pass_info->ref_pass_instance_number == 0)
537 || (new_pass_info->ref_pass_instance_number ==
538 pass->static_pass_number)
539 || (new_pass_info->ref_pass_instance_number == 1
540 && pass->todo_flags_start & TODO_mark_first_instance)))
541 {
542 struct opt_pass *new_pass;
543 struct pass_list_node *new_pass_node;
544
545 new_pass = make_pass_instance (new_pass_info->pass, true);
b8698a0f 546
b80b0fd9
ST
547 /* Insert the new pass instance based on the positioning op. */
548 switch (new_pass_info->pos_op)
549 {
550 case PASS_POS_INSERT_AFTER:
551 new_pass->next = pass->next;
552 pass->next = new_pass;
553
554 /* Skip newly inserted pass to avoid repeated
555 insertions in the case where the new pass and the
556 existing one have the same name. */
b8698a0f 557 pass = new_pass;
b80b0fd9
ST
558 break;
559 case PASS_POS_INSERT_BEFORE:
560 new_pass->next = pass;
561 if (prev_pass)
562 prev_pass->next = new_pass;
563 else
564 *pass_list = new_pass;
565 break;
566 case PASS_POS_REPLACE:
567 new_pass->next = pass->next;
568 if (prev_pass)
569 prev_pass->next = new_pass;
570 else
571 *pass_list = new_pass;
572 new_pass->sub = pass->sub;
573 new_pass->tv_id = pass->tv_id;
574 pass = new_pass;
575 break;
576 default:
577 error ("Invalid pass positioning operation");
578 return false;
579 }
580
581 /* Save the newly added pass (instance) in the added_pass_nodes
582 list so that we can register its dump file later. Note that
583 we cannot register the dump file now because doing so will modify
584 the static_pass_number of the opt_pass object and therefore
585 mess up the dump file name of future instances. */
586 new_pass_node = XCNEW (struct pass_list_node);
587 new_pass_node->pass = new_pass;
588 if (!added_pass_nodes)
589 added_pass_nodes = new_pass_node;
590 else
591 prev_added_pass_node->next = new_pass_node;
592 prev_added_pass_node = new_pass_node;
593
594 success = true;
595 }
596
597 if (pass->sub && position_pass (new_pass_info, &pass->sub))
598 success = true;
599 }
600
601 return success;
602}
603
604/* Hooks a new pass into the pass lists.
605
606 PASS_INFO - pass information that specifies the opt_pass object,
607 reference pass, instance number, and how to position
608 the pass */
609
610void
611register_pass (struct register_pass_info *pass_info)
612{
b9e467a2
BS
613 /* The checks below could fail in buggy plugins. Existing GCC
614 passes should never fail these checks, so we mention plugin in
615 the messages. */
b80b0fd9 616 if (!pass_info->pass)
b9e467a2
BS
617 fatal_error ("plugin cannot register a missing pass");
618
619 if (!pass_info->pass->name)
620 fatal_error ("plugin cannot register an unnamed pass");
b80b0fd9
ST
621
622 if (!pass_info->reference_pass_name)
b9e467a2
BS
623 fatal_error
624 ("plugin cannot register pass %qs without reference pass name",
625 pass_info->pass->name);
b80b0fd9 626
b9e467a2
BS
627 /* Try to insert the new pass to the pass lists. We need to check
628 all three lists as the reference pass could be in one (or all) of
629 them. */
b80b0fd9 630 if (!position_pass (pass_info, &all_lowering_passes)
d7f09764
DN
631 && !position_pass (pass_info, &all_small_ipa_passes)
632 && !position_pass (pass_info, &all_regular_ipa_passes)
633 && !position_pass (pass_info, &all_lto_gen_passes)
b80b0fd9 634 && !position_pass (pass_info, &all_passes))
b9e467a2
BS
635 fatal_error
636 ("pass %qs not found but is referenced by new pass %qs",
637 pass_info->reference_pass_name, pass_info->pass->name);
b80b0fd9
ST
638 else
639 {
640 /* OK, we have successfully inserted the new pass. We need to register
641 the dump files for the newly added pass and its duplicates (if any).
642 Because the registration of plugin/backend passes happens after the
643 command-line options are parsed, the options that specify single
644 pass dumping (e.g. -fdump-tree-PASSNAME) cannot be used for new
645 passes. Therefore we currently can only enable dumping of
646 new passes when the 'dump-all' flags (e.g. -fdump-tree-all)
647 are specified. While doing so, we also delete the pass_list_node
648 objects created during pass positioning. */
649 while (added_pass_nodes)
650 {
651 struct pass_list_node *next_node = added_pass_nodes->next;
652 enum tree_dump_index tdi;
653 register_one_dump_file (added_pass_nodes->pass);
654 if (added_pass_nodes->pass->type == SIMPLE_IPA_PASS
655 || added_pass_nodes->pass->type == IPA_PASS)
656 tdi = TDI_ipa_all;
657 else if (added_pass_nodes->pass->type == GIMPLE_PASS)
658 tdi = TDI_tree_all;
659 else
660 tdi = TDI_rtl_all;
661 /* Check if dump-all flag is specified. */
662 if (get_dump_file_info (tdi)->state)
663 get_dump_file_info (added_pass_nodes->pass->static_pass_number)
664 ->state = get_dump_file_info (tdi)->state;
665 XDELETE (added_pass_nodes);
666 added_pass_nodes = next_node;
667 }
668 }
669}
6fb5fa3c 670
dd97d271
DN
671/* Construct the pass tree. The sequencing of passes is driven by
672 the cgraph routines:
673
674 cgraph_finalize_compilation_unit ()
675 for each node N in the cgraph
676 cgraph_analyze_function (N)
677 cgraph_lower_function (N) -> all_lowering_passes
678
679 If we are optimizing, cgraph_optimize is then invoked:
680
681 cgraph_optimize ()
d7f09764 682 ipa_passes () -> all_small_ipa_passes
dd97d271
DN
683 cgraph_expand_all_functions ()
684 for each node N in the cgraph
685 cgraph_expand_function (N)
e89d6010 686 tree_rest_of_compilation (DECL (N)) -> all_passes
dd97d271 687*/
97b0ade3 688
ef330312
PB
689void
690init_optimization_passes (void)
691{
8ddbbcae 692 struct opt_pass **p;
ef330312 693
8ddbbcae 694#define NEXT_PASS(PASS) (p = next_pass_1 (p, &((PASS).pass)))
873aa8f5 695
f1bd2543
JH
696 /* All passes needed to lower the function into shape optimizers can
697 operate on. These passes are always run first on the function, but
698 backend might produce already lowered functions that are not processed
699 by these passes. */
ef330312 700 p = &all_lowering_passes;
a406865a
RG
701 NEXT_PASS (pass_warn_unused_result);
702 NEXT_PASS (pass_diagnose_omp_blocks);
ef330312 703 NEXT_PASS (pass_mudflap_1);
953ff289 704 NEXT_PASS (pass_lower_omp);
ef330312 705 NEXT_PASS (pass_lower_cf);
a24549d4 706 NEXT_PASS (pass_refactor_eh);
ef330312
PB
707 NEXT_PASS (pass_lower_eh);
708 NEXT_PASS (pass_build_cfg);
709 NEXT_PASS (pass_lower_complex_O0);
710 NEXT_PASS (pass_lower_vector);
711 NEXT_PASS (pass_warn_function_return);
2dee695b 712 NEXT_PASS (pass_build_cgraph_edges);
873aa8f5 713 NEXT_PASS (pass_inline_parameters);
ef330312
PB
714 *p = NULL;
715
7e8b322a 716 /* Interprocedural optimization passes. */
d7f09764 717 p = &all_small_ipa_passes;
f1bd2543
JH
718 NEXT_PASS (pass_ipa_function_and_variable_visibility);
719 NEXT_PASS (pass_ipa_early_inline);
720 {
8ddbbcae 721 struct opt_pass **p = &pass_ipa_early_inline.pass.sub;
f1bd2543
JH
722 NEXT_PASS (pass_early_inline);
723 NEXT_PASS (pass_inline_parameters);
724 NEXT_PASS (pass_rebuild_cgraph_edges);
725 }
4537ec0c 726 NEXT_PASS (pass_ipa_free_lang_data);
f1bd2543
JH
727 NEXT_PASS (pass_early_local_passes);
728 {
8ddbbcae 729 struct opt_pass **p = &pass_early_local_passes.pass.sub;
6f1873a1 730 NEXT_PASS (pass_fixup_cfg);
f1bd2543
JH
731 NEXT_PASS (pass_tree_profile);
732 NEXT_PASS (pass_cleanup_cfg);
733 NEXT_PASS (pass_init_datastructures);
734 NEXT_PASS (pass_expand_omp);
c72321c9
JH
735
736 NEXT_PASS (pass_referenced_vars);
c72321c9 737 NEXT_PASS (pass_build_ssa);
2dc74010 738 NEXT_PASS (pass_early_warn_uninitialized);
d7f09764
DN
739 /* Note that it is not strictly necessary to schedule an early
740 inline pass here. However, some test cases (e.g.,
741 g++.dg/other/p334435.C g++.dg/other/i386-1.C) expect extern
742 inline functions to be inlined even at -O0. This does not
743 happen during the first early inline pass. */
744 NEXT_PASS (pass_rebuild_cgraph_edges);
745 NEXT_PASS (pass_early_inline);
f1bd2543
JH
746 NEXT_PASS (pass_all_early_optimizations);
747 {
8ddbbcae 748 struct opt_pass **p = &pass_all_early_optimizations.pass.sub;
133f9369 749 NEXT_PASS (pass_remove_cgraph_callee_edges);
f1bd2543
JH
750 NEXT_PASS (pass_rename_ssa_copies);
751 NEXT_PASS (pass_ccp);
752 NEXT_PASS (pass_forwprop);
6b8ed145
RG
753 /* pass_build_ealias is a dummy pass that ensures that we
754 execute TODO_rebuild_alias at this point. Re-building
755 alias information also rewrites no longer addressed
756 locals into SSA form if possible. */
757 NEXT_PASS (pass_build_ealias);
029f45bd 758 NEXT_PASS (pass_sra_early);
f1bd2543
JH
759 NEXT_PASS (pass_copy_prop);
760 NEXT_PASS (pass_merge_phi);
11b08ee9 761 NEXT_PASS (pass_cd_dce);
07ffa034 762 NEXT_PASS (pass_early_ipa_sra);
f1bd2543 763 NEXT_PASS (pass_tail_recursion);
b6e99746 764 NEXT_PASS (pass_convert_switch);
a8da523f 765 NEXT_PASS (pass_cleanup_eh);
45a80bb9 766 NEXT_PASS (pass_profile);
33977f81 767 NEXT_PASS (pass_local_pure_const);
f1bd2543 768 }
c72321c9 769 NEXT_PASS (pass_release_ssa_names);
f1bd2543 770 NEXT_PASS (pass_rebuild_cgraph_edges);
b91bc349 771 NEXT_PASS (pass_inline_parameters);
f1bd2543
JH
772 }
773 NEXT_PASS (pass_ipa_increase_alignment);
43d861a5 774 NEXT_PASS (pass_ipa_matrix_reorg);
d7f09764
DN
775 *p = NULL;
776
777 p = &all_regular_ipa_passes;
b20996ff 778 NEXT_PASS (pass_ipa_whole_program_visibility);
f1bd2543
JH
779 NEXT_PASS (pass_ipa_cp);
780 NEXT_PASS (pass_ipa_inline);
781 NEXT_PASS (pass_ipa_reference);
b8698a0f 782 NEXT_PASS (pass_ipa_pure_const);
f1bd2543
JH
783 NEXT_PASS (pass_ipa_type_escape);
784 NEXT_PASS (pass_ipa_pta);
d7f09764
DN
785 NEXT_PASS (pass_ipa_struct_reorg);
786 *p = NULL;
787
788 p = &all_lto_gen_passes;
789 NEXT_PASS (pass_ipa_lto_gimple_out);
790 NEXT_PASS (pass_ipa_lto_wpa_fixup);
791 NEXT_PASS (pass_ipa_lto_finish_out); /* This must be the last LTO pass. */
7a388ee4
JH
792 *p = NULL;
793
b3f7d793
DN
794 /* These passes are run after IPA passes on every function that is being
795 output to the assembler file. */
ef330312 796 p = &all_passes;
1d65f45c 797 NEXT_PASS (pass_lower_eh_dispatch);
ef330312 798 NEXT_PASS (pass_all_optimizations);
f1bd2543 799 {
8ddbbcae 800 struct opt_pass **p = &pass_all_optimizations.pass.sub;
133f9369 801 NEXT_PASS (pass_remove_cgraph_callee_edges);
11b08ee9
RG
802 /* Initial scalar cleanups before alias computation.
803 They ensure memory accesses are not indirect wherever possible. */
7299cb99 804 NEXT_PASS (pass_strip_predict_hints);
11b08ee9 805 NEXT_PASS (pass_update_address_taken);
f1bd2543 806 NEXT_PASS (pass_rename_ssa_copies);
d6e840ee 807 NEXT_PASS (pass_complete_unrolli);
f1bd2543 808 NEXT_PASS (pass_ccp);
e2081a1d 809 NEXT_PASS (pass_forwprop);
11b08ee9
RG
810 NEXT_PASS (pass_call_cdce);
811 /* pass_build_alias is a dummy pass that ensures that we
812 execute TODO_rebuild_alias at this point. Re-building
813 alias information also rewrites no longer addressed
814 locals into SSA form if possible. */
815 NEXT_PASS (pass_build_alias);
816 NEXT_PASS (pass_return_slot);
3b48ccbc 817 NEXT_PASS (pass_phiprop);
f1bd2543 818 NEXT_PASS (pass_fre);
f1bd2543
JH
819 NEXT_PASS (pass_copy_prop);
820 NEXT_PASS (pass_merge_phi);
821 NEXT_PASS (pass_vrp);
822 NEXT_PASS (pass_dce);
a5828d1e 823 NEXT_PASS (pass_cselim);
18d08014 824 NEXT_PASS (pass_tree_ifcombine);
f1bd2543 825 NEXT_PASS (pass_phiopt);
f1bd2543 826 NEXT_PASS (pass_tail_recursion);
f1bd2543
JH
827 NEXT_PASS (pass_ch);
828 NEXT_PASS (pass_stdarg);
829 NEXT_PASS (pass_lower_complex);
830 NEXT_PASS (pass_sra);
f1bd2543 831 NEXT_PASS (pass_rename_ssa_copies);
44e10129
MM
832 /* The dom pass will also resolve all __builtin_constant_p calls
833 that are still there to 0. This has to be done after some
834 propagations have already run, but before some more dead code
835 is removed, and this place fits nicely. Remember this when
836 trying to move or duplicate pass_dominator somewhere earlier. */
f1bd2543 837 NEXT_PASS (pass_dominator);
f1bd2543
JH
838 /* The only const/copy propagation opportunities left after
839 DOM should be due to degenerate PHI nodes. So rather than
840 run the full propagators, run a specialized pass which
841 only examines PHIs to discover const/copy propagation
842 opportunities. */
843 NEXT_PASS (pass_phi_only_cprop);
25c6036a 844 NEXT_PASS (pass_dse);
f1bd2543
JH
845 NEXT_PASS (pass_reassoc);
846 NEXT_PASS (pass_dce);
f1bd2543
JH
847 NEXT_PASS (pass_forwprop);
848 NEXT_PASS (pass_phiopt);
849 NEXT_PASS (pass_object_sizes);
a4b8a65f 850 NEXT_PASS (pass_ccp);
324d2217 851 NEXT_PASS (pass_copy_prop);
f1bd2543 852 NEXT_PASS (pass_cse_sincos);
03bd2f1a 853 NEXT_PASS (pass_optimize_bswap);
f1bd2543
JH
854 NEXT_PASS (pass_split_crit_edges);
855 NEXT_PASS (pass_pre);
f1bd2543
JH
856 NEXT_PASS (pass_sink_code);
857 NEXT_PASS (pass_tree_loop);
858 {
8ddbbcae 859 struct opt_pass **p = &pass_tree_loop.pass.sub;
f1bd2543
JH
860 NEXT_PASS (pass_tree_loop_init);
861 NEXT_PASS (pass_copy_prop);
bbc8a8dc 862 NEXT_PASS (pass_dce_loop);
f1bd2543
JH
863 NEXT_PASS (pass_lim);
864 NEXT_PASS (pass_tree_unswitch);
865 NEXT_PASS (pass_scev_cprop);
f1bd2543 866 NEXT_PASS (pass_record_bounds);
3d8864c0 867 NEXT_PASS (pass_check_data_deps);
dea61d92 868 NEXT_PASS (pass_loop_distribution);
f1bd2543 869 NEXT_PASS (pass_linear_transform);
f8bf9252 870 NEXT_PASS (pass_graphite_transforms);
204b560f
SP
871 {
872 struct opt_pass **p = &pass_graphite_transforms.pass.sub;
873 NEXT_PASS (pass_dce_loop);
874 NEXT_PASS (pass_lim);
875 }
f1bd2543
JH
876 NEXT_PASS (pass_iv_canon);
877 NEXT_PASS (pass_if_conversion);
878 NEXT_PASS (pass_vectorize);
879 {
8ddbbcae 880 struct opt_pass **p = &pass_vectorize.pass.sub;
f1bd2543
JH
881 NEXT_PASS (pass_lower_vector_ssa);
882 NEXT_PASS (pass_dce_loop);
883 }
6a753d5f 884 NEXT_PASS (pass_predcom);
f1bd2543 885 NEXT_PASS (pass_complete_unroll);
a70d6342 886 NEXT_PASS (pass_slp_vectorize);
5f40b3cb 887 NEXT_PASS (pass_parallelize_loops);
f1bd2543
JH
888 NEXT_PASS (pass_loop_prefetch);
889 NEXT_PASS (pass_iv_optimize);
890 NEXT_PASS (pass_tree_loop_done);
891 }
892 NEXT_PASS (pass_cse_reciprocals);
893 NEXT_PASS (pass_reassoc);
894 NEXT_PASS (pass_vrp);
895 NEXT_PASS (pass_dominator);
f1bd2543
JH
896 /* The only const/copy propagation opportunities left after
897 DOM should be due to degenerate PHI nodes. So rather than
898 run the full propagators, run a specialized pass which
899 only examines PHIs to discover const/copy propagation
900 opportunities. */
901 NEXT_PASS (pass_phi_only_cprop);
f1bd2543 902 NEXT_PASS (pass_cd_dce);
232abc3f 903 NEXT_PASS (pass_tracer);
f1bd2543
JH
904
905 /* FIXME: If DCE is not run before checking for uninitialized uses,
906 we may get false warnings (e.g., testsuite/gcc.dg/uninit-5.c).
907 However, this also causes us to misdiagnose cases that should be
908 real warnings (e.g., testsuite/gcc.dg/pr18501.c).
b8698a0f 909
f1bd2543
JH
910 To fix the false positives in uninit-5.c, we would have to
911 account for the predicates protecting the set and the use of each
912 variable. Using a representation like Gated Single Assignment
913 may help. */
914 NEXT_PASS (pass_late_warn_uninitialized);
915 NEXT_PASS (pass_dse);
916 NEXT_PASS (pass_forwprop);
917 NEXT_PASS (pass_phiopt);
44e10129 918 NEXT_PASS (pass_fold_builtins);
f1bd2543
JH
919 NEXT_PASS (pass_tail_calls);
920 NEXT_PASS (pass_rename_ssa_copies);
921 NEXT_PASS (pass_uncprop);
33977f81 922 NEXT_PASS (pass_local_pure_const);
f1bd2543 923 }
6d07ad98 924 NEXT_PASS (pass_cleanup_eh);
1d65f45c 925 NEXT_PASS (pass_lower_resx);
c72321c9 926 NEXT_PASS (pass_nrv);
4e3825db 927 NEXT_PASS (pass_mudflap_2);
c72321c9 928 NEXT_PASS (pass_cleanup_cfg_post_optimizing);
ef330312 929 NEXT_PASS (pass_warn_function_noreturn);
726a989a 930
ef330312 931 NEXT_PASS (pass_expand);
4e3825db 932
ef330312 933 NEXT_PASS (pass_rest_of_compilation);
f1bd2543 934 {
8ddbbcae 935 struct opt_pass **p = &pass_rest_of_compilation.pass.sub;
f1bd2543
JH
936 NEXT_PASS (pass_init_function);
937 NEXT_PASS (pass_jump);
f1bd2543
JH
938 NEXT_PASS (pass_rtl_eh);
939 NEXT_PASS (pass_initial_value_sets);
940 NEXT_PASS (pass_unshare_all_rtl);
941 NEXT_PASS (pass_instantiate_virtual_regs);
dacb3cda 942 NEXT_PASS (pass_into_cfg_layout_mode);
f1bd2543
JH
943 NEXT_PASS (pass_jump2);
944 NEXT_PASS (pass_lower_subreg);
6fb5fa3c 945 NEXT_PASS (pass_df_initialize_opt);
f1bd2543
JH
946 NEXT_PASS (pass_cse);
947 NEXT_PASS (pass_rtl_fwprop);
5f39ad47
SB
948 NEXT_PASS (pass_rtl_cprop);
949 NEXT_PASS (pass_rtl_pre);
950 NEXT_PASS (pass_rtl_hoist);
951 NEXT_PASS (pass_rtl_cprop);
952 NEXT_PASS (pass_rtl_store_motion);
953 NEXT_PASS (pass_cse_after_global_opts);
f1bd2543 954 NEXT_PASS (pass_rtl_ifcvt);
1833192f 955 NEXT_PASS (pass_reginfo_init);
f1bd2543
JH
956 /* Perform loop optimizations. It might be better to do them a bit
957 sooner, but we want the profile feedback to work more
958 efficiently. */
959 NEXT_PASS (pass_loop2);
960 {
8ddbbcae 961 struct opt_pass **p = &pass_loop2.pass.sub;
f1bd2543
JH
962 NEXT_PASS (pass_rtl_loop_init);
963 NEXT_PASS (pass_rtl_move_loop_invariants);
964 NEXT_PASS (pass_rtl_unswitch);
965 NEXT_PASS (pass_rtl_unroll_and_peel_loops);
966 NEXT_PASS (pass_rtl_doloop);
967 NEXT_PASS (pass_rtl_loop_done);
968 *p = NULL;
969 }
970 NEXT_PASS (pass_web);
5f39ad47 971 NEXT_PASS (pass_rtl_cprop);
f1bd2543 972 NEXT_PASS (pass_cse2);
6fb5fa3c 973 NEXT_PASS (pass_rtl_dse1);
f1bd2543 974 NEXT_PASS (pass_rtl_fwprop_addr);
6fb5fa3c
DB
975 NEXT_PASS (pass_inc_dec);
976 NEXT_PASS (pass_initialize_regs);
6fb5fa3c 977 NEXT_PASS (pass_ud_rtl_dce);
f1bd2543
JH
978 NEXT_PASS (pass_combine);
979 NEXT_PASS (pass_if_after_combine);
980 NEXT_PASS (pass_partition_blocks);
981 NEXT_PASS (pass_regmove);
d25aa7ab 982 NEXT_PASS (pass_outof_cfg_layout_mode);
f1bd2543
JH
983 NEXT_PASS (pass_split_all_insns);
984 NEXT_PASS (pass_lower_subreg2);
6fb5fa3c
DB
985 NEXT_PASS (pass_df_initialize_no_opt);
986 NEXT_PASS (pass_stack_ptr_mod);
f1bd2543 987 NEXT_PASS (pass_mode_switching);
d8d72314 988 NEXT_PASS (pass_match_asm_constraints);
f1bd2543 989 NEXT_PASS (pass_sms);
ce18efcb 990 NEXT_PASS (pass_sched);
058e97ec 991 NEXT_PASS (pass_ira);
f1bd2543
JH
992 NEXT_PASS (pass_postreload);
993 {
8ddbbcae 994 struct opt_pass **p = &pass_postreload.pass.sub;
f1bd2543
JH
995 NEXT_PASS (pass_postreload_cse);
996 NEXT_PASS (pass_gcse2);
6fb5fa3c
DB
997 NEXT_PASS (pass_split_after_reload);
998 NEXT_PASS (pass_branch_target_load_optimize1);
999 NEXT_PASS (pass_thread_prologue_and_epilogue);
1000 NEXT_PASS (pass_rtl_dse2);
f1bd2543
JH
1001 NEXT_PASS (pass_stack_adjustments);
1002 NEXT_PASS (pass_peephole2);
1003 NEXT_PASS (pass_if_after_reload);
1004 NEXT_PASS (pass_regrename);
6fb5fa3c
DB
1005 NEXT_PASS (pass_cprop_hardreg);
1006 NEXT_PASS (pass_fast_rtl_dce);
f1bd2543 1007 NEXT_PASS (pass_reorder_blocks);
6fb5fa3c 1008 NEXT_PASS (pass_branch_target_load_optimize2);
f1bd2543 1009 NEXT_PASS (pass_leaf_regs);
6fb5fa3c 1010 NEXT_PASS (pass_split_before_sched2);
f1bd2543 1011 NEXT_PASS (pass_sched2);
f1bd2543 1012 NEXT_PASS (pass_stack_regs);
6fb5fa3c 1013 {
8ddbbcae 1014 struct opt_pass **p = &pass_stack_regs.pass.sub;
6fb5fa3c
DB
1015 NEXT_PASS (pass_split_before_regstack);
1016 NEXT_PASS (pass_stack_regs_run);
1017 }
f1bd2543
JH
1018 NEXT_PASS (pass_compute_alignments);
1019 NEXT_PASS (pass_duplicate_computed_gotos);
1020 NEXT_PASS (pass_variable_tracking);
1021 NEXT_PASS (pass_free_cfg);
1022 NEXT_PASS (pass_machine_reorg);
1023 NEXT_PASS (pass_cleanup_barriers);
1024 NEXT_PASS (pass_delay_slots);
1025 NEXT_PASS (pass_split_for_shorten_branches);
1026 NEXT_PASS (pass_convert_to_eh_region_ranges);
1027 NEXT_PASS (pass_shorten_branches);
1028 NEXT_PASS (pass_set_nothrow_function_flags);
1029 NEXT_PASS (pass_final);
1030 }
0b738568 1031 NEXT_PASS (pass_df_finish);
f1bd2543 1032 }
ef330312
PB
1033 NEXT_PASS (pass_clean_state);
1034 *p = NULL;
1035
ef330312
PB
1036#undef NEXT_PASS
1037
1038 /* Register the passes with the tree dump code. */
9e016eba 1039 register_dump_files (all_lowering_passes, PROP_gimple_any);
b8698a0f 1040 register_dump_files (all_small_ipa_passes,
d7f09764
DN
1041 PROP_gimple_any | PROP_gimple_lcf | PROP_gimple_leh
1042 | PROP_cfg);
b8698a0f 1043 register_dump_files (all_regular_ipa_passes,
d7f09764
DN
1044 PROP_gimple_any | PROP_gimple_lcf | PROP_gimple_leh
1045 | PROP_cfg);
b8698a0f 1046 register_dump_files (all_lto_gen_passes,
bbbe4e7b
PB
1047 PROP_gimple_any | PROP_gimple_lcf | PROP_gimple_leh
1048 | PROP_cfg);
b8698a0f 1049 register_dump_files (all_passes,
bbbe4e7b
PB
1050 PROP_gimple_any | PROP_gimple_lcf | PROP_gimple_leh
1051 | PROP_cfg);
ef330312
PB
1052}
1053
a5093353
JH
1054/* If we are in IPA mode (i.e., current_function_decl is NULL), call
1055 function CALLBACK for every function in the call graph. Otherwise,
b8698a0f 1056 call CALLBACK on the current function. */
bbbe4e7b 1057
ef330312 1058static void
a5093353 1059do_per_function (void (*callback) (void *data), void *data)
ef330312 1060{
a5093353
JH
1061 if (current_function_decl)
1062 callback (data);
1063 else
1064 {
1065 struct cgraph_node *node;
1066 for (node = cgraph_nodes; node; node = node->next)
21ecdec5
JH
1067 if (node->analyzed && gimple_has_body_p (node->decl)
1068 && (!node->clone_of || node->decl != node->clone_of->decl))
a5093353
JH
1069 {
1070 push_cfun (DECL_STRUCT_FUNCTION (node->decl));
1071 current_function_decl = node->decl;
1072 callback (data);
d7f09764
DN
1073 if (!flag_wpa)
1074 {
1075 free_dominance_info (CDI_DOMINATORS);
1076 free_dominance_info (CDI_POST_DOMINATORS);
1077 }
a5093353
JH
1078 current_function_decl = NULL;
1079 pop_cfun ();
1080 ggc_collect ();
1081 }
1082 }
1083}
1084
873aa8f5
JH
1085/* Because inlining might remove no-longer reachable nodes, we need to
1086 keep the array visible to garbage collector to avoid reading collected
1087 out nodes. */
1088static int nnodes;
1089static GTY ((length ("nnodes"))) struct cgraph_node **order;
1090
1091/* If we are in IPA mode (i.e., current_function_decl is NULL), call
1092 function CALLBACK for every function in the call graph. Otherwise,
b8698a0f 1093 call CALLBACK on the current function. */
873aa8f5
JH
1094
1095static void
1096do_per_function_toporder (void (*callback) (void *data), void *data)
1097{
1098 int i;
1099
1100 if (current_function_decl)
1101 callback (data);
1102 else
1103 {
1104 gcc_assert (!order);
d3bfe4de 1105 order = GGC_NEWVEC (struct cgraph_node *, cgraph_n_nodes);
873aa8f5 1106 nnodes = cgraph_postorder (order);
257eb6e3
JH
1107 for (i = nnodes - 1; i >= 0; i--)
1108 order[i]->process = 1;
873aa8f5
JH
1109 for (i = nnodes - 1; i >= 0; i--)
1110 {
1111 struct cgraph_node *node = order[i];
1112
1113 /* Allow possibly removed nodes to be garbage collected. */
1114 order[i] = NULL;
257eb6e3 1115 node->process = 0;
b20996ff 1116 if (node->analyzed)
873aa8f5
JH
1117 {
1118 push_cfun (DECL_STRUCT_FUNCTION (node->decl));
1119 current_function_decl = node->decl;
1120 callback (data);
1121 free_dominance_info (CDI_DOMINATORS);
1122 free_dominance_info (CDI_POST_DOMINATORS);
1123 current_function_decl = NULL;
1124 pop_cfun ();
1125 ggc_collect ();
1126 }
1127 }
1128 }
1129 ggc_free (order);
1130 order = NULL;
1131 nnodes = 0;
1132}
1133
a5093353 1134/* Perform all TODO actions that ought to be done on each function. */
ef330312 1135
a5093353
JH
1136static void
1137execute_function_todo (void *data)
1138{
1139 unsigned int flags = (size_t)data;
1140 if (cfun->curr_properties & PROP_ssa)
bbbe4e7b 1141 flags |= TODO_verify_ssa;
a5093353 1142 flags &= ~cfun->last_verified;
bbbe4e7b
PB
1143 if (!flags)
1144 return;
9fe0cb7d
RG
1145
1146 statistics_fini_pass ();
1147
1994bfea 1148 /* Always cleanup the CFG before trying to update SSA. */
ef330312
PB
1149 if (flags & TODO_cleanup_cfg)
1150 {
592c303d 1151 bool cleanup = cleanup_tree_cfg ();
c4f548b8 1152
1994bfea
JH
1153 if (cleanup && (cfun->curr_properties & PROP_ssa))
1154 flags |= TODO_remove_unused_locals;
b8698a0f 1155
c4f548b8
DN
1156 /* When cleanup_tree_cfg merges consecutive blocks, it may
1157 perform some simplistic propagation when removing single
1158 valued PHI nodes. This propagation may, in turn, cause the
1159 SSA form to become out-of-date (see PR 22037). So, even
1160 if the parent pass had not scheduled an SSA update, we may
1161 still need to do one. */
5006671f 1162 if (!(flags & TODO_update_ssa_any) && need_ssa_update_p (cfun))
c4f548b8 1163 flags |= TODO_update_ssa;
ef330312 1164 }
f6db1481 1165
563cb6be
DN
1166 if (flags & TODO_update_ssa_any)
1167 {
1168 unsigned update_flags = flags & TODO_update_ssa_any;
1169 update_ssa (update_flags);
a5093353 1170 cfun->last_verified &= ~TODO_verify_ssa;
563cb6be 1171 }
b8698a0f 1172
5006671f
RG
1173 if (flags & TODO_update_address_taken)
1174 execute_update_addresses_taken (true);
1175
7b0e48fb
DB
1176 if (flags & TODO_rebuild_alias)
1177 {
5006671f
RG
1178 if (!(flags & TODO_update_address_taken))
1179 execute_update_addresses_taken (true);
7b0e48fb 1180 compute_may_aliases ();
7b0e48fb 1181 }
b8698a0f 1182
3f519b35
RG
1183 if (flags & TODO_remove_unused_locals)
1184 remove_unused_locals ();
1185
726a989a 1186 if ((flags & TODO_dump_func) && dump_file && current_function_decl)
ef330312 1187 {
a5093353 1188 if (cfun->curr_properties & PROP_trees)
726a989a 1189 dump_function_to_file (current_function_decl, dump_file, dump_flags);
a68e7e6c 1190 else
5e34206b 1191 {
a68e7e6c
PB
1192 if (dump_flags & TDF_SLIM)
1193 print_rtl_slim_with_bb (dump_file, get_insns (), dump_flags);
a5093353
JH
1194 else if ((cfun->curr_properties & PROP_cfg)
1195 && (dump_flags & TDF_BLOCKS))
a68e7e6c
PB
1196 print_rtl_with_bb (dump_file, get_insns ());
1197 else
1198 print_rtl (dump_file, get_insns ());
1199
726a989a 1200 if ((cfun->curr_properties & PROP_cfg)
a68e7e6c 1201 && graph_dump_format != no_graph
5e34206b
JJ
1202 && (dump_flags & TDF_GRAPH))
1203 print_rtl_graph_with_bb (dump_file_name, get_insns ());
1204 }
ef330312
PB
1205
1206 /* Flush the file. If verification fails, we won't be able to
1207 close the file before aborting. */
1208 fflush (dump_file);
1209 }
a5093353 1210
45a80bb9
JH
1211 if (flags & TODO_rebuild_frequencies)
1212 {
1213 if (profile_status == PROFILE_GUESSED)
1214 {
1215 loop_optimizer_init (0);
1216 add_noreturn_fake_exit_edges ();
1217 mark_irreducible_loops ();
1218 connect_infinite_loops_to_exit ();
1219 estimate_bb_frequencies ();
1220 remove_fake_exit_edges ();
1221 loop_optimizer_finalize ();
1222 }
1223 else if (profile_status == PROFILE_READ)
1224 counts_to_freqs ();
1225 else
1226 gcc_unreachable ();
1227 }
1228
a5093353
JH
1229#if defined ENABLE_CHECKING
1230 if (flags & TODO_verify_ssa)
1231 verify_ssa (true);
1232 if (flags & TODO_verify_flow)
1233 verify_flow_info ();
1234 if (flags & TODO_verify_stmts)
1235 verify_stmts ();
1236 if (flags & TODO_verify_loops)
1237 verify_loop_closed_ssa ();
a36b8a1e
JH
1238 if (flags & TODO_verify_rtl_sharing)
1239 verify_rtl_sharing ();
a5093353
JH
1240#endif
1241
1242 cfun->last_verified = flags & TODO_verify_all;
1243}
1244
1245/* Perform all TODO actions. */
1246static void
1247execute_todo (unsigned int flags)
1248{
1249#if defined ENABLE_CHECKING
5006671f
RG
1250 if (cfun
1251 && need_ssa_update_p (cfun))
a5093353
JH
1252 gcc_assert (flags & TODO_update_ssa_any);
1253#endif
1254
b02b9b53
ZD
1255 /* Inform the pass whether it is the first time it is run. */
1256 first_pass_instance = (flags & TODO_mark_first_instance) != 0;
1257
a5093353
JH
1258 do_per_function (execute_function_todo, (void *)(size_t) flags);
1259
f4b3ca72
JH
1260 /* Always remove functions just as before inlining: IPA passes might be
1261 interested to see bodies of extern inline functions that are not inlined
1262 to analyze side effects. The full removal is done just at the end
1263 of IPA pass queue. */
1264 if (flags & TODO_remove_functions)
a12f79f5
JH
1265 {
1266 gcc_assert (!cfun);
1267 cgraph_remove_unreachable_nodes (true, dump_file);
1268 }
f4b3ca72 1269
726a989a 1270 if ((flags & TODO_dump_cgraph) && dump_file && !current_function_decl)
ef330312 1271 {
a12f79f5 1272 gcc_assert (!cfun);
ef330312
PB
1273 dump_cgraph (dump_file);
1274 /* Flush the file. If verification fails, we won't be able to
1275 close the file before aborting. */
1276 fflush (dump_file);
1277 }
f6db1481 1278
ef330312 1279 if (flags & TODO_ggc_collect)
726a989a 1280 ggc_collect ();
6fb5fa3c 1281
b8698a0f 1282 /* Now that the dumping has been done, we can get rid of the optional
6fb5fa3c
DB
1283 df problems. */
1284 if (flags & TODO_df_finish)
0d475361 1285 df_finish_pass ((flags & TODO_df_verify) != 0);
a5093353 1286}
97b0ade3 1287
6ac01510
ILT
1288/* Verify invariants that should hold between passes. This is a place
1289 to put simple sanity checks. */
1290
1291static void
1292verify_interpass_invariants (void)
1293{
1294#ifdef ENABLE_CHECKING
1295 gcc_assert (!fold_deferring_overflow_warnings_p ());
1296#endif
1297}
1298
a5093353
JH
1299/* Clear the last verified flag. */
1300
1301static void
1302clear_last_verified (void *data ATTRIBUTE_UNUSED)
1303{
1304 cfun->last_verified = 0;
1305}
1306
1307/* Helper function. Verify that the properties has been turn into the
1308 properties expected by the pass. */
bbbe4e7b 1309
582fd9ce 1310#ifdef ENABLE_CHECKING
a5093353
JH
1311static void
1312verify_curr_properties (void *data)
1313{
1314 unsigned int props = (size_t)data;
1315 gcc_assert ((cfun->curr_properties & props) == props);
1316}
582fd9ce 1317#endif
a5093353 1318
17653c00
JH
1319/* Initialize pass dump file. */
1320
1321static bool
1322pass_init_dump_file (struct opt_pass *pass)
1323{
1324 /* If a dump file name is present, open it if enabled. */
1325 if (pass->static_pass_number != -1)
1326 {
1327 bool initializing_dump = !dump_initialized_p (pass->static_pass_number);
1328 dump_file_name = get_dump_file_name (pass->static_pass_number);
1329 dump_file = dump_begin (pass->static_pass_number, &dump_flags);
1330 if (dump_file && current_function_decl)
1331 {
1332 const char *dname, *aname;
1333 dname = lang_hooks.decl_printable_name (current_function_decl, 2);
1334 aname = (IDENTIFIER_POINTER
1335 (DECL_ASSEMBLER_NAME (current_function_decl)));
3716f233 1336 fprintf (dump_file, "\n;; Function %s (%s)%s\n\n", dname, aname,
17653c00
JH
1337 cfun->function_frequency == FUNCTION_FREQUENCY_HOT
1338 ? " (hot)"
1339 : cfun->function_frequency == FUNCTION_FREQUENCY_UNLIKELY_EXECUTED
1340 ? " (unlikely executed)"
1341 : "");
1342 }
1343 return initializing_dump;
1344 }
1345 else
1346 return false;
1347}
1348
1349/* Flush PASS dump file. */
1350
1351static void
1352pass_fini_dump_file (struct opt_pass *pass)
1353{
1354 /* Flush and close dump file. */
1355 if (dump_file_name)
1356 {
1357 free (CONST_CAST (char *, dump_file_name));
1358 dump_file_name = NULL;
1359 }
1360
1361 if (dump_file)
1362 {
1363 dump_end (pass->static_pass_number, dump_file);
1364 dump_file = NULL;
1365 }
1366}
1367
a5093353
JH
1368/* After executing the pass, apply expected changes to the function
1369 properties. */
17653c00 1370
a5093353
JH
1371static void
1372update_properties_after_pass (void *data)
1373{
d3bfe4de 1374 struct opt_pass *pass = (struct opt_pass *) data;
a5093353
JH
1375 cfun->curr_properties = (cfun->curr_properties | pass->properties_provided)
1376 & ~pass->properties_destroyed;
f6db1481
RH
1377}
1378
1920df6c 1379/* Execute summary generation for all of the passes in IPA_PASS. */
17653c00 1380
d7f09764 1381void
7e5487a2 1382execute_ipa_summary_passes (struct ipa_opt_pass_d *ipa_pass)
17653c00 1383{
1920df6c 1384 while (ipa_pass)
17653c00
JH
1385 {
1386 struct opt_pass *pass = &ipa_pass->pass;
1920df6c
KZ
1387
1388 /* Execute all of the IPA_PASSes in the list. */
b8698a0f 1389 if (ipa_pass->pass.type == IPA_PASS
d7f09764
DN
1390 && (!pass->gate || pass->gate ())
1391 && ipa_pass->generate_summary)
17653c00
JH
1392 {
1393 pass_init_dump_file (pass);
d7f09764
DN
1394
1395 /* If a timevar is present, start it. */
1396 if (pass->tv_id)
1397 timevar_push (pass->tv_id);
1398
1920df6c 1399 ipa_pass->generate_summary ();
d7f09764
DN
1400
1401 /* Stop timevar. */
1402 if (pass->tv_id)
1403 timevar_pop (pass->tv_id);
1404
17653c00
JH
1405 pass_fini_dump_file (pass);
1406 }
7e5487a2 1407 ipa_pass = (struct ipa_opt_pass_d *)ipa_pass->pass.next;
17653c00
JH
1408 }
1409}
1410
1411/* Execute IPA_PASS function transform on NODE. */
1412
1413static void
1414execute_one_ipa_transform_pass (struct cgraph_node *node,
7e5487a2 1415 struct ipa_opt_pass_d *ipa_pass)
17653c00
JH
1416{
1417 struct opt_pass *pass = &ipa_pass->pass;
1418 unsigned int todo_after = 0;
1419
1420 current_pass = pass;
1421 if (!ipa_pass->function_transform)
1422 return;
1423
1424 /* Note that the folders should only create gimple expressions.
1425 This is a hack until the new folder is ready. */
1426 in_gimple_form = (cfun && (cfun->curr_properties & PROP_trees)) != 0;
1427
1428 pass_init_dump_file (pass);
1429
1430 /* Run pre-pass verification. */
a12f79f5 1431 execute_todo (ipa_pass->function_transform_todo_flags_start);
17653c00
JH
1432
1433 /* If a timevar is present, start it. */
7072a650 1434 if (pass->tv_id != TV_NONE)
17653c00
JH
1435 timevar_push (pass->tv_id);
1436
1437 /* Do it! */
1438 todo_after = ipa_pass->function_transform (node);
1439
1440 /* Stop timevar. */
7072a650 1441 if (pass->tv_id != TV_NONE)
17653c00
JH
1442 timevar_pop (pass->tv_id);
1443
1444 /* Run post-pass cleanup and verification. */
1445 execute_todo (todo_after);
1446 verify_interpass_invariants ();
1447
1448 pass_fini_dump_file (pass);
1449
1450 current_pass = NULL;
17653c00
JH
1451}
1452
d7f09764 1453/* For the current function, execute all ipa transforms. */
9e016eba 1454
d7f09764
DN
1455void
1456execute_all_ipa_transforms (void)
1457{
0e3776db
JH
1458 struct cgraph_node *node;
1459 if (!cfun)
1460 return;
1461 node = cgraph_node (current_function_decl);
1462 if (node->ipa_transforms_to_apply)
17653c00
JH
1463 {
1464 unsigned int i;
17653c00 1465
0e3776db 1466 for (i = 0; i < VEC_length (ipa_opt_pass, node->ipa_transforms_to_apply);
17653c00
JH
1467 i++)
1468 execute_one_ipa_transform_pass (node,
d7f09764 1469 VEC_index (ipa_opt_pass,
0e3776db 1470 node->ipa_transforms_to_apply,
17653c00 1471 i));
0e3776db
JH
1472 VEC_free (ipa_opt_pass, heap, node->ipa_transforms_to_apply);
1473 node->ipa_transforms_to_apply = NULL;
17653c00 1474 }
d7f09764
DN
1475}
1476
1477/* Execute PASS. */
1478
1479static bool
1480execute_one_pass (struct opt_pass *pass)
1481{
1482 bool initializing_dump;
1483 unsigned int todo_after = 0;
1484
1485 /* IPA passes are executed on whole program, so cfun should be NULL.
1486 Other passes need function context set. */
1487 if (pass->type == SIMPLE_IPA_PASS || pass->type == IPA_PASS)
1488 gcc_assert (!cfun && !current_function_decl);
1489 else
1490 gcc_assert (cfun && current_function_decl);
17653c00 1491
6fb5fa3c 1492 current_pass = pass;
726a989a 1493
ef330312
PB
1494 /* See if we're supposed to run this pass. */
1495 if (pass->gate && !pass->gate ())
1496 return false;
f6db1481 1497
b9cafe60 1498 if (!quiet_flag && !cfun)
873aa8f5
JH
1499 fprintf (stderr, " <%s>", pass->name ? pass->name : "");
1500
ef330312
PB
1501 /* Note that the folders should only create gimple expressions.
1502 This is a hack until the new folder is ready. */
a5093353 1503 in_gimple_form = (cfun && (cfun->curr_properties & PROP_trees)) != 0;
f6db1481 1504
5006671f
RG
1505 initializing_dump = pass_init_dump_file (pass);
1506
ef330312 1507 /* Run pre-pass verification. */
bbbe4e7b
PB
1508 execute_todo (pass->todo_flags_start);
1509
a5093353
JH
1510#ifdef ENABLE_CHECKING
1511 do_per_function (verify_curr_properties,
1512 (void *)(size_t)pass->properties_required);
1513#endif
f6db1481 1514
ef330312 1515 /* If a timevar is present, start it. */
7072a650 1516 if (pass->tv_id != TV_NONE)
ef330312 1517 timevar_push (pass->tv_id);
f6db1481 1518
ef330312
PB
1519 /* Do it! */
1520 if (pass->execute)
bbbe4e7b 1521 {
c2924966 1522 todo_after = pass->execute ();
a5093353 1523 do_per_function (clear_last_verified, NULL);
bbbe4e7b 1524 }
f6db1481 1525
ef330312 1526 /* Stop timevar. */
7072a650 1527 if (pass->tv_id != TV_NONE)
ef330312 1528 timevar_pop (pass->tv_id);
f6db1481 1529
a5093353 1530 do_per_function (update_properties_after_pass, pass);
bbbe4e7b
PB
1531
1532 if (initializing_dump
1533 && dump_file
1534 && graph_dump_format != no_graph
6f1fe305 1535 && cfun
a5093353
JH
1536 && (cfun->curr_properties & (PROP_cfg | PROP_rtl))
1537 == (PROP_cfg | PROP_rtl))
bbbe4e7b
PB
1538 {
1539 get_dump_file_info (pass->static_pass_number)->flags |= TDF_GRAPH;
1540 dump_flags |= TDF_GRAPH;
1541 clean_graph_dump_file (dump_file_name);
1542 }
1543
ef330312 1544 /* Run post-pass cleanup and verification. */
c2924966 1545 execute_todo (todo_after | pass->todo_flags_finish);
6ac01510 1546 verify_interpass_invariants ();
17653c00 1547 if (pass->type == IPA_PASS)
0e3776db
JH
1548 {
1549 struct cgraph_node *node;
1550 for (node = cgraph_nodes; node; node = node->next)
1551 if (node->analyzed)
1552 VEC_safe_push (ipa_opt_pass, heap, node->ipa_transforms_to_apply,
1553 (struct ipa_opt_pass_d *)pass);
1554 }
f6db1481 1555
f45e0ad1
JH
1556 if (!current_function_decl)
1557 cgraph_process_new_functions ();
1558
17653c00 1559 pass_fini_dump_file (pass);
f6db1481 1560
17653c00 1561 if (pass->type != SIMPLE_IPA_PASS && pass->type != IPA_PASS)
e3b5732b
JH
1562 gcc_assert (!(cfun->curr_properties & PROP_trees)
1563 || pass->type != RTL_PASS);
1564
6fb5fa3c 1565 current_pass = NULL;
91851351 1566
ef330312 1567 return true;
f6db1481
RH
1568}
1569
ef330312 1570void
8ddbbcae 1571execute_pass_list (struct opt_pass *pass)
f6db1481 1572{
ef330312 1573 do
f6db1481 1574 {
9e016eba
JH
1575 gcc_assert (pass->type == GIMPLE_PASS
1576 || pass->type == RTL_PASS);
ef330312
PB
1577 if (execute_one_pass (pass) && pass->sub)
1578 execute_pass_list (pass->sub);
1579 pass = pass->next;
f6db1481 1580 }
ef330312 1581 while (pass);
f6db1481
RH
1582}
1583
ef330312 1584/* Same as execute_pass_list but assume that subpasses of IPA passes
d7f09764
DN
1585 are local passes. If SET is not NULL, write out summaries of only
1586 those node in SET. */
1587
1588static void
1589ipa_write_summaries_2 (struct opt_pass *pass, cgraph_node_set set,
1590 struct lto_out_decl_state *state)
1591{
1592 while (pass)
1593 {
1594 struct ipa_opt_pass_d *ipa_pass = (struct ipa_opt_pass_d *)pass;
1595 gcc_assert (!current_function_decl);
1596 gcc_assert (!cfun);
1597 gcc_assert (pass->type == SIMPLE_IPA_PASS || pass->type == IPA_PASS);
1598 if (pass->type == IPA_PASS
1599 && ipa_pass->write_summary
1600 && (!pass->gate || pass->gate ()))
1601 {
1602 /* If a timevar is present, start it. */
1603 if (pass->tv_id)
1604 timevar_push (pass->tv_id);
1605
1606 ipa_pass->write_summary (set);
1607
1608 /* If a timevar is present, start it. */
1609 if (pass->tv_id)
1610 timevar_pop (pass->tv_id);
1611 }
1612
1613 if (pass->sub && pass->sub->type != GIMPLE_PASS)
1614 ipa_write_summaries_2 (pass->sub, set, state);
1615
1616 pass = pass->next;
1617 }
1618}
1619
1620/* Helper function of ipa_write_summaries. Creates and destroys the
1621 decl state and calls ipa_write_summaries_2 for all passes that have
1622 summaries. SET is the set of nodes to be written. */
1623
1624static void
1625ipa_write_summaries_1 (cgraph_node_set set)
1626{
1627 struct lto_out_decl_state *state = lto_new_out_decl_state ();
1628 lto_push_out_decl_state (state);
1629
fb3f88cc
JH
1630 if (!flag_wpa)
1631 ipa_write_summaries_2 (all_regular_ipa_passes, set, state);
d7f09764
DN
1632 ipa_write_summaries_2 (all_lto_gen_passes, set, state);
1633
1634 gcc_assert (lto_get_out_decl_state () == state);
1635 lto_pop_out_decl_state ();
1636 lto_delete_out_decl_state (state);
1637}
1638
1639/* Write out summaries for all the nodes in the callgraph. */
1640
ef330312 1641void
d7f09764 1642ipa_write_summaries (void)
f6db1481 1643{
d7f09764
DN
1644 cgraph_node_set set;
1645 struct cgraph_node **order;
1646 int i, order_pos;
b8698a0f 1647
d7f09764
DN
1648 if (!flag_generate_lto || errorcount || sorrycount)
1649 return;
1650
1651 lto_new_extern_inline_states ();
1652 set = cgraph_node_set_new ();
1653
1654 /* Create the callgraph set in the same order used in
1655 cgraph_expand_all_functions. This mostly facilitates debugging,
1656 since it causes the gimple file to be processed in the same order
1657 as the source code. */
1658 order = XCNEWVEC (struct cgraph_node *, cgraph_n_nodes);
1659 order_pos = cgraph_postorder (order);
1660 gcc_assert (order_pos == cgraph_n_nodes);
1661
1662 for (i = order_pos - 1; i >= 0; i--)
8b220502
MJ
1663 {
1664 struct cgraph_node *node = order[i];
1665
1666 if (node->analyzed)
1667 {
1668 /* When streaming out references to statements as part of some IPA
1669 pass summary, the statements need to have uids assigned and the
1670 following does that for all the IPA passes here. Naturally, this
1671 ordering then matches the one IPA-passes get in their stmt_fixup
1672 hooks. */
1673
1674 push_cfun (DECL_STRUCT_FUNCTION (node->decl));
1675 renumber_gimple_stmt_uids ();
1676 pop_cfun ();
1677 }
1678 cgraph_node_set_add (set, node);
1679 }
d7f09764
DN
1680
1681 ipa_write_summaries_1 (set);
1682 lto_delete_extern_inline_states ();
1683
1684 free (order);
1685 ggc_free (set);
1686}
1687
1688
1689/* Write all the summaries for the cgraph nodes in SET. If SET is
1690 NULL, write out all summaries of all nodes. */
1691
1692void
1693ipa_write_summaries_of_cgraph_node_set (cgraph_node_set set)
1694{
1695 if (flag_generate_lto && !(errorcount || sorrycount))
1696 ipa_write_summaries_1 (set);
1697}
1698
1699/* Same as execute_pass_list but assume that subpasses of IPA passes
1700 are local passes. */
1701
1702static void
1703ipa_read_summaries_1 (struct opt_pass *pass)
1704{
1705 while (pass)
f6db1481 1706 {
d7f09764
DN
1707 struct ipa_opt_pass_d *ipa_pass = (struct ipa_opt_pass_d *) pass;
1708
a5093353
JH
1709 gcc_assert (!current_function_decl);
1710 gcc_assert (!cfun);
17653c00 1711 gcc_assert (pass->type == SIMPLE_IPA_PASS || pass->type == IPA_PASS);
d7f09764
DN
1712
1713 if (pass->gate == NULL || pass->gate ())
17653c00 1714 {
d7f09764 1715 if (pass->type == IPA_PASS && ipa_pass->read_summary)
17653c00 1716 {
d7f09764
DN
1717 /* If a timevar is present, start it. */
1718 if (pass->tv_id)
1719 timevar_push (pass->tv_id);
1720
1721 ipa_pass->read_summary ();
1722
1723 /* Stop timevar. */
1724 if (pass->tv_id)
1725 timevar_pop (pass->tv_id);
17653c00 1726 }
d7f09764
DN
1727
1728 if (pass->sub && pass->sub->type != GIMPLE_PASS)
1729 ipa_read_summaries_1 (pass->sub);
17653c00 1730 }
d7f09764
DN
1731 pass = pass->next;
1732 }
1733}
1734
1735
1736/* Read all the summaries for all_regular_ipa_passes and all_lto_gen_passes. */
1737
1738void
1739ipa_read_summaries (void)
1740{
fb3f88cc
JH
1741 if (!flag_ltrans)
1742 ipa_read_summaries_1 (all_regular_ipa_passes);
d7f09764
DN
1743 ipa_read_summaries_1 (all_lto_gen_passes);
1744}
1745
1746/* Same as execute_pass_list but assume that subpasses of IPA passes
1747 are local passes. */
1748void
1749execute_ipa_pass_list (struct opt_pass *pass)
1750{
1751 do
1752 {
1753 gcc_assert (!current_function_decl);
1754 gcc_assert (!cfun);
1755 gcc_assert (pass->type == SIMPLE_IPA_PASS || pass->type == IPA_PASS);
ef330312 1756 if (execute_one_pass (pass) && pass->sub)
9e016eba
JH
1757 {
1758 if (pass->sub->type == GIMPLE_PASS)
1759 do_per_function_toporder ((void (*)(void *))execute_pass_list,
1760 pass->sub);
17653c00
JH
1761 else if (pass->sub->type == SIMPLE_IPA_PASS
1762 || pass->sub->type == IPA_PASS)
9e016eba
JH
1763 execute_ipa_pass_list (pass->sub);
1764 else
1765 gcc_unreachable ();
1766 }
d7f09764
DN
1767 gcc_assert (!current_function_decl);
1768 cgraph_process_new_functions ();
ef330312 1769 pass = pass->next;
f6db1481 1770 }
ef330312 1771 while (pass);
97b0ade3 1772}
9fe0cb7d 1773
2c5721d9
MJ
1774/* Execute stmt fixup hooks of all passes in PASS for NODE and STMTS. */
1775
1776static void
1777execute_ipa_stmt_fixups (struct opt_pass *pass,
1778 struct cgraph_node *node, gimple *stmts)
1779{
1780 while (pass)
1781 {
1782 /* Execute all of the IPA_PASSes in the list. */
1783 if (pass->type == IPA_PASS
1784 && (!pass->gate || pass->gate ()))
1785 {
1786 struct ipa_opt_pass_d *ipa_pass = (struct ipa_opt_pass_d *) pass;
1787
1788 if (ipa_pass->stmt_fixup)
1789 {
1790 pass_init_dump_file (pass);
1791 /* If a timevar is present, start it. */
1792 if (pass->tv_id)
1793 timevar_push (pass->tv_id);
1794
1795 ipa_pass->stmt_fixup (node, stmts);
1796
1797 /* Stop timevar. */
1798 if (pass->tv_id)
1799 timevar_pop (pass->tv_id);
1800 pass_fini_dump_file (pass);
1801 }
1802 if (pass->sub)
1803 execute_ipa_stmt_fixups (pass->sub, node, stmts);
1804 }
1805 pass = pass->next;
1806 }
1807}
1808
1809/* Execute stmt fixup hooks of all IPA passes for NODE and STMTS. */
1810
1811void
1812execute_all_ipa_stmt_fixups (struct cgraph_node *node, gimple *stmts)
1813{
1814 execute_ipa_stmt_fixups (all_regular_ipa_passes, node, stmts);
1815}
1816
1817
d7f09764
DN
1818extern void debug_properties (unsigned int);
1819extern void dump_properties (FILE *, unsigned int);
1820
1821void
1822dump_properties (FILE *dump, unsigned int props)
1823{
1824 fprintf (dump, "Properties:\n");
1825 if (props & PROP_gimple_any)
1826 fprintf (dump, "PROP_gimple_any\n");
1827 if (props & PROP_gimple_lcf)
1828 fprintf (dump, "PROP_gimple_lcf\n");
1829 if (props & PROP_gimple_leh)
1830 fprintf (dump, "PROP_gimple_leh\n");
1831 if (props & PROP_cfg)
1832 fprintf (dump, "PROP_cfg\n");
1833 if (props & PROP_referenced_vars)
1834 fprintf (dump, "PROP_referenced_vars\n");
1835 if (props & PROP_ssa)
1836 fprintf (dump, "PROP_ssa\n");
1837 if (props & PROP_no_crit_edges)
1838 fprintf (dump, "PROP_no_crit_edges\n");
1839 if (props & PROP_rtl)
1840 fprintf (dump, "PROP_rtl\n");
1841 if (props & PROP_gimple_lomp)
1842 fprintf (dump, "PROP_gimple_lomp\n");
1843}
1844
1845void
1846debug_properties (unsigned int props)
1847{
1848 dump_properties (stderr, props);
1849}
1850
33977f81
JH
1851/* Called by local passes to see if function is called by already processed nodes.
1852 Because we process nodes in topological order, this means that function is
1853 in recursive cycle or we introduced new direct calls. */
1854bool
1855function_called_by_processed_nodes_p (void)
1856{
1857 struct cgraph_edge *e;
1858 for (e = cgraph_node (current_function_decl)->callers; e; e = e->next_caller)
1859 {
1860 if (e->caller->decl == current_function_decl)
1861 continue;
b20996ff 1862 if (!e->caller->analyzed)
33977f81
JH
1863 continue;
1864 if (TREE_ASM_WRITTEN (e->caller->decl))
1865 continue;
1866 if (!e->caller->process && !e->caller->global.inlined_to)
1867 break;
1868 }
1869 if (dump_file && e)
1870 {
1871 fprintf (dump_file, "Already processed call to:\n");
1872 dump_cgraph_node (dump_file, e->caller);
1873 }
1874 return e != NULL;
1875}
1876
873aa8f5 1877#include "gt-passes.h"