* config/arm/neon-gen.ml: Include vxWorks.h rather than stdint.h
[official-gcc.git] / gcc / tree-cfg.c
blob875dd8ead94c0500b57e32ecfa1950bee239c77a
1 /* Control flow functions for trees.
2 Copyright (C) 2001, 2002, 2003, 2004, 2005, 2006, 2007, 2008, 2009
3 Free Software Foundation, Inc.
4 Contributed by Diego Novillo <dnovillo@redhat.com>
6 This file is part of GCC.
8 GCC is free software; you can redistribute it and/or modify
9 it under the terms of the GNU General Public License as published by
10 the Free Software Foundation; either version 3, or (at your option)
11 any later version.
13 GCC is distributed in the hope that it will be useful,
14 but WITHOUT ANY WARRANTY; without even the implied warranty of
15 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
16 GNU General Public License for more details.
18 You should have received a copy of the GNU General Public License
19 along with GCC; see the file COPYING3. If not see
20 <http://www.gnu.org/licenses/>. */
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 "flags.h"
33 #include "function.h"
34 #include "expr.h"
35 #include "ggc.h"
36 #include "langhooks.h"
37 #include "diagnostic.h"
38 #include "tree-flow.h"
39 #include "timevar.h"
40 #include "tree-dump.h"
41 #include "tree-pass.h"
42 #include "toplev.h"
43 #include "except.h"
44 #include "cfgloop.h"
45 #include "cfglayout.h"
46 #include "tree-ssa-propagate.h"
47 #include "value-prof.h"
48 #include "pointer-set.h"
49 #include "tree-inline.h"
51 /* This file contains functions for building the Control Flow Graph (CFG)
52 for a function tree. */
54 /* Local declarations. */
56 /* Initial capacity for the basic block array. */
57 static const int initial_cfg_capacity = 20;
59 /* This hash table allows us to efficiently lookup all CASE_LABEL_EXPRs
60 which use a particular edge. The CASE_LABEL_EXPRs are chained together
61 via their TREE_CHAIN field, which we clear after we're done with the
62 hash table to prevent problems with duplication of GIMPLE_SWITCHes.
64 Access to this list of CASE_LABEL_EXPRs allows us to efficiently
65 update the case vector in response to edge redirections.
67 Right now this table is set up and torn down at key points in the
68 compilation process. It would be nice if we could make the table
69 more persistent. The key is getting notification of changes to
70 the CFG (particularly edge removal, creation and redirection). */
72 static struct pointer_map_t *edge_to_cases;
74 /* CFG statistics. */
75 struct cfg_stats_d
77 long num_merged_labels;
80 static struct cfg_stats_d cfg_stats;
82 /* Nonzero if we found a computed goto while building basic blocks. */
83 static bool found_computed_goto;
85 /* Basic blocks and flowgraphs. */
86 static void make_blocks (gimple_seq);
87 static void factor_computed_gotos (void);
89 /* Edges. */
90 static void make_edges (void);
91 static void make_cond_expr_edges (basic_block);
92 static void make_gimple_switch_edges (basic_block);
93 static void make_goto_expr_edges (basic_block);
94 static edge gimple_redirect_edge_and_branch (edge, basic_block);
95 static edge gimple_try_redirect_by_replacing_jump (edge, basic_block);
96 static unsigned int split_critical_edges (void);
98 /* Various helpers. */
99 static inline bool stmt_starts_bb_p (gimple, gimple);
100 static int gimple_verify_flow_info (void);
101 static void gimple_make_forwarder_block (edge);
102 static void gimple_cfg2vcg (FILE *);
104 /* Flowgraph optimization and cleanup. */
105 static void gimple_merge_blocks (basic_block, basic_block);
106 static bool gimple_can_merge_blocks_p (basic_block, basic_block);
107 static void remove_bb (basic_block);
108 static edge find_taken_edge_computed_goto (basic_block, tree);
109 static edge find_taken_edge_cond_expr (basic_block, tree);
110 static edge find_taken_edge_switch_expr (basic_block, tree);
111 static tree find_case_label_for_value (gimple, tree);
113 void
114 init_empty_tree_cfg_for_function (struct function *fn)
116 /* Initialize the basic block array. */
117 init_flow (fn);
118 profile_status_for_function (fn) = PROFILE_ABSENT;
119 n_basic_blocks_for_function (fn) = NUM_FIXED_BLOCKS;
120 last_basic_block_for_function (fn) = NUM_FIXED_BLOCKS;
121 basic_block_info_for_function (fn)
122 = VEC_alloc (basic_block, gc, initial_cfg_capacity);
123 VEC_safe_grow_cleared (basic_block, gc,
124 basic_block_info_for_function (fn),
125 initial_cfg_capacity);
127 /* Build a mapping of labels to their associated blocks. */
128 label_to_block_map_for_function (fn)
129 = VEC_alloc (basic_block, gc, initial_cfg_capacity);
130 VEC_safe_grow_cleared (basic_block, gc,
131 label_to_block_map_for_function (fn),
132 initial_cfg_capacity);
134 SET_BASIC_BLOCK_FOR_FUNCTION (fn, ENTRY_BLOCK,
135 ENTRY_BLOCK_PTR_FOR_FUNCTION (fn));
136 SET_BASIC_BLOCK_FOR_FUNCTION (fn, EXIT_BLOCK,
137 EXIT_BLOCK_PTR_FOR_FUNCTION (fn));
139 ENTRY_BLOCK_PTR_FOR_FUNCTION (fn)->next_bb
140 = EXIT_BLOCK_PTR_FOR_FUNCTION (fn);
141 EXIT_BLOCK_PTR_FOR_FUNCTION (fn)->prev_bb
142 = ENTRY_BLOCK_PTR_FOR_FUNCTION (fn);
145 void
146 init_empty_tree_cfg (void)
148 init_empty_tree_cfg_for_function (cfun);
151 /*---------------------------------------------------------------------------
152 Create basic blocks
153 ---------------------------------------------------------------------------*/
155 /* Entry point to the CFG builder for trees. SEQ is the sequence of
156 statements to be added to the flowgraph. */
158 static void
159 build_gimple_cfg (gimple_seq seq)
161 /* Register specific gimple functions. */
162 gimple_register_cfg_hooks ();
164 memset ((void *) &cfg_stats, 0, sizeof (cfg_stats));
166 init_empty_tree_cfg ();
168 found_computed_goto = 0;
169 make_blocks (seq);
171 /* Computed gotos are hell to deal with, especially if there are
172 lots of them with a large number of destinations. So we factor
173 them to a common computed goto location before we build the
174 edge list. After we convert back to normal form, we will un-factor
175 the computed gotos since factoring introduces an unwanted jump. */
176 if (found_computed_goto)
177 factor_computed_gotos ();
179 /* Make sure there is always at least one block, even if it's empty. */
180 if (n_basic_blocks == NUM_FIXED_BLOCKS)
181 create_empty_bb (ENTRY_BLOCK_PTR);
183 /* Adjust the size of the array. */
184 if (VEC_length (basic_block, basic_block_info) < (size_t) n_basic_blocks)
185 VEC_safe_grow_cleared (basic_block, gc, basic_block_info, n_basic_blocks);
187 /* To speed up statement iterator walks, we first purge dead labels. */
188 cleanup_dead_labels ();
190 /* Group case nodes to reduce the number of edges.
191 We do this after cleaning up dead labels because otherwise we miss
192 a lot of obvious case merging opportunities. */
193 group_case_labels ();
195 /* Create the edges of the flowgraph. */
196 make_edges ();
197 cleanup_dead_labels ();
199 /* Debugging dumps. */
201 /* Write the flowgraph to a VCG file. */
203 int local_dump_flags;
204 FILE *vcg_file = dump_begin (TDI_vcg, &local_dump_flags);
205 if (vcg_file)
207 gimple_cfg2vcg (vcg_file);
208 dump_end (TDI_vcg, vcg_file);
212 #ifdef ENABLE_CHECKING
213 verify_stmts ();
214 #endif
217 static unsigned int
218 execute_build_cfg (void)
220 gimple_seq body = gimple_body (current_function_decl);
222 build_gimple_cfg (body);
223 gimple_set_body (current_function_decl, NULL);
224 if (dump_file && (dump_flags & TDF_DETAILS))
226 fprintf (dump_file, "Scope blocks:\n");
227 dump_scope_blocks (dump_file, dump_flags);
229 return 0;
232 struct gimple_opt_pass pass_build_cfg =
235 GIMPLE_PASS,
236 "cfg", /* name */
237 NULL, /* gate */
238 execute_build_cfg, /* execute */
239 NULL, /* sub */
240 NULL, /* next */
241 0, /* static_pass_number */
242 TV_TREE_CFG, /* tv_id */
243 PROP_gimple_leh, /* properties_required */
244 PROP_cfg, /* properties_provided */
245 0, /* properties_destroyed */
246 0, /* todo_flags_start */
247 TODO_verify_stmts | TODO_cleanup_cfg
248 | TODO_dump_func /* todo_flags_finish */
253 /* Return true if T is a computed goto. */
255 static bool
256 computed_goto_p (gimple t)
258 return (gimple_code (t) == GIMPLE_GOTO
259 && TREE_CODE (gimple_goto_dest (t)) != LABEL_DECL);
263 /* Search the CFG for any computed gotos. If found, factor them to a
264 common computed goto site. Also record the location of that site so
265 that we can un-factor the gotos after we have converted back to
266 normal form. */
268 static void
269 factor_computed_gotos (void)
271 basic_block bb;
272 tree factored_label_decl = NULL;
273 tree var = NULL;
274 gimple factored_computed_goto_label = NULL;
275 gimple factored_computed_goto = NULL;
277 /* We know there are one or more computed gotos in this function.
278 Examine the last statement in each basic block to see if the block
279 ends with a computed goto. */
281 FOR_EACH_BB (bb)
283 gimple_stmt_iterator gsi = gsi_last_bb (bb);
284 gimple last;
286 if (gsi_end_p (gsi))
287 continue;
289 last = gsi_stmt (gsi);
291 /* Ignore the computed goto we create when we factor the original
292 computed gotos. */
293 if (last == factored_computed_goto)
294 continue;
296 /* If the last statement is a computed goto, factor it. */
297 if (computed_goto_p (last))
299 gimple assignment;
301 /* The first time we find a computed goto we need to create
302 the factored goto block and the variable each original
303 computed goto will use for their goto destination. */
304 if (!factored_computed_goto)
306 basic_block new_bb = create_empty_bb (bb);
307 gimple_stmt_iterator new_gsi = gsi_start_bb (new_bb);
309 /* Create the destination of the factored goto. Each original
310 computed goto will put its desired destination into this
311 variable and jump to the label we create immediately
312 below. */
313 var = create_tmp_var (ptr_type_node, "gotovar");
315 /* Build a label for the new block which will contain the
316 factored computed goto. */
317 factored_label_decl = create_artificial_label ();
318 factored_computed_goto_label
319 = gimple_build_label (factored_label_decl);
320 gsi_insert_after (&new_gsi, factored_computed_goto_label,
321 GSI_NEW_STMT);
323 /* Build our new computed goto. */
324 factored_computed_goto = gimple_build_goto (var);
325 gsi_insert_after (&new_gsi, factored_computed_goto, GSI_NEW_STMT);
328 /* Copy the original computed goto's destination into VAR. */
329 assignment = gimple_build_assign (var, gimple_goto_dest (last));
330 gsi_insert_before (&gsi, assignment, GSI_SAME_STMT);
332 /* And re-vector the computed goto to the new destination. */
333 gimple_goto_set_dest (last, factored_label_decl);
339 /* Build a flowgraph for the sequence of stmts SEQ. */
341 static void
342 make_blocks (gimple_seq seq)
344 gimple_stmt_iterator i = gsi_start (seq);
345 gimple stmt = NULL;
346 bool start_new_block = true;
347 bool first_stmt_of_seq = true;
348 basic_block bb = ENTRY_BLOCK_PTR;
350 while (!gsi_end_p (i))
352 gimple prev_stmt;
354 prev_stmt = stmt;
355 stmt = gsi_stmt (i);
357 /* If the statement starts a new basic block or if we have determined
358 in a previous pass that we need to create a new block for STMT, do
359 so now. */
360 if (start_new_block || stmt_starts_bb_p (stmt, prev_stmt))
362 if (!first_stmt_of_seq)
363 seq = gsi_split_seq_before (&i);
364 bb = create_basic_block (seq, NULL, bb);
365 start_new_block = false;
368 /* Now add STMT to BB and create the subgraphs for special statement
369 codes. */
370 gimple_set_bb (stmt, bb);
372 if (computed_goto_p (stmt))
373 found_computed_goto = true;
375 /* If STMT is a basic block terminator, set START_NEW_BLOCK for the
376 next iteration. */
377 if (stmt_ends_bb_p (stmt))
379 /* If the stmt can make abnormal goto use a new temporary
380 for the assignment to the LHS. This makes sure the old value
381 of the LHS is available on the abnormal edge. Otherwise
382 we will end up with overlapping life-ranges for abnormal
383 SSA names. */
384 if (gimple_has_lhs (stmt)
385 && stmt_can_make_abnormal_goto (stmt)
386 && is_gimple_reg_type (TREE_TYPE (gimple_get_lhs (stmt))))
388 tree lhs = gimple_get_lhs (stmt);
389 tree tmp = create_tmp_var (TREE_TYPE (lhs), NULL);
390 gimple s = gimple_build_assign (lhs, tmp);
391 gimple_set_location (s, gimple_location (stmt));
392 gimple_set_block (s, gimple_block (stmt));
393 gimple_set_lhs (stmt, tmp);
394 if (TREE_CODE (TREE_TYPE (tmp)) == COMPLEX_TYPE
395 || TREE_CODE (TREE_TYPE (tmp)) == VECTOR_TYPE)
396 DECL_GIMPLE_REG_P (tmp) = 1;
397 gsi_insert_after (&i, s, GSI_SAME_STMT);
399 start_new_block = true;
402 gsi_next (&i);
403 first_stmt_of_seq = false;
408 /* Create and return a new empty basic block after bb AFTER. */
410 static basic_block
411 create_bb (void *h, void *e, basic_block after)
413 basic_block bb;
415 gcc_assert (!e);
417 /* Create and initialize a new basic block. Since alloc_block uses
418 ggc_alloc_cleared to allocate a basic block, we do not have to
419 clear the newly allocated basic block here. */
420 bb = alloc_block ();
422 bb->index = last_basic_block;
423 bb->flags = BB_NEW;
424 bb->il.gimple = GGC_CNEW (struct gimple_bb_info);
425 set_bb_seq (bb, h ? (gimple_seq) h : gimple_seq_alloc ());
427 /* Add the new block to the linked list of blocks. */
428 link_block (bb, after);
430 /* Grow the basic block array if needed. */
431 if ((size_t) last_basic_block == VEC_length (basic_block, basic_block_info))
433 size_t new_size = last_basic_block + (last_basic_block + 3) / 4;
434 VEC_safe_grow_cleared (basic_block, gc, basic_block_info, new_size);
437 /* Add the newly created block to the array. */
438 SET_BASIC_BLOCK (last_basic_block, bb);
440 n_basic_blocks++;
441 last_basic_block++;
443 return bb;
447 /*---------------------------------------------------------------------------
448 Edge creation
449 ---------------------------------------------------------------------------*/
451 /* Fold COND_EXPR_COND of each COND_EXPR. */
453 void
454 fold_cond_expr_cond (void)
456 basic_block bb;
458 FOR_EACH_BB (bb)
460 gimple stmt = last_stmt (bb);
462 if (stmt && gimple_code (stmt) == GIMPLE_COND)
464 tree cond;
465 bool zerop, onep;
467 fold_defer_overflow_warnings ();
468 cond = fold_binary (gimple_cond_code (stmt), boolean_type_node,
469 gimple_cond_lhs (stmt), gimple_cond_rhs (stmt));
470 if (cond)
472 zerop = integer_zerop (cond);
473 onep = integer_onep (cond);
475 else
476 zerop = onep = false;
478 fold_undefer_overflow_warnings (zerop || onep,
479 stmt,
480 WARN_STRICT_OVERFLOW_CONDITIONAL);
481 if (zerop)
482 gimple_cond_make_false (stmt);
483 else if (onep)
484 gimple_cond_make_true (stmt);
489 /* Join all the blocks in the flowgraph. */
491 static void
492 make_edges (void)
494 basic_block bb;
495 struct omp_region *cur_region = NULL;
497 /* Create an edge from entry to the first block with executable
498 statements in it. */
499 make_edge (ENTRY_BLOCK_PTR, BASIC_BLOCK (NUM_FIXED_BLOCKS), EDGE_FALLTHRU);
501 /* Traverse the basic block array placing edges. */
502 FOR_EACH_BB (bb)
504 gimple last = last_stmt (bb);
505 bool fallthru;
507 if (last)
509 enum gimple_code code = gimple_code (last);
510 switch (code)
512 case GIMPLE_GOTO:
513 make_goto_expr_edges (bb);
514 fallthru = false;
515 break;
516 case GIMPLE_RETURN:
517 make_edge (bb, EXIT_BLOCK_PTR, 0);
518 fallthru = false;
519 break;
520 case GIMPLE_COND:
521 make_cond_expr_edges (bb);
522 fallthru = false;
523 break;
524 case GIMPLE_SWITCH:
525 make_gimple_switch_edges (bb);
526 fallthru = false;
527 break;
528 case GIMPLE_RESX:
529 make_eh_edges (last);
530 fallthru = false;
531 break;
533 case GIMPLE_CALL:
534 /* If this function receives a nonlocal goto, then we need to
535 make edges from this call site to all the nonlocal goto
536 handlers. */
537 if (stmt_can_make_abnormal_goto (last))
538 make_abnormal_goto_edges (bb, true);
540 /* If this statement has reachable exception handlers, then
541 create abnormal edges to them. */
542 make_eh_edges (last);
544 /* Some calls are known not to return. */
545 fallthru = !(gimple_call_flags (last) & ECF_NORETURN);
546 break;
548 case GIMPLE_ASSIGN:
549 /* A GIMPLE_ASSIGN may throw internally and thus be considered
550 control-altering. */
551 if (is_ctrl_altering_stmt (last))
553 make_eh_edges (last);
555 fallthru = true;
556 break;
558 case GIMPLE_OMP_PARALLEL:
559 case GIMPLE_OMP_TASK:
560 case GIMPLE_OMP_FOR:
561 case GIMPLE_OMP_SINGLE:
562 case GIMPLE_OMP_MASTER:
563 case GIMPLE_OMP_ORDERED:
564 case GIMPLE_OMP_CRITICAL:
565 case GIMPLE_OMP_SECTION:
566 cur_region = new_omp_region (bb, code, cur_region);
567 fallthru = true;
568 break;
570 case GIMPLE_OMP_SECTIONS:
571 cur_region = new_omp_region (bb, code, cur_region);
572 fallthru = true;
573 break;
575 case GIMPLE_OMP_SECTIONS_SWITCH:
576 fallthru = false;
577 break;
580 case GIMPLE_OMP_ATOMIC_LOAD:
581 case GIMPLE_OMP_ATOMIC_STORE:
582 fallthru = true;
583 break;
586 case GIMPLE_OMP_RETURN:
587 /* In the case of a GIMPLE_OMP_SECTION, the edge will go
588 somewhere other than the next block. This will be
589 created later. */
590 cur_region->exit = bb;
591 fallthru = cur_region->type != GIMPLE_OMP_SECTION;
592 cur_region = cur_region->outer;
593 break;
595 case GIMPLE_OMP_CONTINUE:
596 cur_region->cont = bb;
597 switch (cur_region->type)
599 case GIMPLE_OMP_FOR:
600 /* Mark all GIMPLE_OMP_FOR and GIMPLE_OMP_CONTINUE
601 succs edges as abnormal to prevent splitting
602 them. */
603 single_succ_edge (cur_region->entry)->flags |= EDGE_ABNORMAL;
604 /* Make the loopback edge. */
605 make_edge (bb, single_succ (cur_region->entry),
606 EDGE_ABNORMAL);
608 /* Create an edge from GIMPLE_OMP_FOR to exit, which
609 corresponds to the case that the body of the loop
610 is not executed at all. */
611 make_edge (cur_region->entry, bb->next_bb, EDGE_ABNORMAL);
612 make_edge (bb, bb->next_bb, EDGE_FALLTHRU | EDGE_ABNORMAL);
613 fallthru = false;
614 break;
616 case GIMPLE_OMP_SECTIONS:
617 /* Wire up the edges into and out of the nested sections. */
619 basic_block switch_bb = single_succ (cur_region->entry);
621 struct omp_region *i;
622 for (i = cur_region->inner; i ; i = i->next)
624 gcc_assert (i->type == GIMPLE_OMP_SECTION);
625 make_edge (switch_bb, i->entry, 0);
626 make_edge (i->exit, bb, EDGE_FALLTHRU);
629 /* Make the loopback edge to the block with
630 GIMPLE_OMP_SECTIONS_SWITCH. */
631 make_edge (bb, switch_bb, 0);
633 /* Make the edge from the switch to exit. */
634 make_edge (switch_bb, bb->next_bb, 0);
635 fallthru = false;
637 break;
639 default:
640 gcc_unreachable ();
642 break;
644 default:
645 gcc_assert (!stmt_ends_bb_p (last));
646 fallthru = true;
649 else
650 fallthru = true;
652 if (fallthru)
653 make_edge (bb, bb->next_bb, EDGE_FALLTHRU);
656 if (root_omp_region)
657 free_omp_regions ();
659 /* Fold COND_EXPR_COND of each COND_EXPR. */
660 fold_cond_expr_cond ();
664 /* Create the edges for a GIMPLE_COND starting at block BB. */
666 static void
667 make_cond_expr_edges (basic_block bb)
669 gimple entry = last_stmt (bb);
670 gimple then_stmt, else_stmt;
671 basic_block then_bb, else_bb;
672 tree then_label, else_label;
673 edge e;
675 gcc_assert (entry);
676 gcc_assert (gimple_code (entry) == GIMPLE_COND);
678 /* Entry basic blocks for each component. */
679 then_label = gimple_cond_true_label (entry);
680 else_label = gimple_cond_false_label (entry);
681 then_bb = label_to_block (then_label);
682 else_bb = label_to_block (else_label);
683 then_stmt = first_stmt (then_bb);
684 else_stmt = first_stmt (else_bb);
686 e = make_edge (bb, then_bb, EDGE_TRUE_VALUE);
687 e->goto_locus = gimple_location (then_stmt);
688 if (e->goto_locus)
689 e->goto_block = gimple_block (then_stmt);
690 e = make_edge (bb, else_bb, EDGE_FALSE_VALUE);
691 if (e)
693 e->goto_locus = gimple_location (else_stmt);
694 if (e->goto_locus)
695 e->goto_block = gimple_block (else_stmt);
698 /* We do not need the labels anymore. */
699 gimple_cond_set_true_label (entry, NULL_TREE);
700 gimple_cond_set_false_label (entry, NULL_TREE);
704 /* Called for each element in the hash table (P) as we delete the
705 edge to cases hash table.
707 Clear all the TREE_CHAINs to prevent problems with copying of
708 SWITCH_EXPRs and structure sharing rules, then free the hash table
709 element. */
711 static bool
712 edge_to_cases_cleanup (const void *key ATTRIBUTE_UNUSED, void **value,
713 void *data ATTRIBUTE_UNUSED)
715 tree t, next;
717 for (t = (tree) *value; t; t = next)
719 next = TREE_CHAIN (t);
720 TREE_CHAIN (t) = NULL;
723 *value = NULL;
724 return false;
727 /* Start recording information mapping edges to case labels. */
729 void
730 start_recording_case_labels (void)
732 gcc_assert (edge_to_cases == NULL);
733 edge_to_cases = pointer_map_create ();
736 /* Return nonzero if we are recording information for case labels. */
738 static bool
739 recording_case_labels_p (void)
741 return (edge_to_cases != NULL);
744 /* Stop recording information mapping edges to case labels and
745 remove any information we have recorded. */
746 void
747 end_recording_case_labels (void)
749 pointer_map_traverse (edge_to_cases, edge_to_cases_cleanup, NULL);
750 pointer_map_destroy (edge_to_cases);
751 edge_to_cases = NULL;
754 /* If we are inside a {start,end}_recording_cases block, then return
755 a chain of CASE_LABEL_EXPRs from T which reference E.
757 Otherwise return NULL. */
759 static tree
760 get_cases_for_edge (edge e, gimple t)
762 void **slot;
763 size_t i, n;
765 /* If we are not recording cases, then we do not have CASE_LABEL_EXPR
766 chains available. Return NULL so the caller can detect this case. */
767 if (!recording_case_labels_p ())
768 return NULL;
770 slot = pointer_map_contains (edge_to_cases, e);
771 if (slot)
772 return (tree) *slot;
774 /* If we did not find E in the hash table, then this must be the first
775 time we have been queried for information about E & T. Add all the
776 elements from T to the hash table then perform the query again. */
778 n = gimple_switch_num_labels (t);
779 for (i = 0; i < n; i++)
781 tree elt = gimple_switch_label (t, i);
782 tree lab = CASE_LABEL (elt);
783 basic_block label_bb = label_to_block (lab);
784 edge this_edge = find_edge (e->src, label_bb);
786 /* Add it to the chain of CASE_LABEL_EXPRs referencing E, or create
787 a new chain. */
788 slot = pointer_map_insert (edge_to_cases, this_edge);
789 TREE_CHAIN (elt) = (tree) *slot;
790 *slot = elt;
793 return (tree) *pointer_map_contains (edge_to_cases, e);
796 /* Create the edges for a GIMPLE_SWITCH starting at block BB. */
798 static void
799 make_gimple_switch_edges (basic_block bb)
801 gimple entry = last_stmt (bb);
802 size_t i, n;
804 n = gimple_switch_num_labels (entry);
806 for (i = 0; i < n; ++i)
808 tree lab = CASE_LABEL (gimple_switch_label (entry, i));
809 basic_block label_bb = label_to_block (lab);
810 make_edge (bb, label_bb, 0);
815 /* Return the basic block holding label DEST. */
817 basic_block
818 label_to_block_fn (struct function *ifun, tree dest)
820 int uid = LABEL_DECL_UID (dest);
822 /* We would die hard when faced by an undefined label. Emit a label to
823 the very first basic block. This will hopefully make even the dataflow
824 and undefined variable warnings quite right. */
825 if ((errorcount || sorrycount) && uid < 0)
827 gimple_stmt_iterator gsi = gsi_start_bb (BASIC_BLOCK (NUM_FIXED_BLOCKS));
828 gimple stmt;
830 stmt = gimple_build_label (dest);
831 gsi_insert_before (&gsi, stmt, GSI_NEW_STMT);
832 uid = LABEL_DECL_UID (dest);
834 if (VEC_length (basic_block, ifun->cfg->x_label_to_block_map)
835 <= (unsigned int) uid)
836 return NULL;
837 return VEC_index (basic_block, ifun->cfg->x_label_to_block_map, uid);
840 /* Create edges for an abnormal goto statement at block BB. If FOR_CALL
841 is true, the source statement is a CALL_EXPR instead of a GOTO_EXPR. */
843 void
844 make_abnormal_goto_edges (basic_block bb, bool for_call)
846 basic_block target_bb;
847 gimple_stmt_iterator gsi;
849 FOR_EACH_BB (target_bb)
850 for (gsi = gsi_start_bb (target_bb); !gsi_end_p (gsi); gsi_next (&gsi))
852 gimple label_stmt = gsi_stmt (gsi);
853 tree target;
855 if (gimple_code (label_stmt) != GIMPLE_LABEL)
856 break;
858 target = gimple_label_label (label_stmt);
860 /* Make an edge to every label block that has been marked as a
861 potential target for a computed goto or a non-local goto. */
862 if ((FORCED_LABEL (target) && !for_call)
863 || (DECL_NONLOCAL (target) && for_call))
865 make_edge (bb, target_bb, EDGE_ABNORMAL);
866 break;
871 /* Create edges for a goto statement at block BB. */
873 static void
874 make_goto_expr_edges (basic_block bb)
876 gimple_stmt_iterator last = gsi_last_bb (bb);
877 gimple goto_t = gsi_stmt (last);
879 /* A simple GOTO creates normal edges. */
880 if (simple_goto_p (goto_t))
882 tree dest = gimple_goto_dest (goto_t);
883 edge e = make_edge (bb, label_to_block (dest), EDGE_FALLTHRU);
884 e->goto_locus = gimple_location (goto_t);
885 if (e->goto_locus)
886 e->goto_block = gimple_block (goto_t);
887 gsi_remove (&last, true);
888 return;
891 /* A computed GOTO creates abnormal edges. */
892 make_abnormal_goto_edges (bb, false);
896 /*---------------------------------------------------------------------------
897 Flowgraph analysis
898 ---------------------------------------------------------------------------*/
900 /* Cleanup useless labels in basic blocks. This is something we wish
901 to do early because it allows us to group case labels before creating
902 the edges for the CFG, and it speeds up block statement iterators in
903 all passes later on.
904 We rerun this pass after CFG is created, to get rid of the labels that
905 are no longer referenced. After then we do not run it any more, since
906 (almost) no new labels should be created. */
908 /* A map from basic block index to the leading label of that block. */
909 static struct label_record
911 /* The label. */
912 tree label;
914 /* True if the label is referenced from somewhere. */
915 bool used;
916 } *label_for_bb;
918 /* Callback for for_each_eh_region. Helper for cleanup_dead_labels. */
919 static void
920 update_eh_label (struct eh_region_d *region)
922 tree old_label = get_eh_region_tree_label (region);
923 if (old_label)
925 tree new_label;
926 basic_block bb = label_to_block (old_label);
928 /* ??? After optimizing, there may be EH regions with labels
929 that have already been removed from the function body, so
930 there is no basic block for them. */
931 if (! bb)
932 return;
934 new_label = label_for_bb[bb->index].label;
935 label_for_bb[bb->index].used = true;
936 set_eh_region_tree_label (region, new_label);
941 /* Given LABEL return the first label in the same basic block. */
943 static tree
944 main_block_label (tree label)
946 basic_block bb = label_to_block (label);
947 tree main_label = label_for_bb[bb->index].label;
949 /* label_to_block possibly inserted undefined label into the chain. */
950 if (!main_label)
952 label_for_bb[bb->index].label = label;
953 main_label = label;
956 label_for_bb[bb->index].used = true;
957 return main_label;
960 /* Cleanup redundant labels. This is a three-step process:
961 1) Find the leading label for each block.
962 2) Redirect all references to labels to the leading labels.
963 3) Cleanup all useless labels. */
965 void
966 cleanup_dead_labels (void)
968 basic_block bb;
969 label_for_bb = XCNEWVEC (struct label_record, last_basic_block);
971 /* Find a suitable label for each block. We use the first user-defined
972 label if there is one, or otherwise just the first label we see. */
973 FOR_EACH_BB (bb)
975 gimple_stmt_iterator i;
977 for (i = gsi_start_bb (bb); !gsi_end_p (i); gsi_next (&i))
979 tree label;
980 gimple stmt = gsi_stmt (i);
982 if (gimple_code (stmt) != GIMPLE_LABEL)
983 break;
985 label = gimple_label_label (stmt);
987 /* If we have not yet seen a label for the current block,
988 remember this one and see if there are more labels. */
989 if (!label_for_bb[bb->index].label)
991 label_for_bb[bb->index].label = label;
992 continue;
995 /* If we did see a label for the current block already, but it
996 is an artificially created label, replace it if the current
997 label is a user defined label. */
998 if (!DECL_ARTIFICIAL (label)
999 && DECL_ARTIFICIAL (label_for_bb[bb->index].label))
1001 label_for_bb[bb->index].label = label;
1002 break;
1007 /* Now redirect all jumps/branches to the selected label.
1008 First do so for each block ending in a control statement. */
1009 FOR_EACH_BB (bb)
1011 gimple stmt = last_stmt (bb);
1012 if (!stmt)
1013 continue;
1015 switch (gimple_code (stmt))
1017 case GIMPLE_COND:
1019 tree true_label = gimple_cond_true_label (stmt);
1020 tree false_label = gimple_cond_false_label (stmt);
1022 if (true_label)
1023 gimple_cond_set_true_label (stmt, main_block_label (true_label));
1024 if (false_label)
1025 gimple_cond_set_false_label (stmt, main_block_label (false_label));
1026 break;
1029 case GIMPLE_SWITCH:
1031 size_t i, n = gimple_switch_num_labels (stmt);
1033 /* Replace all destination labels. */
1034 for (i = 0; i < n; ++i)
1036 tree case_label = gimple_switch_label (stmt, i);
1037 tree label = main_block_label (CASE_LABEL (case_label));
1038 CASE_LABEL (case_label) = label;
1040 break;
1043 /* We have to handle gotos until they're removed, and we don't
1044 remove them until after we've created the CFG edges. */
1045 case GIMPLE_GOTO:
1046 if (!computed_goto_p (stmt))
1048 tree new_dest = main_block_label (gimple_goto_dest (stmt));
1049 gimple_goto_set_dest (stmt, new_dest);
1050 break;
1053 default:
1054 break;
1058 for_each_eh_region (update_eh_label);
1060 /* Finally, purge dead labels. All user-defined labels and labels that
1061 can be the target of non-local gotos and labels which have their
1062 address taken are preserved. */
1063 FOR_EACH_BB (bb)
1065 gimple_stmt_iterator i;
1066 tree label_for_this_bb = label_for_bb[bb->index].label;
1068 if (!label_for_this_bb)
1069 continue;
1071 /* If the main label of the block is unused, we may still remove it. */
1072 if (!label_for_bb[bb->index].used)
1073 label_for_this_bb = NULL;
1075 for (i = gsi_start_bb (bb); !gsi_end_p (i); )
1077 tree label;
1078 gimple stmt = gsi_stmt (i);
1080 if (gimple_code (stmt) != GIMPLE_LABEL)
1081 break;
1083 label = gimple_label_label (stmt);
1085 if (label == label_for_this_bb
1086 || !DECL_ARTIFICIAL (label)
1087 || DECL_NONLOCAL (label)
1088 || FORCED_LABEL (label))
1089 gsi_next (&i);
1090 else
1091 gsi_remove (&i, true);
1095 free (label_for_bb);
1098 /* Look for blocks ending in a multiway branch (a SWITCH_EXPR in GIMPLE),
1099 and scan the sorted vector of cases. Combine the ones jumping to the
1100 same label.
1101 Eg. three separate entries 1: 2: 3: become one entry 1..3: */
1103 void
1104 group_case_labels (void)
1106 basic_block bb;
1108 FOR_EACH_BB (bb)
1110 gimple stmt = last_stmt (bb);
1111 if (stmt && gimple_code (stmt) == GIMPLE_SWITCH)
1113 int old_size = gimple_switch_num_labels (stmt);
1114 int i, j, new_size = old_size;
1115 tree default_case = NULL_TREE;
1116 tree default_label = NULL_TREE;
1117 bool has_default;
1119 /* The default label is always the first case in a switch
1120 statement after gimplification if it was not optimized
1121 away */
1122 if (!CASE_LOW (gimple_switch_default_label (stmt))
1123 && !CASE_HIGH (gimple_switch_default_label (stmt)))
1125 default_case = gimple_switch_default_label (stmt);
1126 default_label = CASE_LABEL (default_case);
1127 has_default = true;
1129 else
1130 has_default = false;
1132 /* Look for possible opportunities to merge cases. */
1133 if (has_default)
1134 i = 1;
1135 else
1136 i = 0;
1137 while (i < old_size)
1139 tree base_case, base_label, base_high;
1140 base_case = gimple_switch_label (stmt, i);
1142 gcc_assert (base_case);
1143 base_label = CASE_LABEL (base_case);
1145 /* Discard cases that have the same destination as the
1146 default case. */
1147 if (base_label == default_label)
1149 gimple_switch_set_label (stmt, i, NULL_TREE);
1150 i++;
1151 new_size--;
1152 continue;
1155 base_high = CASE_HIGH (base_case)
1156 ? CASE_HIGH (base_case)
1157 : CASE_LOW (base_case);
1158 i++;
1160 /* Try to merge case labels. Break out when we reach the end
1161 of the label vector or when we cannot merge the next case
1162 label with the current one. */
1163 while (i < old_size)
1165 tree merge_case = gimple_switch_label (stmt, i);
1166 tree merge_label = CASE_LABEL (merge_case);
1167 tree t = int_const_binop (PLUS_EXPR, base_high,
1168 integer_one_node, 1);
1170 /* Merge the cases if they jump to the same place,
1171 and their ranges are consecutive. */
1172 if (merge_label == base_label
1173 && tree_int_cst_equal (CASE_LOW (merge_case), t))
1175 base_high = CASE_HIGH (merge_case) ?
1176 CASE_HIGH (merge_case) : CASE_LOW (merge_case);
1177 CASE_HIGH (base_case) = base_high;
1178 gimple_switch_set_label (stmt, i, NULL_TREE);
1179 new_size--;
1180 i++;
1182 else
1183 break;
1187 /* Compress the case labels in the label vector, and adjust the
1188 length of the vector. */
1189 for (i = 0, j = 0; i < new_size; i++)
1191 while (! gimple_switch_label (stmt, j))
1192 j++;
1193 gimple_switch_set_label (stmt, i,
1194 gimple_switch_label (stmt, j++));
1197 gcc_assert (new_size <= old_size);
1198 gimple_switch_set_num_labels (stmt, new_size);
1203 /* Checks whether we can merge block B into block A. */
1205 static bool
1206 gimple_can_merge_blocks_p (basic_block a, basic_block b)
1208 gimple stmt;
1209 gimple_stmt_iterator gsi;
1210 gimple_seq phis;
1212 if (!single_succ_p (a))
1213 return false;
1215 if (single_succ_edge (a)->flags & (EDGE_ABNORMAL | EDGE_EH))
1216 return false;
1218 if (single_succ (a) != b)
1219 return false;
1221 if (!single_pred_p (b))
1222 return false;
1224 if (b == EXIT_BLOCK_PTR)
1225 return false;
1227 /* If A ends by a statement causing exceptions or something similar, we
1228 cannot merge the blocks. */
1229 stmt = last_stmt (a);
1230 if (stmt && stmt_ends_bb_p (stmt))
1231 return false;
1233 /* Do not allow a block with only a non-local label to be merged. */
1234 if (stmt
1235 && gimple_code (stmt) == GIMPLE_LABEL
1236 && DECL_NONLOCAL (gimple_label_label (stmt)))
1237 return false;
1239 /* It must be possible to eliminate all phi nodes in B. If ssa form
1240 is not up-to-date, we cannot eliminate any phis; however, if only
1241 some symbols as whole are marked for renaming, this is not a problem,
1242 as phi nodes for those symbols are irrelevant in updating anyway. */
1243 phis = phi_nodes (b);
1244 if (!gimple_seq_empty_p (phis))
1246 gimple_stmt_iterator i;
1248 if (name_mappings_registered_p ())
1249 return false;
1251 for (i = gsi_start (phis); !gsi_end_p (i); gsi_next (&i))
1253 gimple phi = gsi_stmt (i);
1255 if (!is_gimple_reg (gimple_phi_result (phi))
1256 && !may_propagate_copy (gimple_phi_result (phi),
1257 gimple_phi_arg_def (phi, 0)))
1258 return false;
1262 /* Do not remove user labels. */
1263 for (gsi = gsi_start_bb (b); !gsi_end_p (gsi); gsi_next (&gsi))
1265 stmt = gsi_stmt (gsi);
1266 if (gimple_code (stmt) != GIMPLE_LABEL)
1267 break;
1268 if (!DECL_ARTIFICIAL (gimple_label_label (stmt)))
1269 return false;
1272 /* Protect the loop latches. */
1273 if (current_loops
1274 && b->loop_father->latch == b)
1275 return false;
1277 return true;
1280 /* Replaces all uses of NAME by VAL. */
1282 void
1283 replace_uses_by (tree name, tree val)
1285 imm_use_iterator imm_iter;
1286 use_operand_p use;
1287 gimple stmt;
1288 edge e;
1290 FOR_EACH_IMM_USE_STMT (stmt, imm_iter, name)
1292 FOR_EACH_IMM_USE_ON_STMT (use, imm_iter)
1294 replace_exp (use, val);
1296 if (gimple_code (stmt) == GIMPLE_PHI)
1298 e = gimple_phi_arg_edge (stmt, PHI_ARG_INDEX_FROM_USE (use));
1299 if (e->flags & EDGE_ABNORMAL)
1301 /* This can only occur for virtual operands, since
1302 for the real ones SSA_NAME_OCCURS_IN_ABNORMAL_PHI (name))
1303 would prevent replacement. */
1304 gcc_assert (!is_gimple_reg (name));
1305 SSA_NAME_OCCURS_IN_ABNORMAL_PHI (val) = 1;
1310 if (gimple_code (stmt) != GIMPLE_PHI)
1312 size_t i;
1314 fold_stmt_inplace (stmt);
1315 if (cfgcleanup_altered_bbs)
1316 bitmap_set_bit (cfgcleanup_altered_bbs, gimple_bb (stmt)->index);
1318 /* FIXME. This should go in update_stmt. */
1319 for (i = 0; i < gimple_num_ops (stmt); i++)
1321 tree op = gimple_op (stmt, i);
1322 /* Operands may be empty here. For example, the labels
1323 of a GIMPLE_COND are nulled out following the creation
1324 of the corresponding CFG edges. */
1325 if (op && TREE_CODE (op) == ADDR_EXPR)
1326 recompute_tree_invariant_for_addr_expr (op);
1329 maybe_clean_or_replace_eh_stmt (stmt, stmt);
1330 update_stmt (stmt);
1334 gcc_assert (has_zero_uses (name));
1336 /* Also update the trees stored in loop structures. */
1337 if (current_loops)
1339 struct loop *loop;
1340 loop_iterator li;
1342 FOR_EACH_LOOP (li, loop, 0)
1344 substitute_in_loop_info (loop, name, val);
1349 /* Merge block B into block A. */
1351 static void
1352 gimple_merge_blocks (basic_block a, basic_block b)
1354 gimple_stmt_iterator last, gsi, psi;
1355 gimple_seq phis = phi_nodes (b);
1357 if (dump_file)
1358 fprintf (dump_file, "Merging blocks %d and %d\n", a->index, b->index);
1360 /* Remove all single-valued PHI nodes from block B of the form
1361 V_i = PHI <V_j> by propagating V_j to all the uses of V_i. */
1362 gsi = gsi_last_bb (a);
1363 for (psi = gsi_start (phis); !gsi_end_p (psi); )
1365 gimple phi = gsi_stmt (psi);
1366 tree def = gimple_phi_result (phi), use = gimple_phi_arg_def (phi, 0);
1367 gimple copy;
1368 bool may_replace_uses = !is_gimple_reg (def)
1369 || may_propagate_copy (def, use);
1371 /* In case we maintain loop closed ssa form, do not propagate arguments
1372 of loop exit phi nodes. */
1373 if (current_loops
1374 && loops_state_satisfies_p (LOOP_CLOSED_SSA)
1375 && is_gimple_reg (def)
1376 && TREE_CODE (use) == SSA_NAME
1377 && a->loop_father != b->loop_father)
1378 may_replace_uses = false;
1380 if (!may_replace_uses)
1382 gcc_assert (is_gimple_reg (def));
1384 /* Note that just emitting the copies is fine -- there is no problem
1385 with ordering of phi nodes. This is because A is the single
1386 predecessor of B, therefore results of the phi nodes cannot
1387 appear as arguments of the phi nodes. */
1388 copy = gimple_build_assign (def, use);
1389 gsi_insert_after (&gsi, copy, GSI_NEW_STMT);
1390 remove_phi_node (&psi, false);
1392 else
1394 /* If we deal with a PHI for virtual operands, we can simply
1395 propagate these without fussing with folding or updating
1396 the stmt. */
1397 if (!is_gimple_reg (def))
1399 imm_use_iterator iter;
1400 use_operand_p use_p;
1401 gimple stmt;
1403 FOR_EACH_IMM_USE_STMT (stmt, iter, def)
1404 FOR_EACH_IMM_USE_ON_STMT (use_p, iter)
1405 SET_USE (use_p, use);
1407 else
1408 replace_uses_by (def, use);
1410 remove_phi_node (&psi, true);
1414 /* Ensure that B follows A. */
1415 move_block_after (b, a);
1417 gcc_assert (single_succ_edge (a)->flags & EDGE_FALLTHRU);
1418 gcc_assert (!last_stmt (a) || !stmt_ends_bb_p (last_stmt (a)));
1420 /* Remove labels from B and set gimple_bb to A for other statements. */
1421 for (gsi = gsi_start_bb (b); !gsi_end_p (gsi);)
1423 if (gimple_code (gsi_stmt (gsi)) == GIMPLE_LABEL)
1425 gimple label = gsi_stmt (gsi);
1427 gsi_remove (&gsi, false);
1429 /* Now that we can thread computed gotos, we might have
1430 a situation where we have a forced label in block B
1431 However, the label at the start of block B might still be
1432 used in other ways (think about the runtime checking for
1433 Fortran assigned gotos). So we can not just delete the
1434 label. Instead we move the label to the start of block A. */
1435 if (FORCED_LABEL (gimple_label_label (label)))
1437 gimple_stmt_iterator dest_gsi = gsi_start_bb (a);
1438 gsi_insert_before (&dest_gsi, label, GSI_NEW_STMT);
1441 else
1443 gimple_set_bb (gsi_stmt (gsi), a);
1444 gsi_next (&gsi);
1448 /* Merge the sequences. */
1449 last = gsi_last_bb (a);
1450 gsi_insert_seq_after (&last, bb_seq (b), GSI_NEW_STMT);
1451 set_bb_seq (b, NULL);
1453 if (cfgcleanup_altered_bbs)
1454 bitmap_set_bit (cfgcleanup_altered_bbs, a->index);
1458 /* Return the one of two successors of BB that is not reachable by a
1459 reached by a complex edge, if there is one. Else, return BB. We use
1460 this in optimizations that use post-dominators for their heuristics,
1461 to catch the cases in C++ where function calls are involved. */
1463 basic_block
1464 single_noncomplex_succ (basic_block bb)
1466 edge e0, e1;
1467 if (EDGE_COUNT (bb->succs) != 2)
1468 return bb;
1470 e0 = EDGE_SUCC (bb, 0);
1471 e1 = EDGE_SUCC (bb, 1);
1472 if (e0->flags & EDGE_COMPLEX)
1473 return e1->dest;
1474 if (e1->flags & EDGE_COMPLEX)
1475 return e0->dest;
1477 return bb;
1481 /* Walk the function tree removing unnecessary statements.
1483 * Empty statement nodes are removed
1485 * Unnecessary TRY_FINALLY and TRY_CATCH blocks are removed
1487 * Unnecessary COND_EXPRs are removed
1489 * Some unnecessary BIND_EXPRs are removed
1491 * GOTO_EXPRs immediately preceding destination are removed.
1493 Clearly more work could be done. The trick is doing the analysis
1494 and removal fast enough to be a net improvement in compile times.
1496 Note that when we remove a control structure such as a COND_EXPR
1497 BIND_EXPR, or TRY block, we will need to repeat this optimization pass
1498 to ensure we eliminate all the useless code. */
1500 struct rus_data
1502 bool repeat;
1503 bool may_throw;
1504 bool may_branch;
1505 bool has_label;
1506 bool last_was_goto;
1507 gimple_stmt_iterator last_goto_gsi;
1511 static void remove_useless_stmts_1 (gimple_stmt_iterator *gsi, struct rus_data *);
1513 /* Given a statement sequence, find the first executable statement with
1514 location information, and warn that it is unreachable. When searching,
1515 descend into containers in execution order. */
1517 static bool
1518 remove_useless_stmts_warn_notreached (gimple_seq stmts)
1520 gimple_stmt_iterator gsi;
1522 for (gsi = gsi_start (stmts); !gsi_end_p (gsi); gsi_next (&gsi))
1524 gimple stmt = gsi_stmt (gsi);
1526 if (gimple_has_location (stmt))
1528 location_t loc = gimple_location (stmt);
1529 if (LOCATION_LINE (loc) > 0)
1531 warning (OPT_Wunreachable_code, "%Hwill never be executed", &loc);
1532 return true;
1536 switch (gimple_code (stmt))
1538 /* Unfortunately, we need the CFG now to detect unreachable
1539 branches in a conditional, so conditionals are not handled here. */
1541 case GIMPLE_TRY:
1542 if (remove_useless_stmts_warn_notreached (gimple_try_eval (stmt)))
1543 return true;
1544 if (remove_useless_stmts_warn_notreached (gimple_try_cleanup (stmt)))
1545 return true;
1546 break;
1548 case GIMPLE_CATCH:
1549 return remove_useless_stmts_warn_notreached (gimple_catch_handler (stmt));
1551 case GIMPLE_EH_FILTER:
1552 return remove_useless_stmts_warn_notreached (gimple_eh_filter_failure (stmt));
1554 case GIMPLE_BIND:
1555 return remove_useless_stmts_warn_notreached (gimple_bind_body (stmt));
1557 default:
1558 break;
1562 return false;
1565 /* Helper for remove_useless_stmts_1. Handle GIMPLE_COND statements. */
1567 static void
1568 remove_useless_stmts_cond (gimple_stmt_iterator *gsi, struct rus_data *data)
1570 gimple stmt = gsi_stmt (*gsi);
1572 /* The folded result must still be a conditional statement. */
1573 fold_stmt (gsi);
1574 gcc_assert (gsi_stmt (*gsi) == stmt);
1576 data->may_branch = true;
1578 /* Replace trivial conditionals with gotos. */
1579 if (gimple_cond_true_p (stmt))
1581 /* Goto THEN label. */
1582 tree then_label = gimple_cond_true_label (stmt);
1584 gsi_replace (gsi, gimple_build_goto (then_label), false);
1585 data->last_goto_gsi = *gsi;
1586 data->last_was_goto = true;
1587 data->repeat = true;
1589 else if (gimple_cond_false_p (stmt))
1591 /* Goto ELSE label. */
1592 tree else_label = gimple_cond_false_label (stmt);
1594 gsi_replace (gsi, gimple_build_goto (else_label), false);
1595 data->last_goto_gsi = *gsi;
1596 data->last_was_goto = true;
1597 data->repeat = true;
1599 else
1601 tree then_label = gimple_cond_true_label (stmt);
1602 tree else_label = gimple_cond_false_label (stmt);
1604 if (then_label == else_label)
1606 /* Goto common destination. */
1607 gsi_replace (gsi, gimple_build_goto (then_label), false);
1608 data->last_goto_gsi = *gsi;
1609 data->last_was_goto = true;
1610 data->repeat = true;
1614 gsi_next (gsi);
1616 data->last_was_goto = false;
1619 /* Helper for remove_useless_stmts_1.
1620 Handle the try-finally case for GIMPLE_TRY statements. */
1622 static void
1623 remove_useless_stmts_tf (gimple_stmt_iterator *gsi, struct rus_data *data)
1625 bool save_may_branch, save_may_throw;
1626 bool this_may_branch, this_may_throw;
1628 gimple_seq eval_seq, cleanup_seq;
1629 gimple_stmt_iterator eval_gsi, cleanup_gsi;
1631 gimple stmt = gsi_stmt (*gsi);
1633 /* Collect may_branch and may_throw information for the body only. */
1634 save_may_branch = data->may_branch;
1635 save_may_throw = data->may_throw;
1636 data->may_branch = false;
1637 data->may_throw = false;
1638 data->last_was_goto = false;
1640 eval_seq = gimple_try_eval (stmt);
1641 eval_gsi = gsi_start (eval_seq);
1642 remove_useless_stmts_1 (&eval_gsi, data);
1644 this_may_branch = data->may_branch;
1645 this_may_throw = data->may_throw;
1646 data->may_branch |= save_may_branch;
1647 data->may_throw |= save_may_throw;
1648 data->last_was_goto = false;
1650 cleanup_seq = gimple_try_cleanup (stmt);
1651 cleanup_gsi = gsi_start (cleanup_seq);
1652 remove_useless_stmts_1 (&cleanup_gsi, data);
1654 /* If the body is empty, then we can emit the FINALLY block without
1655 the enclosing TRY_FINALLY_EXPR. */
1656 if (gimple_seq_empty_p (eval_seq))
1658 gsi_insert_seq_before (gsi, cleanup_seq, GSI_SAME_STMT);
1659 gsi_remove (gsi, false);
1660 data->repeat = true;
1663 /* If the handler is empty, then we can emit the TRY block without
1664 the enclosing TRY_FINALLY_EXPR. */
1665 else if (gimple_seq_empty_p (cleanup_seq))
1667 gsi_insert_seq_before (gsi, eval_seq, GSI_SAME_STMT);
1668 gsi_remove (gsi, false);
1669 data->repeat = true;
1672 /* If the body neither throws, nor branches, then we can safely
1673 string the TRY and FINALLY blocks together. */
1674 else if (!this_may_branch && !this_may_throw)
1676 gsi_insert_seq_before (gsi, eval_seq, GSI_SAME_STMT);
1677 gsi_insert_seq_before (gsi, cleanup_seq, GSI_SAME_STMT);
1678 gsi_remove (gsi, false);
1679 data->repeat = true;
1681 else
1682 gsi_next (gsi);
1685 /* Helper for remove_useless_stmts_1.
1686 Handle the try-catch case for GIMPLE_TRY statements. */
1688 static void
1689 remove_useless_stmts_tc (gimple_stmt_iterator *gsi, struct rus_data *data)
1691 bool save_may_throw, this_may_throw;
1693 gimple_seq eval_seq, cleanup_seq, handler_seq, failure_seq;
1694 gimple_stmt_iterator eval_gsi, cleanup_gsi, handler_gsi, failure_gsi;
1696 gimple stmt = gsi_stmt (*gsi);
1698 /* Collect may_throw information for the body only. */
1699 save_may_throw = data->may_throw;
1700 data->may_throw = false;
1701 data->last_was_goto = false;
1703 eval_seq = gimple_try_eval (stmt);
1704 eval_gsi = gsi_start (eval_seq);
1705 remove_useless_stmts_1 (&eval_gsi, data);
1707 this_may_throw = data->may_throw;
1708 data->may_throw = save_may_throw;
1710 cleanup_seq = gimple_try_cleanup (stmt);
1712 /* If the body cannot throw, then we can drop the entire TRY_CATCH_EXPR. */
1713 if (!this_may_throw)
1715 if (warn_notreached)
1717 remove_useless_stmts_warn_notreached (cleanup_seq);
1719 gsi_insert_seq_before (gsi, eval_seq, GSI_SAME_STMT);
1720 gsi_remove (gsi, false);
1721 data->repeat = true;
1722 return;
1725 /* Process the catch clause specially. We may be able to tell that
1726 no exceptions propagate past this point. */
1728 this_may_throw = true;
1729 cleanup_gsi = gsi_start (cleanup_seq);
1730 stmt = gsi_stmt (cleanup_gsi);
1731 data->last_was_goto = false;
1733 switch (gimple_code (stmt))
1735 case GIMPLE_CATCH:
1736 /* If the first element is a catch, they all must be. */
1737 while (!gsi_end_p (cleanup_gsi))
1739 stmt = gsi_stmt (cleanup_gsi);
1740 /* If we catch all exceptions, then the body does not
1741 propagate exceptions past this point. */
1742 if (gimple_catch_types (stmt) == NULL)
1743 this_may_throw = false;
1744 data->last_was_goto = false;
1745 handler_seq = gimple_catch_handler (stmt);
1746 handler_gsi = gsi_start (handler_seq);
1747 remove_useless_stmts_1 (&handler_gsi, data);
1748 gsi_next (&cleanup_gsi);
1750 gsi_next (gsi);
1751 break;
1753 case GIMPLE_EH_FILTER:
1754 /* If the first element is an eh_filter, it should stand alone. */
1755 if (gimple_eh_filter_must_not_throw (stmt))
1756 this_may_throw = false;
1757 else if (gimple_eh_filter_types (stmt) == NULL)
1758 this_may_throw = false;
1759 failure_seq = gimple_eh_filter_failure (stmt);
1760 failure_gsi = gsi_start (failure_seq);
1761 remove_useless_stmts_1 (&failure_gsi, data);
1762 gsi_next (gsi);
1763 break;
1765 default:
1766 /* Otherwise this is a list of cleanup statements. */
1767 remove_useless_stmts_1 (&cleanup_gsi, data);
1769 /* If the cleanup is empty, then we can emit the TRY block without
1770 the enclosing TRY_CATCH_EXPR. */
1771 if (gimple_seq_empty_p (cleanup_seq))
1773 gsi_insert_seq_before (gsi, eval_seq, GSI_SAME_STMT);
1774 gsi_remove(gsi, false);
1775 data->repeat = true;
1777 else
1778 gsi_next (gsi);
1779 break;
1782 data->may_throw |= this_may_throw;
1785 /* Helper for remove_useless_stmts_1. Handle GIMPLE_BIND statements. */
1787 static void
1788 remove_useless_stmts_bind (gimple_stmt_iterator *gsi, struct rus_data *data ATTRIBUTE_UNUSED)
1790 tree block;
1791 gimple_seq body_seq, fn_body_seq;
1792 gimple_stmt_iterator body_gsi;
1794 gimple stmt = gsi_stmt (*gsi);
1796 /* First remove anything underneath the BIND_EXPR. */
1798 body_seq = gimple_bind_body (stmt);
1799 body_gsi = gsi_start (body_seq);
1800 remove_useless_stmts_1 (&body_gsi, data);
1802 /* If the GIMPLE_BIND has no variables, then we can pull everything
1803 up one level and remove the GIMPLE_BIND, unless this is the toplevel
1804 GIMPLE_BIND for the current function or an inlined function.
1806 When this situation occurs we will want to apply this
1807 optimization again. */
1808 block = gimple_bind_block (stmt);
1809 fn_body_seq = gimple_body (current_function_decl);
1810 if (gimple_bind_vars (stmt) == NULL_TREE
1811 && (gimple_seq_empty_p (fn_body_seq)
1812 || stmt != gimple_seq_first_stmt (fn_body_seq))
1813 && (! block
1814 || ! BLOCK_ABSTRACT_ORIGIN (block)
1815 || (TREE_CODE (BLOCK_ABSTRACT_ORIGIN (block))
1816 != FUNCTION_DECL)))
1818 tree var = NULL_TREE;
1819 /* Even if there are no gimple_bind_vars, there might be other
1820 decls in BLOCK_VARS rendering the GIMPLE_BIND not useless. */
1821 if (block && !BLOCK_NUM_NONLOCALIZED_VARS (block))
1822 for (var = BLOCK_VARS (block); var; var = TREE_CHAIN (var))
1823 if (TREE_CODE (var) == IMPORTED_DECL)
1824 break;
1825 if (var || (block && BLOCK_NUM_NONLOCALIZED_VARS (block)))
1826 gsi_next (gsi);
1827 else
1829 gsi_insert_seq_before (gsi, body_seq, GSI_SAME_STMT);
1830 gsi_remove (gsi, false);
1831 data->repeat = true;
1834 else
1835 gsi_next (gsi);
1838 /* Helper for remove_useless_stmts_1. Handle GIMPLE_GOTO statements. */
1840 static void
1841 remove_useless_stmts_goto (gimple_stmt_iterator *gsi, struct rus_data *data)
1843 gimple stmt = gsi_stmt (*gsi);
1845 tree dest = gimple_goto_dest (stmt);
1847 data->may_branch = true;
1848 data->last_was_goto = false;
1850 /* Record iterator for last goto expr, so that we can delete it if unnecessary. */
1851 if (TREE_CODE (dest) == LABEL_DECL)
1853 data->last_goto_gsi = *gsi;
1854 data->last_was_goto = true;
1857 gsi_next(gsi);
1860 /* Helper for remove_useless_stmts_1. Handle GIMPLE_LABEL statements. */
1862 static void
1863 remove_useless_stmts_label (gimple_stmt_iterator *gsi, struct rus_data *data)
1865 gimple stmt = gsi_stmt (*gsi);
1867 tree label = gimple_label_label (stmt);
1869 data->has_label = true;
1871 /* We do want to jump across non-local label receiver code. */
1872 if (DECL_NONLOCAL (label))
1873 data->last_was_goto = false;
1875 else if (data->last_was_goto
1876 && gimple_goto_dest (gsi_stmt (data->last_goto_gsi)) == label)
1878 /* Replace the preceding GIMPLE_GOTO statement with
1879 a GIMPLE_NOP, which will be subsequently removed.
1880 In this way, we avoid invalidating other iterators
1881 active on the statement sequence. */
1882 gsi_replace(&data->last_goto_gsi, gimple_build_nop(), false);
1883 data->last_was_goto = false;
1884 data->repeat = true;
1887 /* ??? Add something here to delete unused labels. */
1889 gsi_next (gsi);
1893 /* T is CALL_EXPR. Set current_function_calls_* flags. */
1895 void
1896 notice_special_calls (gimple call)
1898 int flags = gimple_call_flags (call);
1900 if (flags & ECF_MAY_BE_ALLOCA)
1901 cfun->calls_alloca = true;
1902 if (flags & ECF_RETURNS_TWICE)
1903 cfun->calls_setjmp = true;
1907 /* Clear flags set by notice_special_calls. Used by dead code removal
1908 to update the flags. */
1910 void
1911 clear_special_calls (void)
1913 cfun->calls_alloca = false;
1914 cfun->calls_setjmp = false;
1917 /* Remove useless statements from a statement sequence, and perform
1918 some preliminary simplifications. */
1920 static void
1921 remove_useless_stmts_1 (gimple_stmt_iterator *gsi, struct rus_data *data)
1923 while (!gsi_end_p (*gsi))
1925 gimple stmt = gsi_stmt (*gsi);
1927 switch (gimple_code (stmt))
1929 case GIMPLE_COND:
1930 remove_useless_stmts_cond (gsi, data);
1931 break;
1933 case GIMPLE_GOTO:
1934 remove_useless_stmts_goto (gsi, data);
1935 break;
1937 case GIMPLE_LABEL:
1938 remove_useless_stmts_label (gsi, data);
1939 break;
1941 case GIMPLE_ASSIGN:
1942 fold_stmt (gsi);
1943 stmt = gsi_stmt (*gsi);
1944 data->last_was_goto = false;
1945 if (stmt_could_throw_p (stmt))
1946 data->may_throw = true;
1947 gsi_next (gsi);
1948 break;
1950 case GIMPLE_ASM:
1951 fold_stmt (gsi);
1952 data->last_was_goto = false;
1953 gsi_next (gsi);
1954 break;
1956 case GIMPLE_CALL:
1957 fold_stmt (gsi);
1958 stmt = gsi_stmt (*gsi);
1959 data->last_was_goto = false;
1960 if (is_gimple_call (stmt))
1961 notice_special_calls (stmt);
1963 /* We used to call update_gimple_call_flags here,
1964 which copied side-effects and nothrows status
1965 from the function decl to the call. In the new
1966 tuplified GIMPLE, the accessors for this information
1967 always consult the function decl, so this copying
1968 is no longer necessary. */
1969 if (stmt_could_throw_p (stmt))
1970 data->may_throw = true;
1971 gsi_next (gsi);
1972 break;
1974 case GIMPLE_RETURN:
1975 fold_stmt (gsi);
1976 data->last_was_goto = false;
1977 data->may_branch = true;
1978 gsi_next (gsi);
1979 break;
1981 case GIMPLE_BIND:
1982 remove_useless_stmts_bind (gsi, data);
1983 break;
1985 case GIMPLE_TRY:
1986 if (gimple_try_kind (stmt) == GIMPLE_TRY_CATCH)
1987 remove_useless_stmts_tc (gsi, data);
1988 else if (gimple_try_kind (stmt) == GIMPLE_TRY_FINALLY)
1989 remove_useless_stmts_tf (gsi, data);
1990 else
1991 gcc_unreachable ();
1992 break;
1994 case GIMPLE_CATCH:
1995 gcc_unreachable ();
1996 break;
1998 case GIMPLE_NOP:
1999 gsi_remove (gsi, false);
2000 break;
2002 case GIMPLE_OMP_FOR:
2004 gimple_seq pre_body_seq = gimple_omp_for_pre_body (stmt);
2005 gimple_stmt_iterator pre_body_gsi = gsi_start (pre_body_seq);
2007 remove_useless_stmts_1 (&pre_body_gsi, data);
2008 data->last_was_goto = false;
2010 /* FALLTHROUGH */
2011 case GIMPLE_OMP_CRITICAL:
2012 case GIMPLE_OMP_CONTINUE:
2013 case GIMPLE_OMP_MASTER:
2014 case GIMPLE_OMP_ORDERED:
2015 case GIMPLE_OMP_SECTION:
2016 case GIMPLE_OMP_SECTIONS:
2017 case GIMPLE_OMP_SINGLE:
2019 gimple_seq body_seq = gimple_omp_body (stmt);
2020 gimple_stmt_iterator body_gsi = gsi_start (body_seq);
2022 remove_useless_stmts_1 (&body_gsi, data);
2023 data->last_was_goto = false;
2024 gsi_next (gsi);
2026 break;
2028 case GIMPLE_OMP_PARALLEL:
2029 case GIMPLE_OMP_TASK:
2031 /* Make sure the outermost GIMPLE_BIND isn't removed
2032 as useless. */
2033 gimple_seq body_seq = gimple_omp_body (stmt);
2034 gimple bind = gimple_seq_first_stmt (body_seq);
2035 gimple_seq bind_seq = gimple_bind_body (bind);
2036 gimple_stmt_iterator bind_gsi = gsi_start (bind_seq);
2038 remove_useless_stmts_1 (&bind_gsi, data);
2039 data->last_was_goto = false;
2040 gsi_next (gsi);
2042 break;
2044 default:
2045 data->last_was_goto = false;
2046 gsi_next (gsi);
2047 break;
2052 /* Walk the function tree, removing useless statements and performing
2053 some preliminary simplifications. */
2055 static unsigned int
2056 remove_useless_stmts (void)
2058 struct rus_data data;
2060 clear_special_calls ();
2064 gimple_stmt_iterator gsi;
2066 gsi = gsi_start (gimple_body (current_function_decl));
2067 memset (&data, 0, sizeof (data));
2068 remove_useless_stmts_1 (&gsi, &data);
2070 while (data.repeat);
2072 #ifdef ENABLE_TYPES_CHECKING
2073 verify_types_in_gimple_seq (gimple_body (current_function_decl));
2074 #endif
2076 return 0;
2080 struct gimple_opt_pass pass_remove_useless_stmts =
2083 GIMPLE_PASS,
2084 "useless", /* name */
2085 NULL, /* gate */
2086 remove_useless_stmts, /* execute */
2087 NULL, /* sub */
2088 NULL, /* next */
2089 0, /* static_pass_number */
2090 TV_NONE, /* tv_id */
2091 PROP_gimple_any, /* properties_required */
2092 0, /* properties_provided */
2093 0, /* properties_destroyed */
2094 0, /* todo_flags_start */
2095 TODO_dump_func /* todo_flags_finish */
2099 /* Remove PHI nodes associated with basic block BB and all edges out of BB. */
2101 static void
2102 remove_phi_nodes_and_edges_for_unreachable_block (basic_block bb)
2104 /* Since this block is no longer reachable, we can just delete all
2105 of its PHI nodes. */
2106 remove_phi_nodes (bb);
2108 /* Remove edges to BB's successors. */
2109 while (EDGE_COUNT (bb->succs) > 0)
2110 remove_edge (EDGE_SUCC (bb, 0));
2114 /* Remove statements of basic block BB. */
2116 static void
2117 remove_bb (basic_block bb)
2119 gimple_stmt_iterator i;
2120 source_location loc = UNKNOWN_LOCATION;
2122 if (dump_file)
2124 fprintf (dump_file, "Removing basic block %d\n", bb->index);
2125 if (dump_flags & TDF_DETAILS)
2127 dump_bb (bb, dump_file, 0);
2128 fprintf (dump_file, "\n");
2132 if (current_loops)
2134 struct loop *loop = bb->loop_father;
2136 /* If a loop gets removed, clean up the information associated
2137 with it. */
2138 if (loop->latch == bb
2139 || loop->header == bb)
2140 free_numbers_of_iterations_estimates_loop (loop);
2143 /* Remove all the instructions in the block. */
2144 if (bb_seq (bb) != NULL)
2146 for (i = gsi_start_bb (bb); !gsi_end_p (i);)
2148 gimple stmt = gsi_stmt (i);
2149 if (gimple_code (stmt) == GIMPLE_LABEL
2150 && (FORCED_LABEL (gimple_label_label (stmt))
2151 || DECL_NONLOCAL (gimple_label_label (stmt))))
2153 basic_block new_bb;
2154 gimple_stmt_iterator new_gsi;
2156 /* A non-reachable non-local label may still be referenced.
2157 But it no longer needs to carry the extra semantics of
2158 non-locality. */
2159 if (DECL_NONLOCAL (gimple_label_label (stmt)))
2161 DECL_NONLOCAL (gimple_label_label (stmt)) = 0;
2162 FORCED_LABEL (gimple_label_label (stmt)) = 1;
2165 new_bb = bb->prev_bb;
2166 new_gsi = gsi_start_bb (new_bb);
2167 gsi_remove (&i, false);
2168 gsi_insert_before (&new_gsi, stmt, GSI_NEW_STMT);
2170 else
2172 /* Release SSA definitions if we are in SSA. Note that we
2173 may be called when not in SSA. For example,
2174 final_cleanup calls this function via
2175 cleanup_tree_cfg. */
2176 if (gimple_in_ssa_p (cfun))
2177 release_defs (stmt);
2179 gsi_remove (&i, true);
2182 /* Don't warn for removed gotos. Gotos are often removed due to
2183 jump threading, thus resulting in bogus warnings. Not great,
2184 since this way we lose warnings for gotos in the original
2185 program that are indeed unreachable. */
2186 if (gimple_code (stmt) != GIMPLE_GOTO
2187 && gimple_has_location (stmt)
2188 && !loc)
2189 loc = gimple_location (stmt);
2193 /* If requested, give a warning that the first statement in the
2194 block is unreachable. We walk statements backwards in the
2195 loop above, so the last statement we process is the first statement
2196 in the block. */
2197 if (loc > BUILTINS_LOCATION && LOCATION_LINE (loc) > 0)
2198 warning (OPT_Wunreachable_code, "%Hwill never be executed", &loc);
2200 remove_phi_nodes_and_edges_for_unreachable_block (bb);
2201 bb->il.gimple = NULL;
2205 /* Given a basic block BB ending with COND_EXPR or SWITCH_EXPR, and a
2206 predicate VAL, return the edge that will be taken out of the block.
2207 If VAL does not match a unique edge, NULL is returned. */
2209 edge
2210 find_taken_edge (basic_block bb, tree val)
2212 gimple stmt;
2214 stmt = last_stmt (bb);
2216 gcc_assert (stmt);
2217 gcc_assert (is_ctrl_stmt (stmt));
2219 if (val == NULL)
2220 return NULL;
2222 if (!is_gimple_min_invariant (val))
2223 return NULL;
2225 if (gimple_code (stmt) == GIMPLE_COND)
2226 return find_taken_edge_cond_expr (bb, val);
2228 if (gimple_code (stmt) == GIMPLE_SWITCH)
2229 return find_taken_edge_switch_expr (bb, val);
2231 if (computed_goto_p (stmt))
2233 /* Only optimize if the argument is a label, if the argument is
2234 not a label then we can not construct a proper CFG.
2236 It may be the case that we only need to allow the LABEL_REF to
2237 appear inside an ADDR_EXPR, but we also allow the LABEL_REF to
2238 appear inside a LABEL_EXPR just to be safe. */
2239 if ((TREE_CODE (val) == ADDR_EXPR || TREE_CODE (val) == LABEL_EXPR)
2240 && TREE_CODE (TREE_OPERAND (val, 0)) == LABEL_DECL)
2241 return find_taken_edge_computed_goto (bb, TREE_OPERAND (val, 0));
2242 return NULL;
2245 gcc_unreachable ();
2248 /* Given a constant value VAL and the entry block BB to a GOTO_EXPR
2249 statement, determine which of the outgoing edges will be taken out of the
2250 block. Return NULL if either edge may be taken. */
2252 static edge
2253 find_taken_edge_computed_goto (basic_block bb, tree val)
2255 basic_block dest;
2256 edge e = NULL;
2258 dest = label_to_block (val);
2259 if (dest)
2261 e = find_edge (bb, dest);
2262 gcc_assert (e != NULL);
2265 return e;
2268 /* Given a constant value VAL and the entry block BB to a COND_EXPR
2269 statement, determine which of the two edges will be taken out of the
2270 block. Return NULL if either edge may be taken. */
2272 static edge
2273 find_taken_edge_cond_expr (basic_block bb, tree val)
2275 edge true_edge, false_edge;
2277 extract_true_false_edges_from_block (bb, &true_edge, &false_edge);
2279 gcc_assert (TREE_CODE (val) == INTEGER_CST);
2280 return (integer_zerop (val) ? false_edge : true_edge);
2283 /* Given an INTEGER_CST VAL and the entry block BB to a SWITCH_EXPR
2284 statement, determine which edge will be taken out of the block. Return
2285 NULL if any edge may be taken. */
2287 static edge
2288 find_taken_edge_switch_expr (basic_block bb, tree val)
2290 basic_block dest_bb;
2291 edge e;
2292 gimple switch_stmt;
2293 tree taken_case;
2295 switch_stmt = last_stmt (bb);
2296 taken_case = find_case_label_for_value (switch_stmt, val);
2297 dest_bb = label_to_block (CASE_LABEL (taken_case));
2299 e = find_edge (bb, dest_bb);
2300 gcc_assert (e);
2301 return e;
2305 /* Return the CASE_LABEL_EXPR that SWITCH_STMT will take for VAL.
2306 We can make optimal use here of the fact that the case labels are
2307 sorted: We can do a binary search for a case matching VAL. */
2309 static tree
2310 find_case_label_for_value (gimple switch_stmt, tree val)
2312 size_t low, high, n = gimple_switch_num_labels (switch_stmt);
2313 tree default_case = gimple_switch_default_label (switch_stmt);
2315 for (low = 0, high = n; high - low > 1; )
2317 size_t i = (high + low) / 2;
2318 tree t = gimple_switch_label (switch_stmt, i);
2319 int cmp;
2321 /* Cache the result of comparing CASE_LOW and val. */
2322 cmp = tree_int_cst_compare (CASE_LOW (t), val);
2324 if (cmp > 0)
2325 high = i;
2326 else
2327 low = i;
2329 if (CASE_HIGH (t) == NULL)
2331 /* A singe-valued case label. */
2332 if (cmp == 0)
2333 return t;
2335 else
2337 /* A case range. We can only handle integer ranges. */
2338 if (cmp <= 0 && tree_int_cst_compare (CASE_HIGH (t), val) >= 0)
2339 return t;
2343 return default_case;
2347 /* Dump a basic block on stderr. */
2349 void
2350 gimple_debug_bb (basic_block bb)
2352 gimple_dump_bb (bb, stderr, 0, TDF_VOPS|TDF_MEMSYMS);
2356 /* Dump basic block with index N on stderr. */
2358 basic_block
2359 gimple_debug_bb_n (int n)
2361 gimple_debug_bb (BASIC_BLOCK (n));
2362 return BASIC_BLOCK (n);
2366 /* Dump the CFG on stderr.
2368 FLAGS are the same used by the tree dumping functions
2369 (see TDF_* in tree-pass.h). */
2371 void
2372 gimple_debug_cfg (int flags)
2374 gimple_dump_cfg (stderr, flags);
2378 /* Dump the program showing basic block boundaries on the given FILE.
2380 FLAGS are the same used by the tree dumping functions (see TDF_* in
2381 tree.h). */
2383 void
2384 gimple_dump_cfg (FILE *file, int flags)
2386 if (flags & TDF_DETAILS)
2388 const char *funcname
2389 = lang_hooks.decl_printable_name (current_function_decl, 2);
2391 fputc ('\n', file);
2392 fprintf (file, ";; Function %s\n\n", funcname);
2393 fprintf (file, ";; \n%d basic blocks, %d edges, last basic block %d.\n\n",
2394 n_basic_blocks, n_edges, last_basic_block);
2396 brief_dump_cfg (file);
2397 fprintf (file, "\n");
2400 if (flags & TDF_STATS)
2401 dump_cfg_stats (file);
2403 dump_function_to_file (current_function_decl, file, flags | TDF_BLOCKS);
2407 /* Dump CFG statistics on FILE. */
2409 void
2410 dump_cfg_stats (FILE *file)
2412 static long max_num_merged_labels = 0;
2413 unsigned long size, total = 0;
2414 long num_edges;
2415 basic_block bb;
2416 const char * const fmt_str = "%-30s%-13s%12s\n";
2417 const char * const fmt_str_1 = "%-30s%13d%11lu%c\n";
2418 const char * const fmt_str_2 = "%-30s%13ld%11lu%c\n";
2419 const char * const fmt_str_3 = "%-43s%11lu%c\n";
2420 const char *funcname
2421 = lang_hooks.decl_printable_name (current_function_decl, 2);
2424 fprintf (file, "\nCFG Statistics for %s\n\n", funcname);
2426 fprintf (file, "---------------------------------------------------------\n");
2427 fprintf (file, fmt_str, "", " Number of ", "Memory");
2428 fprintf (file, fmt_str, "", " instances ", "used ");
2429 fprintf (file, "---------------------------------------------------------\n");
2431 size = n_basic_blocks * sizeof (struct basic_block_def);
2432 total += size;
2433 fprintf (file, fmt_str_1, "Basic blocks", n_basic_blocks,
2434 SCALE (size), LABEL (size));
2436 num_edges = 0;
2437 FOR_EACH_BB (bb)
2438 num_edges += EDGE_COUNT (bb->succs);
2439 size = num_edges * sizeof (struct edge_def);
2440 total += size;
2441 fprintf (file, fmt_str_2, "Edges", num_edges, SCALE (size), LABEL (size));
2443 fprintf (file, "---------------------------------------------------------\n");
2444 fprintf (file, fmt_str_3, "Total memory used by CFG data", SCALE (total),
2445 LABEL (total));
2446 fprintf (file, "---------------------------------------------------------\n");
2447 fprintf (file, "\n");
2449 if (cfg_stats.num_merged_labels > max_num_merged_labels)
2450 max_num_merged_labels = cfg_stats.num_merged_labels;
2452 fprintf (file, "Coalesced label blocks: %ld (Max so far: %ld)\n",
2453 cfg_stats.num_merged_labels, max_num_merged_labels);
2455 fprintf (file, "\n");
2459 /* Dump CFG statistics on stderr. Keep extern so that it's always
2460 linked in the final executable. */
2462 void
2463 debug_cfg_stats (void)
2465 dump_cfg_stats (stderr);
2469 /* Dump the flowgraph to a .vcg FILE. */
2471 static void
2472 gimple_cfg2vcg (FILE *file)
2474 edge e;
2475 edge_iterator ei;
2476 basic_block bb;
2477 const char *funcname
2478 = lang_hooks.decl_printable_name (current_function_decl, 2);
2480 /* Write the file header. */
2481 fprintf (file, "graph: { title: \"%s\"\n", funcname);
2482 fprintf (file, "node: { title: \"ENTRY\" label: \"ENTRY\" }\n");
2483 fprintf (file, "node: { title: \"EXIT\" label: \"EXIT\" }\n");
2485 /* Write blocks and edges. */
2486 FOR_EACH_EDGE (e, ei, ENTRY_BLOCK_PTR->succs)
2488 fprintf (file, "edge: { sourcename: \"ENTRY\" targetname: \"%d\"",
2489 e->dest->index);
2491 if (e->flags & EDGE_FAKE)
2492 fprintf (file, " linestyle: dotted priority: 10");
2493 else
2494 fprintf (file, " linestyle: solid priority: 100");
2496 fprintf (file, " }\n");
2498 fputc ('\n', file);
2500 FOR_EACH_BB (bb)
2502 enum gimple_code head_code, end_code;
2503 const char *head_name, *end_name;
2504 int head_line = 0;
2505 int end_line = 0;
2506 gimple first = first_stmt (bb);
2507 gimple last = last_stmt (bb);
2509 if (first)
2511 head_code = gimple_code (first);
2512 head_name = gimple_code_name[head_code];
2513 head_line = get_lineno (first);
2515 else
2516 head_name = "no-statement";
2518 if (last)
2520 end_code = gimple_code (last);
2521 end_name = gimple_code_name[end_code];
2522 end_line = get_lineno (last);
2524 else
2525 end_name = "no-statement";
2527 fprintf (file, "node: { title: \"%d\" label: \"#%d\\n%s (%d)\\n%s (%d)\"}\n",
2528 bb->index, bb->index, head_name, head_line, end_name,
2529 end_line);
2531 FOR_EACH_EDGE (e, ei, bb->succs)
2533 if (e->dest == EXIT_BLOCK_PTR)
2534 fprintf (file, "edge: { sourcename: \"%d\" targetname: \"EXIT\"", bb->index);
2535 else
2536 fprintf (file, "edge: { sourcename: \"%d\" targetname: \"%d\"", bb->index, e->dest->index);
2538 if (e->flags & EDGE_FAKE)
2539 fprintf (file, " priority: 10 linestyle: dotted");
2540 else
2541 fprintf (file, " priority: 100 linestyle: solid");
2543 fprintf (file, " }\n");
2546 if (bb->next_bb != EXIT_BLOCK_PTR)
2547 fputc ('\n', file);
2550 fputs ("}\n\n", file);
2555 /*---------------------------------------------------------------------------
2556 Miscellaneous helpers
2557 ---------------------------------------------------------------------------*/
2559 /* Return true if T represents a stmt that always transfers control. */
2561 bool
2562 is_ctrl_stmt (gimple t)
2564 return gimple_code (t) == GIMPLE_COND
2565 || gimple_code (t) == GIMPLE_SWITCH
2566 || gimple_code (t) == GIMPLE_GOTO
2567 || gimple_code (t) == GIMPLE_RETURN
2568 || gimple_code (t) == GIMPLE_RESX;
2572 /* Return true if T is a statement that may alter the flow of control
2573 (e.g., a call to a non-returning function). */
2575 bool
2576 is_ctrl_altering_stmt (gimple t)
2578 gcc_assert (t);
2580 if (is_gimple_call (t))
2582 int flags = gimple_call_flags (t);
2584 /* A non-pure/const call alters flow control if the current
2585 function has nonlocal labels. */
2586 if (!(flags & (ECF_CONST | ECF_PURE))
2587 && cfun->has_nonlocal_label)
2588 return true;
2590 /* A call also alters control flow if it does not return. */
2591 if (gimple_call_flags (t) & ECF_NORETURN)
2592 return true;
2595 /* OpenMP directives alter control flow. */
2596 if (is_gimple_omp (t))
2597 return true;
2599 /* If a statement can throw, it alters control flow. */
2600 return stmt_can_throw_internal (t);
2604 /* Return true if T is a simple local goto. */
2606 bool
2607 simple_goto_p (gimple t)
2609 return (gimple_code (t) == GIMPLE_GOTO
2610 && TREE_CODE (gimple_goto_dest (t)) == LABEL_DECL);
2614 /* Return true if T can make an abnormal transfer of control flow.
2615 Transfers of control flow associated with EH are excluded. */
2617 bool
2618 stmt_can_make_abnormal_goto (gimple t)
2620 if (computed_goto_p (t))
2621 return true;
2622 if (is_gimple_call (t))
2623 return gimple_has_side_effects (t) && cfun->has_nonlocal_label;
2624 return false;
2628 /* Return true if STMT should start a new basic block. PREV_STMT is
2629 the statement preceding STMT. It is used when STMT is a label or a
2630 case label. Labels should only start a new basic block if their
2631 previous statement wasn't a label. Otherwise, sequence of labels
2632 would generate unnecessary basic blocks that only contain a single
2633 label. */
2635 static inline bool
2636 stmt_starts_bb_p (gimple stmt, gimple prev_stmt)
2638 if (stmt == NULL)
2639 return false;
2641 /* Labels start a new basic block only if the preceding statement
2642 wasn't a label of the same type. This prevents the creation of
2643 consecutive blocks that have nothing but a single label. */
2644 if (gimple_code (stmt) == GIMPLE_LABEL)
2646 /* Nonlocal and computed GOTO targets always start a new block. */
2647 if (DECL_NONLOCAL (gimple_label_label (stmt))
2648 || FORCED_LABEL (gimple_label_label (stmt)))
2649 return true;
2651 if (prev_stmt && gimple_code (prev_stmt) == GIMPLE_LABEL)
2653 if (DECL_NONLOCAL (gimple_label_label (prev_stmt)))
2654 return true;
2656 cfg_stats.num_merged_labels++;
2657 return false;
2659 else
2660 return true;
2663 return false;
2667 /* Return true if T should end a basic block. */
2669 bool
2670 stmt_ends_bb_p (gimple t)
2672 return is_ctrl_stmt (t) || is_ctrl_altering_stmt (t);
2675 /* Remove block annotations and other data structures. */
2677 void
2678 delete_tree_cfg_annotations (void)
2680 label_to_block_map = NULL;
2684 /* Return the first statement in basic block BB. */
2686 gimple
2687 first_stmt (basic_block bb)
2689 gimple_stmt_iterator i = gsi_start_bb (bb);
2690 return !gsi_end_p (i) ? gsi_stmt (i) : NULL;
2693 /* Return the last statement in basic block BB. */
2695 gimple
2696 last_stmt (basic_block bb)
2698 gimple_stmt_iterator b = gsi_last_bb (bb);
2699 return !gsi_end_p (b) ? gsi_stmt (b) : NULL;
2702 /* Return the last statement of an otherwise empty block. Return NULL
2703 if the block is totally empty, or if it contains more than one
2704 statement. */
2706 gimple
2707 last_and_only_stmt (basic_block bb)
2709 gimple_stmt_iterator i = gsi_last_bb (bb);
2710 gimple last, prev;
2712 if (gsi_end_p (i))
2713 return NULL;
2715 last = gsi_stmt (i);
2716 gsi_prev (&i);
2717 if (gsi_end_p (i))
2718 return last;
2720 /* Empty statements should no longer appear in the instruction stream.
2721 Everything that might have appeared before should be deleted by
2722 remove_useless_stmts, and the optimizers should just gsi_remove
2723 instead of smashing with build_empty_stmt.
2725 Thus the only thing that should appear here in a block containing
2726 one executable statement is a label. */
2727 prev = gsi_stmt (i);
2728 if (gimple_code (prev) == GIMPLE_LABEL)
2729 return last;
2730 else
2731 return NULL;
2734 /* Reinstall those PHI arguments queued in OLD_EDGE to NEW_EDGE. */
2736 static void
2737 reinstall_phi_args (edge new_edge, edge old_edge)
2739 edge_var_map_vector v;
2740 edge_var_map *vm;
2741 int i;
2742 gimple_stmt_iterator phis;
2744 v = redirect_edge_var_map_vector (old_edge);
2745 if (!v)
2746 return;
2748 for (i = 0, phis = gsi_start_phis (new_edge->dest);
2749 VEC_iterate (edge_var_map, v, i, vm) && !gsi_end_p (phis);
2750 i++, gsi_next (&phis))
2752 gimple phi = gsi_stmt (phis);
2753 tree result = redirect_edge_var_map_result (vm);
2754 tree arg = redirect_edge_var_map_def (vm);
2756 gcc_assert (result == gimple_phi_result (phi));
2758 add_phi_arg (phi, arg, new_edge);
2761 redirect_edge_var_map_clear (old_edge);
2764 /* Returns the basic block after which the new basic block created
2765 by splitting edge EDGE_IN should be placed. Tries to keep the new block
2766 near its "logical" location. This is of most help to humans looking
2767 at debugging dumps. */
2769 static basic_block
2770 split_edge_bb_loc (edge edge_in)
2772 basic_block dest = edge_in->dest;
2774 if (dest->prev_bb && find_edge (dest->prev_bb, dest))
2775 return edge_in->src;
2776 else
2777 return dest->prev_bb;
2780 /* Split a (typically critical) edge EDGE_IN. Return the new block.
2781 Abort on abnormal edges. */
2783 static basic_block
2784 gimple_split_edge (edge edge_in)
2786 basic_block new_bb, after_bb, dest;
2787 edge new_edge, e;
2789 /* Abnormal edges cannot be split. */
2790 gcc_assert (!(edge_in->flags & EDGE_ABNORMAL));
2792 dest = edge_in->dest;
2794 after_bb = split_edge_bb_loc (edge_in);
2796 new_bb = create_empty_bb (after_bb);
2797 new_bb->frequency = EDGE_FREQUENCY (edge_in);
2798 new_bb->count = edge_in->count;
2799 new_edge = make_edge (new_bb, dest, EDGE_FALLTHRU);
2800 new_edge->probability = REG_BR_PROB_BASE;
2801 new_edge->count = edge_in->count;
2803 e = redirect_edge_and_branch (edge_in, new_bb);
2804 gcc_assert (e == edge_in);
2805 reinstall_phi_args (new_edge, e);
2807 return new_bb;
2810 /* Callback for walk_tree, check that all elements with address taken are
2811 properly noticed as such. The DATA is an int* that is 1 if TP was seen
2812 inside a PHI node. */
2814 static tree
2815 verify_expr (tree *tp, int *walk_subtrees, void *data ATTRIBUTE_UNUSED)
2817 tree t = *tp, x;
2819 if (TYPE_P (t))
2820 *walk_subtrees = 0;
2822 /* Check operand N for being valid GIMPLE and give error MSG if not. */
2823 #define CHECK_OP(N, MSG) \
2824 do { if (!is_gimple_val (TREE_OPERAND (t, N))) \
2825 { error (MSG); return TREE_OPERAND (t, N); }} while (0)
2827 switch (TREE_CODE (t))
2829 case SSA_NAME:
2830 if (SSA_NAME_IN_FREE_LIST (t))
2832 error ("SSA name in freelist but still referenced");
2833 return *tp;
2835 break;
2837 case INDIRECT_REF:
2838 x = TREE_OPERAND (t, 0);
2839 if (!is_gimple_reg (x) && !is_gimple_min_invariant (x))
2841 error ("Indirect reference's operand is not a register or a constant.");
2842 return x;
2844 break;
2846 case ASSERT_EXPR:
2847 x = fold (ASSERT_EXPR_COND (t));
2848 if (x == boolean_false_node)
2850 error ("ASSERT_EXPR with an always-false condition");
2851 return *tp;
2853 break;
2855 case MODIFY_EXPR:
2856 error ("MODIFY_EXPR not expected while having tuples.");
2857 return *tp;
2859 case ADDR_EXPR:
2861 bool old_constant;
2862 bool old_side_effects;
2863 bool new_constant;
2864 bool new_side_effects;
2866 gcc_assert (is_gimple_address (t));
2868 old_constant = TREE_CONSTANT (t);
2869 old_side_effects = TREE_SIDE_EFFECTS (t);
2871 recompute_tree_invariant_for_addr_expr (t);
2872 new_side_effects = TREE_SIDE_EFFECTS (t);
2873 new_constant = TREE_CONSTANT (t);
2875 if (old_constant != new_constant)
2877 error ("constant not recomputed when ADDR_EXPR changed");
2878 return t;
2880 if (old_side_effects != new_side_effects)
2882 error ("side effects not recomputed when ADDR_EXPR changed");
2883 return t;
2886 /* Skip any references (they will be checked when we recurse down the
2887 tree) and ensure that any variable used as a prefix is marked
2888 addressable. */
2889 for (x = TREE_OPERAND (t, 0);
2890 handled_component_p (x);
2891 x = TREE_OPERAND (x, 0))
2894 if (!(TREE_CODE (x) == VAR_DECL
2895 || TREE_CODE (x) == PARM_DECL
2896 || TREE_CODE (x) == RESULT_DECL))
2897 return NULL;
2898 if (!TREE_ADDRESSABLE (x))
2900 error ("address taken, but ADDRESSABLE bit not set");
2901 return x;
2903 if (DECL_GIMPLE_REG_P (x))
2905 error ("DECL_GIMPLE_REG_P set on a variable with address taken");
2906 return x;
2909 break;
2912 case COND_EXPR:
2913 x = COND_EXPR_COND (t);
2914 if (!INTEGRAL_TYPE_P (TREE_TYPE (x)))
2916 error ("non-integral used in condition");
2917 return x;
2919 if (!is_gimple_condexpr (x))
2921 error ("invalid conditional operand");
2922 return x;
2924 break;
2926 case NON_LVALUE_EXPR:
2927 gcc_unreachable ();
2929 CASE_CONVERT:
2930 case FIX_TRUNC_EXPR:
2931 case FLOAT_EXPR:
2932 case NEGATE_EXPR:
2933 case ABS_EXPR:
2934 case BIT_NOT_EXPR:
2935 case TRUTH_NOT_EXPR:
2936 CHECK_OP (0, "invalid operand to unary operator");
2937 break;
2939 case REALPART_EXPR:
2940 case IMAGPART_EXPR:
2941 case COMPONENT_REF:
2942 case ARRAY_REF:
2943 case ARRAY_RANGE_REF:
2944 case BIT_FIELD_REF:
2945 case VIEW_CONVERT_EXPR:
2946 /* We have a nest of references. Verify that each of the operands
2947 that determine where to reference is either a constant or a variable,
2948 verify that the base is valid, and then show we've already checked
2949 the subtrees. */
2950 while (handled_component_p (t))
2952 if (TREE_CODE (t) == COMPONENT_REF && TREE_OPERAND (t, 2))
2953 CHECK_OP (2, "invalid COMPONENT_REF offset operator");
2954 else if (TREE_CODE (t) == ARRAY_REF
2955 || TREE_CODE (t) == ARRAY_RANGE_REF)
2957 CHECK_OP (1, "invalid array index");
2958 if (TREE_OPERAND (t, 2))
2959 CHECK_OP (2, "invalid array lower bound");
2960 if (TREE_OPERAND (t, 3))
2961 CHECK_OP (3, "invalid array stride");
2963 else if (TREE_CODE (t) == BIT_FIELD_REF)
2965 if (!host_integerp (TREE_OPERAND (t, 1), 1)
2966 || !host_integerp (TREE_OPERAND (t, 2), 1))
2968 error ("invalid position or size operand to BIT_FIELD_REF");
2969 return t;
2971 else if (INTEGRAL_TYPE_P (TREE_TYPE (t))
2972 && (TYPE_PRECISION (TREE_TYPE (t))
2973 != TREE_INT_CST_LOW (TREE_OPERAND (t, 1))))
2975 error ("integral result type precision does not match "
2976 "field size of BIT_FIELD_REF");
2977 return t;
2979 if (!INTEGRAL_TYPE_P (TREE_TYPE (t))
2980 && (GET_MODE_PRECISION (TYPE_MODE (TREE_TYPE (t)))
2981 != TREE_INT_CST_LOW (TREE_OPERAND (t, 1))))
2983 error ("mode precision of non-integral result does not "
2984 "match field size of BIT_FIELD_REF");
2985 return t;
2989 t = TREE_OPERAND (t, 0);
2992 if (!is_gimple_min_invariant (t) && !is_gimple_lvalue (t))
2994 error ("invalid reference prefix");
2995 return t;
2997 *walk_subtrees = 0;
2998 break;
2999 case PLUS_EXPR:
3000 case MINUS_EXPR:
3001 /* PLUS_EXPR and MINUS_EXPR don't work on pointers, they should be done using
3002 POINTER_PLUS_EXPR. */
3003 if (POINTER_TYPE_P (TREE_TYPE (t)))
3005 error ("invalid operand to plus/minus, type is a pointer");
3006 return t;
3008 CHECK_OP (0, "invalid operand to binary operator");
3009 CHECK_OP (1, "invalid operand to binary operator");
3010 break;
3012 case POINTER_PLUS_EXPR:
3013 /* Check to make sure the first operand is a pointer or reference type. */
3014 if (!POINTER_TYPE_P (TREE_TYPE (TREE_OPERAND (t, 0))))
3016 error ("invalid operand to pointer plus, first operand is not a pointer");
3017 return t;
3019 /* Check to make sure the second operand is an integer with type of
3020 sizetype. */
3021 if (!useless_type_conversion_p (sizetype,
3022 TREE_TYPE (TREE_OPERAND (t, 1))))
3024 error ("invalid operand to pointer plus, second operand is not an "
3025 "integer with type of sizetype.");
3026 return t;
3028 /* FALLTHROUGH */
3029 case LT_EXPR:
3030 case LE_EXPR:
3031 case GT_EXPR:
3032 case GE_EXPR:
3033 case EQ_EXPR:
3034 case NE_EXPR:
3035 case UNORDERED_EXPR:
3036 case ORDERED_EXPR:
3037 case UNLT_EXPR:
3038 case UNLE_EXPR:
3039 case UNGT_EXPR:
3040 case UNGE_EXPR:
3041 case UNEQ_EXPR:
3042 case LTGT_EXPR:
3043 case MULT_EXPR:
3044 case TRUNC_DIV_EXPR:
3045 case CEIL_DIV_EXPR:
3046 case FLOOR_DIV_EXPR:
3047 case ROUND_DIV_EXPR:
3048 case TRUNC_MOD_EXPR:
3049 case CEIL_MOD_EXPR:
3050 case FLOOR_MOD_EXPR:
3051 case ROUND_MOD_EXPR:
3052 case RDIV_EXPR:
3053 case EXACT_DIV_EXPR:
3054 case MIN_EXPR:
3055 case MAX_EXPR:
3056 case LSHIFT_EXPR:
3057 case RSHIFT_EXPR:
3058 case LROTATE_EXPR:
3059 case RROTATE_EXPR:
3060 case BIT_IOR_EXPR:
3061 case BIT_XOR_EXPR:
3062 case BIT_AND_EXPR:
3063 CHECK_OP (0, "invalid operand to binary operator");
3064 CHECK_OP (1, "invalid operand to binary operator");
3065 break;
3067 case CONSTRUCTOR:
3068 if (TREE_CONSTANT (t) && TREE_CODE (TREE_TYPE (t)) == VECTOR_TYPE)
3069 *walk_subtrees = 0;
3070 break;
3072 default:
3073 break;
3075 return NULL;
3077 #undef CHECK_OP
3081 /* Verify if EXPR is either a GIMPLE ID or a GIMPLE indirect reference.
3082 Returns true if there is an error, otherwise false. */
3084 static bool
3085 verify_types_in_gimple_min_lval (tree expr)
3087 tree op;
3089 if (is_gimple_id (expr))
3090 return false;
3092 if (!INDIRECT_REF_P (expr)
3093 && TREE_CODE (expr) != TARGET_MEM_REF)
3095 error ("invalid expression for min lvalue");
3096 return true;
3099 /* TARGET_MEM_REFs are strange beasts. */
3100 if (TREE_CODE (expr) == TARGET_MEM_REF)
3101 return false;
3103 op = TREE_OPERAND (expr, 0);
3104 if (!is_gimple_val (op))
3106 error ("invalid operand in indirect reference");
3107 debug_generic_stmt (op);
3108 return true;
3110 if (!useless_type_conversion_p (TREE_TYPE (expr),
3111 TREE_TYPE (TREE_TYPE (op))))
3113 error ("type mismatch in indirect reference");
3114 debug_generic_stmt (TREE_TYPE (expr));
3115 debug_generic_stmt (TREE_TYPE (TREE_TYPE (op)));
3116 return true;
3119 return false;
3122 /* Verify if EXPR is a valid GIMPLE reference expression. If
3123 REQUIRE_LVALUE is true verifies it is an lvalue. Returns true
3124 if there is an error, otherwise false. */
3126 static bool
3127 verify_types_in_gimple_reference (tree expr, bool require_lvalue)
3129 while (handled_component_p (expr))
3131 tree op = TREE_OPERAND (expr, 0);
3133 if (TREE_CODE (expr) == ARRAY_REF
3134 || TREE_CODE (expr) == ARRAY_RANGE_REF)
3136 if (!is_gimple_val (TREE_OPERAND (expr, 1))
3137 || (TREE_OPERAND (expr, 2)
3138 && !is_gimple_val (TREE_OPERAND (expr, 2)))
3139 || (TREE_OPERAND (expr, 3)
3140 && !is_gimple_val (TREE_OPERAND (expr, 3))))
3142 error ("invalid operands to array reference");
3143 debug_generic_stmt (expr);
3144 return true;
3148 /* Verify if the reference array element types are compatible. */
3149 if (TREE_CODE (expr) == ARRAY_REF
3150 && !useless_type_conversion_p (TREE_TYPE (expr),
3151 TREE_TYPE (TREE_TYPE (op))))
3153 error ("type mismatch in array reference");
3154 debug_generic_stmt (TREE_TYPE (expr));
3155 debug_generic_stmt (TREE_TYPE (TREE_TYPE (op)));
3156 return true;
3158 if (TREE_CODE (expr) == ARRAY_RANGE_REF
3159 && !useless_type_conversion_p (TREE_TYPE (TREE_TYPE (expr)),
3160 TREE_TYPE (TREE_TYPE (op))))
3162 error ("type mismatch in array range reference");
3163 debug_generic_stmt (TREE_TYPE (TREE_TYPE (expr)));
3164 debug_generic_stmt (TREE_TYPE (TREE_TYPE (op)));
3165 return true;
3168 if ((TREE_CODE (expr) == REALPART_EXPR
3169 || TREE_CODE (expr) == IMAGPART_EXPR)
3170 && !useless_type_conversion_p (TREE_TYPE (expr),
3171 TREE_TYPE (TREE_TYPE (op))))
3173 error ("type mismatch in real/imagpart reference");
3174 debug_generic_stmt (TREE_TYPE (expr));
3175 debug_generic_stmt (TREE_TYPE (TREE_TYPE (op)));
3176 return true;
3179 if (TREE_CODE (expr) == COMPONENT_REF
3180 && !useless_type_conversion_p (TREE_TYPE (expr),
3181 TREE_TYPE (TREE_OPERAND (expr, 1))))
3183 error ("type mismatch in component reference");
3184 debug_generic_stmt (TREE_TYPE (expr));
3185 debug_generic_stmt (TREE_TYPE (TREE_OPERAND (expr, 1)));
3186 return true;
3189 /* For VIEW_CONVERT_EXPRs which are allowed here, too, there
3190 is nothing to verify. Gross mismatches at most invoke
3191 undefined behavior. */
3192 if (TREE_CODE (expr) == VIEW_CONVERT_EXPR
3193 && !handled_component_p (op))
3194 return false;
3196 expr = op;
3199 return ((require_lvalue || !is_gimple_min_invariant (expr))
3200 && verify_types_in_gimple_min_lval (expr));
3203 /* Returns true if there is one pointer type in TYPE_POINTER_TO (SRC_OBJ)
3204 list of pointer-to types that is trivially convertible to DEST. */
3206 static bool
3207 one_pointer_to_useless_type_conversion_p (tree dest, tree src_obj)
3209 tree src;
3211 if (!TYPE_POINTER_TO (src_obj))
3212 return true;
3214 for (src = TYPE_POINTER_TO (src_obj); src; src = TYPE_NEXT_PTR_TO (src))
3215 if (useless_type_conversion_p (dest, src))
3216 return true;
3218 return false;
3221 /* Return true if TYPE1 is a fixed-point type and if conversions to and
3222 from TYPE2 can be handled by FIXED_CONVERT_EXPR. */
3224 static bool
3225 valid_fixed_convert_types_p (tree type1, tree type2)
3227 return (FIXED_POINT_TYPE_P (type1)
3228 && (INTEGRAL_TYPE_P (type2)
3229 || SCALAR_FLOAT_TYPE_P (type2)
3230 || FIXED_POINT_TYPE_P (type2)));
3233 /* Verify the contents of a GIMPLE_CALL STMT. Returns true when there
3234 is a problem, otherwise false. */
3236 static bool
3237 verify_gimple_call (gimple stmt)
3239 tree fn = gimple_call_fn (stmt);
3240 tree fntype;
3242 if (!POINTER_TYPE_P (TREE_TYPE (fn))
3243 || (TREE_CODE (TREE_TYPE (TREE_TYPE (fn))) != FUNCTION_TYPE
3244 && TREE_CODE (TREE_TYPE (TREE_TYPE (fn))) != METHOD_TYPE))
3246 error ("non-function in gimple call");
3247 return true;
3250 if (gimple_call_lhs (stmt)
3251 && !is_gimple_lvalue (gimple_call_lhs (stmt)))
3253 error ("invalid LHS in gimple call");
3254 return true;
3257 fntype = TREE_TYPE (TREE_TYPE (fn));
3258 if (gimple_call_lhs (stmt)
3259 && !useless_type_conversion_p (TREE_TYPE (gimple_call_lhs (stmt)),
3260 TREE_TYPE (fntype))
3261 /* ??? At least C++ misses conversions at assignments from
3262 void * call results.
3263 ??? Java is completely off. Especially with functions
3264 returning java.lang.Object.
3265 For now simply allow arbitrary pointer type conversions. */
3266 && !(POINTER_TYPE_P (TREE_TYPE (gimple_call_lhs (stmt)))
3267 && POINTER_TYPE_P (TREE_TYPE (fntype))))
3269 error ("invalid conversion in gimple call");
3270 debug_generic_stmt (TREE_TYPE (gimple_call_lhs (stmt)));
3271 debug_generic_stmt (TREE_TYPE (fntype));
3272 return true;
3275 /* ??? The C frontend passes unpromoted arguments in case it
3276 didn't see a function declaration before the call. So for now
3277 leave the call arguments unverified. Once we gimplify
3278 unit-at-a-time we have a chance to fix this. */
3280 return false;
3283 /* Verifies the gimple comparison with the result type TYPE and
3284 the operands OP0 and OP1. */
3286 static bool
3287 verify_gimple_comparison (tree type, tree op0, tree op1)
3289 tree op0_type = TREE_TYPE (op0);
3290 tree op1_type = TREE_TYPE (op1);
3292 if (!is_gimple_val (op0) || !is_gimple_val (op1))
3294 error ("invalid operands in gimple comparison");
3295 return true;
3298 /* For comparisons we do not have the operations type as the
3299 effective type the comparison is carried out in. Instead
3300 we require that either the first operand is trivially
3301 convertible into the second, or the other way around.
3302 The resulting type of a comparison may be any integral type.
3303 Because we special-case pointers to void we allow
3304 comparisons of pointers with the same mode as well. */
3305 if ((!useless_type_conversion_p (op0_type, op1_type)
3306 && !useless_type_conversion_p (op1_type, op0_type)
3307 && (!POINTER_TYPE_P (op0_type)
3308 || !POINTER_TYPE_P (op1_type)
3309 || TYPE_MODE (op0_type) != TYPE_MODE (op1_type)))
3310 || !INTEGRAL_TYPE_P (type))
3312 error ("type mismatch in comparison expression");
3313 debug_generic_expr (type);
3314 debug_generic_expr (op0_type);
3315 debug_generic_expr (op1_type);
3316 return true;
3319 return false;
3322 /* Verify a gimple assignment statement STMT with an unary rhs.
3323 Returns true if anything is wrong. */
3325 static bool
3326 verify_gimple_assign_unary (gimple stmt)
3328 enum tree_code rhs_code = gimple_assign_rhs_code (stmt);
3329 tree lhs = gimple_assign_lhs (stmt);
3330 tree lhs_type = TREE_TYPE (lhs);
3331 tree rhs1 = gimple_assign_rhs1 (stmt);
3332 tree rhs1_type = TREE_TYPE (rhs1);
3334 if (!is_gimple_reg (lhs)
3335 && !(optimize == 0
3336 && TREE_CODE (lhs_type) == COMPLEX_TYPE))
3338 error ("non-register as LHS of unary operation");
3339 return true;
3342 if (!is_gimple_val (rhs1))
3344 error ("invalid operand in unary operation");
3345 return true;
3348 /* First handle conversions. */
3349 switch (rhs_code)
3351 CASE_CONVERT:
3353 /* Allow conversions between integral types and pointers only if
3354 there is no sign or zero extension involved.
3355 For targets were the precision of sizetype doesn't match that
3356 of pointers we need to allow arbitrary conversions from and
3357 to sizetype. */
3358 if ((POINTER_TYPE_P (lhs_type)
3359 && INTEGRAL_TYPE_P (rhs1_type)
3360 && (TYPE_PRECISION (lhs_type) >= TYPE_PRECISION (rhs1_type)
3361 || rhs1_type == sizetype))
3362 || (POINTER_TYPE_P (rhs1_type)
3363 && INTEGRAL_TYPE_P (lhs_type)
3364 && (TYPE_PRECISION (rhs1_type) >= TYPE_PRECISION (lhs_type)
3365 || lhs_type == sizetype)))
3366 return false;
3368 /* Allow conversion from integer to offset type and vice versa. */
3369 if ((TREE_CODE (lhs_type) == OFFSET_TYPE
3370 && TREE_CODE (rhs1_type) == INTEGER_TYPE)
3371 || (TREE_CODE (lhs_type) == INTEGER_TYPE
3372 && TREE_CODE (rhs1_type) == OFFSET_TYPE))
3373 return false;
3375 /* Otherwise assert we are converting between types of the
3376 same kind. */
3377 if (INTEGRAL_TYPE_P (lhs_type) != INTEGRAL_TYPE_P (rhs1_type))
3379 error ("invalid types in nop conversion");
3380 debug_generic_expr (lhs_type);
3381 debug_generic_expr (rhs1_type);
3382 return true;
3385 return false;
3388 case FIXED_CONVERT_EXPR:
3390 if (!valid_fixed_convert_types_p (lhs_type, rhs1_type)
3391 && !valid_fixed_convert_types_p (rhs1_type, lhs_type))
3393 error ("invalid types in fixed-point conversion");
3394 debug_generic_expr (lhs_type);
3395 debug_generic_expr (rhs1_type);
3396 return true;
3399 return false;
3402 case FLOAT_EXPR:
3404 if (!INTEGRAL_TYPE_P (rhs1_type) || !SCALAR_FLOAT_TYPE_P (lhs_type))
3406 error ("invalid types in conversion to floating point");
3407 debug_generic_expr (lhs_type);
3408 debug_generic_expr (rhs1_type);
3409 return true;
3412 return false;
3415 case FIX_TRUNC_EXPR:
3417 if (!INTEGRAL_TYPE_P (lhs_type) || !SCALAR_FLOAT_TYPE_P (rhs1_type))
3419 error ("invalid types in conversion to integer");
3420 debug_generic_expr (lhs_type);
3421 debug_generic_expr (rhs1_type);
3422 return true;
3425 return false;
3428 case VEC_UNPACK_HI_EXPR:
3429 case VEC_UNPACK_LO_EXPR:
3430 case REDUC_MAX_EXPR:
3431 case REDUC_MIN_EXPR:
3432 case REDUC_PLUS_EXPR:
3433 case VEC_UNPACK_FLOAT_HI_EXPR:
3434 case VEC_UNPACK_FLOAT_LO_EXPR:
3435 /* FIXME. */
3436 return false;
3438 case TRUTH_NOT_EXPR:
3439 case NEGATE_EXPR:
3440 case ABS_EXPR:
3441 case BIT_NOT_EXPR:
3442 case PAREN_EXPR:
3443 case NON_LVALUE_EXPR:
3444 case CONJ_EXPR:
3445 break;
3447 default:
3448 gcc_unreachable ();
3451 /* For the remaining codes assert there is no conversion involved. */
3452 if (!useless_type_conversion_p (lhs_type, rhs1_type))
3454 error ("non-trivial conversion in unary operation");
3455 debug_generic_expr (lhs_type);
3456 debug_generic_expr (rhs1_type);
3457 return true;
3460 return false;
3463 /* Verify a gimple assignment statement STMT with a binary rhs.
3464 Returns true if anything is wrong. */
3466 static bool
3467 verify_gimple_assign_binary (gimple stmt)
3469 enum tree_code rhs_code = gimple_assign_rhs_code (stmt);
3470 tree lhs = gimple_assign_lhs (stmt);
3471 tree lhs_type = TREE_TYPE (lhs);
3472 tree rhs1 = gimple_assign_rhs1 (stmt);
3473 tree rhs1_type = TREE_TYPE (rhs1);
3474 tree rhs2 = gimple_assign_rhs2 (stmt);
3475 tree rhs2_type = TREE_TYPE (rhs2);
3477 if (!is_gimple_reg (lhs)
3478 && !(optimize == 0
3479 && TREE_CODE (lhs_type) == COMPLEX_TYPE))
3481 error ("non-register as LHS of binary operation");
3482 return true;
3485 if (!is_gimple_val (rhs1)
3486 || !is_gimple_val (rhs2))
3488 error ("invalid operands in binary operation");
3489 return true;
3492 /* First handle operations that involve different types. */
3493 switch (rhs_code)
3495 case COMPLEX_EXPR:
3497 if (TREE_CODE (lhs_type) != COMPLEX_TYPE
3498 || !(INTEGRAL_TYPE_P (rhs1_type)
3499 || SCALAR_FLOAT_TYPE_P (rhs1_type))
3500 || !(INTEGRAL_TYPE_P (rhs2_type)
3501 || SCALAR_FLOAT_TYPE_P (rhs2_type)))
3503 error ("type mismatch in complex expression");
3504 debug_generic_expr (lhs_type);
3505 debug_generic_expr (rhs1_type);
3506 debug_generic_expr (rhs2_type);
3507 return true;
3510 return false;
3513 case LSHIFT_EXPR:
3514 case RSHIFT_EXPR:
3515 case LROTATE_EXPR:
3516 case RROTATE_EXPR:
3518 /* Shifts and rotates are ok on integral types, fixed point
3519 types and integer vector types. */
3520 if ((!INTEGRAL_TYPE_P (rhs1_type)
3521 && !FIXED_POINT_TYPE_P (rhs1_type)
3522 && !(TREE_CODE (rhs1_type) == VECTOR_TYPE
3523 && TREE_CODE (TREE_TYPE (rhs1_type)) == INTEGER_TYPE))
3524 || (!INTEGRAL_TYPE_P (rhs2_type)
3525 /* Vector shifts of vectors are also ok. */
3526 && !(TREE_CODE (rhs1_type) == VECTOR_TYPE
3527 && TREE_CODE (TREE_TYPE (rhs1_type)) == INTEGER_TYPE
3528 && TREE_CODE (rhs2_type) == VECTOR_TYPE
3529 && TREE_CODE (TREE_TYPE (rhs2_type)) == INTEGER_TYPE))
3530 || !useless_type_conversion_p (lhs_type, rhs1_type))
3532 error ("type mismatch in shift expression");
3533 debug_generic_expr (lhs_type);
3534 debug_generic_expr (rhs1_type);
3535 debug_generic_expr (rhs2_type);
3536 return true;
3539 return false;
3542 case VEC_LSHIFT_EXPR:
3543 case VEC_RSHIFT_EXPR:
3545 if (TREE_CODE (rhs1_type) != VECTOR_TYPE
3546 || !(INTEGRAL_TYPE_P (TREE_TYPE (rhs1_type))
3547 || FIXED_POINT_TYPE_P (TREE_TYPE (rhs1_type))
3548 || SCALAR_FLOAT_TYPE_P (TREE_TYPE (rhs1_type)))
3549 || (!INTEGRAL_TYPE_P (rhs2_type)
3550 && (TREE_CODE (rhs2_type) != VECTOR_TYPE
3551 || !INTEGRAL_TYPE_P (TREE_TYPE (rhs2_type))))
3552 || !useless_type_conversion_p (lhs_type, rhs1_type))
3554 error ("type mismatch in vector shift expression");
3555 debug_generic_expr (lhs_type);
3556 debug_generic_expr (rhs1_type);
3557 debug_generic_expr (rhs2_type);
3558 return true;
3560 /* For shifting a vector of floating point components we
3561 only allow shifting by a constant multiple of the element size. */
3562 if (SCALAR_FLOAT_TYPE_P (TREE_TYPE (rhs1_type))
3563 && (TREE_CODE (rhs2) != INTEGER_CST
3564 || !div_if_zero_remainder (EXACT_DIV_EXPR, rhs2,
3565 TYPE_SIZE (TREE_TYPE (rhs1_type)))))
3567 error ("non-element sized vector shift of floating point vector");
3568 return true;
3571 return false;
3574 case PLUS_EXPR:
3576 /* We use regular PLUS_EXPR for vectors.
3577 ??? This just makes the checker happy and may not be what is
3578 intended. */
3579 if (TREE_CODE (lhs_type) == VECTOR_TYPE
3580 && POINTER_TYPE_P (TREE_TYPE (lhs_type)))
3582 if (TREE_CODE (rhs1_type) != VECTOR_TYPE
3583 || TREE_CODE (rhs2_type) != VECTOR_TYPE)
3585 error ("invalid non-vector operands to vector valued plus");
3586 return true;
3588 lhs_type = TREE_TYPE (lhs_type);
3589 rhs1_type = TREE_TYPE (rhs1_type);
3590 rhs2_type = TREE_TYPE (rhs2_type);
3591 /* PLUS_EXPR is commutative, so we might end up canonicalizing
3592 the pointer to 2nd place. */
3593 if (POINTER_TYPE_P (rhs2_type))
3595 tree tem = rhs1_type;
3596 rhs1_type = rhs2_type;
3597 rhs2_type = tem;
3599 goto do_pointer_plus_expr_check;
3602 /* Fallthru. */
3603 case MINUS_EXPR:
3605 if (POINTER_TYPE_P (lhs_type)
3606 || POINTER_TYPE_P (rhs1_type)
3607 || POINTER_TYPE_P (rhs2_type))
3609 error ("invalid (pointer) operands to plus/minus");
3610 return true;
3613 /* Continue with generic binary expression handling. */
3614 break;
3617 case POINTER_PLUS_EXPR:
3619 do_pointer_plus_expr_check:
3620 if (!POINTER_TYPE_P (rhs1_type)
3621 || !useless_type_conversion_p (lhs_type, rhs1_type)
3622 || !useless_type_conversion_p (sizetype, rhs2_type))
3624 error ("type mismatch in pointer plus expression");
3625 debug_generic_stmt (lhs_type);
3626 debug_generic_stmt (rhs1_type);
3627 debug_generic_stmt (rhs2_type);
3628 return true;
3631 return false;
3634 case TRUTH_ANDIF_EXPR:
3635 case TRUTH_ORIF_EXPR:
3636 gcc_unreachable ();
3638 case TRUTH_AND_EXPR:
3639 case TRUTH_OR_EXPR:
3640 case TRUTH_XOR_EXPR:
3642 /* We allow any kind of integral typed argument and result. */
3643 if (!INTEGRAL_TYPE_P (rhs1_type)
3644 || !INTEGRAL_TYPE_P (rhs2_type)
3645 || !INTEGRAL_TYPE_P (lhs_type))
3647 error ("type mismatch in binary truth expression");
3648 debug_generic_expr (lhs_type);
3649 debug_generic_expr (rhs1_type);
3650 debug_generic_expr (rhs2_type);
3651 return true;
3654 return false;
3657 case LT_EXPR:
3658 case LE_EXPR:
3659 case GT_EXPR:
3660 case GE_EXPR:
3661 case EQ_EXPR:
3662 case NE_EXPR:
3663 case UNORDERED_EXPR:
3664 case ORDERED_EXPR:
3665 case UNLT_EXPR:
3666 case UNLE_EXPR:
3667 case UNGT_EXPR:
3668 case UNGE_EXPR:
3669 case UNEQ_EXPR:
3670 case LTGT_EXPR:
3671 /* Comparisons are also binary, but the result type is not
3672 connected to the operand types. */
3673 return verify_gimple_comparison (lhs_type, rhs1, rhs2);
3675 case WIDEN_SUM_EXPR:
3676 case WIDEN_MULT_EXPR:
3677 case VEC_WIDEN_MULT_HI_EXPR:
3678 case VEC_WIDEN_MULT_LO_EXPR:
3679 case VEC_PACK_TRUNC_EXPR:
3680 case VEC_PACK_SAT_EXPR:
3681 case VEC_PACK_FIX_TRUNC_EXPR:
3682 case VEC_EXTRACT_EVEN_EXPR:
3683 case VEC_EXTRACT_ODD_EXPR:
3684 case VEC_INTERLEAVE_HIGH_EXPR:
3685 case VEC_INTERLEAVE_LOW_EXPR:
3686 /* FIXME. */
3687 return false;
3689 case MULT_EXPR:
3690 case TRUNC_DIV_EXPR:
3691 case CEIL_DIV_EXPR:
3692 case FLOOR_DIV_EXPR:
3693 case ROUND_DIV_EXPR:
3694 case TRUNC_MOD_EXPR:
3695 case CEIL_MOD_EXPR:
3696 case FLOOR_MOD_EXPR:
3697 case ROUND_MOD_EXPR:
3698 case RDIV_EXPR:
3699 case EXACT_DIV_EXPR:
3700 case MIN_EXPR:
3701 case MAX_EXPR:
3702 case BIT_IOR_EXPR:
3703 case BIT_XOR_EXPR:
3704 case BIT_AND_EXPR:
3705 /* Continue with generic binary expression handling. */
3706 break;
3708 default:
3709 gcc_unreachable ();
3712 if (!useless_type_conversion_p (lhs_type, rhs1_type)
3713 || !useless_type_conversion_p (lhs_type, rhs2_type))
3715 error ("type mismatch in binary expression");
3716 debug_generic_stmt (lhs_type);
3717 debug_generic_stmt (rhs1_type);
3718 debug_generic_stmt (rhs2_type);
3719 return true;
3722 return false;
3725 /* Verify a gimple assignment statement STMT with a single rhs.
3726 Returns true if anything is wrong. */
3728 static bool
3729 verify_gimple_assign_single (gimple stmt)
3731 enum tree_code rhs_code = gimple_assign_rhs_code (stmt);
3732 tree lhs = gimple_assign_lhs (stmt);
3733 tree lhs_type = TREE_TYPE (lhs);
3734 tree rhs1 = gimple_assign_rhs1 (stmt);
3735 tree rhs1_type = TREE_TYPE (rhs1);
3736 bool res = false;
3738 if (!useless_type_conversion_p (lhs_type, rhs1_type))
3740 error ("non-trivial conversion at assignment");
3741 debug_generic_expr (lhs_type);
3742 debug_generic_expr (rhs1_type);
3743 return true;
3746 if (handled_component_p (lhs))
3747 res |= verify_types_in_gimple_reference (lhs, true);
3749 /* Special codes we cannot handle via their class. */
3750 switch (rhs_code)
3752 case ADDR_EXPR:
3754 tree op = TREE_OPERAND (rhs1, 0);
3755 if (!is_gimple_addressable (op))
3757 error ("invalid operand in unary expression");
3758 return true;
3761 if (!one_pointer_to_useless_type_conversion_p (lhs_type,
3762 TREE_TYPE (op)))
3764 error ("type mismatch in address expression");
3765 debug_generic_stmt (lhs_type);
3766 debug_generic_stmt (TYPE_POINTER_TO (TREE_TYPE (op)));
3767 return true;
3770 return verify_types_in_gimple_reference (op, true);
3773 /* tcc_reference */
3774 case COMPONENT_REF:
3775 case BIT_FIELD_REF:
3776 case INDIRECT_REF:
3777 case ALIGN_INDIRECT_REF:
3778 case MISALIGNED_INDIRECT_REF:
3779 case ARRAY_REF:
3780 case ARRAY_RANGE_REF:
3781 case VIEW_CONVERT_EXPR:
3782 case REALPART_EXPR:
3783 case IMAGPART_EXPR:
3784 case TARGET_MEM_REF:
3785 if (!is_gimple_reg (lhs)
3786 && is_gimple_reg_type (TREE_TYPE (lhs)))
3788 error ("invalid rhs for gimple memory store");
3789 debug_generic_stmt (lhs);
3790 debug_generic_stmt (rhs1);
3791 return true;
3793 return res || verify_types_in_gimple_reference (rhs1, false);
3795 /* tcc_constant */
3796 case SSA_NAME:
3797 case INTEGER_CST:
3798 case REAL_CST:
3799 case FIXED_CST:
3800 case COMPLEX_CST:
3801 case VECTOR_CST:
3802 case STRING_CST:
3803 return res;
3805 /* tcc_declaration */
3806 case CONST_DECL:
3807 return res;
3808 case VAR_DECL:
3809 case PARM_DECL:
3810 if (!is_gimple_reg (lhs)
3811 && !is_gimple_reg (rhs1)
3812 && is_gimple_reg_type (TREE_TYPE (lhs)))
3814 error ("invalid rhs for gimple memory store");
3815 debug_generic_stmt (lhs);
3816 debug_generic_stmt (rhs1);
3817 return true;
3819 return res;
3821 case COND_EXPR:
3822 case CONSTRUCTOR:
3823 case OBJ_TYPE_REF:
3824 case ASSERT_EXPR:
3825 case WITH_SIZE_EXPR:
3826 case EXC_PTR_EXPR:
3827 case FILTER_EXPR:
3828 case POLYNOMIAL_CHREC:
3829 case DOT_PROD_EXPR:
3830 case VEC_COND_EXPR:
3831 case REALIGN_LOAD_EXPR:
3832 /* FIXME. */
3833 return res;
3835 default:;
3838 return res;
3841 /* Verify the contents of a GIMPLE_ASSIGN STMT. Returns true when there
3842 is a problem, otherwise false. */
3844 static bool
3845 verify_gimple_assign (gimple stmt)
3847 switch (gimple_assign_rhs_class (stmt))
3849 case GIMPLE_SINGLE_RHS:
3850 return verify_gimple_assign_single (stmt);
3852 case GIMPLE_UNARY_RHS:
3853 return verify_gimple_assign_unary (stmt);
3855 case GIMPLE_BINARY_RHS:
3856 return verify_gimple_assign_binary (stmt);
3858 default:
3859 gcc_unreachable ();
3863 /* Verify the contents of a GIMPLE_RETURN STMT. Returns true when there
3864 is a problem, otherwise false. */
3866 static bool
3867 verify_gimple_return (gimple stmt)
3869 tree op = gimple_return_retval (stmt);
3870 tree restype = TREE_TYPE (TREE_TYPE (cfun->decl));
3872 /* We cannot test for present return values as we do not fix up missing
3873 return values from the original source. */
3874 if (op == NULL)
3875 return false;
3877 if (!is_gimple_val (op)
3878 && TREE_CODE (op) != RESULT_DECL)
3880 error ("invalid operand in return statement");
3881 debug_generic_stmt (op);
3882 return true;
3885 if (!useless_type_conversion_p (restype, TREE_TYPE (op))
3886 /* ??? With C++ we can have the situation that the result
3887 decl is a reference type while the return type is an aggregate. */
3888 && !(TREE_CODE (op) == RESULT_DECL
3889 && TREE_CODE (TREE_TYPE (op)) == REFERENCE_TYPE
3890 && useless_type_conversion_p (restype, TREE_TYPE (TREE_TYPE (op)))))
3892 error ("invalid conversion in return statement");
3893 debug_generic_stmt (restype);
3894 debug_generic_stmt (TREE_TYPE (op));
3895 return true;
3898 return false;
3902 /* Verify the contents of a GIMPLE_GOTO STMT. Returns true when there
3903 is a problem, otherwise false. */
3905 static bool
3906 verify_gimple_goto (gimple stmt)
3908 tree dest = gimple_goto_dest (stmt);
3910 /* ??? We have two canonical forms of direct goto destinations, a
3911 bare LABEL_DECL and an ADDR_EXPR of a LABEL_DECL. */
3912 if (TREE_CODE (dest) != LABEL_DECL
3913 && (!is_gimple_val (dest)
3914 || !POINTER_TYPE_P (TREE_TYPE (dest))))
3916 error ("goto destination is neither a label nor a pointer");
3917 return true;
3920 return false;
3923 /* Verify the contents of a GIMPLE_SWITCH STMT. Returns true when there
3924 is a problem, otherwise false. */
3926 static bool
3927 verify_gimple_switch (gimple stmt)
3929 if (!is_gimple_val (gimple_switch_index (stmt)))
3931 error ("invalid operand to switch statement");
3932 debug_generic_stmt (gimple_switch_index (stmt));
3933 return true;
3936 return false;
3940 /* Verify the contents of a GIMPLE_PHI. Returns true if there is a problem,
3941 and false otherwise. */
3943 static bool
3944 verify_gimple_phi (gimple stmt)
3946 tree type = TREE_TYPE (gimple_phi_result (stmt));
3947 unsigned i;
3949 if (!is_gimple_variable (gimple_phi_result (stmt)))
3951 error ("Invalid PHI result");
3952 return true;
3955 for (i = 0; i < gimple_phi_num_args (stmt); i++)
3957 tree arg = gimple_phi_arg_def (stmt, i);
3958 if ((is_gimple_reg (gimple_phi_result (stmt))
3959 && !is_gimple_val (arg))
3960 || (!is_gimple_reg (gimple_phi_result (stmt))
3961 && !is_gimple_addressable (arg)))
3963 error ("Invalid PHI argument");
3964 debug_generic_stmt (arg);
3965 return true;
3967 if (!useless_type_conversion_p (type, TREE_TYPE (arg)))
3969 error ("Incompatible types in PHI argument %u", i);
3970 debug_generic_stmt (type);
3971 debug_generic_stmt (TREE_TYPE (arg));
3972 return true;
3976 return false;
3980 /* Verify the GIMPLE statement STMT. Returns true if there is an
3981 error, otherwise false. */
3983 static bool
3984 verify_types_in_gimple_stmt (gimple stmt)
3986 if (is_gimple_omp (stmt))
3988 /* OpenMP directives are validated by the FE and never operated
3989 on by the optimizers. Furthermore, GIMPLE_OMP_FOR may contain
3990 non-gimple expressions when the main index variable has had
3991 its address taken. This does not affect the loop itself
3992 because the header of an GIMPLE_OMP_FOR is merely used to determine
3993 how to setup the parallel iteration. */
3994 return false;
3997 switch (gimple_code (stmt))
3999 case GIMPLE_ASSIGN:
4000 return verify_gimple_assign (stmt);
4002 case GIMPLE_LABEL:
4003 return TREE_CODE (gimple_label_label (stmt)) != LABEL_DECL;
4005 case GIMPLE_CALL:
4006 return verify_gimple_call (stmt);
4008 case GIMPLE_COND:
4009 return verify_gimple_comparison (boolean_type_node,
4010 gimple_cond_lhs (stmt),
4011 gimple_cond_rhs (stmt));
4013 case GIMPLE_GOTO:
4014 return verify_gimple_goto (stmt);
4016 case GIMPLE_SWITCH:
4017 return verify_gimple_switch (stmt);
4019 case GIMPLE_RETURN:
4020 return verify_gimple_return (stmt);
4022 case GIMPLE_ASM:
4023 return false;
4025 case GIMPLE_PHI:
4026 return verify_gimple_phi (stmt);
4028 /* Tuples that do not have tree operands. */
4029 case GIMPLE_NOP:
4030 case GIMPLE_RESX:
4031 case GIMPLE_PREDICT:
4032 return false;
4034 default:
4035 gcc_unreachable ();
4039 /* Verify the GIMPLE statements inside the sequence STMTS. */
4041 static bool
4042 verify_types_in_gimple_seq_2 (gimple_seq stmts)
4044 gimple_stmt_iterator ittr;
4045 bool err = false;
4047 for (ittr = gsi_start (stmts); !gsi_end_p (ittr); gsi_next (&ittr))
4049 gimple stmt = gsi_stmt (ittr);
4051 switch (gimple_code (stmt))
4053 case GIMPLE_BIND:
4054 err |= verify_types_in_gimple_seq_2 (gimple_bind_body (stmt));
4055 break;
4057 case GIMPLE_TRY:
4058 err |= verify_types_in_gimple_seq_2 (gimple_try_eval (stmt));
4059 err |= verify_types_in_gimple_seq_2 (gimple_try_cleanup (stmt));
4060 break;
4062 case GIMPLE_EH_FILTER:
4063 err |= verify_types_in_gimple_seq_2 (gimple_eh_filter_failure (stmt));
4064 break;
4066 case GIMPLE_CATCH:
4067 err |= verify_types_in_gimple_seq_2 (gimple_catch_handler (stmt));
4068 break;
4070 default:
4072 bool err2 = verify_types_in_gimple_stmt (stmt);
4073 if (err2)
4074 debug_gimple_stmt (stmt);
4075 err |= err2;
4080 return err;
4084 /* Verify the GIMPLE statements inside the statement list STMTS. */
4086 void
4087 verify_types_in_gimple_seq (gimple_seq stmts)
4089 if (verify_types_in_gimple_seq_2 (stmts))
4090 internal_error ("verify_gimple failed");
4094 /* Verify STMT, return true if STMT is not in GIMPLE form.
4095 TODO: Implement type checking. */
4097 static bool
4098 verify_stmt (gimple_stmt_iterator *gsi)
4100 tree addr;
4101 struct walk_stmt_info wi;
4102 bool last_in_block = gsi_one_before_end_p (*gsi);
4103 gimple stmt = gsi_stmt (*gsi);
4105 if (is_gimple_omp (stmt))
4107 /* OpenMP directives are validated by the FE and never operated
4108 on by the optimizers. Furthermore, GIMPLE_OMP_FOR may contain
4109 non-gimple expressions when the main index variable has had
4110 its address taken. This does not affect the loop itself
4111 because the header of an GIMPLE_OMP_FOR is merely used to determine
4112 how to setup the parallel iteration. */
4113 return false;
4116 /* FIXME. The C frontend passes unpromoted arguments in case it
4117 didn't see a function declaration before the call. */
4118 if (is_gimple_call (stmt))
4120 tree decl;
4122 if (!is_gimple_call_addr (gimple_call_fn (stmt)))
4124 error ("invalid function in call statement");
4125 return true;
4128 decl = gimple_call_fndecl (stmt);
4129 if (decl
4130 && TREE_CODE (decl) == FUNCTION_DECL
4131 && DECL_LOOPING_CONST_OR_PURE_P (decl)
4132 && (!DECL_PURE_P (decl))
4133 && (!TREE_READONLY (decl)))
4135 error ("invalid pure const state for function");
4136 return true;
4140 memset (&wi, 0, sizeof (wi));
4141 addr = walk_gimple_op (gsi_stmt (*gsi), verify_expr, &wi);
4142 if (addr)
4144 debug_generic_expr (addr);
4145 inform (input_location, "in statement");
4146 debug_gimple_stmt (stmt);
4147 return true;
4150 /* If the statement is marked as part of an EH region, then it is
4151 expected that the statement could throw. Verify that when we
4152 have optimizations that simplify statements such that we prove
4153 that they cannot throw, that we update other data structures
4154 to match. */
4155 if (lookup_stmt_eh_region (stmt) >= 0)
4157 /* During IPA passes, ipa-pure-const sets nothrow flags on calls
4158 and they are updated on statements only after fixup_cfg
4159 is executed at beggining of expansion stage. */
4160 if (!stmt_could_throw_p (stmt) && cgraph_state != CGRAPH_STATE_IPA_SSA)
4162 error ("statement marked for throw, but doesn%'t");
4163 goto fail;
4165 if (!last_in_block && stmt_can_throw_internal (stmt))
4167 error ("statement marked for throw in middle of block");
4168 goto fail;
4172 return false;
4174 fail:
4175 debug_gimple_stmt (stmt);
4176 return true;
4180 /* Return true when the T can be shared. */
4182 static bool
4183 tree_node_can_be_shared (tree t)
4185 if (IS_TYPE_OR_DECL_P (t)
4186 || is_gimple_min_invariant (t)
4187 || TREE_CODE (t) == SSA_NAME
4188 || t == error_mark_node
4189 || TREE_CODE (t) == IDENTIFIER_NODE)
4190 return true;
4192 if (TREE_CODE (t) == CASE_LABEL_EXPR)
4193 return true;
4195 while (((TREE_CODE (t) == ARRAY_REF || TREE_CODE (t) == ARRAY_RANGE_REF)
4196 && is_gimple_min_invariant (TREE_OPERAND (t, 1)))
4197 || TREE_CODE (t) == COMPONENT_REF
4198 || TREE_CODE (t) == REALPART_EXPR
4199 || TREE_CODE (t) == IMAGPART_EXPR)
4200 t = TREE_OPERAND (t, 0);
4202 if (DECL_P (t))
4203 return true;
4205 return false;
4209 /* Called via walk_gimple_stmt. Verify tree sharing. */
4211 static tree
4212 verify_node_sharing (tree *tp, int *walk_subtrees, void *data)
4214 struct walk_stmt_info *wi = (struct walk_stmt_info *) data;
4215 struct pointer_set_t *visited = (struct pointer_set_t *) wi->info;
4217 if (tree_node_can_be_shared (*tp))
4219 *walk_subtrees = false;
4220 return NULL;
4223 if (pointer_set_insert (visited, *tp))
4224 return *tp;
4226 return NULL;
4230 static bool eh_error_found;
4231 static int
4232 verify_eh_throw_stmt_node (void **slot, void *data)
4234 struct throw_stmt_node *node = (struct throw_stmt_node *)*slot;
4235 struct pointer_set_t *visited = (struct pointer_set_t *) data;
4237 if (!pointer_set_contains (visited, node->stmt))
4239 error ("Dead STMT in EH table");
4240 debug_gimple_stmt (node->stmt);
4241 eh_error_found = true;
4243 return 1;
4247 /* Verify the GIMPLE statements in every basic block. */
4249 void
4250 verify_stmts (void)
4252 basic_block bb;
4253 gimple_stmt_iterator gsi;
4254 bool err = false;
4255 struct pointer_set_t *visited, *visited_stmts;
4256 tree addr;
4257 struct walk_stmt_info wi;
4259 timevar_push (TV_TREE_STMT_VERIFY);
4260 visited = pointer_set_create ();
4261 visited_stmts = pointer_set_create ();
4263 memset (&wi, 0, sizeof (wi));
4264 wi.info = (void *) visited;
4266 FOR_EACH_BB (bb)
4268 gimple phi;
4269 size_t i;
4271 for (gsi = gsi_start_phis (bb); !gsi_end_p (gsi); gsi_next (&gsi))
4273 phi = gsi_stmt (gsi);
4274 pointer_set_insert (visited_stmts, phi);
4275 if (gimple_bb (phi) != bb)
4277 error ("gimple_bb (phi) is set to a wrong basic block");
4278 err |= true;
4281 for (i = 0; i < gimple_phi_num_args (phi); i++)
4283 tree t = gimple_phi_arg_def (phi, i);
4284 tree addr;
4286 if (!t)
4288 error ("missing PHI def");
4289 debug_gimple_stmt (phi);
4290 err |= true;
4291 continue;
4293 /* Addressable variables do have SSA_NAMEs but they
4294 are not considered gimple values. */
4295 else if (TREE_CODE (t) != SSA_NAME
4296 && TREE_CODE (t) != FUNCTION_DECL
4297 && !is_gimple_min_invariant (t))
4299 error ("PHI argument is not a GIMPLE value");
4300 debug_gimple_stmt (phi);
4301 debug_generic_expr (t);
4302 err |= true;
4305 addr = walk_tree (&t, verify_node_sharing, visited, NULL);
4306 if (addr)
4308 error ("incorrect sharing of tree nodes");
4309 debug_gimple_stmt (phi);
4310 debug_generic_expr (addr);
4311 err |= true;
4315 #ifdef ENABLE_TYPES_CHECKING
4316 if (verify_gimple_phi (phi))
4318 debug_gimple_stmt (phi);
4319 err |= true;
4321 #endif
4324 for (gsi = gsi_start_bb (bb); !gsi_end_p (gsi); )
4326 gimple stmt = gsi_stmt (gsi);
4328 if (gimple_code (stmt) == GIMPLE_WITH_CLEANUP_EXPR
4329 || gimple_code (stmt) == GIMPLE_BIND)
4331 error ("invalid GIMPLE statement");
4332 debug_gimple_stmt (stmt);
4333 err |= true;
4336 pointer_set_insert (visited_stmts, stmt);
4338 if (gimple_bb (stmt) != bb)
4340 error ("gimple_bb (stmt) is set to a wrong basic block");
4341 err |= true;
4344 if (gimple_code (stmt) == GIMPLE_LABEL)
4346 tree decl = gimple_label_label (stmt);
4347 int uid = LABEL_DECL_UID (decl);
4349 if (uid == -1
4350 || VEC_index (basic_block, label_to_block_map, uid) != bb)
4352 error ("incorrect entry in label_to_block_map.\n");
4353 err |= true;
4357 err |= verify_stmt (&gsi);
4359 #ifdef ENABLE_TYPES_CHECKING
4360 if (verify_types_in_gimple_stmt (gsi_stmt (gsi)))
4362 debug_gimple_stmt (stmt);
4363 err |= true;
4365 #endif
4366 addr = walk_gimple_op (gsi_stmt (gsi), verify_node_sharing, &wi);
4367 if (addr)
4369 error ("incorrect sharing of tree nodes");
4370 debug_gimple_stmt (stmt);
4371 debug_generic_expr (addr);
4372 err |= true;
4374 gsi_next (&gsi);
4378 eh_error_found = false;
4379 if (get_eh_throw_stmt_table (cfun))
4380 htab_traverse (get_eh_throw_stmt_table (cfun),
4381 verify_eh_throw_stmt_node,
4382 visited_stmts);
4384 if (err | eh_error_found)
4385 internal_error ("verify_stmts failed");
4387 pointer_set_destroy (visited);
4388 pointer_set_destroy (visited_stmts);
4389 verify_histograms ();
4390 timevar_pop (TV_TREE_STMT_VERIFY);
4394 /* Verifies that the flow information is OK. */
4396 static int
4397 gimple_verify_flow_info (void)
4399 int err = 0;
4400 basic_block bb;
4401 gimple_stmt_iterator gsi;
4402 gimple stmt;
4403 edge e;
4404 edge_iterator ei;
4406 if (ENTRY_BLOCK_PTR->il.gimple)
4408 error ("ENTRY_BLOCK has IL associated with it");
4409 err = 1;
4412 if (EXIT_BLOCK_PTR->il.gimple)
4414 error ("EXIT_BLOCK has IL associated with it");
4415 err = 1;
4418 FOR_EACH_EDGE (e, ei, EXIT_BLOCK_PTR->preds)
4419 if (e->flags & EDGE_FALLTHRU)
4421 error ("fallthru to exit from bb %d", e->src->index);
4422 err = 1;
4425 FOR_EACH_BB (bb)
4427 bool found_ctrl_stmt = false;
4429 stmt = NULL;
4431 /* Skip labels on the start of basic block. */
4432 for (gsi = gsi_start_bb (bb); !gsi_end_p (gsi); gsi_next (&gsi))
4434 tree label;
4435 gimple prev_stmt = stmt;
4437 stmt = gsi_stmt (gsi);
4439 if (gimple_code (stmt) != GIMPLE_LABEL)
4440 break;
4442 label = gimple_label_label (stmt);
4443 if (prev_stmt && DECL_NONLOCAL (label))
4445 error ("nonlocal label ");
4446 print_generic_expr (stderr, label, 0);
4447 fprintf (stderr, " is not first in a sequence of labels in bb %d",
4448 bb->index);
4449 err = 1;
4452 if (label_to_block (label) != bb)
4454 error ("label ");
4455 print_generic_expr (stderr, label, 0);
4456 fprintf (stderr, " to block does not match in bb %d",
4457 bb->index);
4458 err = 1;
4461 if (decl_function_context (label) != current_function_decl)
4463 error ("label ");
4464 print_generic_expr (stderr, label, 0);
4465 fprintf (stderr, " has incorrect context in bb %d",
4466 bb->index);
4467 err = 1;
4471 /* Verify that body of basic block BB is free of control flow. */
4472 for (; !gsi_end_p (gsi); gsi_next (&gsi))
4474 gimple stmt = gsi_stmt (gsi);
4476 if (found_ctrl_stmt)
4478 error ("control flow in the middle of basic block %d",
4479 bb->index);
4480 err = 1;
4483 if (stmt_ends_bb_p (stmt))
4484 found_ctrl_stmt = true;
4486 if (gimple_code (stmt) == GIMPLE_LABEL)
4488 error ("label ");
4489 print_generic_expr (stderr, gimple_label_label (stmt), 0);
4490 fprintf (stderr, " in the middle of basic block %d", bb->index);
4491 err = 1;
4495 gsi = gsi_last_bb (bb);
4496 if (gsi_end_p (gsi))
4497 continue;
4499 stmt = gsi_stmt (gsi);
4501 err |= verify_eh_edges (stmt);
4503 if (is_ctrl_stmt (stmt))
4505 FOR_EACH_EDGE (e, ei, bb->succs)
4506 if (e->flags & EDGE_FALLTHRU)
4508 error ("fallthru edge after a control statement in bb %d",
4509 bb->index);
4510 err = 1;
4514 if (gimple_code (stmt) != GIMPLE_COND)
4516 /* Verify that there are no edges with EDGE_TRUE/FALSE_FLAG set
4517 after anything else but if statement. */
4518 FOR_EACH_EDGE (e, ei, bb->succs)
4519 if (e->flags & (EDGE_TRUE_VALUE | EDGE_FALSE_VALUE))
4521 error ("true/false edge after a non-GIMPLE_COND in bb %d",
4522 bb->index);
4523 err = 1;
4527 switch (gimple_code (stmt))
4529 case GIMPLE_COND:
4531 edge true_edge;
4532 edge false_edge;
4534 extract_true_false_edges_from_block (bb, &true_edge, &false_edge);
4536 if (!true_edge
4537 || !false_edge
4538 || !(true_edge->flags & EDGE_TRUE_VALUE)
4539 || !(false_edge->flags & EDGE_FALSE_VALUE)
4540 || (true_edge->flags & (EDGE_FALLTHRU | EDGE_ABNORMAL))
4541 || (false_edge->flags & (EDGE_FALLTHRU | EDGE_ABNORMAL))
4542 || EDGE_COUNT (bb->succs) >= 3)
4544 error ("wrong outgoing edge flags at end of bb %d",
4545 bb->index);
4546 err = 1;
4549 break;
4551 case GIMPLE_GOTO:
4552 if (simple_goto_p (stmt))
4554 error ("explicit goto at end of bb %d", bb->index);
4555 err = 1;
4557 else
4559 /* FIXME. We should double check that the labels in the
4560 destination blocks have their address taken. */
4561 FOR_EACH_EDGE (e, ei, bb->succs)
4562 if ((e->flags & (EDGE_FALLTHRU | EDGE_TRUE_VALUE
4563 | EDGE_FALSE_VALUE))
4564 || !(e->flags & EDGE_ABNORMAL))
4566 error ("wrong outgoing edge flags at end of bb %d",
4567 bb->index);
4568 err = 1;
4571 break;
4573 case GIMPLE_RETURN:
4574 if (!single_succ_p (bb)
4575 || (single_succ_edge (bb)->flags
4576 & (EDGE_FALLTHRU | EDGE_ABNORMAL
4577 | EDGE_TRUE_VALUE | EDGE_FALSE_VALUE)))
4579 error ("wrong outgoing edge flags at end of bb %d", bb->index);
4580 err = 1;
4582 if (single_succ (bb) != EXIT_BLOCK_PTR)
4584 error ("return edge does not point to exit in bb %d",
4585 bb->index);
4586 err = 1;
4588 break;
4590 case GIMPLE_SWITCH:
4592 tree prev;
4593 edge e;
4594 size_t i, n;
4596 n = gimple_switch_num_labels (stmt);
4598 /* Mark all the destination basic blocks. */
4599 for (i = 0; i < n; ++i)
4601 tree lab = CASE_LABEL (gimple_switch_label (stmt, i));
4602 basic_block label_bb = label_to_block (lab);
4603 gcc_assert (!label_bb->aux || label_bb->aux == (void *)1);
4604 label_bb->aux = (void *)1;
4607 /* Verify that the case labels are sorted. */
4608 prev = gimple_switch_label (stmt, 0);
4609 for (i = 1; i < n; ++i)
4611 tree c = gimple_switch_label (stmt, i);
4612 if (!CASE_LOW (c))
4614 error ("found default case not at the start of "
4615 "case vector");
4616 err = 1;
4617 continue;
4619 if (CASE_LOW (prev)
4620 && !tree_int_cst_lt (CASE_LOW (prev), CASE_LOW (c)))
4622 error ("case labels not sorted: ");
4623 print_generic_expr (stderr, prev, 0);
4624 fprintf (stderr," is greater than ");
4625 print_generic_expr (stderr, c, 0);
4626 fprintf (stderr," but comes before it.\n");
4627 err = 1;
4629 prev = c;
4631 /* VRP will remove the default case if it can prove it will
4632 never be executed. So do not verify there always exists
4633 a default case here. */
4635 FOR_EACH_EDGE (e, ei, bb->succs)
4637 if (!e->dest->aux)
4639 error ("extra outgoing edge %d->%d",
4640 bb->index, e->dest->index);
4641 err = 1;
4644 e->dest->aux = (void *)2;
4645 if ((e->flags & (EDGE_FALLTHRU | EDGE_ABNORMAL
4646 | EDGE_TRUE_VALUE | EDGE_FALSE_VALUE)))
4648 error ("wrong outgoing edge flags at end of bb %d",
4649 bb->index);
4650 err = 1;
4654 /* Check that we have all of them. */
4655 for (i = 0; i < n; ++i)
4657 tree lab = CASE_LABEL (gimple_switch_label (stmt, i));
4658 basic_block label_bb = label_to_block (lab);
4660 if (label_bb->aux != (void *)2)
4662 error ("missing edge %i->%i", bb->index, label_bb->index);
4663 err = 1;
4667 FOR_EACH_EDGE (e, ei, bb->succs)
4668 e->dest->aux = (void *)0;
4671 default: ;
4675 if (dom_info_state (CDI_DOMINATORS) >= DOM_NO_FAST_QUERY)
4676 verify_dominators (CDI_DOMINATORS);
4678 return err;
4682 /* Updates phi nodes after creating a forwarder block joined
4683 by edge FALLTHRU. */
4685 static void
4686 gimple_make_forwarder_block (edge fallthru)
4688 edge e;
4689 edge_iterator ei;
4690 basic_block dummy, bb;
4691 tree var;
4692 gimple_stmt_iterator gsi;
4694 dummy = fallthru->src;
4695 bb = fallthru->dest;
4697 if (single_pred_p (bb))
4698 return;
4700 /* If we redirected a branch we must create new PHI nodes at the
4701 start of BB. */
4702 for (gsi = gsi_start_phis (dummy); !gsi_end_p (gsi); gsi_next (&gsi))
4704 gimple phi, new_phi;
4706 phi = gsi_stmt (gsi);
4707 var = gimple_phi_result (phi);
4708 new_phi = create_phi_node (var, bb);
4709 SSA_NAME_DEF_STMT (var) = new_phi;
4710 gimple_phi_set_result (phi, make_ssa_name (SSA_NAME_VAR (var), phi));
4711 add_phi_arg (new_phi, gimple_phi_result (phi), fallthru);
4714 /* Add the arguments we have stored on edges. */
4715 FOR_EACH_EDGE (e, ei, bb->preds)
4717 if (e == fallthru)
4718 continue;
4720 flush_pending_stmts (e);
4725 /* Return a non-special label in the head of basic block BLOCK.
4726 Create one if it doesn't exist. */
4728 tree
4729 gimple_block_label (basic_block bb)
4731 gimple_stmt_iterator i, s = gsi_start_bb (bb);
4732 bool first = true;
4733 tree label;
4734 gimple stmt;
4736 for (i = s; !gsi_end_p (i); first = false, gsi_next (&i))
4738 stmt = gsi_stmt (i);
4739 if (gimple_code (stmt) != GIMPLE_LABEL)
4740 break;
4741 label = gimple_label_label (stmt);
4742 if (!DECL_NONLOCAL (label))
4744 if (!first)
4745 gsi_move_before (&i, &s);
4746 return label;
4750 label = create_artificial_label ();
4751 stmt = gimple_build_label (label);
4752 gsi_insert_before (&s, stmt, GSI_NEW_STMT);
4753 return label;
4757 /* Attempt to perform edge redirection by replacing a possibly complex
4758 jump instruction by a goto or by removing the jump completely.
4759 This can apply only if all edges now point to the same block. The
4760 parameters and return values are equivalent to
4761 redirect_edge_and_branch. */
4763 static edge
4764 gimple_try_redirect_by_replacing_jump (edge e, basic_block target)
4766 basic_block src = e->src;
4767 gimple_stmt_iterator i;
4768 gimple stmt;
4770 /* We can replace or remove a complex jump only when we have exactly
4771 two edges. */
4772 if (EDGE_COUNT (src->succs) != 2
4773 /* Verify that all targets will be TARGET. Specifically, the
4774 edge that is not E must also go to TARGET. */
4775 || EDGE_SUCC (src, EDGE_SUCC (src, 0) == e)->dest != target)
4776 return NULL;
4778 i = gsi_last_bb (src);
4779 if (gsi_end_p (i))
4780 return NULL;
4782 stmt = gsi_stmt (i);
4784 if (gimple_code (stmt) == GIMPLE_COND || gimple_code (stmt) == GIMPLE_SWITCH)
4786 gsi_remove (&i, true);
4787 e = ssa_redirect_edge (e, target);
4788 e->flags = EDGE_FALLTHRU;
4789 return e;
4792 return NULL;
4796 /* Redirect E to DEST. Return NULL on failure. Otherwise, return the
4797 edge representing the redirected branch. */
4799 static edge
4800 gimple_redirect_edge_and_branch (edge e, basic_block dest)
4802 basic_block bb = e->src;
4803 gimple_stmt_iterator gsi;
4804 edge ret;
4805 gimple stmt;
4807 if (e->flags & EDGE_ABNORMAL)
4808 return NULL;
4810 if (e->src != ENTRY_BLOCK_PTR
4811 && (ret = gimple_try_redirect_by_replacing_jump (e, dest)))
4812 return ret;
4814 if (e->dest == dest)
4815 return NULL;
4817 if (e->flags & EDGE_EH)
4818 return redirect_eh_edge (e, dest);
4820 gsi = gsi_last_bb (bb);
4821 stmt = gsi_end_p (gsi) ? NULL : gsi_stmt (gsi);
4823 switch (stmt ? gimple_code (stmt) : ERROR_MARK)
4825 case GIMPLE_COND:
4826 /* For COND_EXPR, we only need to redirect the edge. */
4827 break;
4829 case GIMPLE_GOTO:
4830 /* No non-abnormal edges should lead from a non-simple goto, and
4831 simple ones should be represented implicitly. */
4832 gcc_unreachable ();
4834 case GIMPLE_SWITCH:
4836 tree label = gimple_block_label (dest);
4837 tree cases = get_cases_for_edge (e, stmt);
4839 /* If we have a list of cases associated with E, then use it
4840 as it's a lot faster than walking the entire case vector. */
4841 if (cases)
4843 edge e2 = find_edge (e->src, dest);
4844 tree last, first;
4846 first = cases;
4847 while (cases)
4849 last = cases;
4850 CASE_LABEL (cases) = label;
4851 cases = TREE_CHAIN (cases);
4854 /* If there was already an edge in the CFG, then we need
4855 to move all the cases associated with E to E2. */
4856 if (e2)
4858 tree cases2 = get_cases_for_edge (e2, stmt);
4860 TREE_CHAIN (last) = TREE_CHAIN (cases2);
4861 TREE_CHAIN (cases2) = first;
4864 else
4866 size_t i, n = gimple_switch_num_labels (stmt);
4868 for (i = 0; i < n; i++)
4870 tree elt = gimple_switch_label (stmt, i);
4871 if (label_to_block (CASE_LABEL (elt)) == e->dest)
4872 CASE_LABEL (elt) = label;
4876 break;
4879 case GIMPLE_RETURN:
4880 gsi_remove (&gsi, true);
4881 e->flags |= EDGE_FALLTHRU;
4882 break;
4884 case GIMPLE_OMP_RETURN:
4885 case GIMPLE_OMP_CONTINUE:
4886 case GIMPLE_OMP_SECTIONS_SWITCH:
4887 case GIMPLE_OMP_FOR:
4888 /* The edges from OMP constructs can be simply redirected. */
4889 break;
4891 default:
4892 /* Otherwise it must be a fallthru edge, and we don't need to
4893 do anything besides redirecting it. */
4894 gcc_assert (e->flags & EDGE_FALLTHRU);
4895 break;
4898 /* Update/insert PHI nodes as necessary. */
4900 /* Now update the edges in the CFG. */
4901 e = ssa_redirect_edge (e, dest);
4903 return e;
4906 /* Returns true if it is possible to remove edge E by redirecting
4907 it to the destination of the other edge from E->src. */
4909 static bool
4910 gimple_can_remove_branch_p (const_edge e)
4912 if (e->flags & (EDGE_ABNORMAL | EDGE_EH))
4913 return false;
4915 return true;
4918 /* Simple wrapper, as we can always redirect fallthru edges. */
4920 static basic_block
4921 gimple_redirect_edge_and_branch_force (edge e, basic_block dest)
4923 e = gimple_redirect_edge_and_branch (e, dest);
4924 gcc_assert (e);
4926 return NULL;
4930 /* Splits basic block BB after statement STMT (but at least after the
4931 labels). If STMT is NULL, BB is split just after the labels. */
4933 static basic_block
4934 gimple_split_block (basic_block bb, void *stmt)
4936 gimple_stmt_iterator gsi;
4937 gimple_stmt_iterator gsi_tgt;
4938 gimple act;
4939 gimple_seq list;
4940 basic_block new_bb;
4941 edge e;
4942 edge_iterator ei;
4944 new_bb = create_empty_bb (bb);
4946 /* Redirect the outgoing edges. */
4947 new_bb->succs = bb->succs;
4948 bb->succs = NULL;
4949 FOR_EACH_EDGE (e, ei, new_bb->succs)
4950 e->src = new_bb;
4952 if (stmt && gimple_code ((gimple) stmt) == GIMPLE_LABEL)
4953 stmt = NULL;
4955 /* Move everything from GSI to the new basic block. */
4956 for (gsi = gsi_start_bb (bb); !gsi_end_p (gsi); gsi_next (&gsi))
4958 act = gsi_stmt (gsi);
4959 if (gimple_code (act) == GIMPLE_LABEL)
4960 continue;
4962 if (!stmt)
4963 break;
4965 if (stmt == act)
4967 gsi_next (&gsi);
4968 break;
4972 if (gsi_end_p (gsi))
4973 return new_bb;
4975 /* Split the statement list - avoid re-creating new containers as this
4976 brings ugly quadratic memory consumption in the inliner.
4977 (We are still quadratic since we need to update stmt BB pointers,
4978 sadly.) */
4979 list = gsi_split_seq_before (&gsi);
4980 set_bb_seq (new_bb, list);
4981 for (gsi_tgt = gsi_start (list);
4982 !gsi_end_p (gsi_tgt); gsi_next (&gsi_tgt))
4983 gimple_set_bb (gsi_stmt (gsi_tgt), new_bb);
4985 return new_bb;
4989 /* Moves basic block BB after block AFTER. */
4991 static bool
4992 gimple_move_block_after (basic_block bb, basic_block after)
4994 if (bb->prev_bb == after)
4995 return true;
4997 unlink_block (bb);
4998 link_block (bb, after);
5000 return true;
5004 /* Return true if basic_block can be duplicated. */
5006 static bool
5007 gimple_can_duplicate_bb_p (const_basic_block bb ATTRIBUTE_UNUSED)
5009 return true;
5012 /* Create a duplicate of the basic block BB. NOTE: This does not
5013 preserve SSA form. */
5015 static basic_block
5016 gimple_duplicate_bb (basic_block bb)
5018 basic_block new_bb;
5019 gimple_stmt_iterator gsi, gsi_tgt;
5020 gimple_seq phis = phi_nodes (bb);
5021 gimple phi, stmt, copy;
5023 new_bb = create_empty_bb (EXIT_BLOCK_PTR->prev_bb);
5025 /* Copy the PHI nodes. We ignore PHI node arguments here because
5026 the incoming edges have not been setup yet. */
5027 for (gsi = gsi_start (phis); !gsi_end_p (gsi); gsi_next (&gsi))
5029 phi = gsi_stmt (gsi);
5030 copy = create_phi_node (gimple_phi_result (phi), new_bb);
5031 create_new_def_for (gimple_phi_result (copy), copy,
5032 gimple_phi_result_ptr (copy));
5035 gsi_tgt = gsi_start_bb (new_bb);
5036 for (gsi = gsi_start_bb (bb); !gsi_end_p (gsi); gsi_next (&gsi))
5038 def_operand_p def_p;
5039 ssa_op_iter op_iter;
5040 int region;
5042 stmt = gsi_stmt (gsi);
5043 if (gimple_code (stmt) == GIMPLE_LABEL)
5044 continue;
5046 /* Create a new copy of STMT and duplicate STMT's virtual
5047 operands. */
5048 copy = gimple_copy (stmt);
5049 gsi_insert_after (&gsi_tgt, copy, GSI_NEW_STMT);
5050 region = lookup_stmt_eh_region (stmt);
5051 if (region >= 0)
5052 add_stmt_to_eh_region (copy, region);
5053 gimple_duplicate_stmt_histograms (cfun, copy, cfun, stmt);
5055 /* Create new names for all the definitions created by COPY and
5056 add replacement mappings for each new name. */
5057 FOR_EACH_SSA_DEF_OPERAND (def_p, copy, op_iter, SSA_OP_ALL_DEFS)
5058 create_new_def_for (DEF_FROM_PTR (def_p), copy, def_p);
5061 return new_bb;
5064 /* Adds phi node arguments for edge E_COPY after basic block duplication. */
5066 static void
5067 add_phi_args_after_copy_edge (edge e_copy)
5069 basic_block bb, bb_copy = e_copy->src, dest;
5070 edge e;
5071 edge_iterator ei;
5072 gimple phi, phi_copy;
5073 tree def;
5074 gimple_stmt_iterator psi, psi_copy;
5076 if (gimple_seq_empty_p (phi_nodes (e_copy->dest)))
5077 return;
5079 bb = bb_copy->flags & BB_DUPLICATED ? get_bb_original (bb_copy) : bb_copy;
5081 if (e_copy->dest->flags & BB_DUPLICATED)
5082 dest = get_bb_original (e_copy->dest);
5083 else
5084 dest = e_copy->dest;
5086 e = find_edge (bb, dest);
5087 if (!e)
5089 /* During loop unrolling the target of the latch edge is copied.
5090 In this case we are not looking for edge to dest, but to
5091 duplicated block whose original was dest. */
5092 FOR_EACH_EDGE (e, ei, bb->succs)
5094 if ((e->dest->flags & BB_DUPLICATED)
5095 && get_bb_original (e->dest) == dest)
5096 break;
5099 gcc_assert (e != NULL);
5102 for (psi = gsi_start_phis (e->dest),
5103 psi_copy = gsi_start_phis (e_copy->dest);
5104 !gsi_end_p (psi);
5105 gsi_next (&psi), gsi_next (&psi_copy))
5107 phi = gsi_stmt (psi);
5108 phi_copy = gsi_stmt (psi_copy);
5109 def = PHI_ARG_DEF_FROM_EDGE (phi, e);
5110 add_phi_arg (phi_copy, def, e_copy);
5115 /* Basic block BB_COPY was created by code duplication. Add phi node
5116 arguments for edges going out of BB_COPY. The blocks that were
5117 duplicated have BB_DUPLICATED set. */
5119 void
5120 add_phi_args_after_copy_bb (basic_block bb_copy)
5122 edge e_copy;
5123 edge_iterator ei;
5125 FOR_EACH_EDGE (e_copy, ei, bb_copy->succs)
5127 add_phi_args_after_copy_edge (e_copy);
5131 /* Blocks in REGION_COPY array of length N_REGION were created by
5132 duplication of basic blocks. Add phi node arguments for edges
5133 going from these blocks. If E_COPY is not NULL, also add
5134 phi node arguments for its destination.*/
5136 void
5137 add_phi_args_after_copy (basic_block *region_copy, unsigned n_region,
5138 edge e_copy)
5140 unsigned i;
5142 for (i = 0; i < n_region; i++)
5143 region_copy[i]->flags |= BB_DUPLICATED;
5145 for (i = 0; i < n_region; i++)
5146 add_phi_args_after_copy_bb (region_copy[i]);
5147 if (e_copy)
5148 add_phi_args_after_copy_edge (e_copy);
5150 for (i = 0; i < n_region; i++)
5151 region_copy[i]->flags &= ~BB_DUPLICATED;
5154 /* Duplicates a REGION (set of N_REGION basic blocks) with just a single
5155 important exit edge EXIT. By important we mean that no SSA name defined
5156 inside region is live over the other exit edges of the region. All entry
5157 edges to the region must go to ENTRY->dest. The edge ENTRY is redirected
5158 to the duplicate of the region. SSA form, dominance and loop information
5159 is updated. The new basic blocks are stored to REGION_COPY in the same
5160 order as they had in REGION, provided that REGION_COPY is not NULL.
5161 The function returns false if it is unable to copy the region,
5162 true otherwise. */
5164 bool
5165 gimple_duplicate_sese_region (edge entry, edge exit,
5166 basic_block *region, unsigned n_region,
5167 basic_block *region_copy)
5169 unsigned i;
5170 bool free_region_copy = false, copying_header = false;
5171 struct loop *loop = entry->dest->loop_father;
5172 edge exit_copy;
5173 VEC (basic_block, heap) *doms;
5174 edge redirected;
5175 int total_freq = 0, entry_freq = 0;
5176 gcov_type total_count = 0, entry_count = 0;
5178 if (!can_copy_bbs_p (region, n_region))
5179 return false;
5181 /* Some sanity checking. Note that we do not check for all possible
5182 missuses of the functions. I.e. if you ask to copy something weird,
5183 it will work, but the state of structures probably will not be
5184 correct. */
5185 for (i = 0; i < n_region; i++)
5187 /* We do not handle subloops, i.e. all the blocks must belong to the
5188 same loop. */
5189 if (region[i]->loop_father != loop)
5190 return false;
5192 if (region[i] != entry->dest
5193 && region[i] == loop->header)
5194 return false;
5197 set_loop_copy (loop, loop);
5199 /* In case the function is used for loop header copying (which is the primary
5200 use), ensure that EXIT and its copy will be new latch and entry edges. */
5201 if (loop->header == entry->dest)
5203 copying_header = true;
5204 set_loop_copy (loop, loop_outer (loop));
5206 if (!dominated_by_p (CDI_DOMINATORS, loop->latch, exit->src))
5207 return false;
5209 for (i = 0; i < n_region; i++)
5210 if (region[i] != exit->src
5211 && dominated_by_p (CDI_DOMINATORS, region[i], exit->src))
5212 return false;
5215 if (!region_copy)
5217 region_copy = XNEWVEC (basic_block, n_region);
5218 free_region_copy = true;
5221 gcc_assert (!need_ssa_update_p (cfun));
5223 /* Record blocks outside the region that are dominated by something
5224 inside. */
5225 doms = NULL;
5226 initialize_original_copy_tables ();
5228 doms = get_dominated_by_region (CDI_DOMINATORS, region, n_region);
5230 if (entry->dest->count)
5232 total_count = entry->dest->count;
5233 entry_count = entry->count;
5234 /* Fix up corner cases, to avoid division by zero or creation of negative
5235 frequencies. */
5236 if (entry_count > total_count)
5237 entry_count = total_count;
5239 else
5241 total_freq = entry->dest->frequency;
5242 entry_freq = EDGE_FREQUENCY (entry);
5243 /* Fix up corner cases, to avoid division by zero or creation of negative
5244 frequencies. */
5245 if (total_freq == 0)
5246 total_freq = 1;
5247 else if (entry_freq > total_freq)
5248 entry_freq = total_freq;
5251 copy_bbs (region, n_region, region_copy, &exit, 1, &exit_copy, loop,
5252 split_edge_bb_loc (entry));
5253 if (total_count)
5255 scale_bbs_frequencies_gcov_type (region, n_region,
5256 total_count - entry_count,
5257 total_count);
5258 scale_bbs_frequencies_gcov_type (region_copy, n_region, entry_count,
5259 total_count);
5261 else
5263 scale_bbs_frequencies_int (region, n_region, total_freq - entry_freq,
5264 total_freq);
5265 scale_bbs_frequencies_int (region_copy, n_region, entry_freq, total_freq);
5268 if (copying_header)
5270 loop->header = exit->dest;
5271 loop->latch = exit->src;
5274 /* Redirect the entry and add the phi node arguments. */
5275 redirected = redirect_edge_and_branch (entry, get_bb_copy (entry->dest));
5276 gcc_assert (redirected != NULL);
5277 flush_pending_stmts (entry);
5279 /* Concerning updating of dominators: We must recount dominators
5280 for entry block and its copy. Anything that is outside of the
5281 region, but was dominated by something inside needs recounting as
5282 well. */
5283 set_immediate_dominator (CDI_DOMINATORS, entry->dest, entry->src);
5284 VEC_safe_push (basic_block, heap, doms, get_bb_original (entry->dest));
5285 iterate_fix_dominators (CDI_DOMINATORS, doms, false);
5286 VEC_free (basic_block, heap, doms);
5288 /* Add the other PHI node arguments. */
5289 add_phi_args_after_copy (region_copy, n_region, NULL);
5291 /* Update the SSA web. */
5292 update_ssa (TODO_update_ssa);
5294 if (free_region_copy)
5295 free (region_copy);
5297 free_original_copy_tables ();
5298 return true;
5301 /* Duplicates REGION consisting of N_REGION blocks. The new blocks
5302 are stored to REGION_COPY in the same order in that they appear
5303 in REGION, if REGION_COPY is not NULL. ENTRY is the entry to
5304 the region, EXIT an exit from it. The condition guarding EXIT
5305 is moved to ENTRY. Returns true if duplication succeeds, false
5306 otherwise.
5308 For example,
5310 some_code;
5311 if (cond)
5313 else
5316 is transformed to
5318 if (cond)
5320 some_code;
5323 else
5325 some_code;
5330 bool
5331 gimple_duplicate_sese_tail (edge entry ATTRIBUTE_UNUSED, edge exit ATTRIBUTE_UNUSED,
5332 basic_block *region ATTRIBUTE_UNUSED, unsigned n_region ATTRIBUTE_UNUSED,
5333 basic_block *region_copy ATTRIBUTE_UNUSED)
5335 unsigned i;
5336 bool free_region_copy = false;
5337 struct loop *loop = exit->dest->loop_father;
5338 struct loop *orig_loop = entry->dest->loop_father;
5339 basic_block switch_bb, entry_bb, nentry_bb;
5340 VEC (basic_block, heap) *doms;
5341 int total_freq = 0, exit_freq = 0;
5342 gcov_type total_count = 0, exit_count = 0;
5343 edge exits[2], nexits[2], e;
5344 gimple_stmt_iterator gsi;
5345 gimple cond_stmt;
5346 edge sorig, snew;
5348 gcc_assert (EDGE_COUNT (exit->src->succs) == 2);
5349 exits[0] = exit;
5350 exits[1] = EDGE_SUCC (exit->src, EDGE_SUCC (exit->src, 0) == exit);
5352 if (!can_copy_bbs_p (region, n_region))
5353 return false;
5355 /* Some sanity checking. Note that we do not check for all possible
5356 missuses of the functions. I.e. if you ask to copy something weird
5357 (e.g., in the example, if there is a jump from inside to the middle
5358 of some_code, or come_code defines some of the values used in cond)
5359 it will work, but the resulting code will not be correct. */
5360 for (i = 0; i < n_region; i++)
5362 /* We do not handle subloops, i.e. all the blocks must belong to the
5363 same loop. */
5364 if (region[i]->loop_father != orig_loop)
5365 return false;
5367 if (region[i] == orig_loop->latch)
5368 return false;
5371 initialize_original_copy_tables ();
5372 set_loop_copy (orig_loop, loop);
5374 if (!region_copy)
5376 region_copy = XNEWVEC (basic_block, n_region);
5377 free_region_copy = true;
5380 gcc_assert (!need_ssa_update_p (cfun));
5382 /* Record blocks outside the region that are dominated by something
5383 inside. */
5384 doms = get_dominated_by_region (CDI_DOMINATORS, region, n_region);
5386 if (exit->src->count)
5388 total_count = exit->src->count;
5389 exit_count = exit->count;
5390 /* Fix up corner cases, to avoid division by zero or creation of negative
5391 frequencies. */
5392 if (exit_count > total_count)
5393 exit_count = total_count;
5395 else
5397 total_freq = exit->src->frequency;
5398 exit_freq = EDGE_FREQUENCY (exit);
5399 /* Fix up corner cases, to avoid division by zero or creation of negative
5400 frequencies. */
5401 if (total_freq == 0)
5402 total_freq = 1;
5403 if (exit_freq > total_freq)
5404 exit_freq = total_freq;
5407 copy_bbs (region, n_region, region_copy, exits, 2, nexits, orig_loop,
5408 split_edge_bb_loc (exit));
5409 if (total_count)
5411 scale_bbs_frequencies_gcov_type (region, n_region,
5412 total_count - exit_count,
5413 total_count);
5414 scale_bbs_frequencies_gcov_type (region_copy, n_region, exit_count,
5415 total_count);
5417 else
5419 scale_bbs_frequencies_int (region, n_region, total_freq - exit_freq,
5420 total_freq);
5421 scale_bbs_frequencies_int (region_copy, n_region, exit_freq, total_freq);
5424 /* Create the switch block, and put the exit condition to it. */
5425 entry_bb = entry->dest;
5426 nentry_bb = get_bb_copy (entry_bb);
5427 if (!last_stmt (entry->src)
5428 || !stmt_ends_bb_p (last_stmt (entry->src)))
5429 switch_bb = entry->src;
5430 else
5431 switch_bb = split_edge (entry);
5432 set_immediate_dominator (CDI_DOMINATORS, nentry_bb, switch_bb);
5434 gsi = gsi_last_bb (switch_bb);
5435 cond_stmt = last_stmt (exit->src);
5436 gcc_assert (gimple_code (cond_stmt) == GIMPLE_COND);
5437 cond_stmt = gimple_copy (cond_stmt);
5438 gimple_cond_set_lhs (cond_stmt, unshare_expr (gimple_cond_lhs (cond_stmt)));
5439 gimple_cond_set_rhs (cond_stmt, unshare_expr (gimple_cond_rhs (cond_stmt)));
5440 gsi_insert_after (&gsi, cond_stmt, GSI_NEW_STMT);
5442 sorig = single_succ_edge (switch_bb);
5443 sorig->flags = exits[1]->flags;
5444 snew = make_edge (switch_bb, nentry_bb, exits[0]->flags);
5446 /* Register the new edge from SWITCH_BB in loop exit lists. */
5447 rescan_loop_exit (snew, true, false);
5449 /* Add the PHI node arguments. */
5450 add_phi_args_after_copy (region_copy, n_region, snew);
5452 /* Get rid of now superfluous conditions and associated edges (and phi node
5453 arguments). */
5454 e = redirect_edge_and_branch (exits[0], exits[1]->dest);
5455 PENDING_STMT (e) = NULL;
5456 e = redirect_edge_and_branch (nexits[1], nexits[0]->dest);
5457 PENDING_STMT (e) = NULL;
5459 /* Anything that is outside of the region, but was dominated by something
5460 inside needs to update dominance info. */
5461 iterate_fix_dominators (CDI_DOMINATORS, doms, false);
5462 VEC_free (basic_block, heap, doms);
5464 /* Update the SSA web. */
5465 update_ssa (TODO_update_ssa);
5467 if (free_region_copy)
5468 free (region_copy);
5470 free_original_copy_tables ();
5471 return true;
5474 /* Add all the blocks dominated by ENTRY to the array BBS_P. Stop
5475 adding blocks when the dominator traversal reaches EXIT. This
5476 function silently assumes that ENTRY strictly dominates EXIT. */
5478 void
5479 gather_blocks_in_sese_region (basic_block entry, basic_block exit,
5480 VEC(basic_block,heap) **bbs_p)
5482 basic_block son;
5484 for (son = first_dom_son (CDI_DOMINATORS, entry);
5485 son;
5486 son = next_dom_son (CDI_DOMINATORS, son))
5488 VEC_safe_push (basic_block, heap, *bbs_p, son);
5489 if (son != exit)
5490 gather_blocks_in_sese_region (son, exit, bbs_p);
5494 /* Replaces *TP with a duplicate (belonging to function TO_CONTEXT).
5495 The duplicates are recorded in VARS_MAP. */
5497 static void
5498 replace_by_duplicate_decl (tree *tp, struct pointer_map_t *vars_map,
5499 tree to_context)
5501 tree t = *tp, new_t;
5502 struct function *f = DECL_STRUCT_FUNCTION (to_context);
5503 void **loc;
5505 if (DECL_CONTEXT (t) == to_context)
5506 return;
5508 loc = pointer_map_contains (vars_map, t);
5510 if (!loc)
5512 loc = pointer_map_insert (vars_map, t);
5514 if (SSA_VAR_P (t))
5516 new_t = copy_var_decl (t, DECL_NAME (t), TREE_TYPE (t));
5517 f->local_decls = tree_cons (NULL_TREE, new_t, f->local_decls);
5519 else
5521 gcc_assert (TREE_CODE (t) == CONST_DECL);
5522 new_t = copy_node (t);
5524 DECL_CONTEXT (new_t) = to_context;
5526 *loc = new_t;
5528 else
5529 new_t = (tree) *loc;
5531 *tp = new_t;
5535 /* Creates an ssa name in TO_CONTEXT equivalent to NAME.
5536 VARS_MAP maps old ssa names and var_decls to the new ones. */
5538 static tree
5539 replace_ssa_name (tree name, struct pointer_map_t *vars_map,
5540 tree to_context)
5542 void **loc;
5543 tree new_name, decl = SSA_NAME_VAR (name);
5545 gcc_assert (is_gimple_reg (name));
5547 loc = pointer_map_contains (vars_map, name);
5549 if (!loc)
5551 replace_by_duplicate_decl (&decl, vars_map, to_context);
5553 push_cfun (DECL_STRUCT_FUNCTION (to_context));
5554 if (gimple_in_ssa_p (cfun))
5555 add_referenced_var (decl);
5557 new_name = make_ssa_name (decl, SSA_NAME_DEF_STMT (name));
5558 if (SSA_NAME_IS_DEFAULT_DEF (name))
5559 set_default_def (decl, new_name);
5560 pop_cfun ();
5562 loc = pointer_map_insert (vars_map, name);
5563 *loc = new_name;
5565 else
5566 new_name = (tree) *loc;
5568 return new_name;
5571 struct move_stmt_d
5573 tree orig_block;
5574 tree new_block;
5575 tree from_context;
5576 tree to_context;
5577 struct pointer_map_t *vars_map;
5578 htab_t new_label_map;
5579 bool remap_decls_p;
5582 /* Helper for move_block_to_fn. Set TREE_BLOCK in every expression
5583 contained in *TP if it has been ORIG_BLOCK previously and change the
5584 DECL_CONTEXT of every local variable referenced in *TP. */
5586 static tree
5587 move_stmt_op (tree *tp, int *walk_subtrees, void *data)
5589 struct walk_stmt_info *wi = (struct walk_stmt_info *) data;
5590 struct move_stmt_d *p = (struct move_stmt_d *) wi->info;
5591 tree t = *tp;
5593 if (EXPR_P (t))
5594 /* We should never have TREE_BLOCK set on non-statements. */
5595 gcc_assert (!TREE_BLOCK (t));
5597 else if (DECL_P (t) || TREE_CODE (t) == SSA_NAME)
5599 if (TREE_CODE (t) == SSA_NAME)
5600 *tp = replace_ssa_name (t, p->vars_map, p->to_context);
5601 else if (TREE_CODE (t) == LABEL_DECL)
5603 if (p->new_label_map)
5605 struct tree_map in, *out;
5606 in.base.from = t;
5607 out = (struct tree_map *)
5608 htab_find_with_hash (p->new_label_map, &in, DECL_UID (t));
5609 if (out)
5610 *tp = t = out->to;
5613 DECL_CONTEXT (t) = p->to_context;
5615 else if (p->remap_decls_p)
5617 /* Replace T with its duplicate. T should no longer appear in the
5618 parent function, so this looks wasteful; however, it may appear
5619 in referenced_vars, and more importantly, as virtual operands of
5620 statements, and in alias lists of other variables. It would be
5621 quite difficult to expunge it from all those places. ??? It might
5622 suffice to do this for addressable variables. */
5623 if ((TREE_CODE (t) == VAR_DECL
5624 && !is_global_var (t))
5625 || TREE_CODE (t) == CONST_DECL)
5626 replace_by_duplicate_decl (tp, p->vars_map, p->to_context);
5628 if (SSA_VAR_P (t)
5629 && gimple_in_ssa_p (cfun))
5631 push_cfun (DECL_STRUCT_FUNCTION (p->to_context));
5632 add_referenced_var (*tp);
5633 pop_cfun ();
5636 *walk_subtrees = 0;
5638 else if (TYPE_P (t))
5639 *walk_subtrees = 0;
5641 return NULL_TREE;
5644 /* Like move_stmt_op, but for gimple statements.
5646 Helper for move_block_to_fn. Set GIMPLE_BLOCK in every expression
5647 contained in the current statement in *GSI_P and change the
5648 DECL_CONTEXT of every local variable referenced in the current
5649 statement. */
5651 static tree
5652 move_stmt_r (gimple_stmt_iterator *gsi_p, bool *handled_ops_p,
5653 struct walk_stmt_info *wi)
5655 struct move_stmt_d *p = (struct move_stmt_d *) wi->info;
5656 gimple stmt = gsi_stmt (*gsi_p);
5657 tree block = gimple_block (stmt);
5659 if (p->orig_block == NULL_TREE
5660 || block == p->orig_block
5661 || block == NULL_TREE)
5662 gimple_set_block (stmt, p->new_block);
5663 #ifdef ENABLE_CHECKING
5664 else if (block != p->new_block)
5666 while (block && block != p->orig_block)
5667 block = BLOCK_SUPERCONTEXT (block);
5668 gcc_assert (block);
5670 #endif
5672 if (is_gimple_omp (stmt)
5673 && gimple_code (stmt) != GIMPLE_OMP_RETURN
5674 && gimple_code (stmt) != GIMPLE_OMP_CONTINUE)
5676 /* Do not remap variables inside OMP directives. Variables
5677 referenced in clauses and directive header belong to the
5678 parent function and should not be moved into the child
5679 function. */
5680 bool save_remap_decls_p = p->remap_decls_p;
5681 p->remap_decls_p = false;
5682 *handled_ops_p = true;
5684 walk_gimple_seq (gimple_omp_body (stmt), move_stmt_r, move_stmt_op, wi);
5686 p->remap_decls_p = save_remap_decls_p;
5689 return NULL_TREE;
5692 /* Marks virtual operands of all statements in basic blocks BBS for
5693 renaming. */
5695 void
5696 mark_virtual_ops_in_bb (basic_block bb)
5698 gimple_stmt_iterator gsi;
5700 for (gsi = gsi_start_phis (bb); !gsi_end_p (gsi); gsi_next (&gsi))
5701 mark_virtual_ops_for_renaming (gsi_stmt (gsi));
5703 for (gsi = gsi_start_bb (bb); !gsi_end_p (gsi); gsi_next (&gsi))
5704 mark_virtual_ops_for_renaming (gsi_stmt (gsi));
5707 /* Move basic block BB from function CFUN to function DEST_FN. The
5708 block is moved out of the original linked list and placed after
5709 block AFTER in the new list. Also, the block is removed from the
5710 original array of blocks and placed in DEST_FN's array of blocks.
5711 If UPDATE_EDGE_COUNT_P is true, the edge counts on both CFGs is
5712 updated to reflect the moved edges.
5714 The local variables are remapped to new instances, VARS_MAP is used
5715 to record the mapping. */
5717 static void
5718 move_block_to_fn (struct function *dest_cfun, basic_block bb,
5719 basic_block after, bool update_edge_count_p,
5720 struct move_stmt_d *d, int eh_offset)
5722 struct control_flow_graph *cfg;
5723 edge_iterator ei;
5724 edge e;
5725 gimple_stmt_iterator si;
5726 unsigned old_len, new_len;
5728 /* Remove BB from dominance structures. */
5729 delete_from_dominance_info (CDI_DOMINATORS, bb);
5730 if (current_loops)
5731 remove_bb_from_loops (bb);
5733 /* Link BB to the new linked list. */
5734 move_block_after (bb, after);
5736 /* Update the edge count in the corresponding flowgraphs. */
5737 if (update_edge_count_p)
5738 FOR_EACH_EDGE (e, ei, bb->succs)
5740 cfun->cfg->x_n_edges--;
5741 dest_cfun->cfg->x_n_edges++;
5744 /* Remove BB from the original basic block array. */
5745 VEC_replace (basic_block, cfun->cfg->x_basic_block_info, bb->index, NULL);
5746 cfun->cfg->x_n_basic_blocks--;
5748 /* Grow DEST_CFUN's basic block array if needed. */
5749 cfg = dest_cfun->cfg;
5750 cfg->x_n_basic_blocks++;
5751 if (bb->index >= cfg->x_last_basic_block)
5752 cfg->x_last_basic_block = bb->index + 1;
5754 old_len = VEC_length (basic_block, cfg->x_basic_block_info);
5755 if ((unsigned) cfg->x_last_basic_block >= old_len)
5757 new_len = cfg->x_last_basic_block + (cfg->x_last_basic_block + 3) / 4;
5758 VEC_safe_grow_cleared (basic_block, gc, cfg->x_basic_block_info,
5759 new_len);
5762 VEC_replace (basic_block, cfg->x_basic_block_info,
5763 bb->index, bb);
5765 /* Remap the variables in phi nodes. */
5766 for (si = gsi_start_phis (bb); !gsi_end_p (si); )
5768 gimple phi = gsi_stmt (si);
5769 use_operand_p use;
5770 tree op = PHI_RESULT (phi);
5771 ssa_op_iter oi;
5773 if (!is_gimple_reg (op))
5775 /* Remove the phi nodes for virtual operands (alias analysis will be
5776 run for the new function, anyway). */
5777 remove_phi_node (&si, true);
5778 continue;
5781 SET_PHI_RESULT (phi,
5782 replace_ssa_name (op, d->vars_map, dest_cfun->decl));
5783 FOR_EACH_PHI_ARG (use, phi, oi, SSA_OP_USE)
5785 op = USE_FROM_PTR (use);
5786 if (TREE_CODE (op) == SSA_NAME)
5787 SET_USE (use, replace_ssa_name (op, d->vars_map, dest_cfun->decl));
5790 gsi_next (&si);
5793 for (si = gsi_start_bb (bb); !gsi_end_p (si); gsi_next (&si))
5795 gimple stmt = gsi_stmt (si);
5796 int region;
5797 struct walk_stmt_info wi;
5799 memset (&wi, 0, sizeof (wi));
5800 wi.info = d;
5801 walk_gimple_stmt (&si, move_stmt_r, move_stmt_op, &wi);
5803 if (gimple_code (stmt) == GIMPLE_LABEL)
5805 tree label = gimple_label_label (stmt);
5806 int uid = LABEL_DECL_UID (label);
5808 gcc_assert (uid > -1);
5810 old_len = VEC_length (basic_block, cfg->x_label_to_block_map);
5811 if (old_len <= (unsigned) uid)
5813 new_len = 3 * uid / 2 + 1;
5814 VEC_safe_grow_cleared (basic_block, gc,
5815 cfg->x_label_to_block_map, new_len);
5818 VEC_replace (basic_block, cfg->x_label_to_block_map, uid, bb);
5819 VEC_replace (basic_block, cfun->cfg->x_label_to_block_map, uid, NULL);
5821 gcc_assert (DECL_CONTEXT (label) == dest_cfun->decl);
5823 if (uid >= dest_cfun->cfg->last_label_uid)
5824 dest_cfun->cfg->last_label_uid = uid + 1;
5826 else if (gimple_code (stmt) == GIMPLE_RESX && eh_offset != 0)
5827 gimple_resx_set_region (stmt, gimple_resx_region (stmt) + eh_offset);
5829 region = lookup_stmt_eh_region (stmt);
5830 if (region >= 0)
5832 add_stmt_to_eh_region_fn (dest_cfun, stmt, region + eh_offset);
5833 remove_stmt_from_eh_region (stmt);
5834 gimple_duplicate_stmt_histograms (dest_cfun, stmt, cfun, stmt);
5835 gimple_remove_stmt_histograms (cfun, stmt);
5838 /* We cannot leave any operands allocated from the operand caches of
5839 the current function. */
5840 free_stmt_operands (stmt);
5841 push_cfun (dest_cfun);
5842 update_stmt (stmt);
5843 pop_cfun ();
5846 FOR_EACH_EDGE (e, ei, bb->succs)
5847 if (e->goto_locus)
5849 tree block = e->goto_block;
5850 if (d->orig_block == NULL_TREE
5851 || block == d->orig_block)
5852 e->goto_block = d->new_block;
5853 #ifdef ENABLE_CHECKING
5854 else if (block != d->new_block)
5856 while (block && block != d->orig_block)
5857 block = BLOCK_SUPERCONTEXT (block);
5858 gcc_assert (block);
5860 #endif
5864 /* Examine the statements in BB (which is in SRC_CFUN); find and return
5865 the outermost EH region. Use REGION as the incoming base EH region. */
5867 static int
5868 find_outermost_region_in_block (struct function *src_cfun,
5869 basic_block bb, int region)
5871 gimple_stmt_iterator si;
5873 for (si = gsi_start_bb (bb); !gsi_end_p (si); gsi_next (&si))
5875 gimple stmt = gsi_stmt (si);
5876 int stmt_region;
5878 if (gimple_code (stmt) == GIMPLE_RESX)
5879 stmt_region = gimple_resx_region (stmt);
5880 else
5881 stmt_region = lookup_stmt_eh_region_fn (src_cfun, stmt);
5882 if (stmt_region > 0)
5884 if (region < 0)
5885 region = stmt_region;
5886 else if (stmt_region != region)
5888 region = eh_region_outermost (src_cfun, stmt_region, region);
5889 gcc_assert (region != -1);
5894 return region;
5897 static tree
5898 new_label_mapper (tree decl, void *data)
5900 htab_t hash = (htab_t) data;
5901 struct tree_map *m;
5902 void **slot;
5904 gcc_assert (TREE_CODE (decl) == LABEL_DECL);
5906 m = XNEW (struct tree_map);
5907 m->hash = DECL_UID (decl);
5908 m->base.from = decl;
5909 m->to = create_artificial_label ();
5910 LABEL_DECL_UID (m->to) = LABEL_DECL_UID (decl);
5911 if (LABEL_DECL_UID (m->to) >= cfun->cfg->last_label_uid)
5912 cfun->cfg->last_label_uid = LABEL_DECL_UID (m->to) + 1;
5914 slot = htab_find_slot_with_hash (hash, m, m->hash, INSERT);
5915 gcc_assert (*slot == NULL);
5917 *slot = m;
5919 return m->to;
5922 /* Change DECL_CONTEXT of all BLOCK_VARS in block, including
5923 subblocks. */
5925 static void
5926 replace_block_vars_by_duplicates (tree block, struct pointer_map_t *vars_map,
5927 tree to_context)
5929 tree *tp, t;
5931 for (tp = &BLOCK_VARS (block); *tp; tp = &TREE_CHAIN (*tp))
5933 t = *tp;
5934 if (TREE_CODE (t) != VAR_DECL && TREE_CODE (t) != CONST_DECL)
5935 continue;
5936 replace_by_duplicate_decl (&t, vars_map, to_context);
5937 if (t != *tp)
5939 if (TREE_CODE (*tp) == VAR_DECL && DECL_HAS_VALUE_EXPR_P (*tp))
5941 SET_DECL_VALUE_EXPR (t, DECL_VALUE_EXPR (*tp));
5942 DECL_HAS_VALUE_EXPR_P (t) = 1;
5944 TREE_CHAIN (t) = TREE_CHAIN (*tp);
5945 *tp = t;
5949 for (block = BLOCK_SUBBLOCKS (block); block; block = BLOCK_CHAIN (block))
5950 replace_block_vars_by_duplicates (block, vars_map, to_context);
5953 /* Move a single-entry, single-exit region delimited by ENTRY_BB and
5954 EXIT_BB to function DEST_CFUN. The whole region is replaced by a
5955 single basic block in the original CFG and the new basic block is
5956 returned. DEST_CFUN must not have a CFG yet.
5958 Note that the region need not be a pure SESE region. Blocks inside
5959 the region may contain calls to abort/exit. The only restriction
5960 is that ENTRY_BB should be the only entry point and it must
5961 dominate EXIT_BB.
5963 Change TREE_BLOCK of all statements in ORIG_BLOCK to the new
5964 functions outermost BLOCK, move all subblocks of ORIG_BLOCK
5965 to the new function.
5967 All local variables referenced in the region are assumed to be in
5968 the corresponding BLOCK_VARS and unexpanded variable lists
5969 associated with DEST_CFUN. */
5971 basic_block
5972 move_sese_region_to_fn (struct function *dest_cfun, basic_block entry_bb,
5973 basic_block exit_bb, tree orig_block)
5975 VEC(basic_block,heap) *bbs, *dom_bbs;
5976 basic_block dom_entry = get_immediate_dominator (CDI_DOMINATORS, entry_bb);
5977 basic_block after, bb, *entry_pred, *exit_succ, abb;
5978 struct function *saved_cfun = cfun;
5979 int *entry_flag, *exit_flag, eh_offset;
5980 unsigned *entry_prob, *exit_prob;
5981 unsigned i, num_entry_edges, num_exit_edges;
5982 edge e;
5983 edge_iterator ei;
5984 htab_t new_label_map;
5985 struct pointer_map_t *vars_map;
5986 struct loop *loop = entry_bb->loop_father;
5987 struct move_stmt_d d;
5989 /* If ENTRY does not strictly dominate EXIT, this cannot be an SESE
5990 region. */
5991 gcc_assert (entry_bb != exit_bb
5992 && (!exit_bb
5993 || dominated_by_p (CDI_DOMINATORS, exit_bb, entry_bb)));
5995 /* Collect all the blocks in the region. Manually add ENTRY_BB
5996 because it won't be added by dfs_enumerate_from. */
5997 bbs = NULL;
5998 VEC_safe_push (basic_block, heap, bbs, entry_bb);
5999 gather_blocks_in_sese_region (entry_bb, exit_bb, &bbs);
6001 /* The blocks that used to be dominated by something in BBS will now be
6002 dominated by the new block. */
6003 dom_bbs = get_dominated_by_region (CDI_DOMINATORS,
6004 VEC_address (basic_block, bbs),
6005 VEC_length (basic_block, bbs));
6007 /* Detach ENTRY_BB and EXIT_BB from CFUN->CFG. We need to remember
6008 the predecessor edges to ENTRY_BB and the successor edges to
6009 EXIT_BB so that we can re-attach them to the new basic block that
6010 will replace the region. */
6011 num_entry_edges = EDGE_COUNT (entry_bb->preds);
6012 entry_pred = (basic_block *) xcalloc (num_entry_edges, sizeof (basic_block));
6013 entry_flag = (int *) xcalloc (num_entry_edges, sizeof (int));
6014 entry_prob = XNEWVEC (unsigned, num_entry_edges);
6015 i = 0;
6016 for (ei = ei_start (entry_bb->preds); (e = ei_safe_edge (ei)) != NULL;)
6018 entry_prob[i] = e->probability;
6019 entry_flag[i] = e->flags;
6020 entry_pred[i++] = e->src;
6021 remove_edge (e);
6024 if (exit_bb)
6026 num_exit_edges = EDGE_COUNT (exit_bb->succs);
6027 exit_succ = (basic_block *) xcalloc (num_exit_edges,
6028 sizeof (basic_block));
6029 exit_flag = (int *) xcalloc (num_exit_edges, sizeof (int));
6030 exit_prob = XNEWVEC (unsigned, num_exit_edges);
6031 i = 0;
6032 for (ei = ei_start (exit_bb->succs); (e = ei_safe_edge (ei)) != NULL;)
6034 exit_prob[i] = e->probability;
6035 exit_flag[i] = e->flags;
6036 exit_succ[i++] = e->dest;
6037 remove_edge (e);
6040 else
6042 num_exit_edges = 0;
6043 exit_succ = NULL;
6044 exit_flag = NULL;
6045 exit_prob = NULL;
6048 /* Switch context to the child function to initialize DEST_FN's CFG. */
6049 gcc_assert (dest_cfun->cfg == NULL);
6050 push_cfun (dest_cfun);
6052 init_empty_tree_cfg ();
6054 /* Initialize EH information for the new function. */
6055 eh_offset = 0;
6056 new_label_map = NULL;
6057 if (saved_cfun->eh)
6059 int region = -1;
6061 for (i = 0; VEC_iterate (basic_block, bbs, i, bb); i++)
6062 region = find_outermost_region_in_block (saved_cfun, bb, region);
6064 init_eh_for_function ();
6065 if (region != -1)
6067 new_label_map = htab_create (17, tree_map_hash, tree_map_eq, free);
6068 eh_offset = duplicate_eh_regions (saved_cfun, new_label_mapper,
6069 new_label_map, region, 0);
6073 pop_cfun ();
6075 /* Move blocks from BBS into DEST_CFUN. */
6076 gcc_assert (VEC_length (basic_block, bbs) >= 2);
6077 after = dest_cfun->cfg->x_entry_block_ptr;
6078 vars_map = pointer_map_create ();
6080 memset (&d, 0, sizeof (d));
6081 d.vars_map = vars_map;
6082 d.from_context = cfun->decl;
6083 d.to_context = dest_cfun->decl;
6084 d.new_label_map = new_label_map;
6085 d.remap_decls_p = true;
6086 d.orig_block = orig_block;
6087 d.new_block = DECL_INITIAL (dest_cfun->decl);
6089 for (i = 0; VEC_iterate (basic_block, bbs, i, bb); i++)
6091 /* No need to update edge counts on the last block. It has
6092 already been updated earlier when we detached the region from
6093 the original CFG. */
6094 move_block_to_fn (dest_cfun, bb, after, bb != exit_bb, &d, eh_offset);
6095 after = bb;
6098 /* Rewire BLOCK_SUBBLOCKS of orig_block. */
6099 if (orig_block)
6101 tree block;
6102 gcc_assert (BLOCK_SUBBLOCKS (DECL_INITIAL (dest_cfun->decl))
6103 == NULL_TREE);
6104 BLOCK_SUBBLOCKS (DECL_INITIAL (dest_cfun->decl))
6105 = BLOCK_SUBBLOCKS (orig_block);
6106 for (block = BLOCK_SUBBLOCKS (orig_block);
6107 block; block = BLOCK_CHAIN (block))
6108 BLOCK_SUPERCONTEXT (block) = DECL_INITIAL (dest_cfun->decl);
6109 BLOCK_SUBBLOCKS (orig_block) = NULL_TREE;
6112 replace_block_vars_by_duplicates (DECL_INITIAL (dest_cfun->decl),
6113 vars_map, dest_cfun->decl);
6115 if (new_label_map)
6116 htab_delete (new_label_map);
6117 pointer_map_destroy (vars_map);
6119 /* Rewire the entry and exit blocks. The successor to the entry
6120 block turns into the successor of DEST_FN's ENTRY_BLOCK_PTR in
6121 the child function. Similarly, the predecessor of DEST_FN's
6122 EXIT_BLOCK_PTR turns into the predecessor of EXIT_BLOCK_PTR. We
6123 need to switch CFUN between DEST_CFUN and SAVED_CFUN so that the
6124 various CFG manipulation function get to the right CFG.
6126 FIXME, this is silly. The CFG ought to become a parameter to
6127 these helpers. */
6128 push_cfun (dest_cfun);
6129 make_edge (ENTRY_BLOCK_PTR, entry_bb, EDGE_FALLTHRU);
6130 if (exit_bb)
6131 make_edge (exit_bb, EXIT_BLOCK_PTR, 0);
6132 pop_cfun ();
6134 /* Back in the original function, the SESE region has disappeared,
6135 create a new basic block in its place. */
6136 bb = create_empty_bb (entry_pred[0]);
6137 if (current_loops)
6138 add_bb_to_loop (bb, loop);
6139 for (i = 0; i < num_entry_edges; i++)
6141 e = make_edge (entry_pred[i], bb, entry_flag[i]);
6142 e->probability = entry_prob[i];
6145 for (i = 0; i < num_exit_edges; i++)
6147 e = make_edge (bb, exit_succ[i], exit_flag[i]);
6148 e->probability = exit_prob[i];
6151 set_immediate_dominator (CDI_DOMINATORS, bb, dom_entry);
6152 for (i = 0; VEC_iterate (basic_block, dom_bbs, i, abb); i++)
6153 set_immediate_dominator (CDI_DOMINATORS, abb, bb);
6154 VEC_free (basic_block, heap, dom_bbs);
6156 if (exit_bb)
6158 free (exit_prob);
6159 free (exit_flag);
6160 free (exit_succ);
6162 free (entry_prob);
6163 free (entry_flag);
6164 free (entry_pred);
6165 VEC_free (basic_block, heap, bbs);
6167 return bb;
6171 /* Dump FUNCTION_DECL FN to file FILE using FLAGS (see TDF_* in tree-pass.h)
6174 void
6175 dump_function_to_file (tree fn, FILE *file, int flags)
6177 tree arg, vars, var;
6178 struct function *dsf;
6179 bool ignore_topmost_bind = false, any_var = false;
6180 basic_block bb;
6181 tree chain;
6183 fprintf (file, "%s (", lang_hooks.decl_printable_name (fn, 2));
6185 arg = DECL_ARGUMENTS (fn);
6186 while (arg)
6188 print_generic_expr (file, TREE_TYPE (arg), dump_flags);
6189 fprintf (file, " ");
6190 print_generic_expr (file, arg, dump_flags);
6191 if (flags & TDF_VERBOSE)
6192 print_node (file, "", arg, 4);
6193 if (TREE_CHAIN (arg))
6194 fprintf (file, ", ");
6195 arg = TREE_CHAIN (arg);
6197 fprintf (file, ")\n");
6199 if (flags & TDF_VERBOSE)
6200 print_node (file, "", fn, 2);
6202 dsf = DECL_STRUCT_FUNCTION (fn);
6203 if (dsf && (flags & TDF_DETAILS))
6204 dump_eh_tree (file, dsf);
6206 if (flags & TDF_RAW && !gimple_has_body_p (fn))
6208 dump_node (fn, TDF_SLIM | flags, file);
6209 return;
6212 /* Switch CFUN to point to FN. */
6213 push_cfun (DECL_STRUCT_FUNCTION (fn));
6215 /* When GIMPLE is lowered, the variables are no longer available in
6216 BIND_EXPRs, so display them separately. */
6217 if (cfun && cfun->decl == fn && cfun->local_decls)
6219 ignore_topmost_bind = true;
6221 fprintf (file, "{\n");
6222 for (vars = cfun->local_decls; vars; vars = TREE_CHAIN (vars))
6224 var = TREE_VALUE (vars);
6226 print_generic_decl (file, var, flags);
6227 if (flags & TDF_VERBOSE)
6228 print_node (file, "", var, 4);
6229 fprintf (file, "\n");
6231 any_var = true;
6235 if (cfun && cfun->decl == fn && cfun->cfg && basic_block_info)
6237 /* If the CFG has been built, emit a CFG-based dump. */
6238 check_bb_profile (ENTRY_BLOCK_PTR, file);
6239 if (!ignore_topmost_bind)
6240 fprintf (file, "{\n");
6242 if (any_var && n_basic_blocks)
6243 fprintf (file, "\n");
6245 FOR_EACH_BB (bb)
6246 gimple_dump_bb (bb, file, 2, flags);
6248 fprintf (file, "}\n");
6249 check_bb_profile (EXIT_BLOCK_PTR, file);
6251 else if (DECL_SAVED_TREE (fn) == NULL)
6253 /* The function is now in GIMPLE form but the CFG has not been
6254 built yet. Emit the single sequence of GIMPLE statements
6255 that make up its body. */
6256 gimple_seq body = gimple_body (fn);
6258 if (gimple_seq_first_stmt (body)
6259 && gimple_seq_first_stmt (body) == gimple_seq_last_stmt (body)
6260 && gimple_code (gimple_seq_first_stmt (body)) == GIMPLE_BIND)
6261 print_gimple_seq (file, body, 0, flags);
6262 else
6264 if (!ignore_topmost_bind)
6265 fprintf (file, "{\n");
6267 if (any_var)
6268 fprintf (file, "\n");
6270 print_gimple_seq (file, body, 2, flags);
6271 fprintf (file, "}\n");
6274 else
6276 int indent;
6278 /* Make a tree based dump. */
6279 chain = DECL_SAVED_TREE (fn);
6281 if (chain && TREE_CODE (chain) == BIND_EXPR)
6283 if (ignore_topmost_bind)
6285 chain = BIND_EXPR_BODY (chain);
6286 indent = 2;
6288 else
6289 indent = 0;
6291 else
6293 if (!ignore_topmost_bind)
6294 fprintf (file, "{\n");
6295 indent = 2;
6298 if (any_var)
6299 fprintf (file, "\n");
6301 print_generic_stmt_indented (file, chain, flags, indent);
6302 if (ignore_topmost_bind)
6303 fprintf (file, "}\n");
6306 fprintf (file, "\n\n");
6308 /* Restore CFUN. */
6309 pop_cfun ();
6313 /* Dump FUNCTION_DECL FN to stderr using FLAGS (see TDF_* in tree.h) */
6315 void
6316 debug_function (tree fn, int flags)
6318 dump_function_to_file (fn, stderr, flags);
6322 /* Print on FILE the indexes for the predecessors of basic_block BB. */
6324 static void
6325 print_pred_bbs (FILE *file, basic_block bb)
6327 edge e;
6328 edge_iterator ei;
6330 FOR_EACH_EDGE (e, ei, bb->preds)
6331 fprintf (file, "bb_%d ", e->src->index);
6335 /* Print on FILE the indexes for the successors of basic_block BB. */
6337 static void
6338 print_succ_bbs (FILE *file, basic_block bb)
6340 edge e;
6341 edge_iterator ei;
6343 FOR_EACH_EDGE (e, ei, bb->succs)
6344 fprintf (file, "bb_%d ", e->dest->index);
6347 /* Print to FILE the basic block BB following the VERBOSITY level. */
6349 void
6350 print_loops_bb (FILE *file, basic_block bb, int indent, int verbosity)
6352 char *s_indent = (char *) alloca ((size_t) indent + 1);
6353 memset ((void *) s_indent, ' ', (size_t) indent);
6354 s_indent[indent] = '\0';
6356 /* Print basic_block's header. */
6357 if (verbosity >= 2)
6359 fprintf (file, "%s bb_%d (preds = {", s_indent, bb->index);
6360 print_pred_bbs (file, bb);
6361 fprintf (file, "}, succs = {");
6362 print_succ_bbs (file, bb);
6363 fprintf (file, "})\n");
6366 /* Print basic_block's body. */
6367 if (verbosity >= 3)
6369 fprintf (file, "%s {\n", s_indent);
6370 gimple_dump_bb (bb, file, indent + 4, TDF_VOPS|TDF_MEMSYMS);
6371 fprintf (file, "%s }\n", s_indent);
6375 static void print_loop_and_siblings (FILE *, struct loop *, int, int);
6377 /* Pretty print LOOP on FILE, indented INDENT spaces. Following
6378 VERBOSITY level this outputs the contents of the loop, or just its
6379 structure. */
6381 static void
6382 print_loop (FILE *file, struct loop *loop, int indent, int verbosity)
6384 char *s_indent;
6385 basic_block bb;
6387 if (loop == NULL)
6388 return;
6390 s_indent = (char *) alloca ((size_t) indent + 1);
6391 memset ((void *) s_indent, ' ', (size_t) indent);
6392 s_indent[indent] = '\0';
6394 /* Print loop's header. */
6395 fprintf (file, "%sloop_%d (header = %d, latch = %d", s_indent,
6396 loop->num, loop->header->index, loop->latch->index);
6397 fprintf (file, ", niter = ");
6398 print_generic_expr (file, loop->nb_iterations, 0);
6400 if (loop->any_upper_bound)
6402 fprintf (file, ", upper_bound = ");
6403 dump_double_int (file, loop->nb_iterations_upper_bound, true);
6406 if (loop->any_estimate)
6408 fprintf (file, ", estimate = ");
6409 dump_double_int (file, loop->nb_iterations_estimate, true);
6411 fprintf (file, ")\n");
6413 /* Print loop's body. */
6414 if (verbosity >= 1)
6416 fprintf (file, "%s{\n", s_indent);
6417 FOR_EACH_BB (bb)
6418 if (bb->loop_father == loop)
6419 print_loops_bb (file, bb, indent, verbosity);
6421 print_loop_and_siblings (file, loop->inner, indent + 2, verbosity);
6422 fprintf (file, "%s}\n", s_indent);
6426 /* Print the LOOP and its sibling loops on FILE, indented INDENT
6427 spaces. Following VERBOSITY level this outputs the contents of the
6428 loop, or just its structure. */
6430 static void
6431 print_loop_and_siblings (FILE *file, struct loop *loop, int indent, int verbosity)
6433 if (loop == NULL)
6434 return;
6436 print_loop (file, loop, indent, verbosity);
6437 print_loop_and_siblings (file, loop->next, indent, verbosity);
6440 /* Follow a CFG edge from the entry point of the program, and on entry
6441 of a loop, pretty print the loop structure on FILE. */
6443 void
6444 print_loops (FILE *file, int verbosity)
6446 basic_block bb;
6448 bb = ENTRY_BLOCK_PTR;
6449 if (bb && bb->loop_father)
6450 print_loop_and_siblings (file, bb->loop_father, 0, verbosity);
6454 /* Debugging loops structure at tree level, at some VERBOSITY level. */
6456 void
6457 debug_loops (int verbosity)
6459 print_loops (stderr, verbosity);
6462 /* Print on stderr the code of LOOP, at some VERBOSITY level. */
6464 void
6465 debug_loop (struct loop *loop, int verbosity)
6467 print_loop (stderr, loop, 0, verbosity);
6470 /* Print on stderr the code of loop number NUM, at some VERBOSITY
6471 level. */
6473 void
6474 debug_loop_num (unsigned num, int verbosity)
6476 debug_loop (get_loop (num), verbosity);
6479 /* Return true if BB ends with a call, possibly followed by some
6480 instructions that must stay with the call. Return false,
6481 otherwise. */
6483 static bool
6484 gimple_block_ends_with_call_p (basic_block bb)
6486 gimple_stmt_iterator gsi = gsi_last_bb (bb);
6487 return is_gimple_call (gsi_stmt (gsi));
6491 /* Return true if BB ends with a conditional branch. Return false,
6492 otherwise. */
6494 static bool
6495 gimple_block_ends_with_condjump_p (const_basic_block bb)
6497 gimple stmt = last_stmt (CONST_CAST_BB (bb));
6498 return (stmt && gimple_code (stmt) == GIMPLE_COND);
6502 /* Return true if we need to add fake edge to exit at statement T.
6503 Helper function for gimple_flow_call_edges_add. */
6505 static bool
6506 need_fake_edge_p (gimple t)
6508 tree fndecl = NULL_TREE;
6509 int call_flags = 0;
6511 /* NORETURN and LONGJMP calls already have an edge to exit.
6512 CONST and PURE calls do not need one.
6513 We don't currently check for CONST and PURE here, although
6514 it would be a good idea, because those attributes are
6515 figured out from the RTL in mark_constant_function, and
6516 the counter incrementation code from -fprofile-arcs
6517 leads to different results from -fbranch-probabilities. */
6518 if (is_gimple_call (t))
6520 fndecl = gimple_call_fndecl (t);
6521 call_flags = gimple_call_flags (t);
6524 if (is_gimple_call (t)
6525 && fndecl
6526 && DECL_BUILT_IN (fndecl)
6527 && (call_flags & ECF_NOTHROW)
6528 && !(call_flags & ECF_RETURNS_TWICE)
6529 /* fork() doesn't really return twice, but the effect of
6530 wrapping it in __gcov_fork() which calls __gcov_flush()
6531 and clears the counters before forking has the same
6532 effect as returning twice. Force a fake edge. */
6533 && !(DECL_BUILT_IN_CLASS (fndecl) == BUILT_IN_NORMAL
6534 && DECL_FUNCTION_CODE (fndecl) == BUILT_IN_FORK))
6535 return false;
6537 if (is_gimple_call (t)
6538 && !(call_flags & ECF_NORETURN))
6539 return true;
6541 if (gimple_code (t) == GIMPLE_ASM
6542 && (gimple_asm_volatile_p (t) || gimple_asm_input_p (t)))
6543 return true;
6545 return false;
6549 /* Add fake edges to the function exit for any non constant and non
6550 noreturn calls, volatile inline assembly in the bitmap of blocks
6551 specified by BLOCKS or to the whole CFG if BLOCKS is zero. Return
6552 the number of blocks that were split.
6554 The goal is to expose cases in which entering a basic block does
6555 not imply that all subsequent instructions must be executed. */
6557 static int
6558 gimple_flow_call_edges_add (sbitmap blocks)
6560 int i;
6561 int blocks_split = 0;
6562 int last_bb = last_basic_block;
6563 bool check_last_block = false;
6565 if (n_basic_blocks == NUM_FIXED_BLOCKS)
6566 return 0;
6568 if (! blocks)
6569 check_last_block = true;
6570 else
6571 check_last_block = TEST_BIT (blocks, EXIT_BLOCK_PTR->prev_bb->index);
6573 /* In the last basic block, before epilogue generation, there will be
6574 a fallthru edge to EXIT. Special care is required if the last insn
6575 of the last basic block is a call because make_edge folds duplicate
6576 edges, which would result in the fallthru edge also being marked
6577 fake, which would result in the fallthru edge being removed by
6578 remove_fake_edges, which would result in an invalid CFG.
6580 Moreover, we can't elide the outgoing fake edge, since the block
6581 profiler needs to take this into account in order to solve the minimal
6582 spanning tree in the case that the call doesn't return.
6584 Handle this by adding a dummy instruction in a new last basic block. */
6585 if (check_last_block)
6587 basic_block bb = EXIT_BLOCK_PTR->prev_bb;
6588 gimple_stmt_iterator gsi = gsi_last_bb (bb);
6589 gimple t = NULL;
6591 if (!gsi_end_p (gsi))
6592 t = gsi_stmt (gsi);
6594 if (t && need_fake_edge_p (t))
6596 edge e;
6598 e = find_edge (bb, EXIT_BLOCK_PTR);
6599 if (e)
6601 gsi_insert_on_edge (e, gimple_build_nop ());
6602 gsi_commit_edge_inserts ();
6607 /* Now add fake edges to the function exit for any non constant
6608 calls since there is no way that we can determine if they will
6609 return or not... */
6610 for (i = 0; i < last_bb; i++)
6612 basic_block bb = BASIC_BLOCK (i);
6613 gimple_stmt_iterator gsi;
6614 gimple stmt, last_stmt;
6616 if (!bb)
6617 continue;
6619 if (blocks && !TEST_BIT (blocks, i))
6620 continue;
6622 gsi = gsi_last_bb (bb);
6623 if (!gsi_end_p (gsi))
6625 last_stmt = gsi_stmt (gsi);
6628 stmt = gsi_stmt (gsi);
6629 if (need_fake_edge_p (stmt))
6631 edge e;
6633 /* The handling above of the final block before the
6634 epilogue should be enough to verify that there is
6635 no edge to the exit block in CFG already.
6636 Calling make_edge in such case would cause us to
6637 mark that edge as fake and remove it later. */
6638 #ifdef ENABLE_CHECKING
6639 if (stmt == last_stmt)
6641 e = find_edge (bb, EXIT_BLOCK_PTR);
6642 gcc_assert (e == NULL);
6644 #endif
6646 /* Note that the following may create a new basic block
6647 and renumber the existing basic blocks. */
6648 if (stmt != last_stmt)
6650 e = split_block (bb, stmt);
6651 if (e)
6652 blocks_split++;
6654 make_edge (bb, EXIT_BLOCK_PTR, EDGE_FAKE);
6656 gsi_prev (&gsi);
6658 while (!gsi_end_p (gsi));
6662 if (blocks_split)
6663 verify_flow_info ();
6665 return blocks_split;
6668 /* Purge dead abnormal call edges from basic block BB. */
6670 bool
6671 gimple_purge_dead_abnormal_call_edges (basic_block bb)
6673 bool changed = gimple_purge_dead_eh_edges (bb);
6675 if (cfun->has_nonlocal_label)
6677 gimple stmt = last_stmt (bb);
6678 edge_iterator ei;
6679 edge e;
6681 if (!(stmt && stmt_can_make_abnormal_goto (stmt)))
6682 for (ei = ei_start (bb->succs); (e = ei_safe_edge (ei)); )
6684 if (e->flags & EDGE_ABNORMAL)
6686 remove_edge (e);
6687 changed = true;
6689 else
6690 ei_next (&ei);
6693 /* See gimple_purge_dead_eh_edges below. */
6694 if (changed)
6695 free_dominance_info (CDI_DOMINATORS);
6698 return changed;
6701 /* Removes edge E and all the blocks dominated by it, and updates dominance
6702 information. The IL in E->src needs to be updated separately.
6703 If dominance info is not available, only the edge E is removed.*/
6705 void
6706 remove_edge_and_dominated_blocks (edge e)
6708 VEC (basic_block, heap) *bbs_to_remove = NULL;
6709 VEC (basic_block, heap) *bbs_to_fix_dom = NULL;
6710 bitmap df, df_idom;
6711 edge f;
6712 edge_iterator ei;
6713 bool none_removed = false;
6714 unsigned i;
6715 basic_block bb, dbb;
6716 bitmap_iterator bi;
6718 if (!dom_info_available_p (CDI_DOMINATORS))
6720 remove_edge (e);
6721 return;
6724 /* No updating is needed for edges to exit. */
6725 if (e->dest == EXIT_BLOCK_PTR)
6727 if (cfgcleanup_altered_bbs)
6728 bitmap_set_bit (cfgcleanup_altered_bbs, e->src->index);
6729 remove_edge (e);
6730 return;
6733 /* First, we find the basic blocks to remove. If E->dest has a predecessor
6734 that is not dominated by E->dest, then this set is empty. Otherwise,
6735 all the basic blocks dominated by E->dest are removed.
6737 Also, to DF_IDOM we store the immediate dominators of the blocks in
6738 the dominance frontier of E (i.e., of the successors of the
6739 removed blocks, if there are any, and of E->dest otherwise). */
6740 FOR_EACH_EDGE (f, ei, e->dest->preds)
6742 if (f == e)
6743 continue;
6745 if (!dominated_by_p (CDI_DOMINATORS, f->src, e->dest))
6747 none_removed = true;
6748 break;
6752 df = BITMAP_ALLOC (NULL);
6753 df_idom = BITMAP_ALLOC (NULL);
6755 if (none_removed)
6756 bitmap_set_bit (df_idom,
6757 get_immediate_dominator (CDI_DOMINATORS, e->dest)->index);
6758 else
6760 bbs_to_remove = get_all_dominated_blocks (CDI_DOMINATORS, e->dest);
6761 for (i = 0; VEC_iterate (basic_block, bbs_to_remove, i, bb); i++)
6763 FOR_EACH_EDGE (f, ei, bb->succs)
6765 if (f->dest != EXIT_BLOCK_PTR)
6766 bitmap_set_bit (df, f->dest->index);
6769 for (i = 0; VEC_iterate (basic_block, bbs_to_remove, i, bb); i++)
6770 bitmap_clear_bit (df, bb->index);
6772 EXECUTE_IF_SET_IN_BITMAP (df, 0, i, bi)
6774 bb = BASIC_BLOCK (i);
6775 bitmap_set_bit (df_idom,
6776 get_immediate_dominator (CDI_DOMINATORS, bb)->index);
6780 if (cfgcleanup_altered_bbs)
6782 /* Record the set of the altered basic blocks. */
6783 bitmap_set_bit (cfgcleanup_altered_bbs, e->src->index);
6784 bitmap_ior_into (cfgcleanup_altered_bbs, df);
6787 /* Remove E and the cancelled blocks. */
6788 if (none_removed)
6789 remove_edge (e);
6790 else
6792 for (i = 0; VEC_iterate (basic_block, bbs_to_remove, i, bb); i++)
6793 delete_basic_block (bb);
6796 /* Update the dominance information. The immediate dominator may change only
6797 for blocks whose immediate dominator belongs to DF_IDOM:
6799 Suppose that idom(X) = Y before removal of E and idom(X) != Y after the
6800 removal. Let Z the arbitrary block such that idom(Z) = Y and
6801 Z dominates X after the removal. Before removal, there exists a path P
6802 from Y to X that avoids Z. Let F be the last edge on P that is
6803 removed, and let W = F->dest. Before removal, idom(W) = Y (since Y
6804 dominates W, and because of P, Z does not dominate W), and W belongs to
6805 the dominance frontier of E. Therefore, Y belongs to DF_IDOM. */
6806 EXECUTE_IF_SET_IN_BITMAP (df_idom, 0, i, bi)
6808 bb = BASIC_BLOCK (i);
6809 for (dbb = first_dom_son (CDI_DOMINATORS, bb);
6810 dbb;
6811 dbb = next_dom_son (CDI_DOMINATORS, dbb))
6812 VEC_safe_push (basic_block, heap, bbs_to_fix_dom, dbb);
6815 iterate_fix_dominators (CDI_DOMINATORS, bbs_to_fix_dom, true);
6817 BITMAP_FREE (df);
6818 BITMAP_FREE (df_idom);
6819 VEC_free (basic_block, heap, bbs_to_remove);
6820 VEC_free (basic_block, heap, bbs_to_fix_dom);
6823 /* Purge dead EH edges from basic block BB. */
6825 bool
6826 gimple_purge_dead_eh_edges (basic_block bb)
6828 bool changed = false;
6829 edge e;
6830 edge_iterator ei;
6831 gimple stmt = last_stmt (bb);
6833 if (stmt && stmt_can_throw_internal (stmt))
6834 return false;
6836 for (ei = ei_start (bb->succs); (e = ei_safe_edge (ei)); )
6838 if (e->flags & EDGE_EH)
6840 remove_edge_and_dominated_blocks (e);
6841 changed = true;
6843 else
6844 ei_next (&ei);
6847 return changed;
6850 bool
6851 gimple_purge_all_dead_eh_edges (const_bitmap blocks)
6853 bool changed = false;
6854 unsigned i;
6855 bitmap_iterator bi;
6857 EXECUTE_IF_SET_IN_BITMAP (blocks, 0, i, bi)
6859 basic_block bb = BASIC_BLOCK (i);
6861 /* Earlier gimple_purge_dead_eh_edges could have removed
6862 this basic block already. */
6863 gcc_assert (bb || changed);
6864 if (bb != NULL)
6865 changed |= gimple_purge_dead_eh_edges (bb);
6868 return changed;
6871 /* This function is called whenever a new edge is created or
6872 redirected. */
6874 static void
6875 gimple_execute_on_growing_pred (edge e)
6877 basic_block bb = e->dest;
6879 if (phi_nodes (bb))
6880 reserve_phi_args_for_new_edge (bb);
6883 /* This function is called immediately before edge E is removed from
6884 the edge vector E->dest->preds. */
6886 static void
6887 gimple_execute_on_shrinking_pred (edge e)
6889 if (phi_nodes (e->dest))
6890 remove_phi_args (e);
6893 /*---------------------------------------------------------------------------
6894 Helper functions for Loop versioning
6895 ---------------------------------------------------------------------------*/
6897 /* Adjust phi nodes for 'first' basic block. 'second' basic block is a copy
6898 of 'first'. Both of them are dominated by 'new_head' basic block. When
6899 'new_head' was created by 'second's incoming edge it received phi arguments
6900 on the edge by split_edge(). Later, additional edge 'e' was created to
6901 connect 'new_head' and 'first'. Now this routine adds phi args on this
6902 additional edge 'e' that new_head to second edge received as part of edge
6903 splitting. */
6905 static void
6906 gimple_lv_adjust_loop_header_phi (basic_block first, basic_block second,
6907 basic_block new_head, edge e)
6909 gimple phi1, phi2;
6910 gimple_stmt_iterator psi1, psi2;
6911 tree def;
6912 edge e2 = find_edge (new_head, second);
6914 /* Because NEW_HEAD has been created by splitting SECOND's incoming
6915 edge, we should always have an edge from NEW_HEAD to SECOND. */
6916 gcc_assert (e2 != NULL);
6918 /* Browse all 'second' basic block phi nodes and add phi args to
6919 edge 'e' for 'first' head. PHI args are always in correct order. */
6921 for (psi2 = gsi_start_phis (second),
6922 psi1 = gsi_start_phis (first);
6923 !gsi_end_p (psi2) && !gsi_end_p (psi1);
6924 gsi_next (&psi2), gsi_next (&psi1))
6926 phi1 = gsi_stmt (psi1);
6927 phi2 = gsi_stmt (psi2);
6928 def = PHI_ARG_DEF (phi2, e2->dest_idx);
6929 add_phi_arg (phi1, def, e);
6934 /* Adds a if else statement to COND_BB with condition COND_EXPR.
6935 SECOND_HEAD is the destination of the THEN and FIRST_HEAD is
6936 the destination of the ELSE part. */
6938 static void
6939 gimple_lv_add_condition_to_bb (basic_block first_head ATTRIBUTE_UNUSED,
6940 basic_block second_head ATTRIBUTE_UNUSED,
6941 basic_block cond_bb, void *cond_e)
6943 gimple_stmt_iterator gsi;
6944 gimple new_cond_expr;
6945 tree cond_expr = (tree) cond_e;
6946 edge e0;
6948 /* Build new conditional expr */
6949 new_cond_expr = gimple_build_cond_from_tree (cond_expr,
6950 NULL_TREE, NULL_TREE);
6952 /* Add new cond in cond_bb. */
6953 gsi = gsi_last_bb (cond_bb);
6954 gsi_insert_after (&gsi, new_cond_expr, GSI_NEW_STMT);
6956 /* Adjust edges appropriately to connect new head with first head
6957 as well as second head. */
6958 e0 = single_succ_edge (cond_bb);
6959 e0->flags &= ~EDGE_FALLTHRU;
6960 e0->flags |= EDGE_FALSE_VALUE;
6963 struct cfg_hooks gimple_cfg_hooks = {
6964 "gimple",
6965 gimple_verify_flow_info,
6966 gimple_dump_bb, /* dump_bb */
6967 create_bb, /* create_basic_block */
6968 gimple_redirect_edge_and_branch, /* redirect_edge_and_branch */
6969 gimple_redirect_edge_and_branch_force, /* redirect_edge_and_branch_force */
6970 gimple_can_remove_branch_p, /* can_remove_branch_p */
6971 remove_bb, /* delete_basic_block */
6972 gimple_split_block, /* split_block */
6973 gimple_move_block_after, /* move_block_after */
6974 gimple_can_merge_blocks_p, /* can_merge_blocks_p */
6975 gimple_merge_blocks, /* merge_blocks */
6976 gimple_predict_edge, /* predict_edge */
6977 gimple_predicted_by_p, /* predicted_by_p */
6978 gimple_can_duplicate_bb_p, /* can_duplicate_block_p */
6979 gimple_duplicate_bb, /* duplicate_block */
6980 gimple_split_edge, /* split_edge */
6981 gimple_make_forwarder_block, /* make_forward_block */
6982 NULL, /* tidy_fallthru_edge */
6983 gimple_block_ends_with_call_p,/* block_ends_with_call_p */
6984 gimple_block_ends_with_condjump_p, /* block_ends_with_condjump_p */
6985 gimple_flow_call_edges_add, /* flow_call_edges_add */
6986 gimple_execute_on_growing_pred, /* execute_on_growing_pred */
6987 gimple_execute_on_shrinking_pred, /* execute_on_shrinking_pred */
6988 gimple_duplicate_loop_to_header_edge, /* duplicate loop for trees */
6989 gimple_lv_add_condition_to_bb, /* lv_add_condition_to_bb */
6990 gimple_lv_adjust_loop_header_phi, /* lv_adjust_loop_header_phi*/
6991 extract_true_false_edges_from_block, /* extract_cond_bb_edges */
6992 flush_pending_stmts /* flush_pending_stmts */
6996 /* Split all critical edges. */
6998 static unsigned int
6999 split_critical_edges (void)
7001 basic_block bb;
7002 edge e;
7003 edge_iterator ei;
7005 /* split_edge can redirect edges out of SWITCH_EXPRs, which can get
7006 expensive. So we want to enable recording of edge to CASE_LABEL_EXPR
7007 mappings around the calls to split_edge. */
7008 start_recording_case_labels ();
7009 FOR_ALL_BB (bb)
7011 FOR_EACH_EDGE (e, ei, bb->succs)
7013 if (EDGE_CRITICAL_P (e) && !(e->flags & EDGE_ABNORMAL))
7014 split_edge (e);
7015 /* PRE inserts statements to edges and expects that
7016 since split_critical_edges was done beforehand, committing edge
7017 insertions will not split more edges. In addition to critical
7018 edges we must split edges that have multiple successors and
7019 end by control flow statements, such as RESX.
7020 Go ahead and split them too. This matches the logic in
7021 gimple_find_edge_insert_loc. */
7022 else if ((!single_pred_p (e->dest)
7023 || phi_nodes (e->dest)
7024 || e->dest == EXIT_BLOCK_PTR)
7025 && e->src != ENTRY_BLOCK_PTR
7026 && !(e->flags & EDGE_ABNORMAL))
7028 gimple_stmt_iterator gsi;
7030 gsi = gsi_last_bb (e->src);
7031 if (!gsi_end_p (gsi)
7032 && stmt_ends_bb_p (gsi_stmt (gsi))
7033 && gimple_code (gsi_stmt (gsi)) != GIMPLE_RETURN)
7034 split_edge (e);
7038 end_recording_case_labels ();
7039 return 0;
7042 struct gimple_opt_pass pass_split_crit_edges =
7045 GIMPLE_PASS,
7046 "crited", /* name */
7047 NULL, /* gate */
7048 split_critical_edges, /* execute */
7049 NULL, /* sub */
7050 NULL, /* next */
7051 0, /* static_pass_number */
7052 TV_TREE_SPLIT_EDGES, /* tv_id */
7053 PROP_cfg, /* properties required */
7054 PROP_no_crit_edges, /* properties_provided */
7055 0, /* properties_destroyed */
7056 0, /* todo_flags_start */
7057 TODO_dump_func | TODO_verify_flow /* todo_flags_finish */
7062 /* Build a ternary operation and gimplify it. Emit code before GSI.
7063 Return the gimple_val holding the result. */
7065 tree
7066 gimplify_build3 (gimple_stmt_iterator *gsi, enum tree_code code,
7067 tree type, tree a, tree b, tree c)
7069 tree ret;
7071 ret = fold_build3 (code, type, a, b, c);
7072 STRIP_NOPS (ret);
7074 return force_gimple_operand_gsi (gsi, ret, true, NULL, true,
7075 GSI_SAME_STMT);
7078 /* Build a binary operation and gimplify it. Emit code before GSI.
7079 Return the gimple_val holding the result. */
7081 tree
7082 gimplify_build2 (gimple_stmt_iterator *gsi, enum tree_code code,
7083 tree type, tree a, tree b)
7085 tree ret;
7087 ret = fold_build2 (code, type, a, b);
7088 STRIP_NOPS (ret);
7090 return force_gimple_operand_gsi (gsi, ret, true, NULL, true,
7091 GSI_SAME_STMT);
7094 /* Build a unary operation and gimplify it. Emit code before GSI.
7095 Return the gimple_val holding the result. */
7097 tree
7098 gimplify_build1 (gimple_stmt_iterator *gsi, enum tree_code code, tree type,
7099 tree a)
7101 tree ret;
7103 ret = fold_build1 (code, type, a);
7104 STRIP_NOPS (ret);
7106 return force_gimple_operand_gsi (gsi, ret, true, NULL, true,
7107 GSI_SAME_STMT);
7112 /* Emit return warnings. */
7114 static unsigned int
7115 execute_warn_function_return (void)
7117 source_location location;
7118 gimple last;
7119 edge e;
7120 edge_iterator ei;
7122 /* If we have a path to EXIT, then we do return. */
7123 if (TREE_THIS_VOLATILE (cfun->decl)
7124 && EDGE_COUNT (EXIT_BLOCK_PTR->preds) > 0)
7126 location = UNKNOWN_LOCATION;
7127 FOR_EACH_EDGE (e, ei, EXIT_BLOCK_PTR->preds)
7129 last = last_stmt (e->src);
7130 if (gimple_code (last) == GIMPLE_RETURN
7131 && (location = gimple_location (last)) != UNKNOWN_LOCATION)
7132 break;
7134 if (location == UNKNOWN_LOCATION)
7135 location = cfun->function_end_locus;
7136 warning (0, "%H%<noreturn%> function does return", &location);
7139 /* If we see "return;" in some basic block, then we do reach the end
7140 without returning a value. */
7141 else if (warn_return_type
7142 && !TREE_NO_WARNING (cfun->decl)
7143 && EDGE_COUNT (EXIT_BLOCK_PTR->preds) > 0
7144 && !VOID_TYPE_P (TREE_TYPE (TREE_TYPE (cfun->decl))))
7146 FOR_EACH_EDGE (e, ei, EXIT_BLOCK_PTR->preds)
7148 gimple last = last_stmt (e->src);
7149 if (gimple_code (last) == GIMPLE_RETURN
7150 && gimple_return_retval (last) == NULL
7151 && !gimple_no_warning_p (last))
7153 location = gimple_location (last);
7154 if (location == UNKNOWN_LOCATION)
7155 location = cfun->function_end_locus;
7156 warning_at (location, OPT_Wreturn_type, "control reaches end of non-void function");
7157 TREE_NO_WARNING (cfun->decl) = 1;
7158 break;
7162 return 0;
7166 /* Given a basic block B which ends with a conditional and has
7167 precisely two successors, determine which of the edges is taken if
7168 the conditional is true and which is taken if the conditional is
7169 false. Set TRUE_EDGE and FALSE_EDGE appropriately. */
7171 void
7172 extract_true_false_edges_from_block (basic_block b,
7173 edge *true_edge,
7174 edge *false_edge)
7176 edge e = EDGE_SUCC (b, 0);
7178 if (e->flags & EDGE_TRUE_VALUE)
7180 *true_edge = e;
7181 *false_edge = EDGE_SUCC (b, 1);
7183 else
7185 *false_edge = e;
7186 *true_edge = EDGE_SUCC (b, 1);
7190 struct gimple_opt_pass pass_warn_function_return =
7193 GIMPLE_PASS,
7194 NULL, /* name */
7195 NULL, /* gate */
7196 execute_warn_function_return, /* execute */
7197 NULL, /* sub */
7198 NULL, /* next */
7199 0, /* static_pass_number */
7200 TV_NONE, /* tv_id */
7201 PROP_cfg, /* properties_required */
7202 0, /* properties_provided */
7203 0, /* properties_destroyed */
7204 0, /* todo_flags_start */
7205 0 /* todo_flags_finish */
7209 /* Emit noreturn warnings. */
7211 static unsigned int
7212 execute_warn_function_noreturn (void)
7214 if (warn_missing_noreturn
7215 && !TREE_THIS_VOLATILE (cfun->decl)
7216 && EDGE_COUNT (EXIT_BLOCK_PTR->preds) == 0
7217 && !lang_hooks.missing_noreturn_ok_p (cfun->decl))
7218 warning (OPT_Wmissing_noreturn, "%Jfunction might be possible candidate "
7219 "for attribute %<noreturn%>",
7220 cfun->decl);
7221 return 0;
7224 struct gimple_opt_pass pass_warn_function_noreturn =
7227 GIMPLE_PASS,
7228 NULL, /* name */
7229 NULL, /* gate */
7230 execute_warn_function_noreturn, /* execute */
7231 NULL, /* sub */
7232 NULL, /* next */
7233 0, /* static_pass_number */
7234 TV_NONE, /* tv_id */
7235 PROP_cfg, /* properties_required */
7236 0, /* properties_provided */
7237 0, /* properties_destroyed */
7238 0, /* todo_flags_start */
7239 0 /* todo_flags_finish */