* doc/loop.texi: Document possibility not to perform disambiguation
[official-gcc.git] / gcc / tree-cfg.c
blobd9794592cf6a143d1d09a9b4b7ec03a55e8d9c75
1 /* Control flow functions for trees.
2 Copyright (C) 2001, 2002, 2003, 2004, 2005, 2006, 2007
3 Free Software Foundation, Inc.
4 Contributed by Diego Novillo <dnovillo@redhat.com>
6 This file is part of GCC.
8 GCC is free software; you can redistribute it and/or modify
9 it under the terms of the GNU General Public License as published by
10 the Free Software Foundation; either version 2, or (at your option)
11 any later version.
13 GCC is distributed in the hope that it will be useful,
14 but WITHOUT ANY WARRANTY; without even the implied warranty of
15 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
16 GNU General Public License for more details.
18 You should have received a copy of the GNU General Public License
19 along with GCC; see the file COPYING. If not, write to
20 the Free Software Foundation, 51 Franklin Street, Fifth Floor,
21 Boston, MA 02110-1301, USA. */
23 #include "config.h"
24 #include "system.h"
25 #include "coretypes.h"
26 #include "tm.h"
27 #include "tree.h"
28 #include "rtl.h"
29 #include "tm_p.h"
30 #include "hard-reg-set.h"
31 #include "basic-block.h"
32 #include "output.h"
33 #include "flags.h"
34 #include "function.h"
35 #include "expr.h"
36 #include "ggc.h"
37 #include "langhooks.h"
38 #include "diagnostic.h"
39 #include "tree-flow.h"
40 #include "timevar.h"
41 #include "tree-dump.h"
42 #include "tree-pass.h"
43 #include "toplev.h"
44 #include "except.h"
45 #include "cfgloop.h"
46 #include "cfglayout.h"
47 #include "tree-ssa-propagate.h"
48 #include "value-prof.h"
49 #include "pointer-set.h"
51 /* This file contains functions for building the Control Flow Graph (CFG)
52 for a function tree. */
54 /* Local declarations. */
56 /* Initial capacity for the basic block array. */
57 static const int initial_cfg_capacity = 20;
59 /* This hash table allows us to efficiently lookup all CASE_LABEL_EXPRs
60 which use a particular edge. The CASE_LABEL_EXPRs are chained together
61 via their TREE_CHAIN field, which we clear after we're done with the
62 hash table to prevent problems with duplication of SWITCH_EXPRs.
64 Access to this list of CASE_LABEL_EXPRs allows us to efficiently
65 update the case vector in response to edge redirections.
67 Right now this table is set up and torn down at key points in the
68 compilation process. It would be nice if we could make the table
69 more persistent. The key is getting notification of changes to
70 the CFG (particularly edge removal, creation and redirection). */
72 static struct pointer_map_t *edge_to_cases;
74 /* CFG statistics. */
75 struct cfg_stats_d
77 long num_merged_labels;
80 static struct cfg_stats_d cfg_stats;
82 /* Nonzero if we found a computed goto while building basic blocks. */
83 static bool found_computed_goto;
85 /* Basic blocks and flowgraphs. */
86 static basic_block create_bb (void *, void *, basic_block);
87 static void make_blocks (tree);
88 static void factor_computed_gotos (void);
90 /* Edges. */
91 static void make_edges (void);
92 static void make_cond_expr_edges (basic_block);
93 static void make_switch_expr_edges (basic_block);
94 static void make_goto_expr_edges (basic_block);
95 static edge tree_redirect_edge_and_branch (edge, basic_block);
96 static edge tree_try_redirect_by_replacing_jump (edge, basic_block);
97 static unsigned int split_critical_edges (void);
99 /* Various helpers. */
100 static inline bool stmt_starts_bb_p (tree, tree);
101 static int tree_verify_flow_info (void);
102 static void tree_make_forwarder_block (edge);
103 static void tree_cfg2vcg (FILE *);
104 static inline void change_bb_for_stmt (tree t, basic_block bb);
106 /* Flowgraph optimization and cleanup. */
107 static void tree_merge_blocks (basic_block, basic_block);
108 static bool tree_can_merge_blocks_p (basic_block, basic_block);
109 static void remove_bb (basic_block);
110 static edge find_taken_edge_computed_goto (basic_block, tree);
111 static edge find_taken_edge_cond_expr (basic_block, tree);
112 static edge find_taken_edge_switch_expr (basic_block, tree);
113 static tree find_case_label_for_value (tree, tree);
115 void
116 init_empty_tree_cfg (void)
118 /* Initialize the basic block array. */
119 init_flow ();
120 profile_status = PROFILE_ABSENT;
121 n_basic_blocks = NUM_FIXED_BLOCKS;
122 last_basic_block = NUM_FIXED_BLOCKS;
123 basic_block_info = VEC_alloc (basic_block, gc, initial_cfg_capacity);
124 VEC_safe_grow_cleared (basic_block, gc, basic_block_info,
125 initial_cfg_capacity);
127 /* Build a mapping of labels to their associated blocks. */
128 label_to_block_map = VEC_alloc (basic_block, gc, initial_cfg_capacity);
129 VEC_safe_grow_cleared (basic_block, gc, label_to_block_map,
130 initial_cfg_capacity);
132 SET_BASIC_BLOCK (ENTRY_BLOCK, ENTRY_BLOCK_PTR);
133 SET_BASIC_BLOCK (EXIT_BLOCK, EXIT_BLOCK_PTR);
134 ENTRY_BLOCK_PTR->next_bb = EXIT_BLOCK_PTR;
135 EXIT_BLOCK_PTR->prev_bb = ENTRY_BLOCK_PTR;
138 /*---------------------------------------------------------------------------
139 Create basic blocks
140 ---------------------------------------------------------------------------*/
142 /* Entry point to the CFG builder for trees. TP points to the list of
143 statements to be added to the flowgraph. */
145 static void
146 build_tree_cfg (tree *tp)
148 /* Register specific tree functions. */
149 tree_register_cfg_hooks ();
151 memset ((void *) &cfg_stats, 0, sizeof (cfg_stats));
153 init_empty_tree_cfg ();
155 found_computed_goto = 0;
156 make_blocks (*tp);
158 /* Computed gotos are hell to deal with, especially if there are
159 lots of them with a large number of destinations. So we factor
160 them to a common computed goto location before we build the
161 edge list. After we convert back to normal form, we will un-factor
162 the computed gotos since factoring introduces an unwanted jump. */
163 if (found_computed_goto)
164 factor_computed_gotos ();
166 /* Make sure there is always at least one block, even if it's empty. */
167 if (n_basic_blocks == NUM_FIXED_BLOCKS)
168 create_empty_bb (ENTRY_BLOCK_PTR);
170 /* Adjust the size of the array. */
171 if (VEC_length (basic_block, basic_block_info) < (size_t) n_basic_blocks)
172 VEC_safe_grow_cleared (basic_block, gc, basic_block_info, n_basic_blocks);
174 /* To speed up statement iterator walks, we first purge dead labels. */
175 cleanup_dead_labels ();
177 /* Group case nodes to reduce the number of edges.
178 We do this after cleaning up dead labels because otherwise we miss
179 a lot of obvious case merging opportunities. */
180 group_case_labels ();
182 /* Create the edges of the flowgraph. */
183 make_edges ();
185 /* Debugging dumps. */
187 /* Write the flowgraph to a VCG file. */
189 int local_dump_flags;
190 FILE *vcg_file = dump_begin (TDI_vcg, &local_dump_flags);
191 if (vcg_file)
193 tree_cfg2vcg (vcg_file);
194 dump_end (TDI_vcg, vcg_file);
198 #ifdef ENABLE_CHECKING
199 verify_stmts ();
200 #endif
202 /* Dump a textual representation of the flowgraph. */
203 if (dump_file)
204 dump_tree_cfg (dump_file, dump_flags);
207 static unsigned int
208 execute_build_cfg (void)
210 build_tree_cfg (&DECL_SAVED_TREE (current_function_decl));
211 return 0;
214 struct tree_opt_pass pass_build_cfg =
216 "cfg", /* name */
217 NULL, /* gate */
218 execute_build_cfg, /* execute */
219 NULL, /* sub */
220 NULL, /* next */
221 0, /* static_pass_number */
222 TV_TREE_CFG, /* tv_id */
223 PROP_gimple_leh, /* properties_required */
224 PROP_cfg, /* properties_provided */
225 0, /* properties_destroyed */
226 0, /* todo_flags_start */
227 TODO_verify_stmts | TODO_cleanup_cfg, /* todo_flags_finish */
228 0 /* letter */
231 /* Search the CFG for any computed gotos. If found, factor them to a
232 common computed goto site. Also record the location of that site so
233 that we can un-factor the gotos after we have converted back to
234 normal form. */
236 static void
237 factor_computed_gotos (void)
239 basic_block bb;
240 tree factored_label_decl = NULL;
241 tree var = NULL;
242 tree factored_computed_goto_label = NULL;
243 tree factored_computed_goto = NULL;
245 /* We know there are one or more computed gotos in this function.
246 Examine the last statement in each basic block to see if the block
247 ends with a computed goto. */
249 FOR_EACH_BB (bb)
251 block_stmt_iterator bsi = bsi_last (bb);
252 tree last;
254 if (bsi_end_p (bsi))
255 continue;
256 last = bsi_stmt (bsi);
258 /* Ignore the computed goto we create when we factor the original
259 computed gotos. */
260 if (last == factored_computed_goto)
261 continue;
263 /* If the last statement is a computed goto, factor it. */
264 if (computed_goto_p (last))
266 tree assignment;
268 /* The first time we find a computed goto we need to create
269 the factored goto block and the variable each original
270 computed goto will use for their goto destination. */
271 if (! factored_computed_goto)
273 basic_block new_bb = create_empty_bb (bb);
274 block_stmt_iterator new_bsi = bsi_start (new_bb);
276 /* Create the destination of the factored goto. Each original
277 computed goto will put its desired destination into this
278 variable and jump to the label we create immediately
279 below. */
280 var = create_tmp_var (ptr_type_node, "gotovar");
282 /* Build a label for the new block which will contain the
283 factored computed goto. */
284 factored_label_decl = create_artificial_label ();
285 factored_computed_goto_label
286 = build1 (LABEL_EXPR, void_type_node, factored_label_decl);
287 bsi_insert_after (&new_bsi, factored_computed_goto_label,
288 BSI_NEW_STMT);
290 /* Build our new computed goto. */
291 factored_computed_goto = build1 (GOTO_EXPR, void_type_node, var);
292 bsi_insert_after (&new_bsi, factored_computed_goto,
293 BSI_NEW_STMT);
296 /* Copy the original computed goto's destination into VAR. */
297 assignment = build2_gimple (GIMPLE_MODIFY_STMT,
298 var, GOTO_DESTINATION (last));
299 bsi_insert_before (&bsi, assignment, BSI_SAME_STMT);
301 /* And re-vector the computed goto to the new destination. */
302 GOTO_DESTINATION (last) = factored_label_decl;
308 /* Build a flowgraph for the statement_list STMT_LIST. */
310 static void
311 make_blocks (tree stmt_list)
313 tree_stmt_iterator i = tsi_start (stmt_list);
314 tree stmt = NULL;
315 bool start_new_block = true;
316 bool first_stmt_of_list = true;
317 basic_block bb = ENTRY_BLOCK_PTR;
319 while (!tsi_end_p (i))
321 tree prev_stmt;
323 prev_stmt = stmt;
324 stmt = tsi_stmt (i);
326 /* If the statement starts a new basic block or if we have determined
327 in a previous pass that we need to create a new block for STMT, do
328 so now. */
329 if (start_new_block || stmt_starts_bb_p (stmt, prev_stmt))
331 if (!first_stmt_of_list)
332 stmt_list = tsi_split_statement_list_before (&i);
333 bb = create_basic_block (stmt_list, NULL, bb);
334 start_new_block = false;
337 /* Now add STMT to BB and create the subgraphs for special statement
338 codes. */
339 set_bb_for_stmt (stmt, bb);
341 if (computed_goto_p (stmt))
342 found_computed_goto = true;
344 /* If STMT is a basic block terminator, set START_NEW_BLOCK for the
345 next iteration. */
346 if (stmt_ends_bb_p (stmt))
347 start_new_block = true;
349 tsi_next (&i);
350 first_stmt_of_list = false;
355 /* Create and return a new empty basic block after bb AFTER. */
357 static basic_block
358 create_bb (void *h, void *e, basic_block after)
360 basic_block bb;
362 gcc_assert (!e);
364 /* Create and initialize a new basic block. Since alloc_block uses
365 ggc_alloc_cleared to allocate a basic block, we do not have to
366 clear the newly allocated basic block here. */
367 bb = alloc_block ();
369 bb->index = last_basic_block;
370 bb->flags = BB_NEW;
371 bb->stmt_list = h ? (tree) h : alloc_stmt_list ();
373 /* Add the new block to the linked list of blocks. */
374 link_block (bb, after);
376 /* Grow the basic block array if needed. */
377 if ((size_t) last_basic_block == VEC_length (basic_block, basic_block_info))
379 size_t new_size = last_basic_block + (last_basic_block + 3) / 4;
380 VEC_safe_grow_cleared (basic_block, gc, basic_block_info, new_size);
383 /* Add the newly created block to the array. */
384 SET_BASIC_BLOCK (last_basic_block, bb);
386 n_basic_blocks++;
387 last_basic_block++;
389 return bb;
393 /*---------------------------------------------------------------------------
394 Edge creation
395 ---------------------------------------------------------------------------*/
397 /* Fold COND_EXPR_COND of each COND_EXPR. */
399 void
400 fold_cond_expr_cond (void)
402 basic_block bb;
404 FOR_EACH_BB (bb)
406 tree stmt = last_stmt (bb);
408 if (stmt
409 && TREE_CODE (stmt) == COND_EXPR)
411 tree cond = fold (COND_EXPR_COND (stmt));
412 if (integer_zerop (cond))
413 COND_EXPR_COND (stmt) = boolean_false_node;
414 else if (integer_onep (cond))
415 COND_EXPR_COND (stmt) = boolean_true_node;
420 /* Join all the blocks in the flowgraph. */
422 static void
423 make_edges (void)
425 basic_block bb;
426 struct omp_region *cur_region = NULL;
428 /* Create an edge from entry to the first block with executable
429 statements in it. */
430 make_edge (ENTRY_BLOCK_PTR, BASIC_BLOCK (NUM_FIXED_BLOCKS), EDGE_FALLTHRU);
432 /* Traverse the basic block array placing edges. */
433 FOR_EACH_BB (bb)
435 tree last = last_stmt (bb);
436 bool fallthru;
438 if (last)
440 enum tree_code code = TREE_CODE (last);
441 switch (code)
443 case GOTO_EXPR:
444 make_goto_expr_edges (bb);
445 fallthru = false;
446 break;
447 case RETURN_EXPR:
448 make_edge (bb, EXIT_BLOCK_PTR, 0);
449 fallthru = false;
450 break;
451 case COND_EXPR:
452 make_cond_expr_edges (bb);
453 fallthru = false;
454 break;
455 case SWITCH_EXPR:
456 make_switch_expr_edges (bb);
457 fallthru = false;
458 break;
459 case RESX_EXPR:
460 make_eh_edges (last);
461 fallthru = false;
462 break;
464 case CALL_EXPR:
465 /* If this function receives a nonlocal goto, then we need to
466 make edges from this call site to all the nonlocal goto
467 handlers. */
468 if (tree_can_make_abnormal_goto (last))
469 make_abnormal_goto_edges (bb, true);
471 /* If this statement has reachable exception handlers, then
472 create abnormal edges to them. */
473 make_eh_edges (last);
475 /* Some calls are known not to return. */
476 fallthru = !(call_expr_flags (last) & ECF_NORETURN);
477 break;
479 case MODIFY_EXPR:
480 gcc_unreachable ();
482 case GIMPLE_MODIFY_STMT:
483 if (is_ctrl_altering_stmt (last))
485 /* A GIMPLE_MODIFY_STMT may have a CALL_EXPR on its RHS and
486 the CALL_EXPR may have an abnormal edge. Search the RHS
487 for this case and create any required edges. */
488 if (tree_can_make_abnormal_goto (last))
489 make_abnormal_goto_edges (bb, true);
491 make_eh_edges (last);
493 fallthru = true;
494 break;
496 case OMP_PARALLEL:
497 case OMP_FOR:
498 case OMP_SINGLE:
499 case OMP_MASTER:
500 case OMP_ORDERED:
501 case OMP_CRITICAL:
502 case OMP_SECTION:
503 cur_region = new_omp_region (bb, code, cur_region);
504 fallthru = true;
505 break;
507 case OMP_SECTIONS:
508 cur_region = new_omp_region (bb, code, cur_region);
509 fallthru = false;
510 break;
512 case OMP_RETURN:
513 /* In the case of an OMP_SECTION, the edge will go somewhere
514 other than the next block. This will be created later. */
515 cur_region->exit = bb;
516 fallthru = cur_region->type != OMP_SECTION;
517 cur_region = cur_region->outer;
518 break;
520 case OMP_CONTINUE:
521 cur_region->cont = bb;
522 switch (cur_region->type)
524 case OMP_FOR:
525 /* ??? Technically there should be a some sort of loopback
526 edge here, but it goes to a block that doesn't exist yet,
527 and without it, updating the ssa form would be a real
528 bear. Fortunately, we don't yet do ssa before expanding
529 these nodes. */
530 break;
532 case OMP_SECTIONS:
533 /* Wire up the edges into and out of the nested sections. */
534 /* ??? Similarly wrt loopback. */
536 struct omp_region *i;
537 for (i = cur_region->inner; i ; i = i->next)
539 gcc_assert (i->type == OMP_SECTION);
540 make_edge (cur_region->entry, i->entry, 0);
541 make_edge (i->exit, bb, EDGE_FALLTHRU);
544 break;
546 default:
547 gcc_unreachable ();
549 fallthru = true;
550 break;
552 default:
553 gcc_assert (!stmt_ends_bb_p (last));
554 fallthru = true;
557 else
558 fallthru = true;
560 if (fallthru)
561 make_edge (bb, bb->next_bb, EDGE_FALLTHRU);
564 if (root_omp_region)
565 free_omp_regions ();
567 /* Fold COND_EXPR_COND of each COND_EXPR. */
568 fold_cond_expr_cond ();
572 /* Create the edges for a COND_EXPR starting at block BB.
573 At this point, both clauses must contain only simple gotos. */
575 static void
576 make_cond_expr_edges (basic_block bb)
578 tree entry = last_stmt (bb);
579 basic_block then_bb, else_bb;
580 tree then_label, else_label;
581 edge e;
583 gcc_assert (entry);
584 gcc_assert (TREE_CODE (entry) == COND_EXPR);
586 /* Entry basic blocks for each component. */
587 then_label = GOTO_DESTINATION (COND_EXPR_THEN (entry));
588 else_label = GOTO_DESTINATION (COND_EXPR_ELSE (entry));
589 then_bb = label_to_block (then_label);
590 else_bb = label_to_block (else_label);
592 e = make_edge (bb, then_bb, EDGE_TRUE_VALUE);
593 #ifdef USE_MAPPED_LOCATION
594 e->goto_locus = EXPR_LOCATION (COND_EXPR_THEN (entry));
595 #else
596 e->goto_locus = EXPR_LOCUS (COND_EXPR_THEN (entry));
597 #endif
598 e = make_edge (bb, else_bb, EDGE_FALSE_VALUE);
599 if (e)
601 #ifdef USE_MAPPED_LOCATION
602 e->goto_locus = EXPR_LOCATION (COND_EXPR_ELSE (entry));
603 #else
604 e->goto_locus = EXPR_LOCUS (COND_EXPR_ELSE (entry));
605 #endif
610 /* Called for each element in the hash table (P) as we delete the
611 edge to cases hash table.
613 Clear all the TREE_CHAINs to prevent problems with copying of
614 SWITCH_EXPRs and structure sharing rules, then free the hash table
615 element. */
617 static bool
618 edge_to_cases_cleanup (void *key ATTRIBUTE_UNUSED, void **value,
619 void *data ATTRIBUTE_UNUSED)
621 tree t, next;
623 for (t = (tree) *value; t; t = next)
625 next = TREE_CHAIN (t);
626 TREE_CHAIN (t) = NULL;
629 *value = NULL;
630 return false;
633 /* Start recording information mapping edges to case labels. */
635 void
636 start_recording_case_labels (void)
638 gcc_assert (edge_to_cases == NULL);
639 edge_to_cases = pointer_map_create ();
642 /* Return nonzero if we are recording information for case labels. */
644 static bool
645 recording_case_labels_p (void)
647 return (edge_to_cases != NULL);
650 /* Stop recording information mapping edges to case labels and
651 remove any information we have recorded. */
652 void
653 end_recording_case_labels (void)
655 pointer_map_traverse (edge_to_cases, edge_to_cases_cleanup, NULL);
656 pointer_map_destroy (edge_to_cases);
657 edge_to_cases = NULL;
660 /* If we are inside a {start,end}_recording_cases block, then return
661 a chain of CASE_LABEL_EXPRs from T which reference E.
663 Otherwise return NULL. */
665 static tree
666 get_cases_for_edge (edge e, tree t)
668 void **slot;
669 size_t i, n;
670 tree vec;
672 /* If we are not recording cases, then we do not have CASE_LABEL_EXPR
673 chains available. Return NULL so the caller can detect this case. */
674 if (!recording_case_labels_p ())
675 return NULL;
677 slot = pointer_map_contains (edge_to_cases, e);
678 if (slot)
679 return (tree) *slot;
681 /* If we did not find E in the hash table, then this must be the first
682 time we have been queried for information about E & T. Add all the
683 elements from T to the hash table then perform the query again. */
685 vec = SWITCH_LABELS (t);
686 n = TREE_VEC_LENGTH (vec);
687 for (i = 0; i < n; i++)
689 tree elt = TREE_VEC_ELT (vec, i);
690 tree lab = CASE_LABEL (elt);
691 basic_block label_bb = label_to_block (lab);
692 edge this_edge = find_edge (e->src, label_bb);
694 /* Add it to the chain of CASE_LABEL_EXPRs referencing E, or create
695 a new chain. */
696 slot = pointer_map_insert (edge_to_cases, this_edge);
697 TREE_CHAIN (elt) = (tree) *slot;
698 *slot = elt;
701 return (tree) *pointer_map_contains (edge_to_cases, e);
704 /* Create the edges for a SWITCH_EXPR starting at block BB.
705 At this point, the switch body has been lowered and the
706 SWITCH_LABELS filled in, so this is in effect a multi-way branch. */
708 static void
709 make_switch_expr_edges (basic_block bb)
711 tree entry = last_stmt (bb);
712 size_t i, n;
713 tree vec;
715 vec = SWITCH_LABELS (entry);
716 n = TREE_VEC_LENGTH (vec);
718 for (i = 0; i < n; ++i)
720 tree lab = CASE_LABEL (TREE_VEC_ELT (vec, i));
721 basic_block label_bb = label_to_block (lab);
722 make_edge (bb, label_bb, 0);
727 /* Return the basic block holding label DEST. */
729 basic_block
730 label_to_block_fn (struct function *ifun, tree dest)
732 int uid = LABEL_DECL_UID (dest);
734 /* We would die hard when faced by an undefined label. Emit a label to
735 the very first basic block. This will hopefully make even the dataflow
736 and undefined variable warnings quite right. */
737 if ((errorcount || sorrycount) && uid < 0)
739 block_stmt_iterator bsi =
740 bsi_start (BASIC_BLOCK (NUM_FIXED_BLOCKS));
741 tree stmt;
743 stmt = build1 (LABEL_EXPR, void_type_node, dest);
744 bsi_insert_before (&bsi, stmt, BSI_NEW_STMT);
745 uid = LABEL_DECL_UID (dest);
747 if (VEC_length (basic_block, ifun->cfg->x_label_to_block_map)
748 <= (unsigned int) uid)
749 return NULL;
750 return VEC_index (basic_block, ifun->cfg->x_label_to_block_map, uid);
753 /* Create edges for an abnormal goto statement at block BB. If FOR_CALL
754 is true, the source statement is a CALL_EXPR instead of a GOTO_EXPR. */
756 void
757 make_abnormal_goto_edges (basic_block bb, bool for_call)
759 basic_block target_bb;
760 block_stmt_iterator bsi;
762 FOR_EACH_BB (target_bb)
763 for (bsi = bsi_start (target_bb); !bsi_end_p (bsi); bsi_next (&bsi))
765 tree target = bsi_stmt (bsi);
767 if (TREE_CODE (target) != LABEL_EXPR)
768 break;
770 target = LABEL_EXPR_LABEL (target);
772 /* Make an edge to every label block that has been marked as a
773 potential target for a computed goto or a non-local goto. */
774 if ((FORCED_LABEL (target) && !for_call)
775 || (DECL_NONLOCAL (target) && for_call))
777 make_edge (bb, target_bb, EDGE_ABNORMAL);
778 break;
783 /* Create edges for a goto statement at block BB. */
785 static void
786 make_goto_expr_edges (basic_block bb)
788 block_stmt_iterator last = bsi_last (bb);
789 tree goto_t = bsi_stmt (last);
791 /* A simple GOTO creates normal edges. */
792 if (simple_goto_p (goto_t))
794 tree dest = GOTO_DESTINATION (goto_t);
795 edge e = make_edge (bb, label_to_block (dest), EDGE_FALLTHRU);
796 #ifdef USE_MAPPED_LOCATION
797 e->goto_locus = EXPR_LOCATION (goto_t);
798 #else
799 e->goto_locus = EXPR_LOCUS (goto_t);
800 #endif
801 bsi_remove (&last, true);
802 return;
805 /* A computed GOTO creates abnormal edges. */
806 make_abnormal_goto_edges (bb, false);
810 /*---------------------------------------------------------------------------
811 Flowgraph analysis
812 ---------------------------------------------------------------------------*/
814 /* Cleanup useless labels in basic blocks. This is something we wish
815 to do early because it allows us to group case labels before creating
816 the edges for the CFG, and it speeds up block statement iterators in
817 all passes later on.
818 We only run this pass once, running it more than once is probably not
819 profitable. */
821 /* A map from basic block index to the leading label of that block. */
822 static tree *label_for_bb;
824 /* Callback for for_each_eh_region. Helper for cleanup_dead_labels. */
825 static void
826 update_eh_label (struct eh_region *region)
828 tree old_label = get_eh_region_tree_label (region);
829 if (old_label)
831 tree new_label;
832 basic_block bb = label_to_block (old_label);
834 /* ??? After optimizing, there may be EH regions with labels
835 that have already been removed from the function body, so
836 there is no basic block for them. */
837 if (! bb)
838 return;
840 new_label = label_for_bb[bb->index];
841 set_eh_region_tree_label (region, new_label);
845 /* Given LABEL return the first label in the same basic block. */
846 static tree
847 main_block_label (tree label)
849 basic_block bb = label_to_block (label);
851 /* label_to_block possibly inserted undefined label into the chain. */
852 if (!label_for_bb[bb->index])
853 label_for_bb[bb->index] = label;
854 return label_for_bb[bb->index];
857 /* Cleanup redundant labels. This is a three-step process:
858 1) Find the leading label for each block.
859 2) Redirect all references to labels to the leading labels.
860 3) Cleanup all useless labels. */
862 void
863 cleanup_dead_labels (void)
865 basic_block bb;
866 label_for_bb = XCNEWVEC (tree, last_basic_block);
868 /* Find a suitable label for each block. We use the first user-defined
869 label if there is one, or otherwise just the first label we see. */
870 FOR_EACH_BB (bb)
872 block_stmt_iterator i;
874 for (i = bsi_start (bb); !bsi_end_p (i); bsi_next (&i))
876 tree label, stmt = bsi_stmt (i);
878 if (TREE_CODE (stmt) != LABEL_EXPR)
879 break;
881 label = LABEL_EXPR_LABEL (stmt);
883 /* If we have not yet seen a label for the current block,
884 remember this one and see if there are more labels. */
885 if (! label_for_bb[bb->index])
887 label_for_bb[bb->index] = label;
888 continue;
891 /* If we did see a label for the current block already, but it
892 is an artificially created label, replace it if the current
893 label is a user defined label. */
894 if (! DECL_ARTIFICIAL (label)
895 && DECL_ARTIFICIAL (label_for_bb[bb->index]))
897 label_for_bb[bb->index] = label;
898 break;
903 /* Now redirect all jumps/branches to the selected label.
904 First do so for each block ending in a control statement. */
905 FOR_EACH_BB (bb)
907 tree stmt = last_stmt (bb);
908 if (!stmt)
909 continue;
911 switch (TREE_CODE (stmt))
913 case COND_EXPR:
915 tree true_branch, false_branch;
917 true_branch = COND_EXPR_THEN (stmt);
918 false_branch = COND_EXPR_ELSE (stmt);
920 GOTO_DESTINATION (true_branch)
921 = main_block_label (GOTO_DESTINATION (true_branch));
922 GOTO_DESTINATION (false_branch)
923 = main_block_label (GOTO_DESTINATION (false_branch));
925 break;
928 case SWITCH_EXPR:
930 size_t i;
931 tree vec = SWITCH_LABELS (stmt);
932 size_t n = TREE_VEC_LENGTH (vec);
934 /* Replace all destination labels. */
935 for (i = 0; i < n; ++i)
937 tree elt = TREE_VEC_ELT (vec, i);
938 tree label = main_block_label (CASE_LABEL (elt));
939 CASE_LABEL (elt) = label;
941 break;
944 /* We have to handle GOTO_EXPRs until they're removed, and we don't
945 remove them until after we've created the CFG edges. */
946 case GOTO_EXPR:
947 if (! computed_goto_p (stmt))
949 GOTO_DESTINATION (stmt)
950 = main_block_label (GOTO_DESTINATION (stmt));
951 break;
954 default:
955 break;
959 for_each_eh_region (update_eh_label);
961 /* Finally, purge dead labels. All user-defined labels and labels that
962 can be the target of non-local gotos and labels which have their
963 address taken are preserved. */
964 FOR_EACH_BB (bb)
966 block_stmt_iterator i;
967 tree label_for_this_bb = label_for_bb[bb->index];
969 if (! label_for_this_bb)
970 continue;
972 for (i = bsi_start (bb); !bsi_end_p (i); )
974 tree label, stmt = bsi_stmt (i);
976 if (TREE_CODE (stmt) != LABEL_EXPR)
977 break;
979 label = LABEL_EXPR_LABEL (stmt);
981 if (label == label_for_this_bb
982 || ! DECL_ARTIFICIAL (label)
983 || DECL_NONLOCAL (label)
984 || FORCED_LABEL (label))
985 bsi_next (&i);
986 else
987 bsi_remove (&i, true);
991 free (label_for_bb);
994 /* Look for blocks ending in a multiway branch (a SWITCH_EXPR in GIMPLE),
995 and scan the sorted vector of cases. Combine the ones jumping to the
996 same label.
997 Eg. three separate entries 1: 2: 3: become one entry 1..3: */
999 void
1000 group_case_labels (void)
1002 basic_block bb;
1004 FOR_EACH_BB (bb)
1006 tree stmt = last_stmt (bb);
1007 if (stmt && TREE_CODE (stmt) == SWITCH_EXPR)
1009 tree labels = SWITCH_LABELS (stmt);
1010 int old_size = TREE_VEC_LENGTH (labels);
1011 int i, j, new_size = old_size;
1012 tree default_case = TREE_VEC_ELT (labels, old_size - 1);
1013 tree default_label;
1015 /* The default label is always the last case in a switch
1016 statement after gimplification. */
1017 default_label = CASE_LABEL (default_case);
1019 /* Look for possible opportunities to merge cases.
1020 Ignore the last element of the label vector because it
1021 must be the default case. */
1022 i = 0;
1023 while (i < old_size - 1)
1025 tree base_case, base_label, base_high;
1026 base_case = TREE_VEC_ELT (labels, i);
1028 gcc_assert (base_case);
1029 base_label = CASE_LABEL (base_case);
1031 /* Discard cases that have the same destination as the
1032 default case. */
1033 if (base_label == default_label)
1035 TREE_VEC_ELT (labels, i) = NULL_TREE;
1036 i++;
1037 new_size--;
1038 continue;
1041 base_high = CASE_HIGH (base_case) ?
1042 CASE_HIGH (base_case) : CASE_LOW (base_case);
1043 i++;
1044 /* Try to merge case labels. Break out when we reach the end
1045 of the label vector or when we cannot merge the next case
1046 label with the current one. */
1047 while (i < old_size - 1)
1049 tree merge_case = TREE_VEC_ELT (labels, i);
1050 tree merge_label = CASE_LABEL (merge_case);
1051 tree t = int_const_binop (PLUS_EXPR, base_high,
1052 integer_one_node, 1);
1054 /* Merge the cases if they jump to the same place,
1055 and their ranges are consecutive. */
1056 if (merge_label == base_label
1057 && tree_int_cst_equal (CASE_LOW (merge_case), t))
1059 base_high = CASE_HIGH (merge_case) ?
1060 CASE_HIGH (merge_case) : CASE_LOW (merge_case);
1061 CASE_HIGH (base_case) = base_high;
1062 TREE_VEC_ELT (labels, i) = NULL_TREE;
1063 new_size--;
1064 i++;
1066 else
1067 break;
1071 /* Compress the case labels in the label vector, and adjust the
1072 length of the vector. */
1073 for (i = 0, j = 0; i < new_size; i++)
1075 while (! TREE_VEC_ELT (labels, j))
1076 j++;
1077 TREE_VEC_ELT (labels, i) = TREE_VEC_ELT (labels, j++);
1079 TREE_VEC_LENGTH (labels) = new_size;
1084 /* Checks whether we can merge block B into block A. */
1086 static bool
1087 tree_can_merge_blocks_p (basic_block a, basic_block b)
1089 tree stmt;
1090 block_stmt_iterator bsi;
1091 tree phi;
1093 if (!single_succ_p (a))
1094 return false;
1096 if (single_succ_edge (a)->flags & EDGE_ABNORMAL)
1097 return false;
1099 if (single_succ (a) != b)
1100 return false;
1102 if (!single_pred_p (b))
1103 return false;
1105 if (b == EXIT_BLOCK_PTR)
1106 return false;
1108 /* If A ends by a statement causing exceptions or something similar, we
1109 cannot merge the blocks. */
1110 stmt = last_stmt (a);
1111 if (stmt && stmt_ends_bb_p (stmt))
1112 return false;
1114 /* Do not allow a block with only a non-local label to be merged. */
1115 if (stmt && TREE_CODE (stmt) == LABEL_EXPR
1116 && DECL_NONLOCAL (LABEL_EXPR_LABEL (stmt)))
1117 return false;
1119 /* It must be possible to eliminate all phi nodes in B. If ssa form
1120 is not up-to-date, we cannot eliminate any phis; however, if only
1121 some symbols as whole are marked for renaming, this is not a problem,
1122 as phi nodes for those symbols are irrelevant in updating anyway. */
1123 phi = phi_nodes (b);
1124 if (phi)
1126 if (name_mappings_registered_p ())
1127 return false;
1129 for (; phi; phi = PHI_CHAIN (phi))
1130 if (!is_gimple_reg (PHI_RESULT (phi))
1131 && !may_propagate_copy (PHI_RESULT (phi), PHI_ARG_DEF (phi, 0)))
1132 return false;
1135 /* Do not remove user labels. */
1136 for (bsi = bsi_start (b); !bsi_end_p (bsi); bsi_next (&bsi))
1138 stmt = bsi_stmt (bsi);
1139 if (TREE_CODE (stmt) != LABEL_EXPR)
1140 break;
1141 if (!DECL_ARTIFICIAL (LABEL_EXPR_LABEL (stmt)))
1142 return false;
1145 /* Protect the loop latches. */
1146 if (current_loops
1147 && b->loop_father->latch == b)
1148 return false;
1150 return true;
1153 /* Replaces all uses of NAME by VAL. */
1155 void
1156 replace_uses_by (tree name, tree val)
1158 imm_use_iterator imm_iter;
1159 use_operand_p use;
1160 tree stmt;
1161 edge e;
1163 FOR_EACH_IMM_USE_STMT (stmt, imm_iter, name)
1165 if (TREE_CODE (stmt) != PHI_NODE)
1166 push_stmt_changes (&stmt);
1168 FOR_EACH_IMM_USE_ON_STMT (use, imm_iter)
1170 replace_exp (use, val);
1172 if (TREE_CODE (stmt) == PHI_NODE)
1174 e = PHI_ARG_EDGE (stmt, PHI_ARG_INDEX_FROM_USE (use));
1175 if (e->flags & EDGE_ABNORMAL)
1177 /* This can only occur for virtual operands, since
1178 for the real ones SSA_NAME_OCCURS_IN_ABNORMAL_PHI (name))
1179 would prevent replacement. */
1180 gcc_assert (!is_gimple_reg (name));
1181 SSA_NAME_OCCURS_IN_ABNORMAL_PHI (val) = 1;
1186 if (TREE_CODE (stmt) != PHI_NODE)
1188 tree rhs;
1190 fold_stmt_inplace (stmt);
1192 /* FIXME. This should go in pop_stmt_changes. */
1193 rhs = get_rhs (stmt);
1194 if (TREE_CODE (rhs) == ADDR_EXPR)
1195 recompute_tree_invariant_for_addr_expr (rhs);
1197 maybe_clean_or_replace_eh_stmt (stmt, stmt);
1199 pop_stmt_changes (&stmt);
1203 gcc_assert (zero_imm_uses_p (name));
1205 /* Also update the trees stored in loop structures. */
1206 if (current_loops)
1208 struct loop *loop;
1209 loop_iterator li;
1211 FOR_EACH_LOOP (li, loop, 0)
1213 substitute_in_loop_info (loop, name, val);
1218 /* Merge block B into block A. */
1220 static void
1221 tree_merge_blocks (basic_block a, basic_block b)
1223 block_stmt_iterator bsi;
1224 tree_stmt_iterator last;
1225 tree phi;
1227 if (dump_file)
1228 fprintf (dump_file, "Merging blocks %d and %d\n", a->index, b->index);
1230 /* Remove all single-valued PHI nodes from block B of the form
1231 V_i = PHI <V_j> by propagating V_j to all the uses of V_i. */
1232 bsi = bsi_last (a);
1233 for (phi = phi_nodes (b); phi; phi = phi_nodes (b))
1235 tree def = PHI_RESULT (phi), use = PHI_ARG_DEF (phi, 0);
1236 tree copy;
1237 bool may_replace_uses = may_propagate_copy (def, use);
1239 /* In case we have loops to care about, do not propagate arguments of
1240 loop closed ssa phi nodes. */
1241 if (current_loops
1242 && is_gimple_reg (def)
1243 && TREE_CODE (use) == SSA_NAME
1244 && a->loop_father != b->loop_father)
1245 may_replace_uses = false;
1247 if (!may_replace_uses)
1249 gcc_assert (is_gimple_reg (def));
1251 /* Note that just emitting the copies is fine -- there is no problem
1252 with ordering of phi nodes. This is because A is the single
1253 predecessor of B, therefore results of the phi nodes cannot
1254 appear as arguments of the phi nodes. */
1255 copy = build2_gimple (GIMPLE_MODIFY_STMT, def, use);
1256 bsi_insert_after (&bsi, copy, BSI_NEW_STMT);
1257 SSA_NAME_DEF_STMT (def) = copy;
1258 remove_phi_node (phi, NULL, false);
1260 else
1262 replace_uses_by (def, use);
1263 remove_phi_node (phi, NULL, true);
1267 /* Ensure that B follows A. */
1268 move_block_after (b, a);
1270 gcc_assert (single_succ_edge (a)->flags & EDGE_FALLTHRU);
1271 gcc_assert (!last_stmt (a) || !stmt_ends_bb_p (last_stmt (a)));
1273 /* Remove labels from B and set bb_for_stmt to A for other statements. */
1274 for (bsi = bsi_start (b); !bsi_end_p (bsi);)
1276 if (TREE_CODE (bsi_stmt (bsi)) == LABEL_EXPR)
1278 tree label = bsi_stmt (bsi);
1280 bsi_remove (&bsi, false);
1281 /* Now that we can thread computed gotos, we might have
1282 a situation where we have a forced label in block B
1283 However, the label at the start of block B might still be
1284 used in other ways (think about the runtime checking for
1285 Fortran assigned gotos). So we can not just delete the
1286 label. Instead we move the label to the start of block A. */
1287 if (FORCED_LABEL (LABEL_EXPR_LABEL (label)))
1289 block_stmt_iterator dest_bsi = bsi_start (a);
1290 bsi_insert_before (&dest_bsi, label, BSI_NEW_STMT);
1293 else
1295 change_bb_for_stmt (bsi_stmt (bsi), a);
1296 bsi_next (&bsi);
1300 /* Merge the chains. */
1301 last = tsi_last (a->stmt_list);
1302 tsi_link_after (&last, b->stmt_list, TSI_NEW_STMT);
1303 b->stmt_list = NULL;
1307 /* Return the one of two successors of BB that is not reachable by a
1308 reached by a complex edge, if there is one. Else, return BB. We use
1309 this in optimizations that use post-dominators for their heuristics,
1310 to catch the cases in C++ where function calls are involved. */
1312 basic_block
1313 single_noncomplex_succ (basic_block bb)
1315 edge e0, e1;
1316 if (EDGE_COUNT (bb->succs) != 2)
1317 return bb;
1319 e0 = EDGE_SUCC (bb, 0);
1320 e1 = EDGE_SUCC (bb, 1);
1321 if (e0->flags & EDGE_COMPLEX)
1322 return e1->dest;
1323 if (e1->flags & EDGE_COMPLEX)
1324 return e0->dest;
1326 return bb;
1330 /* Walk the function tree removing unnecessary statements.
1332 * Empty statement nodes are removed
1334 * Unnecessary TRY_FINALLY and TRY_CATCH blocks are removed
1336 * Unnecessary COND_EXPRs are removed
1338 * Some unnecessary BIND_EXPRs are removed
1340 Clearly more work could be done. The trick is doing the analysis
1341 and removal fast enough to be a net improvement in compile times.
1343 Note that when we remove a control structure such as a COND_EXPR
1344 BIND_EXPR, or TRY block, we will need to repeat this optimization pass
1345 to ensure we eliminate all the useless code. */
1347 struct rus_data
1349 tree *last_goto;
1350 bool repeat;
1351 bool may_throw;
1352 bool may_branch;
1353 bool has_label;
1356 static void remove_useless_stmts_1 (tree *, struct rus_data *);
1358 static bool
1359 remove_useless_stmts_warn_notreached (tree stmt)
1361 if (EXPR_HAS_LOCATION (stmt))
1363 location_t loc = EXPR_LOCATION (stmt);
1364 if (LOCATION_LINE (loc) > 0)
1366 warning (0, "%Hwill never be executed", &loc);
1367 return true;
1371 switch (TREE_CODE (stmt))
1373 case STATEMENT_LIST:
1375 tree_stmt_iterator i;
1376 for (i = tsi_start (stmt); !tsi_end_p (i); tsi_next (&i))
1377 if (remove_useless_stmts_warn_notreached (tsi_stmt (i)))
1378 return true;
1380 break;
1382 case COND_EXPR:
1383 if (remove_useless_stmts_warn_notreached (COND_EXPR_COND (stmt)))
1384 return true;
1385 if (remove_useless_stmts_warn_notreached (COND_EXPR_THEN (stmt)))
1386 return true;
1387 if (remove_useless_stmts_warn_notreached (COND_EXPR_ELSE (stmt)))
1388 return true;
1389 break;
1391 case TRY_FINALLY_EXPR:
1392 case TRY_CATCH_EXPR:
1393 if (remove_useless_stmts_warn_notreached (TREE_OPERAND (stmt, 0)))
1394 return true;
1395 if (remove_useless_stmts_warn_notreached (TREE_OPERAND (stmt, 1)))
1396 return true;
1397 break;
1399 case CATCH_EXPR:
1400 return remove_useless_stmts_warn_notreached (CATCH_BODY (stmt));
1401 case EH_FILTER_EXPR:
1402 return remove_useless_stmts_warn_notreached (EH_FILTER_FAILURE (stmt));
1403 case BIND_EXPR:
1404 return remove_useless_stmts_warn_notreached (BIND_EXPR_BLOCK (stmt));
1406 default:
1407 /* Not a live container. */
1408 break;
1411 return false;
1414 static void
1415 remove_useless_stmts_cond (tree *stmt_p, struct rus_data *data)
1417 tree then_clause, else_clause, cond;
1418 bool save_has_label, then_has_label, else_has_label;
1420 save_has_label = data->has_label;
1421 data->has_label = false;
1422 data->last_goto = NULL;
1424 remove_useless_stmts_1 (&COND_EXPR_THEN (*stmt_p), data);
1426 then_has_label = data->has_label;
1427 data->has_label = false;
1428 data->last_goto = NULL;
1430 remove_useless_stmts_1 (&COND_EXPR_ELSE (*stmt_p), data);
1432 else_has_label = data->has_label;
1433 data->has_label = save_has_label | then_has_label | else_has_label;
1435 then_clause = COND_EXPR_THEN (*stmt_p);
1436 else_clause = COND_EXPR_ELSE (*stmt_p);
1437 cond = fold (COND_EXPR_COND (*stmt_p));
1439 /* If neither arm does anything at all, we can remove the whole IF. */
1440 if (!TREE_SIDE_EFFECTS (then_clause) && !TREE_SIDE_EFFECTS (else_clause))
1442 *stmt_p = build_empty_stmt ();
1443 data->repeat = true;
1446 /* If there are no reachable statements in an arm, then we can
1447 zap the entire conditional. */
1448 else if (integer_nonzerop (cond) && !else_has_label)
1450 if (warn_notreached)
1451 remove_useless_stmts_warn_notreached (else_clause);
1452 *stmt_p = then_clause;
1453 data->repeat = true;
1455 else if (integer_zerop (cond) && !then_has_label)
1457 if (warn_notreached)
1458 remove_useless_stmts_warn_notreached (then_clause);
1459 *stmt_p = else_clause;
1460 data->repeat = true;
1463 /* Check a couple of simple things on then/else with single stmts. */
1464 else
1466 tree then_stmt = expr_only (then_clause);
1467 tree else_stmt = expr_only (else_clause);
1469 /* Notice branches to a common destination. */
1470 if (then_stmt && else_stmt
1471 && TREE_CODE (then_stmt) == GOTO_EXPR
1472 && TREE_CODE (else_stmt) == GOTO_EXPR
1473 && (GOTO_DESTINATION (then_stmt) == GOTO_DESTINATION (else_stmt)))
1475 *stmt_p = then_stmt;
1476 data->repeat = true;
1479 /* If the THEN/ELSE clause merely assigns a value to a variable or
1480 parameter which is already known to contain that value, then
1481 remove the useless THEN/ELSE clause. */
1482 else if (TREE_CODE (cond) == VAR_DECL || TREE_CODE (cond) == PARM_DECL)
1484 if (else_stmt
1485 && TREE_CODE (else_stmt) == GIMPLE_MODIFY_STMT
1486 && GIMPLE_STMT_OPERAND (else_stmt, 0) == cond
1487 && integer_zerop (GIMPLE_STMT_OPERAND (else_stmt, 1)))
1488 COND_EXPR_ELSE (*stmt_p) = alloc_stmt_list ();
1490 else if ((TREE_CODE (cond) == EQ_EXPR || TREE_CODE (cond) == NE_EXPR)
1491 && (TREE_CODE (TREE_OPERAND (cond, 0)) == VAR_DECL
1492 || TREE_CODE (TREE_OPERAND (cond, 0)) == PARM_DECL)
1493 && TREE_CONSTANT (TREE_OPERAND (cond, 1)))
1495 tree stmt = (TREE_CODE (cond) == EQ_EXPR
1496 ? then_stmt : else_stmt);
1497 tree *location = (TREE_CODE (cond) == EQ_EXPR
1498 ? &COND_EXPR_THEN (*stmt_p)
1499 : &COND_EXPR_ELSE (*stmt_p));
1501 if (stmt
1502 && TREE_CODE (stmt) == GIMPLE_MODIFY_STMT
1503 && GIMPLE_STMT_OPERAND (stmt, 0) == TREE_OPERAND (cond, 0)
1504 && GIMPLE_STMT_OPERAND (stmt, 1) == TREE_OPERAND (cond, 1))
1505 *location = alloc_stmt_list ();
1509 /* Protect GOTOs in the arm of COND_EXPRs from being removed. They
1510 would be re-introduced during lowering. */
1511 data->last_goto = NULL;
1515 static void
1516 remove_useless_stmts_tf (tree *stmt_p, struct rus_data *data)
1518 bool save_may_branch, save_may_throw;
1519 bool this_may_branch, this_may_throw;
1521 /* Collect may_branch and may_throw information for the body only. */
1522 save_may_branch = data->may_branch;
1523 save_may_throw = data->may_throw;
1524 data->may_branch = false;
1525 data->may_throw = false;
1526 data->last_goto = NULL;
1528 remove_useless_stmts_1 (&TREE_OPERAND (*stmt_p, 0), data);
1530 this_may_branch = data->may_branch;
1531 this_may_throw = data->may_throw;
1532 data->may_branch |= save_may_branch;
1533 data->may_throw |= save_may_throw;
1534 data->last_goto = NULL;
1536 remove_useless_stmts_1 (&TREE_OPERAND (*stmt_p, 1), data);
1538 /* If the body is empty, then we can emit the FINALLY block without
1539 the enclosing TRY_FINALLY_EXPR. */
1540 if (!TREE_SIDE_EFFECTS (TREE_OPERAND (*stmt_p, 0)))
1542 *stmt_p = TREE_OPERAND (*stmt_p, 1);
1543 data->repeat = true;
1546 /* If the handler is empty, then we can emit the TRY block without
1547 the enclosing TRY_FINALLY_EXPR. */
1548 else if (!TREE_SIDE_EFFECTS (TREE_OPERAND (*stmt_p, 1)))
1550 *stmt_p = TREE_OPERAND (*stmt_p, 0);
1551 data->repeat = true;
1554 /* If the body neither throws, nor branches, then we can safely
1555 string the TRY and FINALLY blocks together. */
1556 else if (!this_may_branch && !this_may_throw)
1558 tree stmt = *stmt_p;
1559 *stmt_p = TREE_OPERAND (stmt, 0);
1560 append_to_statement_list (TREE_OPERAND (stmt, 1), stmt_p);
1561 data->repeat = true;
1566 static void
1567 remove_useless_stmts_tc (tree *stmt_p, struct rus_data *data)
1569 bool save_may_throw, this_may_throw;
1570 tree_stmt_iterator i;
1571 tree stmt;
1573 /* Collect may_throw information for the body only. */
1574 save_may_throw = data->may_throw;
1575 data->may_throw = false;
1576 data->last_goto = NULL;
1578 remove_useless_stmts_1 (&TREE_OPERAND (*stmt_p, 0), data);
1580 this_may_throw = data->may_throw;
1581 data->may_throw = save_may_throw;
1583 /* If the body cannot throw, then we can drop the entire TRY_CATCH_EXPR. */
1584 if (!this_may_throw)
1586 if (warn_notreached)
1587 remove_useless_stmts_warn_notreached (TREE_OPERAND (*stmt_p, 1));
1588 *stmt_p = TREE_OPERAND (*stmt_p, 0);
1589 data->repeat = true;
1590 return;
1593 /* Process the catch clause specially. We may be able to tell that
1594 no exceptions propagate past this point. */
1596 this_may_throw = true;
1597 i = tsi_start (TREE_OPERAND (*stmt_p, 1));
1598 stmt = tsi_stmt (i);
1599 data->last_goto = NULL;
1601 switch (TREE_CODE (stmt))
1603 case CATCH_EXPR:
1604 for (; !tsi_end_p (i); tsi_next (&i))
1606 stmt = tsi_stmt (i);
1607 /* If we catch all exceptions, then the body does not
1608 propagate exceptions past this point. */
1609 if (CATCH_TYPES (stmt) == NULL)
1610 this_may_throw = false;
1611 data->last_goto = NULL;
1612 remove_useless_stmts_1 (&CATCH_BODY (stmt), data);
1614 break;
1616 case EH_FILTER_EXPR:
1617 if (EH_FILTER_MUST_NOT_THROW (stmt))
1618 this_may_throw = false;
1619 else if (EH_FILTER_TYPES (stmt) == NULL)
1620 this_may_throw = false;
1621 remove_useless_stmts_1 (&EH_FILTER_FAILURE (stmt), data);
1622 break;
1624 default:
1625 /* Otherwise this is a cleanup. */
1626 remove_useless_stmts_1 (&TREE_OPERAND (*stmt_p, 1), data);
1628 /* If the cleanup is empty, then we can emit the TRY block without
1629 the enclosing TRY_CATCH_EXPR. */
1630 if (!TREE_SIDE_EFFECTS (TREE_OPERAND (*stmt_p, 1)))
1632 *stmt_p = TREE_OPERAND (*stmt_p, 0);
1633 data->repeat = true;
1635 break;
1637 data->may_throw |= this_may_throw;
1641 static void
1642 remove_useless_stmts_bind (tree *stmt_p, struct rus_data *data)
1644 tree block;
1646 /* First remove anything underneath the BIND_EXPR. */
1647 remove_useless_stmts_1 (&BIND_EXPR_BODY (*stmt_p), data);
1649 /* If the BIND_EXPR has no variables, then we can pull everything
1650 up one level and remove the BIND_EXPR, unless this is the toplevel
1651 BIND_EXPR for the current function or an inlined function.
1653 When this situation occurs we will want to apply this
1654 optimization again. */
1655 block = BIND_EXPR_BLOCK (*stmt_p);
1656 if (BIND_EXPR_VARS (*stmt_p) == NULL_TREE
1657 && *stmt_p != DECL_SAVED_TREE (current_function_decl)
1658 && (! block
1659 || ! BLOCK_ABSTRACT_ORIGIN (block)
1660 || (TREE_CODE (BLOCK_ABSTRACT_ORIGIN (block))
1661 != FUNCTION_DECL)))
1663 *stmt_p = BIND_EXPR_BODY (*stmt_p);
1664 data->repeat = true;
1669 static void
1670 remove_useless_stmts_goto (tree *stmt_p, struct rus_data *data)
1672 tree dest = GOTO_DESTINATION (*stmt_p);
1674 data->may_branch = true;
1675 data->last_goto = NULL;
1677 /* Record the last goto expr, so that we can delete it if unnecessary. */
1678 if (TREE_CODE (dest) == LABEL_DECL)
1679 data->last_goto = stmt_p;
1683 static void
1684 remove_useless_stmts_label (tree *stmt_p, struct rus_data *data)
1686 tree label = LABEL_EXPR_LABEL (*stmt_p);
1688 data->has_label = true;
1690 /* We do want to jump across non-local label receiver code. */
1691 if (DECL_NONLOCAL (label))
1692 data->last_goto = NULL;
1694 else if (data->last_goto && GOTO_DESTINATION (*data->last_goto) == label)
1696 *data->last_goto = build_empty_stmt ();
1697 data->repeat = true;
1700 /* ??? Add something here to delete unused labels. */
1704 /* If the function is "const" or "pure", then clear TREE_SIDE_EFFECTS on its
1705 decl. This allows us to eliminate redundant or useless
1706 calls to "const" functions.
1708 Gimplifier already does the same operation, but we may notice functions
1709 being const and pure once their calls has been gimplified, so we need
1710 to update the flag. */
1712 static void
1713 update_call_expr_flags (tree call)
1715 tree decl = get_callee_fndecl (call);
1716 if (!decl)
1717 return;
1718 if (call_expr_flags (call) & (ECF_CONST | ECF_PURE))
1719 TREE_SIDE_EFFECTS (call) = 0;
1720 if (TREE_NOTHROW (decl))
1721 TREE_NOTHROW (call) = 1;
1725 /* T is CALL_EXPR. Set current_function_calls_* flags. */
1727 void
1728 notice_special_calls (tree t)
1730 int flags = call_expr_flags (t);
1732 if (flags & ECF_MAY_BE_ALLOCA)
1733 current_function_calls_alloca = true;
1734 if (flags & ECF_RETURNS_TWICE)
1735 current_function_calls_setjmp = true;
1739 /* Clear flags set by notice_special_calls. Used by dead code removal
1740 to update the flags. */
1742 void
1743 clear_special_calls (void)
1745 current_function_calls_alloca = false;
1746 current_function_calls_setjmp = false;
1750 static void
1751 remove_useless_stmts_1 (tree *tp, struct rus_data *data)
1753 tree t = *tp, op;
1755 switch (TREE_CODE (t))
1757 case COND_EXPR:
1758 remove_useless_stmts_cond (tp, data);
1759 break;
1761 case TRY_FINALLY_EXPR:
1762 remove_useless_stmts_tf (tp, data);
1763 break;
1765 case TRY_CATCH_EXPR:
1766 remove_useless_stmts_tc (tp, data);
1767 break;
1769 case BIND_EXPR:
1770 remove_useless_stmts_bind (tp, data);
1771 break;
1773 case GOTO_EXPR:
1774 remove_useless_stmts_goto (tp, data);
1775 break;
1777 case LABEL_EXPR:
1778 remove_useless_stmts_label (tp, data);
1779 break;
1781 case RETURN_EXPR:
1782 fold_stmt (tp);
1783 data->last_goto = NULL;
1784 data->may_branch = true;
1785 break;
1787 case CALL_EXPR:
1788 fold_stmt (tp);
1789 data->last_goto = NULL;
1790 notice_special_calls (t);
1791 update_call_expr_flags (t);
1792 if (tree_could_throw_p (t))
1793 data->may_throw = true;
1794 break;
1796 case MODIFY_EXPR:
1797 gcc_unreachable ();
1799 case GIMPLE_MODIFY_STMT:
1800 data->last_goto = NULL;
1801 fold_stmt (tp);
1802 op = get_call_expr_in (t);
1803 if (op)
1805 update_call_expr_flags (op);
1806 notice_special_calls (op);
1808 if (tree_could_throw_p (t))
1809 data->may_throw = true;
1810 break;
1812 case STATEMENT_LIST:
1814 tree_stmt_iterator i = tsi_start (t);
1815 while (!tsi_end_p (i))
1817 t = tsi_stmt (i);
1818 if (IS_EMPTY_STMT (t))
1820 tsi_delink (&i);
1821 continue;
1824 remove_useless_stmts_1 (tsi_stmt_ptr (i), data);
1826 t = tsi_stmt (i);
1827 if (TREE_CODE (t) == STATEMENT_LIST)
1829 tsi_link_before (&i, t, TSI_SAME_STMT);
1830 tsi_delink (&i);
1832 else
1833 tsi_next (&i);
1836 break;
1837 case ASM_EXPR:
1838 fold_stmt (tp);
1839 data->last_goto = NULL;
1840 break;
1842 default:
1843 data->last_goto = NULL;
1844 break;
1848 static unsigned int
1849 remove_useless_stmts (void)
1851 struct rus_data data;
1853 clear_special_calls ();
1857 memset (&data, 0, sizeof (data));
1858 remove_useless_stmts_1 (&DECL_SAVED_TREE (current_function_decl), &data);
1860 while (data.repeat);
1861 return 0;
1865 struct tree_opt_pass pass_remove_useless_stmts =
1867 "useless", /* name */
1868 NULL, /* gate */
1869 remove_useless_stmts, /* execute */
1870 NULL, /* sub */
1871 NULL, /* next */
1872 0, /* static_pass_number */
1873 0, /* tv_id */
1874 PROP_gimple_any, /* properties_required */
1875 0, /* properties_provided */
1876 0, /* properties_destroyed */
1877 0, /* todo_flags_start */
1878 TODO_dump_func, /* todo_flags_finish */
1879 0 /* letter */
1882 /* Remove PHI nodes associated with basic block BB and all edges out of BB. */
1884 static void
1885 remove_phi_nodes_and_edges_for_unreachable_block (basic_block bb)
1887 tree phi;
1889 /* Since this block is no longer reachable, we can just delete all
1890 of its PHI nodes. */
1891 phi = phi_nodes (bb);
1892 while (phi)
1894 tree next = PHI_CHAIN (phi);
1895 remove_phi_node (phi, NULL_TREE, true);
1896 phi = next;
1899 /* Remove edges to BB's successors. */
1900 while (EDGE_COUNT (bb->succs) > 0)
1901 remove_edge (EDGE_SUCC (bb, 0));
1905 /* Remove statements of basic block BB. */
1907 static void
1908 remove_bb (basic_block bb)
1910 block_stmt_iterator i;
1911 #ifdef USE_MAPPED_LOCATION
1912 source_location loc = UNKNOWN_LOCATION;
1913 #else
1914 source_locus loc = 0;
1915 #endif
1917 if (dump_file)
1919 fprintf (dump_file, "Removing basic block %d\n", bb->index);
1920 if (dump_flags & TDF_DETAILS)
1922 dump_bb (bb, dump_file, 0);
1923 fprintf (dump_file, "\n");
1927 if (current_loops)
1929 struct loop *loop = bb->loop_father;
1931 /* If a loop gets removed, clean up the information associated
1932 with it. */
1933 if (loop->latch == bb
1934 || loop->header == bb)
1935 free_numbers_of_iterations_estimates_loop (loop);
1938 /* Remove all the instructions in the block. */
1939 for (i = bsi_start (bb); !bsi_end_p (i);)
1941 tree stmt = bsi_stmt (i);
1942 if (TREE_CODE (stmt) == LABEL_EXPR
1943 && (FORCED_LABEL (LABEL_EXPR_LABEL (stmt))
1944 || DECL_NONLOCAL (LABEL_EXPR_LABEL (stmt))))
1946 basic_block new_bb;
1947 block_stmt_iterator new_bsi;
1949 /* A non-reachable non-local label may still be referenced.
1950 But it no longer needs to carry the extra semantics of
1951 non-locality. */
1952 if (DECL_NONLOCAL (LABEL_EXPR_LABEL (stmt)))
1954 DECL_NONLOCAL (LABEL_EXPR_LABEL (stmt)) = 0;
1955 FORCED_LABEL (LABEL_EXPR_LABEL (stmt)) = 1;
1958 new_bb = bb->prev_bb;
1959 new_bsi = bsi_start (new_bb);
1960 bsi_remove (&i, false);
1961 bsi_insert_before (&new_bsi, stmt, BSI_NEW_STMT);
1963 else
1965 /* Release SSA definitions if we are in SSA. Note that we
1966 may be called when not in SSA. For example,
1967 final_cleanup calls this function via
1968 cleanup_tree_cfg. */
1969 if (gimple_in_ssa_p (cfun))
1970 release_defs (stmt);
1972 bsi_remove (&i, true);
1975 /* Don't warn for removed gotos. Gotos are often removed due to
1976 jump threading, thus resulting in bogus warnings. Not great,
1977 since this way we lose warnings for gotos in the original
1978 program that are indeed unreachable. */
1979 if (TREE_CODE (stmt) != GOTO_EXPR && EXPR_HAS_LOCATION (stmt) && !loc)
1981 #ifdef USE_MAPPED_LOCATION
1982 if (EXPR_HAS_LOCATION (stmt))
1983 loc = EXPR_LOCATION (stmt);
1984 #else
1985 source_locus t;
1986 t = EXPR_LOCUS (stmt);
1987 if (t && LOCATION_LINE (*t) > 0)
1988 loc = t;
1989 #endif
1993 /* If requested, give a warning that the first statement in the
1994 block is unreachable. We walk statements backwards in the
1995 loop above, so the last statement we process is the first statement
1996 in the block. */
1997 #ifdef USE_MAPPED_LOCATION
1998 if (loc > BUILTINS_LOCATION)
1999 warning (OPT_Wunreachable_code, "%Hwill never be executed", &loc);
2000 #else
2001 if (loc)
2002 warning (OPT_Wunreachable_code, "%Hwill never be executed", loc);
2003 #endif
2005 remove_phi_nodes_and_edges_for_unreachable_block (bb);
2009 /* Given a basic block BB ending with COND_EXPR or SWITCH_EXPR, and a
2010 predicate VAL, return the edge that will be taken out of the block.
2011 If VAL does not match a unique edge, NULL is returned. */
2013 edge
2014 find_taken_edge (basic_block bb, tree val)
2016 tree stmt;
2018 stmt = last_stmt (bb);
2020 gcc_assert (stmt);
2021 gcc_assert (is_ctrl_stmt (stmt));
2022 gcc_assert (val);
2024 if (! is_gimple_min_invariant (val))
2025 return NULL;
2027 if (TREE_CODE (stmt) == COND_EXPR)
2028 return find_taken_edge_cond_expr (bb, val);
2030 if (TREE_CODE (stmt) == SWITCH_EXPR)
2031 return find_taken_edge_switch_expr (bb, val);
2033 if (computed_goto_p (stmt))
2034 return find_taken_edge_computed_goto (bb, TREE_OPERAND( val, 0));
2036 gcc_unreachable ();
2039 /* Given a constant value VAL and the entry block BB to a GOTO_EXPR
2040 statement, determine which of the outgoing edges will be taken out of the
2041 block. Return NULL if either edge may be taken. */
2043 static edge
2044 find_taken_edge_computed_goto (basic_block bb, tree val)
2046 basic_block dest;
2047 edge e = NULL;
2049 dest = label_to_block (val);
2050 if (dest)
2052 e = find_edge (bb, dest);
2053 gcc_assert (e != NULL);
2056 return e;
2059 /* Given a constant value VAL and the entry block BB to a COND_EXPR
2060 statement, determine which of the two edges will be taken out of the
2061 block. Return NULL if either edge may be taken. */
2063 static edge
2064 find_taken_edge_cond_expr (basic_block bb, tree val)
2066 edge true_edge, false_edge;
2068 extract_true_false_edges_from_block (bb, &true_edge, &false_edge);
2070 gcc_assert (TREE_CODE (val) == INTEGER_CST);
2071 return (integer_zerop (val) ? false_edge : true_edge);
2074 /* Given an INTEGER_CST VAL and the entry block BB to a SWITCH_EXPR
2075 statement, determine which edge will be taken out of the block. Return
2076 NULL if any edge may be taken. */
2078 static edge
2079 find_taken_edge_switch_expr (basic_block bb, tree val)
2081 tree switch_expr, taken_case;
2082 basic_block dest_bb;
2083 edge e;
2085 switch_expr = last_stmt (bb);
2086 taken_case = find_case_label_for_value (switch_expr, val);
2087 dest_bb = label_to_block (CASE_LABEL (taken_case));
2089 e = find_edge (bb, dest_bb);
2090 gcc_assert (e);
2091 return e;
2095 /* Return the CASE_LABEL_EXPR that SWITCH_EXPR will take for VAL.
2096 We can make optimal use here of the fact that the case labels are
2097 sorted: We can do a binary search for a case matching VAL. */
2099 static tree
2100 find_case_label_for_value (tree switch_expr, tree val)
2102 tree vec = SWITCH_LABELS (switch_expr);
2103 size_t low, high, n = TREE_VEC_LENGTH (vec);
2104 tree default_case = TREE_VEC_ELT (vec, n - 1);
2106 for (low = -1, high = n - 1; high - low > 1; )
2108 size_t i = (high + low) / 2;
2109 tree t = TREE_VEC_ELT (vec, i);
2110 int cmp;
2112 /* Cache the result of comparing CASE_LOW and val. */
2113 cmp = tree_int_cst_compare (CASE_LOW (t), val);
2115 if (cmp > 0)
2116 high = i;
2117 else
2118 low = i;
2120 if (CASE_HIGH (t) == NULL)
2122 /* A singe-valued case label. */
2123 if (cmp == 0)
2124 return t;
2126 else
2128 /* A case range. We can only handle integer ranges. */
2129 if (cmp <= 0 && tree_int_cst_compare (CASE_HIGH (t), val) >= 0)
2130 return t;
2134 return default_case;
2140 /*---------------------------------------------------------------------------
2141 Debugging functions
2142 ---------------------------------------------------------------------------*/
2144 /* Dump tree-specific information of block BB to file OUTF. */
2146 void
2147 tree_dump_bb (basic_block bb, FILE *outf, int indent)
2149 dump_generic_bb (outf, bb, indent, TDF_VOPS|TDF_MEMSYMS);
2153 /* Dump a basic block on stderr. */
2155 void
2156 debug_tree_bb (basic_block bb)
2158 dump_bb (bb, stderr, 0);
2162 /* Dump basic block with index N on stderr. */
2164 basic_block
2165 debug_tree_bb_n (int n)
2167 debug_tree_bb (BASIC_BLOCK (n));
2168 return BASIC_BLOCK (n);
2172 /* Dump the CFG on stderr.
2174 FLAGS are the same used by the tree dumping functions
2175 (see TDF_* in tree-pass.h). */
2177 void
2178 debug_tree_cfg (int flags)
2180 dump_tree_cfg (stderr, flags);
2184 /* Dump the program showing basic block boundaries on the given FILE.
2186 FLAGS are the same used by the tree dumping functions (see TDF_* in
2187 tree.h). */
2189 void
2190 dump_tree_cfg (FILE *file, int flags)
2192 if (flags & TDF_DETAILS)
2194 const char *funcname
2195 = lang_hooks.decl_printable_name (current_function_decl, 2);
2197 fputc ('\n', file);
2198 fprintf (file, ";; Function %s\n\n", funcname);
2199 fprintf (file, ";; \n%d basic blocks, %d edges, last basic block %d.\n\n",
2200 n_basic_blocks, n_edges, last_basic_block);
2202 brief_dump_cfg (file);
2203 fprintf (file, "\n");
2206 if (flags & TDF_STATS)
2207 dump_cfg_stats (file);
2209 dump_function_to_file (current_function_decl, file, flags | TDF_BLOCKS);
2213 /* Dump CFG statistics on FILE. */
2215 void
2216 dump_cfg_stats (FILE *file)
2218 static long max_num_merged_labels = 0;
2219 unsigned long size, total = 0;
2220 long num_edges;
2221 basic_block bb;
2222 const char * const fmt_str = "%-30s%-13s%12s\n";
2223 const char * const fmt_str_1 = "%-30s%13d%11lu%c\n";
2224 const char * const fmt_str_2 = "%-30s%13ld%11lu%c\n";
2225 const char * const fmt_str_3 = "%-43s%11lu%c\n";
2226 const char *funcname
2227 = lang_hooks.decl_printable_name (current_function_decl, 2);
2230 fprintf (file, "\nCFG Statistics for %s\n\n", funcname);
2232 fprintf (file, "---------------------------------------------------------\n");
2233 fprintf (file, fmt_str, "", " Number of ", "Memory");
2234 fprintf (file, fmt_str, "", " instances ", "used ");
2235 fprintf (file, "---------------------------------------------------------\n");
2237 size = n_basic_blocks * sizeof (struct basic_block_def);
2238 total += size;
2239 fprintf (file, fmt_str_1, "Basic blocks", n_basic_blocks,
2240 SCALE (size), LABEL (size));
2242 num_edges = 0;
2243 FOR_EACH_BB (bb)
2244 num_edges += EDGE_COUNT (bb->succs);
2245 size = num_edges * sizeof (struct edge_def);
2246 total += size;
2247 fprintf (file, fmt_str_2, "Edges", num_edges, SCALE (size), LABEL (size));
2249 fprintf (file, "---------------------------------------------------------\n");
2250 fprintf (file, fmt_str_3, "Total memory used by CFG data", SCALE (total),
2251 LABEL (total));
2252 fprintf (file, "---------------------------------------------------------\n");
2253 fprintf (file, "\n");
2255 if (cfg_stats.num_merged_labels > max_num_merged_labels)
2256 max_num_merged_labels = cfg_stats.num_merged_labels;
2258 fprintf (file, "Coalesced label blocks: %ld (Max so far: %ld)\n",
2259 cfg_stats.num_merged_labels, max_num_merged_labels);
2261 fprintf (file, "\n");
2265 /* Dump CFG statistics on stderr. Keep extern so that it's always
2266 linked in the final executable. */
2268 void
2269 debug_cfg_stats (void)
2271 dump_cfg_stats (stderr);
2275 /* Dump the flowgraph to a .vcg FILE. */
2277 static void
2278 tree_cfg2vcg (FILE *file)
2280 edge e;
2281 edge_iterator ei;
2282 basic_block bb;
2283 const char *funcname
2284 = lang_hooks.decl_printable_name (current_function_decl, 2);
2286 /* Write the file header. */
2287 fprintf (file, "graph: { title: \"%s\"\n", funcname);
2288 fprintf (file, "node: { title: \"ENTRY\" label: \"ENTRY\" }\n");
2289 fprintf (file, "node: { title: \"EXIT\" label: \"EXIT\" }\n");
2291 /* Write blocks and edges. */
2292 FOR_EACH_EDGE (e, ei, ENTRY_BLOCK_PTR->succs)
2294 fprintf (file, "edge: { sourcename: \"ENTRY\" targetname: \"%d\"",
2295 e->dest->index);
2297 if (e->flags & EDGE_FAKE)
2298 fprintf (file, " linestyle: dotted priority: 10");
2299 else
2300 fprintf (file, " linestyle: solid priority: 100");
2302 fprintf (file, " }\n");
2304 fputc ('\n', file);
2306 FOR_EACH_BB (bb)
2308 enum tree_code head_code, end_code;
2309 const char *head_name, *end_name;
2310 int head_line = 0;
2311 int end_line = 0;
2312 tree first = first_stmt (bb);
2313 tree last = last_stmt (bb);
2315 if (first)
2317 head_code = TREE_CODE (first);
2318 head_name = tree_code_name[head_code];
2319 head_line = get_lineno (first);
2321 else
2322 head_name = "no-statement";
2324 if (last)
2326 end_code = TREE_CODE (last);
2327 end_name = tree_code_name[end_code];
2328 end_line = get_lineno (last);
2330 else
2331 end_name = "no-statement";
2333 fprintf (file, "node: { title: \"%d\" label: \"#%d\\n%s (%d)\\n%s (%d)\"}\n",
2334 bb->index, bb->index, head_name, head_line, end_name,
2335 end_line);
2337 FOR_EACH_EDGE (e, ei, bb->succs)
2339 if (e->dest == EXIT_BLOCK_PTR)
2340 fprintf (file, "edge: { sourcename: \"%d\" targetname: \"EXIT\"", bb->index);
2341 else
2342 fprintf (file, "edge: { sourcename: \"%d\" targetname: \"%d\"", bb->index, e->dest->index);
2344 if (e->flags & EDGE_FAKE)
2345 fprintf (file, " priority: 10 linestyle: dotted");
2346 else
2347 fprintf (file, " priority: 100 linestyle: solid");
2349 fprintf (file, " }\n");
2352 if (bb->next_bb != EXIT_BLOCK_PTR)
2353 fputc ('\n', file);
2356 fputs ("}\n\n", file);
2361 /*---------------------------------------------------------------------------
2362 Miscellaneous helpers
2363 ---------------------------------------------------------------------------*/
2365 /* Return true if T represents a stmt that always transfers control. */
2367 bool
2368 is_ctrl_stmt (tree t)
2370 return (TREE_CODE (t) == COND_EXPR
2371 || TREE_CODE (t) == SWITCH_EXPR
2372 || TREE_CODE (t) == GOTO_EXPR
2373 || TREE_CODE (t) == RETURN_EXPR
2374 || TREE_CODE (t) == RESX_EXPR);
2378 /* Return true if T is a statement that may alter the flow of control
2379 (e.g., a call to a non-returning function). */
2381 bool
2382 is_ctrl_altering_stmt (tree t)
2384 tree call;
2386 gcc_assert (t);
2387 call = get_call_expr_in (t);
2388 if (call)
2390 /* A non-pure/const CALL_EXPR alters flow control if the current
2391 function has nonlocal labels. */
2392 if (TREE_SIDE_EFFECTS (call) && current_function_has_nonlocal_label)
2393 return true;
2395 /* A CALL_EXPR also alters control flow if it does not return. */
2396 if (call_expr_flags (call) & ECF_NORETURN)
2397 return true;
2400 /* OpenMP directives alter control flow. */
2401 if (OMP_DIRECTIVE_P (t))
2402 return true;
2404 /* If a statement can throw, it alters control flow. */
2405 return tree_can_throw_internal (t);
2409 /* Return true if T is a computed goto. */
2411 bool
2412 computed_goto_p (tree t)
2414 return (TREE_CODE (t) == GOTO_EXPR
2415 && TREE_CODE (GOTO_DESTINATION (t)) != LABEL_DECL);
2419 /* Return true if T is a simple local goto. */
2421 bool
2422 simple_goto_p (tree t)
2424 return (TREE_CODE (t) == GOTO_EXPR
2425 && TREE_CODE (GOTO_DESTINATION (t)) == LABEL_DECL);
2429 /* Return true if T can make an abnormal transfer of control flow.
2430 Transfers of control flow associated with EH are excluded. */
2432 bool
2433 tree_can_make_abnormal_goto (tree t)
2435 if (computed_goto_p (t))
2436 return true;
2437 if (TREE_CODE (t) == GIMPLE_MODIFY_STMT)
2438 t = GIMPLE_STMT_OPERAND (t, 1);
2439 if (TREE_CODE (t) == WITH_SIZE_EXPR)
2440 t = TREE_OPERAND (t, 0);
2441 if (TREE_CODE (t) == CALL_EXPR)
2442 return TREE_SIDE_EFFECTS (t) && current_function_has_nonlocal_label;
2443 return false;
2447 /* Return true if T should start a new basic block. PREV_T is the
2448 statement preceding T. It is used when T is a label or a case label.
2449 Labels should only start a new basic block if their previous statement
2450 wasn't a label. Otherwise, sequence of labels would generate
2451 unnecessary basic blocks that only contain a single label. */
2453 static inline bool
2454 stmt_starts_bb_p (tree t, tree prev_t)
2456 if (t == NULL_TREE)
2457 return false;
2459 /* LABEL_EXPRs start a new basic block only if the preceding
2460 statement wasn't a label of the same type. This prevents the
2461 creation of consecutive blocks that have nothing but a single
2462 label. */
2463 if (TREE_CODE (t) == LABEL_EXPR)
2465 /* Nonlocal and computed GOTO targets always start a new block. */
2466 if (DECL_NONLOCAL (LABEL_EXPR_LABEL (t))
2467 || FORCED_LABEL (LABEL_EXPR_LABEL (t)))
2468 return true;
2470 if (prev_t && TREE_CODE (prev_t) == LABEL_EXPR)
2472 if (DECL_NONLOCAL (LABEL_EXPR_LABEL (prev_t)))
2473 return true;
2475 cfg_stats.num_merged_labels++;
2476 return false;
2478 else
2479 return true;
2482 return false;
2486 /* Return true if T should end a basic block. */
2488 bool
2489 stmt_ends_bb_p (tree t)
2491 return is_ctrl_stmt (t) || is_ctrl_altering_stmt (t);
2495 /* Add gotos that used to be represented implicitly in the CFG. */
2497 void
2498 disband_implicit_edges (void)
2500 basic_block bb;
2501 block_stmt_iterator last;
2502 edge e;
2503 edge_iterator ei;
2504 tree stmt, label;
2506 FOR_EACH_BB (bb)
2508 last = bsi_last (bb);
2509 stmt = last_stmt (bb);
2511 if (stmt && TREE_CODE (stmt) == COND_EXPR)
2513 /* Remove superfluous gotos from COND_EXPR branches. Moved
2514 from cfg_remove_useless_stmts here since it violates the
2515 invariants for tree--cfg correspondence and thus fits better
2516 here where we do it anyway. */
2517 e = find_edge (bb, bb->next_bb);
2518 if (e)
2520 if (e->flags & EDGE_TRUE_VALUE)
2521 COND_EXPR_THEN (stmt) = build_empty_stmt ();
2522 else if (e->flags & EDGE_FALSE_VALUE)
2523 COND_EXPR_ELSE (stmt) = build_empty_stmt ();
2524 else
2525 gcc_unreachable ();
2526 e->flags |= EDGE_FALLTHRU;
2529 continue;
2532 if (stmt && TREE_CODE (stmt) == RETURN_EXPR)
2534 /* Remove the RETURN_EXPR if we may fall though to the exit
2535 instead. */
2536 gcc_assert (single_succ_p (bb));
2537 gcc_assert (single_succ (bb) == EXIT_BLOCK_PTR);
2539 if (bb->next_bb == EXIT_BLOCK_PTR
2540 && !TREE_OPERAND (stmt, 0))
2542 bsi_remove (&last, true);
2543 single_succ_edge (bb)->flags |= EDGE_FALLTHRU;
2545 continue;
2548 /* There can be no fallthru edge if the last statement is a control
2549 one. */
2550 if (stmt && is_ctrl_stmt (stmt))
2551 continue;
2553 /* Find a fallthru edge and emit the goto if necessary. */
2554 FOR_EACH_EDGE (e, ei, bb->succs)
2555 if (e->flags & EDGE_FALLTHRU)
2556 break;
2558 if (!e || e->dest == bb->next_bb)
2559 continue;
2561 gcc_assert (e->dest != EXIT_BLOCK_PTR);
2562 label = tree_block_label (e->dest);
2564 stmt = build1 (GOTO_EXPR, void_type_node, label);
2565 #ifdef USE_MAPPED_LOCATION
2566 SET_EXPR_LOCATION (stmt, e->goto_locus);
2567 #else
2568 SET_EXPR_LOCUS (stmt, e->goto_locus);
2569 #endif
2570 bsi_insert_after (&last, stmt, BSI_NEW_STMT);
2571 e->flags &= ~EDGE_FALLTHRU;
2575 /* Remove block annotations and other datastructures. */
2577 void
2578 delete_tree_cfg_annotations (void)
2580 basic_block bb;
2581 block_stmt_iterator bsi;
2583 /* Remove annotations from every tree in the function. */
2584 FOR_EACH_BB (bb)
2585 for (bsi = bsi_start (bb); !bsi_end_p (bsi); bsi_next (&bsi))
2587 tree stmt = bsi_stmt (bsi);
2588 ggc_free (stmt->base.ann);
2589 stmt->base.ann = NULL;
2591 label_to_block_map = NULL;
2595 /* Return the first statement in basic block BB. */
2597 tree
2598 first_stmt (basic_block bb)
2600 block_stmt_iterator i = bsi_start (bb);
2601 return !bsi_end_p (i) ? bsi_stmt (i) : NULL_TREE;
2605 /* Return the last statement in basic block BB. */
2607 tree
2608 last_stmt (basic_block bb)
2610 block_stmt_iterator b = bsi_last (bb);
2611 return !bsi_end_p (b) ? bsi_stmt (b) : NULL_TREE;
2615 /* Return the last statement of an otherwise empty block. Return NULL
2616 if the block is totally empty, or if it contains more than one
2617 statement. */
2619 tree
2620 last_and_only_stmt (basic_block bb)
2622 block_stmt_iterator i = bsi_last (bb);
2623 tree last, prev;
2625 if (bsi_end_p (i))
2626 return NULL_TREE;
2628 last = bsi_stmt (i);
2629 bsi_prev (&i);
2630 if (bsi_end_p (i))
2631 return last;
2633 /* Empty statements should no longer appear in the instruction stream.
2634 Everything that might have appeared before should be deleted by
2635 remove_useless_stmts, and the optimizers should just bsi_remove
2636 instead of smashing with build_empty_stmt.
2638 Thus the only thing that should appear here in a block containing
2639 one executable statement is a label. */
2640 prev = bsi_stmt (i);
2641 if (TREE_CODE (prev) == LABEL_EXPR)
2642 return last;
2643 else
2644 return NULL_TREE;
2648 /* Mark BB as the basic block holding statement T. */
2650 void
2651 set_bb_for_stmt (tree t, basic_block bb)
2653 if (TREE_CODE (t) == PHI_NODE)
2654 PHI_BB (t) = bb;
2655 else if (TREE_CODE (t) == STATEMENT_LIST)
2657 tree_stmt_iterator i;
2658 for (i = tsi_start (t); !tsi_end_p (i); tsi_next (&i))
2659 set_bb_for_stmt (tsi_stmt (i), bb);
2661 else
2663 stmt_ann_t ann = get_stmt_ann (t);
2664 ann->bb = bb;
2666 /* If the statement is a label, add the label to block-to-labels map
2667 so that we can speed up edge creation for GOTO_EXPRs. */
2668 if (TREE_CODE (t) == LABEL_EXPR)
2670 int uid;
2672 t = LABEL_EXPR_LABEL (t);
2673 uid = LABEL_DECL_UID (t);
2674 if (uid == -1)
2676 unsigned old_len = VEC_length (basic_block, label_to_block_map);
2677 LABEL_DECL_UID (t) = uid = cfun->last_label_uid++;
2678 if (old_len <= (unsigned) uid)
2680 unsigned new_len = 3 * uid / 2;
2682 VEC_safe_grow_cleared (basic_block, gc, label_to_block_map,
2683 new_len);
2686 else
2687 /* We're moving an existing label. Make sure that we've
2688 removed it from the old block. */
2689 gcc_assert (!bb
2690 || !VEC_index (basic_block, label_to_block_map, uid));
2691 VEC_replace (basic_block, label_to_block_map, uid, bb);
2696 /* Faster version of set_bb_for_stmt that assume that statement is being moved
2697 from one basic block to another.
2698 For BB splitting we can run into quadratic case, so performance is quite
2699 important and knowing that the tables are big enough, change_bb_for_stmt
2700 can inline as leaf function. */
2701 static inline void
2702 change_bb_for_stmt (tree t, basic_block bb)
2704 get_stmt_ann (t)->bb = bb;
2705 if (TREE_CODE (t) == LABEL_EXPR)
2706 VEC_replace (basic_block, label_to_block_map,
2707 LABEL_DECL_UID (LABEL_EXPR_LABEL (t)), bb);
2710 /* Finds iterator for STMT. */
2712 extern block_stmt_iterator
2713 bsi_for_stmt (tree stmt)
2715 block_stmt_iterator bsi;
2717 for (bsi = bsi_start (bb_for_stmt (stmt)); !bsi_end_p (bsi); bsi_next (&bsi))
2718 if (bsi_stmt (bsi) == stmt)
2719 return bsi;
2721 gcc_unreachable ();
2724 /* Mark statement T as modified, and update it. */
2725 static inline void
2726 update_modified_stmts (tree t)
2728 if (!ssa_operands_active ())
2729 return;
2730 if (TREE_CODE (t) == STATEMENT_LIST)
2732 tree_stmt_iterator i;
2733 tree stmt;
2734 for (i = tsi_start (t); !tsi_end_p (i); tsi_next (&i))
2736 stmt = tsi_stmt (i);
2737 update_stmt_if_modified (stmt);
2740 else
2741 update_stmt_if_modified (t);
2744 /* Insert statement (or statement list) T before the statement
2745 pointed-to by iterator I. M specifies how to update iterator I
2746 after insertion (see enum bsi_iterator_update). */
2748 void
2749 bsi_insert_before (block_stmt_iterator *i, tree t, enum bsi_iterator_update m)
2751 set_bb_for_stmt (t, i->bb);
2752 update_modified_stmts (t);
2753 tsi_link_before (&i->tsi, t, m);
2757 /* Insert statement (or statement list) T after the statement
2758 pointed-to by iterator I. M specifies how to update iterator I
2759 after insertion (see enum bsi_iterator_update). */
2761 void
2762 bsi_insert_after (block_stmt_iterator *i, tree t, enum bsi_iterator_update m)
2764 set_bb_for_stmt (t, i->bb);
2765 update_modified_stmts (t);
2766 tsi_link_after (&i->tsi, t, m);
2770 /* Remove the statement pointed to by iterator I. The iterator is updated
2771 to the next statement.
2773 When REMOVE_EH_INFO is true we remove the statement pointed to by
2774 iterator I from the EH tables. Otherwise we do not modify the EH
2775 tables.
2777 Generally, REMOVE_EH_INFO should be true when the statement is going to
2778 be removed from the IL and not reinserted elsewhere. */
2780 void
2781 bsi_remove (block_stmt_iterator *i, bool remove_eh_info)
2783 tree t = bsi_stmt (*i);
2784 set_bb_for_stmt (t, NULL);
2785 delink_stmt_imm_use (t);
2786 tsi_delink (&i->tsi);
2787 mark_stmt_modified (t);
2788 if (remove_eh_info)
2790 remove_stmt_from_eh_region (t);
2791 gimple_remove_stmt_histograms (cfun, t);
2796 /* Move the statement at FROM so it comes right after the statement at TO. */
2798 void
2799 bsi_move_after (block_stmt_iterator *from, block_stmt_iterator *to)
2801 tree stmt = bsi_stmt (*from);
2802 bsi_remove (from, false);
2803 bsi_insert_after (to, stmt, BSI_SAME_STMT);
2807 /* Move the statement at FROM so it comes right before the statement at TO. */
2809 void
2810 bsi_move_before (block_stmt_iterator *from, block_stmt_iterator *to)
2812 tree stmt = bsi_stmt (*from);
2813 bsi_remove (from, false);
2814 bsi_insert_before (to, stmt, BSI_SAME_STMT);
2818 /* Move the statement at FROM to the end of basic block BB. */
2820 void
2821 bsi_move_to_bb_end (block_stmt_iterator *from, basic_block bb)
2823 block_stmt_iterator last = bsi_last (bb);
2825 /* Have to check bsi_end_p because it could be an empty block. */
2826 if (!bsi_end_p (last) && is_ctrl_stmt (bsi_stmt (last)))
2827 bsi_move_before (from, &last);
2828 else
2829 bsi_move_after (from, &last);
2833 /* Replace the contents of the statement pointed to by iterator BSI
2834 with STMT. If UPDATE_EH_INFO is true, the exception handling
2835 information of the original statement is moved to the new statement. */
2837 void
2838 bsi_replace (const block_stmt_iterator *bsi, tree stmt, bool update_eh_info)
2840 int eh_region;
2841 tree orig_stmt = bsi_stmt (*bsi);
2843 SET_EXPR_LOCUS (stmt, EXPR_LOCUS (orig_stmt));
2844 set_bb_for_stmt (stmt, bsi->bb);
2846 /* Preserve EH region information from the original statement, if
2847 requested by the caller. */
2848 if (update_eh_info)
2850 eh_region = lookup_stmt_eh_region (orig_stmt);
2851 if (eh_region >= 0)
2853 remove_stmt_from_eh_region (orig_stmt);
2854 add_stmt_to_eh_region (stmt, eh_region);
2855 gimple_duplicate_stmt_histograms (cfun, stmt, cfun, orig_stmt);
2856 gimple_remove_stmt_histograms (cfun, orig_stmt);
2860 delink_stmt_imm_use (orig_stmt);
2861 *bsi_stmt_ptr (*bsi) = stmt;
2862 mark_stmt_modified (stmt);
2863 update_modified_stmts (stmt);
2867 /* Insert the statement pointed-to by BSI into edge E. Every attempt
2868 is made to place the statement in an existing basic block, but
2869 sometimes that isn't possible. When it isn't possible, the edge is
2870 split and the statement is added to the new block.
2872 In all cases, the returned *BSI points to the correct location. The
2873 return value is true if insertion should be done after the location,
2874 or false if it should be done before the location. If new basic block
2875 has to be created, it is stored in *NEW_BB. */
2877 static bool
2878 tree_find_edge_insert_loc (edge e, block_stmt_iterator *bsi,
2879 basic_block *new_bb)
2881 basic_block dest, src;
2882 tree tmp;
2884 dest = e->dest;
2885 restart:
2887 /* If the destination has one predecessor which has no PHI nodes,
2888 insert there. Except for the exit block.
2890 The requirement for no PHI nodes could be relaxed. Basically we
2891 would have to examine the PHIs to prove that none of them used
2892 the value set by the statement we want to insert on E. That
2893 hardly seems worth the effort. */
2894 if (single_pred_p (dest)
2895 && ! phi_nodes (dest)
2896 && dest != EXIT_BLOCK_PTR)
2898 *bsi = bsi_start (dest);
2899 if (bsi_end_p (*bsi))
2900 return true;
2902 /* Make sure we insert after any leading labels. */
2903 tmp = bsi_stmt (*bsi);
2904 while (TREE_CODE (tmp) == LABEL_EXPR)
2906 bsi_next (bsi);
2907 if (bsi_end_p (*bsi))
2908 break;
2909 tmp = bsi_stmt (*bsi);
2912 if (bsi_end_p (*bsi))
2914 *bsi = bsi_last (dest);
2915 return true;
2917 else
2918 return false;
2921 /* If the source has one successor, the edge is not abnormal and
2922 the last statement does not end a basic block, insert there.
2923 Except for the entry block. */
2924 src = e->src;
2925 if ((e->flags & EDGE_ABNORMAL) == 0
2926 && single_succ_p (src)
2927 && src != ENTRY_BLOCK_PTR)
2929 *bsi = bsi_last (src);
2930 if (bsi_end_p (*bsi))
2931 return true;
2933 tmp = bsi_stmt (*bsi);
2934 if (!stmt_ends_bb_p (tmp))
2935 return true;
2937 /* Insert code just before returning the value. We may need to decompose
2938 the return in the case it contains non-trivial operand. */
2939 if (TREE_CODE (tmp) == RETURN_EXPR)
2941 tree op = TREE_OPERAND (tmp, 0);
2942 if (op && !is_gimple_val (op))
2944 gcc_assert (TREE_CODE (op) == GIMPLE_MODIFY_STMT);
2945 bsi_insert_before (bsi, op, BSI_NEW_STMT);
2946 TREE_OPERAND (tmp, 0) = GIMPLE_STMT_OPERAND (op, 0);
2948 bsi_prev (bsi);
2949 return true;
2953 /* Otherwise, create a new basic block, and split this edge. */
2954 dest = split_edge (e);
2955 if (new_bb)
2956 *new_bb = dest;
2957 e = single_pred_edge (dest);
2958 goto restart;
2962 /* This routine will commit all pending edge insertions, creating any new
2963 basic blocks which are necessary. */
2965 void
2966 bsi_commit_edge_inserts (void)
2968 basic_block bb;
2969 edge e;
2970 edge_iterator ei;
2972 bsi_commit_one_edge_insert (single_succ_edge (ENTRY_BLOCK_PTR), NULL);
2974 FOR_EACH_BB (bb)
2975 FOR_EACH_EDGE (e, ei, bb->succs)
2976 bsi_commit_one_edge_insert (e, NULL);
2980 /* Commit insertions pending at edge E. If a new block is created, set NEW_BB
2981 to this block, otherwise set it to NULL. */
2983 void
2984 bsi_commit_one_edge_insert (edge e, basic_block *new_bb)
2986 if (new_bb)
2987 *new_bb = NULL;
2988 if (PENDING_STMT (e))
2990 block_stmt_iterator bsi;
2991 tree stmt = PENDING_STMT (e);
2993 PENDING_STMT (e) = NULL_TREE;
2995 if (tree_find_edge_insert_loc (e, &bsi, new_bb))
2996 bsi_insert_after (&bsi, stmt, BSI_NEW_STMT);
2997 else
2998 bsi_insert_before (&bsi, stmt, BSI_NEW_STMT);
3003 /* Add STMT to the pending list of edge E. No actual insertion is
3004 made until a call to bsi_commit_edge_inserts () is made. */
3006 void
3007 bsi_insert_on_edge (edge e, tree stmt)
3009 append_to_statement_list (stmt, &PENDING_STMT (e));
3012 /* Similar to bsi_insert_on_edge+bsi_commit_edge_inserts. If a new
3013 block has to be created, it is returned. */
3015 basic_block
3016 bsi_insert_on_edge_immediate (edge e, tree stmt)
3018 block_stmt_iterator bsi;
3019 basic_block new_bb = NULL;
3021 gcc_assert (!PENDING_STMT (e));
3023 if (tree_find_edge_insert_loc (e, &bsi, &new_bb))
3024 bsi_insert_after (&bsi, stmt, BSI_NEW_STMT);
3025 else
3026 bsi_insert_before (&bsi, stmt, BSI_NEW_STMT);
3028 return new_bb;
3031 /*---------------------------------------------------------------------------
3032 Tree specific functions for CFG manipulation
3033 ---------------------------------------------------------------------------*/
3035 /* Reinstall those PHI arguments queued in OLD_EDGE to NEW_EDGE. */
3037 static void
3038 reinstall_phi_args (edge new_edge, edge old_edge)
3040 tree var, phi;
3042 if (!PENDING_STMT (old_edge))
3043 return;
3045 for (var = PENDING_STMT (old_edge), phi = phi_nodes (new_edge->dest);
3046 var && phi;
3047 var = TREE_CHAIN (var), phi = PHI_CHAIN (phi))
3049 tree result = TREE_PURPOSE (var);
3050 tree arg = TREE_VALUE (var);
3052 gcc_assert (result == PHI_RESULT (phi));
3054 add_phi_arg (phi, arg, new_edge);
3057 PENDING_STMT (old_edge) = NULL;
3060 /* Returns the basic block after which the new basic block created
3061 by splitting edge EDGE_IN should be placed. Tries to keep the new block
3062 near its "logical" location. This is of most help to humans looking
3063 at debugging dumps. */
3065 static basic_block
3066 split_edge_bb_loc (edge edge_in)
3068 basic_block dest = edge_in->dest;
3070 if (dest->prev_bb && find_edge (dest->prev_bb, dest))
3071 return edge_in->src;
3072 else
3073 return dest->prev_bb;
3076 /* Split a (typically critical) edge EDGE_IN. Return the new block.
3077 Abort on abnormal edges. */
3079 static basic_block
3080 tree_split_edge (edge edge_in)
3082 basic_block new_bb, after_bb, dest;
3083 edge new_edge, e;
3085 /* Abnormal edges cannot be split. */
3086 gcc_assert (!(edge_in->flags & EDGE_ABNORMAL));
3088 dest = edge_in->dest;
3090 after_bb = split_edge_bb_loc (edge_in);
3092 new_bb = create_empty_bb (after_bb);
3093 new_bb->frequency = EDGE_FREQUENCY (edge_in);
3094 new_bb->count = edge_in->count;
3095 new_edge = make_edge (new_bb, dest, EDGE_FALLTHRU);
3096 new_edge->probability = REG_BR_PROB_BASE;
3097 new_edge->count = edge_in->count;
3099 e = redirect_edge_and_branch (edge_in, new_bb);
3100 gcc_assert (e);
3101 reinstall_phi_args (new_edge, e);
3103 return new_bb;
3107 /* Return true when BB has label LABEL in it. */
3109 static bool
3110 has_label_p (basic_block bb, tree label)
3112 block_stmt_iterator bsi;
3114 for (bsi = bsi_start (bb); !bsi_end_p (bsi); bsi_next (&bsi))
3116 tree stmt = bsi_stmt (bsi);
3118 if (TREE_CODE (stmt) != LABEL_EXPR)
3119 return false;
3120 if (LABEL_EXPR_LABEL (stmt) == label)
3121 return true;
3123 return false;
3127 /* Callback for walk_tree, check that all elements with address taken are
3128 properly noticed as such. The DATA is an int* that is 1 if TP was seen
3129 inside a PHI node. */
3131 static tree
3132 verify_expr (tree *tp, int *walk_subtrees, void *data ATTRIBUTE_UNUSED)
3134 tree t = *tp, x;
3135 bool in_phi = (data != NULL);
3137 if (TYPE_P (t))
3138 *walk_subtrees = 0;
3140 /* Check operand N for being valid GIMPLE and give error MSG if not. */
3141 #define CHECK_OP(N, MSG) \
3142 do { if (!is_gimple_val (TREE_OPERAND (t, N))) \
3143 { error (MSG); return TREE_OPERAND (t, N); }} while (0)
3145 switch (TREE_CODE (t))
3147 case SSA_NAME:
3148 if (SSA_NAME_IN_FREE_LIST (t))
3150 error ("SSA name in freelist but still referenced");
3151 return *tp;
3153 break;
3155 case ASSERT_EXPR:
3156 x = fold (ASSERT_EXPR_COND (t));
3157 if (x == boolean_false_node)
3159 error ("ASSERT_EXPR with an always-false condition");
3160 return *tp;
3162 break;
3164 case MODIFY_EXPR:
3165 gcc_unreachable ();
3167 case GIMPLE_MODIFY_STMT:
3168 x = GIMPLE_STMT_OPERAND (t, 0);
3169 if (TREE_CODE (x) == BIT_FIELD_REF
3170 && is_gimple_reg (TREE_OPERAND (x, 0)))
3172 error ("GIMPLE register modified with BIT_FIELD_REF");
3173 return t;
3175 break;
3177 case ADDR_EXPR:
3179 bool old_invariant;
3180 bool old_constant;
3181 bool old_side_effects;
3182 bool new_invariant;
3183 bool new_constant;
3184 bool new_side_effects;
3186 /* ??? tree-ssa-alias.c may have overlooked dead PHI nodes, missing
3187 dead PHIs that take the address of something. But if the PHI
3188 result is dead, the fact that it takes the address of anything
3189 is irrelevant. Because we can not tell from here if a PHI result
3190 is dead, we just skip this check for PHIs altogether. This means
3191 we may be missing "valid" checks, but what can you do?
3192 This was PR19217. */
3193 if (in_phi)
3194 break;
3196 old_invariant = TREE_INVARIANT (t);
3197 old_constant = TREE_CONSTANT (t);
3198 old_side_effects = TREE_SIDE_EFFECTS (t);
3200 recompute_tree_invariant_for_addr_expr (t);
3201 new_invariant = TREE_INVARIANT (t);
3202 new_side_effects = TREE_SIDE_EFFECTS (t);
3203 new_constant = TREE_CONSTANT (t);
3205 if (old_invariant != new_invariant)
3207 error ("invariant not recomputed when ADDR_EXPR changed");
3208 return t;
3211 if (old_constant != new_constant)
3213 error ("constant not recomputed when ADDR_EXPR changed");
3214 return t;
3216 if (old_side_effects != new_side_effects)
3218 error ("side effects not recomputed when ADDR_EXPR changed");
3219 return t;
3222 /* Skip any references (they will be checked when we recurse down the
3223 tree) and ensure that any variable used as a prefix is marked
3224 addressable. */
3225 for (x = TREE_OPERAND (t, 0);
3226 handled_component_p (x);
3227 x = TREE_OPERAND (x, 0))
3230 if (TREE_CODE (x) != VAR_DECL && TREE_CODE (x) != PARM_DECL)
3231 return NULL;
3232 if (!TREE_ADDRESSABLE (x))
3234 error ("address taken, but ADDRESSABLE bit not set");
3235 return x;
3237 break;
3240 case COND_EXPR:
3241 x = COND_EXPR_COND (t);
3242 if (TREE_CODE (TREE_TYPE (x)) != BOOLEAN_TYPE)
3244 error ("non-boolean used in condition");
3245 return x;
3247 if (!is_gimple_condexpr (x))
3249 error ("invalid conditional operand");
3250 return x;
3252 break;
3254 case NOP_EXPR:
3255 case CONVERT_EXPR:
3256 case FIX_TRUNC_EXPR:
3257 case FLOAT_EXPR:
3258 case NEGATE_EXPR:
3259 case ABS_EXPR:
3260 case BIT_NOT_EXPR:
3261 case NON_LVALUE_EXPR:
3262 case TRUTH_NOT_EXPR:
3263 CHECK_OP (0, "invalid operand to unary operator");
3264 break;
3266 case REALPART_EXPR:
3267 case IMAGPART_EXPR:
3268 case COMPONENT_REF:
3269 case ARRAY_REF:
3270 case ARRAY_RANGE_REF:
3271 case BIT_FIELD_REF:
3272 case VIEW_CONVERT_EXPR:
3273 /* We have a nest of references. Verify that each of the operands
3274 that determine where to reference is either a constant or a variable,
3275 verify that the base is valid, and then show we've already checked
3276 the subtrees. */
3277 while (handled_component_p (t))
3279 if (TREE_CODE (t) == COMPONENT_REF && TREE_OPERAND (t, 2))
3280 CHECK_OP (2, "invalid COMPONENT_REF offset operator");
3281 else if (TREE_CODE (t) == ARRAY_REF
3282 || TREE_CODE (t) == ARRAY_RANGE_REF)
3284 CHECK_OP (1, "invalid array index");
3285 if (TREE_OPERAND (t, 2))
3286 CHECK_OP (2, "invalid array lower bound");
3287 if (TREE_OPERAND (t, 3))
3288 CHECK_OP (3, "invalid array stride");
3290 else if (TREE_CODE (t) == BIT_FIELD_REF)
3292 CHECK_OP (1, "invalid operand to BIT_FIELD_REF");
3293 CHECK_OP (2, "invalid operand to BIT_FIELD_REF");
3296 t = TREE_OPERAND (t, 0);
3299 if (!CONSTANT_CLASS_P (t) && !is_gimple_lvalue (t))
3301 error ("invalid reference prefix");
3302 return t;
3304 *walk_subtrees = 0;
3305 break;
3307 case LT_EXPR:
3308 case LE_EXPR:
3309 case GT_EXPR:
3310 case GE_EXPR:
3311 case EQ_EXPR:
3312 case NE_EXPR:
3313 case UNORDERED_EXPR:
3314 case ORDERED_EXPR:
3315 case UNLT_EXPR:
3316 case UNLE_EXPR:
3317 case UNGT_EXPR:
3318 case UNGE_EXPR:
3319 case UNEQ_EXPR:
3320 case LTGT_EXPR:
3321 case PLUS_EXPR:
3322 case MINUS_EXPR:
3323 case MULT_EXPR:
3324 case TRUNC_DIV_EXPR:
3325 case CEIL_DIV_EXPR:
3326 case FLOOR_DIV_EXPR:
3327 case ROUND_DIV_EXPR:
3328 case TRUNC_MOD_EXPR:
3329 case CEIL_MOD_EXPR:
3330 case FLOOR_MOD_EXPR:
3331 case ROUND_MOD_EXPR:
3332 case RDIV_EXPR:
3333 case EXACT_DIV_EXPR:
3334 case MIN_EXPR:
3335 case MAX_EXPR:
3336 case LSHIFT_EXPR:
3337 case RSHIFT_EXPR:
3338 case LROTATE_EXPR:
3339 case RROTATE_EXPR:
3340 case BIT_IOR_EXPR:
3341 case BIT_XOR_EXPR:
3342 case BIT_AND_EXPR:
3343 CHECK_OP (0, "invalid operand to binary operator");
3344 CHECK_OP (1, "invalid operand to binary operator");
3345 break;
3347 case CONSTRUCTOR:
3348 if (TREE_CONSTANT (t) && TREE_CODE (TREE_TYPE (t)) == VECTOR_TYPE)
3349 *walk_subtrees = 0;
3350 break;
3352 default:
3353 break;
3355 return NULL;
3357 #undef CHECK_OP
3361 /* Verify STMT, return true if STMT is not in GIMPLE form.
3362 TODO: Implement type checking. */
3364 static bool
3365 verify_stmt (tree stmt, bool last_in_block)
3367 tree addr;
3369 if (OMP_DIRECTIVE_P (stmt))
3371 /* OpenMP directives are validated by the FE and never operated
3372 on by the optimizers. Furthermore, OMP_FOR may contain
3373 non-gimple expressions when the main index variable has had
3374 its address taken. This does not affect the loop itself
3375 because the header of an OMP_FOR is merely used to determine
3376 how to setup the parallel iteration. */
3377 return false;
3380 if (!is_gimple_stmt (stmt))
3382 error ("is not a valid GIMPLE statement");
3383 goto fail;
3386 addr = walk_tree (&stmt, verify_expr, NULL, NULL);
3387 if (addr)
3389 debug_generic_stmt (addr);
3390 return true;
3393 /* If the statement is marked as part of an EH region, then it is
3394 expected that the statement could throw. Verify that when we
3395 have optimizations that simplify statements such that we prove
3396 that they cannot throw, that we update other data structures
3397 to match. */
3398 if (lookup_stmt_eh_region (stmt) >= 0)
3400 if (!tree_could_throw_p (stmt))
3402 error ("statement marked for throw, but doesn%'t");
3403 goto fail;
3405 if (!last_in_block && tree_can_throw_internal (stmt))
3407 error ("statement marked for throw in middle of block");
3408 goto fail;
3412 return false;
3414 fail:
3415 debug_generic_stmt (stmt);
3416 return true;
3420 /* Return true when the T can be shared. */
3422 static bool
3423 tree_node_can_be_shared (tree t)
3425 if (IS_TYPE_OR_DECL_P (t)
3426 || is_gimple_min_invariant (t)
3427 || TREE_CODE (t) == SSA_NAME
3428 || t == error_mark_node
3429 || TREE_CODE (t) == IDENTIFIER_NODE)
3430 return true;
3432 if (TREE_CODE (t) == CASE_LABEL_EXPR)
3433 return true;
3435 while (((TREE_CODE (t) == ARRAY_REF || TREE_CODE (t) == ARRAY_RANGE_REF)
3436 && is_gimple_min_invariant (TREE_OPERAND (t, 1)))
3437 || TREE_CODE (t) == COMPONENT_REF
3438 || TREE_CODE (t) == REALPART_EXPR
3439 || TREE_CODE (t) == IMAGPART_EXPR)
3440 t = TREE_OPERAND (t, 0);
3442 if (DECL_P (t))
3443 return true;
3445 return false;
3449 /* Called via walk_trees. Verify tree sharing. */
3451 static tree
3452 verify_node_sharing (tree * tp, int *walk_subtrees, void *data)
3454 struct pointer_set_t *visited = (struct pointer_set_t *) data;
3456 if (tree_node_can_be_shared (*tp))
3458 *walk_subtrees = false;
3459 return NULL;
3462 if (pointer_set_insert (visited, *tp))
3463 return *tp;
3465 return NULL;
3469 /* Helper function for verify_gimple_tuples. */
3471 static tree
3472 verify_gimple_tuples_1 (tree *tp, int *walk_subtrees ATTRIBUTE_UNUSED,
3473 void *data ATTRIBUTE_UNUSED)
3475 switch (TREE_CODE (*tp))
3477 case MODIFY_EXPR:
3478 error ("unexpected non-tuple");
3479 debug_tree (*tp);
3480 gcc_unreachable ();
3481 return NULL_TREE;
3483 default:
3484 return NULL_TREE;
3488 /* Verify that there are no trees that should have been converted to
3489 gimple tuples. Return true if T contains a node that should have
3490 been converted to a gimple tuple, but hasn't. */
3492 static bool
3493 verify_gimple_tuples (tree t)
3495 return walk_tree (&t, verify_gimple_tuples_1, NULL, NULL) != NULL;
3498 static bool eh_error_found;
3499 static int
3500 verify_eh_throw_stmt_node (void **slot, void *data)
3502 struct throw_stmt_node *node = (struct throw_stmt_node *)*slot;
3503 struct pointer_set_t *visited = (struct pointer_set_t *) data;
3505 if (!pointer_set_contains (visited, node->stmt))
3507 error ("Dead STMT in EH table");
3508 debug_generic_stmt (node->stmt);
3509 eh_error_found = true;
3511 return 0;
3514 /* Verify the GIMPLE statement chain. */
3516 void
3517 verify_stmts (void)
3519 basic_block bb;
3520 block_stmt_iterator bsi;
3521 bool err = false;
3522 struct pointer_set_t *visited, *visited_stmts;
3523 tree addr;
3525 timevar_push (TV_TREE_STMT_VERIFY);
3526 visited = pointer_set_create ();
3527 visited_stmts = pointer_set_create ();
3529 FOR_EACH_BB (bb)
3531 tree phi;
3532 int i;
3534 for (phi = phi_nodes (bb); phi; phi = PHI_CHAIN (phi))
3536 int phi_num_args = PHI_NUM_ARGS (phi);
3538 pointer_set_insert (visited_stmts, phi);
3539 if (bb_for_stmt (phi) != bb)
3541 error ("bb_for_stmt (phi) is set to a wrong basic block");
3542 err |= true;
3545 for (i = 0; i < phi_num_args; i++)
3547 tree t = PHI_ARG_DEF (phi, i);
3548 tree addr;
3550 /* Addressable variables do have SSA_NAMEs but they
3551 are not considered gimple values. */
3552 if (TREE_CODE (t) != SSA_NAME
3553 && TREE_CODE (t) != FUNCTION_DECL
3554 && !is_gimple_val (t))
3556 error ("PHI def is not a GIMPLE value");
3557 debug_generic_stmt (phi);
3558 debug_generic_stmt (t);
3559 err |= true;
3562 addr = walk_tree (&t, verify_expr, (void *) 1, NULL);
3563 if (addr)
3565 debug_generic_stmt (addr);
3566 err |= true;
3569 addr = walk_tree (&t, verify_node_sharing, visited, NULL);
3570 if (addr)
3572 error ("incorrect sharing of tree nodes");
3573 debug_generic_stmt (phi);
3574 debug_generic_stmt (addr);
3575 err |= true;
3580 for (bsi = bsi_start (bb); !bsi_end_p (bsi); )
3582 tree stmt = bsi_stmt (bsi);
3584 pointer_set_insert (visited_stmts, stmt);
3585 err |= verify_gimple_tuples (stmt);
3587 if (bb_for_stmt (stmt) != bb)
3589 error ("bb_for_stmt (stmt) is set to a wrong basic block");
3590 err |= true;
3593 bsi_next (&bsi);
3594 err |= verify_stmt (stmt, bsi_end_p (bsi));
3595 addr = walk_tree (&stmt, verify_node_sharing, visited, NULL);
3596 if (addr)
3598 error ("incorrect sharing of tree nodes");
3599 debug_generic_stmt (stmt);
3600 debug_generic_stmt (addr);
3601 err |= true;
3605 eh_error_found = false;
3606 if (get_eh_throw_stmt_table (cfun))
3607 htab_traverse (get_eh_throw_stmt_table (cfun),
3608 verify_eh_throw_stmt_node,
3609 visited_stmts);
3611 if (err | eh_error_found)
3612 internal_error ("verify_stmts failed");
3614 pointer_set_destroy (visited);
3615 pointer_set_destroy (visited_stmts);
3616 verify_histograms ();
3617 timevar_pop (TV_TREE_STMT_VERIFY);
3621 /* Verifies that the flow information is OK. */
3623 static int
3624 tree_verify_flow_info (void)
3626 int err = 0;
3627 basic_block bb;
3628 block_stmt_iterator bsi;
3629 tree stmt;
3630 edge e;
3631 edge_iterator ei;
3633 if (ENTRY_BLOCK_PTR->stmt_list)
3635 error ("ENTRY_BLOCK has a statement list associated with it");
3636 err = 1;
3639 if (EXIT_BLOCK_PTR->stmt_list)
3641 error ("EXIT_BLOCK has a statement list associated with it");
3642 err = 1;
3645 FOR_EACH_EDGE (e, ei, EXIT_BLOCK_PTR->preds)
3646 if (e->flags & EDGE_FALLTHRU)
3648 error ("fallthru to exit from bb %d", e->src->index);
3649 err = 1;
3652 FOR_EACH_BB (bb)
3654 bool found_ctrl_stmt = false;
3656 stmt = NULL_TREE;
3658 /* Skip labels on the start of basic block. */
3659 for (bsi = bsi_start (bb); !bsi_end_p (bsi); bsi_next (&bsi))
3661 tree prev_stmt = stmt;
3663 stmt = bsi_stmt (bsi);
3665 if (TREE_CODE (stmt) != LABEL_EXPR)
3666 break;
3668 if (prev_stmt && DECL_NONLOCAL (LABEL_EXPR_LABEL (stmt)))
3670 error ("nonlocal label ");
3671 print_generic_expr (stderr, LABEL_EXPR_LABEL (stmt), 0);
3672 fprintf (stderr, " is not first in a sequence of labels in bb %d",
3673 bb->index);
3674 err = 1;
3677 if (label_to_block (LABEL_EXPR_LABEL (stmt)) != bb)
3679 error ("label ");
3680 print_generic_expr (stderr, LABEL_EXPR_LABEL (stmt), 0);
3681 fprintf (stderr, " to block does not match in bb %d",
3682 bb->index);
3683 err = 1;
3686 if (decl_function_context (LABEL_EXPR_LABEL (stmt))
3687 != current_function_decl)
3689 error ("label ");
3690 print_generic_expr (stderr, LABEL_EXPR_LABEL (stmt), 0);
3691 fprintf (stderr, " has incorrect context in bb %d",
3692 bb->index);
3693 err = 1;
3697 /* Verify that body of basic block BB is free of control flow. */
3698 for (; !bsi_end_p (bsi); bsi_next (&bsi))
3700 tree stmt = bsi_stmt (bsi);
3702 if (found_ctrl_stmt)
3704 error ("control flow in the middle of basic block %d",
3705 bb->index);
3706 err = 1;
3709 if (stmt_ends_bb_p (stmt))
3710 found_ctrl_stmt = true;
3712 if (TREE_CODE (stmt) == LABEL_EXPR)
3714 error ("label ");
3715 print_generic_expr (stderr, LABEL_EXPR_LABEL (stmt), 0);
3716 fprintf (stderr, " in the middle of basic block %d", bb->index);
3717 err = 1;
3721 bsi = bsi_last (bb);
3722 if (bsi_end_p (bsi))
3723 continue;
3725 stmt = bsi_stmt (bsi);
3727 err |= verify_eh_edges (stmt);
3729 if (is_ctrl_stmt (stmt))
3731 FOR_EACH_EDGE (e, ei, bb->succs)
3732 if (e->flags & EDGE_FALLTHRU)
3734 error ("fallthru edge after a control statement in bb %d",
3735 bb->index);
3736 err = 1;
3740 if (TREE_CODE (stmt) != COND_EXPR)
3742 /* Verify that there are no edges with EDGE_TRUE/FALSE_FLAG set
3743 after anything else but if statement. */
3744 FOR_EACH_EDGE (e, ei, bb->succs)
3745 if (e->flags & (EDGE_TRUE_VALUE | EDGE_FALSE_VALUE))
3747 error ("true/false edge after a non-COND_EXPR in bb %d",
3748 bb->index);
3749 err = 1;
3753 switch (TREE_CODE (stmt))
3755 case COND_EXPR:
3757 edge true_edge;
3758 edge false_edge;
3759 if (TREE_CODE (COND_EXPR_THEN (stmt)) != GOTO_EXPR
3760 || TREE_CODE (COND_EXPR_ELSE (stmt)) != GOTO_EXPR)
3762 error ("structured COND_EXPR at the end of bb %d", bb->index);
3763 err = 1;
3766 extract_true_false_edges_from_block (bb, &true_edge, &false_edge);
3768 if (!true_edge || !false_edge
3769 || !(true_edge->flags & EDGE_TRUE_VALUE)
3770 || !(false_edge->flags & EDGE_FALSE_VALUE)
3771 || (true_edge->flags & (EDGE_FALLTHRU | EDGE_ABNORMAL))
3772 || (false_edge->flags & (EDGE_FALLTHRU | EDGE_ABNORMAL))
3773 || EDGE_COUNT (bb->succs) >= 3)
3775 error ("wrong outgoing edge flags at end of bb %d",
3776 bb->index);
3777 err = 1;
3780 if (!has_label_p (true_edge->dest,
3781 GOTO_DESTINATION (COND_EXPR_THEN (stmt))))
3783 error ("%<then%> label does not match edge at end of bb %d",
3784 bb->index);
3785 err = 1;
3788 if (!has_label_p (false_edge->dest,
3789 GOTO_DESTINATION (COND_EXPR_ELSE (stmt))))
3791 error ("%<else%> label does not match edge at end of bb %d",
3792 bb->index);
3793 err = 1;
3796 break;
3798 case GOTO_EXPR:
3799 if (simple_goto_p (stmt))
3801 error ("explicit goto at end of bb %d", bb->index);
3802 err = 1;
3804 else
3806 /* FIXME. We should double check that the labels in the
3807 destination blocks have their address taken. */
3808 FOR_EACH_EDGE (e, ei, bb->succs)
3809 if ((e->flags & (EDGE_FALLTHRU | EDGE_TRUE_VALUE
3810 | EDGE_FALSE_VALUE))
3811 || !(e->flags & EDGE_ABNORMAL))
3813 error ("wrong outgoing edge flags at end of bb %d",
3814 bb->index);
3815 err = 1;
3818 break;
3820 case RETURN_EXPR:
3821 if (!single_succ_p (bb)
3822 || (single_succ_edge (bb)->flags
3823 & (EDGE_FALLTHRU | EDGE_ABNORMAL
3824 | EDGE_TRUE_VALUE | EDGE_FALSE_VALUE)))
3826 error ("wrong outgoing edge flags at end of bb %d", bb->index);
3827 err = 1;
3829 if (single_succ (bb) != EXIT_BLOCK_PTR)
3831 error ("return edge does not point to exit in bb %d",
3832 bb->index);
3833 err = 1;
3835 break;
3837 case SWITCH_EXPR:
3839 tree prev;
3840 edge e;
3841 size_t i, n;
3842 tree vec;
3844 vec = SWITCH_LABELS (stmt);
3845 n = TREE_VEC_LENGTH (vec);
3847 /* Mark all the destination basic blocks. */
3848 for (i = 0; i < n; ++i)
3850 tree lab = CASE_LABEL (TREE_VEC_ELT (vec, i));
3851 basic_block label_bb = label_to_block (lab);
3853 gcc_assert (!label_bb->aux || label_bb->aux == (void *)1);
3854 label_bb->aux = (void *)1;
3857 /* Verify that the case labels are sorted. */
3858 prev = TREE_VEC_ELT (vec, 0);
3859 for (i = 1; i < n - 1; ++i)
3861 tree c = TREE_VEC_ELT (vec, i);
3862 if (! CASE_LOW (c))
3864 error ("found default case not at end of case vector");
3865 err = 1;
3866 continue;
3868 if (! tree_int_cst_lt (CASE_LOW (prev), CASE_LOW (c)))
3870 error ("case labels not sorted: ");
3871 print_generic_expr (stderr, prev, 0);
3872 fprintf (stderr," is greater than ");
3873 print_generic_expr (stderr, c, 0);
3874 fprintf (stderr," but comes before it.\n");
3875 err = 1;
3877 prev = c;
3879 if (CASE_LOW (TREE_VEC_ELT (vec, n - 1)))
3881 error ("no default case found at end of case vector");
3882 err = 1;
3885 FOR_EACH_EDGE (e, ei, bb->succs)
3887 if (!e->dest->aux)
3889 error ("extra outgoing edge %d->%d",
3890 bb->index, e->dest->index);
3891 err = 1;
3893 e->dest->aux = (void *)2;
3894 if ((e->flags & (EDGE_FALLTHRU | EDGE_ABNORMAL
3895 | EDGE_TRUE_VALUE | EDGE_FALSE_VALUE)))
3897 error ("wrong outgoing edge flags at end of bb %d",
3898 bb->index);
3899 err = 1;
3903 /* Check that we have all of them. */
3904 for (i = 0; i < n; ++i)
3906 tree lab = CASE_LABEL (TREE_VEC_ELT (vec, i));
3907 basic_block label_bb = label_to_block (lab);
3909 if (label_bb->aux != (void *)2)
3911 error ("missing edge %i->%i",
3912 bb->index, label_bb->index);
3913 err = 1;
3917 FOR_EACH_EDGE (e, ei, bb->succs)
3918 e->dest->aux = (void *)0;
3921 default: ;
3925 if (dom_computed[CDI_DOMINATORS] >= DOM_NO_FAST_QUERY)
3926 verify_dominators (CDI_DOMINATORS);
3928 return err;
3932 /* Updates phi nodes after creating a forwarder block joined
3933 by edge FALLTHRU. */
3935 static void
3936 tree_make_forwarder_block (edge fallthru)
3938 edge e;
3939 edge_iterator ei;
3940 basic_block dummy, bb;
3941 tree phi, new_phi, var;
3943 dummy = fallthru->src;
3944 bb = fallthru->dest;
3946 if (single_pred_p (bb))
3947 return;
3949 /* If we redirected a branch we must create new PHI nodes at the
3950 start of BB. */
3951 for (phi = phi_nodes (dummy); phi; phi = PHI_CHAIN (phi))
3953 var = PHI_RESULT (phi);
3954 new_phi = create_phi_node (var, bb);
3955 SSA_NAME_DEF_STMT (var) = new_phi;
3956 SET_PHI_RESULT (phi, make_ssa_name (SSA_NAME_VAR (var), phi));
3957 add_phi_arg (new_phi, PHI_RESULT (phi), fallthru);
3960 /* Ensure that the PHI node chain is in the same order. */
3961 set_phi_nodes (bb, phi_reverse (phi_nodes (bb)));
3963 /* Add the arguments we have stored on edges. */
3964 FOR_EACH_EDGE (e, ei, bb->preds)
3966 if (e == fallthru)
3967 continue;
3969 flush_pending_stmts (e);
3974 /* Return a non-special label in the head of basic block BLOCK.
3975 Create one if it doesn't exist. */
3977 tree
3978 tree_block_label (basic_block bb)
3980 block_stmt_iterator i, s = bsi_start (bb);
3981 bool first = true;
3982 tree label, stmt;
3984 for (i = s; !bsi_end_p (i); first = false, bsi_next (&i))
3986 stmt = bsi_stmt (i);
3987 if (TREE_CODE (stmt) != LABEL_EXPR)
3988 break;
3989 label = LABEL_EXPR_LABEL (stmt);
3990 if (!DECL_NONLOCAL (label))
3992 if (!first)
3993 bsi_move_before (&i, &s);
3994 return label;
3998 label = create_artificial_label ();
3999 stmt = build1 (LABEL_EXPR, void_type_node, label);
4000 bsi_insert_before (&s, stmt, BSI_NEW_STMT);
4001 return label;
4005 /* Attempt to perform edge redirection by replacing a possibly complex
4006 jump instruction by a goto or by removing the jump completely.
4007 This can apply only if all edges now point to the same block. The
4008 parameters and return values are equivalent to
4009 redirect_edge_and_branch. */
4011 static edge
4012 tree_try_redirect_by_replacing_jump (edge e, basic_block target)
4014 basic_block src = e->src;
4015 block_stmt_iterator b;
4016 tree stmt;
4018 /* We can replace or remove a complex jump only when we have exactly
4019 two edges. */
4020 if (EDGE_COUNT (src->succs) != 2
4021 /* Verify that all targets will be TARGET. Specifically, the
4022 edge that is not E must also go to TARGET. */
4023 || EDGE_SUCC (src, EDGE_SUCC (src, 0) == e)->dest != target)
4024 return NULL;
4026 b = bsi_last (src);
4027 if (bsi_end_p (b))
4028 return NULL;
4029 stmt = bsi_stmt (b);
4031 if (TREE_CODE (stmt) == COND_EXPR
4032 || TREE_CODE (stmt) == SWITCH_EXPR)
4034 bsi_remove (&b, true);
4035 e = ssa_redirect_edge (e, target);
4036 e->flags = EDGE_FALLTHRU;
4037 return e;
4040 return NULL;
4044 /* Redirect E to DEST. Return NULL on failure. Otherwise, return the
4045 edge representing the redirected branch. */
4047 static edge
4048 tree_redirect_edge_and_branch (edge e, basic_block dest)
4050 basic_block bb = e->src;
4051 block_stmt_iterator bsi;
4052 edge ret;
4053 tree label, stmt;
4055 if (e->flags & EDGE_ABNORMAL)
4056 return NULL;
4058 if (e->src != ENTRY_BLOCK_PTR
4059 && (ret = tree_try_redirect_by_replacing_jump (e, dest)))
4060 return ret;
4062 if (e->dest == dest)
4063 return NULL;
4065 label = tree_block_label (dest);
4067 bsi = bsi_last (bb);
4068 stmt = bsi_end_p (bsi) ? NULL : bsi_stmt (bsi);
4070 switch (stmt ? TREE_CODE (stmt) : ERROR_MARK)
4072 case COND_EXPR:
4073 stmt = (e->flags & EDGE_TRUE_VALUE
4074 ? COND_EXPR_THEN (stmt)
4075 : COND_EXPR_ELSE (stmt));
4076 GOTO_DESTINATION (stmt) = label;
4077 break;
4079 case GOTO_EXPR:
4080 /* No non-abnormal edges should lead from a non-simple goto, and
4081 simple ones should be represented implicitly. */
4082 gcc_unreachable ();
4084 case SWITCH_EXPR:
4086 tree cases = get_cases_for_edge (e, stmt);
4088 /* If we have a list of cases associated with E, then use it
4089 as it's a lot faster than walking the entire case vector. */
4090 if (cases)
4092 edge e2 = find_edge (e->src, dest);
4093 tree last, first;
4095 first = cases;
4096 while (cases)
4098 last = cases;
4099 CASE_LABEL (cases) = label;
4100 cases = TREE_CHAIN (cases);
4103 /* If there was already an edge in the CFG, then we need
4104 to move all the cases associated with E to E2. */
4105 if (e2)
4107 tree cases2 = get_cases_for_edge (e2, stmt);
4109 TREE_CHAIN (last) = TREE_CHAIN (cases2);
4110 TREE_CHAIN (cases2) = first;
4113 else
4115 tree vec = SWITCH_LABELS (stmt);
4116 size_t i, n = TREE_VEC_LENGTH (vec);
4118 for (i = 0; i < n; i++)
4120 tree elt = TREE_VEC_ELT (vec, i);
4122 if (label_to_block (CASE_LABEL (elt)) == e->dest)
4123 CASE_LABEL (elt) = label;
4127 break;
4130 case RETURN_EXPR:
4131 bsi_remove (&bsi, true);
4132 e->flags |= EDGE_FALLTHRU;
4133 break;
4135 default:
4136 /* Otherwise it must be a fallthru edge, and we don't need to
4137 do anything besides redirecting it. */
4138 gcc_assert (e->flags & EDGE_FALLTHRU);
4139 break;
4142 /* Update/insert PHI nodes as necessary. */
4144 /* Now update the edges in the CFG. */
4145 e = ssa_redirect_edge (e, dest);
4147 return e;
4150 /* Returns true if it is possible to remove edge E by redirecting
4151 it to the destination of the other edge from E->src. */
4153 static bool
4154 tree_can_remove_branch_p (edge e)
4156 if (e->flags & EDGE_ABNORMAL)
4157 return false;
4159 return true;
4162 /* Simple wrapper, as we can always redirect fallthru edges. */
4164 static basic_block
4165 tree_redirect_edge_and_branch_force (edge e, basic_block dest)
4167 e = tree_redirect_edge_and_branch (e, dest);
4168 gcc_assert (e);
4170 return NULL;
4174 /* Splits basic block BB after statement STMT (but at least after the
4175 labels). If STMT is NULL, BB is split just after the labels. */
4177 static basic_block
4178 tree_split_block (basic_block bb, void *stmt)
4180 block_stmt_iterator bsi;
4181 tree_stmt_iterator tsi_tgt;
4182 tree act;
4183 basic_block new_bb;
4184 edge e;
4185 edge_iterator ei;
4187 new_bb = create_empty_bb (bb);
4189 /* Redirect the outgoing edges. */
4190 new_bb->succs = bb->succs;
4191 bb->succs = NULL;
4192 FOR_EACH_EDGE (e, ei, new_bb->succs)
4193 e->src = new_bb;
4195 if (stmt && TREE_CODE ((tree) stmt) == LABEL_EXPR)
4196 stmt = NULL;
4198 /* Move everything from BSI to the new basic block. */
4199 for (bsi = bsi_start (bb); !bsi_end_p (bsi); bsi_next (&bsi))
4201 act = bsi_stmt (bsi);
4202 if (TREE_CODE (act) == LABEL_EXPR)
4203 continue;
4205 if (!stmt)
4206 break;
4208 if (stmt == act)
4210 bsi_next (&bsi);
4211 break;
4215 if (bsi_end_p (bsi))
4216 return new_bb;
4218 /* Split the statement list - avoid re-creating new containers as this
4219 brings ugly quadratic memory consumption in the inliner.
4220 (We are still quadratic since we need to update stmt BB pointers,
4221 sadly.) */
4222 new_bb->stmt_list = tsi_split_statement_list_before (&bsi.tsi);
4223 for (tsi_tgt = tsi_start (new_bb->stmt_list);
4224 !tsi_end_p (tsi_tgt); tsi_next (&tsi_tgt))
4225 change_bb_for_stmt (tsi_stmt (tsi_tgt), new_bb);
4227 return new_bb;
4231 /* Moves basic block BB after block AFTER. */
4233 static bool
4234 tree_move_block_after (basic_block bb, basic_block after)
4236 if (bb->prev_bb == after)
4237 return true;
4239 unlink_block (bb);
4240 link_block (bb, after);
4242 return true;
4246 /* Return true if basic_block can be duplicated. */
4248 static bool
4249 tree_can_duplicate_bb_p (basic_block bb ATTRIBUTE_UNUSED)
4251 return true;
4255 /* Create a duplicate of the basic block BB. NOTE: This does not
4256 preserve SSA form. */
4258 static basic_block
4259 tree_duplicate_bb (basic_block bb)
4261 basic_block new_bb;
4262 block_stmt_iterator bsi, bsi_tgt;
4263 tree phi;
4265 new_bb = create_empty_bb (EXIT_BLOCK_PTR->prev_bb);
4267 /* Copy the PHI nodes. We ignore PHI node arguments here because
4268 the incoming edges have not been setup yet. */
4269 for (phi = phi_nodes (bb); phi; phi = PHI_CHAIN (phi))
4271 tree copy = create_phi_node (PHI_RESULT (phi), new_bb);
4272 create_new_def_for (PHI_RESULT (copy), copy, PHI_RESULT_PTR (copy));
4275 /* Keep the chain of PHI nodes in the same order so that they can be
4276 updated by ssa_redirect_edge. */
4277 set_phi_nodes (new_bb, phi_reverse (phi_nodes (new_bb)));
4279 bsi_tgt = bsi_start (new_bb);
4280 for (bsi = bsi_start (bb); !bsi_end_p (bsi); bsi_next (&bsi))
4282 def_operand_p def_p;
4283 ssa_op_iter op_iter;
4284 tree stmt, copy;
4285 int region;
4287 stmt = bsi_stmt (bsi);
4288 if (TREE_CODE (stmt) == LABEL_EXPR)
4289 continue;
4291 /* Create a new copy of STMT and duplicate STMT's virtual
4292 operands. */
4293 copy = unshare_expr (stmt);
4294 bsi_insert_after (&bsi_tgt, copy, BSI_NEW_STMT);
4295 copy_virtual_operands (copy, stmt);
4296 region = lookup_stmt_eh_region (stmt);
4297 if (region >= 0)
4298 add_stmt_to_eh_region (copy, region);
4299 gimple_duplicate_stmt_histograms (cfun, copy, cfun, stmt);
4301 /* Create new names for all the definitions created by COPY and
4302 add replacement mappings for each new name. */
4303 FOR_EACH_SSA_DEF_OPERAND (def_p, copy, op_iter, SSA_OP_ALL_DEFS)
4304 create_new_def_for (DEF_FROM_PTR (def_p), copy, def_p);
4307 return new_bb;
4311 /* Basic block BB_COPY was created by code duplication. Add phi node
4312 arguments for edges going out of BB_COPY. The blocks that were
4313 duplicated have BB_DUPLICATED set. */
4315 void
4316 add_phi_args_after_copy_bb (basic_block bb_copy)
4318 basic_block bb, dest;
4319 edge e, e_copy;
4320 edge_iterator ei;
4321 tree phi, phi_copy, phi_next, def;
4323 bb = get_bb_original (bb_copy);
4325 FOR_EACH_EDGE (e_copy, ei, bb_copy->succs)
4327 if (!phi_nodes (e_copy->dest))
4328 continue;
4330 if (e_copy->dest->flags & BB_DUPLICATED)
4331 dest = get_bb_original (e_copy->dest);
4332 else
4333 dest = e_copy->dest;
4335 e = find_edge (bb, dest);
4336 if (!e)
4338 /* During loop unrolling the target of the latch edge is copied.
4339 In this case we are not looking for edge to dest, but to
4340 duplicated block whose original was dest. */
4341 FOR_EACH_EDGE (e, ei, bb->succs)
4342 if ((e->dest->flags & BB_DUPLICATED)
4343 && get_bb_original (e->dest) == dest)
4344 break;
4346 gcc_assert (e != NULL);
4349 for (phi = phi_nodes (e->dest), phi_copy = phi_nodes (e_copy->dest);
4350 phi;
4351 phi = phi_next, phi_copy = PHI_CHAIN (phi_copy))
4353 phi_next = PHI_CHAIN (phi);
4354 def = PHI_ARG_DEF_FROM_EDGE (phi, e);
4355 add_phi_arg (phi_copy, def, e_copy);
4360 /* Blocks in REGION_COPY array of length N_REGION were created by
4361 duplication of basic blocks. Add phi node arguments for edges
4362 going from these blocks. */
4364 void
4365 add_phi_args_after_copy (basic_block *region_copy, unsigned n_region)
4367 unsigned i;
4369 for (i = 0; i < n_region; i++)
4370 region_copy[i]->flags |= BB_DUPLICATED;
4372 for (i = 0; i < n_region; i++)
4373 add_phi_args_after_copy_bb (region_copy[i]);
4375 for (i = 0; i < n_region; i++)
4376 region_copy[i]->flags &= ~BB_DUPLICATED;
4379 /* Duplicates a REGION (set of N_REGION basic blocks) with just a single
4380 important exit edge EXIT. By important we mean that no SSA name defined
4381 inside region is live over the other exit edges of the region. All entry
4382 edges to the region must go to ENTRY->dest. The edge ENTRY is redirected
4383 to the duplicate of the region. SSA form, dominance and loop information
4384 is updated. The new basic blocks are stored to REGION_COPY in the same
4385 order as they had in REGION, provided that REGION_COPY is not NULL.
4386 The function returns false if it is unable to copy the region,
4387 true otherwise. */
4389 bool
4390 tree_duplicate_sese_region (edge entry, edge exit,
4391 basic_block *region, unsigned n_region,
4392 basic_block *region_copy)
4394 unsigned i, n_doms;
4395 bool free_region_copy = false, copying_header = false;
4396 struct loop *loop = entry->dest->loop_father;
4397 edge exit_copy;
4398 basic_block *doms;
4399 edge redirected;
4400 int total_freq = 0, entry_freq = 0;
4401 gcov_type total_count = 0, entry_count = 0;
4403 if (!can_copy_bbs_p (region, n_region))
4404 return false;
4406 /* Some sanity checking. Note that we do not check for all possible
4407 missuses of the functions. I.e. if you ask to copy something weird,
4408 it will work, but the state of structures probably will not be
4409 correct. */
4410 for (i = 0; i < n_region; i++)
4412 /* We do not handle subloops, i.e. all the blocks must belong to the
4413 same loop. */
4414 if (region[i]->loop_father != loop)
4415 return false;
4417 if (region[i] != entry->dest
4418 && region[i] == loop->header)
4419 return false;
4422 loop->copy = loop;
4424 /* In case the function is used for loop header copying (which is the primary
4425 use), ensure that EXIT and its copy will be new latch and entry edges. */
4426 if (loop->header == entry->dest)
4428 copying_header = true;
4429 loop->copy = loop->outer;
4431 if (!dominated_by_p (CDI_DOMINATORS, loop->latch, exit->src))
4432 return false;
4434 for (i = 0; i < n_region; i++)
4435 if (region[i] != exit->src
4436 && dominated_by_p (CDI_DOMINATORS, region[i], exit->src))
4437 return false;
4440 if (!region_copy)
4442 region_copy = XNEWVEC (basic_block, n_region);
4443 free_region_copy = true;
4446 gcc_assert (!need_ssa_update_p ());
4448 /* Record blocks outside the region that are dominated by something
4449 inside. */
4450 doms = XNEWVEC (basic_block, n_basic_blocks);
4451 initialize_original_copy_tables ();
4453 n_doms = get_dominated_by_region (CDI_DOMINATORS, region, n_region, doms);
4455 if (entry->dest->count)
4457 total_count = entry->dest->count;
4458 entry_count = entry->count;
4459 /* Fix up corner cases, to avoid division by zero or creation of negative
4460 frequencies. */
4461 if (entry_count > total_count)
4462 entry_count = total_count;
4464 else
4466 total_freq = entry->dest->frequency;
4467 entry_freq = EDGE_FREQUENCY (entry);
4468 /* Fix up corner cases, to avoid division by zero or creation of negative
4469 frequencies. */
4470 if (total_freq == 0)
4471 total_freq = 1;
4472 else if (entry_freq > total_freq)
4473 entry_freq = total_freq;
4476 copy_bbs (region, n_region, region_copy, &exit, 1, &exit_copy, loop,
4477 split_edge_bb_loc (entry));
4478 if (total_count)
4480 scale_bbs_frequencies_gcov_type (region, n_region,
4481 total_count - entry_count,
4482 total_count);
4483 scale_bbs_frequencies_gcov_type (region_copy, n_region, entry_count,
4484 total_count);
4486 else
4488 scale_bbs_frequencies_int (region, n_region, total_freq - entry_freq,
4489 total_freq);
4490 scale_bbs_frequencies_int (region_copy, n_region, entry_freq, total_freq);
4493 if (copying_header)
4495 loop->header = exit->dest;
4496 loop->latch = exit->src;
4499 /* Redirect the entry and add the phi node arguments. */
4500 redirected = redirect_edge_and_branch (entry, get_bb_copy (entry->dest));
4501 gcc_assert (redirected != NULL);
4502 flush_pending_stmts (entry);
4504 /* Concerning updating of dominators: We must recount dominators
4505 for entry block and its copy. Anything that is outside of the
4506 region, but was dominated by something inside needs recounting as
4507 well. */
4508 set_immediate_dominator (CDI_DOMINATORS, entry->dest, entry->src);
4509 doms[n_doms++] = get_bb_original (entry->dest);
4510 iterate_fix_dominators (CDI_DOMINATORS, doms, n_doms);
4511 free (doms);
4513 /* Add the other PHI node arguments. */
4514 add_phi_args_after_copy (region_copy, n_region);
4516 /* Update the SSA web. */
4517 update_ssa (TODO_update_ssa);
4519 if (free_region_copy)
4520 free (region_copy);
4522 free_original_copy_tables ();
4523 return true;
4527 DEF_VEC_P(basic_block);
4528 DEF_VEC_ALLOC_P(basic_block,heap);
4531 /* Add all the blocks dominated by ENTRY to the array BBS_P. Stop
4532 adding blocks when the dominator traversal reaches EXIT. This
4533 function silently assumes that ENTRY strictly dominates EXIT. */
4535 static void
4536 gather_blocks_in_sese_region (basic_block entry, basic_block exit,
4537 VEC(basic_block,heap) **bbs_p)
4539 basic_block son;
4541 for (son = first_dom_son (CDI_DOMINATORS, entry);
4542 son;
4543 son = next_dom_son (CDI_DOMINATORS, son))
4545 VEC_safe_push (basic_block, heap, *bbs_p, son);
4546 if (son != exit)
4547 gather_blocks_in_sese_region (son, exit, bbs_p);
4552 struct move_stmt_d
4554 tree block;
4555 tree from_context;
4556 tree to_context;
4557 bitmap vars_to_remove;
4558 htab_t new_label_map;
4559 bool remap_decls_p;
4562 /* Helper for move_block_to_fn. Set TREE_BLOCK in every expression
4563 contained in *TP and change the DECL_CONTEXT of every local
4564 variable referenced in *TP. */
4566 static tree
4567 move_stmt_r (tree *tp, int *walk_subtrees, void *data)
4569 struct move_stmt_d *p = (struct move_stmt_d *) data;
4570 tree t = *tp;
4572 if (p->block
4573 && (EXPR_P (t) || GIMPLE_STMT_P (t)))
4574 TREE_BLOCK (t) = p->block;
4576 if (OMP_DIRECTIVE_P (t)
4577 && TREE_CODE (t) != OMP_RETURN
4578 && TREE_CODE (t) != OMP_CONTINUE)
4580 /* Do not remap variables inside OMP directives. Variables
4581 referenced in clauses and directive header belong to the
4582 parent function and should not be moved into the child
4583 function. */
4584 bool save_remap_decls_p = p->remap_decls_p;
4585 p->remap_decls_p = false;
4586 *walk_subtrees = 0;
4588 walk_tree (&OMP_BODY (t), move_stmt_r, p, NULL);
4590 p->remap_decls_p = save_remap_decls_p;
4592 else if (DECL_P (t) && DECL_CONTEXT (t) == p->from_context)
4594 if (TREE_CODE (t) == LABEL_DECL)
4596 if (p->new_label_map)
4598 struct tree_map in, *out;
4599 in.from = t;
4600 out = htab_find_with_hash (p->new_label_map, &in, DECL_UID (t));
4601 if (out)
4602 *tp = t = out->to;
4605 DECL_CONTEXT (t) = p->to_context;
4607 else if (p->remap_decls_p)
4609 DECL_CONTEXT (t) = p->to_context;
4611 if (TREE_CODE (t) == VAR_DECL)
4613 struct function *f = DECL_STRUCT_FUNCTION (p->to_context);
4614 f->unexpanded_var_list
4615 = tree_cons (0, t, f->unexpanded_var_list);
4617 /* Mark T to be removed from the original function,
4618 otherwise it will be given a DECL_RTL when the
4619 original function is expanded. */
4620 bitmap_set_bit (p->vars_to_remove, DECL_UID (t));
4624 else if (TYPE_P (t))
4625 *walk_subtrees = 0;
4627 return NULL_TREE;
4631 /* Move basic block BB from function CFUN to function DEST_FN. The
4632 block is moved out of the original linked list and placed after
4633 block AFTER in the new list. Also, the block is removed from the
4634 original array of blocks and placed in DEST_FN's array of blocks.
4635 If UPDATE_EDGE_COUNT_P is true, the edge counts on both CFGs is
4636 updated to reflect the moved edges.
4638 On exit, local variables that need to be removed from
4639 CFUN->UNEXPANDED_VAR_LIST will have been added to VARS_TO_REMOVE. */
4641 static void
4642 move_block_to_fn (struct function *dest_cfun, basic_block bb,
4643 basic_block after, bool update_edge_count_p,
4644 bitmap vars_to_remove, htab_t new_label_map, int eh_offset)
4646 struct control_flow_graph *cfg;
4647 edge_iterator ei;
4648 edge e;
4649 block_stmt_iterator si;
4650 struct move_stmt_d d;
4651 unsigned old_len, new_len;
4653 /* Link BB to the new linked list. */
4654 move_block_after (bb, after);
4656 /* Update the edge count in the corresponding flowgraphs. */
4657 if (update_edge_count_p)
4658 FOR_EACH_EDGE (e, ei, bb->succs)
4660 cfun->cfg->x_n_edges--;
4661 dest_cfun->cfg->x_n_edges++;
4664 /* Remove BB from the original basic block array. */
4665 VEC_replace (basic_block, cfun->cfg->x_basic_block_info, bb->index, NULL);
4666 cfun->cfg->x_n_basic_blocks--;
4668 /* Grow DEST_CFUN's basic block array if needed. */
4669 cfg = dest_cfun->cfg;
4670 cfg->x_n_basic_blocks++;
4671 if (bb->index > cfg->x_last_basic_block)
4672 cfg->x_last_basic_block = bb->index;
4674 old_len = VEC_length (basic_block, cfg->x_basic_block_info);
4675 if ((unsigned) cfg->x_last_basic_block >= old_len)
4677 new_len = cfg->x_last_basic_block + (cfg->x_last_basic_block + 3) / 4;
4678 VEC_safe_grow_cleared (basic_block, gc, cfg->x_basic_block_info,
4679 new_len);
4682 VEC_replace (basic_block, cfg->x_basic_block_info,
4683 cfg->x_last_basic_block, bb);
4685 /* The statements in BB need to be associated with a new TREE_BLOCK.
4686 Labels need to be associated with a new label-to-block map. */
4687 memset (&d, 0, sizeof (d));
4688 d.vars_to_remove = vars_to_remove;
4690 for (si = bsi_start (bb); !bsi_end_p (si); bsi_next (&si))
4692 tree stmt = bsi_stmt (si);
4693 int region;
4695 d.from_context = cfun->decl;
4696 d.to_context = dest_cfun->decl;
4697 d.remap_decls_p = true;
4698 d.new_label_map = new_label_map;
4699 if (TREE_BLOCK (stmt))
4700 d.block = DECL_INITIAL (dest_cfun->decl);
4702 walk_tree (&stmt, move_stmt_r, &d, NULL);
4704 if (TREE_CODE (stmt) == LABEL_EXPR)
4706 tree label = LABEL_EXPR_LABEL (stmt);
4707 int uid = LABEL_DECL_UID (label);
4709 gcc_assert (uid > -1);
4711 old_len = VEC_length (basic_block, cfg->x_label_to_block_map);
4712 if (old_len <= (unsigned) uid)
4714 new_len = 3 * uid / 2;
4715 VEC_safe_grow_cleared (basic_block, gc,
4716 cfg->x_label_to_block_map, new_len);
4719 VEC_replace (basic_block, cfg->x_label_to_block_map, uid, bb);
4720 VEC_replace (basic_block, cfun->cfg->x_label_to_block_map, uid, NULL);
4722 gcc_assert (DECL_CONTEXT (label) == dest_cfun->decl);
4724 if (uid >= dest_cfun->last_label_uid)
4725 dest_cfun->last_label_uid = uid + 1;
4727 else if (TREE_CODE (stmt) == RESX_EXPR && eh_offset != 0)
4728 TREE_OPERAND (stmt, 0) =
4729 build_int_cst (NULL_TREE,
4730 TREE_INT_CST_LOW (TREE_OPERAND (stmt, 0))
4731 + eh_offset);
4733 region = lookup_stmt_eh_region (stmt);
4734 if (region >= 0)
4736 add_stmt_to_eh_region_fn (dest_cfun, stmt, region + eh_offset);
4737 remove_stmt_from_eh_region (stmt);
4738 gimple_duplicate_stmt_histograms (dest_cfun, stmt, cfun, stmt);
4739 gimple_remove_stmt_histograms (cfun, stmt);
4744 /* Examine the statements in BB (which is in SRC_CFUN); find and return
4745 the outermost EH region. Use REGION as the incoming base EH region. */
4747 static int
4748 find_outermost_region_in_block (struct function *src_cfun,
4749 basic_block bb, int region)
4751 block_stmt_iterator si;
4753 for (si = bsi_start (bb); !bsi_end_p (si); bsi_next (&si))
4755 tree stmt = bsi_stmt (si);
4756 int stmt_region;
4758 if (TREE_CODE (stmt) == RESX_EXPR)
4759 stmt_region = TREE_INT_CST_LOW (TREE_OPERAND (stmt, 0));
4760 else
4761 stmt_region = lookup_stmt_eh_region_fn (src_cfun, stmt);
4762 if (stmt_region > 0)
4764 if (region < 0)
4765 region = stmt_region;
4766 else if (stmt_region != region)
4768 region = eh_region_outermost (src_cfun, stmt_region, region);
4769 gcc_assert (region != -1);
4774 return region;
4777 static tree
4778 new_label_mapper (tree decl, void *data)
4780 htab_t hash = (htab_t) data;
4781 struct tree_map *m;
4782 void **slot;
4784 gcc_assert (TREE_CODE (decl) == LABEL_DECL);
4786 m = xmalloc (sizeof (struct tree_map));
4787 m->hash = DECL_UID (decl);
4788 m->from = decl;
4789 m->to = create_artificial_label ();
4790 LABEL_DECL_UID (m->to) = LABEL_DECL_UID (decl);
4792 slot = htab_find_slot_with_hash (hash, m, m->hash, INSERT);
4793 gcc_assert (*slot == NULL);
4795 *slot = m;
4797 return m->to;
4800 /* Move a single-entry, single-exit region delimited by ENTRY_BB and
4801 EXIT_BB to function DEST_CFUN. The whole region is replaced by a
4802 single basic block in the original CFG and the new basic block is
4803 returned. DEST_CFUN must not have a CFG yet.
4805 Note that the region need not be a pure SESE region. Blocks inside
4806 the region may contain calls to abort/exit. The only restriction
4807 is that ENTRY_BB should be the only entry point and it must
4808 dominate EXIT_BB.
4810 All local variables referenced in the region are assumed to be in
4811 the corresponding BLOCK_VARS and unexpanded variable lists
4812 associated with DEST_CFUN. */
4814 basic_block
4815 move_sese_region_to_fn (struct function *dest_cfun, basic_block entry_bb,
4816 basic_block exit_bb)
4818 VEC(basic_block,heap) *bbs;
4819 basic_block after, bb, *entry_pred, *exit_succ;
4820 struct function *saved_cfun;
4821 int *entry_flag, *exit_flag, eh_offset;
4822 unsigned i, num_entry_edges, num_exit_edges;
4823 edge e;
4824 edge_iterator ei;
4825 bitmap vars_to_remove;
4826 htab_t new_label_map;
4828 saved_cfun = cfun;
4830 /* Collect all the blocks in the region. Manually add ENTRY_BB
4831 because it won't be added by dfs_enumerate_from. */
4832 calculate_dominance_info (CDI_DOMINATORS);
4834 /* If ENTRY does not strictly dominate EXIT, this cannot be an SESE
4835 region. */
4836 gcc_assert (entry_bb != exit_bb
4837 && (!exit_bb
4838 || dominated_by_p (CDI_DOMINATORS, exit_bb, entry_bb)));
4840 bbs = NULL;
4841 VEC_safe_push (basic_block, heap, bbs, entry_bb);
4842 gather_blocks_in_sese_region (entry_bb, exit_bb, &bbs);
4844 /* Detach ENTRY_BB and EXIT_BB from CFUN->CFG. We need to remember
4845 the predecessor edges to ENTRY_BB and the successor edges to
4846 EXIT_BB so that we can re-attach them to the new basic block that
4847 will replace the region. */
4848 num_entry_edges = EDGE_COUNT (entry_bb->preds);
4849 entry_pred = (basic_block *) xcalloc (num_entry_edges, sizeof (basic_block));
4850 entry_flag = (int *) xcalloc (num_entry_edges, sizeof (int));
4851 i = 0;
4852 for (ei = ei_start (entry_bb->preds); (e = ei_safe_edge (ei)) != NULL;)
4854 entry_flag[i] = e->flags;
4855 entry_pred[i++] = e->src;
4856 remove_edge (e);
4859 if (exit_bb)
4861 num_exit_edges = EDGE_COUNT (exit_bb->succs);
4862 exit_succ = (basic_block *) xcalloc (num_exit_edges,
4863 sizeof (basic_block));
4864 exit_flag = (int *) xcalloc (num_exit_edges, sizeof (int));
4865 i = 0;
4866 for (ei = ei_start (exit_bb->succs); (e = ei_safe_edge (ei)) != NULL;)
4868 exit_flag[i] = e->flags;
4869 exit_succ[i++] = e->dest;
4870 remove_edge (e);
4873 else
4875 num_exit_edges = 0;
4876 exit_succ = NULL;
4877 exit_flag = NULL;
4880 /* Switch context to the child function to initialize DEST_FN's CFG. */
4881 gcc_assert (dest_cfun->cfg == NULL);
4882 cfun = dest_cfun;
4884 init_empty_tree_cfg ();
4886 /* Initialize EH information for the new function. */
4887 eh_offset = 0;
4888 new_label_map = NULL;
4889 if (saved_cfun->eh)
4891 int region = -1;
4893 for (i = 0; VEC_iterate (basic_block, bbs, i, bb); i++)
4894 region = find_outermost_region_in_block (saved_cfun, bb, region);
4896 init_eh_for_function ();
4897 if (region != -1)
4899 new_label_map = htab_create (17, tree_map_hash, tree_map_eq, free);
4900 eh_offset = duplicate_eh_regions (saved_cfun, new_label_mapper,
4901 new_label_map, region, 0);
4905 cfun = saved_cfun;
4907 /* Move blocks from BBS into DEST_CFUN. */
4908 gcc_assert (VEC_length (basic_block, bbs) >= 2);
4909 after = dest_cfun->cfg->x_entry_block_ptr;
4910 vars_to_remove = BITMAP_ALLOC (NULL);
4911 for (i = 0; VEC_iterate (basic_block, bbs, i, bb); i++)
4913 /* No need to update edge counts on the last block. It has
4914 already been updated earlier when we detached the region from
4915 the original CFG. */
4916 move_block_to_fn (dest_cfun, bb, after, bb != exit_bb, vars_to_remove,
4917 new_label_map, eh_offset);
4918 after = bb;
4921 if (new_label_map)
4922 htab_delete (new_label_map);
4924 /* Remove the variables marked in VARS_TO_REMOVE from
4925 CFUN->UNEXPANDED_VAR_LIST. Otherwise, they will be given a
4926 DECL_RTL in the context of CFUN. */
4927 if (!bitmap_empty_p (vars_to_remove))
4929 tree *p;
4931 for (p = &cfun->unexpanded_var_list; *p; )
4933 tree var = TREE_VALUE (*p);
4934 if (bitmap_bit_p (vars_to_remove, DECL_UID (var)))
4936 *p = TREE_CHAIN (*p);
4937 continue;
4940 p = &TREE_CHAIN (*p);
4944 BITMAP_FREE (vars_to_remove);
4946 /* Rewire the entry and exit blocks. The successor to the entry
4947 block turns into the successor of DEST_FN's ENTRY_BLOCK_PTR in
4948 the child function. Similarly, the predecessor of DEST_FN's
4949 EXIT_BLOCK_PTR turns into the predecessor of EXIT_BLOCK_PTR. We
4950 need to switch CFUN between DEST_CFUN and SAVED_CFUN so that the
4951 various CFG manipulation function get to the right CFG.
4953 FIXME, this is silly. The CFG ought to become a parameter to
4954 these helpers. */
4955 cfun = dest_cfun;
4956 make_edge (ENTRY_BLOCK_PTR, entry_bb, EDGE_FALLTHRU);
4957 if (exit_bb)
4958 make_edge (exit_bb, EXIT_BLOCK_PTR, 0);
4959 cfun = saved_cfun;
4961 /* Back in the original function, the SESE region has disappeared,
4962 create a new basic block in its place. */
4963 bb = create_empty_bb (entry_pred[0]);
4964 for (i = 0; i < num_entry_edges; i++)
4965 make_edge (entry_pred[i], bb, entry_flag[i]);
4967 for (i = 0; i < num_exit_edges; i++)
4968 make_edge (bb, exit_succ[i], exit_flag[i]);
4970 if (exit_bb)
4972 free (exit_flag);
4973 free (exit_succ);
4975 free (entry_flag);
4976 free (entry_pred);
4977 free_dominance_info (CDI_DOMINATORS);
4978 free_dominance_info (CDI_POST_DOMINATORS);
4979 VEC_free (basic_block, heap, bbs);
4981 return bb;
4985 /* Dump FUNCTION_DECL FN to file FILE using FLAGS (see TDF_* in tree.h) */
4987 void
4988 dump_function_to_file (tree fn, FILE *file, int flags)
4990 tree arg, vars, var;
4991 bool ignore_topmost_bind = false, any_var = false;
4992 basic_block bb;
4993 tree chain;
4994 struct function *saved_cfun;
4996 fprintf (file, "%s (", lang_hooks.decl_printable_name (fn, 2));
4998 arg = DECL_ARGUMENTS (fn);
4999 while (arg)
5001 print_generic_expr (file, arg, dump_flags);
5002 if (TREE_CHAIN (arg))
5003 fprintf (file, ", ");
5004 arg = TREE_CHAIN (arg);
5006 fprintf (file, ")\n");
5008 if (flags & TDF_DETAILS)
5009 dump_eh_tree (file, DECL_STRUCT_FUNCTION (fn));
5010 if (flags & TDF_RAW)
5012 dump_node (fn, TDF_SLIM | flags, file);
5013 return;
5016 /* Switch CFUN to point to FN. */
5017 saved_cfun = cfun;
5018 cfun = DECL_STRUCT_FUNCTION (fn);
5020 /* When GIMPLE is lowered, the variables are no longer available in
5021 BIND_EXPRs, so display them separately. */
5022 if (cfun && cfun->decl == fn && cfun->unexpanded_var_list)
5024 ignore_topmost_bind = true;
5026 fprintf (file, "{\n");
5027 for (vars = cfun->unexpanded_var_list; vars; vars = TREE_CHAIN (vars))
5029 var = TREE_VALUE (vars);
5031 print_generic_decl (file, var, flags);
5032 fprintf (file, "\n");
5034 any_var = true;
5038 if (cfun && cfun->decl == fn && cfun->cfg && basic_block_info)
5040 /* Make a CFG based dump. */
5041 check_bb_profile (ENTRY_BLOCK_PTR, file);
5042 if (!ignore_topmost_bind)
5043 fprintf (file, "{\n");
5045 if (any_var && n_basic_blocks)
5046 fprintf (file, "\n");
5048 FOR_EACH_BB (bb)
5049 dump_generic_bb (file, bb, 2, flags);
5051 fprintf (file, "}\n");
5052 check_bb_profile (EXIT_BLOCK_PTR, file);
5054 else
5056 int indent;
5058 /* Make a tree based dump. */
5059 chain = DECL_SAVED_TREE (fn);
5061 if (chain && TREE_CODE (chain) == BIND_EXPR)
5063 if (ignore_topmost_bind)
5065 chain = BIND_EXPR_BODY (chain);
5066 indent = 2;
5068 else
5069 indent = 0;
5071 else
5073 if (!ignore_topmost_bind)
5074 fprintf (file, "{\n");
5075 indent = 2;
5078 if (any_var)
5079 fprintf (file, "\n");
5081 print_generic_stmt_indented (file, chain, flags, indent);
5082 if (ignore_topmost_bind)
5083 fprintf (file, "}\n");
5086 fprintf (file, "\n\n");
5088 /* Restore CFUN. */
5089 cfun = saved_cfun;
5093 /* Dump FUNCTION_DECL FN to stderr using FLAGS (see TDF_* in tree.h) */
5095 void
5096 debug_function (tree fn, int flags)
5098 dump_function_to_file (fn, stderr, flags);
5102 /* Pretty print of the loops intermediate representation. */
5103 static void print_loop (FILE *, struct loop *, int);
5104 static void print_pred_bbs (FILE *, basic_block bb);
5105 static void print_succ_bbs (FILE *, basic_block bb);
5108 /* Print on FILE the indexes for the predecessors of basic_block BB. */
5110 static void
5111 print_pred_bbs (FILE *file, basic_block bb)
5113 edge e;
5114 edge_iterator ei;
5116 FOR_EACH_EDGE (e, ei, bb->preds)
5117 fprintf (file, "bb_%d ", e->src->index);
5121 /* Print on FILE the indexes for the successors of basic_block BB. */
5123 static void
5124 print_succ_bbs (FILE *file, basic_block bb)
5126 edge e;
5127 edge_iterator ei;
5129 FOR_EACH_EDGE (e, ei, bb->succs)
5130 fprintf (file, "bb_%d ", e->dest->index);
5134 /* Pretty print LOOP on FILE, indented INDENT spaces. */
5136 static void
5137 print_loop (FILE *file, struct loop *loop, int indent)
5139 char *s_indent;
5140 basic_block bb;
5142 if (loop == NULL)
5143 return;
5145 s_indent = (char *) alloca ((size_t) indent + 1);
5146 memset ((void *) s_indent, ' ', (size_t) indent);
5147 s_indent[indent] = '\0';
5149 /* Print the loop's header. */
5150 fprintf (file, "%sloop_%d\n", s_indent, loop->num);
5152 /* Print the loop's body. */
5153 fprintf (file, "%s{\n", s_indent);
5154 FOR_EACH_BB (bb)
5155 if (bb->loop_father == loop)
5157 /* Print the basic_block's header. */
5158 fprintf (file, "%s bb_%d (preds = {", s_indent, bb->index);
5159 print_pred_bbs (file, bb);
5160 fprintf (file, "}, succs = {");
5161 print_succ_bbs (file, bb);
5162 fprintf (file, "})\n");
5164 /* Print the basic_block's body. */
5165 fprintf (file, "%s {\n", s_indent);
5166 tree_dump_bb (bb, file, indent + 4);
5167 fprintf (file, "%s }\n", s_indent);
5170 print_loop (file, loop->inner, indent + 2);
5171 fprintf (file, "%s}\n", s_indent);
5172 print_loop (file, loop->next, indent);
5176 /* Follow a CFG edge from the entry point of the program, and on entry
5177 of a loop, pretty print the loop structure on FILE. */
5179 void
5180 print_loop_ir (FILE *file)
5182 basic_block bb;
5184 bb = BASIC_BLOCK (NUM_FIXED_BLOCKS);
5185 if (bb && bb->loop_father)
5186 print_loop (file, bb->loop_father, 0);
5190 /* Debugging loops structure at tree level. */
5192 void
5193 debug_loop_ir (void)
5195 print_loop_ir (stderr);
5199 /* Return true if BB ends with a call, possibly followed by some
5200 instructions that must stay with the call. Return false,
5201 otherwise. */
5203 static bool
5204 tree_block_ends_with_call_p (basic_block bb)
5206 block_stmt_iterator bsi = bsi_last (bb);
5207 return get_call_expr_in (bsi_stmt (bsi)) != NULL;
5211 /* Return true if BB ends with a conditional branch. Return false,
5212 otherwise. */
5214 static bool
5215 tree_block_ends_with_condjump_p (basic_block bb)
5217 tree stmt = last_stmt (bb);
5218 return (stmt && TREE_CODE (stmt) == COND_EXPR);
5222 /* Return true if we need to add fake edge to exit at statement T.
5223 Helper function for tree_flow_call_edges_add. */
5225 static bool
5226 need_fake_edge_p (tree t)
5228 tree call;
5230 /* NORETURN and LONGJMP calls already have an edge to exit.
5231 CONST and PURE calls do not need one.
5232 We don't currently check for CONST and PURE here, although
5233 it would be a good idea, because those attributes are
5234 figured out from the RTL in mark_constant_function, and
5235 the counter incrementation code from -fprofile-arcs
5236 leads to different results from -fbranch-probabilities. */
5237 call = get_call_expr_in (t);
5238 if (call
5239 && !(call_expr_flags (call) & ECF_NORETURN))
5240 return true;
5242 if (TREE_CODE (t) == ASM_EXPR
5243 && (ASM_VOLATILE_P (t) || ASM_INPUT_P (t)))
5244 return true;
5246 return false;
5250 /* Add fake edges to the function exit for any non constant and non
5251 noreturn calls, volatile inline assembly in the bitmap of blocks
5252 specified by BLOCKS or to the whole CFG if BLOCKS is zero. Return
5253 the number of blocks that were split.
5255 The goal is to expose cases in which entering a basic block does
5256 not imply that all subsequent instructions must be executed. */
5258 static int
5259 tree_flow_call_edges_add (sbitmap blocks)
5261 int i;
5262 int blocks_split = 0;
5263 int last_bb = last_basic_block;
5264 bool check_last_block = false;
5266 if (n_basic_blocks == NUM_FIXED_BLOCKS)
5267 return 0;
5269 if (! blocks)
5270 check_last_block = true;
5271 else
5272 check_last_block = TEST_BIT (blocks, EXIT_BLOCK_PTR->prev_bb->index);
5274 /* In the last basic block, before epilogue generation, there will be
5275 a fallthru edge to EXIT. Special care is required if the last insn
5276 of the last basic block is a call because make_edge folds duplicate
5277 edges, which would result in the fallthru edge also being marked
5278 fake, which would result in the fallthru edge being removed by
5279 remove_fake_edges, which would result in an invalid CFG.
5281 Moreover, we can't elide the outgoing fake edge, since the block
5282 profiler needs to take this into account in order to solve the minimal
5283 spanning tree in the case that the call doesn't return.
5285 Handle this by adding a dummy instruction in a new last basic block. */
5286 if (check_last_block)
5288 basic_block bb = EXIT_BLOCK_PTR->prev_bb;
5289 block_stmt_iterator bsi = bsi_last (bb);
5290 tree t = NULL_TREE;
5291 if (!bsi_end_p (bsi))
5292 t = bsi_stmt (bsi);
5294 if (t && need_fake_edge_p (t))
5296 edge e;
5298 e = find_edge (bb, EXIT_BLOCK_PTR);
5299 if (e)
5301 bsi_insert_on_edge (e, build_empty_stmt ());
5302 bsi_commit_edge_inserts ();
5307 /* Now add fake edges to the function exit for any non constant
5308 calls since there is no way that we can determine if they will
5309 return or not... */
5310 for (i = 0; i < last_bb; i++)
5312 basic_block bb = BASIC_BLOCK (i);
5313 block_stmt_iterator bsi;
5314 tree stmt, last_stmt;
5316 if (!bb)
5317 continue;
5319 if (blocks && !TEST_BIT (blocks, i))
5320 continue;
5322 bsi = bsi_last (bb);
5323 if (!bsi_end_p (bsi))
5325 last_stmt = bsi_stmt (bsi);
5328 stmt = bsi_stmt (bsi);
5329 if (need_fake_edge_p (stmt))
5331 edge e;
5332 /* The handling above of the final block before the
5333 epilogue should be enough to verify that there is
5334 no edge to the exit block in CFG already.
5335 Calling make_edge in such case would cause us to
5336 mark that edge as fake and remove it later. */
5337 #ifdef ENABLE_CHECKING
5338 if (stmt == last_stmt)
5340 e = find_edge (bb, EXIT_BLOCK_PTR);
5341 gcc_assert (e == NULL);
5343 #endif
5345 /* Note that the following may create a new basic block
5346 and renumber the existing basic blocks. */
5347 if (stmt != last_stmt)
5349 e = split_block (bb, stmt);
5350 if (e)
5351 blocks_split++;
5353 make_edge (bb, EXIT_BLOCK_PTR, EDGE_FAKE);
5355 bsi_prev (&bsi);
5357 while (!bsi_end_p (bsi));
5361 if (blocks_split)
5362 verify_flow_info ();
5364 return blocks_split;
5367 /* Purge dead abnormal call edges from basic block BB. */
5369 bool
5370 tree_purge_dead_abnormal_call_edges (basic_block bb)
5372 bool changed = tree_purge_dead_eh_edges (bb);
5374 if (current_function_has_nonlocal_label)
5376 tree stmt = last_stmt (bb);
5377 edge_iterator ei;
5378 edge e;
5380 if (!(stmt && tree_can_make_abnormal_goto (stmt)))
5381 for (ei = ei_start (bb->succs); (e = ei_safe_edge (ei)); )
5383 if (e->flags & EDGE_ABNORMAL)
5385 remove_edge (e);
5386 changed = true;
5388 else
5389 ei_next (&ei);
5392 /* See tree_purge_dead_eh_edges below. */
5393 if (changed)
5394 free_dominance_info (CDI_DOMINATORS);
5397 return changed;
5400 /* Purge dead EH edges from basic block BB. */
5402 bool
5403 tree_purge_dead_eh_edges (basic_block bb)
5405 bool changed = false;
5406 edge e;
5407 edge_iterator ei;
5408 tree stmt = last_stmt (bb);
5410 if (stmt && tree_can_throw_internal (stmt))
5411 return false;
5413 for (ei = ei_start (bb->succs); (e = ei_safe_edge (ei)); )
5415 if (e->flags & EDGE_EH)
5417 remove_edge (e);
5418 changed = true;
5420 else
5421 ei_next (&ei);
5424 /* Removal of dead EH edges might change dominators of not
5425 just immediate successors. E.g. when bb1 is changed so that
5426 it no longer can throw and bb1->bb3 and bb1->bb4 are dead
5427 eh edges purged by this function in:
5431 1-->2
5432 / \ |
5433 v v |
5434 3-->4 |
5436 --->5
5439 idom(bb5) must be recomputed. For now just free the dominance
5440 info. */
5441 if (changed)
5442 free_dominance_info (CDI_DOMINATORS);
5444 return changed;
5447 bool
5448 tree_purge_all_dead_eh_edges (bitmap blocks)
5450 bool changed = false;
5451 unsigned i;
5452 bitmap_iterator bi;
5454 EXECUTE_IF_SET_IN_BITMAP (blocks, 0, i, bi)
5456 changed |= tree_purge_dead_eh_edges (BASIC_BLOCK (i));
5459 return changed;
5462 /* This function is called whenever a new edge is created or
5463 redirected. */
5465 static void
5466 tree_execute_on_growing_pred (edge e)
5468 basic_block bb = e->dest;
5470 if (phi_nodes (bb))
5471 reserve_phi_args_for_new_edge (bb);
5474 /* This function is called immediately before edge E is removed from
5475 the edge vector E->dest->preds. */
5477 static void
5478 tree_execute_on_shrinking_pred (edge e)
5480 if (phi_nodes (e->dest))
5481 remove_phi_args (e);
5484 /*---------------------------------------------------------------------------
5485 Helper functions for Loop versioning
5486 ---------------------------------------------------------------------------*/
5488 /* Adjust phi nodes for 'first' basic block. 'second' basic block is a copy
5489 of 'first'. Both of them are dominated by 'new_head' basic block. When
5490 'new_head' was created by 'second's incoming edge it received phi arguments
5491 on the edge by split_edge(). Later, additional edge 'e' was created to
5492 connect 'new_head' and 'first'. Now this routine adds phi args on this
5493 additional edge 'e' that new_head to second edge received as part of edge
5494 splitting.
5497 static void
5498 tree_lv_adjust_loop_header_phi (basic_block first, basic_block second,
5499 basic_block new_head, edge e)
5501 tree phi1, phi2;
5502 edge e2 = find_edge (new_head, second);
5504 /* Because NEW_HEAD has been created by splitting SECOND's incoming
5505 edge, we should always have an edge from NEW_HEAD to SECOND. */
5506 gcc_assert (e2 != NULL);
5508 /* Browse all 'second' basic block phi nodes and add phi args to
5509 edge 'e' for 'first' head. PHI args are always in correct order. */
5511 for (phi2 = phi_nodes (second), phi1 = phi_nodes (first);
5512 phi2 && phi1;
5513 phi2 = PHI_CHAIN (phi2), phi1 = PHI_CHAIN (phi1))
5515 tree def = PHI_ARG_DEF (phi2, e2->dest_idx);
5516 add_phi_arg (phi1, def, e);
5520 /* Adds a if else statement to COND_BB with condition COND_EXPR.
5521 SECOND_HEAD is the destination of the THEN and FIRST_HEAD is
5522 the destination of the ELSE part. */
5523 static void
5524 tree_lv_add_condition_to_bb (basic_block first_head, basic_block second_head,
5525 basic_block cond_bb, void *cond_e)
5527 block_stmt_iterator bsi;
5528 tree goto1 = NULL_TREE;
5529 tree goto2 = NULL_TREE;
5530 tree new_cond_expr = NULL_TREE;
5531 tree cond_expr = (tree) cond_e;
5532 edge e0;
5534 /* Build new conditional expr */
5535 goto1 = build1 (GOTO_EXPR, void_type_node, tree_block_label (first_head));
5536 goto2 = build1 (GOTO_EXPR, void_type_node, tree_block_label (second_head));
5537 new_cond_expr = build3 (COND_EXPR, void_type_node, cond_expr, goto1, goto2);
5539 /* Add new cond in cond_bb. */
5540 bsi = bsi_start (cond_bb);
5541 bsi_insert_after (&bsi, new_cond_expr, BSI_NEW_STMT);
5542 /* Adjust edges appropriately to connect new head with first head
5543 as well as second head. */
5544 e0 = single_succ_edge (cond_bb);
5545 e0->flags &= ~EDGE_FALLTHRU;
5546 e0->flags |= EDGE_FALSE_VALUE;
5549 struct cfg_hooks tree_cfg_hooks = {
5550 "tree",
5551 tree_verify_flow_info,
5552 tree_dump_bb, /* dump_bb */
5553 create_bb, /* create_basic_block */
5554 tree_redirect_edge_and_branch,/* redirect_edge_and_branch */
5555 tree_redirect_edge_and_branch_force,/* redirect_edge_and_branch_force */
5556 tree_can_remove_branch_p, /* can_remove_branch_p */
5557 remove_bb, /* delete_basic_block */
5558 tree_split_block, /* split_block */
5559 tree_move_block_after, /* move_block_after */
5560 tree_can_merge_blocks_p, /* can_merge_blocks_p */
5561 tree_merge_blocks, /* merge_blocks */
5562 tree_predict_edge, /* predict_edge */
5563 tree_predicted_by_p, /* predicted_by_p */
5564 tree_can_duplicate_bb_p, /* can_duplicate_block_p */
5565 tree_duplicate_bb, /* duplicate_block */
5566 tree_split_edge, /* split_edge */
5567 tree_make_forwarder_block, /* make_forward_block */
5568 NULL, /* tidy_fallthru_edge */
5569 tree_block_ends_with_call_p, /* block_ends_with_call_p */
5570 tree_block_ends_with_condjump_p, /* block_ends_with_condjump_p */
5571 tree_flow_call_edges_add, /* flow_call_edges_add */
5572 tree_execute_on_growing_pred, /* execute_on_growing_pred */
5573 tree_execute_on_shrinking_pred, /* execute_on_shrinking_pred */
5574 tree_duplicate_loop_to_header_edge, /* duplicate loop for trees */
5575 tree_lv_add_condition_to_bb, /* lv_add_condition_to_bb */
5576 tree_lv_adjust_loop_header_phi, /* lv_adjust_loop_header_phi*/
5577 extract_true_false_edges_from_block, /* extract_cond_bb_edges */
5578 flush_pending_stmts /* flush_pending_stmts */
5582 /* Split all critical edges. */
5584 static unsigned int
5585 split_critical_edges (void)
5587 basic_block bb;
5588 edge e;
5589 edge_iterator ei;
5591 /* split_edge can redirect edges out of SWITCH_EXPRs, which can get
5592 expensive. So we want to enable recording of edge to CASE_LABEL_EXPR
5593 mappings around the calls to split_edge. */
5594 start_recording_case_labels ();
5595 FOR_ALL_BB (bb)
5597 FOR_EACH_EDGE (e, ei, bb->succs)
5598 if (EDGE_CRITICAL_P (e) && !(e->flags & EDGE_ABNORMAL))
5600 split_edge (e);
5603 end_recording_case_labels ();
5604 return 0;
5607 struct tree_opt_pass pass_split_crit_edges =
5609 "crited", /* name */
5610 NULL, /* gate */
5611 split_critical_edges, /* execute */
5612 NULL, /* sub */
5613 NULL, /* next */
5614 0, /* static_pass_number */
5615 TV_TREE_SPLIT_EDGES, /* tv_id */
5616 PROP_cfg, /* properties required */
5617 PROP_no_crit_edges, /* properties_provided */
5618 0, /* properties_destroyed */
5619 0, /* todo_flags_start */
5620 TODO_dump_func, /* todo_flags_finish */
5621 0 /* letter */
5625 /* Return EXP if it is a valid GIMPLE rvalue, else gimplify it into
5626 a temporary, make sure and register it to be renamed if necessary,
5627 and finally return the temporary. Put the statements to compute
5628 EXP before the current statement in BSI. */
5630 tree
5631 gimplify_val (block_stmt_iterator *bsi, tree type, tree exp)
5633 tree t, new_stmt, orig_stmt;
5635 if (is_gimple_val (exp))
5636 return exp;
5638 t = make_rename_temp (type, NULL);
5639 new_stmt = build2_gimple (GIMPLE_MODIFY_STMT, t, exp);
5641 orig_stmt = bsi_stmt (*bsi);
5642 SET_EXPR_LOCUS (new_stmt, EXPR_LOCUS (orig_stmt));
5643 TREE_BLOCK (new_stmt) = TREE_BLOCK (orig_stmt);
5645 bsi_insert_before (bsi, new_stmt, BSI_SAME_STMT);
5646 if (gimple_in_ssa_p (cfun))
5647 mark_symbols_for_renaming (new_stmt);
5649 return t;
5652 /* Build a ternary operation and gimplify it. Emit code before BSI.
5653 Return the gimple_val holding the result. */
5655 tree
5656 gimplify_build3 (block_stmt_iterator *bsi, enum tree_code code,
5657 tree type, tree a, tree b, tree c)
5659 tree ret;
5661 ret = fold_build3 (code, type, a, b, c);
5662 STRIP_NOPS (ret);
5664 return gimplify_val (bsi, type, ret);
5667 /* Build a binary operation and gimplify it. Emit code before BSI.
5668 Return the gimple_val holding the result. */
5670 tree
5671 gimplify_build2 (block_stmt_iterator *bsi, enum tree_code code,
5672 tree type, tree a, tree b)
5674 tree ret;
5676 ret = fold_build2 (code, type, a, b);
5677 STRIP_NOPS (ret);
5679 return gimplify_val (bsi, type, ret);
5682 /* Build a unary operation and gimplify it. Emit code before BSI.
5683 Return the gimple_val holding the result. */
5685 tree
5686 gimplify_build1 (block_stmt_iterator *bsi, enum tree_code code, tree type,
5687 tree a)
5689 tree ret;
5691 ret = fold_build1 (code, type, a);
5692 STRIP_NOPS (ret);
5694 return gimplify_val (bsi, type, ret);
5699 /* Emit return warnings. */
5701 static unsigned int
5702 execute_warn_function_return (void)
5704 #ifdef USE_MAPPED_LOCATION
5705 source_location location;
5706 #else
5707 location_t *locus;
5708 #endif
5709 tree last;
5710 edge e;
5711 edge_iterator ei;
5713 /* If we have a path to EXIT, then we do return. */
5714 if (TREE_THIS_VOLATILE (cfun->decl)
5715 && EDGE_COUNT (EXIT_BLOCK_PTR->preds) > 0)
5717 #ifdef USE_MAPPED_LOCATION
5718 location = UNKNOWN_LOCATION;
5719 #else
5720 locus = NULL;
5721 #endif
5722 FOR_EACH_EDGE (e, ei, EXIT_BLOCK_PTR->preds)
5724 last = last_stmt (e->src);
5725 if (TREE_CODE (last) == RETURN_EXPR
5726 #ifdef USE_MAPPED_LOCATION
5727 && (location = EXPR_LOCATION (last)) != UNKNOWN_LOCATION)
5728 #else
5729 && (locus = EXPR_LOCUS (last)) != NULL)
5730 #endif
5731 break;
5733 #ifdef USE_MAPPED_LOCATION
5734 if (location == UNKNOWN_LOCATION)
5735 location = cfun->function_end_locus;
5736 warning (0, "%H%<noreturn%> function does return", &location);
5737 #else
5738 if (!locus)
5739 locus = &cfun->function_end_locus;
5740 warning (0, "%H%<noreturn%> function does return", locus);
5741 #endif
5744 /* If we see "return;" in some basic block, then we do reach the end
5745 without returning a value. */
5746 else if (warn_return_type
5747 && !TREE_NO_WARNING (cfun->decl)
5748 && EDGE_COUNT (EXIT_BLOCK_PTR->preds) > 0
5749 && !VOID_TYPE_P (TREE_TYPE (TREE_TYPE (cfun->decl))))
5751 FOR_EACH_EDGE (e, ei, EXIT_BLOCK_PTR->preds)
5753 tree last = last_stmt (e->src);
5754 if (TREE_CODE (last) == RETURN_EXPR
5755 && TREE_OPERAND (last, 0) == NULL
5756 && !TREE_NO_WARNING (last))
5758 #ifdef USE_MAPPED_LOCATION
5759 location = EXPR_LOCATION (last);
5760 if (location == UNKNOWN_LOCATION)
5761 location = cfun->function_end_locus;
5762 warning (0, "%Hcontrol reaches end of non-void function", &location);
5763 #else
5764 locus = EXPR_LOCUS (last);
5765 if (!locus)
5766 locus = &cfun->function_end_locus;
5767 warning (0, "%Hcontrol reaches end of non-void function", locus);
5768 #endif
5769 TREE_NO_WARNING (cfun->decl) = 1;
5770 break;
5774 return 0;
5778 /* Given a basic block B which ends with a conditional and has
5779 precisely two successors, determine which of the edges is taken if
5780 the conditional is true and which is taken if the conditional is
5781 false. Set TRUE_EDGE and FALSE_EDGE appropriately. */
5783 void
5784 extract_true_false_edges_from_block (basic_block b,
5785 edge *true_edge,
5786 edge *false_edge)
5788 edge e = EDGE_SUCC (b, 0);
5790 if (e->flags & EDGE_TRUE_VALUE)
5792 *true_edge = e;
5793 *false_edge = EDGE_SUCC (b, 1);
5795 else
5797 *false_edge = e;
5798 *true_edge = EDGE_SUCC (b, 1);
5802 struct tree_opt_pass pass_warn_function_return =
5804 NULL, /* name */
5805 NULL, /* gate */
5806 execute_warn_function_return, /* execute */
5807 NULL, /* sub */
5808 NULL, /* next */
5809 0, /* static_pass_number */
5810 0, /* tv_id */
5811 PROP_cfg, /* properties_required */
5812 0, /* properties_provided */
5813 0, /* properties_destroyed */
5814 0, /* todo_flags_start */
5815 0, /* todo_flags_finish */
5816 0 /* letter */
5819 /* Emit noreturn warnings. */
5821 static unsigned int
5822 execute_warn_function_noreturn (void)
5824 if (warn_missing_noreturn
5825 && !TREE_THIS_VOLATILE (cfun->decl)
5826 && EDGE_COUNT (EXIT_BLOCK_PTR->preds) == 0
5827 && !lang_hooks.function.missing_noreturn_ok_p (cfun->decl))
5828 warning (OPT_Wmissing_noreturn, "%Jfunction might be possible candidate "
5829 "for attribute %<noreturn%>",
5830 cfun->decl);
5831 return 0;
5834 struct tree_opt_pass pass_warn_function_noreturn =
5836 NULL, /* name */
5837 NULL, /* gate */
5838 execute_warn_function_noreturn, /* execute */
5839 NULL, /* sub */
5840 NULL, /* next */
5841 0, /* static_pass_number */
5842 0, /* tv_id */
5843 PROP_cfg, /* properties_required */
5844 0, /* properties_provided */
5845 0, /* properties_destroyed */
5846 0, /* todo_flags_start */
5847 0, /* todo_flags_finish */
5848 0 /* letter */