* Merge with edge-vector-mergepoint-20040918.
[official-gcc.git] / gcc / tree-cfg.c
blobc48f47a9640f454289dd4ad9487866ceba7ef245
1 /* Control flow functions for trees.
2 Copyright (C) 2001, 2002, 2003, 2004 Free Software Foundation, Inc.
3 Contributed by Diego Novillo <dnovillo@redhat.com>
5 This file is part of GCC.
7 GCC is free software; you can redistribute it and/or modify
8 it under the terms of the GNU General Public License as published by
9 the Free Software Foundation; either version 2, or (at your option)
10 any later version.
12 GCC is distributed in the hope that it will be useful,
13 but WITHOUT ANY WARRANTY; without even the implied warranty of
14 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
15 GNU General Public License for more details.
17 You should have received a copy of the GNU General Public License
18 along with GCC; see the file COPYING. If not, write to
19 the Free Software Foundation, 59 Temple Place - Suite 330,
20 Boston, MA 02111-1307, USA. */
22 #include "config.h"
23 #include "system.h"
24 #include "coretypes.h"
25 #include "tm.h"
26 #include "tree.h"
27 #include "rtl.h"
28 #include "tm_p.h"
29 #include "hard-reg-set.h"
30 #include "basic-block.h"
31 #include "output.h"
32 #include "errors.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"
48 /* This file contains functions for building the Control Flow Graph (CFG)
49 for a function tree. */
51 /* Local declarations. */
53 /* Initial capacity for the basic block array. */
54 static const int initial_cfg_capacity = 20;
56 /* Mapping of labels to their associated blocks. This can greatly speed up
57 building of the CFG in code with lots of gotos. */
58 static GTY(()) varray_type label_to_block_map;
60 /* CFG statistics. */
61 struct cfg_stats_d
63 long num_merged_labels;
66 static struct cfg_stats_d cfg_stats;
68 /* Nonzero if we found a computed goto while building basic blocks. */
69 static bool found_computed_goto;
71 /* Basic blocks and flowgraphs. */
72 static basic_block create_bb (void *, void *, basic_block);
73 static void create_block_annotation (basic_block);
74 static void free_blocks_annotations (void);
75 static void clear_blocks_annotations (void);
76 static void make_blocks (tree);
77 static void factor_computed_gotos (void);
79 /* Edges. */
80 static void make_edges (void);
81 static void make_ctrl_stmt_edges (basic_block);
82 static void make_exit_edges (basic_block);
83 static void make_cond_expr_edges (basic_block);
84 static void make_switch_expr_edges (basic_block);
85 static void make_goto_expr_edges (basic_block);
86 static edge tree_redirect_edge_and_branch (edge, basic_block);
87 static edge tree_try_redirect_by_replacing_jump (edge, basic_block);
88 static void split_critical_edges (void);
90 /* Various helpers. */
91 static inline bool stmt_starts_bb_p (tree, tree);
92 static int tree_verify_flow_info (void);
93 static void tree_make_forwarder_block (edge);
94 static bool thread_jumps (void);
95 static bool tree_forwarder_block_p (basic_block);
96 static void bsi_commit_edge_inserts_1 (edge e);
97 static void tree_cfg2vcg (FILE *);
99 /* Flowgraph optimization and cleanup. */
100 static void tree_merge_blocks (basic_block, basic_block);
101 static bool tree_can_merge_blocks_p (basic_block, basic_block);
102 static void remove_bb (basic_block);
103 static bool cleanup_control_flow (void);
104 static bool cleanup_control_expr_graph (basic_block, block_stmt_iterator);
105 static edge find_taken_edge_cond_expr (basic_block, tree);
106 static edge find_taken_edge_switch_expr (basic_block, tree);
107 static tree find_case_label_for_value (tree, tree);
108 static bool phi_alternatives_equal (basic_block, edge, edge);
111 /*---------------------------------------------------------------------------
112 Create basic blocks
113 ---------------------------------------------------------------------------*/
115 /* Entry point to the CFG builder for trees. TP points to the list of
116 statements to be added to the flowgraph. */
118 static void
119 build_tree_cfg (tree *tp)
121 /* Register specific tree functions. */
122 tree_register_cfg_hooks ();
124 /* Initialize rbi_pool. */
125 alloc_rbi_pool ();
127 /* Initialize the basic block array. */
128 init_flow ();
129 profile_status = PROFILE_ABSENT;
130 n_basic_blocks = 0;
131 last_basic_block = 0;
132 VARRAY_BB_INIT (basic_block_info, initial_cfg_capacity, "basic_block_info");
133 memset ((void *) &cfg_stats, 0, sizeof (cfg_stats));
135 /* Build a mapping of labels to their associated blocks. */
136 VARRAY_BB_INIT (label_to_block_map, initial_cfg_capacity,
137 "label to block map");
139 ENTRY_BLOCK_PTR->next_bb = EXIT_BLOCK_PTR;
140 EXIT_BLOCK_PTR->prev_bb = ENTRY_BLOCK_PTR;
142 found_computed_goto = 0;
143 make_blocks (*tp);
145 /* Computed gotos are hell to deal with, especially if there are
146 lots of them with a large number of destinations. So we factor
147 them to a common computed goto location before we build the
148 edge list. After we convert back to normal form, we will un-factor
149 the computed gotos since factoring introduces an unwanted jump. */
150 if (found_computed_goto)
151 factor_computed_gotos ();
153 /* Make sure there is always at least one block, even if its empty. */
154 if (n_basic_blocks == 0)
155 create_empty_bb (ENTRY_BLOCK_PTR);
157 create_block_annotation (ENTRY_BLOCK_PTR);
158 create_block_annotation (EXIT_BLOCK_PTR);
160 /* Adjust the size of the array. */
161 VARRAY_GROW (basic_block_info, n_basic_blocks);
163 /* To speed up statement iterator walks, we first purge dead labels. */
164 cleanup_dead_labels ();
166 /* Group case nodes to reduce the number of edges.
167 We do this after cleaning up dead labels because otherwise we miss
168 a lot of obvious case merging opportunities. */
169 group_case_labels ();
171 /* Create the edges of the flowgraph. */
172 make_edges ();
174 /* Debugging dumps. */
176 /* Write the flowgraph to a VCG file. */
178 int local_dump_flags;
179 FILE *dump_file = dump_begin (TDI_vcg, &local_dump_flags);
180 if (dump_file)
182 tree_cfg2vcg (dump_file);
183 dump_end (TDI_vcg, dump_file);
187 /* Dump a textual representation of the flowgraph. */
188 if (dump_file)
189 dump_tree_cfg (dump_file, dump_flags);
192 static void
193 execute_build_cfg (void)
195 build_tree_cfg (&DECL_SAVED_TREE (current_function_decl));
198 struct tree_opt_pass pass_build_cfg =
200 "cfg", /* name */
201 NULL, /* gate */
202 execute_build_cfg, /* execute */
203 NULL, /* sub */
204 NULL, /* next */
205 0, /* static_pass_number */
206 TV_TREE_CFG, /* tv_id */
207 PROP_gimple_leh, /* properties_required */
208 PROP_cfg, /* properties_provided */
209 0, /* properties_destroyed */
210 0, /* todo_flags_start */
211 TODO_verify_stmts, /* todo_flags_finish */
212 0 /* letter */
215 /* Search the CFG for any computed gotos. If found, factor them to a
216 common computed goto site. Also record the location of that site so
217 that we can un-factor the gotos after we have converted back to
218 normal form. */
220 static void
221 factor_computed_gotos (void)
223 basic_block bb;
224 tree factored_label_decl = NULL;
225 tree var = NULL;
226 tree factored_computed_goto_label = NULL;
227 tree factored_computed_goto = NULL;
229 /* We know there are one or more computed gotos in this function.
230 Examine the last statement in each basic block to see if the block
231 ends with a computed goto. */
233 FOR_EACH_BB (bb)
235 block_stmt_iterator bsi = bsi_last (bb);
236 tree last;
238 if (bsi_end_p (bsi))
239 continue;
240 last = bsi_stmt (bsi);
242 /* Ignore the computed goto we create when we factor the original
243 computed gotos. */
244 if (last == factored_computed_goto)
245 continue;
247 /* If the last statement is a computed goto, factor it. */
248 if (computed_goto_p (last))
250 tree assignment;
252 /* The first time we find a computed goto we need to create
253 the factored goto block and the variable each original
254 computed goto will use for their goto destination. */
255 if (! factored_computed_goto)
257 basic_block new_bb = create_empty_bb (bb);
258 block_stmt_iterator new_bsi = bsi_start (new_bb);
260 /* Create the destination of the factored goto. Each original
261 computed goto will put its desired destination into this
262 variable and jump to the label we create immediately
263 below. */
264 var = create_tmp_var (ptr_type_node, "gotovar");
266 /* Build a label for the new block which will contain the
267 factored computed goto. */
268 factored_label_decl = create_artificial_label ();
269 factored_computed_goto_label
270 = build1 (LABEL_EXPR, void_type_node, factored_label_decl);
271 bsi_insert_after (&new_bsi, factored_computed_goto_label,
272 BSI_NEW_STMT);
274 /* Build our new computed goto. */
275 factored_computed_goto = build1 (GOTO_EXPR, void_type_node, var);
276 bsi_insert_after (&new_bsi, factored_computed_goto,
277 BSI_NEW_STMT);
280 /* Copy the original computed goto's destination into VAR. */
281 assignment = build (MODIFY_EXPR, ptr_type_node,
282 var, GOTO_DESTINATION (last));
283 bsi_insert_before (&bsi, assignment, BSI_SAME_STMT);
285 /* And re-vector the computed goto to the new destination. */
286 GOTO_DESTINATION (last) = factored_label_decl;
292 /* Create annotations for a single basic block. */
294 static void
295 create_block_annotation (basic_block bb)
297 /* Verify that the tree_annotations field is clear. */
298 gcc_assert (!bb->tree_annotations);
299 bb->tree_annotations = ggc_alloc_cleared (sizeof (struct bb_ann_d));
303 /* Free the annotations for all the basic blocks. */
305 static void free_blocks_annotations (void)
307 clear_blocks_annotations ();
311 /* Clear the annotations for all the basic blocks. */
313 static void
314 clear_blocks_annotations (void)
316 basic_block bb;
318 FOR_BB_BETWEEN (bb, ENTRY_BLOCK_PTR, NULL, next_bb)
319 bb->tree_annotations = NULL;
323 /* Build a flowgraph for the statement_list STMT_LIST. */
325 static void
326 make_blocks (tree stmt_list)
328 tree_stmt_iterator i = tsi_start (stmt_list);
329 tree stmt = NULL;
330 bool start_new_block = true;
331 bool first_stmt_of_list = true;
332 basic_block bb = ENTRY_BLOCK_PTR;
334 while (!tsi_end_p (i))
336 tree prev_stmt;
338 prev_stmt = stmt;
339 stmt = tsi_stmt (i);
341 /* If the statement starts a new basic block or if we have determined
342 in a previous pass that we need to create a new block for STMT, do
343 so now. */
344 if (start_new_block || stmt_starts_bb_p (stmt, prev_stmt))
346 if (!first_stmt_of_list)
347 stmt_list = tsi_split_statement_list_before (&i);
348 bb = create_basic_block (stmt_list, NULL, bb);
349 start_new_block = false;
352 /* Now add STMT to BB and create the subgraphs for special statement
353 codes. */
354 set_bb_for_stmt (stmt, bb);
356 if (computed_goto_p (stmt))
357 found_computed_goto = true;
359 /* If STMT is a basic block terminator, set START_NEW_BLOCK for the
360 next iteration. */
361 if (stmt_ends_bb_p (stmt))
362 start_new_block = true;
364 tsi_next (&i);
365 first_stmt_of_list = false;
370 /* Create and return a new empty basic block after bb AFTER. */
372 static basic_block
373 create_bb (void *h, void *e, basic_block after)
375 basic_block bb;
377 gcc_assert (!e);
379 /* Create and initialize a new basic block. */
380 bb = alloc_block ();
381 memset (bb, 0, sizeof (*bb));
383 bb->index = last_basic_block;
384 bb->flags = BB_NEW;
385 bb->stmt_list = h ? h : alloc_stmt_list ();
387 /* Add the new block to the linked list of blocks. */
388 link_block (bb, after);
390 /* Grow the basic block array if needed. */
391 if ((size_t) last_basic_block == VARRAY_SIZE (basic_block_info))
393 size_t new_size = last_basic_block + (last_basic_block + 3) / 4;
394 VARRAY_GROW (basic_block_info, new_size);
397 /* Add the newly created block to the array. */
398 BASIC_BLOCK (last_basic_block) = bb;
400 create_block_annotation (bb);
402 n_basic_blocks++;
403 last_basic_block++;
405 initialize_bb_rbi (bb);
406 return bb;
410 /*---------------------------------------------------------------------------
411 Edge creation
412 ---------------------------------------------------------------------------*/
414 /* Join all the blocks in the flowgraph. */
416 static void
417 make_edges (void)
419 basic_block bb;
421 /* Create an edge from entry to the first block with executable
422 statements in it. */
423 make_edge (ENTRY_BLOCK_PTR, BASIC_BLOCK (0), EDGE_FALLTHRU);
425 /* Traverse basic block array placing edges. */
426 FOR_EACH_BB (bb)
428 tree first = first_stmt (bb);
429 tree last = last_stmt (bb);
431 if (first)
433 /* Edges for statements that always alter flow control. */
434 if (is_ctrl_stmt (last))
435 make_ctrl_stmt_edges (bb);
437 /* Edges for statements that sometimes alter flow control. */
438 if (is_ctrl_altering_stmt (last))
439 make_exit_edges (bb);
442 /* Finally, if no edges were created above, this is a regular
443 basic block that only needs a fallthru edge. */
444 if (EDGE_COUNT (bb->succs) == 0)
445 make_edge (bb, bb->next_bb, EDGE_FALLTHRU);
448 /* We do not care about fake edges, so remove any that the CFG
449 builder inserted for completeness. */
450 remove_fake_exit_edges ();
452 /* Clean up the graph and warn for unreachable code. */
453 cleanup_tree_cfg ();
457 /* Create edges for control statement at basic block BB. */
459 static void
460 make_ctrl_stmt_edges (basic_block bb)
462 tree last = last_stmt (bb);
464 gcc_assert (last);
465 switch (TREE_CODE (last))
467 case GOTO_EXPR:
468 make_goto_expr_edges (bb);
469 break;
471 case RETURN_EXPR:
472 make_edge (bb, EXIT_BLOCK_PTR, 0);
473 break;
475 case COND_EXPR:
476 make_cond_expr_edges (bb);
477 break;
479 case SWITCH_EXPR:
480 make_switch_expr_edges (bb);
481 break;
483 case RESX_EXPR:
484 make_eh_edges (last);
485 /* Yet another NORETURN hack. */
486 if (EDGE_COUNT (bb->succs) == 0)
487 make_edge (bb, EXIT_BLOCK_PTR, EDGE_FAKE);
488 break;
490 default:
491 gcc_unreachable ();
496 /* Create exit edges for statements in block BB that alter the flow of
497 control. Statements that alter the control flow are 'goto', 'return'
498 and calls to non-returning functions. */
500 static void
501 make_exit_edges (basic_block bb)
503 tree last = last_stmt (bb), op;
505 gcc_assert (last);
506 switch (TREE_CODE (last))
508 case CALL_EXPR:
509 /* If this function receives a nonlocal goto, then we need to
510 make edges from this call site to all the nonlocal goto
511 handlers. */
512 if (TREE_SIDE_EFFECTS (last)
513 && current_function_has_nonlocal_label)
514 make_goto_expr_edges (bb);
516 /* If this statement has reachable exception handlers, then
517 create abnormal edges to them. */
518 make_eh_edges (last);
520 /* Some calls are known not to return. For such calls we create
521 a fake edge.
523 We really need to revamp how we build edges so that it's not
524 such a bloody pain to avoid creating edges for this case since
525 all we do is remove these edges when we're done building the
526 CFG. */
527 if (call_expr_flags (last) & (ECF_NORETURN | ECF_LONGJMP))
529 make_edge (bb, EXIT_BLOCK_PTR, EDGE_FAKE);
530 return;
533 /* Don't forget the fall-thru edge. */
534 make_edge (bb, bb->next_bb, EDGE_FALLTHRU);
535 break;
537 case MODIFY_EXPR:
538 /* A MODIFY_EXPR may have a CALL_EXPR on its RHS and the CALL_EXPR
539 may have an abnormal edge. Search the RHS for this case and
540 create any required edges. */
541 op = get_call_expr_in (last);
542 if (op && TREE_SIDE_EFFECTS (op)
543 && current_function_has_nonlocal_label)
544 make_goto_expr_edges (bb);
546 make_eh_edges (last);
547 make_edge (bb, bb->next_bb, EDGE_FALLTHRU);
548 break;
550 default:
551 gcc_unreachable ();
556 /* Create the edges for a COND_EXPR starting at block BB.
557 At this point, both clauses must contain only simple gotos. */
559 static void
560 make_cond_expr_edges (basic_block bb)
562 tree entry = last_stmt (bb);
563 basic_block then_bb, else_bb;
564 tree then_label, else_label;
566 gcc_assert (entry);
567 gcc_assert (TREE_CODE (entry) == COND_EXPR);
569 /* Entry basic blocks for each component. */
570 then_label = GOTO_DESTINATION (COND_EXPR_THEN (entry));
571 else_label = GOTO_DESTINATION (COND_EXPR_ELSE (entry));
572 then_bb = label_to_block (then_label);
573 else_bb = label_to_block (else_label);
575 make_edge (bb, then_bb, EDGE_TRUE_VALUE);
576 make_edge (bb, else_bb, EDGE_FALSE_VALUE);
580 /* Create the edges for a SWITCH_EXPR starting at block BB.
581 At this point, the switch body has been lowered and the
582 SWITCH_LABELS filled in, so this is in effect a multi-way branch. */
584 static void
585 make_switch_expr_edges (basic_block bb)
587 tree entry = last_stmt (bb);
588 size_t i, n;
589 tree vec;
591 vec = SWITCH_LABELS (entry);
592 n = TREE_VEC_LENGTH (vec);
594 for (i = 0; i < n; ++i)
596 tree lab = CASE_LABEL (TREE_VEC_ELT (vec, i));
597 basic_block label_bb = label_to_block (lab);
598 make_edge (bb, label_bb, 0);
603 /* Return the basic block holding label DEST. */
605 basic_block
606 label_to_block (tree dest)
608 int uid = LABEL_DECL_UID (dest);
610 /* We would die hard when faced by undefined label. Emit label to
611 very first basic block. This will hopefully make even the dataflow
612 and undefined variable warnings quite right. */
613 if ((errorcount || sorrycount) && uid < 0)
615 block_stmt_iterator bsi = bsi_start (BASIC_BLOCK (0));
616 tree stmt;
618 stmt = build1 (LABEL_EXPR, void_type_node, dest);
619 bsi_insert_before (&bsi, stmt, BSI_NEW_STMT);
620 uid = LABEL_DECL_UID (dest);
622 return VARRAY_BB (label_to_block_map, uid);
626 /* Create edges for a goto statement at block BB. */
628 static void
629 make_goto_expr_edges (basic_block bb)
631 tree goto_t, dest;
632 basic_block target_bb;
633 int for_call;
634 block_stmt_iterator last = bsi_last (bb);
636 goto_t = bsi_stmt (last);
638 /* If the last statement is not a GOTO (i.e., it is a RETURN_EXPR,
639 CALL_EXPR or MODIFY_EXPR), then the edge is an abnormal edge resulting
640 from a nonlocal goto. */
641 if (TREE_CODE (goto_t) != GOTO_EXPR)
643 dest = error_mark_node;
644 for_call = 1;
646 else
648 dest = GOTO_DESTINATION (goto_t);
649 for_call = 0;
651 /* A GOTO to a local label creates normal edges. */
652 if (simple_goto_p (goto_t))
654 edge e = make_edge (bb, label_to_block (dest), EDGE_FALLTHRU);
655 #ifdef USE_MAPPED_LOCATION
656 e->goto_locus = EXPR_LOCATION (goto_t);
657 #else
658 e->goto_locus = EXPR_LOCUS (goto_t);
659 #endif
660 bsi_remove (&last);
661 return;
664 /* Nothing more to do for nonlocal gotos. */
665 if (TREE_CODE (dest) == LABEL_DECL)
666 return;
668 /* Computed gotos remain. */
671 /* Look for the block starting with the destination label. In the
672 case of a computed goto, make an edge to any label block we find
673 in the CFG. */
674 FOR_EACH_BB (target_bb)
676 block_stmt_iterator bsi;
678 for (bsi = bsi_start (target_bb); !bsi_end_p (bsi); bsi_next (&bsi))
680 tree target = bsi_stmt (bsi);
682 if (TREE_CODE (target) != LABEL_EXPR)
683 break;
685 if (
686 /* Computed GOTOs. Make an edge to every label block that has
687 been marked as a potential target for a computed goto. */
688 (FORCED_LABEL (LABEL_EXPR_LABEL (target)) && for_call == 0)
689 /* Nonlocal GOTO target. Make an edge to every label block
690 that has been marked as a potential target for a nonlocal
691 goto. */
692 || (DECL_NONLOCAL (LABEL_EXPR_LABEL (target)) && for_call == 1))
694 make_edge (bb, target_bb, EDGE_ABNORMAL);
695 break;
700 /* Degenerate case of computed goto with no labels. */
701 if (!for_call && EDGE_COUNT (bb->succs) == 0)
702 make_edge (bb, EXIT_BLOCK_PTR, EDGE_FAKE);
706 /*---------------------------------------------------------------------------
707 Flowgraph analysis
708 ---------------------------------------------------------------------------*/
710 /* Remove unreachable blocks and other miscellaneous clean up work. */
712 bool
713 cleanup_tree_cfg (void)
715 bool something_changed = true;
716 bool retval = false;
718 timevar_push (TV_TREE_CLEANUP_CFG);
720 /* These three transformations can cascade, so we iterate on them until
721 nothing changes. */
722 while (something_changed)
724 something_changed = cleanup_control_flow ();
725 something_changed |= delete_unreachable_blocks ();
726 something_changed |= thread_jumps ();
727 retval |= something_changed;
730 /* Merging the blocks creates no new opportunities for the other
731 optimizations, so do it here. */
732 merge_seq_blocks ();
734 compact_blocks ();
736 #ifdef ENABLE_CHECKING
737 verify_flow_info ();
738 #endif
739 timevar_pop (TV_TREE_CLEANUP_CFG);
740 return retval;
744 /* Cleanup useless labels in basic blocks. This is something we wish
745 to do early because it allows us to group case labels before creating
746 the edges for the CFG, and it speeds up block statement iterators in
747 all passes later on.
748 We only run this pass once, running it more than once is probably not
749 profitable. */
751 /* A map from basic block index to the leading label of that block. */
752 static tree *label_for_bb;
754 /* Callback for for_each_eh_region. Helper for cleanup_dead_labels. */
755 static void
756 update_eh_label (struct eh_region *region)
758 tree old_label = get_eh_region_tree_label (region);
759 if (old_label)
761 tree new_label;
762 basic_block bb = label_to_block (old_label);
764 /* ??? After optimizing, there may be EH regions with labels
765 that have already been removed from the function body, so
766 there is no basic block for them. */
767 if (! bb)
768 return;
770 new_label = label_for_bb[bb->index];
771 set_eh_region_tree_label (region, new_label);
775 /* Given LABEL return the first label in the same basic block. */
776 static tree
777 main_block_label (tree label)
779 basic_block bb = label_to_block (label);
781 /* label_to_block possibly inserted undefined label into the chain. */
782 if (!label_for_bb[bb->index])
783 label_for_bb[bb->index] = label;
784 return label_for_bb[bb->index];
787 /* Cleanup redundant labels. This is a three-steo process:
788 1) Find the leading label for each block.
789 2) Redirect all references to labels to the leading labels.
790 3) Cleanup all useless labels. */
792 void
793 cleanup_dead_labels (void)
795 basic_block bb;
796 label_for_bb = xcalloc (last_basic_block, sizeof (tree));
798 /* Find a suitable label for each block. We use the first user-defined
799 label is there is one, or otherwise just the first label we see. */
800 FOR_EACH_BB (bb)
802 block_stmt_iterator i;
804 for (i = bsi_start (bb); !bsi_end_p (i); bsi_next (&i))
806 tree label, stmt = bsi_stmt (i);
808 if (TREE_CODE (stmt) != LABEL_EXPR)
809 break;
811 label = LABEL_EXPR_LABEL (stmt);
813 /* If we have not yet seen a label for the current block,
814 remember this one and see if there are more labels. */
815 if (! label_for_bb[bb->index])
817 label_for_bb[bb->index] = label;
818 continue;
821 /* If we did see a label for the current block already, but it
822 is an artificially created label, replace it if the current
823 label is a user defined label. */
824 if (! DECL_ARTIFICIAL (label)
825 && DECL_ARTIFICIAL (label_for_bb[bb->index]))
827 label_for_bb[bb->index] = label;
828 break;
833 /* Now redirect all jumps/branches to the selected label.
834 First do so for each block ending in a control statement. */
835 FOR_EACH_BB (bb)
837 tree stmt = last_stmt (bb);
838 if (!stmt)
839 continue;
841 switch (TREE_CODE (stmt))
843 case COND_EXPR:
845 tree true_branch, false_branch;
847 true_branch = COND_EXPR_THEN (stmt);
848 false_branch = COND_EXPR_ELSE (stmt);
850 GOTO_DESTINATION (true_branch)
851 = main_block_label (GOTO_DESTINATION (true_branch));
852 GOTO_DESTINATION (false_branch)
853 = main_block_label (GOTO_DESTINATION (false_branch));
855 break;
858 case SWITCH_EXPR:
860 size_t i;
861 tree vec = SWITCH_LABELS (stmt);
862 size_t n = TREE_VEC_LENGTH (vec);
864 /* Replace all destination labels. */
865 for (i = 0; i < n; ++i)
866 CASE_LABEL (TREE_VEC_ELT (vec, i))
867 = main_block_label (CASE_LABEL (TREE_VEC_ELT (vec, i)));
869 break;
872 /* We have to handle GOTO_EXPRs until they're removed, and we don't
873 remove them until after we've created the CFG edges. */
874 case GOTO_EXPR:
875 if (! computed_goto_p (stmt))
877 GOTO_DESTINATION (stmt)
878 = main_block_label (GOTO_DESTINATION (stmt));
879 break;
882 default:
883 break;
887 for_each_eh_region (update_eh_label);
889 /* Finally, purge dead labels. All user-defined labels and labels that
890 can be the target of non-local gotos are preserved. */
891 FOR_EACH_BB (bb)
893 block_stmt_iterator i;
894 tree label_for_this_bb = label_for_bb[bb->index];
896 if (! label_for_this_bb)
897 continue;
899 for (i = bsi_start (bb); !bsi_end_p (i); )
901 tree label, stmt = bsi_stmt (i);
903 if (TREE_CODE (stmt) != LABEL_EXPR)
904 break;
906 label = LABEL_EXPR_LABEL (stmt);
908 if (label == label_for_this_bb
909 || ! DECL_ARTIFICIAL (label)
910 || DECL_NONLOCAL (label))
911 bsi_next (&i);
912 else
913 bsi_remove (&i);
917 free (label_for_bb);
920 /* Look for blocks ending in a multiway branch (a SWITCH_EXPR in GIMPLE),
921 and scan the sorted vector of cases. Combine the ones jumping to the
922 same label.
923 Eg. three separate entries 1: 2: 3: become one entry 1..3: */
925 void
926 group_case_labels (void)
928 basic_block bb;
930 FOR_EACH_BB (bb)
932 tree stmt = last_stmt (bb);
933 if (stmt && TREE_CODE (stmt) == SWITCH_EXPR)
935 tree labels = SWITCH_LABELS (stmt);
936 int old_size = TREE_VEC_LENGTH (labels);
937 int i, j, new_size = old_size;
938 tree default_label = TREE_VEC_ELT (labels, old_size - 1);
940 /* Look for possible opportunities to merge cases.
941 Ignore the last element of the label vector because it
942 must be the default case. */
943 i = 0;
944 while (i < old_size - 2)
946 tree base_case, base_label, base_high, type;
947 base_case = TREE_VEC_ELT (labels, i);
949 gcc_assert (base_case);
950 base_label = CASE_LABEL (base_case);
952 /* Discard cases that have the same destination as the
953 default case. */
954 if (base_label == default_label)
956 TREE_VEC_ELT (labels, i) = NULL_TREE;
957 i++;
958 continue;
961 type = TREE_TYPE (CASE_LOW (base_case));
962 base_high = CASE_HIGH (base_case) ?
963 CASE_HIGH (base_case) : CASE_LOW (base_case);
965 /* Try to merge case labels. Break out when we reach the end
966 of the label vector or when we cannot merge the next case
967 label with the current one. */
968 while (i < old_size - 2)
970 tree merge_case = TREE_VEC_ELT (labels, ++i);
971 tree merge_label = CASE_LABEL (merge_case);
972 tree t = int_const_binop (PLUS_EXPR, base_high,
973 integer_one_node, 1);
975 /* Merge the cases if they jump to the same place,
976 and their ranges are consecutive. */
977 if (merge_label == base_label
978 && tree_int_cst_equal (CASE_LOW (merge_case), t))
980 base_high = CASE_HIGH (merge_case) ?
981 CASE_HIGH (merge_case) : CASE_LOW (merge_case);
982 CASE_HIGH (base_case) = base_high;
983 TREE_VEC_ELT (labels, i) = NULL_TREE;
984 new_size--;
986 else
987 break;
991 /* Compress the case labels in the label vector, and adjust the
992 length of the vector. */
993 for (i = 0, j = 0; i < new_size; i++)
995 while (! TREE_VEC_ELT (labels, j))
996 j++;
997 TREE_VEC_ELT (labels, i) = TREE_VEC_ELT (labels, j++);
999 TREE_VEC_LENGTH (labels) = new_size;
1004 /* Checks whether we can merge block B into block A. */
1006 static bool
1007 tree_can_merge_blocks_p (basic_block a, basic_block b)
1009 tree stmt;
1010 block_stmt_iterator bsi;
1012 if (EDGE_COUNT (a->succs) != 1)
1013 return false;
1015 if (EDGE_SUCC (a, 0)->flags & EDGE_ABNORMAL)
1016 return false;
1018 if (EDGE_SUCC (a, 0)->dest != b)
1019 return false;
1021 if (b == EXIT_BLOCK_PTR)
1022 return false;
1024 if (EDGE_COUNT (b->preds) > 1)
1025 return false;
1027 /* If A ends by a statement causing exceptions or something similar, we
1028 cannot merge the blocks. */
1029 stmt = last_stmt (a);
1030 if (stmt && stmt_ends_bb_p (stmt))
1031 return false;
1033 /* Do not allow a block with only a non-local label to be merged. */
1034 if (stmt && TREE_CODE (stmt) == LABEL_EXPR
1035 && DECL_NONLOCAL (LABEL_EXPR_LABEL (stmt)))
1036 return false;
1038 /* There may be no phi nodes at the start of b. Most of these degenerate
1039 phi nodes should be cleaned up by kill_redundant_phi_nodes. */
1040 if (phi_nodes (b))
1041 return false;
1043 /* Do not remove user labels. */
1044 for (bsi = bsi_start (b); !bsi_end_p (bsi); bsi_next (&bsi))
1046 stmt = bsi_stmt (bsi);
1047 if (TREE_CODE (stmt) != LABEL_EXPR)
1048 break;
1049 if (!DECL_ARTIFICIAL (LABEL_EXPR_LABEL (stmt)))
1050 return false;
1053 return true;
1057 /* Merge block B into block A. */
1059 static void
1060 tree_merge_blocks (basic_block a, basic_block b)
1062 block_stmt_iterator bsi;
1063 tree_stmt_iterator last;
1065 if (dump_file)
1066 fprintf (dump_file, "Merging blocks %d and %d\n", a->index, b->index);
1068 /* Ensure that B follows A. */
1069 move_block_after (b, a);
1071 gcc_assert (EDGE_SUCC (a, 0)->flags & EDGE_FALLTHRU);
1072 gcc_assert (!last_stmt (a) || !stmt_ends_bb_p (last_stmt (a)));
1074 /* Remove labels from B and set bb_for_stmt to A for other statements. */
1075 for (bsi = bsi_start (b); !bsi_end_p (bsi);)
1077 if (TREE_CODE (bsi_stmt (bsi)) == LABEL_EXPR)
1078 bsi_remove (&bsi);
1079 else
1081 set_bb_for_stmt (bsi_stmt (bsi), a);
1082 bsi_next (&bsi);
1086 /* Merge the chains. */
1087 last = tsi_last (a->stmt_list);
1088 tsi_link_after (&last, b->stmt_list, TSI_NEW_STMT);
1089 b->stmt_list = NULL;
1093 /* Walk the function tree removing unnecessary statements.
1095 * Empty statement nodes are removed
1097 * Unnecessary TRY_FINALLY and TRY_CATCH blocks are removed
1099 * Unnecessary COND_EXPRs are removed
1101 * Some unnecessary BIND_EXPRs are removed
1103 Clearly more work could be done. The trick is doing the analysis
1104 and removal fast enough to be a net improvement in compile times.
1106 Note that when we remove a control structure such as a COND_EXPR
1107 BIND_EXPR, or TRY block, we will need to repeat this optimization pass
1108 to ensure we eliminate all the useless code. */
1110 struct rus_data
1112 tree *last_goto;
1113 bool repeat;
1114 bool may_throw;
1115 bool may_branch;
1116 bool has_label;
1119 static void remove_useless_stmts_1 (tree *, struct rus_data *);
1121 static bool
1122 remove_useless_stmts_warn_notreached (tree stmt)
1124 if (EXPR_HAS_LOCATION (stmt))
1126 location_t loc = EXPR_LOCATION (stmt);
1127 warning ("%Hwill never be executed", &loc);
1128 return true;
1131 switch (TREE_CODE (stmt))
1133 case STATEMENT_LIST:
1135 tree_stmt_iterator i;
1136 for (i = tsi_start (stmt); !tsi_end_p (i); tsi_next (&i))
1137 if (remove_useless_stmts_warn_notreached (tsi_stmt (i)))
1138 return true;
1140 break;
1142 case COND_EXPR:
1143 if (remove_useless_stmts_warn_notreached (COND_EXPR_COND (stmt)))
1144 return true;
1145 if (remove_useless_stmts_warn_notreached (COND_EXPR_THEN (stmt)))
1146 return true;
1147 if (remove_useless_stmts_warn_notreached (COND_EXPR_ELSE (stmt)))
1148 return true;
1149 break;
1151 case TRY_FINALLY_EXPR:
1152 case TRY_CATCH_EXPR:
1153 if (remove_useless_stmts_warn_notreached (TREE_OPERAND (stmt, 0)))
1154 return true;
1155 if (remove_useless_stmts_warn_notreached (TREE_OPERAND (stmt, 1)))
1156 return true;
1157 break;
1159 case CATCH_EXPR:
1160 return remove_useless_stmts_warn_notreached (CATCH_BODY (stmt));
1161 case EH_FILTER_EXPR:
1162 return remove_useless_stmts_warn_notreached (EH_FILTER_FAILURE (stmt));
1163 case BIND_EXPR:
1164 return remove_useless_stmts_warn_notreached (BIND_EXPR_BLOCK (stmt));
1166 default:
1167 /* Not a live container. */
1168 break;
1171 return false;
1174 static void
1175 remove_useless_stmts_cond (tree *stmt_p, struct rus_data *data)
1177 tree then_clause, else_clause, cond;
1178 bool save_has_label, then_has_label, else_has_label;
1180 save_has_label = data->has_label;
1181 data->has_label = false;
1182 data->last_goto = NULL;
1184 remove_useless_stmts_1 (&COND_EXPR_THEN (*stmt_p), data);
1186 then_has_label = data->has_label;
1187 data->has_label = false;
1188 data->last_goto = NULL;
1190 remove_useless_stmts_1 (&COND_EXPR_ELSE (*stmt_p), data);
1192 else_has_label = data->has_label;
1193 data->has_label = save_has_label | then_has_label | else_has_label;
1195 fold_stmt (stmt_p);
1196 then_clause = COND_EXPR_THEN (*stmt_p);
1197 else_clause = COND_EXPR_ELSE (*stmt_p);
1198 cond = COND_EXPR_COND (*stmt_p);
1200 /* If neither arm does anything at all, we can remove the whole IF. */
1201 if (!TREE_SIDE_EFFECTS (then_clause) && !TREE_SIDE_EFFECTS (else_clause))
1203 *stmt_p = build_empty_stmt ();
1204 data->repeat = true;
1207 /* If there are no reachable statements in an arm, then we can
1208 zap the entire conditional. */
1209 else if (integer_nonzerop (cond) && !else_has_label)
1211 if (warn_notreached)
1212 remove_useless_stmts_warn_notreached (else_clause);
1213 *stmt_p = then_clause;
1214 data->repeat = true;
1216 else if (integer_zerop (cond) && !then_has_label)
1218 if (warn_notreached)
1219 remove_useless_stmts_warn_notreached (then_clause);
1220 *stmt_p = else_clause;
1221 data->repeat = true;
1224 /* Check a couple of simple things on then/else with single stmts. */
1225 else
1227 tree then_stmt = expr_only (then_clause);
1228 tree else_stmt = expr_only (else_clause);
1230 /* Notice branches to a common destination. */
1231 if (then_stmt && else_stmt
1232 && TREE_CODE (then_stmt) == GOTO_EXPR
1233 && TREE_CODE (else_stmt) == GOTO_EXPR
1234 && (GOTO_DESTINATION (then_stmt) == GOTO_DESTINATION (else_stmt)))
1236 *stmt_p = then_stmt;
1237 data->repeat = true;
1240 /* If the THEN/ELSE clause merely assigns a value to a variable or
1241 parameter which is already known to contain that value, then
1242 remove the useless THEN/ELSE clause. */
1243 else if (TREE_CODE (cond) == VAR_DECL || TREE_CODE (cond) == PARM_DECL)
1245 if (else_stmt
1246 && TREE_CODE (else_stmt) == MODIFY_EXPR
1247 && TREE_OPERAND (else_stmt, 0) == cond
1248 && integer_zerop (TREE_OPERAND (else_stmt, 1)))
1249 COND_EXPR_ELSE (*stmt_p) = alloc_stmt_list ();
1251 else if ((TREE_CODE (cond) == EQ_EXPR || TREE_CODE (cond) == NE_EXPR)
1252 && (TREE_CODE (TREE_OPERAND (cond, 0)) == VAR_DECL
1253 || TREE_CODE (TREE_OPERAND (cond, 0)) == PARM_DECL)
1254 && TREE_CONSTANT (TREE_OPERAND (cond, 1)))
1256 tree stmt = (TREE_CODE (cond) == EQ_EXPR
1257 ? then_stmt : else_stmt);
1258 tree *location = (TREE_CODE (cond) == EQ_EXPR
1259 ? &COND_EXPR_THEN (*stmt_p)
1260 : &COND_EXPR_ELSE (*stmt_p));
1262 if (stmt
1263 && TREE_CODE (stmt) == MODIFY_EXPR
1264 && TREE_OPERAND (stmt, 0) == TREE_OPERAND (cond, 0)
1265 && TREE_OPERAND (stmt, 1) == TREE_OPERAND (cond, 1))
1266 *location = alloc_stmt_list ();
1270 /* Protect GOTOs in the arm of COND_EXPRs from being removed. They
1271 would be re-introduced during lowering. */
1272 data->last_goto = NULL;
1276 static void
1277 remove_useless_stmts_tf (tree *stmt_p, struct rus_data *data)
1279 bool save_may_branch, save_may_throw;
1280 bool this_may_branch, this_may_throw;
1282 /* Collect may_branch and may_throw information for the body only. */
1283 save_may_branch = data->may_branch;
1284 save_may_throw = data->may_throw;
1285 data->may_branch = false;
1286 data->may_throw = false;
1287 data->last_goto = NULL;
1289 remove_useless_stmts_1 (&TREE_OPERAND (*stmt_p, 0), data);
1291 this_may_branch = data->may_branch;
1292 this_may_throw = data->may_throw;
1293 data->may_branch |= save_may_branch;
1294 data->may_throw |= save_may_throw;
1295 data->last_goto = NULL;
1297 remove_useless_stmts_1 (&TREE_OPERAND (*stmt_p, 1), data);
1299 /* If the body is empty, then we can emit the FINALLY block without
1300 the enclosing TRY_FINALLY_EXPR. */
1301 if (!TREE_SIDE_EFFECTS (TREE_OPERAND (*stmt_p, 0)))
1303 *stmt_p = TREE_OPERAND (*stmt_p, 1);
1304 data->repeat = true;
1307 /* If the handler is empty, then we can emit the TRY block without
1308 the enclosing TRY_FINALLY_EXPR. */
1309 else if (!TREE_SIDE_EFFECTS (TREE_OPERAND (*stmt_p, 1)))
1311 *stmt_p = TREE_OPERAND (*stmt_p, 0);
1312 data->repeat = true;
1315 /* If the body neither throws, nor branches, then we can safely
1316 string the TRY and FINALLY blocks together. */
1317 else if (!this_may_branch && !this_may_throw)
1319 tree stmt = *stmt_p;
1320 *stmt_p = TREE_OPERAND (stmt, 0);
1321 append_to_statement_list (TREE_OPERAND (stmt, 1), stmt_p);
1322 data->repeat = true;
1327 static void
1328 remove_useless_stmts_tc (tree *stmt_p, struct rus_data *data)
1330 bool save_may_throw, this_may_throw;
1331 tree_stmt_iterator i;
1332 tree stmt;
1334 /* Collect may_throw information for the body only. */
1335 save_may_throw = data->may_throw;
1336 data->may_throw = false;
1337 data->last_goto = NULL;
1339 remove_useless_stmts_1 (&TREE_OPERAND (*stmt_p, 0), data);
1341 this_may_throw = data->may_throw;
1342 data->may_throw = save_may_throw;
1344 /* If the body cannot throw, then we can drop the entire TRY_CATCH_EXPR. */
1345 if (!this_may_throw)
1347 if (warn_notreached)
1348 remove_useless_stmts_warn_notreached (TREE_OPERAND (*stmt_p, 1));
1349 *stmt_p = TREE_OPERAND (*stmt_p, 0);
1350 data->repeat = true;
1351 return;
1354 /* Process the catch clause specially. We may be able to tell that
1355 no exceptions propagate past this point. */
1357 this_may_throw = true;
1358 i = tsi_start (TREE_OPERAND (*stmt_p, 1));
1359 stmt = tsi_stmt (i);
1360 data->last_goto = NULL;
1362 switch (TREE_CODE (stmt))
1364 case CATCH_EXPR:
1365 for (; !tsi_end_p (i); tsi_next (&i))
1367 stmt = tsi_stmt (i);
1368 /* If we catch all exceptions, then the body does not
1369 propagate exceptions past this point. */
1370 if (CATCH_TYPES (stmt) == NULL)
1371 this_may_throw = false;
1372 data->last_goto = NULL;
1373 remove_useless_stmts_1 (&CATCH_BODY (stmt), data);
1375 break;
1377 case EH_FILTER_EXPR:
1378 if (EH_FILTER_MUST_NOT_THROW (stmt))
1379 this_may_throw = false;
1380 else if (EH_FILTER_TYPES (stmt) == NULL)
1381 this_may_throw = false;
1382 remove_useless_stmts_1 (&EH_FILTER_FAILURE (stmt), data);
1383 break;
1385 default:
1386 /* Otherwise this is a cleanup. */
1387 remove_useless_stmts_1 (&TREE_OPERAND (*stmt_p, 1), data);
1389 /* If the cleanup is empty, then we can emit the TRY block without
1390 the enclosing TRY_CATCH_EXPR. */
1391 if (!TREE_SIDE_EFFECTS (TREE_OPERAND (*stmt_p, 1)))
1393 *stmt_p = TREE_OPERAND (*stmt_p, 0);
1394 data->repeat = true;
1396 break;
1398 data->may_throw |= this_may_throw;
1402 static void
1403 remove_useless_stmts_bind (tree *stmt_p, struct rus_data *data)
1405 tree block;
1407 /* First remove anything underneath the BIND_EXPR. */
1408 remove_useless_stmts_1 (&BIND_EXPR_BODY (*stmt_p), data);
1410 /* If the BIND_EXPR has no variables, then we can pull everything
1411 up one level and remove the BIND_EXPR, unless this is the toplevel
1412 BIND_EXPR for the current function or an inlined function.
1414 When this situation occurs we will want to apply this
1415 optimization again. */
1416 block = BIND_EXPR_BLOCK (*stmt_p);
1417 if (BIND_EXPR_VARS (*stmt_p) == NULL_TREE
1418 && *stmt_p != DECL_SAVED_TREE (current_function_decl)
1419 && (! block
1420 || ! BLOCK_ABSTRACT_ORIGIN (block)
1421 || (TREE_CODE (BLOCK_ABSTRACT_ORIGIN (block))
1422 != FUNCTION_DECL)))
1424 *stmt_p = BIND_EXPR_BODY (*stmt_p);
1425 data->repeat = true;
1430 static void
1431 remove_useless_stmts_goto (tree *stmt_p, struct rus_data *data)
1433 tree dest = GOTO_DESTINATION (*stmt_p);
1435 data->may_branch = true;
1436 data->last_goto = NULL;
1438 /* Record the last goto expr, so that we can delete it if unnecessary. */
1439 if (TREE_CODE (dest) == LABEL_DECL)
1440 data->last_goto = stmt_p;
1444 static void
1445 remove_useless_stmts_label (tree *stmt_p, struct rus_data *data)
1447 tree label = LABEL_EXPR_LABEL (*stmt_p);
1449 data->has_label = true;
1451 /* We do want to jump across non-local label receiver code. */
1452 if (DECL_NONLOCAL (label))
1453 data->last_goto = NULL;
1455 else if (data->last_goto && GOTO_DESTINATION (*data->last_goto) == label)
1457 *data->last_goto = build_empty_stmt ();
1458 data->repeat = true;
1461 /* ??? Add something here to delete unused labels. */
1465 /* If the function is "const" or "pure", then clear TREE_SIDE_EFFECTS on its
1466 decl. This allows us to eliminate redundant or useless
1467 calls to "const" functions.
1469 Gimplifier already does the same operation, but we may notice functions
1470 being const and pure once their calls has been gimplified, so we need
1471 to update the flag. */
1473 static void
1474 update_call_expr_flags (tree call)
1476 tree decl = get_callee_fndecl (call);
1477 if (!decl)
1478 return;
1479 if (call_expr_flags (call) & (ECF_CONST | ECF_PURE))
1480 TREE_SIDE_EFFECTS (call) = 0;
1481 if (TREE_NOTHROW (decl))
1482 TREE_NOTHROW (call) = 1;
1486 /* T is CALL_EXPR. Set current_function_calls_* flags. */
1488 void
1489 notice_special_calls (tree t)
1491 int flags = call_expr_flags (t);
1493 if (flags & ECF_MAY_BE_ALLOCA)
1494 current_function_calls_alloca = true;
1495 if (flags & ECF_RETURNS_TWICE)
1496 current_function_calls_setjmp = true;
1500 /* Clear flags set by notice_special_calls. Used by dead code removal
1501 to update the flags. */
1503 void
1504 clear_special_calls (void)
1506 current_function_calls_alloca = false;
1507 current_function_calls_setjmp = false;
1511 static void
1512 remove_useless_stmts_1 (tree *tp, struct rus_data *data)
1514 tree t = *tp, op;
1516 switch (TREE_CODE (t))
1518 case COND_EXPR:
1519 remove_useless_stmts_cond (tp, data);
1520 break;
1522 case TRY_FINALLY_EXPR:
1523 remove_useless_stmts_tf (tp, data);
1524 break;
1526 case TRY_CATCH_EXPR:
1527 remove_useless_stmts_tc (tp, data);
1528 break;
1530 case BIND_EXPR:
1531 remove_useless_stmts_bind (tp, data);
1532 break;
1534 case GOTO_EXPR:
1535 remove_useless_stmts_goto (tp, data);
1536 break;
1538 case LABEL_EXPR:
1539 remove_useless_stmts_label (tp, data);
1540 break;
1542 case RETURN_EXPR:
1543 fold_stmt (tp);
1544 data->last_goto = NULL;
1545 data->may_branch = true;
1546 break;
1548 case CALL_EXPR:
1549 fold_stmt (tp);
1550 data->last_goto = NULL;
1551 notice_special_calls (t);
1552 update_call_expr_flags (t);
1553 if (tree_could_throw_p (t))
1554 data->may_throw = true;
1555 break;
1557 case MODIFY_EXPR:
1558 data->last_goto = NULL;
1559 fold_stmt (tp);
1560 op = get_call_expr_in (t);
1561 if (op)
1563 update_call_expr_flags (op);
1564 notice_special_calls (op);
1566 if (tree_could_throw_p (t))
1567 data->may_throw = true;
1568 break;
1570 case STATEMENT_LIST:
1572 tree_stmt_iterator i = tsi_start (t);
1573 while (!tsi_end_p (i))
1575 t = tsi_stmt (i);
1576 if (IS_EMPTY_STMT (t))
1578 tsi_delink (&i);
1579 continue;
1582 remove_useless_stmts_1 (tsi_stmt_ptr (i), data);
1584 t = tsi_stmt (i);
1585 if (TREE_CODE (t) == STATEMENT_LIST)
1587 tsi_link_before (&i, t, TSI_SAME_STMT);
1588 tsi_delink (&i);
1590 else
1591 tsi_next (&i);
1594 break;
1595 case SWITCH_EXPR:
1596 fold_stmt (tp);
1597 data->last_goto = NULL;
1598 break;
1600 default:
1601 data->last_goto = NULL;
1602 break;
1606 static void
1607 remove_useless_stmts (void)
1609 struct rus_data data;
1611 clear_special_calls ();
1615 memset (&data, 0, sizeof (data));
1616 remove_useless_stmts_1 (&DECL_SAVED_TREE (current_function_decl), &data);
1618 while (data.repeat);
1622 struct tree_opt_pass pass_remove_useless_stmts =
1624 "useless", /* name */
1625 NULL, /* gate */
1626 remove_useless_stmts, /* execute */
1627 NULL, /* sub */
1628 NULL, /* next */
1629 0, /* static_pass_number */
1630 0, /* tv_id */
1631 PROP_gimple_any, /* properties_required */
1632 0, /* properties_provided */
1633 0, /* properties_destroyed */
1634 0, /* todo_flags_start */
1635 TODO_dump_func, /* todo_flags_finish */
1636 0 /* letter */
1640 /* Remove obviously useless statements in basic block BB. */
1642 static void
1643 cfg_remove_useless_stmts_bb (basic_block bb)
1645 block_stmt_iterator bsi;
1646 tree stmt = NULL_TREE;
1647 tree cond, var = NULL_TREE, val = NULL_TREE;
1648 struct var_ann_d *ann;
1650 /* Check whether we come here from a condition, and if so, get the
1651 condition. */
1652 if (EDGE_COUNT (bb->preds) != 1
1653 || !(EDGE_PRED (bb, 0)->flags & (EDGE_TRUE_VALUE | EDGE_FALSE_VALUE)))
1654 return;
1656 cond = COND_EXPR_COND (last_stmt (EDGE_PRED (bb, 0)->src));
1658 if (TREE_CODE (cond) == VAR_DECL || TREE_CODE (cond) == PARM_DECL)
1660 var = cond;
1661 val = (EDGE_PRED (bb, 0)->flags & EDGE_FALSE_VALUE
1662 ? boolean_false_node : boolean_true_node);
1664 else if (TREE_CODE (cond) == TRUTH_NOT_EXPR
1665 && (TREE_CODE (TREE_OPERAND (cond, 0)) == VAR_DECL
1666 || TREE_CODE (TREE_OPERAND (cond, 0)) == PARM_DECL))
1668 var = TREE_OPERAND (cond, 0);
1669 val = (EDGE_PRED (bb, 0)->flags & EDGE_FALSE_VALUE
1670 ? boolean_true_node : boolean_false_node);
1672 else
1674 if (EDGE_PRED (bb, 0)->flags & EDGE_FALSE_VALUE)
1675 cond = invert_truthvalue (cond);
1676 if (TREE_CODE (cond) == EQ_EXPR
1677 && (TREE_CODE (TREE_OPERAND (cond, 0)) == VAR_DECL
1678 || TREE_CODE (TREE_OPERAND (cond, 0)) == PARM_DECL)
1679 && (TREE_CODE (TREE_OPERAND (cond, 1)) == VAR_DECL
1680 || TREE_CODE (TREE_OPERAND (cond, 1)) == PARM_DECL
1681 || TREE_CONSTANT (TREE_OPERAND (cond, 1))))
1683 var = TREE_OPERAND (cond, 0);
1684 val = TREE_OPERAND (cond, 1);
1686 else
1687 return;
1690 /* Only work for normal local variables. */
1691 ann = var_ann (var);
1692 if (!ann
1693 || ann->may_aliases
1694 || TREE_ADDRESSABLE (var))
1695 return;
1697 if (! TREE_CONSTANT (val))
1699 ann = var_ann (val);
1700 if (!ann
1701 || ann->may_aliases
1702 || TREE_ADDRESSABLE (val))
1703 return;
1706 /* Ignore floating point variables, since comparison behaves weird for
1707 them. */
1708 if (FLOAT_TYPE_P (TREE_TYPE (var)))
1709 return;
1711 for (bsi = bsi_start (bb); !bsi_end_p (bsi);)
1713 stmt = bsi_stmt (bsi);
1715 /* If the THEN/ELSE clause merely assigns a value to a variable/parameter
1716 which is already known to contain that value, then remove the useless
1717 THEN/ELSE clause. */
1718 if (TREE_CODE (stmt) == MODIFY_EXPR
1719 && TREE_OPERAND (stmt, 0) == var
1720 && operand_equal_p (val, TREE_OPERAND (stmt, 1), 0))
1722 bsi_remove (&bsi);
1723 continue;
1726 /* Invalidate the var if we encounter something that could modify it.
1727 Likewise for the value it was previously set to. Note that we only
1728 consider values that are either a VAR_DECL or PARM_DECL so we
1729 can test for conflict very simply. */
1730 if (TREE_CODE (stmt) == ASM_EXPR
1731 || (TREE_CODE (stmt) == MODIFY_EXPR
1732 && (TREE_OPERAND (stmt, 0) == var
1733 || TREE_OPERAND (stmt, 0) == val)))
1734 return;
1736 bsi_next (&bsi);
1741 /* A CFG-aware version of remove_useless_stmts. */
1743 void
1744 cfg_remove_useless_stmts (void)
1746 basic_block bb;
1748 #ifdef ENABLE_CHECKING
1749 verify_flow_info ();
1750 #endif
1752 FOR_EACH_BB (bb)
1754 cfg_remove_useless_stmts_bb (bb);
1759 /* Remove PHI nodes associated with basic block BB and all edges out of BB. */
1761 static void
1762 remove_phi_nodes_and_edges_for_unreachable_block (basic_block bb)
1764 tree phi;
1766 /* Since this block is no longer reachable, we can just delete all
1767 of its PHI nodes. */
1768 phi = phi_nodes (bb);
1769 while (phi)
1771 tree next = PHI_CHAIN (phi);
1772 remove_phi_node (phi, NULL_TREE, bb);
1773 phi = next;
1776 /* Remove edges to BB's successors. */
1777 while (EDGE_COUNT (bb->succs) > 0)
1778 ssa_remove_edge (EDGE_SUCC (bb, 0));
1782 /* Remove statements of basic block BB. */
1784 static void
1785 remove_bb (basic_block bb)
1787 block_stmt_iterator i;
1788 source_locus loc = 0;
1790 if (dump_file)
1792 fprintf (dump_file, "Removing basic block %d\n", bb->index);
1793 if (dump_flags & TDF_DETAILS)
1795 dump_bb (bb, dump_file, 0);
1796 fprintf (dump_file, "\n");
1800 /* Remove all the instructions in the block. */
1801 for (i = bsi_start (bb); !bsi_end_p (i); bsi_remove (&i))
1803 tree stmt = bsi_stmt (i);
1804 release_defs (stmt);
1806 set_bb_for_stmt (stmt, NULL);
1808 /* Don't warn for removed gotos. Gotos are often removed due to
1809 jump threading, thus resulting in bogus warnings. Not great,
1810 since this way we lose warnings for gotos in the original
1811 program that are indeed unreachable. */
1812 if (TREE_CODE (stmt) != GOTO_EXPR && EXPR_HAS_LOCATION (stmt) && !loc)
1813 #ifdef USE_MAPPED_LOCATION
1814 loc = EXPR_LOCATION (stmt);
1815 #else
1816 loc = EXPR_LOCUS (stmt);
1817 #endif
1820 /* If requested, give a warning that the first statement in the
1821 block is unreachable. We walk statements backwards in the
1822 loop above, so the last statement we process is the first statement
1823 in the block. */
1824 if (warn_notreached && loc)
1825 #ifdef USE_MAPPED_LOCATION
1826 warning ("%Hwill never be executed", &loc);
1827 #else
1828 warning ("%Hwill never be executed", loc);
1829 #endif
1831 remove_phi_nodes_and_edges_for_unreachable_block (bb);
1835 /* Examine BB to determine if it is a forwarding block (a block which only
1836 transfers control to a new destination). If BB is a forwarding block,
1837 then return the edge leading to the ultimate destination. */
1839 edge
1840 tree_block_forwards_to (basic_block bb)
1842 block_stmt_iterator bsi;
1843 bb_ann_t ann = bb_ann (bb);
1844 tree stmt;
1846 /* If this block is not forwardable, then avoid useless work. */
1847 if (! ann->forwardable)
1848 return NULL;
1850 /* Set this block to not be forwardable. This prevents infinite loops since
1851 any block currently under examination is considered non-forwardable. */
1852 ann->forwardable = 0;
1854 /* No forwarding is possible if this block is a special block (ENTRY/EXIT),
1855 this block has more than one successor, this block's single successor is
1856 reached via an abnormal edge, this block has phi nodes, or this block's
1857 single successor has phi nodes. */
1858 if (bb == EXIT_BLOCK_PTR
1859 || bb == ENTRY_BLOCK_PTR
1860 || EDGE_COUNT (bb->succs) != 1
1861 || EDGE_SUCC (bb, 0)->dest == EXIT_BLOCK_PTR
1862 || (EDGE_SUCC (bb, 0)->flags & EDGE_ABNORMAL) != 0
1863 || phi_nodes (bb)
1864 || phi_nodes (EDGE_SUCC (bb, 0)->dest))
1865 return NULL;
1867 /* Walk past any labels at the start of this block. */
1868 for (bsi = bsi_start (bb); !bsi_end_p (bsi); bsi_next (&bsi))
1870 stmt = bsi_stmt (bsi);
1871 if (TREE_CODE (stmt) != LABEL_EXPR)
1872 break;
1875 /* If we reached the end of this block we may be able to optimize this
1876 case. */
1877 if (bsi_end_p (bsi))
1879 edge dest;
1881 /* Recursive call to pick up chains of forwarding blocks. */
1882 dest = tree_block_forwards_to (EDGE_SUCC (bb, 0)->dest);
1884 /* If none found, we forward to bb->succs[0] at minimum. */
1885 if (!dest)
1886 dest = EDGE_SUCC (bb, 0);
1888 ann->forwardable = 1;
1889 return dest;
1892 /* No forwarding possible. */
1893 return NULL;
1897 /* Try to remove superfluous control structures. */
1899 static bool
1900 cleanup_control_flow (void)
1902 basic_block bb;
1903 block_stmt_iterator bsi;
1904 bool retval = false;
1905 tree stmt;
1907 FOR_EACH_BB (bb)
1909 bsi = bsi_last (bb);
1911 if (bsi_end_p (bsi))
1912 continue;
1914 stmt = bsi_stmt (bsi);
1915 if (TREE_CODE (stmt) == COND_EXPR
1916 || TREE_CODE (stmt) == SWITCH_EXPR)
1917 retval |= cleanup_control_expr_graph (bb, bsi);
1919 return retval;
1923 /* Disconnect an unreachable block in the control expression starting
1924 at block BB. */
1926 static bool
1927 cleanup_control_expr_graph (basic_block bb, block_stmt_iterator bsi)
1929 edge taken_edge;
1930 bool retval = false;
1931 tree expr = bsi_stmt (bsi), val;
1933 if (EDGE_COUNT (bb->succs) > 1)
1935 edge e;
1936 unsigned ix;
1938 switch (TREE_CODE (expr))
1940 case COND_EXPR:
1941 val = COND_EXPR_COND (expr);
1942 break;
1944 case SWITCH_EXPR:
1945 val = SWITCH_COND (expr);
1946 if (TREE_CODE (val) != INTEGER_CST)
1947 return false;
1948 break;
1950 default:
1951 gcc_unreachable ();
1954 taken_edge = find_taken_edge (bb, val);
1955 if (!taken_edge)
1956 return false;
1958 /* Remove all the edges except the one that is always executed. */
1959 for (ix = 0; VEC_iterate (edge, bb->succs, ix, e); )
1961 if (e != taken_edge)
1963 taken_edge->probability += e->probability;
1964 taken_edge->count += e->count;
1965 ssa_remove_edge (e);
1966 retval = true;
1968 else
1969 ix++;
1972 if (taken_edge->probability > REG_BR_PROB_BASE)
1973 taken_edge->probability = REG_BR_PROB_BASE;
1975 else
1976 taken_edge = EDGE_SUCC (bb, 0);
1978 bsi_remove (&bsi);
1979 taken_edge->flags = EDGE_FALLTHRU;
1981 /* We removed some paths from the cfg. */
1982 if (dom_computed[CDI_DOMINATORS] >= DOM_CONS_OK)
1983 dom_computed[CDI_DOMINATORS] = DOM_CONS_OK;
1985 return retval;
1989 /* Given a control block BB and a predicate VAL, return the edge that
1990 will be taken out of the block. If VAL does not match a unique
1991 edge, NULL is returned. */
1993 edge
1994 find_taken_edge (basic_block bb, tree val)
1996 tree stmt;
1998 stmt = last_stmt (bb);
2000 gcc_assert (stmt);
2001 gcc_assert (is_ctrl_stmt (stmt));
2003 /* If VAL is a predicate of the form N RELOP N, where N is an
2004 SSA_NAME, we can always determine its truth value (except when
2005 doing floating point comparisons that may involve NaNs). */
2006 if (val
2007 && COMPARISON_CLASS_P (val)
2008 && TREE_OPERAND (val, 0) == TREE_OPERAND (val, 1)
2009 && TREE_CODE (TREE_OPERAND (val, 0)) == SSA_NAME
2010 && (TREE_CODE (TREE_TYPE (TREE_OPERAND (val, 0))) != REAL_TYPE
2011 || !HONOR_NANS (TYPE_MODE (TREE_TYPE (TREE_OPERAND (val, 0))))))
2013 enum tree_code code = TREE_CODE (val);
2015 if (code == EQ_EXPR || code == LE_EXPR || code == GE_EXPR)
2016 val = boolean_true_node;
2017 else if (code == LT_EXPR || code == GT_EXPR || code == NE_EXPR)
2018 val = boolean_false_node;
2021 /* If VAL is not a constant, we can't determine which edge might
2022 be taken. */
2023 if (val == NULL || !really_constant_p (val))
2024 return NULL;
2026 if (TREE_CODE (stmt) == COND_EXPR)
2027 return find_taken_edge_cond_expr (bb, val);
2029 if (TREE_CODE (stmt) == SWITCH_EXPR)
2030 return find_taken_edge_switch_expr (bb, val);
2032 return EDGE_SUCC (bb, 0);
2036 /* Given a constant value VAL and the entry block BB to a COND_EXPR
2037 statement, determine which of the two edges will be taken out of the
2038 block. Return NULL if either edge may be taken. */
2040 static edge
2041 find_taken_edge_cond_expr (basic_block bb, tree val)
2043 edge true_edge, false_edge;
2045 extract_true_false_edges_from_block (bb, &true_edge, &false_edge);
2047 /* If both edges of the branch lead to the same basic block, it doesn't
2048 matter which edge is taken. */
2049 if (true_edge->dest == false_edge->dest)
2050 return true_edge;
2052 /* Otherwise, try to determine which branch of the if() will be taken.
2053 If VAL is a constant but it can't be reduced to a 0 or a 1, then
2054 we don't really know which edge will be taken at runtime. This
2055 may happen when comparing addresses (e.g., if (&var1 == 4)). */
2056 if (integer_nonzerop (val))
2057 return true_edge;
2058 else if (integer_zerop (val))
2059 return false_edge;
2060 else
2061 return NULL;
2065 /* Given a constant value VAL and the entry block BB to a SWITCH_EXPR
2066 statement, determine which edge will be taken out of the block. Return
2067 NULL if any edge may be taken. */
2069 static edge
2070 find_taken_edge_switch_expr (basic_block bb, tree val)
2072 tree switch_expr, taken_case;
2073 basic_block dest_bb;
2074 edge e;
2076 if (TREE_CODE (val) != INTEGER_CST)
2077 return NULL;
2079 switch_expr = last_stmt (bb);
2080 taken_case = find_case_label_for_value (switch_expr, val);
2081 dest_bb = label_to_block (CASE_LABEL (taken_case));
2083 e = find_edge (bb, dest_bb);
2084 gcc_assert (e);
2085 return e;
2089 /* Return the CASE_LABEL_EXPR that SWITCH_EXPR will take for VAL.
2090 We can make optimal use here of the fact that the case labels are
2091 sorted: We can do a binary search for a case matching VAL. */
2093 static tree
2094 find_case_label_for_value (tree switch_expr, tree val)
2096 tree vec = SWITCH_LABELS (switch_expr);
2097 size_t low, high, n = TREE_VEC_LENGTH (vec);
2098 tree default_case = TREE_VEC_ELT (vec, n - 1);
2100 for (low = -1, high = n - 1; high - low > 1; )
2102 size_t i = (high + low) / 2;
2103 tree t = TREE_VEC_ELT (vec, i);
2104 int cmp;
2106 /* Cache the result of comparing CASE_LOW and val. */
2107 cmp = tree_int_cst_compare (CASE_LOW (t), val);
2109 if (cmp > 0)
2110 high = i;
2111 else
2112 low = i;
2114 if (CASE_HIGH (t) == NULL)
2116 /* A singe-valued case label. */
2117 if (cmp == 0)
2118 return t;
2120 else
2122 /* A case range. We can only handle integer ranges. */
2123 if (cmp <= 0 && tree_int_cst_compare (CASE_HIGH (t), val) >= 0)
2124 return t;
2128 return default_case;
2132 /* If all the PHI nodes in DEST have alternatives for E1 and E2 and
2133 those alternatives are equal in each of the PHI nodes, then return
2134 true, else return false. */
2136 static bool
2137 phi_alternatives_equal (basic_block dest, edge e1, edge e2)
2139 tree phi, val1, val2;
2140 int n1, n2;
2142 for (phi = phi_nodes (dest); phi; phi = PHI_CHAIN (phi))
2144 n1 = phi_arg_from_edge (phi, e1);
2145 n2 = phi_arg_from_edge (phi, e2);
2147 gcc_assert (n1 >= 0);
2148 gcc_assert (n2 >= 0);
2150 val1 = PHI_ARG_DEF (phi, n1);
2151 val2 = PHI_ARG_DEF (phi, n2);
2153 if (!operand_equal_p (val1, val2, 0))
2154 return false;
2157 return true;
2161 /*---------------------------------------------------------------------------
2162 Debugging functions
2163 ---------------------------------------------------------------------------*/
2165 /* Dump tree-specific information of block BB to file OUTF. */
2167 void
2168 tree_dump_bb (basic_block bb, FILE *outf, int indent)
2170 dump_generic_bb (outf, bb, indent, TDF_VOPS);
2174 /* Dump a basic block on stderr. */
2176 void
2177 debug_tree_bb (basic_block bb)
2179 dump_bb (bb, stderr, 0);
2183 /* Dump basic block with index N on stderr. */
2185 basic_block
2186 debug_tree_bb_n (int n)
2188 debug_tree_bb (BASIC_BLOCK (n));
2189 return BASIC_BLOCK (n);
2193 /* Dump the CFG on stderr.
2195 FLAGS are the same used by the tree dumping functions
2196 (see TDF_* in tree.h). */
2198 void
2199 debug_tree_cfg (int flags)
2201 dump_tree_cfg (stderr, flags);
2205 /* Dump the program showing basic block boundaries on the given FILE.
2207 FLAGS are the same used by the tree dumping functions (see TDF_* in
2208 tree.h). */
2210 void
2211 dump_tree_cfg (FILE *file, int flags)
2213 if (flags & TDF_DETAILS)
2215 const char *funcname
2216 = lang_hooks.decl_printable_name (current_function_decl, 2);
2218 fputc ('\n', file);
2219 fprintf (file, ";; Function %s\n\n", funcname);
2220 fprintf (file, ";; \n%d basic blocks, %d edges, last basic block %d.\n\n",
2221 n_basic_blocks, n_edges, last_basic_block);
2223 brief_dump_cfg (file);
2224 fprintf (file, "\n");
2227 if (flags & TDF_STATS)
2228 dump_cfg_stats (file);
2230 dump_function_to_file (current_function_decl, file, flags | TDF_BLOCKS);
2234 /* Dump CFG statistics on FILE. */
2236 void
2237 dump_cfg_stats (FILE *file)
2239 static long max_num_merged_labels = 0;
2240 unsigned long size, total = 0;
2241 int n_edges;
2242 basic_block bb;
2243 const char * const fmt_str = "%-30s%-13s%12s\n";
2244 const char * const fmt_str_1 = "%-30s%13d%11lu%c\n";
2245 const char * const fmt_str_3 = "%-43s%11lu%c\n";
2246 const char *funcname
2247 = lang_hooks.decl_printable_name (current_function_decl, 2);
2250 fprintf (file, "\nCFG Statistics for %s\n\n", funcname);
2252 fprintf (file, "---------------------------------------------------------\n");
2253 fprintf (file, fmt_str, "", " Number of ", "Memory");
2254 fprintf (file, fmt_str, "", " instances ", "used ");
2255 fprintf (file, "---------------------------------------------------------\n");
2257 size = n_basic_blocks * sizeof (struct basic_block_def);
2258 total += size;
2259 fprintf (file, fmt_str_1, "Basic blocks", n_basic_blocks,
2260 SCALE (size), LABEL (size));
2262 n_edges = 0;
2263 FOR_EACH_BB (bb)
2264 n_edges += EDGE_COUNT (bb->succs);
2265 size = n_edges * sizeof (struct edge_def);
2266 total += size;
2267 fprintf (file, fmt_str_1, "Edges", n_edges, SCALE (size), LABEL (size));
2269 size = n_basic_blocks * sizeof (struct bb_ann_d);
2270 total += size;
2271 fprintf (file, fmt_str_1, "Basic block annotations", n_basic_blocks,
2272 SCALE (size), LABEL (size));
2274 fprintf (file, "---------------------------------------------------------\n");
2275 fprintf (file, fmt_str_3, "Total memory used by CFG data", SCALE (total),
2276 LABEL (total));
2277 fprintf (file, "---------------------------------------------------------\n");
2278 fprintf (file, "\n");
2280 if (cfg_stats.num_merged_labels > max_num_merged_labels)
2281 max_num_merged_labels = cfg_stats.num_merged_labels;
2283 fprintf (file, "Coalesced label blocks: %ld (Max so far: %ld)\n",
2284 cfg_stats.num_merged_labels, max_num_merged_labels);
2286 fprintf (file, "\n");
2290 /* Dump CFG statistics on stderr. Keep extern so that it's always
2291 linked in the final executable. */
2293 void
2294 debug_cfg_stats (void)
2296 dump_cfg_stats (stderr);
2300 /* Dump the flowgraph to a .vcg FILE. */
2302 static void
2303 tree_cfg2vcg (FILE *file)
2305 edge e;
2306 edge_iterator ei;
2307 basic_block bb;
2308 const char *funcname
2309 = lang_hooks.decl_printable_name (current_function_decl, 2);
2311 /* Write the file header. */
2312 fprintf (file, "graph: { title: \"%s\"\n", funcname);
2313 fprintf (file, "node: { title: \"ENTRY\" label: \"ENTRY\" }\n");
2314 fprintf (file, "node: { title: \"EXIT\" label: \"EXIT\" }\n");
2316 /* Write blocks and edges. */
2317 FOR_EACH_EDGE (e, ei, ENTRY_BLOCK_PTR->succs)
2319 fprintf (file, "edge: { sourcename: \"ENTRY\" targetname: \"%d\"",
2320 e->dest->index);
2322 if (e->flags & EDGE_FAKE)
2323 fprintf (file, " linestyle: dotted priority: 10");
2324 else
2325 fprintf (file, " linestyle: solid priority: 100");
2327 fprintf (file, " }\n");
2330 fputc ('\n', file);
2332 FOR_EACH_BB (bb)
2334 enum tree_code head_code, end_code;
2335 const char *head_name, *end_name;
2336 int head_line = 0;
2337 int end_line = 0;
2338 tree first = first_stmt (bb);
2339 tree last = last_stmt (bb);
2341 if (first)
2343 head_code = TREE_CODE (first);
2344 head_name = tree_code_name[head_code];
2345 head_line = get_lineno (first);
2347 else
2348 head_name = "no-statement";
2350 if (last)
2352 end_code = TREE_CODE (last);
2353 end_name = tree_code_name[end_code];
2354 end_line = get_lineno (last);
2356 else
2357 end_name = "no-statement";
2359 fprintf (file, "node: { title: \"%d\" label: \"#%d\\n%s (%d)\\n%s (%d)\"}\n",
2360 bb->index, bb->index, head_name, head_line, end_name,
2361 end_line);
2363 FOR_EACH_EDGE (e, ei, bb->succs)
2365 if (e->dest == EXIT_BLOCK_PTR)
2366 fprintf (file, "edge: { sourcename: \"%d\" targetname: \"EXIT\"", bb->index);
2367 else
2368 fprintf (file, "edge: { sourcename: \"%d\" targetname: \"%d\"", bb->index, e->dest->index);
2370 if (e->flags & EDGE_FAKE)
2371 fprintf (file, " priority: 10 linestyle: dotted");
2372 else
2373 fprintf (file, " priority: 100 linestyle: solid");
2375 fprintf (file, " }\n");
2378 if (bb->next_bb != EXIT_BLOCK_PTR)
2379 fputc ('\n', file);
2382 fputs ("}\n\n", file);
2387 /*---------------------------------------------------------------------------
2388 Miscellaneous helpers
2389 ---------------------------------------------------------------------------*/
2391 /* Return true if T represents a stmt that always transfers control. */
2393 bool
2394 is_ctrl_stmt (tree t)
2396 return (TREE_CODE (t) == COND_EXPR
2397 || TREE_CODE (t) == SWITCH_EXPR
2398 || TREE_CODE (t) == GOTO_EXPR
2399 || TREE_CODE (t) == RETURN_EXPR
2400 || TREE_CODE (t) == RESX_EXPR);
2404 /* Return true if T is a statement that may alter the flow of control
2405 (e.g., a call to a non-returning function). */
2407 bool
2408 is_ctrl_altering_stmt (tree t)
2410 tree call;
2412 gcc_assert (t);
2413 call = get_call_expr_in (t);
2414 if (call)
2416 /* A non-pure/const CALL_EXPR alters flow control if the current
2417 function has nonlocal labels. */
2418 if (TREE_SIDE_EFFECTS (call) && current_function_has_nonlocal_label)
2419 return true;
2421 /* A CALL_EXPR also alters control flow if it does not return. */
2422 if (call_expr_flags (call) & (ECF_NORETURN | ECF_LONGJMP))
2423 return true;
2426 /* If a statement can throw, it alters control flow. */
2427 return tree_can_throw_internal (t);
2431 /* Return true if T is a computed goto. */
2433 bool
2434 computed_goto_p (tree t)
2436 return (TREE_CODE (t) == GOTO_EXPR
2437 && TREE_CODE (GOTO_DESTINATION (t)) != LABEL_DECL);
2441 /* Checks whether EXPR is a simple local goto. */
2443 bool
2444 simple_goto_p (tree expr)
2446 return (TREE_CODE (expr) == GOTO_EXPR
2447 && TREE_CODE (GOTO_DESTINATION (expr)) == LABEL_DECL);
2451 /* Return true if T should start a new basic block. PREV_T is the
2452 statement preceding T. It is used when T is a label or a case label.
2453 Labels should only start a new basic block if their previous statement
2454 wasn't a label. Otherwise, sequence of labels would generate
2455 unnecessary basic blocks that only contain a single label. */
2457 static inline bool
2458 stmt_starts_bb_p (tree t, tree prev_t)
2460 enum tree_code code;
2462 if (t == NULL_TREE)
2463 return false;
2465 /* LABEL_EXPRs start a new basic block only if the preceding
2466 statement wasn't a label of the same type. This prevents the
2467 creation of consecutive blocks that have nothing but a single
2468 label. */
2469 code = TREE_CODE (t);
2470 if (code == LABEL_EXPR)
2472 /* Nonlocal and computed GOTO targets always start a new block. */
2473 if (code == LABEL_EXPR
2474 && (DECL_NONLOCAL (LABEL_EXPR_LABEL (t))
2475 || FORCED_LABEL (LABEL_EXPR_LABEL (t))))
2476 return true;
2478 if (prev_t && TREE_CODE (prev_t) == code)
2480 if (DECL_NONLOCAL (LABEL_EXPR_LABEL (prev_t)))
2481 return true;
2483 cfg_stats.num_merged_labels++;
2484 return false;
2486 else
2487 return true;
2490 return false;
2494 /* Return true if T should end a basic block. */
2496 bool
2497 stmt_ends_bb_p (tree t)
2499 return is_ctrl_stmt (t) || is_ctrl_altering_stmt (t);
2503 /* Add gotos that used to be represented implicitly in the CFG. */
2505 void
2506 disband_implicit_edges (void)
2508 basic_block bb;
2509 block_stmt_iterator last;
2510 edge e;
2511 edge_iterator ei;
2512 tree stmt, label;
2514 FOR_EACH_BB (bb)
2516 last = bsi_last (bb);
2517 stmt = last_stmt (bb);
2519 if (stmt && TREE_CODE (stmt) == COND_EXPR)
2521 /* Remove superfluous gotos from COND_EXPR branches. Moved
2522 from cfg_remove_useless_stmts here since it violates the
2523 invariants for tree--cfg correspondence and thus fits better
2524 here where we do it anyway. */
2525 FOR_EACH_EDGE (e, ei, bb->succs)
2527 if (e->dest != bb->next_bb)
2528 continue;
2530 if (e->flags & EDGE_TRUE_VALUE)
2531 COND_EXPR_THEN (stmt) = build_empty_stmt ();
2532 else if (e->flags & EDGE_FALSE_VALUE)
2533 COND_EXPR_ELSE (stmt) = build_empty_stmt ();
2534 else
2535 gcc_unreachable ();
2536 e->flags |= EDGE_FALLTHRU;
2539 continue;
2542 if (stmt && TREE_CODE (stmt) == RETURN_EXPR)
2544 /* Remove the RETURN_EXPR if we may fall though to the exit
2545 instead. */
2546 gcc_assert (EDGE_COUNT (bb->succs) == 1);
2547 gcc_assert (EDGE_SUCC (bb, 0)->dest == EXIT_BLOCK_PTR);
2549 if (bb->next_bb == EXIT_BLOCK_PTR
2550 && !TREE_OPERAND (stmt, 0))
2552 bsi_remove (&last);
2553 EDGE_SUCC (bb, 0)->flags |= EDGE_FALLTHRU;
2555 continue;
2558 /* There can be no fallthru edge if the last statement is a control
2559 one. */
2560 if (stmt && is_ctrl_stmt (stmt))
2561 continue;
2563 /* Find a fallthru edge and emit the goto if necessary. */
2564 FOR_EACH_EDGE (e, ei, bb->succs)
2566 if (e->flags & EDGE_FALLTHRU)
2567 break;
2570 if (!e || e->dest == bb->next_bb)
2571 continue;
2573 gcc_assert (e->dest != EXIT_BLOCK_PTR);
2574 label = tree_block_label (e->dest);
2576 stmt = build1 (GOTO_EXPR, void_type_node, label);
2577 #ifdef USE_MAPPED_LOCATION
2578 SET_EXPR_LOCATION (stmt, e->goto_locus);
2579 #else
2580 SET_EXPR_LOCUS (stmt, e->goto_locus);
2581 #endif
2582 bsi_insert_after (&last, stmt, BSI_NEW_STMT);
2583 e->flags &= ~EDGE_FALLTHRU;
2587 /* Remove block annotations and other datastructures. */
2589 void
2590 delete_tree_cfg_annotations (void)
2592 basic_block bb;
2593 if (n_basic_blocks > 0)
2594 free_blocks_annotations ();
2596 label_to_block_map = NULL;
2597 free_rbi_pool ();
2598 FOR_EACH_BB (bb)
2599 bb->rbi = NULL;
2603 /* Return the first statement in basic block BB. */
2605 tree
2606 first_stmt (basic_block bb)
2608 block_stmt_iterator i = bsi_start (bb);
2609 return !bsi_end_p (i) ? bsi_stmt (i) : NULL_TREE;
2613 /* Return the last statement in basic block BB. */
2615 tree
2616 last_stmt (basic_block bb)
2618 block_stmt_iterator b = bsi_last (bb);
2619 return !bsi_end_p (b) ? bsi_stmt (b) : NULL_TREE;
2623 /* Return a pointer to the last statement in block BB. */
2625 tree *
2626 last_stmt_ptr (basic_block bb)
2628 block_stmt_iterator last = bsi_last (bb);
2629 return !bsi_end_p (last) ? bsi_stmt_ptr (last) : NULL;
2633 /* Return the last statement of an otherwise empty block. Return NULL
2634 if the block is totally empty, or if it contains more than one
2635 statement. */
2637 tree
2638 last_and_only_stmt (basic_block bb)
2640 block_stmt_iterator i = bsi_last (bb);
2641 tree last, prev;
2643 if (bsi_end_p (i))
2644 return NULL_TREE;
2646 last = bsi_stmt (i);
2647 bsi_prev (&i);
2648 if (bsi_end_p (i))
2649 return last;
2651 /* Empty statements should no longer appear in the instruction stream.
2652 Everything that might have appeared before should be deleted by
2653 remove_useless_stmts, and the optimizers should just bsi_remove
2654 instead of smashing with build_empty_stmt.
2656 Thus the only thing that should appear here in a block containing
2657 one executable statement is a label. */
2658 prev = bsi_stmt (i);
2659 if (TREE_CODE (prev) == LABEL_EXPR)
2660 return last;
2661 else
2662 return NULL_TREE;
2666 /* Mark BB as the basic block holding statement T. */
2668 void
2669 set_bb_for_stmt (tree t, basic_block bb)
2671 if (TREE_CODE (t) == PHI_NODE)
2672 PHI_BB (t) = bb;
2673 else if (TREE_CODE (t) == STATEMENT_LIST)
2675 tree_stmt_iterator i;
2676 for (i = tsi_start (t); !tsi_end_p (i); tsi_next (&i))
2677 set_bb_for_stmt (tsi_stmt (i), bb);
2679 else
2681 stmt_ann_t ann = get_stmt_ann (t);
2682 ann->bb = bb;
2684 /* If the statement is a label, add the label to block-to-labels map
2685 so that we can speed up edge creation for GOTO_EXPRs. */
2686 if (TREE_CODE (t) == LABEL_EXPR)
2688 int uid;
2690 t = LABEL_EXPR_LABEL (t);
2691 uid = LABEL_DECL_UID (t);
2692 if (uid == -1)
2694 LABEL_DECL_UID (t) = uid = cfun->last_label_uid++;
2695 if (VARRAY_SIZE (label_to_block_map) <= (unsigned) uid)
2696 VARRAY_GROW (label_to_block_map, 3 * uid / 2);
2698 else
2699 /* We're moving an existing label. Make sure that we've
2700 removed it from the old block. */
2701 gcc_assert (!bb || !VARRAY_BB (label_to_block_map, uid));
2702 VARRAY_BB (label_to_block_map, uid) = bb;
2707 /* Finds iterator for STMT. */
2709 extern block_stmt_iterator
2710 stmt_for_bsi (tree stmt)
2712 block_stmt_iterator bsi;
2714 for (bsi = bsi_start (bb_for_stmt (stmt)); !bsi_end_p (bsi); bsi_next (&bsi))
2715 if (bsi_stmt (bsi) == stmt)
2716 return bsi;
2718 gcc_unreachable ();
2721 /* Insert statement (or statement list) T before the statement
2722 pointed-to by iterator I. M specifies how to update iterator I
2723 after insertion (see enum bsi_iterator_update). */
2725 void
2726 bsi_insert_before (block_stmt_iterator *i, tree t, enum bsi_iterator_update m)
2728 set_bb_for_stmt (t, i->bb);
2729 tsi_link_before (&i->tsi, t, m);
2730 modify_stmt (t);
2734 /* Insert statement (or statement list) T after the statement
2735 pointed-to by iterator I. M specifies how to update iterator I
2736 after insertion (see enum bsi_iterator_update). */
2738 void
2739 bsi_insert_after (block_stmt_iterator *i, tree t, enum bsi_iterator_update m)
2741 set_bb_for_stmt (t, i->bb);
2742 tsi_link_after (&i->tsi, t, m);
2743 modify_stmt (t);
2747 /* Remove the statement pointed to by iterator I. The iterator is updated
2748 to the next statement. */
2750 void
2751 bsi_remove (block_stmt_iterator *i)
2753 tree t = bsi_stmt (*i);
2754 set_bb_for_stmt (t, NULL);
2755 tsi_delink (&i->tsi);
2759 /* Move the statement at FROM so it comes right after the statement at TO. */
2761 void
2762 bsi_move_after (block_stmt_iterator *from, block_stmt_iterator *to)
2764 tree stmt = bsi_stmt (*from);
2765 bsi_remove (from);
2766 bsi_insert_after (to, stmt, BSI_SAME_STMT);
2770 /* Move the statement at FROM so it comes right before the statement at TO. */
2772 void
2773 bsi_move_before (block_stmt_iterator *from, block_stmt_iterator *to)
2775 tree stmt = bsi_stmt (*from);
2776 bsi_remove (from);
2777 bsi_insert_before (to, stmt, BSI_SAME_STMT);
2781 /* Move the statement at FROM to the end of basic block BB. */
2783 void
2784 bsi_move_to_bb_end (block_stmt_iterator *from, basic_block bb)
2786 block_stmt_iterator last = bsi_last (bb);
2788 /* Have to check bsi_end_p because it could be an empty block. */
2789 if (!bsi_end_p (last) && is_ctrl_stmt (bsi_stmt (last)))
2790 bsi_move_before (from, &last);
2791 else
2792 bsi_move_after (from, &last);
2796 /* Replace the contents of the statement pointed to by iterator BSI
2797 with STMT. If PRESERVE_EH_INFO is true, the exception handling
2798 information of the original statement is preserved. */
2800 void
2801 bsi_replace (const block_stmt_iterator *bsi, tree stmt, bool preserve_eh_info)
2803 int eh_region;
2804 tree orig_stmt = bsi_stmt (*bsi);
2806 SET_EXPR_LOCUS (stmt, EXPR_LOCUS (orig_stmt));
2807 set_bb_for_stmt (stmt, bsi->bb);
2809 /* Preserve EH region information from the original statement, if
2810 requested by the caller. */
2811 if (preserve_eh_info)
2813 eh_region = lookup_stmt_eh_region (orig_stmt);
2814 if (eh_region >= 0)
2815 add_stmt_to_eh_region (stmt, eh_region);
2818 *bsi_stmt_ptr (*bsi) = stmt;
2819 modify_stmt (stmt);
2823 /* Insert the statement pointed-to by BSI into edge E. Every attempt
2824 is made to place the statement in an existing basic block, but
2825 sometimes that isn't possible. When it isn't possible, the edge is
2826 split and the statement is added to the new block.
2828 In all cases, the returned *BSI points to the correct location. The
2829 return value is true if insertion should be done after the location,
2830 or false if it should be done before the location. If new basic block
2831 has to be created, it is stored in *NEW_BB. */
2833 static bool
2834 tree_find_edge_insert_loc (edge e, block_stmt_iterator *bsi,
2835 basic_block *new_bb)
2837 basic_block dest, src;
2838 tree tmp;
2840 dest = e->dest;
2841 restart:
2843 /* If the destination has one predecessor which has no PHI nodes,
2844 insert there. Except for the exit block.
2846 The requirement for no PHI nodes could be relaxed. Basically we
2847 would have to examine the PHIs to prove that none of them used
2848 the value set by the statement we want to insert on E. That
2849 hardly seems worth the effort. */
2850 if (EDGE_COUNT (dest->preds) == 1
2851 && ! phi_nodes (dest)
2852 && dest != EXIT_BLOCK_PTR)
2854 *bsi = bsi_start (dest);
2855 if (bsi_end_p (*bsi))
2856 return true;
2858 /* Make sure we insert after any leading labels. */
2859 tmp = bsi_stmt (*bsi);
2860 while (TREE_CODE (tmp) == LABEL_EXPR)
2862 bsi_next (bsi);
2863 if (bsi_end_p (*bsi))
2864 break;
2865 tmp = bsi_stmt (*bsi);
2868 if (bsi_end_p (*bsi))
2870 *bsi = bsi_last (dest);
2871 return true;
2873 else
2874 return false;
2877 /* If the source has one successor, the edge is not abnormal and
2878 the last statement does not end a basic block, insert there.
2879 Except for the entry block. */
2880 src = e->src;
2881 if ((e->flags & EDGE_ABNORMAL) == 0
2882 && EDGE_COUNT (src->succs) == 1
2883 && src != ENTRY_BLOCK_PTR)
2885 *bsi = bsi_last (src);
2886 if (bsi_end_p (*bsi))
2887 return true;
2889 tmp = bsi_stmt (*bsi);
2890 if (!stmt_ends_bb_p (tmp))
2891 return true;
2893 /* Insert code just before returning the value. We may need to decompose
2894 the return in the case it contains non-trivial operand. */
2895 if (TREE_CODE (tmp) == RETURN_EXPR)
2897 tree op = TREE_OPERAND (tmp, 0);
2898 if (!is_gimple_val (op))
2900 gcc_assert (TREE_CODE (op) == MODIFY_EXPR);
2901 bsi_insert_before (bsi, op, BSI_NEW_STMT);
2902 TREE_OPERAND (tmp, 0) = TREE_OPERAND (op, 0);
2904 bsi_prev (bsi);
2905 return true;
2909 /* Otherwise, create a new basic block, and split this edge. */
2910 dest = split_edge (e);
2911 if (new_bb)
2912 *new_bb = dest;
2913 e = EDGE_PRED (dest, 0);
2914 goto restart;
2918 /* This routine will commit all pending edge insertions, creating any new
2919 basic blocks which are necessary.
2921 If specified, NEW_BLOCKS returns a count of the number of new basic
2922 blocks which were created. */
2924 void
2925 bsi_commit_edge_inserts (int *new_blocks)
2927 basic_block bb;
2928 edge e;
2929 int blocks;
2930 edge_iterator ei;
2932 blocks = n_basic_blocks;
2934 bsi_commit_edge_inserts_1 (EDGE_SUCC (ENTRY_BLOCK_PTR, 0));
2936 FOR_EACH_BB (bb)
2937 FOR_EACH_EDGE (e, ei, bb->succs)
2939 bsi_commit_edge_inserts_1 (e);
2942 if (new_blocks)
2943 *new_blocks = n_basic_blocks - blocks;
2947 /* Commit insertions pending at edge E. */
2949 static void
2950 bsi_commit_edge_inserts_1 (edge e)
2952 if (PENDING_STMT (e))
2954 block_stmt_iterator bsi;
2955 tree stmt = PENDING_STMT (e);
2957 PENDING_STMT (e) = NULL_TREE;
2959 if (tree_find_edge_insert_loc (e, &bsi, NULL))
2960 bsi_insert_after (&bsi, stmt, BSI_NEW_STMT);
2961 else
2962 bsi_insert_before (&bsi, stmt, BSI_NEW_STMT);
2967 /* Add STMT to the pending list of edge E. No actual insertion is
2968 made until a call to bsi_commit_edge_inserts () is made. */
2970 void
2971 bsi_insert_on_edge (edge e, tree stmt)
2973 append_to_statement_list (stmt, &PENDING_STMT (e));
2976 /* Similar to bsi_insert_on_edge+bsi_commit_edge_inserts. If new block has to
2977 be created, it is returned. */
2979 basic_block
2980 bsi_insert_on_edge_immediate (edge e, tree stmt)
2982 block_stmt_iterator bsi;
2983 basic_block new_bb = NULL;
2985 gcc_assert (!PENDING_STMT (e));
2987 if (tree_find_edge_insert_loc (e, &bsi, &new_bb))
2988 bsi_insert_after (&bsi, stmt, BSI_NEW_STMT);
2989 else
2990 bsi_insert_before (&bsi, stmt, BSI_NEW_STMT);
2992 return new_bb;
2995 /*---------------------------------------------------------------------------
2996 Tree specific functions for CFG manipulation
2997 ---------------------------------------------------------------------------*/
2999 /* Split a (typically critical) edge EDGE_IN. Return the new block.
3000 Abort on abnormal edges. */
3002 static basic_block
3003 tree_split_edge (edge edge_in)
3005 basic_block new_bb, after_bb, dest, src;
3006 edge new_edge, e;
3007 tree phi;
3008 int i, num_elem;
3009 edge_iterator ei;
3011 /* Abnormal edges cannot be split. */
3012 gcc_assert (!(edge_in->flags & EDGE_ABNORMAL));
3014 src = edge_in->src;
3015 dest = edge_in->dest;
3017 /* Place the new block in the block list. Try to keep the new block
3018 near its "logical" location. This is of most help to humans looking
3019 at debugging dumps. */
3020 FOR_EACH_EDGE (e, ei, dest->preds)
3022 if (e->src->next_bb == dest)
3023 break;
3026 if (!e)
3027 after_bb = dest->prev_bb;
3028 else
3029 after_bb = edge_in->src;
3031 new_bb = create_empty_bb (after_bb);
3032 new_bb->frequency = EDGE_FREQUENCY (edge_in);
3033 new_bb->count = edge_in->count;
3034 new_edge = make_edge (new_bb, dest, EDGE_FALLTHRU);
3035 new_edge->probability = REG_BR_PROB_BASE;
3036 new_edge->count = edge_in->count;
3038 /* Find all the PHI arguments on the original edge, and change them to
3039 the new edge. Do it before redirection, so that the argument does not
3040 get removed. */
3041 for (phi = phi_nodes (dest); phi; phi = PHI_CHAIN (phi))
3043 num_elem = PHI_NUM_ARGS (phi);
3044 for (i = 0; i < num_elem; i++)
3045 if (PHI_ARG_EDGE (phi, i) == edge_in)
3047 PHI_ARG_EDGE (phi, i) = new_edge;
3048 break;
3052 e = redirect_edge_and_branch (edge_in, new_bb);
3053 gcc_assert (e);
3054 gcc_assert (!PENDING_STMT (edge_in));
3056 return new_bb;
3060 /* Return true when BB has label LABEL in it. */
3062 static bool
3063 has_label_p (basic_block bb, tree label)
3065 block_stmt_iterator bsi;
3067 for (bsi = bsi_start (bb); !bsi_end_p (bsi); bsi_next (&bsi))
3069 tree stmt = bsi_stmt (bsi);
3071 if (TREE_CODE (stmt) != LABEL_EXPR)
3072 return false;
3073 if (LABEL_EXPR_LABEL (stmt) == label)
3074 return true;
3076 return false;
3080 /* Callback for walk_tree, check that all elements with address taken are
3081 properly noticed as such. */
3083 static tree
3084 verify_expr (tree *tp, int *walk_subtrees, void *data ATTRIBUTE_UNUSED)
3086 tree t = *tp, x;
3088 if (TYPE_P (t))
3089 *walk_subtrees = 0;
3091 /* Check operand N for being valid GIMPLE and give error MSG if not.
3092 We check for constants explicitly since they are not considered
3093 gimple invariants if they overflowed. */
3094 #define CHECK_OP(N, MSG) \
3095 do { if (!CONSTANT_CLASS_P (TREE_OPERAND (t, N)) \
3096 && !is_gimple_val (TREE_OPERAND (t, N))) \
3097 { error (MSG); return TREE_OPERAND (t, N); }} while (0)
3099 switch (TREE_CODE (t))
3101 case SSA_NAME:
3102 if (SSA_NAME_IN_FREE_LIST (t))
3104 error ("SSA name in freelist but still referenced");
3105 return *tp;
3107 break;
3109 case MODIFY_EXPR:
3110 x = TREE_OPERAND (t, 0);
3111 if (TREE_CODE (x) == BIT_FIELD_REF
3112 && is_gimple_reg (TREE_OPERAND (x, 0)))
3114 error ("GIMPLE register modified with BIT_FIELD_REF");
3115 return t;
3117 break;
3119 case ADDR_EXPR:
3120 /* Skip any references (they will be checked when we recurse down the
3121 tree) and ensure that any variable used as a prefix is marked
3122 addressable. */
3123 for (x = TREE_OPERAND (t, 0);
3124 (handled_component_p (x)
3125 || TREE_CODE (x) == REALPART_EXPR
3126 || TREE_CODE (x) == IMAGPART_EXPR);
3127 x = TREE_OPERAND (x, 0))
3130 if (TREE_CODE (x) != VAR_DECL && TREE_CODE (x) != PARM_DECL)
3131 return NULL;
3132 if (!TREE_ADDRESSABLE (x))
3134 error ("address taken, but ADDRESSABLE bit not set");
3135 return x;
3137 break;
3139 case COND_EXPR:
3140 x = TREE_OPERAND (t, 0);
3141 if (TREE_CODE (TREE_TYPE (x)) != BOOLEAN_TYPE)
3143 error ("non-boolean used in condition");
3144 return x;
3146 break;
3148 case NOP_EXPR:
3149 case CONVERT_EXPR:
3150 case FIX_TRUNC_EXPR:
3151 case FIX_CEIL_EXPR:
3152 case FIX_FLOOR_EXPR:
3153 case FIX_ROUND_EXPR:
3154 case FLOAT_EXPR:
3155 case NEGATE_EXPR:
3156 case ABS_EXPR:
3157 case BIT_NOT_EXPR:
3158 case NON_LVALUE_EXPR:
3159 case TRUTH_NOT_EXPR:
3160 CHECK_OP (0, "Invalid operand to unary operator");
3161 break;
3163 case REALPART_EXPR:
3164 case IMAGPART_EXPR:
3165 case COMPONENT_REF:
3166 case ARRAY_REF:
3167 case ARRAY_RANGE_REF:
3168 case BIT_FIELD_REF:
3169 case VIEW_CONVERT_EXPR:
3170 /* We have a nest of references. Verify that each of the operands
3171 that determine where to reference is either a constant or a variable,
3172 verify that the base is valid, and then show we've already checked
3173 the subtrees. */
3174 while (TREE_CODE (t) == REALPART_EXPR || TREE_CODE (t) == IMAGPART_EXPR
3175 || handled_component_p (t))
3177 if (TREE_CODE (t) == COMPONENT_REF && TREE_OPERAND (t, 2))
3178 CHECK_OP (2, "Invalid COMPONENT_REF offset operator");
3179 else if (TREE_CODE (t) == ARRAY_REF
3180 || TREE_CODE (t) == ARRAY_RANGE_REF)
3182 CHECK_OP (1, "Invalid array index.");
3183 if (TREE_OPERAND (t, 2))
3184 CHECK_OP (2, "Invalid array lower bound.");
3185 if (TREE_OPERAND (t, 3))
3186 CHECK_OP (3, "Invalid array stride.");
3188 else if (TREE_CODE (t) == BIT_FIELD_REF)
3190 CHECK_OP (1, "Invalid operand to BIT_FIELD_REF");
3191 CHECK_OP (2, "Invalid operand to BIT_FIELD_REF");
3194 t = TREE_OPERAND (t, 0);
3197 if (!CONSTANT_CLASS_P (t) && !is_gimple_lvalue (t))
3199 error ("Invalid reference prefix.");
3200 return t;
3202 *walk_subtrees = 0;
3203 break;
3205 case LT_EXPR:
3206 case LE_EXPR:
3207 case GT_EXPR:
3208 case GE_EXPR:
3209 case EQ_EXPR:
3210 case NE_EXPR:
3211 case UNORDERED_EXPR:
3212 case ORDERED_EXPR:
3213 case UNLT_EXPR:
3214 case UNLE_EXPR:
3215 case UNGT_EXPR:
3216 case UNGE_EXPR:
3217 case UNEQ_EXPR:
3218 case LTGT_EXPR:
3219 case PLUS_EXPR:
3220 case MINUS_EXPR:
3221 case MULT_EXPR:
3222 case TRUNC_DIV_EXPR:
3223 case CEIL_DIV_EXPR:
3224 case FLOOR_DIV_EXPR:
3225 case ROUND_DIV_EXPR:
3226 case TRUNC_MOD_EXPR:
3227 case CEIL_MOD_EXPR:
3228 case FLOOR_MOD_EXPR:
3229 case ROUND_MOD_EXPR:
3230 case RDIV_EXPR:
3231 case EXACT_DIV_EXPR:
3232 case MIN_EXPR:
3233 case MAX_EXPR:
3234 case LSHIFT_EXPR:
3235 case RSHIFT_EXPR:
3236 case LROTATE_EXPR:
3237 case RROTATE_EXPR:
3238 case BIT_IOR_EXPR:
3239 case BIT_XOR_EXPR:
3240 case BIT_AND_EXPR:
3241 CHECK_OP (0, "Invalid operand to binary operator");
3242 CHECK_OP (1, "Invalid operand to binary operator");
3243 break;
3245 default:
3246 break;
3248 return NULL;
3250 #undef CHECK_OP
3254 /* Verify STMT, return true if STMT is not in GIMPLE form.
3255 TODO: Implement type checking. */
3257 static bool
3258 verify_stmt (tree stmt, bool last_in_block)
3260 tree addr;
3262 if (!is_gimple_stmt (stmt))
3264 error ("Is not a valid GIMPLE statement.");
3265 goto fail;
3268 addr = walk_tree (&stmt, verify_expr, NULL, NULL);
3269 if (addr)
3271 debug_generic_stmt (addr);
3272 return true;
3275 /* If the statement is marked as part of an EH region, then it is
3276 expected that the statement could throw. Verify that when we
3277 have optimizations that simplify statements such that we prove
3278 that they cannot throw, that we update other data structures
3279 to match. */
3280 if (lookup_stmt_eh_region (stmt) >= 0)
3282 if (!tree_could_throw_p (stmt))
3284 error ("Statement marked for throw, but doesn%'t.");
3285 goto fail;
3287 if (!last_in_block && tree_can_throw_internal (stmt))
3289 error ("Statement marked for throw in middle of block.");
3290 goto fail;
3294 return false;
3296 fail:
3297 debug_generic_stmt (stmt);
3298 return true;
3302 /* Return true when the T can be shared. */
3304 static bool
3305 tree_node_can_be_shared (tree t)
3307 if (IS_TYPE_OR_DECL_P (t)
3308 /* We check for constants explicitly since they are not considered
3309 gimple invariants if they overflowed. */
3310 || CONSTANT_CLASS_P (t)
3311 || is_gimple_min_invariant (t)
3312 || TREE_CODE (t) == SSA_NAME)
3313 return true;
3315 while (((TREE_CODE (t) == ARRAY_REF || TREE_CODE (t) == ARRAY_RANGE_REF)
3316 /* We check for constants explicitly since they are not considered
3317 gimple invariants if they overflowed. */
3318 && (CONSTANT_CLASS_P (TREE_OPERAND (t, 1))
3319 || is_gimple_min_invariant (TREE_OPERAND (t, 1))))
3320 || (TREE_CODE (t) == COMPONENT_REF
3321 || TREE_CODE (t) == REALPART_EXPR
3322 || TREE_CODE (t) == IMAGPART_EXPR))
3323 t = TREE_OPERAND (t, 0);
3325 if (DECL_P (t))
3326 return true;
3328 return false;
3332 /* Called via walk_trees. Verify tree sharing. */
3334 static tree
3335 verify_node_sharing (tree * tp, int *walk_subtrees, void *data)
3337 htab_t htab = (htab_t) data;
3338 void **slot;
3340 if (tree_node_can_be_shared (*tp))
3342 *walk_subtrees = false;
3343 return NULL;
3346 slot = htab_find_slot (htab, *tp, INSERT);
3347 if (*slot)
3348 return *slot;
3349 *slot = *tp;
3351 return NULL;
3355 /* Verify the GIMPLE statement chain. */
3357 void
3358 verify_stmts (void)
3360 basic_block bb;
3361 block_stmt_iterator bsi;
3362 bool err = false;
3363 htab_t htab;
3364 tree addr;
3366 timevar_push (TV_TREE_STMT_VERIFY);
3367 htab = htab_create (37, htab_hash_pointer, htab_eq_pointer, NULL);
3369 FOR_EACH_BB (bb)
3371 tree phi;
3372 int i;
3374 for (phi = phi_nodes (bb); phi; phi = PHI_CHAIN (phi))
3376 int phi_num_args = PHI_NUM_ARGS (phi);
3378 for (i = 0; i < phi_num_args; i++)
3380 tree t = PHI_ARG_DEF (phi, i);
3381 tree addr;
3383 /* Addressable variables do have SSA_NAMEs but they
3384 are not considered gimple values. */
3385 if (TREE_CODE (t) != SSA_NAME
3386 && TREE_CODE (t) != FUNCTION_DECL
3387 && !is_gimple_val (t))
3389 error ("PHI def is not a GIMPLE value");
3390 debug_generic_stmt (phi);
3391 debug_generic_stmt (t);
3392 err |= true;
3395 addr = walk_tree (&t, verify_expr, NULL, NULL);
3396 if (addr)
3398 debug_generic_stmt (addr);
3399 err |= true;
3402 addr = walk_tree (&t, verify_node_sharing, htab, NULL);
3403 if (addr)
3405 error ("Incorrect sharing of tree nodes");
3406 debug_generic_stmt (phi);
3407 debug_generic_stmt (addr);
3408 err |= true;
3413 for (bsi = bsi_start (bb); !bsi_end_p (bsi); )
3415 tree stmt = bsi_stmt (bsi);
3416 bsi_next (&bsi);
3417 err |= verify_stmt (stmt, bsi_end_p (bsi));
3418 addr = walk_tree (&stmt, verify_node_sharing, htab, NULL);
3419 if (addr)
3421 error ("Incorrect sharing of tree nodes");
3422 debug_generic_stmt (stmt);
3423 debug_generic_stmt (addr);
3424 err |= true;
3429 if (err)
3430 internal_error ("verify_stmts failed.");
3432 htab_delete (htab);
3433 timevar_pop (TV_TREE_STMT_VERIFY);
3437 /* Verifies that the flow information is OK. */
3439 static int
3440 tree_verify_flow_info (void)
3442 int err = 0;
3443 basic_block bb;
3444 block_stmt_iterator bsi;
3445 tree stmt;
3446 edge e;
3447 edge_iterator ei;
3449 if (ENTRY_BLOCK_PTR->stmt_list)
3451 error ("ENTRY_BLOCK has a statement list associated with it\n");
3452 err = 1;
3455 if (EXIT_BLOCK_PTR->stmt_list)
3457 error ("EXIT_BLOCK has a statement list associated with it\n");
3458 err = 1;
3461 FOR_EACH_EDGE (e, ei, EXIT_BLOCK_PTR->preds)
3463 if (e->flags & EDGE_FALLTHRU)
3465 error ("Fallthru to exit from bb %d\n", e->src->index);
3466 err = 1;
3470 FOR_EACH_BB (bb)
3472 bool found_ctrl_stmt = false;
3474 /* Skip labels on the start of basic block. */
3475 for (bsi = bsi_start (bb); !bsi_end_p (bsi); bsi_next (&bsi))
3477 if (TREE_CODE (bsi_stmt (bsi)) != LABEL_EXPR)
3478 break;
3480 if (label_to_block (LABEL_EXPR_LABEL (bsi_stmt (bsi))) != bb)
3482 error ("Label %s to block does not match in bb %d\n",
3483 IDENTIFIER_POINTER (DECL_NAME (bsi_stmt (bsi))),
3484 bb->index);
3485 err = 1;
3488 if (decl_function_context (LABEL_EXPR_LABEL (bsi_stmt (bsi)))
3489 != current_function_decl)
3491 error ("Label %s has incorrect context in bb %d\n",
3492 IDENTIFIER_POINTER (DECL_NAME (bsi_stmt (bsi))),
3493 bb->index);
3494 err = 1;
3498 /* Verify that body of basic block BB is free of control flow. */
3499 for (; !bsi_end_p (bsi); bsi_next (&bsi))
3501 tree stmt = bsi_stmt (bsi);
3503 if (found_ctrl_stmt)
3505 error ("Control flow in the middle of basic block %d\n",
3506 bb->index);
3507 err = 1;
3510 if (stmt_ends_bb_p (stmt))
3511 found_ctrl_stmt = true;
3513 if (TREE_CODE (stmt) == LABEL_EXPR)
3515 error ("Label %s in the middle of basic block %d\n",
3516 IDENTIFIER_POINTER (DECL_NAME (stmt)),
3517 bb->index);
3518 err = 1;
3521 bsi = bsi_last (bb);
3522 if (bsi_end_p (bsi))
3523 continue;
3525 stmt = bsi_stmt (bsi);
3527 if (is_ctrl_stmt (stmt))
3529 FOR_EACH_EDGE (e, ei, bb->succs)
3531 if (e->flags & EDGE_FALLTHRU)
3533 error ("Fallthru edge after a control statement in bb %d \n",
3534 bb->index);
3535 err = 1;
3540 switch (TREE_CODE (stmt))
3542 case COND_EXPR:
3544 edge true_edge;
3545 edge false_edge;
3546 if (TREE_CODE (COND_EXPR_THEN (stmt)) != GOTO_EXPR
3547 || TREE_CODE (COND_EXPR_ELSE (stmt)) != GOTO_EXPR)
3549 error ("Structured COND_EXPR at the end of bb %d\n", bb->index);
3550 err = 1;
3553 extract_true_false_edges_from_block (bb, &true_edge, &false_edge);
3555 if (!true_edge || !false_edge
3556 || !(true_edge->flags & EDGE_TRUE_VALUE)
3557 || !(false_edge->flags & EDGE_FALSE_VALUE)
3558 || (true_edge->flags & (EDGE_FALLTHRU | EDGE_ABNORMAL))
3559 || (false_edge->flags & (EDGE_FALLTHRU | EDGE_ABNORMAL))
3560 || EDGE_COUNT (bb->succs) >= 3)
3562 error ("Wrong outgoing edge flags at end of bb %d\n",
3563 bb->index);
3564 err = 1;
3567 if (!has_label_p (true_edge->dest,
3568 GOTO_DESTINATION (COND_EXPR_THEN (stmt))))
3570 error ("%<then%> label does not match edge at end of bb %d\n",
3571 bb->index);
3572 err = 1;
3575 if (!has_label_p (false_edge->dest,
3576 GOTO_DESTINATION (COND_EXPR_ELSE (stmt))))
3578 error ("%<else%> label does not match edge at end of bb %d\n",
3579 bb->index);
3580 err = 1;
3583 break;
3585 case GOTO_EXPR:
3586 if (simple_goto_p (stmt))
3588 error ("Explicit goto at end of bb %d\n", bb->index);
3589 err = 1;
3591 else
3593 /* FIXME. We should double check that the labels in the
3594 destination blocks have their address taken. */
3595 FOR_EACH_EDGE (e, ei, bb->succs)
3597 if ((e->flags & (EDGE_FALLTHRU | EDGE_TRUE_VALUE
3598 | EDGE_FALSE_VALUE))
3599 || !(e->flags & EDGE_ABNORMAL))
3601 error ("Wrong outgoing edge flags at end of bb %d\n",
3602 bb->index);
3603 err = 1;
3607 break;
3609 case RETURN_EXPR:
3610 if (EDGE_COUNT (bb->succs) != 1
3611 || (EDGE_SUCC (bb, 0)->flags & (EDGE_FALLTHRU | EDGE_ABNORMAL
3612 | EDGE_TRUE_VALUE | EDGE_FALSE_VALUE)))
3614 error ("Wrong outgoing edge flags at end of bb %d\n", bb->index);
3615 err = 1;
3617 if (EDGE_SUCC (bb, 0)->dest != EXIT_BLOCK_PTR)
3619 error ("Return edge does not point to exit in bb %d\n",
3620 bb->index);
3621 err = 1;
3623 break;
3625 case SWITCH_EXPR:
3627 tree prev;
3628 edge e;
3629 size_t i, n;
3630 tree vec;
3632 vec = SWITCH_LABELS (stmt);
3633 n = TREE_VEC_LENGTH (vec);
3635 /* Mark all the destination basic blocks. */
3636 for (i = 0; i < n; ++i)
3638 tree lab = CASE_LABEL (TREE_VEC_ELT (vec, i));
3639 basic_block label_bb = label_to_block (lab);
3641 gcc_assert (!label_bb->aux || label_bb->aux == (void *)1);
3642 label_bb->aux = (void *)1;
3645 /* Verify that the case labels are sorted. */
3646 prev = TREE_VEC_ELT (vec, 0);
3647 for (i = 1; i < n - 1; ++i)
3649 tree c = TREE_VEC_ELT (vec, i);
3650 if (! CASE_LOW (c))
3652 error ("Found default case not at end of case vector");
3653 err = 1;
3654 continue;
3656 if (! tree_int_cst_lt (CASE_LOW (prev), CASE_LOW (c)))
3658 error ("Case labels not sorted:\n ");
3659 print_generic_expr (stderr, prev, 0);
3660 fprintf (stderr," is greater than ");
3661 print_generic_expr (stderr, c, 0);
3662 fprintf (stderr," but comes before it.\n");
3663 err = 1;
3665 prev = c;
3667 if (CASE_LOW (TREE_VEC_ELT (vec, n - 1)))
3669 error ("No default case found at end of case vector");
3670 err = 1;
3673 FOR_EACH_EDGE (e, ei, bb->succs)
3675 if (!e->dest->aux)
3677 error ("Extra outgoing edge %d->%d\n",
3678 bb->index, e->dest->index);
3679 err = 1;
3681 e->dest->aux = (void *)2;
3682 if ((e->flags & (EDGE_FALLTHRU | EDGE_ABNORMAL
3683 | EDGE_TRUE_VALUE | EDGE_FALSE_VALUE)))
3685 error ("Wrong outgoing edge flags at end of bb %d\n",
3686 bb->index);
3687 err = 1;
3691 /* Check that we have all of them. */
3692 for (i = 0; i < n; ++i)
3694 tree lab = CASE_LABEL (TREE_VEC_ELT (vec, i));
3695 basic_block label_bb = label_to_block (lab);
3697 if (label_bb->aux != (void *)2)
3699 error ("Missing edge %i->%i\n",
3700 bb->index, label_bb->index);
3701 err = 1;
3705 FOR_EACH_EDGE (e, ei, bb->succs)
3707 e->dest->aux = (void *) 0;
3711 default: ;
3715 if (dom_computed[CDI_DOMINATORS] >= DOM_NO_FAST_QUERY)
3716 verify_dominators (CDI_DOMINATORS);
3718 return err;
3722 /* Updates phi nodes after creating forwarder block joined
3723 by edge FALLTHRU. */
3725 static void
3726 tree_make_forwarder_block (edge fallthru)
3728 edge e;
3729 edge_iterator ei;
3730 basic_block dummy, bb;
3731 tree phi, new_phi, var, prev, next;
3733 dummy = fallthru->src;
3734 bb = fallthru->dest;
3736 if (EDGE_COUNT (bb->preds) == 1)
3737 return;
3739 /* If we redirected a branch we must create new phi nodes at the
3740 start of BB. */
3741 for (phi = phi_nodes (dummy); phi; phi = PHI_CHAIN (phi))
3743 var = PHI_RESULT (phi);
3744 new_phi = create_phi_node (var, bb);
3745 SSA_NAME_DEF_STMT (var) = new_phi;
3746 SET_PHI_RESULT (phi, make_ssa_name (SSA_NAME_VAR (var), phi));
3747 add_phi_arg (&new_phi, PHI_RESULT (phi), fallthru);
3750 /* Ensure that the PHI node chain is in the same order. */
3751 prev = NULL;
3752 for (phi = phi_nodes (bb); phi; phi = next)
3754 next = PHI_CHAIN (phi);
3755 PHI_CHAIN (phi) = prev;
3756 prev = phi;
3758 set_phi_nodes (bb, prev);
3760 /* Add the arguments we have stored on edges. */
3761 FOR_EACH_EDGE (e, ei, bb->preds)
3763 if (e == fallthru)
3764 continue;
3766 for (phi = phi_nodes (bb), var = PENDING_STMT (e);
3767 phi;
3768 phi = PHI_CHAIN (phi), var = TREE_CHAIN (var))
3769 add_phi_arg (&phi, TREE_VALUE (var), e);
3771 PENDING_STMT (e) = NULL;
3776 /* Return true if basic block BB does nothing except pass control
3777 flow to another block and that we can safely insert a label at
3778 the start of the successor block. */
3780 static bool
3781 tree_forwarder_block_p (basic_block bb)
3783 block_stmt_iterator bsi;
3784 edge e;
3785 edge_iterator ei;
3787 /* If we have already determined that this block is not forwardable,
3788 then no further checks are necessary. */
3789 if (! bb_ann (bb)->forwardable)
3790 return false;
3792 /* BB must have a single outgoing normal edge. Otherwise it can not be
3793 a forwarder block. */
3794 if (EDGE_COUNT (bb->succs) != 1
3795 || EDGE_SUCC (bb, 0)->dest == EXIT_BLOCK_PTR
3796 || (EDGE_SUCC (bb, 0)->flags & EDGE_ABNORMAL)
3797 || bb == ENTRY_BLOCK_PTR)
3799 bb_ann (bb)->forwardable = 0;
3800 return false;
3803 /* Successors of the entry block are not forwarders. */
3804 FOR_EACH_EDGE (e, ei, ENTRY_BLOCK_PTR->succs)
3806 if (e->dest == bb)
3808 bb_ann (bb)->forwardable = 0;
3809 return false;
3813 /* BB can not have any PHI nodes. This could potentially be relaxed
3814 early in compilation if we re-rewrote the variables appearing in
3815 any PHI nodes in forwarder blocks. */
3816 if (phi_nodes (bb))
3818 bb_ann (bb)->forwardable = 0;
3819 return false;
3822 /* Now walk through the statements. We can ignore labels, anything else
3823 means this is not a forwarder block. */
3824 for (bsi = bsi_start (bb); !bsi_end_p (bsi); bsi_next (&bsi))
3826 tree stmt = bsi_stmt (bsi);
3828 switch (TREE_CODE (stmt))
3830 case LABEL_EXPR:
3831 if (DECL_NONLOCAL (LABEL_EXPR_LABEL (stmt)))
3832 return false;
3833 break;
3835 default:
3836 bb_ann (bb)->forwardable = 0;
3837 return false;
3841 return true;
3845 /* Thread jumps over empty statements.
3847 This code should _not_ thread over obviously equivalent conditions
3848 as that requires nontrivial updates to the SSA graph. */
3850 static bool
3851 thread_jumps (void)
3853 edge e, last, old;
3854 basic_block bb, dest, tmp, old_dest, dom;
3855 tree phi;
3856 int arg;
3857 bool retval = false;
3859 FOR_EACH_BB (bb)
3860 bb_ann (bb)->forwardable = 1;
3862 FOR_BB_BETWEEN (bb, ENTRY_BLOCK_PTR, EXIT_BLOCK_PTR, next_bb)
3864 unsigned ix;
3866 /* Don't waste time on unreachable blocks. */
3867 if (EDGE_COUNT (bb->preds) == 0)
3868 continue;
3870 /* Nor on forwarders. */
3871 if (tree_forwarder_block_p (bb))
3872 continue;
3874 /* This block is now part of a forwarding path, mark it as not
3875 forwardable so that we can detect loops. This bit will be
3876 reset below. */
3877 bb_ann (bb)->forwardable = 0;
3879 /* Examine each of our block's successors to see if it is
3880 forwardable. */
3881 for (ix = 0; VEC_iterate (edge, bb->succs, ix, e); )
3883 int freq;
3884 gcov_type count;
3886 /* If the edge is abnormal or its destination is not
3887 forwardable, then there's nothing to do. */
3888 if ((e->flags & EDGE_ABNORMAL)
3889 || !tree_forwarder_block_p (e->dest))
3891 ix++;
3892 continue;
3895 count = e->count;
3896 freq = EDGE_FREQUENCY (e);
3898 /* Now walk through as many forwarder block as possible to
3899 find the ultimate destination we want to thread our jump
3900 to. */
3901 last = EDGE_SUCC (e->dest, 0);
3902 bb_ann (e->dest)->forwardable = 0;
3903 for (dest = EDGE_SUCC (e->dest, 0)->dest;
3904 tree_forwarder_block_p (dest);
3905 last = EDGE_SUCC (dest, 0),
3906 dest = EDGE_SUCC (dest, 0)->dest)
3908 /* An infinite loop detected. We redirect the edge anyway, so
3909 that the loop is shrunk into single basic block. */
3910 if (!bb_ann (dest)->forwardable)
3911 break;
3913 if (EDGE_SUCC (dest, 0)->dest == EXIT_BLOCK_PTR)
3914 break;
3916 bb_ann (dest)->forwardable = 0;
3917 dest->frequency -= freq;
3918 if (dest->frequency < 0)
3919 dest->frequency = 0;
3920 dest->count -= count;
3921 if (dest->count < 0)
3922 dest->count = 0;
3923 EDGE_SUCC (dest, 0)->count -= count;
3924 if (EDGE_SUCC (dest, 0)->count < 0)
3925 EDGE_SUCC (dest, 0)->count = 0;
3928 /* Reset the forwardable marks to 1. */
3929 for (tmp = e->dest;
3930 tmp != dest;
3931 tmp = EDGE_SUCC (tmp, 0)->dest)
3932 bb_ann (tmp)->forwardable = 1;
3934 if (dest == e->dest)
3936 ix++;
3937 continue;
3940 old = find_edge (bb, dest);
3941 if (old)
3943 /* If there already is an edge, check whether the values
3944 in phi nodes differ. */
3945 if (!phi_alternatives_equal (dest, last, old))
3947 /* The previous block is forwarder. Redirect our jump
3948 to that target instead since we know it has no PHI
3949 nodes that will need updating. */
3950 dest = last->src;
3952 /* That might mean that no forwarding at all is possible. */
3953 if (dest == e->dest)
3955 ix++;
3956 continue;
3959 old = find_edge (bb, dest);
3963 /* Perform the redirection. */
3964 retval = true;
3965 old_dest = e->dest;
3966 e = redirect_edge_and_branch (e, dest);
3968 if (!old)
3970 /* Update PHI nodes. We know that the new argument should
3971 have the same value as the argument associated with LAST.
3972 Otherwise we would have changed our target block above. */
3973 for (phi = phi_nodes (dest); phi; phi = PHI_CHAIN (phi))
3975 arg = phi_arg_from_edge (phi, last);
3976 gcc_assert (arg >= 0);
3977 add_phi_arg (&phi, PHI_ARG_DEF (phi, arg), e);
3981 /* Update the dominators. */
3982 if (dom_computed[CDI_DOMINATORS] >= DOM_CONS_OK)
3984 /* Remove the unreachable blocks (observe that if all blocks
3985 were reachable before, only those in the path we threaded
3986 over and did not have any predecessor outside of the path
3987 become unreachable). */
3988 for (; old_dest != dest; old_dest = tmp)
3990 tmp = EDGE_SUCC (old_dest, 0)->dest;
3992 if (EDGE_COUNT (old_dest->preds) > 0)
3993 break;
3995 delete_basic_block (old_dest);
3997 /* If the dominator of the destination was in the path, set its
3998 dominator to the start of the redirected edge. */
3999 if (get_immediate_dominator (CDI_DOMINATORS, old_dest) == NULL)
4000 set_immediate_dominator (CDI_DOMINATORS, old_dest, bb);
4002 /* Now proceed like if we forwarded just over one edge at a time.
4003 Algorithm for forwarding edge S --> A over edge A --> B then
4006 if (idom (B) == A
4007 && !dominated_by (S, B))
4008 idom (B) = idom (A);
4009 recount_idom (A); */
4011 for (; old_dest != dest; old_dest = tmp)
4013 tmp = EDGE_SUCC (old_dest, 0)->dest;
4015 if (get_immediate_dominator (CDI_DOMINATORS, tmp) == old_dest
4016 && !dominated_by_p (CDI_DOMINATORS, bb, tmp))
4018 dom = get_immediate_dominator (CDI_DOMINATORS, old_dest);
4019 set_immediate_dominator (CDI_DOMINATORS, tmp, dom);
4022 dom = recount_dominator (CDI_DOMINATORS, old_dest);
4023 set_immediate_dominator (CDI_DOMINATORS, old_dest, dom);
4028 /* Reset the forwardable bit on our block since it's no longer in
4029 a forwarding chain path. */
4030 bb_ann (bb)->forwardable = 1;
4033 return retval;
4037 /* Return a non-special label in the head of basic block BLOCK.
4038 Create one if it doesn't exist. */
4040 tree
4041 tree_block_label (basic_block bb)
4043 block_stmt_iterator i, s = bsi_start (bb);
4044 bool first = true;
4045 tree label, stmt;
4047 for (i = s; !bsi_end_p (i); first = false, bsi_next (&i))
4049 stmt = bsi_stmt (i);
4050 if (TREE_CODE (stmt) != LABEL_EXPR)
4051 break;
4052 label = LABEL_EXPR_LABEL (stmt);
4053 if (!DECL_NONLOCAL (label))
4055 if (!first)
4056 bsi_move_before (&i, &s);
4057 return label;
4061 label = create_artificial_label ();
4062 stmt = build1 (LABEL_EXPR, void_type_node, label);
4063 bsi_insert_before (&s, stmt, BSI_NEW_STMT);
4064 return label;
4068 /* Attempt to perform edge redirection by replacing a possibly complex
4069 jump instruction by a goto or by removing the jump completely.
4070 This can apply only if all edges now point to the same block. The
4071 parameters and return values are equivalent to
4072 redirect_edge_and_branch. */
4074 static edge
4075 tree_try_redirect_by_replacing_jump (edge e, basic_block target)
4077 basic_block src = e->src;
4078 edge tmp;
4079 block_stmt_iterator b;
4080 tree stmt;
4081 edge_iterator ei;
4083 /* Verify that all targets will be TARGET. */
4084 FOR_EACH_EDGE (tmp, ei, src->succs)
4086 if (tmp->dest != target && tmp != e)
4087 break;
4090 if (tmp)
4091 return NULL;
4093 b = bsi_last (src);
4094 if (bsi_end_p (b))
4095 return NULL;
4096 stmt = bsi_stmt (b);
4098 if (TREE_CODE (stmt) == COND_EXPR
4099 || TREE_CODE (stmt) == SWITCH_EXPR)
4101 bsi_remove (&b);
4102 e = ssa_redirect_edge (e, target);
4103 e->flags = EDGE_FALLTHRU;
4104 return e;
4107 return NULL;
4111 /* Redirect E to DEST. Return NULL on failure. Otherwise, return the
4112 edge representing the redirected branch. */
4114 static edge
4115 tree_redirect_edge_and_branch (edge e, basic_block dest)
4117 basic_block bb = e->src;
4118 block_stmt_iterator bsi;
4119 edge ret;
4120 tree label, stmt;
4122 if (e->flags & (EDGE_ABNORMAL_CALL | EDGE_EH))
4123 return NULL;
4125 if (e->src != ENTRY_BLOCK_PTR
4126 && (ret = tree_try_redirect_by_replacing_jump (e, dest)))
4127 return ret;
4129 if (e->dest == dest)
4130 return NULL;
4132 label = tree_block_label (dest);
4134 bsi = bsi_last (bb);
4135 stmt = bsi_end_p (bsi) ? NULL : bsi_stmt (bsi);
4137 switch (stmt ? TREE_CODE (stmt) : ERROR_MARK)
4139 case COND_EXPR:
4140 stmt = (e->flags & EDGE_TRUE_VALUE
4141 ? COND_EXPR_THEN (stmt)
4142 : COND_EXPR_ELSE (stmt));
4143 GOTO_DESTINATION (stmt) = label;
4144 break;
4146 case GOTO_EXPR:
4147 /* No non-abnormal edges should lead from a non-simple goto, and
4148 simple ones should be represented implicitly. */
4149 gcc_unreachable ();
4151 case SWITCH_EXPR:
4153 tree vec = SWITCH_LABELS (stmt);
4154 size_t i, n = TREE_VEC_LENGTH (vec);
4156 for (i = 0; i < n; ++i)
4158 tree elt = TREE_VEC_ELT (vec, i);
4159 if (label_to_block (CASE_LABEL (elt)) == e->dest)
4160 CASE_LABEL (elt) = label;
4163 break;
4165 case RETURN_EXPR:
4166 bsi_remove (&bsi);
4167 e->flags |= EDGE_FALLTHRU;
4168 break;
4170 default:
4171 /* Otherwise it must be a fallthru edge, and we don't need to
4172 do anything besides redirecting it. */
4173 gcc_assert (e->flags & EDGE_FALLTHRU);
4174 break;
4177 /* Update/insert PHI nodes as necessary. */
4179 /* Now update the edges in the CFG. */
4180 e = ssa_redirect_edge (e, dest);
4182 return e;
4186 /* Simple wrapper, as we can always redirect fallthru edges. */
4188 static basic_block
4189 tree_redirect_edge_and_branch_force (edge e, basic_block dest)
4191 e = tree_redirect_edge_and_branch (e, dest);
4192 gcc_assert (e);
4194 return NULL;
4198 /* Splits basic block BB after statement STMT (but at least after the
4199 labels). If STMT is NULL, BB is split just after the labels. */
4201 static basic_block
4202 tree_split_block (basic_block bb, void *stmt)
4204 block_stmt_iterator bsi, bsi_tgt;
4205 tree act;
4206 basic_block new_bb;
4207 edge e;
4208 edge_iterator ei;
4210 new_bb = create_empty_bb (bb);
4212 /* Redirect the outgoing edges. */
4213 new_bb->succs = bb->succs;
4214 bb->succs = NULL;
4215 FOR_EACH_EDGE (e, ei, new_bb->succs)
4217 e->src = new_bb;
4220 if (stmt && TREE_CODE ((tree) stmt) == LABEL_EXPR)
4221 stmt = NULL;
4223 /* Move everything from BSI to the new basic block. */
4224 for (bsi = bsi_start (bb); !bsi_end_p (bsi); bsi_next (&bsi))
4226 act = bsi_stmt (bsi);
4227 if (TREE_CODE (act) == LABEL_EXPR)
4228 continue;
4230 if (!stmt)
4231 break;
4233 if (stmt == act)
4235 bsi_next (&bsi);
4236 break;
4240 bsi_tgt = bsi_start (new_bb);
4241 while (!bsi_end_p (bsi))
4243 act = bsi_stmt (bsi);
4244 bsi_remove (&bsi);
4245 bsi_insert_after (&bsi_tgt, act, BSI_NEW_STMT);
4248 return new_bb;
4252 /* Moves basic block BB after block AFTER. */
4254 static bool
4255 tree_move_block_after (basic_block bb, basic_block after)
4257 if (bb->prev_bb == after)
4258 return true;
4260 unlink_block (bb);
4261 link_block (bb, after);
4263 return true;
4267 /* Return true if basic_block can be duplicated. */
4269 static bool
4270 tree_can_duplicate_bb_p (basic_block bb ATTRIBUTE_UNUSED)
4272 return true;
4275 /* Create a duplicate of the basic block BB. NOTE: This does not
4276 preserve SSA form. */
4278 static basic_block
4279 tree_duplicate_bb (basic_block bb)
4281 basic_block new_bb;
4282 block_stmt_iterator bsi, bsi_tgt;
4283 tree phi, val;
4284 ssa_op_iter op_iter;
4286 new_bb = create_empty_bb (EXIT_BLOCK_PTR->prev_bb);
4288 /* First copy the phi nodes. We do not copy phi node arguments here,
4289 since the edges are not ready yet. Keep the chain of phi nodes in
4290 the same order, so that we can add them later. */
4291 for (phi = phi_nodes (bb); phi; phi = TREE_CHAIN (phi))
4293 mark_for_rewrite (PHI_RESULT (phi));
4294 create_phi_node (PHI_RESULT (phi), new_bb);
4296 set_phi_nodes (new_bb, nreverse (phi_nodes (new_bb)));
4298 bsi_tgt = bsi_start (new_bb);
4299 for (bsi = bsi_start (bb); !bsi_end_p (bsi); bsi_next (&bsi))
4301 tree stmt = bsi_stmt (bsi);
4302 tree copy;
4304 if (TREE_CODE (stmt) == LABEL_EXPR)
4305 continue;
4307 /* Record the definitions. */
4308 get_stmt_operands (stmt);
4310 FOR_EACH_SSA_TREE_OPERAND (val, stmt, op_iter, SSA_OP_ALL_DEFS)
4311 mark_for_rewrite (val);
4313 copy = unshare_expr (stmt);
4315 /* Copy also the virtual operands. */
4316 get_stmt_ann (copy);
4317 copy_virtual_operands (copy, stmt);
4319 bsi_insert_after (&bsi_tgt, copy, BSI_NEW_STMT);
4322 return new_bb;
4325 /* Basic block BB_COPY was created by code duplication. Add phi node
4326 arguments for edges going out of BB_COPY. The blocks that were
4327 duplicated have rbi->duplicated set to one. */
4329 void
4330 add_phi_args_after_copy_bb (basic_block bb_copy)
4332 basic_block bb, dest;
4333 edge e, e_copy;
4334 edge_iterator ei;
4335 tree phi, phi_copy, phi_next, def;
4337 bb = bb_copy->rbi->original;
4339 FOR_EACH_EDGE (e_copy, ei, bb_copy->succs)
4341 if (!phi_nodes (e_copy->dest))
4342 continue;
4344 if (e_copy->dest->rbi->duplicated)
4345 dest = e_copy->dest->rbi->original;
4346 else
4347 dest = e_copy->dest;
4349 e = find_edge (bb, dest);
4350 if (!e)
4352 /* During loop unrolling the target of the latch edge is copied.
4353 In this case we are not looking for edge to dest, but to
4354 duplicated block whose original was dest. */
4355 FOR_EACH_EDGE (e, ei, bb->succs)
4356 if (e->dest->rbi->duplicated
4357 && e->dest->rbi->original == dest)
4358 break;
4360 gcc_assert (e != NULL);
4363 for (phi = phi_nodes (e->dest), phi_copy = phi_nodes (e_copy->dest);
4364 phi;
4365 phi = phi_next, phi_copy = TREE_CHAIN (phi_copy))
4367 phi_next = TREE_CHAIN (phi);
4369 gcc_assert (PHI_RESULT (phi) == PHI_RESULT (phi_copy));
4370 def = PHI_ARG_DEF_FROM_EDGE (phi, e);
4371 add_phi_arg (&phi_copy, def, e_copy);
4376 /* Blocks in REGION_COPY array of length N_REGION were created by
4377 duplication of basic blocks. Add phi node arguments for edges
4378 going from these blocks. */
4380 void
4381 add_phi_args_after_copy (basic_block *region_copy, unsigned n_region)
4383 unsigned i;
4385 for (i = 0; i < n_region; i++)
4386 region_copy[i]->rbi->duplicated = 1;
4388 for (i = 0; i < n_region; i++)
4389 add_phi_args_after_copy_bb (region_copy[i]);
4391 for (i = 0; i < n_region; i++)
4392 region_copy[i]->rbi->duplicated = 0;
4395 /* Maps the old ssa name FROM_NAME to TO_NAME. */
4397 struct ssa_name_map_entry
4399 tree from_name;
4400 tree to_name;
4403 /* Hash function for ssa_name_map_entry. */
4405 static hashval_t
4406 ssa_name_map_entry_hash (const void *entry)
4408 const struct ssa_name_map_entry *en = entry;
4409 return SSA_NAME_VERSION (en->from_name);
4412 /* Equality function for ssa_name_map_entry. */
4414 static int
4415 ssa_name_map_entry_eq (const void *in_table, const void *ssa_name)
4417 const struct ssa_name_map_entry *en = in_table;
4419 return en->from_name == ssa_name;
4422 /* Allocate duplicates of ssa names in list DEFINITIONS and store the mapping
4423 to MAP. */
4425 void
4426 allocate_ssa_names (bitmap definitions, htab_t *map)
4428 tree name;
4429 struct ssa_name_map_entry *entry;
4430 PTR *slot;
4431 unsigned ver;
4433 if (!*map)
4434 *map = htab_create (10, ssa_name_map_entry_hash,
4435 ssa_name_map_entry_eq, free);
4436 EXECUTE_IF_SET_IN_BITMAP (definitions, 0, ver,
4438 name = ssa_name (ver);
4439 slot = htab_find_slot_with_hash (*map, name, SSA_NAME_VERSION (name),
4440 INSERT);
4441 if (*slot)
4442 entry = *slot;
4443 else
4445 entry = xmalloc (sizeof (struct ssa_name_map_entry));
4446 entry->from_name = name;
4447 *slot = entry;
4449 entry->to_name = duplicate_ssa_name (name, SSA_NAME_DEF_STMT (name));
4453 /* Rewrite the definition DEF in statement STMT to new ssa name as specified
4454 by the mapping MAP. */
4456 static void
4457 rewrite_to_new_ssa_names_def (def_operand_p def, tree stmt, htab_t map)
4459 tree name = DEF_FROM_PTR (def);
4460 struct ssa_name_map_entry *entry;
4462 gcc_assert (TREE_CODE (name) == SSA_NAME);
4464 entry = htab_find_with_hash (map, name, SSA_NAME_VERSION (name));
4465 if (!entry)
4466 return;
4468 SET_DEF (def, entry->to_name);
4469 SSA_NAME_DEF_STMT (entry->to_name) = stmt;
4472 /* Rewrite the USE to new ssa name as specified by the mapping MAP. */
4474 static void
4475 rewrite_to_new_ssa_names_use (use_operand_p use, htab_t map)
4477 tree name = USE_FROM_PTR (use);
4478 struct ssa_name_map_entry *entry;
4480 if (TREE_CODE (name) != SSA_NAME)
4481 return;
4483 entry = htab_find_with_hash (map, name, SSA_NAME_VERSION (name));
4484 if (!entry)
4485 return;
4487 SET_USE (use, entry->to_name);
4490 /* Rewrite the ssa names in basic block BB to new ones as specified by the
4491 mapping MAP. */
4493 void
4494 rewrite_to_new_ssa_names_bb (basic_block bb, htab_t map)
4496 unsigned i;
4497 edge e;
4498 edge_iterator ei;
4499 tree phi, stmt;
4500 block_stmt_iterator bsi;
4501 use_optype uses;
4502 vuse_optype vuses;
4503 def_optype defs;
4504 v_may_def_optype v_may_defs;
4505 v_must_def_optype v_must_defs;
4506 stmt_ann_t ann;
4508 FOR_EACH_EDGE (e, ei, bb->preds)
4509 if (e->flags & EDGE_ABNORMAL)
4510 break;
4512 for (phi = phi_nodes (bb); phi; phi = TREE_CHAIN (phi))
4514 rewrite_to_new_ssa_names_def (PHI_RESULT_PTR (phi), phi, map);
4515 if (e)
4516 SSA_NAME_OCCURS_IN_ABNORMAL_PHI (PHI_RESULT (phi)) = 1;
4519 for (bsi = bsi_start (bb); !bsi_end_p (bsi); bsi_next (&bsi))
4521 stmt = bsi_stmt (bsi);
4522 get_stmt_operands (stmt);
4523 ann = stmt_ann (stmt);
4525 uses = USE_OPS (ann);
4526 for (i = 0; i < NUM_USES (uses); i++)
4527 rewrite_to_new_ssa_names_use (USE_OP_PTR (uses, i), map);
4529 defs = DEF_OPS (ann);
4530 for (i = 0; i < NUM_DEFS (defs); i++)
4531 rewrite_to_new_ssa_names_def (DEF_OP_PTR (defs, i), stmt, map);
4533 vuses = VUSE_OPS (ann);
4534 for (i = 0; i < NUM_VUSES (vuses); i++)
4535 rewrite_to_new_ssa_names_use (VUSE_OP_PTR (vuses, i), map);
4537 v_may_defs = V_MAY_DEF_OPS (ann);
4538 for (i = 0; i < NUM_V_MAY_DEFS (v_may_defs); i++)
4540 rewrite_to_new_ssa_names_use
4541 (V_MAY_DEF_OP_PTR (v_may_defs, i), map);
4542 rewrite_to_new_ssa_names_def
4543 (V_MAY_DEF_RESULT_PTR (v_may_defs, i), stmt, map);
4546 v_must_defs = V_MUST_DEF_OPS (ann);
4547 for (i = 0; i < NUM_V_MUST_DEFS (v_must_defs); i++)
4548 rewrite_to_new_ssa_names_def
4549 (V_MUST_DEF_OP_PTR (v_must_defs, i), stmt, map);
4552 FOR_EACH_EDGE (e, ei, bb->succs)
4553 for (phi = phi_nodes (e->dest); phi; phi = TREE_CHAIN (phi))
4555 rewrite_to_new_ssa_names_use
4556 (PHI_ARG_DEF_PTR_FROM_EDGE (phi, e), map);
4558 if (e->flags & EDGE_ABNORMAL)
4560 tree op = PHI_ARG_DEF_FROM_EDGE (phi, e);
4561 SSA_NAME_OCCURS_IN_ABNORMAL_PHI (op) = 1;
4566 /* Rewrite the ssa names in N_REGION blocks REGION to the new ones as specified
4567 by the mapping MAP. */
4569 void
4570 rewrite_to_new_ssa_names (basic_block *region, unsigned n_region, htab_t map)
4572 unsigned r;
4574 for (r = 0; r < n_region; r++)
4575 rewrite_to_new_ssa_names_bb (region[r], map);
4578 /* Duplicates a REGION (set of N_REGION basic blocks) with just a single
4579 important exit edge EXIT. By important we mean that no SSA name defined
4580 inside region is live over the other exit edges of the region. All entry
4581 edges to the region must go to ENTRY->dest. The edge ENTRY is redirected
4582 to the duplicate of the region. SSA form, dominance and loop information
4583 is updated. The new basic blocks are stored to REGION_COPY in the same
4584 order as they had in REGION, provided that REGION_COPY is not NULL.
4585 The function returns false if it is unable to copy the region,
4586 true otherwise. */
4588 bool
4589 tree_duplicate_sese_region (edge entry, edge exit,
4590 basic_block *region, unsigned n_region,
4591 basic_block *region_copy)
4593 unsigned i, n_doms, ver;
4594 bool free_region_copy = false, copying_header = false;
4595 struct loop *loop = entry->dest->loop_father;
4596 edge exit_copy;
4597 bitmap definitions;
4598 tree phi, var;
4599 basic_block *doms;
4600 htab_t ssa_name_map = NULL;
4601 edge redirected;
4603 if (!can_copy_bbs_p (region, n_region))
4604 return false;
4606 /* Some sanity checking. Note that we do not check for all possible
4607 missuses of the functions. I.e. if you ask to copy something weird,
4608 it will work, but the state of structures probably will not be
4609 correct. */
4611 for (i = 0; i < n_region; i++)
4613 /* We do not handle subloops, i.e. all the blocks must belong to the
4614 same loop. */
4615 if (region[i]->loop_father != loop)
4616 return false;
4618 if (region[i] != entry->dest
4619 && region[i] == loop->header)
4620 return false;
4623 loop->copy = loop;
4625 /* In case the function is used for loop header copying (which is the primary
4626 use), ensure that EXIT and its copy will be new latch and entry edges. */
4627 if (loop->header == entry->dest)
4629 copying_header = true;
4630 loop->copy = loop->outer;
4632 if (!dominated_by_p (CDI_DOMINATORS, loop->latch, exit->src))
4633 return false;
4635 for (i = 0; i < n_region; i++)
4636 if (region[i] != exit->src
4637 && dominated_by_p (CDI_DOMINATORS, region[i], exit->src))
4638 return false;
4641 if (!region_copy)
4643 region_copy = xmalloc (sizeof (basic_block) * n_region);
4644 free_region_copy = true;
4647 gcc_assert (!any_marked_for_rewrite_p ());
4649 /* Record blocks outside the region that are duplicated by something
4650 inside. */
4651 doms = xmalloc (sizeof (basic_block) * n_basic_blocks);
4652 n_doms = get_dominated_by_region (CDI_DOMINATORS, region, n_region, doms);
4654 copy_bbs (region, n_region, region_copy, &exit, 1, &exit_copy, loop);
4655 definitions = marked_ssa_names ();
4657 if (copying_header)
4659 loop->header = exit->dest;
4660 loop->latch = exit->src;
4663 /* Redirect the entry and add the phi node arguments. */
4664 redirected = redirect_edge_and_branch (entry, entry->dest->rbi->copy);
4665 gcc_assert (redirected != NULL);
4666 for (phi = phi_nodes (entry->dest), var = PENDING_STMT (entry);
4667 phi;
4668 phi = TREE_CHAIN (phi), var = TREE_CHAIN (var))
4669 add_phi_arg (&phi, TREE_VALUE (var), entry);
4670 PENDING_STMT (entry) = NULL;
4672 /* Concerning updating of dominators: We must recount dominators
4673 for entry block and its copy. Anything that is outside of the region, but
4674 was dominated by something inside needs recounting as well. */
4675 set_immediate_dominator (CDI_DOMINATORS, entry->dest, entry->src);
4676 doms[n_doms++] = entry->dest->rbi->original;
4677 iterate_fix_dominators (CDI_DOMINATORS, doms, n_doms);
4678 free (doms);
4680 /* Add the other phi node arguments. */
4681 add_phi_args_after_copy (region_copy, n_region);
4683 /* Add phi nodes for definitions at exit. TODO -- once we have immediate
4684 uses, it should be possible to emit phi nodes just for definitions that
4685 are used outside region. */
4686 EXECUTE_IF_SET_IN_BITMAP (definitions, 0, ver,
4688 tree name = ssa_name (ver);
4690 phi = create_phi_node (name, exit->dest);
4691 add_phi_arg (&phi, name, exit);
4692 add_phi_arg (&phi, name, exit_copy);
4694 SSA_NAME_DEF_STMT (name) = phi;
4697 /* And create new definitions inside region and its copy. TODO -- once we
4698 have immediate uses, it might be better to leave definitions in region
4699 unchanged, create new ssa names for phi nodes on exit, and rewrite
4700 the uses, to avoid changing the copied region. */
4701 allocate_ssa_names (definitions, &ssa_name_map);
4702 rewrite_to_new_ssa_names (region, n_region, ssa_name_map);
4703 allocate_ssa_names (definitions, &ssa_name_map);
4704 rewrite_to_new_ssa_names (region_copy, n_region, ssa_name_map);
4705 htab_delete (ssa_name_map);
4707 if (free_region_copy)
4708 free (region_copy);
4710 unmark_all_for_rewrite ();
4711 BITMAP_XFREE (definitions);
4713 return true;
4716 /* Dump FUNCTION_DECL FN to file FILE using FLAGS (see TDF_* in tree.h) */
4718 void
4719 dump_function_to_file (tree fn, FILE *file, int flags)
4721 tree arg, vars, var;
4722 bool ignore_topmost_bind = false, any_var = false;
4723 basic_block bb;
4724 tree chain;
4726 fprintf (file, "%s (", lang_hooks.decl_printable_name (fn, 2));
4728 arg = DECL_ARGUMENTS (fn);
4729 while (arg)
4731 print_generic_expr (file, arg, dump_flags);
4732 if (TREE_CHAIN (arg))
4733 fprintf (file, ", ");
4734 arg = TREE_CHAIN (arg);
4736 fprintf (file, ")\n");
4738 if (flags & TDF_RAW)
4740 dump_node (fn, TDF_SLIM | flags, file);
4741 return;
4744 /* When GIMPLE is lowered, the variables are no longer available in
4745 BIND_EXPRs, so display them separately. */
4746 if (cfun && cfun->unexpanded_var_list)
4748 ignore_topmost_bind = true;
4750 fprintf (file, "{\n");
4751 for (vars = cfun->unexpanded_var_list; vars; vars = TREE_CHAIN (vars))
4753 var = TREE_VALUE (vars);
4755 print_generic_decl (file, var, flags);
4756 fprintf (file, "\n");
4758 any_var = true;
4762 if (basic_block_info)
4764 /* Make a CFG based dump. */
4765 check_bb_profile (ENTRY_BLOCK_PTR, file);
4766 if (!ignore_topmost_bind)
4767 fprintf (file, "{\n");
4769 if (any_var && n_basic_blocks)
4770 fprintf (file, "\n");
4772 FOR_EACH_BB (bb)
4773 dump_generic_bb (file, bb, 2, flags);
4775 fprintf (file, "}\n");
4776 check_bb_profile (EXIT_BLOCK_PTR, file);
4778 else
4780 int indent;
4782 /* Make a tree based dump. */
4783 chain = DECL_SAVED_TREE (fn);
4785 if (TREE_CODE (chain) == BIND_EXPR)
4787 if (ignore_topmost_bind)
4789 chain = BIND_EXPR_BODY (chain);
4790 indent = 2;
4792 else
4793 indent = 0;
4795 else
4797 if (!ignore_topmost_bind)
4798 fprintf (file, "{\n");
4799 indent = 2;
4802 if (any_var)
4803 fprintf (file, "\n");
4805 print_generic_stmt_indented (file, chain, flags, indent);
4806 if (ignore_topmost_bind)
4807 fprintf (file, "}\n");
4810 fprintf (file, "\n\n");
4814 /* Pretty print of the loops intermediate representation. */
4815 static void print_loop (FILE *, struct loop *, int);
4816 static void print_pred_bbs (FILE *, basic_block bb);
4817 static void print_succ_bbs (FILE *, basic_block bb);
4820 /* Print the predecessors indexes of edge E on FILE. */
4822 static void
4823 print_pred_bbs (FILE *file, basic_block bb)
4825 edge e;
4826 edge_iterator ei;
4828 FOR_EACH_EDGE (e, ei, bb->preds)
4830 fprintf (file, "bb_%d", e->src->index);
4835 /* Print the successors indexes of edge E on FILE. */
4837 static void
4838 print_succ_bbs (FILE *file, basic_block bb)
4840 edge e;
4841 edge_iterator ei;
4843 FOR_EACH_EDGE (e, ei, bb->succs)
4845 fprintf (file, "bb_%d", e->src->index);
4850 /* Pretty print LOOP on FILE, indented INDENT spaces. */
4852 static void
4853 print_loop (FILE *file, struct loop *loop, int indent)
4855 char *s_indent;
4856 basic_block bb;
4858 if (loop == NULL)
4859 return;
4861 s_indent = (char *) alloca ((size_t) indent + 1);
4862 memset ((void *) s_indent, ' ', (size_t) indent);
4863 s_indent[indent] = '\0';
4865 /* Print the loop's header. */
4866 fprintf (file, "%sloop_%d\n", s_indent, loop->num);
4868 /* Print the loop's body. */
4869 fprintf (file, "%s{\n", s_indent);
4870 FOR_EACH_BB (bb)
4871 if (bb->loop_father == loop)
4873 /* Print the basic_block's header. */
4874 fprintf (file, "%s bb_%d (preds = {", s_indent, bb->index);
4875 print_pred_bbs (file, bb);
4876 fprintf (file, "}, succs = {");
4877 print_succ_bbs (file, bb);
4878 fprintf (file, "})\n");
4880 /* Print the basic_block's body. */
4881 fprintf (file, "%s {\n", s_indent);
4882 tree_dump_bb (bb, file, indent + 4);
4883 fprintf (file, "%s }\n", s_indent);
4886 print_loop (file, loop->inner, indent + 2);
4887 fprintf (file, "%s}\n", s_indent);
4888 print_loop (file, loop->next, indent);
4892 /* Follow a CFG edge from the entry point of the program, and on entry
4893 of a loop, pretty print the loop structure on FILE. */
4895 void
4896 print_loop_ir (FILE *file)
4898 basic_block bb;
4900 bb = BASIC_BLOCK (0);
4901 if (bb && bb->loop_father)
4902 print_loop (file, bb->loop_father, 0);
4906 /* Debugging loops structure at tree level. */
4908 void
4909 debug_loop_ir (void)
4911 print_loop_ir (stderr);
4915 /* Return true if BB ends with a call, possibly followed by some
4916 instructions that must stay with the call. Return false,
4917 otherwise. */
4919 static bool
4920 tree_block_ends_with_call_p (basic_block bb)
4922 block_stmt_iterator bsi = bsi_last (bb);
4923 return get_call_expr_in (bsi_stmt (bsi)) != NULL;
4927 /* Return true if BB ends with a conditional branch. Return false,
4928 otherwise. */
4930 static bool
4931 tree_block_ends_with_condjump_p (basic_block bb)
4933 tree stmt = tsi_stmt (bsi_last (bb).tsi);
4934 return (TREE_CODE (stmt) == COND_EXPR);
4938 /* Return true if we need to add fake edge to exit at statement T.
4939 Helper function for tree_flow_call_edges_add. */
4941 static bool
4942 need_fake_edge_p (tree t)
4944 tree call;
4946 /* NORETURN and LONGJMP calls already have an edge to exit.
4947 CONST, PURE and ALWAYS_RETURN calls do not need one.
4948 We don't currently check for CONST and PURE here, although
4949 it would be a good idea, because those attributes are
4950 figured out from the RTL in mark_constant_function, and
4951 the counter incrementation code from -fprofile-arcs
4952 leads to different results from -fbranch-probabilities. */
4953 call = get_call_expr_in (t);
4954 if (call
4955 && !(call_expr_flags (call) &
4956 (ECF_NORETURN | ECF_LONGJMP | ECF_ALWAYS_RETURN)))
4957 return true;
4959 if (TREE_CODE (t) == ASM_EXPR
4960 && (ASM_VOLATILE_P (t) || ASM_INPUT_P (t)))
4961 return true;
4963 return false;
4967 /* Add fake edges to the function exit for any non constant and non
4968 noreturn calls, volatile inline assembly in the bitmap of blocks
4969 specified by BLOCKS or to the whole CFG if BLOCKS is zero. Return
4970 the number of blocks that were split.
4972 The goal is to expose cases in which entering a basic block does
4973 not imply that all subsequent instructions must be executed. */
4975 static int
4976 tree_flow_call_edges_add (sbitmap blocks)
4978 int i;
4979 int blocks_split = 0;
4980 int last_bb = last_basic_block;
4981 bool check_last_block = false;
4983 if (n_basic_blocks == 0)
4984 return 0;
4986 if (! blocks)
4987 check_last_block = true;
4988 else
4989 check_last_block = TEST_BIT (blocks, EXIT_BLOCK_PTR->prev_bb->index);
4991 /* In the last basic block, before epilogue generation, there will be
4992 a fallthru edge to EXIT. Special care is required if the last insn
4993 of the last basic block is a call because make_edge folds duplicate
4994 edges, which would result in the fallthru edge also being marked
4995 fake, which would result in the fallthru edge being removed by
4996 remove_fake_edges, which would result in an invalid CFG.
4998 Moreover, we can't elide the outgoing fake edge, since the block
4999 profiler needs to take this into account in order to solve the minimal
5000 spanning tree in the case that the call doesn't return.
5002 Handle this by adding a dummy instruction in a new last basic block. */
5003 if (check_last_block)
5005 edge_iterator ei;
5006 basic_block bb = EXIT_BLOCK_PTR->prev_bb;
5007 block_stmt_iterator bsi = bsi_last (bb);
5008 tree t = NULL_TREE;
5009 if (!bsi_end_p (bsi))
5010 t = bsi_stmt (bsi);
5012 if (need_fake_edge_p (t))
5014 edge e;
5016 FOR_EACH_EDGE (e, ei, bb->succs)
5018 if (e->dest == EXIT_BLOCK_PTR)
5020 bsi_insert_on_edge (e, build_empty_stmt ());
5021 bsi_commit_edge_inserts ((int *)NULL);
5022 break;
5028 /* Now add fake edges to the function exit for any non constant
5029 calls since there is no way that we can determine if they will
5030 return or not... */
5031 for (i = 0; i < last_bb; i++)
5033 basic_block bb = BASIC_BLOCK (i);
5034 block_stmt_iterator bsi;
5035 tree stmt, last_stmt;
5037 if (!bb)
5038 continue;
5040 if (blocks && !TEST_BIT (blocks, i))
5041 continue;
5043 bsi = bsi_last (bb);
5044 if (!bsi_end_p (bsi))
5046 last_stmt = bsi_stmt (bsi);
5049 stmt = bsi_stmt (bsi);
5050 if (need_fake_edge_p (stmt))
5052 edge e;
5053 /* The handling above of the final block before the
5054 epilogue should be enough to verify that there is
5055 no edge to the exit block in CFG already.
5056 Calling make_edge in such case would cause us to
5057 mark that edge as fake and remove it later. */
5058 #ifdef ENABLE_CHECKING
5059 if (stmt == last_stmt)
5061 edge_iterator ei;
5062 FOR_EACH_EDGE (e, ei, bb->succs)
5063 gcc_assert (e->dest != EXIT_BLOCK_PTR);
5065 #endif
5067 /* Note that the following may create a new basic block
5068 and renumber the existing basic blocks. */
5069 if (stmt != last_stmt)
5071 e = split_block (bb, stmt);
5072 if (e)
5073 blocks_split++;
5075 make_edge (bb, EXIT_BLOCK_PTR, EDGE_FAKE);
5077 bsi_prev (&bsi);
5079 while (!bsi_end_p (bsi));
5083 if (blocks_split)
5084 verify_flow_info ();
5086 return blocks_split;
5089 bool
5090 tree_purge_dead_eh_edges (basic_block bb)
5092 bool changed = false;
5093 edge e;
5094 unsigned ix;
5095 tree stmt = last_stmt (bb);
5097 if (stmt && tree_can_throw_internal (stmt))
5098 return false;
5100 for (ix = 0; VEC_iterate (edge, bb->succs, ix, e); )
5102 if (e->flags & EDGE_EH)
5104 ssa_remove_edge (e);
5105 changed = true;
5107 else
5108 ix++;
5111 return changed;
5114 bool
5115 tree_purge_all_dead_eh_edges (bitmap blocks)
5117 bool changed = false;
5118 size_t i;
5120 EXECUTE_IF_SET_IN_BITMAP (blocks, 0, i,
5121 { changed |= tree_purge_dead_eh_edges (BASIC_BLOCK (i)); });
5123 return changed;
5126 struct cfg_hooks tree_cfg_hooks = {
5127 "tree",
5128 tree_verify_flow_info,
5129 tree_dump_bb, /* dump_bb */
5130 create_bb, /* create_basic_block */
5131 tree_redirect_edge_and_branch,/* redirect_edge_and_branch */
5132 tree_redirect_edge_and_branch_force,/* redirect_edge_and_branch_force */
5133 remove_bb, /* delete_basic_block */
5134 tree_split_block, /* split_block */
5135 tree_move_block_after, /* move_block_after */
5136 tree_can_merge_blocks_p, /* can_merge_blocks_p */
5137 tree_merge_blocks, /* merge_blocks */
5138 tree_predict_edge, /* predict_edge */
5139 tree_predicted_by_p, /* predicted_by_p */
5140 tree_can_duplicate_bb_p, /* can_duplicate_block_p */
5141 tree_duplicate_bb, /* duplicate_block */
5142 tree_split_edge, /* split_edge */
5143 tree_make_forwarder_block, /* make_forward_block */
5144 NULL, /* tidy_fallthru_edge */
5145 tree_block_ends_with_call_p, /* block_ends_with_call_p */
5146 tree_block_ends_with_condjump_p, /* block_ends_with_condjump_p */
5147 tree_flow_call_edges_add /* flow_call_edges_add */
5151 /* Split all critical edges. */
5153 static void
5154 split_critical_edges (void)
5156 basic_block bb;
5157 edge e;
5158 edge_iterator ei;
5160 FOR_ALL_BB (bb)
5162 FOR_EACH_EDGE (e, ei, bb->succs)
5164 if (EDGE_CRITICAL_P (e) && !(e->flags & EDGE_ABNORMAL))
5166 split_edge (e);
5172 struct tree_opt_pass pass_split_crit_edges =
5174 "crited", /* name */
5175 NULL, /* gate */
5176 split_critical_edges, /* execute */
5177 NULL, /* sub */
5178 NULL, /* next */
5179 0, /* static_pass_number */
5180 TV_TREE_SPLIT_EDGES, /* tv_id */
5181 PROP_cfg, /* properties required */
5182 PROP_no_crit_edges, /* properties_provided */
5183 0, /* properties_destroyed */
5184 0, /* todo_flags_start */
5185 TODO_dump_func, /* todo_flags_finish */
5186 0 /* letter */
5190 /* Return EXP if it is a valid GIMPLE rvalue, else gimplify it into
5191 a temporary, make sure and register it to be renamed if necessary,
5192 and finally return the temporary. Put the statements to compute
5193 EXP before the current statement in BSI. */
5195 tree
5196 gimplify_val (block_stmt_iterator *bsi, tree type, tree exp)
5198 tree t, new_stmt, orig_stmt;
5200 if (is_gimple_val (exp))
5201 return exp;
5203 t = make_rename_temp (type, NULL);
5204 new_stmt = build (MODIFY_EXPR, type, t, exp);
5206 orig_stmt = bsi_stmt (*bsi);
5207 SET_EXPR_LOCUS (new_stmt, EXPR_LOCUS (orig_stmt));
5208 TREE_BLOCK (new_stmt) = TREE_BLOCK (orig_stmt);
5210 bsi_insert_before (bsi, new_stmt, BSI_SAME_STMT);
5212 return t;
5215 /* Build a ternary operation and gimplify it. Emit code before BSI.
5216 Return the gimple_val holding the result. */
5218 tree
5219 gimplify_build3 (block_stmt_iterator *bsi, enum tree_code code,
5220 tree type, tree a, tree b, tree c)
5222 tree ret;
5224 ret = fold (build3 (code, type, a, b, c));
5225 STRIP_NOPS (ret);
5227 return gimplify_val (bsi, type, ret);
5230 /* Build a binary operation and gimplify it. Emit code before BSI.
5231 Return the gimple_val holding the result. */
5233 tree
5234 gimplify_build2 (block_stmt_iterator *bsi, enum tree_code code,
5235 tree type, tree a, tree b)
5237 tree ret;
5239 ret = fold (build2 (code, type, a, b));
5240 STRIP_NOPS (ret);
5242 return gimplify_val (bsi, type, ret);
5245 /* Build a unary operation and gimplify it. Emit code before BSI.
5246 Return the gimple_val holding the result. */
5248 tree
5249 gimplify_build1 (block_stmt_iterator *bsi, enum tree_code code, tree type,
5250 tree a)
5252 tree ret;
5254 ret = fold (build1 (code, type, a));
5255 STRIP_NOPS (ret);
5257 return gimplify_val (bsi, type, ret);
5262 /* Emit return warnings. */
5264 static void
5265 execute_warn_function_return (void)
5267 #ifdef USE_MAPPED_LOCATION
5268 source_location location;
5269 #else
5270 location_t *locus;
5271 #endif
5272 tree last;
5273 edge e;
5274 edge_iterator ei;
5276 if (warn_missing_noreturn
5277 && !TREE_THIS_VOLATILE (cfun->decl)
5278 && EDGE_COUNT (EXIT_BLOCK_PTR->preds) == 0
5279 && !lang_hooks.function.missing_noreturn_ok_p (cfun->decl))
5280 warning ("%Jfunction might be possible candidate for "
5281 "attribute %<noreturn%>",
5282 cfun->decl);
5284 /* If we have a path to EXIT, then we do return. */
5285 if (TREE_THIS_VOLATILE (cfun->decl)
5286 && EDGE_COUNT (EXIT_BLOCK_PTR->preds) > 0)
5288 #ifdef USE_MAPPED_LOCATION
5289 location = UNKNOWN_LOCATION;
5290 #else
5291 locus = NULL;
5292 #endif
5293 FOR_EACH_EDGE (e, ei, EXIT_BLOCK_PTR->preds)
5295 last = last_stmt (e->src);
5296 if (TREE_CODE (last) == RETURN_EXPR
5297 #ifdef USE_MAPPED_LOCATION
5298 && (location = EXPR_LOCATION (last)) != UNKNOWN_LOCATION)
5299 #else
5300 && (locus = EXPR_LOCUS (last)) != NULL)
5301 #endif
5302 break;
5305 #ifdef USE_MAPPED_LOCATION
5306 if (location == UNKNOWN_LOCATION)
5307 location = cfun->function_end_locus;
5308 warning ("%H%<noreturn%> function does return", &location);
5309 #else
5310 if (!locus)
5311 locus = &cfun->function_end_locus;
5312 warning ("%H%<noreturn%> function does return", locus);
5313 #endif
5316 /* If we see "return;" in some basic block, then we do reach the end
5317 without returning a value. */
5318 else if (warn_return_type
5319 && EDGE_COUNT (EXIT_BLOCK_PTR->preds) > 0
5320 && !VOID_TYPE_P (TREE_TYPE (TREE_TYPE (cfun->decl))))
5322 FOR_EACH_EDGE (e, ei, EXIT_BLOCK_PTR->preds)
5324 tree last = last_stmt (e->src);
5325 if (TREE_CODE (last) == RETURN_EXPR
5326 && TREE_OPERAND (last, 0) == NULL)
5328 #ifdef USE_MAPPED_LOCATION
5329 location = EXPR_LOCATION (last);
5330 if (location == UNKNOWN_LOCATION)
5331 location = cfun->function_end_locus;
5332 warning ("%Hcontrol reaches end of non-void function", &location);
5333 #else
5334 locus = EXPR_LOCUS (last);
5335 if (!locus)
5336 locus = &cfun->function_end_locus;
5337 warning ("%Hcontrol reaches end of non-void function", locus);
5338 #endif
5339 break;
5346 /* Given a basic block B which ends with a conditional and has
5347 precisely two successors, determine which of the edges is taken if
5348 the conditional is true and which is taken if the conditional is
5349 false. Set TRUE_EDGE and FALSE_EDGE appropriately. */
5351 void
5352 extract_true_false_edges_from_block (basic_block b,
5353 edge *true_edge,
5354 edge *false_edge)
5356 edge e = EDGE_SUCC (b, 0);
5358 if (e->flags & EDGE_TRUE_VALUE)
5360 *true_edge = e;
5361 *false_edge = EDGE_SUCC (b, 1);
5363 else
5365 *false_edge = e;
5366 *true_edge = EDGE_SUCC (b, 1);
5370 struct tree_opt_pass pass_warn_function_return =
5372 NULL, /* name */
5373 NULL, /* gate */
5374 execute_warn_function_return, /* execute */
5375 NULL, /* sub */
5376 NULL, /* next */
5377 0, /* static_pass_number */
5378 0, /* tv_id */
5379 PROP_cfg, /* properties_required */
5380 0, /* properties_provided */
5381 0, /* properties_destroyed */
5382 0, /* todo_flags_start */
5383 0, /* todo_flags_finish */
5384 0 /* letter */
5387 #include "gt-tree-cfg.h"