* tree.c (operand_equal_for_phi_arg_p): New.
[official-gcc.git] / gcc / tree-cfg.c
blob37a6920b34cf532466fd72711cad83e5df0481f1
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"
47 #include "hashtab.h"
49 /* This file contains functions for building the Control Flow Graph (CFG)
50 for a function tree. */
52 /* Local declarations. */
54 /* Initial capacity for the basic block array. */
55 static const int initial_cfg_capacity = 20;
57 /* Mapping of labels to their associated blocks. This can greatly speed up
58 building of the CFG in code with lots of gotos. */
59 static GTY(()) varray_type label_to_block_map;
61 /* This hash table allows us to efficiently lookup all CASE_LABEL_EXPRs
62 which use a particular edge. The CASE_LABEL_EXPRs are chained together
63 via their TREE_CHAIN field, which we clear after we're done with the
64 hash table to prevent problems with duplication of SWITCH_EXPRs.
66 Access to this list of CASE_LABEL_EXPRs allows us to efficiently
67 update the case vector in response to edge redirections.
69 Right now this table is set up and torn down at key points in the
70 compilation process. It would be nice if we could make the table
71 more persistent. The key is getting notification of changes to
72 the CFG (particularly edge removal, creation and redirection). */
74 struct edge_to_cases_elt
76 /* The edge itself. Necessary for hashing and equality tests. */
77 edge e;
79 /* The case labels associated with this edge. We link these up via
80 their TREE_CHAIN field, then we wipe out the TREE_CHAIN fields
81 when we destroy the hash table. This prevents problems when copying
82 SWITCH_EXPRs. */
83 tree case_labels;
86 static htab_t edge_to_cases;
88 /* CFG statistics. */
89 struct cfg_stats_d
91 long num_merged_labels;
94 static struct cfg_stats_d cfg_stats;
96 /* Nonzero if we found a computed goto while building basic blocks. */
97 static bool found_computed_goto;
99 /* Basic blocks and flowgraphs. */
100 static basic_block create_bb (void *, void *, basic_block);
101 static void create_block_annotation (basic_block);
102 static void free_blocks_annotations (void);
103 static void clear_blocks_annotations (void);
104 static void make_blocks (tree);
105 static void factor_computed_gotos (void);
107 /* Edges. */
108 static void make_edges (void);
109 static void make_ctrl_stmt_edges (basic_block);
110 static void make_exit_edges (basic_block);
111 static void make_cond_expr_edges (basic_block);
112 static void make_switch_expr_edges (basic_block);
113 static void make_goto_expr_edges (basic_block);
114 static edge tree_redirect_edge_and_branch (edge, basic_block);
115 static edge tree_try_redirect_by_replacing_jump (edge, basic_block);
116 static void split_critical_edges (void);
118 /* Various helpers. */
119 static inline bool stmt_starts_bb_p (tree, tree);
120 static int tree_verify_flow_info (void);
121 static void tree_make_forwarder_block (edge);
122 static bool thread_jumps (void);
123 static bool tree_forwarder_block_p (basic_block);
124 static void tree_cfg2vcg (FILE *);
126 /* Flowgraph optimization and cleanup. */
127 static void tree_merge_blocks (basic_block, basic_block);
128 static bool tree_can_merge_blocks_p (basic_block, basic_block);
129 static void remove_bb (basic_block);
130 static bool cleanup_control_flow (void);
131 static bool cleanup_control_expr_graph (basic_block, block_stmt_iterator);
132 static edge find_taken_edge_cond_expr (basic_block, tree);
133 static edge find_taken_edge_switch_expr (basic_block, tree);
134 static tree find_case_label_for_value (tree, tree);
135 static bool phi_alternatives_equal (basic_block, edge, edge);
138 /*---------------------------------------------------------------------------
139 Create basic blocks
140 ---------------------------------------------------------------------------*/
142 /* Entry point to the CFG builder for trees. TP points to the list of
143 statements to be added to the flowgraph. */
145 static void
146 build_tree_cfg (tree *tp)
148 /* Register specific tree functions. */
149 tree_register_cfg_hooks ();
151 /* Initialize rbi_pool. */
152 alloc_rbi_pool ();
154 /* Initialize the basic block array. */
155 init_flow ();
156 profile_status = PROFILE_ABSENT;
157 n_basic_blocks = 0;
158 last_basic_block = 0;
159 VARRAY_BB_INIT (basic_block_info, initial_cfg_capacity, "basic_block_info");
160 memset ((void *) &cfg_stats, 0, sizeof (cfg_stats));
162 /* Build a mapping of labels to their associated blocks. */
163 VARRAY_BB_INIT (label_to_block_map, initial_cfg_capacity,
164 "label to block map");
166 ENTRY_BLOCK_PTR->next_bb = EXIT_BLOCK_PTR;
167 EXIT_BLOCK_PTR->prev_bb = ENTRY_BLOCK_PTR;
169 found_computed_goto = 0;
170 make_blocks (*tp);
172 /* Computed gotos are hell to deal with, especially if there are
173 lots of them with a large number of destinations. So we factor
174 them to a common computed goto location before we build the
175 edge list. After we convert back to normal form, we will un-factor
176 the computed gotos since factoring introduces an unwanted jump. */
177 if (found_computed_goto)
178 factor_computed_gotos ();
180 /* Make sure there is always at least one block, even if it's empty. */
181 if (n_basic_blocks == 0)
182 create_empty_bb (ENTRY_BLOCK_PTR);
184 create_block_annotation (ENTRY_BLOCK_PTR);
185 create_block_annotation (EXIT_BLOCK_PTR);
187 /* Adjust the size of the array. */
188 VARRAY_GROW (basic_block_info, n_basic_blocks);
190 /* To speed up statement iterator walks, we first purge dead labels. */
191 cleanup_dead_labels ();
193 /* Group case nodes to reduce the number of edges.
194 We do this after cleaning up dead labels because otherwise we miss
195 a lot of obvious case merging opportunities. */
196 group_case_labels ();
198 /* Create the edges of the flowgraph. */
199 make_edges ();
201 /* Debugging dumps. */
203 /* Write the flowgraph to a VCG file. */
205 int local_dump_flags;
206 FILE *dump_file = dump_begin (TDI_vcg, &local_dump_flags);
207 if (dump_file)
209 tree_cfg2vcg (dump_file);
210 dump_end (TDI_vcg, dump_file);
214 /* Dump a textual representation of the flowgraph. */
215 if (dump_file)
216 dump_tree_cfg (dump_file, dump_flags);
219 static void
220 execute_build_cfg (void)
222 build_tree_cfg (&DECL_SAVED_TREE (current_function_decl));
225 struct tree_opt_pass pass_build_cfg =
227 "cfg", /* name */
228 NULL, /* gate */
229 execute_build_cfg, /* execute */
230 NULL, /* sub */
231 NULL, /* next */
232 0, /* static_pass_number */
233 TV_TREE_CFG, /* tv_id */
234 PROP_gimple_leh, /* properties_required */
235 PROP_cfg, /* properties_provided */
236 0, /* properties_destroyed */
237 0, /* todo_flags_start */
238 TODO_verify_stmts, /* todo_flags_finish */
239 0 /* letter */
242 /* Search the CFG for any computed gotos. If found, factor them to a
243 common computed goto site. Also record the location of that site so
244 that we can un-factor the gotos after we have converted back to
245 normal form. */
247 static void
248 factor_computed_gotos (void)
250 basic_block bb;
251 tree factored_label_decl = NULL;
252 tree var = NULL;
253 tree factored_computed_goto_label = NULL;
254 tree factored_computed_goto = NULL;
256 /* We know there are one or more computed gotos in this function.
257 Examine the last statement in each basic block to see if the block
258 ends with a computed goto. */
260 FOR_EACH_BB (bb)
262 block_stmt_iterator bsi = bsi_last (bb);
263 tree last;
265 if (bsi_end_p (bsi))
266 continue;
267 last = bsi_stmt (bsi);
269 /* Ignore the computed goto we create when we factor the original
270 computed gotos. */
271 if (last == factored_computed_goto)
272 continue;
274 /* If the last statement is a computed goto, factor it. */
275 if (computed_goto_p (last))
277 tree assignment;
279 /* The first time we find a computed goto we need to create
280 the factored goto block and the variable each original
281 computed goto will use for their goto destination. */
282 if (! factored_computed_goto)
284 basic_block new_bb = create_empty_bb (bb);
285 block_stmt_iterator new_bsi = bsi_start (new_bb);
287 /* Create the destination of the factored goto. Each original
288 computed goto will put its desired destination into this
289 variable and jump to the label we create immediately
290 below. */
291 var = create_tmp_var (ptr_type_node, "gotovar");
293 /* Build a label for the new block which will contain the
294 factored computed goto. */
295 factored_label_decl = create_artificial_label ();
296 factored_computed_goto_label
297 = build1 (LABEL_EXPR, void_type_node, factored_label_decl);
298 bsi_insert_after (&new_bsi, factored_computed_goto_label,
299 BSI_NEW_STMT);
301 /* Build our new computed goto. */
302 factored_computed_goto = build1 (GOTO_EXPR, void_type_node, var);
303 bsi_insert_after (&new_bsi, factored_computed_goto,
304 BSI_NEW_STMT);
307 /* Copy the original computed goto's destination into VAR. */
308 assignment = build (MODIFY_EXPR, ptr_type_node,
309 var, GOTO_DESTINATION (last));
310 bsi_insert_before (&bsi, assignment, BSI_SAME_STMT);
312 /* And re-vector the computed goto to the new destination. */
313 GOTO_DESTINATION (last) = factored_label_decl;
319 /* Create annotations for a single basic block. */
321 static void
322 create_block_annotation (basic_block bb)
324 /* Verify that the tree_annotations field is clear. */
325 gcc_assert (!bb->tree_annotations);
326 bb->tree_annotations = ggc_alloc_cleared (sizeof (struct bb_ann_d));
330 /* Free the annotations for all the basic blocks. */
332 static void free_blocks_annotations (void)
334 clear_blocks_annotations ();
338 /* Clear the annotations for all the basic blocks. */
340 static void
341 clear_blocks_annotations (void)
343 basic_block bb;
345 FOR_BB_BETWEEN (bb, ENTRY_BLOCK_PTR, NULL, next_bb)
346 bb->tree_annotations = NULL;
350 /* Build a flowgraph for the statement_list STMT_LIST. */
352 static void
353 make_blocks (tree stmt_list)
355 tree_stmt_iterator i = tsi_start (stmt_list);
356 tree stmt = NULL;
357 bool start_new_block = true;
358 bool first_stmt_of_list = true;
359 basic_block bb = ENTRY_BLOCK_PTR;
361 while (!tsi_end_p (i))
363 tree prev_stmt;
365 prev_stmt = stmt;
366 stmt = tsi_stmt (i);
368 /* If the statement starts a new basic block or if we have determined
369 in a previous pass that we need to create a new block for STMT, do
370 so now. */
371 if (start_new_block || stmt_starts_bb_p (stmt, prev_stmt))
373 if (!first_stmt_of_list)
374 stmt_list = tsi_split_statement_list_before (&i);
375 bb = create_basic_block (stmt_list, NULL, bb);
376 start_new_block = false;
379 /* Now add STMT to BB and create the subgraphs for special statement
380 codes. */
381 set_bb_for_stmt (stmt, bb);
383 if (computed_goto_p (stmt))
384 found_computed_goto = true;
386 /* If STMT is a basic block terminator, set START_NEW_BLOCK for the
387 next iteration. */
388 if (stmt_ends_bb_p (stmt))
389 start_new_block = true;
391 tsi_next (&i);
392 first_stmt_of_list = false;
397 /* Create and return a new empty basic block after bb AFTER. */
399 static basic_block
400 create_bb (void *h, void *e, basic_block after)
402 basic_block bb;
404 gcc_assert (!e);
406 /* Create and initialize a new basic block. Since alloc_block uses
407 ggc_alloc_cleared to allocate a basic block, we do not have to
408 clear the newly allocated basic block here. */
409 bb = alloc_block ();
411 bb->index = last_basic_block;
412 bb->flags = BB_NEW;
413 bb->stmt_list = h ? h : alloc_stmt_list ();
415 /* Add the new block to the linked list of blocks. */
416 link_block (bb, after);
418 /* Grow the basic block array if needed. */
419 if ((size_t) last_basic_block == VARRAY_SIZE (basic_block_info))
421 size_t new_size = last_basic_block + (last_basic_block + 3) / 4;
422 VARRAY_GROW (basic_block_info, new_size);
425 /* Add the newly created block to the array. */
426 BASIC_BLOCK (last_basic_block) = bb;
428 create_block_annotation (bb);
430 n_basic_blocks++;
431 last_basic_block++;
433 initialize_bb_rbi (bb);
434 return bb;
438 /*---------------------------------------------------------------------------
439 Edge creation
440 ---------------------------------------------------------------------------*/
442 /* Join all the blocks in the flowgraph. */
444 static void
445 make_edges (void)
447 basic_block bb;
449 /* Create an edge from entry to the first block with executable
450 statements in it. */
451 make_edge (ENTRY_BLOCK_PTR, BASIC_BLOCK (0), EDGE_FALLTHRU);
453 /* Traverse basic block array placing edges. */
454 FOR_EACH_BB (bb)
456 tree first = first_stmt (bb);
457 tree last = last_stmt (bb);
459 if (first)
461 /* Edges for statements that always alter flow control. */
462 if (is_ctrl_stmt (last))
463 make_ctrl_stmt_edges (bb);
465 /* Edges for statements that sometimes alter flow control. */
466 if (is_ctrl_altering_stmt (last))
467 make_exit_edges (bb);
470 /* Finally, if no edges were created above, this is a regular
471 basic block that only needs a fallthru edge. */
472 if (EDGE_COUNT (bb->succs) == 0)
473 make_edge (bb, bb->next_bb, EDGE_FALLTHRU);
476 /* We do not care about fake edges, so remove any that the CFG
477 builder inserted for completeness. */
478 remove_fake_exit_edges ();
480 /* Clean up the graph and warn for unreachable code. */
481 cleanup_tree_cfg ();
485 /* Create edges for control statement at basic block BB. */
487 static void
488 make_ctrl_stmt_edges (basic_block bb)
490 tree last = last_stmt (bb);
492 gcc_assert (last);
493 switch (TREE_CODE (last))
495 case GOTO_EXPR:
496 make_goto_expr_edges (bb);
497 break;
499 case RETURN_EXPR:
500 make_edge (bb, EXIT_BLOCK_PTR, 0);
501 break;
503 case COND_EXPR:
504 make_cond_expr_edges (bb);
505 break;
507 case SWITCH_EXPR:
508 make_switch_expr_edges (bb);
509 break;
511 case RESX_EXPR:
512 make_eh_edges (last);
513 /* Yet another NORETURN hack. */
514 if (EDGE_COUNT (bb->succs) == 0)
515 make_edge (bb, EXIT_BLOCK_PTR, EDGE_FAKE);
516 break;
518 default:
519 gcc_unreachable ();
524 /* Create exit edges for statements in block BB that alter the flow of
525 control. Statements that alter the control flow are 'goto', 'return'
526 and calls to non-returning functions. */
528 static void
529 make_exit_edges (basic_block bb)
531 tree last = last_stmt (bb), op;
533 gcc_assert (last);
534 switch (TREE_CODE (last))
536 case CALL_EXPR:
537 /* If this function receives a nonlocal goto, then we need to
538 make edges from this call site to all the nonlocal goto
539 handlers. */
540 if (TREE_SIDE_EFFECTS (last)
541 && current_function_has_nonlocal_label)
542 make_goto_expr_edges (bb);
544 /* If this statement has reachable exception handlers, then
545 create abnormal edges to them. */
546 make_eh_edges (last);
548 /* Some calls are known not to return. For such calls we create
549 a fake edge.
551 We really need to revamp how we build edges so that it's not
552 such a bloody pain to avoid creating edges for this case since
553 all we do is remove these edges when we're done building the
554 CFG. */
555 if (call_expr_flags (last) & ECF_NORETURN)
557 make_edge (bb, EXIT_BLOCK_PTR, EDGE_FAKE);
558 return;
561 /* Don't forget the fall-thru edge. */
562 make_edge (bb, bb->next_bb, EDGE_FALLTHRU);
563 break;
565 case MODIFY_EXPR:
566 /* A MODIFY_EXPR may have a CALL_EXPR on its RHS and the CALL_EXPR
567 may have an abnormal edge. Search the RHS for this case and
568 create any required edges. */
569 op = get_call_expr_in (last);
570 if (op && TREE_SIDE_EFFECTS (op)
571 && current_function_has_nonlocal_label)
572 make_goto_expr_edges (bb);
574 make_eh_edges (last);
575 make_edge (bb, bb->next_bb, EDGE_FALLTHRU);
576 break;
578 default:
579 gcc_unreachable ();
584 /* Create the edges for a COND_EXPR starting at block BB.
585 At this point, both clauses must contain only simple gotos. */
587 static void
588 make_cond_expr_edges (basic_block bb)
590 tree entry = last_stmt (bb);
591 basic_block then_bb, else_bb;
592 tree then_label, else_label;
594 gcc_assert (entry);
595 gcc_assert (TREE_CODE (entry) == COND_EXPR);
597 /* Entry basic blocks for each component. */
598 then_label = GOTO_DESTINATION (COND_EXPR_THEN (entry));
599 else_label = GOTO_DESTINATION (COND_EXPR_ELSE (entry));
600 then_bb = label_to_block (then_label);
601 else_bb = label_to_block (else_label);
603 make_edge (bb, then_bb, EDGE_TRUE_VALUE);
604 make_edge (bb, else_bb, EDGE_FALSE_VALUE);
607 /* Hashing routine for EDGE_TO_CASES. */
609 static hashval_t
610 edge_to_cases_hash (const void *p)
612 edge e = ((struct edge_to_cases_elt *)p)->e;
614 /* Hash on the edge itself (which is a pointer). */
615 return htab_hash_pointer (e);
618 /* Equality routine for EDGE_TO_CASES, edges are unique, so testing
619 for equality is just a pointer comparison. */
621 static int
622 edge_to_cases_eq (const void *p1, const void *p2)
624 edge e1 = ((struct edge_to_cases_elt *)p1)->e;
625 edge e2 = ((struct edge_to_cases_elt *)p2)->e;
627 return e1 == e2;
630 /* Called for each element in the hash table (P) as we delete the
631 edge to cases hash table.
633 Clear all the TREE_CHAINs to prevent problems with copying of
634 SWITCH_EXPRs and structure sharing rules, then free the hash table
635 element. */
637 static void
638 edge_to_cases_cleanup (void *p)
640 struct edge_to_cases_elt *elt = p;
641 tree t, next;
643 for (t = elt->case_labels; t; t = next)
645 next = TREE_CHAIN (t);
646 TREE_CHAIN (t) = NULL;
648 free (p);
651 /* Start recording information mapping edges to case labels. */
653 static void
654 start_recording_case_labels (void)
656 gcc_assert (edge_to_cases == NULL);
658 edge_to_cases = htab_create (37,
659 edge_to_cases_hash,
660 edge_to_cases_eq,
661 edge_to_cases_cleanup);
664 /* Return nonzero if we are recording information for case labels. */
666 static bool
667 recording_case_labels_p (void)
669 return (edge_to_cases != NULL);
672 /* Stop recording information mapping edges to case labels and
673 remove any information we have recorded. */
674 static void
675 end_recording_case_labels (void)
677 htab_delete (edge_to_cases);
678 edge_to_cases = NULL;
681 /* Record that CASE_LABEL (a CASE_LABEL_EXPR) references edge E. */
683 static void
684 record_switch_edge (edge e, tree case_label)
686 struct edge_to_cases_elt *elt;
687 void **slot;
689 /* Build a hash table element so we can see if E is already
690 in the table. */
691 elt = xmalloc (sizeof (struct edge_to_cases_elt));
692 elt->e = e;
693 elt->case_labels = case_label;
695 slot = htab_find_slot (edge_to_cases, elt, INSERT);
697 if (*slot == NULL)
699 /* E was not in the hash table. Install E into the hash table. */
700 *slot = (void *)elt;
702 else
704 /* E was already in the hash table. Free ELT as we do not need it
705 anymore. */
706 free (elt);
708 /* Get the entry stored in the hash table. */
709 elt = (struct edge_to_cases_elt *) *slot;
711 /* Add it to the chain of CASE_LABEL_EXPRs referencing E. */
712 TREE_CHAIN (case_label) = elt->case_labels;
713 elt->case_labels = case_label;
717 /* If we are inside a {start,end}_recording_cases block, then return
718 a chain of CASE_LABEL_EXPRs from T which reference E.
720 Otherwise return NULL. */
722 static tree
723 get_cases_for_edge (edge e, tree t)
725 struct edge_to_cases_elt elt, *elt_p;
726 void **slot;
727 size_t i, n;
728 tree vec;
730 /* If we are not recording cases, then we do not have CASE_LABEL_EXPR
731 chains available. Return NULL so the caller can detect this case. */
732 if (!recording_case_labels_p ())
733 return NULL;
735 restart:
736 elt.e = e;
737 elt.case_labels = NULL;
738 slot = htab_find_slot (edge_to_cases, &elt, NO_INSERT);
740 if (slot)
742 elt_p = (struct edge_to_cases_elt *)*slot;
743 return elt_p->case_labels;
746 /* If we did not find E in the hash table, then this must be the first
747 time we have been queried for information about E & T. Add all the
748 elements from T to the hash table then perform the query again. */
750 vec = SWITCH_LABELS (t);
751 n = TREE_VEC_LENGTH (vec);
752 for (i = 0; i < n; i++)
754 tree lab = CASE_LABEL (TREE_VEC_ELT (vec, i));
755 basic_block label_bb = label_to_block (lab);
756 record_switch_edge (find_edge (e->src, label_bb), TREE_VEC_ELT (vec, i));
758 goto restart;
761 /* Create the edges for a SWITCH_EXPR starting at block BB.
762 At this point, the switch body has been lowered and the
763 SWITCH_LABELS filled in, so this is in effect a multi-way branch. */
765 static void
766 make_switch_expr_edges (basic_block bb)
768 tree entry = last_stmt (bb);
769 size_t i, n;
770 tree vec;
772 vec = SWITCH_LABELS (entry);
773 n = TREE_VEC_LENGTH (vec);
775 for (i = 0; i < n; ++i)
777 tree lab = CASE_LABEL (TREE_VEC_ELT (vec, i));
778 basic_block label_bb = label_to_block (lab);
779 make_edge (bb, label_bb, 0);
784 /* Return the basic block holding label DEST. */
786 basic_block
787 label_to_block (tree dest)
789 int uid = LABEL_DECL_UID (dest);
791 /* We would die hard when faced by an undefined label. Emit a label to
792 the very first basic block. This will hopefully make even the dataflow
793 and undefined variable warnings quite right. */
794 if ((errorcount || sorrycount) && uid < 0)
796 block_stmt_iterator bsi = bsi_start (BASIC_BLOCK (0));
797 tree stmt;
799 stmt = build1 (LABEL_EXPR, void_type_node, dest);
800 bsi_insert_before (&bsi, stmt, BSI_NEW_STMT);
801 uid = LABEL_DECL_UID (dest);
803 return VARRAY_BB (label_to_block_map, uid);
807 /* Create edges for a goto statement at block BB. */
809 static void
810 make_goto_expr_edges (basic_block bb)
812 tree goto_t, dest;
813 basic_block target_bb;
814 int for_call;
815 block_stmt_iterator last = bsi_last (bb);
817 goto_t = bsi_stmt (last);
819 /* If the last statement is not a GOTO (i.e., it is a RETURN_EXPR,
820 CALL_EXPR or MODIFY_EXPR), then the edge is an abnormal edge resulting
821 from a nonlocal goto. */
822 if (TREE_CODE (goto_t) != GOTO_EXPR)
824 dest = error_mark_node;
825 for_call = 1;
827 else
829 dest = GOTO_DESTINATION (goto_t);
830 for_call = 0;
832 /* A GOTO to a local label creates normal edges. */
833 if (simple_goto_p (goto_t))
835 edge e = make_edge (bb, label_to_block (dest), EDGE_FALLTHRU);
836 #ifdef USE_MAPPED_LOCATION
837 e->goto_locus = EXPR_LOCATION (goto_t);
838 #else
839 e->goto_locus = EXPR_LOCUS (goto_t);
840 #endif
841 bsi_remove (&last);
842 return;
845 /* Nothing more to do for nonlocal gotos. */
846 if (TREE_CODE (dest) == LABEL_DECL)
847 return;
849 /* Computed gotos remain. */
852 /* Look for the block starting with the destination label. In the
853 case of a computed goto, make an edge to any label block we find
854 in the CFG. */
855 FOR_EACH_BB (target_bb)
857 block_stmt_iterator bsi;
859 for (bsi = bsi_start (target_bb); !bsi_end_p (bsi); bsi_next (&bsi))
861 tree target = bsi_stmt (bsi);
863 if (TREE_CODE (target) != LABEL_EXPR)
864 break;
866 if (
867 /* Computed GOTOs. Make an edge to every label block that has
868 been marked as a potential target for a computed goto. */
869 (FORCED_LABEL (LABEL_EXPR_LABEL (target)) && for_call == 0)
870 /* Nonlocal GOTO target. Make an edge to every label block
871 that has been marked as a potential target for a nonlocal
872 goto. */
873 || (DECL_NONLOCAL (LABEL_EXPR_LABEL (target)) && for_call == 1))
875 make_edge (bb, target_bb, EDGE_ABNORMAL);
876 break;
881 /* Degenerate case of computed goto with no labels. */
882 if (!for_call && EDGE_COUNT (bb->succs) == 0)
883 make_edge (bb, EXIT_BLOCK_PTR, EDGE_FAKE);
887 /*---------------------------------------------------------------------------
888 Flowgraph analysis
889 ---------------------------------------------------------------------------*/
891 /* Remove unreachable blocks and other miscellaneous clean up work. */
893 bool
894 cleanup_tree_cfg (void)
896 bool retval = false;
898 timevar_push (TV_TREE_CLEANUP_CFG);
900 retval = cleanup_control_flow ();
901 retval |= delete_unreachable_blocks ();
903 /* thread_jumps can redirect edges out of SWITCH_EXPRs, which can get
904 expensive. So we want to enable recording of edge to CASE_LABEL_EXPR
905 mappings around the call to thread_jumps. */
906 start_recording_case_labels ();
907 retval |= thread_jumps ();
908 end_recording_case_labels ();
910 #ifdef ENABLE_CHECKING
911 if (retval)
913 gcc_assert (!cleanup_control_flow ());
914 gcc_assert (!delete_unreachable_blocks ());
915 gcc_assert (!thread_jumps ());
917 #endif
919 /* Merging the blocks creates no new opportunities for the other
920 optimizations, so do it here. */
921 retval |= merge_seq_blocks ();
923 compact_blocks ();
925 #ifdef ENABLE_CHECKING
926 verify_flow_info ();
927 #endif
928 timevar_pop (TV_TREE_CLEANUP_CFG);
929 return retval;
933 /* Cleanup useless labels in basic blocks. This is something we wish
934 to do early because it allows us to group case labels before creating
935 the edges for the CFG, and it speeds up block statement iterators in
936 all passes later on.
937 We only run this pass once, running it more than once is probably not
938 profitable. */
940 /* A map from basic block index to the leading label of that block. */
941 static tree *label_for_bb;
943 /* Callback for for_each_eh_region. Helper for cleanup_dead_labels. */
944 static void
945 update_eh_label (struct eh_region *region)
947 tree old_label = get_eh_region_tree_label (region);
948 if (old_label)
950 tree new_label;
951 basic_block bb = label_to_block (old_label);
953 /* ??? After optimizing, there may be EH regions with labels
954 that have already been removed from the function body, so
955 there is no basic block for them. */
956 if (! bb)
957 return;
959 new_label = label_for_bb[bb->index];
960 set_eh_region_tree_label (region, new_label);
964 /* Given LABEL return the first label in the same basic block. */
965 static tree
966 main_block_label (tree label)
968 basic_block bb = label_to_block (label);
970 /* label_to_block possibly inserted undefined label into the chain. */
971 if (!label_for_bb[bb->index])
972 label_for_bb[bb->index] = label;
973 return label_for_bb[bb->index];
976 /* Cleanup redundant labels. This is a three-step process:
977 1) Find the leading label for each block.
978 2) Redirect all references to labels to the leading labels.
979 3) Cleanup all useless labels. */
981 void
982 cleanup_dead_labels (void)
984 basic_block bb;
985 label_for_bb = xcalloc (last_basic_block, sizeof (tree));
987 /* Find a suitable label for each block. We use the first user-defined
988 label if there is one, or otherwise just the first label we see. */
989 FOR_EACH_BB (bb)
991 block_stmt_iterator i;
993 for (i = bsi_start (bb); !bsi_end_p (i); bsi_next (&i))
995 tree label, stmt = bsi_stmt (i);
997 if (TREE_CODE (stmt) != LABEL_EXPR)
998 break;
1000 label = LABEL_EXPR_LABEL (stmt);
1002 /* If we have not yet seen a label for the current block,
1003 remember this one and see if there are more labels. */
1004 if (! label_for_bb[bb->index])
1006 label_for_bb[bb->index] = label;
1007 continue;
1010 /* If we did see a label for the current block already, but it
1011 is an artificially created label, replace it if the current
1012 label is a user defined label. */
1013 if (! DECL_ARTIFICIAL (label)
1014 && DECL_ARTIFICIAL (label_for_bb[bb->index]))
1016 label_for_bb[bb->index] = label;
1017 break;
1022 /* Now redirect all jumps/branches to the selected label.
1023 First do so for each block ending in a control statement. */
1024 FOR_EACH_BB (bb)
1026 tree stmt = last_stmt (bb);
1027 if (!stmt)
1028 continue;
1030 switch (TREE_CODE (stmt))
1032 case COND_EXPR:
1034 tree true_branch, false_branch;
1036 true_branch = COND_EXPR_THEN (stmt);
1037 false_branch = COND_EXPR_ELSE (stmt);
1039 GOTO_DESTINATION (true_branch)
1040 = main_block_label (GOTO_DESTINATION (true_branch));
1041 GOTO_DESTINATION (false_branch)
1042 = main_block_label (GOTO_DESTINATION (false_branch));
1044 break;
1047 case SWITCH_EXPR:
1049 size_t i;
1050 tree vec = SWITCH_LABELS (stmt);
1051 size_t n = TREE_VEC_LENGTH (vec);
1053 /* Replace all destination labels. */
1054 for (i = 0; i < n; ++i)
1056 tree elt = TREE_VEC_ELT (vec, i);
1057 tree label = main_block_label (CASE_LABEL (elt));
1058 CASE_LABEL (elt) = label;
1060 break;
1063 /* We have to handle GOTO_EXPRs until they're removed, and we don't
1064 remove them until after we've created the CFG edges. */
1065 case GOTO_EXPR:
1066 if (! computed_goto_p (stmt))
1068 GOTO_DESTINATION (stmt)
1069 = main_block_label (GOTO_DESTINATION (stmt));
1070 break;
1073 default:
1074 break;
1078 for_each_eh_region (update_eh_label);
1080 /* Finally, purge dead labels. All user-defined labels and labels that
1081 can be the target of non-local gotos are preserved. */
1082 FOR_EACH_BB (bb)
1084 block_stmt_iterator i;
1085 tree label_for_this_bb = label_for_bb[bb->index];
1087 if (! label_for_this_bb)
1088 continue;
1090 for (i = bsi_start (bb); !bsi_end_p (i); )
1092 tree label, stmt = bsi_stmt (i);
1094 if (TREE_CODE (stmt) != LABEL_EXPR)
1095 break;
1097 label = LABEL_EXPR_LABEL (stmt);
1099 if (label == label_for_this_bb
1100 || ! DECL_ARTIFICIAL (label)
1101 || DECL_NONLOCAL (label))
1102 bsi_next (&i);
1103 else
1104 bsi_remove (&i);
1108 free (label_for_bb);
1111 /* Look for blocks ending in a multiway branch (a SWITCH_EXPR in GIMPLE),
1112 and scan the sorted vector of cases. Combine the ones jumping to the
1113 same label.
1114 Eg. three separate entries 1: 2: 3: become one entry 1..3: */
1116 void
1117 group_case_labels (void)
1119 basic_block bb;
1121 FOR_EACH_BB (bb)
1123 tree stmt = last_stmt (bb);
1124 if (stmt && TREE_CODE (stmt) == SWITCH_EXPR)
1126 tree labels = SWITCH_LABELS (stmt);
1127 int old_size = TREE_VEC_LENGTH (labels);
1128 int i, j, new_size = old_size;
1129 tree default_case = TREE_VEC_ELT (labels, old_size - 1);
1130 tree default_label;
1132 /* The default label is always the last case in a switch
1133 statement after gimplification. */
1134 default_label = CASE_LABEL (default_case);
1136 /* Look for possible opportunities to merge cases.
1137 Ignore the last element of the label vector because it
1138 must be the default case. */
1139 i = 0;
1140 while (i < old_size - 1)
1142 tree base_case, base_label, base_high, type;
1143 base_case = TREE_VEC_ELT (labels, i);
1145 gcc_assert (base_case);
1146 base_label = CASE_LABEL (base_case);
1148 /* Discard cases that have the same destination as the
1149 default case. */
1150 if (base_label == default_label)
1152 TREE_VEC_ELT (labels, i) = NULL_TREE;
1153 i++;
1154 new_size--;
1155 continue;
1158 type = TREE_TYPE (CASE_LOW (base_case));
1159 base_high = CASE_HIGH (base_case) ?
1160 CASE_HIGH (base_case) : CASE_LOW (base_case);
1161 i++;
1162 /* Try to merge case labels. Break out when we reach the end
1163 of the label vector or when we cannot merge the next case
1164 label with the current one. */
1165 while (i < old_size - 1)
1167 tree merge_case = TREE_VEC_ELT (labels, i);
1168 tree merge_label = CASE_LABEL (merge_case);
1169 tree t = int_const_binop (PLUS_EXPR, base_high,
1170 integer_one_node, 1);
1172 /* Merge the cases if they jump to the same place,
1173 and their ranges are consecutive. */
1174 if (merge_label == base_label
1175 && tree_int_cst_equal (CASE_LOW (merge_case), t))
1177 base_high = CASE_HIGH (merge_case) ?
1178 CASE_HIGH (merge_case) : CASE_LOW (merge_case);
1179 CASE_HIGH (base_case) = base_high;
1180 TREE_VEC_ELT (labels, i) = NULL_TREE;
1181 new_size--;
1182 i++;
1184 else
1185 break;
1189 /* Compress the case labels in the label vector, and adjust the
1190 length of the vector. */
1191 for (i = 0, j = 0; i < new_size; i++)
1193 while (! TREE_VEC_ELT (labels, j))
1194 j++;
1195 TREE_VEC_ELT (labels, i) = TREE_VEC_ELT (labels, j++);
1197 TREE_VEC_LENGTH (labels) = new_size;
1202 /* Checks whether we can merge block B into block A. */
1204 static bool
1205 tree_can_merge_blocks_p (basic_block a, basic_block b)
1207 tree stmt;
1208 block_stmt_iterator bsi;
1210 if (EDGE_COUNT (a->succs) != 1)
1211 return false;
1213 if (EDGE_SUCC (a, 0)->flags & EDGE_ABNORMAL)
1214 return false;
1216 if (EDGE_SUCC (a, 0)->dest != b)
1217 return false;
1219 if (b == EXIT_BLOCK_PTR)
1220 return false;
1222 if (EDGE_COUNT (b->preds) > 1)
1223 return false;
1225 /* If A ends by a statement causing exceptions or something similar, we
1226 cannot merge the blocks. */
1227 stmt = last_stmt (a);
1228 if (stmt && stmt_ends_bb_p (stmt))
1229 return false;
1231 /* Do not allow a block with only a non-local label to be merged. */
1232 if (stmt && TREE_CODE (stmt) == LABEL_EXPR
1233 && DECL_NONLOCAL (LABEL_EXPR_LABEL (stmt)))
1234 return false;
1236 /* There may be no phi nodes at the start of b. Most of these degenerate
1237 phi nodes should be cleaned up by kill_redundant_phi_nodes. */
1238 if (phi_nodes (b))
1239 return false;
1241 /* Do not remove user labels. */
1242 for (bsi = bsi_start (b); !bsi_end_p (bsi); bsi_next (&bsi))
1244 stmt = bsi_stmt (bsi);
1245 if (TREE_CODE (stmt) != LABEL_EXPR)
1246 break;
1247 if (!DECL_ARTIFICIAL (LABEL_EXPR_LABEL (stmt)))
1248 return false;
1251 return true;
1255 /* Merge block B into block A. */
1257 static void
1258 tree_merge_blocks (basic_block a, basic_block b)
1260 block_stmt_iterator bsi;
1261 tree_stmt_iterator last;
1263 if (dump_file)
1264 fprintf (dump_file, "Merging blocks %d and %d\n", a->index, b->index);
1266 /* Ensure that B follows A. */
1267 move_block_after (b, a);
1269 gcc_assert (EDGE_SUCC (a, 0)->flags & EDGE_FALLTHRU);
1270 gcc_assert (!last_stmt (a) || !stmt_ends_bb_p (last_stmt (a)));
1272 /* Remove labels from B and set bb_for_stmt to A for other statements. */
1273 for (bsi = bsi_start (b); !bsi_end_p (bsi);)
1275 if (TREE_CODE (bsi_stmt (bsi)) == LABEL_EXPR)
1276 bsi_remove (&bsi);
1277 else
1279 set_bb_for_stmt (bsi_stmt (bsi), a);
1280 bsi_next (&bsi);
1284 /* Merge the chains. */
1285 last = tsi_last (a->stmt_list);
1286 tsi_link_after (&last, b->stmt_list, TSI_NEW_STMT);
1287 b->stmt_list = NULL;
1291 /* Walk the function tree removing unnecessary statements.
1293 * Empty statement nodes are removed
1295 * Unnecessary TRY_FINALLY and TRY_CATCH blocks are removed
1297 * Unnecessary COND_EXPRs are removed
1299 * Some unnecessary BIND_EXPRs are removed
1301 Clearly more work could be done. The trick is doing the analysis
1302 and removal fast enough to be a net improvement in compile times.
1304 Note that when we remove a control structure such as a COND_EXPR
1305 BIND_EXPR, or TRY block, we will need to repeat this optimization pass
1306 to ensure we eliminate all the useless code. */
1308 struct rus_data
1310 tree *last_goto;
1311 bool repeat;
1312 bool may_throw;
1313 bool may_branch;
1314 bool has_label;
1317 static void remove_useless_stmts_1 (tree *, struct rus_data *);
1319 static bool
1320 remove_useless_stmts_warn_notreached (tree stmt)
1322 if (EXPR_HAS_LOCATION (stmt))
1324 location_t loc = EXPR_LOCATION (stmt);
1325 warning ("%Hwill never be executed", &loc);
1326 return true;
1329 switch (TREE_CODE (stmt))
1331 case STATEMENT_LIST:
1333 tree_stmt_iterator i;
1334 for (i = tsi_start (stmt); !tsi_end_p (i); tsi_next (&i))
1335 if (remove_useless_stmts_warn_notreached (tsi_stmt (i)))
1336 return true;
1338 break;
1340 case COND_EXPR:
1341 if (remove_useless_stmts_warn_notreached (COND_EXPR_COND (stmt)))
1342 return true;
1343 if (remove_useless_stmts_warn_notreached (COND_EXPR_THEN (stmt)))
1344 return true;
1345 if (remove_useless_stmts_warn_notreached (COND_EXPR_ELSE (stmt)))
1346 return true;
1347 break;
1349 case TRY_FINALLY_EXPR:
1350 case TRY_CATCH_EXPR:
1351 if (remove_useless_stmts_warn_notreached (TREE_OPERAND (stmt, 0)))
1352 return true;
1353 if (remove_useless_stmts_warn_notreached (TREE_OPERAND (stmt, 1)))
1354 return true;
1355 break;
1357 case CATCH_EXPR:
1358 return remove_useless_stmts_warn_notreached (CATCH_BODY (stmt));
1359 case EH_FILTER_EXPR:
1360 return remove_useless_stmts_warn_notreached (EH_FILTER_FAILURE (stmt));
1361 case BIND_EXPR:
1362 return remove_useless_stmts_warn_notreached (BIND_EXPR_BLOCK (stmt));
1364 default:
1365 /* Not a live container. */
1366 break;
1369 return false;
1372 static void
1373 remove_useless_stmts_cond (tree *stmt_p, struct rus_data *data)
1375 tree then_clause, else_clause, cond;
1376 bool save_has_label, then_has_label, else_has_label;
1378 save_has_label = data->has_label;
1379 data->has_label = false;
1380 data->last_goto = NULL;
1382 remove_useless_stmts_1 (&COND_EXPR_THEN (*stmt_p), data);
1384 then_has_label = data->has_label;
1385 data->has_label = false;
1386 data->last_goto = NULL;
1388 remove_useless_stmts_1 (&COND_EXPR_ELSE (*stmt_p), data);
1390 else_has_label = data->has_label;
1391 data->has_label = save_has_label | then_has_label | else_has_label;
1393 then_clause = COND_EXPR_THEN (*stmt_p);
1394 else_clause = COND_EXPR_ELSE (*stmt_p);
1395 cond = COND_EXPR_COND (*stmt_p);
1397 /* If neither arm does anything at all, we can remove the whole IF. */
1398 if (!TREE_SIDE_EFFECTS (then_clause) && !TREE_SIDE_EFFECTS (else_clause))
1400 *stmt_p = build_empty_stmt ();
1401 data->repeat = true;
1404 /* If there are no reachable statements in an arm, then we can
1405 zap the entire conditional. */
1406 else if (integer_nonzerop (cond) && !else_has_label)
1408 if (warn_notreached)
1409 remove_useless_stmts_warn_notreached (else_clause);
1410 *stmt_p = then_clause;
1411 data->repeat = true;
1413 else if (integer_zerop (cond) && !then_has_label)
1415 if (warn_notreached)
1416 remove_useless_stmts_warn_notreached (then_clause);
1417 *stmt_p = else_clause;
1418 data->repeat = true;
1421 /* Check a couple of simple things on then/else with single stmts. */
1422 else
1424 tree then_stmt = expr_only (then_clause);
1425 tree else_stmt = expr_only (else_clause);
1427 /* Notice branches to a common destination. */
1428 if (then_stmt && else_stmt
1429 && TREE_CODE (then_stmt) == GOTO_EXPR
1430 && TREE_CODE (else_stmt) == GOTO_EXPR
1431 && (GOTO_DESTINATION (then_stmt) == GOTO_DESTINATION (else_stmt)))
1433 *stmt_p = then_stmt;
1434 data->repeat = true;
1437 /* If the THEN/ELSE clause merely assigns a value to a variable or
1438 parameter which is already known to contain that value, then
1439 remove the useless THEN/ELSE clause. */
1440 else if (TREE_CODE (cond) == VAR_DECL || TREE_CODE (cond) == PARM_DECL)
1442 if (else_stmt
1443 && TREE_CODE (else_stmt) == MODIFY_EXPR
1444 && TREE_OPERAND (else_stmt, 0) == cond
1445 && integer_zerop (TREE_OPERAND (else_stmt, 1)))
1446 COND_EXPR_ELSE (*stmt_p) = alloc_stmt_list ();
1448 else if ((TREE_CODE (cond) == EQ_EXPR || TREE_CODE (cond) == NE_EXPR)
1449 && (TREE_CODE (TREE_OPERAND (cond, 0)) == VAR_DECL
1450 || TREE_CODE (TREE_OPERAND (cond, 0)) == PARM_DECL)
1451 && TREE_CONSTANT (TREE_OPERAND (cond, 1)))
1453 tree stmt = (TREE_CODE (cond) == EQ_EXPR
1454 ? then_stmt : else_stmt);
1455 tree *location = (TREE_CODE (cond) == EQ_EXPR
1456 ? &COND_EXPR_THEN (*stmt_p)
1457 : &COND_EXPR_ELSE (*stmt_p));
1459 if (stmt
1460 && TREE_CODE (stmt) == MODIFY_EXPR
1461 && TREE_OPERAND (stmt, 0) == TREE_OPERAND (cond, 0)
1462 && TREE_OPERAND (stmt, 1) == TREE_OPERAND (cond, 1))
1463 *location = alloc_stmt_list ();
1467 /* Protect GOTOs in the arm of COND_EXPRs from being removed. They
1468 would be re-introduced during lowering. */
1469 data->last_goto = NULL;
1473 static void
1474 remove_useless_stmts_tf (tree *stmt_p, struct rus_data *data)
1476 bool save_may_branch, save_may_throw;
1477 bool this_may_branch, this_may_throw;
1479 /* Collect may_branch and may_throw information for the body only. */
1480 save_may_branch = data->may_branch;
1481 save_may_throw = data->may_throw;
1482 data->may_branch = false;
1483 data->may_throw = false;
1484 data->last_goto = NULL;
1486 remove_useless_stmts_1 (&TREE_OPERAND (*stmt_p, 0), data);
1488 this_may_branch = data->may_branch;
1489 this_may_throw = data->may_throw;
1490 data->may_branch |= save_may_branch;
1491 data->may_throw |= save_may_throw;
1492 data->last_goto = NULL;
1494 remove_useless_stmts_1 (&TREE_OPERAND (*stmt_p, 1), data);
1496 /* If the body is empty, then we can emit the FINALLY block without
1497 the enclosing TRY_FINALLY_EXPR. */
1498 if (!TREE_SIDE_EFFECTS (TREE_OPERAND (*stmt_p, 0)))
1500 *stmt_p = TREE_OPERAND (*stmt_p, 1);
1501 data->repeat = true;
1504 /* If the handler is empty, then we can emit the TRY block without
1505 the enclosing TRY_FINALLY_EXPR. */
1506 else if (!TREE_SIDE_EFFECTS (TREE_OPERAND (*stmt_p, 1)))
1508 *stmt_p = TREE_OPERAND (*stmt_p, 0);
1509 data->repeat = true;
1512 /* If the body neither throws, nor branches, then we can safely
1513 string the TRY and FINALLY blocks together. */
1514 else if (!this_may_branch && !this_may_throw)
1516 tree stmt = *stmt_p;
1517 *stmt_p = TREE_OPERAND (stmt, 0);
1518 append_to_statement_list (TREE_OPERAND (stmt, 1), stmt_p);
1519 data->repeat = true;
1524 static void
1525 remove_useless_stmts_tc (tree *stmt_p, struct rus_data *data)
1527 bool save_may_throw, this_may_throw;
1528 tree_stmt_iterator i;
1529 tree stmt;
1531 /* Collect may_throw information for the body only. */
1532 save_may_throw = data->may_throw;
1533 data->may_throw = false;
1534 data->last_goto = NULL;
1536 remove_useless_stmts_1 (&TREE_OPERAND (*stmt_p, 0), data);
1538 this_may_throw = data->may_throw;
1539 data->may_throw = save_may_throw;
1541 /* If the body cannot throw, then we can drop the entire TRY_CATCH_EXPR. */
1542 if (!this_may_throw)
1544 if (warn_notreached)
1545 remove_useless_stmts_warn_notreached (TREE_OPERAND (*stmt_p, 1));
1546 *stmt_p = TREE_OPERAND (*stmt_p, 0);
1547 data->repeat = true;
1548 return;
1551 /* Process the catch clause specially. We may be able to tell that
1552 no exceptions propagate past this point. */
1554 this_may_throw = true;
1555 i = tsi_start (TREE_OPERAND (*stmt_p, 1));
1556 stmt = tsi_stmt (i);
1557 data->last_goto = NULL;
1559 switch (TREE_CODE (stmt))
1561 case CATCH_EXPR:
1562 for (; !tsi_end_p (i); tsi_next (&i))
1564 stmt = tsi_stmt (i);
1565 /* If we catch all exceptions, then the body does not
1566 propagate exceptions past this point. */
1567 if (CATCH_TYPES (stmt) == NULL)
1568 this_may_throw = false;
1569 data->last_goto = NULL;
1570 remove_useless_stmts_1 (&CATCH_BODY (stmt), data);
1572 break;
1574 case EH_FILTER_EXPR:
1575 if (EH_FILTER_MUST_NOT_THROW (stmt))
1576 this_may_throw = false;
1577 else if (EH_FILTER_TYPES (stmt) == NULL)
1578 this_may_throw = false;
1579 remove_useless_stmts_1 (&EH_FILTER_FAILURE (stmt), data);
1580 break;
1582 default:
1583 /* Otherwise this is a cleanup. */
1584 remove_useless_stmts_1 (&TREE_OPERAND (*stmt_p, 1), data);
1586 /* If the cleanup is empty, then we can emit the TRY block without
1587 the enclosing TRY_CATCH_EXPR. */
1588 if (!TREE_SIDE_EFFECTS (TREE_OPERAND (*stmt_p, 1)))
1590 *stmt_p = TREE_OPERAND (*stmt_p, 0);
1591 data->repeat = true;
1593 break;
1595 data->may_throw |= this_may_throw;
1599 static void
1600 remove_useless_stmts_bind (tree *stmt_p, struct rus_data *data)
1602 tree block;
1604 /* First remove anything underneath the BIND_EXPR. */
1605 remove_useless_stmts_1 (&BIND_EXPR_BODY (*stmt_p), data);
1607 /* If the BIND_EXPR has no variables, then we can pull everything
1608 up one level and remove the BIND_EXPR, unless this is the toplevel
1609 BIND_EXPR for the current function or an inlined function.
1611 When this situation occurs we will want to apply this
1612 optimization again. */
1613 block = BIND_EXPR_BLOCK (*stmt_p);
1614 if (BIND_EXPR_VARS (*stmt_p) == NULL_TREE
1615 && *stmt_p != DECL_SAVED_TREE (current_function_decl)
1616 && (! block
1617 || ! BLOCK_ABSTRACT_ORIGIN (block)
1618 || (TREE_CODE (BLOCK_ABSTRACT_ORIGIN (block))
1619 != FUNCTION_DECL)))
1621 *stmt_p = BIND_EXPR_BODY (*stmt_p);
1622 data->repeat = true;
1627 static void
1628 remove_useless_stmts_goto (tree *stmt_p, struct rus_data *data)
1630 tree dest = GOTO_DESTINATION (*stmt_p);
1632 data->may_branch = true;
1633 data->last_goto = NULL;
1635 /* Record the last goto expr, so that we can delete it if unnecessary. */
1636 if (TREE_CODE (dest) == LABEL_DECL)
1637 data->last_goto = stmt_p;
1641 static void
1642 remove_useless_stmts_label (tree *stmt_p, struct rus_data *data)
1644 tree label = LABEL_EXPR_LABEL (*stmt_p);
1646 data->has_label = true;
1648 /* We do want to jump across non-local label receiver code. */
1649 if (DECL_NONLOCAL (label))
1650 data->last_goto = NULL;
1652 else if (data->last_goto && GOTO_DESTINATION (*data->last_goto) == label)
1654 *data->last_goto = build_empty_stmt ();
1655 data->repeat = true;
1658 /* ??? Add something here to delete unused labels. */
1662 /* If the function is "const" or "pure", then clear TREE_SIDE_EFFECTS on its
1663 decl. This allows us to eliminate redundant or useless
1664 calls to "const" functions.
1666 Gimplifier already does the same operation, but we may notice functions
1667 being const and pure once their calls has been gimplified, so we need
1668 to update the flag. */
1670 static void
1671 update_call_expr_flags (tree call)
1673 tree decl = get_callee_fndecl (call);
1674 if (!decl)
1675 return;
1676 if (call_expr_flags (call) & (ECF_CONST | ECF_PURE))
1677 TREE_SIDE_EFFECTS (call) = 0;
1678 if (TREE_NOTHROW (decl))
1679 TREE_NOTHROW (call) = 1;
1683 /* T is CALL_EXPR. Set current_function_calls_* flags. */
1685 void
1686 notice_special_calls (tree t)
1688 int flags = call_expr_flags (t);
1690 if (flags & ECF_MAY_BE_ALLOCA)
1691 current_function_calls_alloca = true;
1692 if (flags & ECF_RETURNS_TWICE)
1693 current_function_calls_setjmp = true;
1697 /* Clear flags set by notice_special_calls. Used by dead code removal
1698 to update the flags. */
1700 void
1701 clear_special_calls (void)
1703 current_function_calls_alloca = false;
1704 current_function_calls_setjmp = false;
1708 static void
1709 remove_useless_stmts_1 (tree *tp, struct rus_data *data)
1711 tree t = *tp, op;
1713 switch (TREE_CODE (t))
1715 case COND_EXPR:
1716 remove_useless_stmts_cond (tp, data);
1717 break;
1719 case TRY_FINALLY_EXPR:
1720 remove_useless_stmts_tf (tp, data);
1721 break;
1723 case TRY_CATCH_EXPR:
1724 remove_useless_stmts_tc (tp, data);
1725 break;
1727 case BIND_EXPR:
1728 remove_useless_stmts_bind (tp, data);
1729 break;
1731 case GOTO_EXPR:
1732 remove_useless_stmts_goto (tp, data);
1733 break;
1735 case LABEL_EXPR:
1736 remove_useless_stmts_label (tp, data);
1737 break;
1739 case RETURN_EXPR:
1740 fold_stmt (tp);
1741 data->last_goto = NULL;
1742 data->may_branch = true;
1743 break;
1745 case CALL_EXPR:
1746 fold_stmt (tp);
1747 data->last_goto = NULL;
1748 notice_special_calls (t);
1749 update_call_expr_flags (t);
1750 if (tree_could_throw_p (t))
1751 data->may_throw = true;
1752 break;
1754 case MODIFY_EXPR:
1755 data->last_goto = NULL;
1756 fold_stmt (tp);
1757 op = get_call_expr_in (t);
1758 if (op)
1760 update_call_expr_flags (op);
1761 notice_special_calls (op);
1763 if (tree_could_throw_p (t))
1764 data->may_throw = true;
1765 break;
1767 case STATEMENT_LIST:
1769 tree_stmt_iterator i = tsi_start (t);
1770 while (!tsi_end_p (i))
1772 t = tsi_stmt (i);
1773 if (IS_EMPTY_STMT (t))
1775 tsi_delink (&i);
1776 continue;
1779 remove_useless_stmts_1 (tsi_stmt_ptr (i), data);
1781 t = tsi_stmt (i);
1782 if (TREE_CODE (t) == STATEMENT_LIST)
1784 tsi_link_before (&i, t, TSI_SAME_STMT);
1785 tsi_delink (&i);
1787 else
1788 tsi_next (&i);
1791 break;
1792 case ASM_EXPR:
1793 fold_stmt (tp);
1794 data->last_goto = NULL;
1795 break;
1797 default:
1798 data->last_goto = NULL;
1799 break;
1803 static void
1804 remove_useless_stmts (void)
1806 struct rus_data data;
1808 clear_special_calls ();
1812 memset (&data, 0, sizeof (data));
1813 remove_useless_stmts_1 (&DECL_SAVED_TREE (current_function_decl), &data);
1815 while (data.repeat);
1819 struct tree_opt_pass pass_remove_useless_stmts =
1821 "useless", /* name */
1822 NULL, /* gate */
1823 remove_useless_stmts, /* execute */
1824 NULL, /* sub */
1825 NULL, /* next */
1826 0, /* static_pass_number */
1827 0, /* tv_id */
1828 PROP_gimple_any, /* properties_required */
1829 0, /* properties_provided */
1830 0, /* properties_destroyed */
1831 0, /* todo_flags_start */
1832 TODO_dump_func, /* todo_flags_finish */
1833 0 /* letter */
1837 /* Remove obviously useless statements in basic block BB. */
1839 static void
1840 cfg_remove_useless_stmts_bb (basic_block bb)
1842 block_stmt_iterator bsi;
1843 tree stmt = NULL_TREE;
1844 tree cond, var = NULL_TREE, val = NULL_TREE;
1845 struct var_ann_d *ann;
1847 /* Check whether we come here from a condition, and if so, get the
1848 condition. */
1849 if (EDGE_COUNT (bb->preds) != 1
1850 || !(EDGE_PRED (bb, 0)->flags & (EDGE_TRUE_VALUE | EDGE_FALSE_VALUE)))
1851 return;
1853 cond = COND_EXPR_COND (last_stmt (EDGE_PRED (bb, 0)->src));
1855 if (TREE_CODE (cond) == VAR_DECL || TREE_CODE (cond) == PARM_DECL)
1857 var = cond;
1858 val = (EDGE_PRED (bb, 0)->flags & EDGE_FALSE_VALUE
1859 ? boolean_false_node : boolean_true_node);
1861 else if (TREE_CODE (cond) == TRUTH_NOT_EXPR
1862 && (TREE_CODE (TREE_OPERAND (cond, 0)) == VAR_DECL
1863 || TREE_CODE (TREE_OPERAND (cond, 0)) == PARM_DECL))
1865 var = TREE_OPERAND (cond, 0);
1866 val = (EDGE_PRED (bb, 0)->flags & EDGE_FALSE_VALUE
1867 ? boolean_true_node : boolean_false_node);
1869 else
1871 if (EDGE_PRED (bb, 0)->flags & EDGE_FALSE_VALUE)
1872 cond = invert_truthvalue (cond);
1873 if (TREE_CODE (cond) == EQ_EXPR
1874 && (TREE_CODE (TREE_OPERAND (cond, 0)) == VAR_DECL
1875 || TREE_CODE (TREE_OPERAND (cond, 0)) == PARM_DECL)
1876 && (TREE_CODE (TREE_OPERAND (cond, 1)) == VAR_DECL
1877 || TREE_CODE (TREE_OPERAND (cond, 1)) == PARM_DECL
1878 || TREE_CONSTANT (TREE_OPERAND (cond, 1))))
1880 var = TREE_OPERAND (cond, 0);
1881 val = TREE_OPERAND (cond, 1);
1883 else
1884 return;
1887 /* Only work for normal local variables. */
1888 ann = var_ann (var);
1889 if (!ann
1890 || ann->may_aliases
1891 || TREE_ADDRESSABLE (var))
1892 return;
1894 if (! TREE_CONSTANT (val))
1896 ann = var_ann (val);
1897 if (!ann
1898 || ann->may_aliases
1899 || TREE_ADDRESSABLE (val))
1900 return;
1903 /* Ignore floating point variables, since comparison behaves weird for
1904 them. */
1905 if (FLOAT_TYPE_P (TREE_TYPE (var)))
1906 return;
1908 for (bsi = bsi_start (bb); !bsi_end_p (bsi);)
1910 stmt = bsi_stmt (bsi);
1912 /* If the THEN/ELSE clause merely assigns a value to a variable/parameter
1913 which is already known to contain that value, then remove the useless
1914 THEN/ELSE clause. */
1915 if (TREE_CODE (stmt) == MODIFY_EXPR
1916 && TREE_OPERAND (stmt, 0) == var
1917 && operand_equal_p (val, TREE_OPERAND (stmt, 1), 0))
1919 bsi_remove (&bsi);
1920 continue;
1923 /* Invalidate the var if we encounter something that could modify it.
1924 Likewise for the value it was previously set to. Note that we only
1925 consider values that are either a VAR_DECL or PARM_DECL so we
1926 can test for conflict very simply. */
1927 if (TREE_CODE (stmt) == ASM_EXPR
1928 || (TREE_CODE (stmt) == MODIFY_EXPR
1929 && (TREE_OPERAND (stmt, 0) == var
1930 || TREE_OPERAND (stmt, 0) == val)))
1931 return;
1933 bsi_next (&bsi);
1938 /* A CFG-aware version of remove_useless_stmts. */
1940 void
1941 cfg_remove_useless_stmts (void)
1943 basic_block bb;
1945 #ifdef ENABLE_CHECKING
1946 verify_flow_info ();
1947 #endif
1949 FOR_EACH_BB (bb)
1951 cfg_remove_useless_stmts_bb (bb);
1956 /* Remove PHI nodes associated with basic block BB and all edges out of BB. */
1958 static void
1959 remove_phi_nodes_and_edges_for_unreachable_block (basic_block bb)
1961 tree phi;
1963 /* Since this block is no longer reachable, we can just delete all
1964 of its PHI nodes. */
1965 phi = phi_nodes (bb);
1966 while (phi)
1968 tree next = PHI_CHAIN (phi);
1969 remove_phi_node (phi, NULL_TREE, bb);
1970 phi = next;
1973 /* Remove edges to BB's successors. */
1974 while (EDGE_COUNT (bb->succs) > 0)
1975 remove_edge (EDGE_SUCC (bb, 0));
1979 /* Remove statements of basic block BB. */
1981 static void
1982 remove_bb (basic_block bb)
1984 block_stmt_iterator i;
1985 source_locus loc = 0;
1987 if (dump_file)
1989 fprintf (dump_file, "Removing basic block %d\n", bb->index);
1990 if (dump_flags & TDF_DETAILS)
1992 dump_bb (bb, dump_file, 0);
1993 fprintf (dump_file, "\n");
1997 /* Remove all the instructions in the block. */
1998 for (i = bsi_start (bb); !bsi_end_p (i);)
2000 tree stmt = bsi_stmt (i);
2001 if (TREE_CODE (stmt) == LABEL_EXPR
2002 && FORCED_LABEL (LABEL_EXPR_LABEL (stmt)))
2004 basic_block new_bb = bb->prev_bb;
2005 block_stmt_iterator new_bsi = bsi_after_labels (new_bb);
2007 bsi_remove (&i);
2008 bsi_insert_after (&new_bsi, stmt, BSI_NEW_STMT);
2010 else
2012 release_defs (stmt);
2014 set_bb_for_stmt (stmt, NULL);
2015 bsi_remove (&i);
2018 /* Don't warn for removed gotos. Gotos are often removed due to
2019 jump threading, thus resulting in bogus warnings. Not great,
2020 since this way we lose warnings for gotos in the original
2021 program that are indeed unreachable. */
2022 if (TREE_CODE (stmt) != GOTO_EXPR && EXPR_HAS_LOCATION (stmt) && !loc)
2023 #ifdef USE_MAPPED_LOCATION
2024 loc = EXPR_LOCATION (stmt);
2025 #else
2026 loc = EXPR_LOCUS (stmt);
2027 #endif
2030 /* If requested, give a warning that the first statement in the
2031 block is unreachable. We walk statements backwards in the
2032 loop above, so the last statement we process is the first statement
2033 in the block. */
2034 if (warn_notreached && loc)
2035 #ifdef USE_MAPPED_LOCATION
2036 warning ("%Hwill never be executed", &loc);
2037 #else
2038 warning ("%Hwill never be executed", loc);
2039 #endif
2041 remove_phi_nodes_and_edges_for_unreachable_block (bb);
2044 /* Try to remove superfluous control structures. */
2046 static bool
2047 cleanup_control_flow (void)
2049 basic_block bb;
2050 block_stmt_iterator bsi;
2051 bool retval = false;
2052 tree stmt;
2054 FOR_EACH_BB (bb)
2056 bsi = bsi_last (bb);
2058 if (bsi_end_p (bsi))
2059 continue;
2061 stmt = bsi_stmt (bsi);
2062 if (TREE_CODE (stmt) == COND_EXPR
2063 || TREE_CODE (stmt) == SWITCH_EXPR)
2064 retval |= cleanup_control_expr_graph (bb, bsi);
2066 return retval;
2070 /* Disconnect an unreachable block in the control expression starting
2071 at block BB. */
2073 static bool
2074 cleanup_control_expr_graph (basic_block bb, block_stmt_iterator bsi)
2076 edge taken_edge;
2077 bool retval = false;
2078 tree expr = bsi_stmt (bsi), val;
2080 if (EDGE_COUNT (bb->succs) > 1)
2082 edge e;
2083 edge_iterator ei;
2085 switch (TREE_CODE (expr))
2087 case COND_EXPR:
2088 val = COND_EXPR_COND (expr);
2089 break;
2091 case SWITCH_EXPR:
2092 val = SWITCH_COND (expr);
2093 if (TREE_CODE (val) != INTEGER_CST)
2094 return false;
2095 break;
2097 default:
2098 gcc_unreachable ();
2101 taken_edge = find_taken_edge (bb, val);
2102 if (!taken_edge)
2103 return false;
2105 /* Remove all the edges except the one that is always executed. */
2106 for (ei = ei_start (bb->succs); (e = ei_safe_edge (ei)); )
2108 if (e != taken_edge)
2110 taken_edge->probability += e->probability;
2111 taken_edge->count += e->count;
2112 remove_edge (e);
2113 retval = true;
2115 else
2116 ei_next (&ei);
2118 if (taken_edge->probability > REG_BR_PROB_BASE)
2119 taken_edge->probability = REG_BR_PROB_BASE;
2121 else
2122 taken_edge = EDGE_SUCC (bb, 0);
2124 bsi_remove (&bsi);
2125 taken_edge->flags = EDGE_FALLTHRU;
2127 /* We removed some paths from the cfg. */
2128 free_dominance_info (CDI_DOMINATORS);
2130 return retval;
2134 /* Given a basic block BB ending with COND_EXPR or SWITCH_EXPR, and a
2135 predicate VAL, return the edge that will be taken out of the block.
2136 If VAL does not match a unique edge, NULL is returned. */
2138 edge
2139 find_taken_edge (basic_block bb, tree val)
2141 tree stmt;
2143 stmt = last_stmt (bb);
2145 gcc_assert (stmt);
2146 gcc_assert (is_ctrl_stmt (stmt));
2147 gcc_assert (val);
2149 /* If VAL is a predicate of the form N RELOP N, where N is an
2150 SSA_NAME, we can usually determine its truth value. */
2151 if (COMPARISON_CLASS_P (val))
2152 val = fold (val);
2154 /* If VAL is not a constant, we can't determine which edge might
2155 be taken. */
2156 if (!really_constant_p (val))
2157 return NULL;
2159 if (TREE_CODE (stmt) == COND_EXPR)
2160 return find_taken_edge_cond_expr (bb, val);
2162 if (TREE_CODE (stmt) == SWITCH_EXPR)
2163 return find_taken_edge_switch_expr (bb, val);
2165 gcc_unreachable ();
2169 /* Given a constant value VAL and the entry block BB to a COND_EXPR
2170 statement, determine which of the two edges will be taken out of the
2171 block. Return NULL if either edge may be taken. */
2173 static edge
2174 find_taken_edge_cond_expr (basic_block bb, tree val)
2176 edge true_edge, false_edge;
2178 extract_true_false_edges_from_block (bb, &true_edge, &false_edge);
2180 /* Otherwise, try to determine which branch of the if() will be taken.
2181 If VAL is a constant but it can't be reduced to a 0 or a 1, then
2182 we don't really know which edge will be taken at runtime. This
2183 may happen when comparing addresses (e.g., if (&var1 == 4)). */
2184 if (integer_nonzerop (val))
2185 return true_edge;
2186 else if (integer_zerop (val))
2187 return false_edge;
2188 else
2189 return NULL;
2193 /* Given a constant value VAL and the entry block BB to a SWITCH_EXPR
2194 statement, determine which edge will be taken out of the block. Return
2195 NULL if any edge may be taken. */
2197 static edge
2198 find_taken_edge_switch_expr (basic_block bb, tree val)
2200 tree switch_expr, taken_case;
2201 basic_block dest_bb;
2202 edge e;
2204 if (TREE_CODE (val) != INTEGER_CST)
2205 return NULL;
2207 switch_expr = last_stmt (bb);
2208 taken_case = find_case_label_for_value (switch_expr, val);
2209 dest_bb = label_to_block (CASE_LABEL (taken_case));
2211 e = find_edge (bb, dest_bb);
2212 gcc_assert (e);
2213 return e;
2217 /* Return the CASE_LABEL_EXPR that SWITCH_EXPR will take for VAL.
2218 We can make optimal use here of the fact that the case labels are
2219 sorted: We can do a binary search for a case matching VAL. */
2221 static tree
2222 find_case_label_for_value (tree switch_expr, tree val)
2224 tree vec = SWITCH_LABELS (switch_expr);
2225 size_t low, high, n = TREE_VEC_LENGTH (vec);
2226 tree default_case = TREE_VEC_ELT (vec, n - 1);
2228 for (low = -1, high = n - 1; high - low > 1; )
2230 size_t i = (high + low) / 2;
2231 tree t = TREE_VEC_ELT (vec, i);
2232 int cmp;
2234 /* Cache the result of comparing CASE_LOW and val. */
2235 cmp = tree_int_cst_compare (CASE_LOW (t), val);
2237 if (cmp > 0)
2238 high = i;
2239 else
2240 low = i;
2242 if (CASE_HIGH (t) == NULL)
2244 /* A singe-valued case label. */
2245 if (cmp == 0)
2246 return t;
2248 else
2250 /* A case range. We can only handle integer ranges. */
2251 if (cmp <= 0 && tree_int_cst_compare (CASE_HIGH (t), val) >= 0)
2252 return t;
2256 return default_case;
2260 /* If all the PHI nodes in DEST have alternatives for E1 and E2 and
2261 those alternatives are equal in each of the PHI nodes, then return
2262 true, else return false. */
2264 static bool
2265 phi_alternatives_equal (basic_block dest, edge e1, edge e2)
2267 tree phi, val1, val2;
2268 int n1, n2;
2270 for (phi = phi_nodes (dest); phi; phi = PHI_CHAIN (phi))
2272 n1 = phi_arg_from_edge (phi, e1);
2273 n2 = phi_arg_from_edge (phi, e2);
2275 gcc_assert (n1 >= 0);
2276 gcc_assert (n2 >= 0);
2278 val1 = PHI_ARG_DEF (phi, n1);
2279 val2 = PHI_ARG_DEF (phi, n2);
2281 if (!operand_equal_for_phi_arg_p (val1, val2))
2282 return false;
2285 return true;
2289 /*---------------------------------------------------------------------------
2290 Debugging functions
2291 ---------------------------------------------------------------------------*/
2293 /* Dump tree-specific information of block BB to file OUTF. */
2295 void
2296 tree_dump_bb (basic_block bb, FILE *outf, int indent)
2298 dump_generic_bb (outf, bb, indent, TDF_VOPS);
2302 /* Dump a basic block on stderr. */
2304 void
2305 debug_tree_bb (basic_block bb)
2307 dump_bb (bb, stderr, 0);
2311 /* Dump basic block with index N on stderr. */
2313 basic_block
2314 debug_tree_bb_n (int n)
2316 debug_tree_bb (BASIC_BLOCK (n));
2317 return BASIC_BLOCK (n);
2321 /* Dump the CFG on stderr.
2323 FLAGS are the same used by the tree dumping functions
2324 (see TDF_* in tree.h). */
2326 void
2327 debug_tree_cfg (int flags)
2329 dump_tree_cfg (stderr, flags);
2333 /* Dump the program showing basic block boundaries on the given FILE.
2335 FLAGS are the same used by the tree dumping functions (see TDF_* in
2336 tree.h). */
2338 void
2339 dump_tree_cfg (FILE *file, int flags)
2341 if (flags & TDF_DETAILS)
2343 const char *funcname
2344 = lang_hooks.decl_printable_name (current_function_decl, 2);
2346 fputc ('\n', file);
2347 fprintf (file, ";; Function %s\n\n", funcname);
2348 fprintf (file, ";; \n%d basic blocks, %d edges, last basic block %d.\n\n",
2349 n_basic_blocks, n_edges, last_basic_block);
2351 brief_dump_cfg (file);
2352 fprintf (file, "\n");
2355 if (flags & TDF_STATS)
2356 dump_cfg_stats (file);
2358 dump_function_to_file (current_function_decl, file, flags | TDF_BLOCKS);
2362 /* Dump CFG statistics on FILE. */
2364 void
2365 dump_cfg_stats (FILE *file)
2367 static long max_num_merged_labels = 0;
2368 unsigned long size, total = 0;
2369 int n_edges;
2370 basic_block bb;
2371 const char * const fmt_str = "%-30s%-13s%12s\n";
2372 const char * const fmt_str_1 = "%-30s%13d%11lu%c\n";
2373 const char * const fmt_str_3 = "%-43s%11lu%c\n";
2374 const char *funcname
2375 = lang_hooks.decl_printable_name (current_function_decl, 2);
2378 fprintf (file, "\nCFG Statistics for %s\n\n", funcname);
2380 fprintf (file, "---------------------------------------------------------\n");
2381 fprintf (file, fmt_str, "", " Number of ", "Memory");
2382 fprintf (file, fmt_str, "", " instances ", "used ");
2383 fprintf (file, "---------------------------------------------------------\n");
2385 size = n_basic_blocks * sizeof (struct basic_block_def);
2386 total += size;
2387 fprintf (file, fmt_str_1, "Basic blocks", n_basic_blocks,
2388 SCALE (size), LABEL (size));
2390 n_edges = 0;
2391 FOR_EACH_BB (bb)
2392 n_edges += EDGE_COUNT (bb->succs);
2393 size = n_edges * sizeof (struct edge_def);
2394 total += size;
2395 fprintf (file, fmt_str_1, "Edges", n_edges, SCALE (size), LABEL (size));
2397 size = n_basic_blocks * sizeof (struct bb_ann_d);
2398 total += size;
2399 fprintf (file, fmt_str_1, "Basic block annotations", n_basic_blocks,
2400 SCALE (size), LABEL (size));
2402 fprintf (file, "---------------------------------------------------------\n");
2403 fprintf (file, fmt_str_3, "Total memory used by CFG data", SCALE (total),
2404 LABEL (total));
2405 fprintf (file, "---------------------------------------------------------\n");
2406 fprintf (file, "\n");
2408 if (cfg_stats.num_merged_labels > max_num_merged_labels)
2409 max_num_merged_labels = cfg_stats.num_merged_labels;
2411 fprintf (file, "Coalesced label blocks: %ld (Max so far: %ld)\n",
2412 cfg_stats.num_merged_labels, max_num_merged_labels);
2414 fprintf (file, "\n");
2418 /* Dump CFG statistics on stderr. Keep extern so that it's always
2419 linked in the final executable. */
2421 void
2422 debug_cfg_stats (void)
2424 dump_cfg_stats (stderr);
2428 /* Dump the flowgraph to a .vcg FILE. */
2430 static void
2431 tree_cfg2vcg (FILE *file)
2433 edge e;
2434 edge_iterator ei;
2435 basic_block bb;
2436 const char *funcname
2437 = lang_hooks.decl_printable_name (current_function_decl, 2);
2439 /* Write the file header. */
2440 fprintf (file, "graph: { title: \"%s\"\n", funcname);
2441 fprintf (file, "node: { title: \"ENTRY\" label: \"ENTRY\" }\n");
2442 fprintf (file, "node: { title: \"EXIT\" label: \"EXIT\" }\n");
2444 /* Write blocks and edges. */
2445 FOR_EACH_EDGE (e, ei, ENTRY_BLOCK_PTR->succs)
2447 fprintf (file, "edge: { sourcename: \"ENTRY\" targetname: \"%d\"",
2448 e->dest->index);
2450 if (e->flags & EDGE_FAKE)
2451 fprintf (file, " linestyle: dotted priority: 10");
2452 else
2453 fprintf (file, " linestyle: solid priority: 100");
2455 fprintf (file, " }\n");
2457 fputc ('\n', file);
2459 FOR_EACH_BB (bb)
2461 enum tree_code head_code, end_code;
2462 const char *head_name, *end_name;
2463 int head_line = 0;
2464 int end_line = 0;
2465 tree first = first_stmt (bb);
2466 tree last = last_stmt (bb);
2468 if (first)
2470 head_code = TREE_CODE (first);
2471 head_name = tree_code_name[head_code];
2472 head_line = get_lineno (first);
2474 else
2475 head_name = "no-statement";
2477 if (last)
2479 end_code = TREE_CODE (last);
2480 end_name = tree_code_name[end_code];
2481 end_line = get_lineno (last);
2483 else
2484 end_name = "no-statement";
2486 fprintf (file, "node: { title: \"%d\" label: \"#%d\\n%s (%d)\\n%s (%d)\"}\n",
2487 bb->index, bb->index, head_name, head_line, end_name,
2488 end_line);
2490 FOR_EACH_EDGE (e, ei, bb->succs)
2492 if (e->dest == EXIT_BLOCK_PTR)
2493 fprintf (file, "edge: { sourcename: \"%d\" targetname: \"EXIT\"", bb->index);
2494 else
2495 fprintf (file, "edge: { sourcename: \"%d\" targetname: \"%d\"", bb->index, e->dest->index);
2497 if (e->flags & EDGE_FAKE)
2498 fprintf (file, " priority: 10 linestyle: dotted");
2499 else
2500 fprintf (file, " priority: 100 linestyle: solid");
2502 fprintf (file, " }\n");
2505 if (bb->next_bb != EXIT_BLOCK_PTR)
2506 fputc ('\n', file);
2509 fputs ("}\n\n", file);
2514 /*---------------------------------------------------------------------------
2515 Miscellaneous helpers
2516 ---------------------------------------------------------------------------*/
2518 /* Return true if T represents a stmt that always transfers control. */
2520 bool
2521 is_ctrl_stmt (tree t)
2523 return (TREE_CODE (t) == COND_EXPR
2524 || TREE_CODE (t) == SWITCH_EXPR
2525 || TREE_CODE (t) == GOTO_EXPR
2526 || TREE_CODE (t) == RETURN_EXPR
2527 || TREE_CODE (t) == RESX_EXPR);
2531 /* Return true if T is a statement that may alter the flow of control
2532 (e.g., a call to a non-returning function). */
2534 bool
2535 is_ctrl_altering_stmt (tree t)
2537 tree call;
2539 gcc_assert (t);
2540 call = get_call_expr_in (t);
2541 if (call)
2543 /* A non-pure/const CALL_EXPR alters flow control if the current
2544 function has nonlocal labels. */
2545 if (TREE_SIDE_EFFECTS (call) && current_function_has_nonlocal_label)
2546 return true;
2548 /* A CALL_EXPR also alters control flow if it does not return. */
2549 if (call_expr_flags (call) & ECF_NORETURN)
2550 return true;
2553 /* If a statement can throw, it alters control flow. */
2554 return tree_can_throw_internal (t);
2558 /* Return true if T is a computed goto. */
2560 bool
2561 computed_goto_p (tree t)
2563 return (TREE_CODE (t) == GOTO_EXPR
2564 && TREE_CODE (GOTO_DESTINATION (t)) != LABEL_DECL);
2568 /* Checks whether EXPR is a simple local goto. */
2570 bool
2571 simple_goto_p (tree expr)
2573 return (TREE_CODE (expr) == GOTO_EXPR
2574 && TREE_CODE (GOTO_DESTINATION (expr)) == LABEL_DECL);
2578 /* Return true if T should start a new basic block. PREV_T is the
2579 statement preceding T. It is used when T is a label or a case label.
2580 Labels should only start a new basic block if their previous statement
2581 wasn't a label. Otherwise, sequence of labels would generate
2582 unnecessary basic blocks that only contain a single label. */
2584 static inline bool
2585 stmt_starts_bb_p (tree t, tree prev_t)
2587 enum tree_code code;
2589 if (t == NULL_TREE)
2590 return false;
2592 /* LABEL_EXPRs start a new basic block only if the preceding
2593 statement wasn't a label of the same type. This prevents the
2594 creation of consecutive blocks that have nothing but a single
2595 label. */
2596 code = TREE_CODE (t);
2597 if (code == LABEL_EXPR)
2599 /* Nonlocal and computed GOTO targets always start a new block. */
2600 if (code == LABEL_EXPR
2601 && (DECL_NONLOCAL (LABEL_EXPR_LABEL (t))
2602 || FORCED_LABEL (LABEL_EXPR_LABEL (t))))
2603 return true;
2605 if (prev_t && TREE_CODE (prev_t) == code)
2607 if (DECL_NONLOCAL (LABEL_EXPR_LABEL (prev_t)))
2608 return true;
2610 cfg_stats.num_merged_labels++;
2611 return false;
2613 else
2614 return true;
2617 return false;
2621 /* Return true if T should end a basic block. */
2623 bool
2624 stmt_ends_bb_p (tree t)
2626 return is_ctrl_stmt (t) || is_ctrl_altering_stmt (t);
2630 /* Add gotos that used to be represented implicitly in the CFG. */
2632 void
2633 disband_implicit_edges (void)
2635 basic_block bb;
2636 block_stmt_iterator last;
2637 edge e;
2638 edge_iterator ei;
2639 tree stmt, label;
2641 FOR_EACH_BB (bb)
2643 last = bsi_last (bb);
2644 stmt = last_stmt (bb);
2646 if (stmt && TREE_CODE (stmt) == COND_EXPR)
2648 /* Remove superfluous gotos from COND_EXPR branches. Moved
2649 from cfg_remove_useless_stmts here since it violates the
2650 invariants for tree--cfg correspondence and thus fits better
2651 here where we do it anyway. */
2652 e = find_edge (bb, bb->next_bb);
2653 if (e)
2655 if (e->flags & EDGE_TRUE_VALUE)
2656 COND_EXPR_THEN (stmt) = build_empty_stmt ();
2657 else if (e->flags & EDGE_FALSE_VALUE)
2658 COND_EXPR_ELSE (stmt) = build_empty_stmt ();
2659 else
2660 gcc_unreachable ();
2661 e->flags |= EDGE_FALLTHRU;
2664 continue;
2667 if (stmt && TREE_CODE (stmt) == RETURN_EXPR)
2669 /* Remove the RETURN_EXPR if we may fall though to the exit
2670 instead. */
2671 gcc_assert (EDGE_COUNT (bb->succs) == 1);
2672 gcc_assert (EDGE_SUCC (bb, 0)->dest == EXIT_BLOCK_PTR);
2674 if (bb->next_bb == EXIT_BLOCK_PTR
2675 && !TREE_OPERAND (stmt, 0))
2677 bsi_remove (&last);
2678 EDGE_SUCC (bb, 0)->flags |= EDGE_FALLTHRU;
2680 continue;
2683 /* There can be no fallthru edge if the last statement is a control
2684 one. */
2685 if (stmt && is_ctrl_stmt (stmt))
2686 continue;
2688 /* Find a fallthru edge and emit the goto if necessary. */
2689 FOR_EACH_EDGE (e, ei, bb->succs)
2690 if (e->flags & EDGE_FALLTHRU)
2691 break;
2693 if (!e || e->dest == bb->next_bb)
2694 continue;
2696 gcc_assert (e->dest != EXIT_BLOCK_PTR);
2697 label = tree_block_label (e->dest);
2699 stmt = build1 (GOTO_EXPR, void_type_node, label);
2700 #ifdef USE_MAPPED_LOCATION
2701 SET_EXPR_LOCATION (stmt, e->goto_locus);
2702 #else
2703 SET_EXPR_LOCUS (stmt, e->goto_locus);
2704 #endif
2705 bsi_insert_after (&last, stmt, BSI_NEW_STMT);
2706 e->flags &= ~EDGE_FALLTHRU;
2710 /* Remove block annotations and other datastructures. */
2712 void
2713 delete_tree_cfg_annotations (void)
2715 basic_block bb;
2716 if (n_basic_blocks > 0)
2717 free_blocks_annotations ();
2719 label_to_block_map = NULL;
2720 free_rbi_pool ();
2721 FOR_EACH_BB (bb)
2722 bb->rbi = NULL;
2726 /* Return the first statement in basic block BB. */
2728 tree
2729 first_stmt (basic_block bb)
2731 block_stmt_iterator i = bsi_start (bb);
2732 return !bsi_end_p (i) ? bsi_stmt (i) : NULL_TREE;
2736 /* Return the last statement in basic block BB. */
2738 tree
2739 last_stmt (basic_block bb)
2741 block_stmt_iterator b = bsi_last (bb);
2742 return !bsi_end_p (b) ? bsi_stmt (b) : NULL_TREE;
2746 /* Return a pointer to the last statement in block BB. */
2748 tree *
2749 last_stmt_ptr (basic_block bb)
2751 block_stmt_iterator last = bsi_last (bb);
2752 return !bsi_end_p (last) ? bsi_stmt_ptr (last) : NULL;
2756 /* Return the last statement of an otherwise empty block. Return NULL
2757 if the block is totally empty, or if it contains more than one
2758 statement. */
2760 tree
2761 last_and_only_stmt (basic_block bb)
2763 block_stmt_iterator i = bsi_last (bb);
2764 tree last, prev;
2766 if (bsi_end_p (i))
2767 return NULL_TREE;
2769 last = bsi_stmt (i);
2770 bsi_prev (&i);
2771 if (bsi_end_p (i))
2772 return last;
2774 /* Empty statements should no longer appear in the instruction stream.
2775 Everything that might have appeared before should be deleted by
2776 remove_useless_stmts, and the optimizers should just bsi_remove
2777 instead of smashing with build_empty_stmt.
2779 Thus the only thing that should appear here in a block containing
2780 one executable statement is a label. */
2781 prev = bsi_stmt (i);
2782 if (TREE_CODE (prev) == LABEL_EXPR)
2783 return last;
2784 else
2785 return NULL_TREE;
2789 /* Mark BB as the basic block holding statement T. */
2791 void
2792 set_bb_for_stmt (tree t, basic_block bb)
2794 if (TREE_CODE (t) == PHI_NODE)
2795 PHI_BB (t) = bb;
2796 else if (TREE_CODE (t) == STATEMENT_LIST)
2798 tree_stmt_iterator i;
2799 for (i = tsi_start (t); !tsi_end_p (i); tsi_next (&i))
2800 set_bb_for_stmt (tsi_stmt (i), bb);
2802 else
2804 stmt_ann_t ann = get_stmt_ann (t);
2805 ann->bb = bb;
2807 /* If the statement is a label, add the label to block-to-labels map
2808 so that we can speed up edge creation for GOTO_EXPRs. */
2809 if (TREE_CODE (t) == LABEL_EXPR)
2811 int uid;
2813 t = LABEL_EXPR_LABEL (t);
2814 uid = LABEL_DECL_UID (t);
2815 if (uid == -1)
2817 LABEL_DECL_UID (t) = uid = cfun->last_label_uid++;
2818 if (VARRAY_SIZE (label_to_block_map) <= (unsigned) uid)
2819 VARRAY_GROW (label_to_block_map, 3 * uid / 2);
2821 else
2822 /* We're moving an existing label. Make sure that we've
2823 removed it from the old block. */
2824 gcc_assert (!bb || !VARRAY_BB (label_to_block_map, uid));
2825 VARRAY_BB (label_to_block_map, uid) = bb;
2830 /* Finds iterator for STMT. */
2832 extern block_stmt_iterator
2833 bsi_for_stmt (tree stmt)
2835 block_stmt_iterator bsi;
2837 for (bsi = bsi_start (bb_for_stmt (stmt)); !bsi_end_p (bsi); bsi_next (&bsi))
2838 if (bsi_stmt (bsi) == stmt)
2839 return bsi;
2841 gcc_unreachable ();
2844 /* Insert statement (or statement list) T before the statement
2845 pointed-to by iterator I. M specifies how to update iterator I
2846 after insertion (see enum bsi_iterator_update). */
2848 void
2849 bsi_insert_before (block_stmt_iterator *i, tree t, enum bsi_iterator_update m)
2851 set_bb_for_stmt (t, i->bb);
2852 tsi_link_before (&i->tsi, t, m);
2853 modify_stmt (t);
2857 /* Insert statement (or statement list) T after the statement
2858 pointed-to by iterator I. M specifies how to update iterator I
2859 after insertion (see enum bsi_iterator_update). */
2861 void
2862 bsi_insert_after (block_stmt_iterator *i, tree t, enum bsi_iterator_update m)
2864 set_bb_for_stmt (t, i->bb);
2865 tsi_link_after (&i->tsi, t, m);
2866 modify_stmt (t);
2870 /* Remove the statement pointed to by iterator I. The iterator is updated
2871 to the next statement. */
2873 void
2874 bsi_remove (block_stmt_iterator *i)
2876 tree t = bsi_stmt (*i);
2877 set_bb_for_stmt (t, NULL);
2878 tsi_delink (&i->tsi);
2882 /* Move the statement at FROM so it comes right after the statement at TO. */
2884 void
2885 bsi_move_after (block_stmt_iterator *from, block_stmt_iterator *to)
2887 tree stmt = bsi_stmt (*from);
2888 bsi_remove (from);
2889 bsi_insert_after (to, stmt, BSI_SAME_STMT);
2893 /* Move the statement at FROM so it comes right before the statement at TO. */
2895 void
2896 bsi_move_before (block_stmt_iterator *from, block_stmt_iterator *to)
2898 tree stmt = bsi_stmt (*from);
2899 bsi_remove (from);
2900 bsi_insert_before (to, stmt, BSI_SAME_STMT);
2904 /* Move the statement at FROM to the end of basic block BB. */
2906 void
2907 bsi_move_to_bb_end (block_stmt_iterator *from, basic_block bb)
2909 block_stmt_iterator last = bsi_last (bb);
2911 /* Have to check bsi_end_p because it could be an empty block. */
2912 if (!bsi_end_p (last) && is_ctrl_stmt (bsi_stmt (last)))
2913 bsi_move_before (from, &last);
2914 else
2915 bsi_move_after (from, &last);
2919 /* Replace the contents of the statement pointed to by iterator BSI
2920 with STMT. If PRESERVE_EH_INFO is true, the exception handling
2921 information of the original statement is preserved. */
2923 void
2924 bsi_replace (const block_stmt_iterator *bsi, tree stmt, bool preserve_eh_info)
2926 int eh_region;
2927 tree orig_stmt = bsi_stmt (*bsi);
2929 SET_EXPR_LOCUS (stmt, EXPR_LOCUS (orig_stmt));
2930 set_bb_for_stmt (stmt, bsi->bb);
2932 /* Preserve EH region information from the original statement, if
2933 requested by the caller. */
2934 if (preserve_eh_info)
2936 eh_region = lookup_stmt_eh_region (orig_stmt);
2937 if (eh_region >= 0)
2938 add_stmt_to_eh_region (stmt, eh_region);
2941 *bsi_stmt_ptr (*bsi) = stmt;
2942 modify_stmt (stmt);
2946 /* Insert the statement pointed-to by BSI into edge E. Every attempt
2947 is made to place the statement in an existing basic block, but
2948 sometimes that isn't possible. When it isn't possible, the edge is
2949 split and the statement is added to the new block.
2951 In all cases, the returned *BSI points to the correct location. The
2952 return value is true if insertion should be done after the location,
2953 or false if it should be done before the location. If new basic block
2954 has to be created, it is stored in *NEW_BB. */
2956 static bool
2957 tree_find_edge_insert_loc (edge e, block_stmt_iterator *bsi,
2958 basic_block *new_bb)
2960 basic_block dest, src;
2961 tree tmp;
2963 dest = e->dest;
2964 restart:
2966 /* If the destination has one predecessor which has no PHI nodes,
2967 insert there. Except for the exit block.
2969 The requirement for no PHI nodes could be relaxed. Basically we
2970 would have to examine the PHIs to prove that none of them used
2971 the value set by the statement we want to insert on E. That
2972 hardly seems worth the effort. */
2973 if (EDGE_COUNT (dest->preds) == 1
2974 && ! phi_nodes (dest)
2975 && dest != EXIT_BLOCK_PTR)
2977 *bsi = bsi_start (dest);
2978 if (bsi_end_p (*bsi))
2979 return true;
2981 /* Make sure we insert after any leading labels. */
2982 tmp = bsi_stmt (*bsi);
2983 while (TREE_CODE (tmp) == LABEL_EXPR)
2985 bsi_next (bsi);
2986 if (bsi_end_p (*bsi))
2987 break;
2988 tmp = bsi_stmt (*bsi);
2991 if (bsi_end_p (*bsi))
2993 *bsi = bsi_last (dest);
2994 return true;
2996 else
2997 return false;
3000 /* If the source has one successor, the edge is not abnormal and
3001 the last statement does not end a basic block, insert there.
3002 Except for the entry block. */
3003 src = e->src;
3004 if ((e->flags & EDGE_ABNORMAL) == 0
3005 && EDGE_COUNT (src->succs) == 1
3006 && src != ENTRY_BLOCK_PTR)
3008 *bsi = bsi_last (src);
3009 if (bsi_end_p (*bsi))
3010 return true;
3012 tmp = bsi_stmt (*bsi);
3013 if (!stmt_ends_bb_p (tmp))
3014 return true;
3016 /* Insert code just before returning the value. We may need to decompose
3017 the return in the case it contains non-trivial operand. */
3018 if (TREE_CODE (tmp) == RETURN_EXPR)
3020 tree op = TREE_OPERAND (tmp, 0);
3021 if (!is_gimple_val (op))
3023 gcc_assert (TREE_CODE (op) == MODIFY_EXPR);
3024 bsi_insert_before (bsi, op, BSI_NEW_STMT);
3025 TREE_OPERAND (tmp, 0) = TREE_OPERAND (op, 0);
3027 bsi_prev (bsi);
3028 return true;
3032 /* Otherwise, create a new basic block, and split this edge. */
3033 dest = split_edge (e);
3034 if (new_bb)
3035 *new_bb = dest;
3036 e = EDGE_PRED (dest, 0);
3037 goto restart;
3041 /* This routine will commit all pending edge insertions, creating any new
3042 basic blocks which are necessary. */
3044 void
3045 bsi_commit_edge_inserts (void)
3047 basic_block bb;
3048 edge e;
3049 edge_iterator ei;
3051 bsi_commit_one_edge_insert (EDGE_SUCC (ENTRY_BLOCK_PTR, 0), NULL);
3053 FOR_EACH_BB (bb)
3054 FOR_EACH_EDGE (e, ei, bb->succs)
3055 bsi_commit_one_edge_insert (e, NULL);
3059 /* Commit insertions pending at edge E. If a new block is created, set NEW_BB
3060 to this block, otherwise set it to NULL. */
3062 void
3063 bsi_commit_one_edge_insert (edge e, basic_block *new_bb)
3065 if (new_bb)
3066 *new_bb = NULL;
3067 if (PENDING_STMT (e))
3069 block_stmt_iterator bsi;
3070 tree stmt = PENDING_STMT (e);
3072 PENDING_STMT (e) = NULL_TREE;
3074 if (tree_find_edge_insert_loc (e, &bsi, new_bb))
3075 bsi_insert_after (&bsi, stmt, BSI_NEW_STMT);
3076 else
3077 bsi_insert_before (&bsi, stmt, BSI_NEW_STMT);
3082 /* Add STMT to the pending list of edge E. No actual insertion is
3083 made until a call to bsi_commit_edge_inserts () is made. */
3085 void
3086 bsi_insert_on_edge (edge e, tree stmt)
3088 append_to_statement_list (stmt, &PENDING_STMT (e));
3091 /* Similar to bsi_insert_on_edge+bsi_commit_edge_inserts. If new block has to
3092 be created, it is returned. */
3094 basic_block
3095 bsi_insert_on_edge_immediate (edge e, tree stmt)
3097 block_stmt_iterator bsi;
3098 basic_block new_bb = NULL;
3100 gcc_assert (!PENDING_STMT (e));
3102 if (tree_find_edge_insert_loc (e, &bsi, &new_bb))
3103 bsi_insert_after (&bsi, stmt, BSI_NEW_STMT);
3104 else
3105 bsi_insert_before (&bsi, stmt, BSI_NEW_STMT);
3107 return new_bb;
3110 /*---------------------------------------------------------------------------
3111 Tree specific functions for CFG manipulation
3112 ---------------------------------------------------------------------------*/
3114 /* Reinstall those PHI arguments queued in OLD_EDGE to NEW_EDGE. */
3116 static void
3117 reinstall_phi_args (edge new_edge, edge old_edge)
3119 tree var, phi;
3121 if (!PENDING_STMT (old_edge))
3122 return;
3124 for (var = PENDING_STMT (old_edge), phi = phi_nodes (new_edge->dest);
3125 var && phi;
3126 var = TREE_CHAIN (var), phi = PHI_CHAIN (phi))
3128 tree result = TREE_PURPOSE (var);
3129 tree arg = TREE_VALUE (var);
3131 gcc_assert (result == PHI_RESULT (phi));
3133 add_phi_arg (phi, arg, new_edge);
3136 PENDING_STMT (old_edge) = NULL;
3139 /* Split a (typically critical) edge EDGE_IN. Return the new block.
3140 Abort on abnormal edges. */
3142 static basic_block
3143 tree_split_edge (edge edge_in)
3145 basic_block new_bb, after_bb, dest, src;
3146 edge new_edge, e;
3148 /* Abnormal edges cannot be split. */
3149 gcc_assert (!(edge_in->flags & EDGE_ABNORMAL));
3151 src = edge_in->src;
3152 dest = edge_in->dest;
3154 /* Place the new block in the block list. Try to keep the new block
3155 near its "logical" location. This is of most help to humans looking
3156 at debugging dumps. */
3157 if (dest->prev_bb && find_edge (dest->prev_bb, dest))
3158 after_bb = edge_in->src;
3159 else
3160 after_bb = dest->prev_bb;
3162 new_bb = create_empty_bb (after_bb);
3163 new_bb->frequency = EDGE_FREQUENCY (edge_in);
3164 new_bb->count = edge_in->count;
3165 new_edge = make_edge (new_bb, dest, EDGE_FALLTHRU);
3166 new_edge->probability = REG_BR_PROB_BASE;
3167 new_edge->count = edge_in->count;
3169 e = redirect_edge_and_branch (edge_in, new_bb);
3170 gcc_assert (e);
3171 reinstall_phi_args (new_edge, e);
3173 return new_bb;
3177 /* Return true when BB has label LABEL in it. */
3179 static bool
3180 has_label_p (basic_block bb, tree label)
3182 block_stmt_iterator bsi;
3184 for (bsi = bsi_start (bb); !bsi_end_p (bsi); bsi_next (&bsi))
3186 tree stmt = bsi_stmt (bsi);
3188 if (TREE_CODE (stmt) != LABEL_EXPR)
3189 return false;
3190 if (LABEL_EXPR_LABEL (stmt) == label)
3191 return true;
3193 return false;
3197 /* Callback for walk_tree, check that all elements with address taken are
3198 properly noticed as such. */
3200 static tree
3201 verify_expr (tree *tp, int *walk_subtrees, void *data ATTRIBUTE_UNUSED)
3203 tree t = *tp, x;
3205 if (TYPE_P (t))
3206 *walk_subtrees = 0;
3208 /* Check operand N for being valid GIMPLE and give error MSG if not.
3209 We check for constants explicitly since they are not considered
3210 gimple invariants if they overflowed. */
3211 #define CHECK_OP(N, MSG) \
3212 do { if (!CONSTANT_CLASS_P (TREE_OPERAND (t, N)) \
3213 && !is_gimple_val (TREE_OPERAND (t, N))) \
3214 { error (MSG); return TREE_OPERAND (t, N); }} while (0)
3216 switch (TREE_CODE (t))
3218 case SSA_NAME:
3219 if (SSA_NAME_IN_FREE_LIST (t))
3221 error ("SSA name in freelist but still referenced");
3222 return *tp;
3224 break;
3226 case MODIFY_EXPR:
3227 x = TREE_OPERAND (t, 0);
3228 if (TREE_CODE (x) == BIT_FIELD_REF
3229 && is_gimple_reg (TREE_OPERAND (x, 0)))
3231 error ("GIMPLE register modified with BIT_FIELD_REF");
3232 return t;
3234 break;
3236 case ADDR_EXPR:
3237 /* Skip any references (they will be checked when we recurse down the
3238 tree) and ensure that any variable used as a prefix is marked
3239 addressable. */
3240 for (x = TREE_OPERAND (t, 0);
3241 (handled_component_p (x)
3242 || TREE_CODE (x) == REALPART_EXPR
3243 || TREE_CODE (x) == IMAGPART_EXPR);
3244 x = TREE_OPERAND (x, 0))
3247 if (TREE_CODE (x) != VAR_DECL && TREE_CODE (x) != PARM_DECL)
3248 return NULL;
3249 if (!TREE_ADDRESSABLE (x))
3251 error ("address taken, but ADDRESSABLE bit not set");
3252 return x;
3254 break;
3256 case COND_EXPR:
3257 x = COND_EXPR_COND (t);
3258 if (TREE_CODE (TREE_TYPE (x)) != BOOLEAN_TYPE)
3260 error ("non-boolean used in condition");
3261 return x;
3263 break;
3265 case NOP_EXPR:
3266 case CONVERT_EXPR:
3267 case FIX_TRUNC_EXPR:
3268 case FIX_CEIL_EXPR:
3269 case FIX_FLOOR_EXPR:
3270 case FIX_ROUND_EXPR:
3271 case FLOAT_EXPR:
3272 case NEGATE_EXPR:
3273 case ABS_EXPR:
3274 case BIT_NOT_EXPR:
3275 case NON_LVALUE_EXPR:
3276 case TRUTH_NOT_EXPR:
3277 CHECK_OP (0, "Invalid operand to unary operator");
3278 break;
3280 case REALPART_EXPR:
3281 case IMAGPART_EXPR:
3282 case COMPONENT_REF:
3283 case ARRAY_REF:
3284 case ARRAY_RANGE_REF:
3285 case BIT_FIELD_REF:
3286 case VIEW_CONVERT_EXPR:
3287 /* We have a nest of references. Verify that each of the operands
3288 that determine where to reference is either a constant or a variable,
3289 verify that the base is valid, and then show we've already checked
3290 the subtrees. */
3291 while (TREE_CODE (t) == REALPART_EXPR || TREE_CODE (t) == IMAGPART_EXPR
3292 || handled_component_p (t))
3294 if (TREE_CODE (t) == COMPONENT_REF && TREE_OPERAND (t, 2))
3295 CHECK_OP (2, "Invalid COMPONENT_REF offset operator");
3296 else if (TREE_CODE (t) == ARRAY_REF
3297 || TREE_CODE (t) == ARRAY_RANGE_REF)
3299 CHECK_OP (1, "Invalid array index.");
3300 if (TREE_OPERAND (t, 2))
3301 CHECK_OP (2, "Invalid array lower bound.");
3302 if (TREE_OPERAND (t, 3))
3303 CHECK_OP (3, "Invalid array stride.");
3305 else if (TREE_CODE (t) == BIT_FIELD_REF)
3307 CHECK_OP (1, "Invalid operand to BIT_FIELD_REF");
3308 CHECK_OP (2, "Invalid operand to BIT_FIELD_REF");
3311 t = TREE_OPERAND (t, 0);
3314 if (!CONSTANT_CLASS_P (t) && !is_gimple_lvalue (t))
3316 error ("Invalid reference prefix.");
3317 return t;
3319 *walk_subtrees = 0;
3320 break;
3322 case LT_EXPR:
3323 case LE_EXPR:
3324 case GT_EXPR:
3325 case GE_EXPR:
3326 case EQ_EXPR:
3327 case NE_EXPR:
3328 case UNORDERED_EXPR:
3329 case ORDERED_EXPR:
3330 case UNLT_EXPR:
3331 case UNLE_EXPR:
3332 case UNGT_EXPR:
3333 case UNGE_EXPR:
3334 case UNEQ_EXPR:
3335 case LTGT_EXPR:
3336 case PLUS_EXPR:
3337 case MINUS_EXPR:
3338 case MULT_EXPR:
3339 case TRUNC_DIV_EXPR:
3340 case CEIL_DIV_EXPR:
3341 case FLOOR_DIV_EXPR:
3342 case ROUND_DIV_EXPR:
3343 case TRUNC_MOD_EXPR:
3344 case CEIL_MOD_EXPR:
3345 case FLOOR_MOD_EXPR:
3346 case ROUND_MOD_EXPR:
3347 case RDIV_EXPR:
3348 case EXACT_DIV_EXPR:
3349 case MIN_EXPR:
3350 case MAX_EXPR:
3351 case LSHIFT_EXPR:
3352 case RSHIFT_EXPR:
3353 case LROTATE_EXPR:
3354 case RROTATE_EXPR:
3355 case BIT_IOR_EXPR:
3356 case BIT_XOR_EXPR:
3357 case BIT_AND_EXPR:
3358 CHECK_OP (0, "Invalid operand to binary operator");
3359 CHECK_OP (1, "Invalid operand to binary operator");
3360 break;
3362 default:
3363 break;
3365 return NULL;
3367 #undef CHECK_OP
3371 /* Verify STMT, return true if STMT is not in GIMPLE form.
3372 TODO: Implement type checking. */
3374 static bool
3375 verify_stmt (tree stmt, bool last_in_block)
3377 tree addr;
3379 if (!is_gimple_stmt (stmt))
3381 error ("Is not a valid GIMPLE statement.");
3382 goto fail;
3385 addr = walk_tree (&stmt, verify_expr, NULL, NULL);
3386 if (addr)
3388 debug_generic_stmt (addr);
3389 return true;
3392 /* If the statement is marked as part of an EH region, then it is
3393 expected that the statement could throw. Verify that when we
3394 have optimizations that simplify statements such that we prove
3395 that they cannot throw, that we update other data structures
3396 to match. */
3397 if (lookup_stmt_eh_region (stmt) >= 0)
3399 if (!tree_could_throw_p (stmt))
3401 error ("Statement marked for throw, but doesn%'t.");
3402 goto fail;
3404 if (!last_in_block && tree_can_throw_internal (stmt))
3406 error ("Statement marked for throw in middle of block.");
3407 goto fail;
3411 return false;
3413 fail:
3414 debug_generic_stmt (stmt);
3415 return true;
3419 /* Return true when the T can be shared. */
3421 static bool
3422 tree_node_can_be_shared (tree t)
3424 if (IS_TYPE_OR_DECL_P (t)
3425 /* We check for constants explicitly since they are not considered
3426 gimple invariants if they overflowed. */
3427 || CONSTANT_CLASS_P (t)
3428 || is_gimple_min_invariant (t)
3429 || TREE_CODE (t) == SSA_NAME)
3430 return true;
3432 if (TREE_CODE (t) == CASE_LABEL_EXPR)
3433 return true;
3435 while (((TREE_CODE (t) == ARRAY_REF || TREE_CODE (t) == ARRAY_RANGE_REF)
3436 /* We check for constants explicitly since they are not considered
3437 gimple invariants if they overflowed. */
3438 && (CONSTANT_CLASS_P (TREE_OPERAND (t, 1))
3439 || is_gimple_min_invariant (TREE_OPERAND (t, 1))))
3440 || (TREE_CODE (t) == COMPONENT_REF
3441 || TREE_CODE (t) == REALPART_EXPR
3442 || TREE_CODE (t) == IMAGPART_EXPR))
3443 t = TREE_OPERAND (t, 0);
3445 if (DECL_P (t))
3446 return true;
3448 return false;
3452 /* Called via walk_trees. Verify tree sharing. */
3454 static tree
3455 verify_node_sharing (tree * tp, int *walk_subtrees, void *data)
3457 htab_t htab = (htab_t) data;
3458 void **slot;
3460 if (tree_node_can_be_shared (*tp))
3462 *walk_subtrees = false;
3463 return NULL;
3466 slot = htab_find_slot (htab, *tp, INSERT);
3467 if (*slot)
3468 return *slot;
3469 *slot = *tp;
3471 return NULL;
3475 /* Verify the GIMPLE statement chain. */
3477 void
3478 verify_stmts (void)
3480 basic_block bb;
3481 block_stmt_iterator bsi;
3482 bool err = false;
3483 htab_t htab;
3484 tree addr;
3486 timevar_push (TV_TREE_STMT_VERIFY);
3487 htab = htab_create (37, htab_hash_pointer, htab_eq_pointer, NULL);
3489 FOR_EACH_BB (bb)
3491 tree phi;
3492 int i;
3494 for (phi = phi_nodes (bb); phi; phi = PHI_CHAIN (phi))
3496 int phi_num_args = PHI_NUM_ARGS (phi);
3498 for (i = 0; i < phi_num_args; i++)
3500 tree t = PHI_ARG_DEF (phi, i);
3501 tree addr;
3503 /* Addressable variables do have SSA_NAMEs but they
3504 are not considered gimple values. */
3505 if (TREE_CODE (t) != SSA_NAME
3506 && TREE_CODE (t) != FUNCTION_DECL
3507 && !is_gimple_val (t))
3509 error ("PHI def is not a GIMPLE value");
3510 debug_generic_stmt (phi);
3511 debug_generic_stmt (t);
3512 err |= true;
3515 addr = walk_tree (&t, verify_expr, NULL, NULL);
3516 if (addr)
3518 debug_generic_stmt (addr);
3519 err |= true;
3522 addr = walk_tree (&t, verify_node_sharing, htab, NULL);
3523 if (addr)
3525 error ("Incorrect sharing of tree nodes");
3526 debug_generic_stmt (phi);
3527 debug_generic_stmt (addr);
3528 err |= true;
3533 for (bsi = bsi_start (bb); !bsi_end_p (bsi); )
3535 tree stmt = bsi_stmt (bsi);
3536 bsi_next (&bsi);
3537 err |= verify_stmt (stmt, bsi_end_p (bsi));
3538 addr = walk_tree (&stmt, verify_node_sharing, htab, NULL);
3539 if (addr)
3541 error ("Incorrect sharing of tree nodes");
3542 debug_generic_stmt (stmt);
3543 debug_generic_stmt (addr);
3544 err |= true;
3549 if (err)
3550 internal_error ("verify_stmts failed.");
3552 htab_delete (htab);
3553 timevar_pop (TV_TREE_STMT_VERIFY);
3557 /* Verifies that the flow information is OK. */
3559 static int
3560 tree_verify_flow_info (void)
3562 int err = 0;
3563 basic_block bb;
3564 block_stmt_iterator bsi;
3565 tree stmt;
3566 edge e;
3567 edge_iterator ei;
3569 if (ENTRY_BLOCK_PTR->stmt_list)
3571 error ("ENTRY_BLOCK has a statement list associated with it\n");
3572 err = 1;
3575 if (EXIT_BLOCK_PTR->stmt_list)
3577 error ("EXIT_BLOCK has a statement list associated with it\n");
3578 err = 1;
3581 FOR_EACH_EDGE (e, ei, EXIT_BLOCK_PTR->preds)
3582 if (e->flags & EDGE_FALLTHRU)
3584 error ("Fallthru to exit from bb %d\n", e->src->index);
3585 err = 1;
3588 FOR_EACH_BB (bb)
3590 bool found_ctrl_stmt = false;
3592 /* Skip labels on the start of basic block. */
3593 for (bsi = bsi_start (bb); !bsi_end_p (bsi); bsi_next (&bsi))
3595 if (TREE_CODE (bsi_stmt (bsi)) != LABEL_EXPR)
3596 break;
3598 if (label_to_block (LABEL_EXPR_LABEL (bsi_stmt (bsi))) != bb)
3600 tree stmt = bsi_stmt (bsi);
3601 error ("Label %s to block does not match in bb %d\n",
3602 IDENTIFIER_POINTER (DECL_NAME (LABEL_EXPR_LABEL (stmt))),
3603 bb->index);
3604 err = 1;
3607 if (decl_function_context (LABEL_EXPR_LABEL (bsi_stmt (bsi)))
3608 != current_function_decl)
3610 tree stmt = bsi_stmt (bsi);
3611 error ("Label %s has incorrect context in bb %d\n",
3612 IDENTIFIER_POINTER (DECL_NAME (LABEL_EXPR_LABEL (stmt))),
3613 bb->index);
3614 err = 1;
3618 /* Verify that body of basic block BB is free of control flow. */
3619 for (; !bsi_end_p (bsi); bsi_next (&bsi))
3621 tree stmt = bsi_stmt (bsi);
3623 if (found_ctrl_stmt)
3625 error ("Control flow in the middle of basic block %d\n",
3626 bb->index);
3627 err = 1;
3630 if (stmt_ends_bb_p (stmt))
3631 found_ctrl_stmt = true;
3633 if (TREE_CODE (stmt) == LABEL_EXPR)
3635 error ("Label %s in the middle of basic block %d\n",
3636 IDENTIFIER_POINTER (DECL_NAME (stmt)),
3637 bb->index);
3638 err = 1;
3641 bsi = bsi_last (bb);
3642 if (bsi_end_p (bsi))
3643 continue;
3645 stmt = bsi_stmt (bsi);
3647 if (is_ctrl_stmt (stmt))
3649 FOR_EACH_EDGE (e, ei, bb->succs)
3650 if (e->flags & EDGE_FALLTHRU)
3652 error ("Fallthru edge after a control statement in bb %d \n",
3653 bb->index);
3654 err = 1;
3658 switch (TREE_CODE (stmt))
3660 case COND_EXPR:
3662 edge true_edge;
3663 edge false_edge;
3664 if (TREE_CODE (COND_EXPR_THEN (stmt)) != GOTO_EXPR
3665 || TREE_CODE (COND_EXPR_ELSE (stmt)) != GOTO_EXPR)
3667 error ("Structured COND_EXPR at the end of bb %d\n", bb->index);
3668 err = 1;
3671 extract_true_false_edges_from_block (bb, &true_edge, &false_edge);
3673 if (!true_edge || !false_edge
3674 || !(true_edge->flags & EDGE_TRUE_VALUE)
3675 || !(false_edge->flags & EDGE_FALSE_VALUE)
3676 || (true_edge->flags & (EDGE_FALLTHRU | EDGE_ABNORMAL))
3677 || (false_edge->flags & (EDGE_FALLTHRU | EDGE_ABNORMAL))
3678 || EDGE_COUNT (bb->succs) >= 3)
3680 error ("Wrong outgoing edge flags at end of bb %d\n",
3681 bb->index);
3682 err = 1;
3685 if (!has_label_p (true_edge->dest,
3686 GOTO_DESTINATION (COND_EXPR_THEN (stmt))))
3688 error ("%<then%> label does not match edge at end of bb %d\n",
3689 bb->index);
3690 err = 1;
3693 if (!has_label_p (false_edge->dest,
3694 GOTO_DESTINATION (COND_EXPR_ELSE (stmt))))
3696 error ("%<else%> label does not match edge at end of bb %d\n",
3697 bb->index);
3698 err = 1;
3701 break;
3703 case GOTO_EXPR:
3704 if (simple_goto_p (stmt))
3706 error ("Explicit goto at end of bb %d\n", bb->index);
3707 err = 1;
3709 else
3711 /* FIXME. We should double check that the labels in the
3712 destination blocks have their address taken. */
3713 FOR_EACH_EDGE (e, ei, bb->succs)
3714 if ((e->flags & (EDGE_FALLTHRU | EDGE_TRUE_VALUE
3715 | EDGE_FALSE_VALUE))
3716 || !(e->flags & EDGE_ABNORMAL))
3718 error ("Wrong outgoing edge flags at end of bb %d\n",
3719 bb->index);
3720 err = 1;
3723 break;
3725 case RETURN_EXPR:
3726 if (EDGE_COUNT (bb->succs) != 1
3727 || (EDGE_SUCC (bb, 0)->flags & (EDGE_FALLTHRU | EDGE_ABNORMAL
3728 | EDGE_TRUE_VALUE | EDGE_FALSE_VALUE)))
3730 error ("Wrong outgoing edge flags at end of bb %d\n", bb->index);
3731 err = 1;
3733 if (EDGE_SUCC (bb, 0)->dest != EXIT_BLOCK_PTR)
3735 error ("Return edge does not point to exit in bb %d\n",
3736 bb->index);
3737 err = 1;
3739 break;
3741 case SWITCH_EXPR:
3743 tree prev;
3744 edge e;
3745 size_t i, n;
3746 tree vec;
3748 vec = SWITCH_LABELS (stmt);
3749 n = TREE_VEC_LENGTH (vec);
3751 /* Mark all the destination basic blocks. */
3752 for (i = 0; i < n; ++i)
3754 tree lab = CASE_LABEL (TREE_VEC_ELT (vec, i));
3755 basic_block label_bb = label_to_block (lab);
3757 gcc_assert (!label_bb->aux || label_bb->aux == (void *)1);
3758 label_bb->aux = (void *)1;
3761 /* Verify that the case labels are sorted. */
3762 prev = TREE_VEC_ELT (vec, 0);
3763 for (i = 1; i < n - 1; ++i)
3765 tree c = TREE_VEC_ELT (vec, i);
3766 if (! CASE_LOW (c))
3768 error ("Found default case not at end of case vector");
3769 err = 1;
3770 continue;
3772 if (! tree_int_cst_lt (CASE_LOW (prev), CASE_LOW (c)))
3774 error ("Case labels not sorted:\n ");
3775 print_generic_expr (stderr, prev, 0);
3776 fprintf (stderr," is greater than ");
3777 print_generic_expr (stderr, c, 0);
3778 fprintf (stderr," but comes before it.\n");
3779 err = 1;
3781 prev = c;
3783 if (CASE_LOW (TREE_VEC_ELT (vec, n - 1)))
3785 error ("No default case found at end of case vector");
3786 err = 1;
3789 FOR_EACH_EDGE (e, ei, bb->succs)
3791 if (!e->dest->aux)
3793 error ("Extra outgoing edge %d->%d\n",
3794 bb->index, e->dest->index);
3795 err = 1;
3797 e->dest->aux = (void *)2;
3798 if ((e->flags & (EDGE_FALLTHRU | EDGE_ABNORMAL
3799 | EDGE_TRUE_VALUE | EDGE_FALSE_VALUE)))
3801 error ("Wrong outgoing edge flags at end of bb %d\n",
3802 bb->index);
3803 err = 1;
3807 /* Check that we have all of them. */
3808 for (i = 0; i < n; ++i)
3810 tree lab = CASE_LABEL (TREE_VEC_ELT (vec, i));
3811 basic_block label_bb = label_to_block (lab);
3813 if (label_bb->aux != (void *)2)
3815 error ("Missing edge %i->%i",
3816 bb->index, label_bb->index);
3817 err = 1;
3821 FOR_EACH_EDGE (e, ei, bb->succs)
3822 e->dest->aux = (void *)0;
3825 default: ;
3829 if (dom_computed[CDI_DOMINATORS] >= DOM_NO_FAST_QUERY)
3830 verify_dominators (CDI_DOMINATORS);
3832 return err;
3836 /* Updates phi nodes after creating a forwarder block joined
3837 by edge FALLTHRU. */
3839 static void
3840 tree_make_forwarder_block (edge fallthru)
3842 edge e;
3843 edge_iterator ei;
3844 basic_block dummy, bb;
3845 tree phi, new_phi, var;
3847 dummy = fallthru->src;
3848 bb = fallthru->dest;
3850 if (EDGE_COUNT (bb->preds) == 1)
3851 return;
3853 /* If we redirected a branch we must create new phi nodes at the
3854 start of BB. */
3855 for (phi = phi_nodes (dummy); phi; phi = PHI_CHAIN (phi))
3857 var = PHI_RESULT (phi);
3858 new_phi = create_phi_node (var, bb);
3859 SSA_NAME_DEF_STMT (var) = new_phi;
3860 SET_PHI_RESULT (phi, make_ssa_name (SSA_NAME_VAR (var), phi));
3861 add_phi_arg (new_phi, PHI_RESULT (phi), fallthru);
3864 /* Ensure that the PHI node chain is in the same order. */
3865 set_phi_nodes (bb, phi_reverse (phi_nodes (bb)));
3867 /* Add the arguments we have stored on edges. */
3868 FOR_EACH_EDGE (e, ei, bb->preds)
3870 if (e == fallthru)
3871 continue;
3873 flush_pending_stmts (e);
3878 /* Return true if basic block BB does nothing except pass control
3879 flow to another block and that we can safely insert a label at
3880 the start of the successor block.
3882 As a precondition, we require that BB be not equal to
3883 ENTRY_BLOCK_PTR. */
3885 static bool
3886 tree_forwarder_block_p (basic_block bb)
3888 block_stmt_iterator bsi;
3890 /* BB must have a single outgoing edge. */
3891 if (EDGE_COUNT (bb->succs) != 1
3892 /* BB can not have any PHI nodes. This could potentially be
3893 relaxed early in compilation if we re-rewrote the variables
3894 appearing in any PHI nodes in forwarder blocks. */
3895 || phi_nodes (bb)
3896 /* BB may not be a predecessor of EXIT_BLOCK_PTR. */
3897 || EDGE_SUCC (bb, 0)->dest == EXIT_BLOCK_PTR
3898 /* BB may not have an abnormal outgoing edge. */
3899 || (EDGE_SUCC (bb, 0)->flags & EDGE_ABNORMAL))
3900 return false;
3902 #if ENABLE_CHECKING
3903 gcc_assert (bb != ENTRY_BLOCK_PTR);
3904 #endif
3906 /* Now walk through the statements. We can ignore labels, anything else
3907 means this is not a forwarder block. */
3908 for (bsi = bsi_start (bb); !bsi_end_p (bsi); bsi_next (&bsi))
3910 tree stmt = bsi_stmt (bsi);
3912 switch (TREE_CODE (stmt))
3914 case LABEL_EXPR:
3915 if (DECL_NONLOCAL (LABEL_EXPR_LABEL (stmt)))
3916 return false;
3917 break;
3919 default:
3920 return false;
3924 if (find_edge (ENTRY_BLOCK_PTR, bb))
3925 return false;
3927 return true;
3930 /* Thread jumps from BB. */
3932 static bool
3933 thread_jumps_from_bb (basic_block bb)
3935 edge_iterator ei;
3936 edge e;
3937 bool retval = false;
3939 /* Examine each of our block's successors to see if it is
3940 forwardable. */
3941 for (ei = ei_start (bb->succs); (e = ei_safe_edge (ei)); )
3943 int freq;
3944 gcov_type count;
3945 edge last, old;
3946 basic_block dest, tmp, curr, old_dest;
3947 tree phi;
3948 int arg;
3950 /* If the edge is abnormal or its destination is not
3951 forwardable, then there's nothing to do. */
3952 if ((e->flags & EDGE_ABNORMAL)
3953 || !bb_ann (e->dest)->forwardable)
3955 ei_next (&ei);
3956 continue;
3959 /* Now walk through as many forwarder blocks as possible to find
3960 the ultimate destination we want to thread our jump to. */
3961 last = EDGE_SUCC (e->dest, 0);
3962 bb_ann (e->dest)->forwardable = 0;
3963 for (dest = EDGE_SUCC (e->dest, 0)->dest;
3964 bb_ann (dest)->forwardable;
3965 last = EDGE_SUCC (dest, 0),
3966 dest = EDGE_SUCC (dest, 0)->dest)
3967 bb_ann (dest)->forwardable = 0;
3969 /* Reset the forwardable marks to 1. */
3970 for (tmp = e->dest;
3971 tmp != dest;
3972 tmp = EDGE_SUCC (tmp, 0)->dest)
3973 bb_ann (tmp)->forwardable = 1;
3975 if (dest == e->dest)
3977 ei_next (&ei);
3978 continue;
3981 old = find_edge (bb, dest);
3982 if (old)
3984 /* If there already is an edge, check whether the values in
3985 phi nodes differ. */
3986 if (!phi_alternatives_equal (dest, last, old))
3988 /* The previous block is forwarder. Redirect our jump
3989 to that target instead since we know it has no PHI
3990 nodes that will need updating. */
3991 dest = last->src;
3993 /* That might mean that no forwarding at all is
3994 possible. */
3995 if (dest == e->dest)
3997 ei_next (&ei);
3998 continue;
4001 old = find_edge (bb, dest);
4005 /* Perform the redirection. */
4006 retval = true;
4007 count = e->count;
4008 freq = EDGE_FREQUENCY (e);
4009 old_dest = e->dest;
4010 e = redirect_edge_and_branch (e, dest);
4012 /* Update the profile. */
4013 if (profile_status != PROFILE_ABSENT)
4014 for (curr = old_dest;
4015 curr != dest;
4016 curr = EDGE_SUCC (curr, 0)->dest)
4018 curr->frequency -= freq;
4019 if (curr->frequency < 0)
4020 curr->frequency = 0;
4021 curr->count -= count;
4022 if (curr->count < 0)
4023 curr->count = 0;
4024 EDGE_SUCC (curr, 0)->count -= count;
4025 if (EDGE_SUCC (curr, 0)->count < 0)
4026 EDGE_SUCC (curr, 0)->count = 0;
4029 if (!old)
4031 /* Update PHI nodes. We know that the new argument should
4032 have the same value as the argument associated with LAST.
4033 Otherwise we would have changed our target block
4034 above. */
4035 for (phi = phi_nodes (dest); phi; phi = PHI_CHAIN (phi))
4037 arg = phi_arg_from_edge (phi, last);
4038 gcc_assert (arg >= 0);
4039 add_phi_arg (phi, PHI_ARG_DEF (phi, arg), e);
4043 /* Remove the unreachable blocks (observe that if all blocks
4044 were reachable before, only those in the path we threaded
4045 over and did not have any predecessor outside of the path
4046 become unreachable). */
4047 for (; old_dest != dest; old_dest = tmp)
4049 tmp = EDGE_SUCC (old_dest, 0)->dest;
4051 if (EDGE_COUNT (old_dest->preds) > 0)
4052 break;
4054 delete_basic_block (old_dest);
4057 /* Update the dominators. */
4058 if (dom_info_available_p (CDI_DOMINATORS))
4060 /* If the dominator of the destination was in the
4061 path, set its dominator to the start of the
4062 redirected edge. */
4063 if (get_immediate_dominator (CDI_DOMINATORS, old_dest) == NULL)
4064 set_immediate_dominator (CDI_DOMINATORS, old_dest, bb);
4066 /* Now proceed like if we forwarded just over one edge at a
4067 time. Algorithm for forwarding edge S --> A over
4068 edge A --> B then is
4070 if (idom (B) == A
4071 && !dominated_by (S, B))
4072 idom (B) = idom (A);
4073 recount_idom (A); */
4075 for (; old_dest != dest; old_dest = tmp)
4077 basic_block dom;
4079 tmp = EDGE_SUCC (old_dest, 0)->dest;
4081 if (get_immediate_dominator (CDI_DOMINATORS, tmp) == old_dest
4082 && !dominated_by_p (CDI_DOMINATORS, bb, tmp))
4084 dom = get_immediate_dominator (CDI_DOMINATORS, old_dest);
4085 set_immediate_dominator (CDI_DOMINATORS, tmp, dom);
4088 dom = recount_dominator (CDI_DOMINATORS, old_dest);
4089 set_immediate_dominator (CDI_DOMINATORS, old_dest, dom);
4094 return retval;
4098 /* Thread jumps over empty statements.
4100 This code should _not_ thread over obviously equivalent conditions
4101 as that requires nontrivial updates to the SSA graph.
4103 As a precondition, we require that all basic blocks be reachable.
4104 That is, there should be no opportunities left for
4105 delete_unreachable_blocks. */
4107 static bool
4108 thread_jumps (void)
4110 basic_block bb;
4111 bool retval = false;
4112 basic_block *worklist = xmalloc (sizeof (basic_block) * last_basic_block);
4113 basic_block *current = worklist;
4115 FOR_EACH_BB (bb)
4117 bb_ann (bb)->forwardable = tree_forwarder_block_p (bb);
4118 bb->flags &= ~BB_VISITED;
4121 /* We pretend to have ENTRY_BLOCK_PTR in WORKLIST. This way,
4122 ENTRY_BLOCK_PTR will never be entered into WORKLIST. */
4123 ENTRY_BLOCK_PTR->flags |= BB_VISITED;
4125 /* Initialize WORKLIST by putting non-forwarder blocks that
4126 immediately precede forwarder blocks because those are the ones
4127 that we know we can thread jumps from. We use BB_VISITED to
4128 indicate whether a given basic block is in WORKLIST or not,
4129 thereby avoiding duplicates in WORKLIST. */
4130 FOR_EACH_BB (bb)
4132 edge_iterator ei;
4133 edge e;
4135 /* We are not interested in finding non-forwarder blocks
4136 directly. We want to find non-forwarder blocks as
4137 predecessors of a forwarder block. */
4138 if (!bb_ann (bb)->forwardable)
4139 continue;
4141 /* Now we know BB is a forwarder block. Visit each of its
4142 incoming edges and add to WORKLIST all non-forwarder blocks
4143 among BB's predecessors. */
4144 FOR_EACH_EDGE (e, ei, bb->preds)
4146 /* We don't want to put a duplicate into WORKLIST. */
4147 if ((e->src->flags & BB_VISITED) == 0
4148 /* We are not interested in threading jumps from a forwarder
4149 block. */
4150 && !bb_ann (e->src)->forwardable)
4152 e->src->flags |= BB_VISITED;
4153 *current++ = e->src;
4158 /* Now let's drain WORKLIST. */
4159 while (worklist != current)
4161 bb = *--current;
4163 /* BB is no longer in WORKLIST, so clear BB_VISITED. */
4164 bb->flags &= ~BB_VISITED;
4166 if (thread_jumps_from_bb (bb))
4168 retval = true;
4170 if (tree_forwarder_block_p (bb))
4172 edge_iterator ej;
4173 edge f;
4175 bb_ann (bb)->forwardable = true;
4177 /* Attempts to thread through BB may have been blocked
4178 because BB was not a forwarder block before. Now
4179 that BB is a forwarder block, we should revisit BB's
4180 predecessors. */
4181 FOR_EACH_EDGE (f, ej, bb->preds)
4183 /* We don't want to put a duplicate into WORKLIST. */
4184 if ((f->src->flags & BB_VISITED) == 0
4185 /* We are not interested in threading jumps from a
4186 forwarder block. */
4187 && !bb_ann (f->src)->forwardable)
4189 f->src->flags |= BB_VISITED;
4190 *current++ = f->src;
4197 ENTRY_BLOCK_PTR->flags &= ~BB_VISITED;
4199 free (worklist);
4201 return retval;
4205 /* Return a non-special label in the head of basic block BLOCK.
4206 Create one if it doesn't exist. */
4208 tree
4209 tree_block_label (basic_block bb)
4211 block_stmt_iterator i, s = bsi_start (bb);
4212 bool first = true;
4213 tree label, stmt;
4215 for (i = s; !bsi_end_p (i); first = false, bsi_next (&i))
4217 stmt = bsi_stmt (i);
4218 if (TREE_CODE (stmt) != LABEL_EXPR)
4219 break;
4220 label = LABEL_EXPR_LABEL (stmt);
4221 if (!DECL_NONLOCAL (label))
4223 if (!first)
4224 bsi_move_before (&i, &s);
4225 return label;
4229 label = create_artificial_label ();
4230 stmt = build1 (LABEL_EXPR, void_type_node, label);
4231 bsi_insert_before (&s, stmt, BSI_NEW_STMT);
4232 return label;
4236 /* Attempt to perform edge redirection by replacing a possibly complex
4237 jump instruction by a goto or by removing the jump completely.
4238 This can apply only if all edges now point to the same block. The
4239 parameters and return values are equivalent to
4240 redirect_edge_and_branch. */
4242 static edge
4243 tree_try_redirect_by_replacing_jump (edge e, basic_block target)
4245 basic_block src = e->src;
4246 block_stmt_iterator b;
4247 tree stmt;
4249 /* We can replace or remove a complex jump only when we have exactly
4250 two edges. */
4251 if (EDGE_COUNT (src->succs) != 2
4252 /* Verify that all targets will be TARGET. Specifically, the
4253 edge that is not E must also go to TARGET. */
4254 || EDGE_SUCC (src, EDGE_SUCC (src, 0) == e)->dest != target)
4255 return NULL;
4257 b = bsi_last (src);
4258 if (bsi_end_p (b))
4259 return NULL;
4260 stmt = bsi_stmt (b);
4262 if (TREE_CODE (stmt) == COND_EXPR
4263 || TREE_CODE (stmt) == SWITCH_EXPR)
4265 bsi_remove (&b);
4266 e = ssa_redirect_edge (e, target);
4267 e->flags = EDGE_FALLTHRU;
4268 return e;
4271 return NULL;
4275 /* Redirect E to DEST. Return NULL on failure. Otherwise, return the
4276 edge representing the redirected branch. */
4278 static edge
4279 tree_redirect_edge_and_branch (edge e, basic_block dest)
4281 basic_block bb = e->src;
4282 block_stmt_iterator bsi;
4283 edge ret;
4284 tree label, stmt;
4286 if (e->flags & (EDGE_ABNORMAL_CALL | EDGE_EH))
4287 return NULL;
4289 if (e->src != ENTRY_BLOCK_PTR
4290 && (ret = tree_try_redirect_by_replacing_jump (e, dest)))
4291 return ret;
4293 if (e->dest == dest)
4294 return NULL;
4296 label = tree_block_label (dest);
4298 bsi = bsi_last (bb);
4299 stmt = bsi_end_p (bsi) ? NULL : bsi_stmt (bsi);
4301 switch (stmt ? TREE_CODE (stmt) : ERROR_MARK)
4303 case COND_EXPR:
4304 stmt = (e->flags & EDGE_TRUE_VALUE
4305 ? COND_EXPR_THEN (stmt)
4306 : COND_EXPR_ELSE (stmt));
4307 GOTO_DESTINATION (stmt) = label;
4308 break;
4310 case GOTO_EXPR:
4311 /* No non-abnormal edges should lead from a non-simple goto, and
4312 simple ones should be represented implicitly. */
4313 gcc_unreachable ();
4315 case SWITCH_EXPR:
4317 tree cases = get_cases_for_edge (e, stmt);
4318 edge e2 = find_edge (e->src, dest);
4320 /* If we have a list of cases associated with E, then use it
4321 as it's a lot faster than walking the entire case vector. */
4322 if (cases)
4324 tree last, first;
4326 first = cases;
4327 while (cases)
4329 last = cases;
4330 CASE_LABEL (cases) = label;
4331 cases = TREE_CHAIN (cases);
4334 /* If there was already an edge in the CFG, then we need
4335 to move all the cases associated with E to E2. */
4336 if (e2)
4338 tree cases2 = get_cases_for_edge (e2, stmt);
4340 TREE_CHAIN (last) = TREE_CHAIN (cases2);
4341 TREE_CHAIN (cases2) = first;
4344 else
4346 tree vec = SWITCH_LABELS (stmt);
4347 size_t i, n = TREE_VEC_LENGTH (vec);
4349 for (i = 0; i < n; i++)
4351 tree elt = TREE_VEC_ELT (vec, i);
4353 if (label_to_block (CASE_LABEL (elt)) == e->dest)
4354 CASE_LABEL (elt) = label;
4358 break;
4361 case RETURN_EXPR:
4362 bsi_remove (&bsi);
4363 e->flags |= EDGE_FALLTHRU;
4364 break;
4366 default:
4367 /* Otherwise it must be a fallthru edge, and we don't need to
4368 do anything besides redirecting it. */
4369 gcc_assert (e->flags & EDGE_FALLTHRU);
4370 break;
4373 /* Update/insert PHI nodes as necessary. */
4375 /* Now update the edges in the CFG. */
4376 e = ssa_redirect_edge (e, dest);
4378 return e;
4382 /* Simple wrapper, as we can always redirect fallthru edges. */
4384 static basic_block
4385 tree_redirect_edge_and_branch_force (edge e, basic_block dest)
4387 e = tree_redirect_edge_and_branch (e, dest);
4388 gcc_assert (e);
4390 return NULL;
4394 /* Splits basic block BB after statement STMT (but at least after the
4395 labels). If STMT is NULL, BB is split just after the labels. */
4397 static basic_block
4398 tree_split_block (basic_block bb, void *stmt)
4400 block_stmt_iterator bsi, bsi_tgt;
4401 tree act;
4402 basic_block new_bb;
4403 edge e;
4404 edge_iterator ei;
4406 new_bb = create_empty_bb (bb);
4408 /* Redirect the outgoing edges. */
4409 new_bb->succs = bb->succs;
4410 bb->succs = NULL;
4411 FOR_EACH_EDGE (e, ei, new_bb->succs)
4412 e->src = new_bb;
4414 if (stmt && TREE_CODE ((tree) stmt) == LABEL_EXPR)
4415 stmt = NULL;
4417 /* Move everything from BSI to the new basic block. */
4418 for (bsi = bsi_start (bb); !bsi_end_p (bsi); bsi_next (&bsi))
4420 act = bsi_stmt (bsi);
4421 if (TREE_CODE (act) == LABEL_EXPR)
4422 continue;
4424 if (!stmt)
4425 break;
4427 if (stmt == act)
4429 bsi_next (&bsi);
4430 break;
4434 bsi_tgt = bsi_start (new_bb);
4435 while (!bsi_end_p (bsi))
4437 act = bsi_stmt (bsi);
4438 bsi_remove (&bsi);
4439 bsi_insert_after (&bsi_tgt, act, BSI_NEW_STMT);
4442 return new_bb;
4446 /* Moves basic block BB after block AFTER. */
4448 static bool
4449 tree_move_block_after (basic_block bb, basic_block after)
4451 if (bb->prev_bb == after)
4452 return true;
4454 unlink_block (bb);
4455 link_block (bb, after);
4457 return true;
4461 /* Return true if basic_block can be duplicated. */
4463 static bool
4464 tree_can_duplicate_bb_p (basic_block bb ATTRIBUTE_UNUSED)
4466 return true;
4469 /* Create a duplicate of the basic block BB. NOTE: This does not
4470 preserve SSA form. */
4472 static basic_block
4473 tree_duplicate_bb (basic_block bb)
4475 basic_block new_bb;
4476 block_stmt_iterator bsi, bsi_tgt;
4477 tree phi, val;
4478 ssa_op_iter op_iter;
4480 new_bb = create_empty_bb (EXIT_BLOCK_PTR->prev_bb);
4482 /* First copy the phi nodes. We do not copy phi node arguments here,
4483 since the edges are not ready yet. Keep the chain of phi nodes in
4484 the same order, so that we can add them later. */
4485 for (phi = phi_nodes (bb); phi; phi = PHI_CHAIN (phi))
4487 mark_for_rewrite (PHI_RESULT (phi));
4488 create_phi_node (PHI_RESULT (phi), new_bb);
4490 set_phi_nodes (new_bb, phi_reverse (phi_nodes (new_bb)));
4492 bsi_tgt = bsi_start (new_bb);
4493 for (bsi = bsi_start (bb); !bsi_end_p (bsi); bsi_next (&bsi))
4495 tree stmt = bsi_stmt (bsi);
4496 tree copy;
4498 if (TREE_CODE (stmt) == LABEL_EXPR)
4499 continue;
4501 /* Record the definitions. */
4502 get_stmt_operands (stmt);
4504 FOR_EACH_SSA_TREE_OPERAND (val, stmt, op_iter, SSA_OP_ALL_DEFS)
4505 mark_for_rewrite (val);
4507 copy = unshare_expr (stmt);
4509 /* Copy also the virtual operands. */
4510 get_stmt_ann (copy);
4511 copy_virtual_operands (copy, stmt);
4513 bsi_insert_after (&bsi_tgt, copy, BSI_NEW_STMT);
4516 return new_bb;
4519 /* Basic block BB_COPY was created by code duplication. Add phi node
4520 arguments for edges going out of BB_COPY. The blocks that were
4521 duplicated have rbi->duplicated set to one. */
4523 void
4524 add_phi_args_after_copy_bb (basic_block bb_copy)
4526 basic_block bb, dest;
4527 edge e, e_copy;
4528 edge_iterator ei;
4529 tree phi, phi_copy, phi_next, def;
4531 bb = bb_copy->rbi->original;
4533 FOR_EACH_EDGE (e_copy, ei, bb_copy->succs)
4535 if (!phi_nodes (e_copy->dest))
4536 continue;
4538 if (e_copy->dest->rbi->duplicated)
4539 dest = e_copy->dest->rbi->original;
4540 else
4541 dest = e_copy->dest;
4543 e = find_edge (bb, dest);
4544 if (!e)
4546 /* During loop unrolling the target of the latch edge is copied.
4547 In this case we are not looking for edge to dest, but to
4548 duplicated block whose original was dest. */
4549 FOR_EACH_EDGE (e, ei, bb->succs)
4550 if (e->dest->rbi->duplicated
4551 && e->dest->rbi->original == dest)
4552 break;
4554 gcc_assert (e != NULL);
4557 for (phi = phi_nodes (e->dest), phi_copy = phi_nodes (e_copy->dest);
4558 phi;
4559 phi = phi_next, phi_copy = PHI_CHAIN (phi_copy))
4561 phi_next = PHI_CHAIN (phi);
4563 gcc_assert (PHI_RESULT (phi) == PHI_RESULT (phi_copy));
4564 def = PHI_ARG_DEF_FROM_EDGE (phi, e);
4565 add_phi_arg (phi_copy, def, e_copy);
4570 /* Blocks in REGION_COPY array of length N_REGION were created by
4571 duplication of basic blocks. Add phi node arguments for edges
4572 going from these blocks. */
4574 void
4575 add_phi_args_after_copy (basic_block *region_copy, unsigned n_region)
4577 unsigned i;
4579 for (i = 0; i < n_region; i++)
4580 region_copy[i]->rbi->duplicated = 1;
4582 for (i = 0; i < n_region; i++)
4583 add_phi_args_after_copy_bb (region_copy[i]);
4585 for (i = 0; i < n_region; i++)
4586 region_copy[i]->rbi->duplicated = 0;
4589 /* Maps the old ssa name FROM_NAME to TO_NAME. */
4591 struct ssa_name_map_entry
4593 tree from_name;
4594 tree to_name;
4597 /* Hash function for ssa_name_map_entry. */
4599 static hashval_t
4600 ssa_name_map_entry_hash (const void *entry)
4602 const struct ssa_name_map_entry *en = entry;
4603 return SSA_NAME_VERSION (en->from_name);
4606 /* Equality function for ssa_name_map_entry. */
4608 static int
4609 ssa_name_map_entry_eq (const void *in_table, const void *ssa_name)
4611 const struct ssa_name_map_entry *en = in_table;
4613 return en->from_name == ssa_name;
4616 /* Allocate duplicates of ssa names in list DEFINITIONS and store the mapping
4617 to MAP. */
4619 void
4620 allocate_ssa_names (bitmap definitions, htab_t *map)
4622 tree name;
4623 struct ssa_name_map_entry *entry;
4624 PTR *slot;
4625 unsigned ver;
4626 bitmap_iterator bi;
4628 if (!*map)
4629 *map = htab_create (10, ssa_name_map_entry_hash,
4630 ssa_name_map_entry_eq, free);
4631 EXECUTE_IF_SET_IN_BITMAP (definitions, 0, ver, bi)
4633 name = ssa_name (ver);
4634 slot = htab_find_slot_with_hash (*map, name, SSA_NAME_VERSION (name),
4635 INSERT);
4636 if (*slot)
4637 entry = *slot;
4638 else
4640 entry = xmalloc (sizeof (struct ssa_name_map_entry));
4641 entry->from_name = name;
4642 *slot = entry;
4644 entry->to_name = duplicate_ssa_name (name, SSA_NAME_DEF_STMT (name));
4648 /* Rewrite the definition DEF in statement STMT to new ssa name as specified
4649 by the mapping MAP. */
4651 static void
4652 rewrite_to_new_ssa_names_def (def_operand_p def, tree stmt, htab_t map)
4654 tree name = DEF_FROM_PTR (def);
4655 struct ssa_name_map_entry *entry;
4657 gcc_assert (TREE_CODE (name) == SSA_NAME);
4659 entry = htab_find_with_hash (map, name, SSA_NAME_VERSION (name));
4660 if (!entry)
4661 return;
4663 SET_DEF (def, entry->to_name);
4664 SSA_NAME_DEF_STMT (entry->to_name) = stmt;
4667 /* Rewrite the USE to new ssa name as specified by the mapping MAP. */
4669 static void
4670 rewrite_to_new_ssa_names_use (use_operand_p use, htab_t map)
4672 tree name = USE_FROM_PTR (use);
4673 struct ssa_name_map_entry *entry;
4675 if (TREE_CODE (name) != SSA_NAME)
4676 return;
4678 entry = htab_find_with_hash (map, name, SSA_NAME_VERSION (name));
4679 if (!entry)
4680 return;
4682 SET_USE (use, entry->to_name);
4685 /* Rewrite the ssa names in basic block BB to new ones as specified by the
4686 mapping MAP. */
4688 void
4689 rewrite_to_new_ssa_names_bb (basic_block bb, htab_t map)
4691 unsigned i;
4692 edge e;
4693 edge_iterator ei;
4694 tree phi, stmt;
4695 block_stmt_iterator bsi;
4696 use_optype uses;
4697 vuse_optype vuses;
4698 def_optype defs;
4699 v_may_def_optype v_may_defs;
4700 v_must_def_optype v_must_defs;
4701 stmt_ann_t ann;
4703 FOR_EACH_EDGE (e, ei, bb->preds)
4704 if (e->flags & EDGE_ABNORMAL)
4705 break;
4707 for (phi = phi_nodes (bb); phi; phi = PHI_CHAIN (phi))
4709 rewrite_to_new_ssa_names_def (PHI_RESULT_PTR (phi), phi, map);
4710 if (e)
4711 SSA_NAME_OCCURS_IN_ABNORMAL_PHI (PHI_RESULT (phi)) = 1;
4714 for (bsi = bsi_start (bb); !bsi_end_p (bsi); bsi_next (&bsi))
4716 stmt = bsi_stmt (bsi);
4717 get_stmt_operands (stmt);
4718 ann = stmt_ann (stmt);
4720 uses = USE_OPS (ann);
4721 for (i = 0; i < NUM_USES (uses); i++)
4722 rewrite_to_new_ssa_names_use (USE_OP_PTR (uses, i), map);
4724 defs = DEF_OPS (ann);
4725 for (i = 0; i < NUM_DEFS (defs); i++)
4726 rewrite_to_new_ssa_names_def (DEF_OP_PTR (defs, i), stmt, map);
4728 vuses = VUSE_OPS (ann);
4729 for (i = 0; i < NUM_VUSES (vuses); i++)
4730 rewrite_to_new_ssa_names_use (VUSE_OP_PTR (vuses, i), map);
4732 v_may_defs = V_MAY_DEF_OPS (ann);
4733 for (i = 0; i < NUM_V_MAY_DEFS (v_may_defs); i++)
4735 rewrite_to_new_ssa_names_use
4736 (V_MAY_DEF_OP_PTR (v_may_defs, i), map);
4737 rewrite_to_new_ssa_names_def
4738 (V_MAY_DEF_RESULT_PTR (v_may_defs, i), stmt, map);
4741 v_must_defs = V_MUST_DEF_OPS (ann);
4742 for (i = 0; i < NUM_V_MUST_DEFS (v_must_defs); i++)
4744 rewrite_to_new_ssa_names_def
4745 (V_MUST_DEF_RESULT_PTR (v_must_defs, i), stmt, map);
4746 rewrite_to_new_ssa_names_use
4747 (V_MUST_DEF_KILL_PTR (v_must_defs, i), map);
4751 FOR_EACH_EDGE (e, ei, bb->succs)
4752 for (phi = phi_nodes (e->dest); phi; phi = PHI_CHAIN (phi))
4754 rewrite_to_new_ssa_names_use
4755 (PHI_ARG_DEF_PTR_FROM_EDGE (phi, e), map);
4757 if (e->flags & EDGE_ABNORMAL)
4759 tree op = PHI_ARG_DEF_FROM_EDGE (phi, e);
4760 SSA_NAME_OCCURS_IN_ABNORMAL_PHI (op) = 1;
4765 /* Rewrite the ssa names in N_REGION blocks REGION to the new ones as specified
4766 by the mapping MAP. */
4768 void
4769 rewrite_to_new_ssa_names (basic_block *region, unsigned n_region, htab_t map)
4771 unsigned r;
4773 for (r = 0; r < n_region; r++)
4774 rewrite_to_new_ssa_names_bb (region[r], map);
4777 /* Duplicates a REGION (set of N_REGION basic blocks) with just a single
4778 important exit edge EXIT. By important we mean that no SSA name defined
4779 inside region is live over the other exit edges of the region. All entry
4780 edges to the region must go to ENTRY->dest. The edge ENTRY is redirected
4781 to the duplicate of the region. SSA form, dominance and loop information
4782 is updated. The new basic blocks are stored to REGION_COPY in the same
4783 order as they had in REGION, provided that REGION_COPY is not NULL.
4784 The function returns false if it is unable to copy the region,
4785 true otherwise. */
4787 bool
4788 tree_duplicate_sese_region (edge entry, edge exit,
4789 basic_block *region, unsigned n_region,
4790 basic_block *region_copy)
4792 unsigned i, n_doms, ver;
4793 bool free_region_copy = false, copying_header = false;
4794 struct loop *loop = entry->dest->loop_father;
4795 edge exit_copy;
4796 bitmap definitions;
4797 tree phi;
4798 basic_block *doms;
4799 htab_t ssa_name_map = NULL;
4800 edge redirected;
4801 bitmap_iterator bi;
4803 if (!can_copy_bbs_p (region, n_region))
4804 return false;
4806 /* Some sanity checking. Note that we do not check for all possible
4807 missuses of the functions. I.e. if you ask to copy something weird,
4808 it will work, but the state of structures probably will not be
4809 correct. */
4811 for (i = 0; i < n_region; i++)
4813 /* We do not handle subloops, i.e. all the blocks must belong to the
4814 same loop. */
4815 if (region[i]->loop_father != loop)
4816 return false;
4818 if (region[i] != entry->dest
4819 && region[i] == loop->header)
4820 return false;
4823 loop->copy = loop;
4825 /* In case the function is used for loop header copying (which is the primary
4826 use), ensure that EXIT and its copy will be new latch and entry edges. */
4827 if (loop->header == entry->dest)
4829 copying_header = true;
4830 loop->copy = loop->outer;
4832 if (!dominated_by_p (CDI_DOMINATORS, loop->latch, exit->src))
4833 return false;
4835 for (i = 0; i < n_region; i++)
4836 if (region[i] != exit->src
4837 && dominated_by_p (CDI_DOMINATORS, region[i], exit->src))
4838 return false;
4841 if (!region_copy)
4843 region_copy = xmalloc (sizeof (basic_block) * n_region);
4844 free_region_copy = true;
4847 gcc_assert (!any_marked_for_rewrite_p ());
4849 /* Record blocks outside the region that are duplicated by something
4850 inside. */
4851 doms = xmalloc (sizeof (basic_block) * n_basic_blocks);
4852 n_doms = get_dominated_by_region (CDI_DOMINATORS, region, n_region, doms);
4854 copy_bbs (region, n_region, region_copy, &exit, 1, &exit_copy, loop);
4855 definitions = marked_ssa_names ();
4857 if (copying_header)
4859 loop->header = exit->dest;
4860 loop->latch = exit->src;
4863 /* Redirect the entry and add the phi node arguments. */
4864 redirected = redirect_edge_and_branch (entry, entry->dest->rbi->copy);
4865 gcc_assert (redirected != NULL);
4866 flush_pending_stmts (entry);
4868 /* Concerning updating of dominators: We must recount dominators
4869 for entry block and its copy. Anything that is outside of the region, but
4870 was dominated by something inside needs recounting as well. */
4871 set_immediate_dominator (CDI_DOMINATORS, entry->dest, entry->src);
4872 doms[n_doms++] = entry->dest->rbi->original;
4873 iterate_fix_dominators (CDI_DOMINATORS, doms, n_doms);
4874 free (doms);
4876 /* Add the other phi node arguments. */
4877 add_phi_args_after_copy (region_copy, n_region);
4879 /* Add phi nodes for definitions at exit. TODO -- once we have immediate
4880 uses, it should be possible to emit phi nodes just for definitions that
4881 are used outside region. */
4882 EXECUTE_IF_SET_IN_BITMAP (definitions, 0, ver, bi)
4884 tree name = ssa_name (ver);
4886 phi = create_phi_node (name, exit->dest);
4887 add_phi_arg (phi, name, exit);
4888 add_phi_arg (phi, name, exit_copy);
4890 SSA_NAME_DEF_STMT (name) = phi;
4893 /* And create new definitions inside region and its copy. TODO -- once we
4894 have immediate uses, it might be better to leave definitions in region
4895 unchanged, create new ssa names for phi nodes on exit, and rewrite
4896 the uses, to avoid changing the copied region. */
4897 allocate_ssa_names (definitions, &ssa_name_map);
4898 rewrite_to_new_ssa_names (region, n_region, ssa_name_map);
4899 allocate_ssa_names (definitions, &ssa_name_map);
4900 rewrite_to_new_ssa_names (region_copy, n_region, ssa_name_map);
4901 htab_delete (ssa_name_map);
4903 if (free_region_copy)
4904 free (region_copy);
4906 unmark_all_for_rewrite ();
4907 BITMAP_XFREE (definitions);
4909 return true;
4912 /* Dump FUNCTION_DECL FN to file FILE using FLAGS (see TDF_* in tree.h) */
4914 void
4915 dump_function_to_file (tree fn, FILE *file, int flags)
4917 tree arg, vars, var;
4918 bool ignore_topmost_bind = false, any_var = false;
4919 basic_block bb;
4920 tree chain;
4922 fprintf (file, "%s (", lang_hooks.decl_printable_name (fn, 2));
4924 arg = DECL_ARGUMENTS (fn);
4925 while (arg)
4927 print_generic_expr (file, arg, dump_flags);
4928 if (TREE_CHAIN (arg))
4929 fprintf (file, ", ");
4930 arg = TREE_CHAIN (arg);
4932 fprintf (file, ")\n");
4934 if (flags & TDF_RAW)
4936 dump_node (fn, TDF_SLIM | flags, file);
4937 return;
4940 /* When GIMPLE is lowered, the variables are no longer available in
4941 BIND_EXPRs, so display them separately. */
4942 if (cfun && cfun->unexpanded_var_list)
4944 ignore_topmost_bind = true;
4946 fprintf (file, "{\n");
4947 for (vars = cfun->unexpanded_var_list; vars; vars = TREE_CHAIN (vars))
4949 var = TREE_VALUE (vars);
4951 print_generic_decl (file, var, flags);
4952 fprintf (file, "\n");
4954 any_var = true;
4958 if (basic_block_info)
4960 /* Make a CFG based dump. */
4961 check_bb_profile (ENTRY_BLOCK_PTR, file);
4962 if (!ignore_topmost_bind)
4963 fprintf (file, "{\n");
4965 if (any_var && n_basic_blocks)
4966 fprintf (file, "\n");
4968 FOR_EACH_BB (bb)
4969 dump_generic_bb (file, bb, 2, flags);
4971 fprintf (file, "}\n");
4972 check_bb_profile (EXIT_BLOCK_PTR, file);
4974 else
4976 int indent;
4978 /* Make a tree based dump. */
4979 chain = DECL_SAVED_TREE (fn);
4981 if (TREE_CODE (chain) == BIND_EXPR)
4983 if (ignore_topmost_bind)
4985 chain = BIND_EXPR_BODY (chain);
4986 indent = 2;
4988 else
4989 indent = 0;
4991 else
4993 if (!ignore_topmost_bind)
4994 fprintf (file, "{\n");
4995 indent = 2;
4998 if (any_var)
4999 fprintf (file, "\n");
5001 print_generic_stmt_indented (file, chain, flags, indent);
5002 if (ignore_topmost_bind)
5003 fprintf (file, "}\n");
5006 fprintf (file, "\n\n");
5010 /* Pretty print of the loops intermediate representation. */
5011 static void print_loop (FILE *, struct loop *, int);
5012 static void print_pred_bbs (FILE *, basic_block bb);
5013 static void print_succ_bbs (FILE *, basic_block bb);
5016 /* Print the predecessors indexes of edge E on FILE. */
5018 static void
5019 print_pred_bbs (FILE *file, basic_block bb)
5021 edge e;
5022 edge_iterator ei;
5024 FOR_EACH_EDGE (e, ei, bb->preds)
5025 fprintf (file, "bb_%d", e->src->index);
5029 /* Print the successors indexes of edge E on FILE. */
5031 static void
5032 print_succ_bbs (FILE *file, basic_block bb)
5034 edge e;
5035 edge_iterator ei;
5037 FOR_EACH_EDGE (e, ei, bb->succs)
5038 fprintf (file, "bb_%d", e->src->index);
5042 /* Pretty print LOOP on FILE, indented INDENT spaces. */
5044 static void
5045 print_loop (FILE *file, struct loop *loop, int indent)
5047 char *s_indent;
5048 basic_block bb;
5050 if (loop == NULL)
5051 return;
5053 s_indent = (char *) alloca ((size_t) indent + 1);
5054 memset ((void *) s_indent, ' ', (size_t) indent);
5055 s_indent[indent] = '\0';
5057 /* Print the loop's header. */
5058 fprintf (file, "%sloop_%d\n", s_indent, loop->num);
5060 /* Print the loop's body. */
5061 fprintf (file, "%s{\n", s_indent);
5062 FOR_EACH_BB (bb)
5063 if (bb->loop_father == loop)
5065 /* Print the basic_block's header. */
5066 fprintf (file, "%s bb_%d (preds = {", s_indent, bb->index);
5067 print_pred_bbs (file, bb);
5068 fprintf (file, "}, succs = {");
5069 print_succ_bbs (file, bb);
5070 fprintf (file, "})\n");
5072 /* Print the basic_block's body. */
5073 fprintf (file, "%s {\n", s_indent);
5074 tree_dump_bb (bb, file, indent + 4);
5075 fprintf (file, "%s }\n", s_indent);
5078 print_loop (file, loop->inner, indent + 2);
5079 fprintf (file, "%s}\n", s_indent);
5080 print_loop (file, loop->next, indent);
5084 /* Follow a CFG edge from the entry point of the program, and on entry
5085 of a loop, pretty print the loop structure on FILE. */
5087 void
5088 print_loop_ir (FILE *file)
5090 basic_block bb;
5092 bb = BASIC_BLOCK (0);
5093 if (bb && bb->loop_father)
5094 print_loop (file, bb->loop_father, 0);
5098 /* Debugging loops structure at tree level. */
5100 void
5101 debug_loop_ir (void)
5103 print_loop_ir (stderr);
5107 /* Return true if BB ends with a call, possibly followed by some
5108 instructions that must stay with the call. Return false,
5109 otherwise. */
5111 static bool
5112 tree_block_ends_with_call_p (basic_block bb)
5114 block_stmt_iterator bsi = bsi_last (bb);
5115 return get_call_expr_in (bsi_stmt (bsi)) != NULL;
5119 /* Return true if BB ends with a conditional branch. Return false,
5120 otherwise. */
5122 static bool
5123 tree_block_ends_with_condjump_p (basic_block bb)
5125 tree stmt = tsi_stmt (bsi_last (bb).tsi);
5126 return (TREE_CODE (stmt) == COND_EXPR);
5130 /* Return true if we need to add fake edge to exit at statement T.
5131 Helper function for tree_flow_call_edges_add. */
5133 static bool
5134 need_fake_edge_p (tree t)
5136 tree call;
5138 /* NORETURN and LONGJMP calls already have an edge to exit.
5139 CONST, PURE and ALWAYS_RETURN calls do not need one.
5140 We don't currently check for CONST and PURE here, although
5141 it would be a good idea, because those attributes are
5142 figured out from the RTL in mark_constant_function, and
5143 the counter incrementation code from -fprofile-arcs
5144 leads to different results from -fbranch-probabilities. */
5145 call = get_call_expr_in (t);
5146 if (call
5147 && !(call_expr_flags (call) & (ECF_NORETURN | ECF_ALWAYS_RETURN)))
5148 return true;
5150 if (TREE_CODE (t) == ASM_EXPR
5151 && (ASM_VOLATILE_P (t) || ASM_INPUT_P (t)))
5152 return true;
5154 return false;
5158 /* Add fake edges to the function exit for any non constant and non
5159 noreturn calls, volatile inline assembly in the bitmap of blocks
5160 specified by BLOCKS or to the whole CFG if BLOCKS is zero. Return
5161 the number of blocks that were split.
5163 The goal is to expose cases in which entering a basic block does
5164 not imply that all subsequent instructions must be executed. */
5166 static int
5167 tree_flow_call_edges_add (sbitmap blocks)
5169 int i;
5170 int blocks_split = 0;
5171 int last_bb = last_basic_block;
5172 bool check_last_block = false;
5174 if (n_basic_blocks == 0)
5175 return 0;
5177 if (! blocks)
5178 check_last_block = true;
5179 else
5180 check_last_block = TEST_BIT (blocks, EXIT_BLOCK_PTR->prev_bb->index);
5182 /* In the last basic block, before epilogue generation, there will be
5183 a fallthru edge to EXIT. Special care is required if the last insn
5184 of the last basic block is a call because make_edge folds duplicate
5185 edges, which would result in the fallthru edge also being marked
5186 fake, which would result in the fallthru edge being removed by
5187 remove_fake_edges, which would result in an invalid CFG.
5189 Moreover, we can't elide the outgoing fake edge, since the block
5190 profiler needs to take this into account in order to solve the minimal
5191 spanning tree in the case that the call doesn't return.
5193 Handle this by adding a dummy instruction in a new last basic block. */
5194 if (check_last_block)
5196 basic_block bb = EXIT_BLOCK_PTR->prev_bb;
5197 block_stmt_iterator bsi = bsi_last (bb);
5198 tree t = NULL_TREE;
5199 if (!bsi_end_p (bsi))
5200 t = bsi_stmt (bsi);
5202 if (need_fake_edge_p (t))
5204 edge e;
5206 e = find_edge (bb, EXIT_BLOCK_PTR);
5207 if (e)
5209 bsi_insert_on_edge (e, build_empty_stmt ());
5210 bsi_commit_edge_inserts ();
5215 /* Now add fake edges to the function exit for any non constant
5216 calls since there is no way that we can determine if they will
5217 return or not... */
5218 for (i = 0; i < last_bb; i++)
5220 basic_block bb = BASIC_BLOCK (i);
5221 block_stmt_iterator bsi;
5222 tree stmt, last_stmt;
5224 if (!bb)
5225 continue;
5227 if (blocks && !TEST_BIT (blocks, i))
5228 continue;
5230 bsi = bsi_last (bb);
5231 if (!bsi_end_p (bsi))
5233 last_stmt = bsi_stmt (bsi);
5236 stmt = bsi_stmt (bsi);
5237 if (need_fake_edge_p (stmt))
5239 edge e;
5240 /* The handling above of the final block before the
5241 epilogue should be enough to verify that there is
5242 no edge to the exit block in CFG already.
5243 Calling make_edge in such case would cause us to
5244 mark that edge as fake and remove it later. */
5245 #ifdef ENABLE_CHECKING
5246 if (stmt == last_stmt)
5248 e = find_edge (bb, EXIT_BLOCK_PTR);
5249 gcc_assert (e == NULL);
5251 #endif
5253 /* Note that the following may create a new basic block
5254 and renumber the existing basic blocks. */
5255 if (stmt != last_stmt)
5257 e = split_block (bb, stmt);
5258 if (e)
5259 blocks_split++;
5261 make_edge (bb, EXIT_BLOCK_PTR, EDGE_FAKE);
5263 bsi_prev (&bsi);
5265 while (!bsi_end_p (bsi));
5269 if (blocks_split)
5270 verify_flow_info ();
5272 return blocks_split;
5275 bool
5276 tree_purge_dead_eh_edges (basic_block bb)
5278 bool changed = false;
5279 edge e;
5280 edge_iterator ei;
5281 tree stmt = last_stmt (bb);
5283 if (stmt && tree_can_throw_internal (stmt))
5284 return false;
5286 for (ei = ei_start (bb->succs); (e = ei_safe_edge (ei)); )
5288 if (e->flags & EDGE_EH)
5290 remove_edge (e);
5291 changed = true;
5293 else
5294 ei_next (&ei);
5297 /* Removal of dead EH edges might change dominators of not
5298 just immediate successors. E.g. when bb1 is changed so that
5299 it no longer can throw and bb1->bb3 and bb1->bb4 are dead
5300 eh edges purged by this function in:
5304 1-->2
5305 / \ |
5306 v v |
5307 3-->4 |
5309 --->5
5312 idom(bb5) must be recomputed. For now just free the dominance
5313 info. */
5314 if (changed)
5315 free_dominance_info (CDI_DOMINATORS);
5317 return changed;
5320 bool
5321 tree_purge_all_dead_eh_edges (bitmap blocks)
5323 bool changed = false;
5324 unsigned i;
5325 bitmap_iterator bi;
5327 EXECUTE_IF_SET_IN_BITMAP (blocks, 0, i, bi)
5329 changed |= tree_purge_dead_eh_edges (BASIC_BLOCK (i));
5332 return changed;
5335 /* This function is called whenever a new edge is created or
5336 redirected. */
5338 static void
5339 tree_execute_on_growing_pred (edge e)
5341 basic_block bb = e->dest;
5343 if (phi_nodes (bb))
5344 reserve_phi_args_for_new_edge (bb);
5347 /* This function is called immediately before edge E is removed from
5348 the edge vector E->dest->preds. */
5350 static void
5351 tree_execute_on_shrinking_pred (edge e)
5353 if (phi_nodes (e->dest))
5354 remove_phi_args (e);
5357 struct cfg_hooks tree_cfg_hooks = {
5358 "tree",
5359 tree_verify_flow_info,
5360 tree_dump_bb, /* dump_bb */
5361 create_bb, /* create_basic_block */
5362 tree_redirect_edge_and_branch,/* redirect_edge_and_branch */
5363 tree_redirect_edge_and_branch_force,/* redirect_edge_and_branch_force */
5364 remove_bb, /* delete_basic_block */
5365 tree_split_block, /* split_block */
5366 tree_move_block_after, /* move_block_after */
5367 tree_can_merge_blocks_p, /* can_merge_blocks_p */
5368 tree_merge_blocks, /* merge_blocks */
5369 tree_predict_edge, /* predict_edge */
5370 tree_predicted_by_p, /* predicted_by_p */
5371 tree_can_duplicate_bb_p, /* can_duplicate_block_p */
5372 tree_duplicate_bb, /* duplicate_block */
5373 tree_split_edge, /* split_edge */
5374 tree_make_forwarder_block, /* make_forward_block */
5375 NULL, /* tidy_fallthru_edge */
5376 tree_block_ends_with_call_p, /* block_ends_with_call_p */
5377 tree_block_ends_with_condjump_p, /* block_ends_with_condjump_p */
5378 tree_flow_call_edges_add, /* flow_call_edges_add */
5379 tree_execute_on_growing_pred, /* execute_on_growing_pred */
5380 tree_execute_on_shrinking_pred, /* execute_on_shrinking_pred */
5384 /* Split all critical edges. */
5386 static void
5387 split_critical_edges (void)
5389 basic_block bb;
5390 edge e;
5391 edge_iterator ei;
5393 /* split_edge can redirect edges out of SWITCH_EXPRs, which can get
5394 expensive. So we want to enable recording of edge to CASE_LABEL_EXPR
5395 mappings around the calls to split_edge. */
5396 start_recording_case_labels ();
5397 FOR_ALL_BB (bb)
5399 FOR_EACH_EDGE (e, ei, bb->succs)
5400 if (EDGE_CRITICAL_P (e) && !(e->flags & EDGE_ABNORMAL))
5402 split_edge (e);
5405 end_recording_case_labels ();
5408 struct tree_opt_pass pass_split_crit_edges =
5410 "crited", /* name */
5411 NULL, /* gate */
5412 split_critical_edges, /* execute */
5413 NULL, /* sub */
5414 NULL, /* next */
5415 0, /* static_pass_number */
5416 TV_TREE_SPLIT_EDGES, /* tv_id */
5417 PROP_cfg, /* properties required */
5418 PROP_no_crit_edges, /* properties_provided */
5419 0, /* properties_destroyed */
5420 0, /* todo_flags_start */
5421 TODO_dump_func, /* todo_flags_finish */
5422 0 /* letter */
5426 /* Return EXP if it is a valid GIMPLE rvalue, else gimplify it into
5427 a temporary, make sure and register it to be renamed if necessary,
5428 and finally return the temporary. Put the statements to compute
5429 EXP before the current statement in BSI. */
5431 tree
5432 gimplify_val (block_stmt_iterator *bsi, tree type, tree exp)
5434 tree t, new_stmt, orig_stmt;
5436 if (is_gimple_val (exp))
5437 return exp;
5439 t = make_rename_temp (type, NULL);
5440 new_stmt = build (MODIFY_EXPR, type, t, exp);
5442 orig_stmt = bsi_stmt (*bsi);
5443 SET_EXPR_LOCUS (new_stmt, EXPR_LOCUS (orig_stmt));
5444 TREE_BLOCK (new_stmt) = TREE_BLOCK (orig_stmt);
5446 bsi_insert_before (bsi, new_stmt, BSI_SAME_STMT);
5448 return t;
5451 /* Build a ternary operation and gimplify it. Emit code before BSI.
5452 Return the gimple_val holding the result. */
5454 tree
5455 gimplify_build3 (block_stmt_iterator *bsi, enum tree_code code,
5456 tree type, tree a, tree b, tree c)
5458 tree ret;
5460 ret = fold (build3 (code, type, a, b, c));
5461 STRIP_NOPS (ret);
5463 return gimplify_val (bsi, type, ret);
5466 /* Build a binary operation and gimplify it. Emit code before BSI.
5467 Return the gimple_val holding the result. */
5469 tree
5470 gimplify_build2 (block_stmt_iterator *bsi, enum tree_code code,
5471 tree type, tree a, tree b)
5473 tree ret;
5475 ret = fold (build2 (code, type, a, b));
5476 STRIP_NOPS (ret);
5478 return gimplify_val (bsi, type, ret);
5481 /* Build a unary operation and gimplify it. Emit code before BSI.
5482 Return the gimple_val holding the result. */
5484 tree
5485 gimplify_build1 (block_stmt_iterator *bsi, enum tree_code code, tree type,
5486 tree a)
5488 tree ret;
5490 ret = fold (build1 (code, type, a));
5491 STRIP_NOPS (ret);
5493 return gimplify_val (bsi, type, ret);
5498 /* Emit return warnings. */
5500 static void
5501 execute_warn_function_return (void)
5503 #ifdef USE_MAPPED_LOCATION
5504 source_location location;
5505 #else
5506 location_t *locus;
5507 #endif
5508 tree last;
5509 edge e;
5510 edge_iterator ei;
5512 if (warn_missing_noreturn
5513 && !TREE_THIS_VOLATILE (cfun->decl)
5514 && EDGE_COUNT (EXIT_BLOCK_PTR->preds) == 0
5515 && !lang_hooks.function.missing_noreturn_ok_p (cfun->decl))
5516 warning ("%Jfunction might be possible candidate for "
5517 "attribute %<noreturn%>",
5518 cfun->decl);
5520 /* If we have a path to EXIT, then we do return. */
5521 if (TREE_THIS_VOLATILE (cfun->decl)
5522 && EDGE_COUNT (EXIT_BLOCK_PTR->preds) > 0)
5524 #ifdef USE_MAPPED_LOCATION
5525 location = UNKNOWN_LOCATION;
5526 #else
5527 locus = NULL;
5528 #endif
5529 FOR_EACH_EDGE (e, ei, EXIT_BLOCK_PTR->preds)
5531 last = last_stmt (e->src);
5532 if (TREE_CODE (last) == RETURN_EXPR
5533 #ifdef USE_MAPPED_LOCATION
5534 && (location = EXPR_LOCATION (last)) != UNKNOWN_LOCATION)
5535 #else
5536 && (locus = EXPR_LOCUS (last)) != NULL)
5537 #endif
5538 break;
5540 #ifdef USE_MAPPED_LOCATION
5541 if (location == UNKNOWN_LOCATION)
5542 location = cfun->function_end_locus;
5543 warning ("%H%<noreturn%> function does return", &location);
5544 #else
5545 if (!locus)
5546 locus = &cfun->function_end_locus;
5547 warning ("%H%<noreturn%> function does return", locus);
5548 #endif
5551 /* If we see "return;" in some basic block, then we do reach the end
5552 without returning a value. */
5553 else if (warn_return_type
5554 && EDGE_COUNT (EXIT_BLOCK_PTR->preds) > 0
5555 && !VOID_TYPE_P (TREE_TYPE (TREE_TYPE (cfun->decl))))
5557 FOR_EACH_EDGE (e, ei, EXIT_BLOCK_PTR->preds)
5559 tree last = last_stmt (e->src);
5560 if (TREE_CODE (last) == RETURN_EXPR
5561 && TREE_OPERAND (last, 0) == NULL)
5563 #ifdef USE_MAPPED_LOCATION
5564 location = EXPR_LOCATION (last);
5565 if (location == UNKNOWN_LOCATION)
5566 location = cfun->function_end_locus;
5567 warning ("%Hcontrol reaches end of non-void function", &location);
5568 #else
5569 locus = EXPR_LOCUS (last);
5570 if (!locus)
5571 locus = &cfun->function_end_locus;
5572 warning ("%Hcontrol reaches end of non-void function", locus);
5573 #endif
5574 break;
5581 /* Given a basic block B which ends with a conditional and has
5582 precisely two successors, determine which of the edges is taken if
5583 the conditional is true and which is taken if the conditional is
5584 false. Set TRUE_EDGE and FALSE_EDGE appropriately. */
5586 void
5587 extract_true_false_edges_from_block (basic_block b,
5588 edge *true_edge,
5589 edge *false_edge)
5591 edge e = EDGE_SUCC (b, 0);
5593 if (e->flags & EDGE_TRUE_VALUE)
5595 *true_edge = e;
5596 *false_edge = EDGE_SUCC (b, 1);
5598 else
5600 *false_edge = e;
5601 *true_edge = EDGE_SUCC (b, 1);
5605 struct tree_opt_pass pass_warn_function_return =
5607 NULL, /* name */
5608 NULL, /* gate */
5609 execute_warn_function_return, /* execute */
5610 NULL, /* sub */
5611 NULL, /* next */
5612 0, /* static_pass_number */
5613 0, /* tv_id */
5614 PROP_cfg, /* properties_required */
5615 0, /* properties_provided */
5616 0, /* properties_destroyed */
5617 0, /* todo_flags_start */
5618 0, /* todo_flags_finish */
5619 0 /* letter */
5622 #include "gt-tree-cfg.h"