]> git.ipfire.org Git - thirdparty/gcc.git/blame - gcc/tree-cfg.c
Remove typo.
[thirdparty/gcc.git] / gcc / tree-cfg.c
CommitLineData
6de9cd9a 1/* Control flow functions for trees.
43e05e45 2 Copyright (C) 2001, 2002, 2003, 2004, 2005 Free Software Foundation, Inc.
6de9cd9a
DN
3 Contributed by Diego Novillo <dnovillo@redhat.com>
4
5This file is part of GCC.
6
7GCC is free software; you can redistribute it and/or modify
8it under the terms of the GNU General Public License as published by
9the Free Software Foundation; either version 2, or (at your option)
10any later version.
11
12GCC is distributed in the hope that it will be useful,
13but WITHOUT ANY WARRANTY; without even the implied warranty of
14MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
15GNU General Public License for more details.
16
17You should have received a copy of the GNU General Public License
18along with GCC; see the file COPYING. If not, write to
19the Free Software Foundation, 59 Temple Place - Suite 330,
20Boston, MA 02111-1307, USA. */
21
22#include "config.h"
23#include "system.h"
24#include "coretypes.h"
25#include "tm.h"
26#include "tree.h"
27#include "rtl.h"
28#include "tm_p.h"
29#include "hard-reg-set.h"
30#include "basic-block.h"
31#include "output.h"
32#include "errors.h"
33#include "flags.h"
34#include "function.h"
35#include "expr.h"
36#include "ggc.h"
37#include "langhooks.h"
38#include "diagnostic.h"
39#include "tree-flow.h"
40#include "timevar.h"
41#include "tree-dump.h"
42#include "tree-pass.h"
43#include "toplev.h"
44#include "except.h"
45#include "cfgloop.h"
42759f1e 46#include "cfglayout.h"
92b6dff3 47#include "hashtab.h"
6de9cd9a
DN
48
49/* This file contains functions for building the Control Flow Graph (CFG)
50 for a function tree. */
51
52/* Local declarations. */
53
54/* Initial capacity for the basic block array. */
55static const int initial_cfg_capacity = 20;
56
d6be0d7f
JL
57/* This hash table allows us to efficiently lookup all CASE_LABEL_EXPRs
58 which use a particular edge. The CASE_LABEL_EXPRs are chained together
59 via their TREE_CHAIN field, which we clear after we're done with the
60 hash table to prevent problems with duplication of SWITCH_EXPRs.
92b6dff3 61
d6be0d7f
JL
62 Access to this list of CASE_LABEL_EXPRs allows us to efficiently
63 update the case vector in response to edge redirections.
92b6dff3 64
d6be0d7f
JL
65 Right now this table is set up and torn down at key points in the
66 compilation process. It would be nice if we could make the table
67 more persistent. The key is getting notification of changes to
68 the CFG (particularly edge removal, creation and redirection). */
69
70struct edge_to_cases_elt
92b6dff3
JL
71{
72 /* The edge itself. Necessary for hashing and equality tests. */
73 edge e;
74
d6be0d7f
JL
75 /* The case labels associated with this edge. We link these up via
76 their TREE_CHAIN field, then we wipe out the TREE_CHAIN fields
77 when we destroy the hash table. This prevents problems when copying
78 SWITCH_EXPRs. */
79 tree case_labels;
92b6dff3
JL
80};
81
d6be0d7f 82static htab_t edge_to_cases;
92b6dff3 83
6de9cd9a
DN
84/* CFG statistics. */
85struct cfg_stats_d
86{
87 long num_merged_labels;
88};
89
90static struct cfg_stats_d cfg_stats;
91
92/* Nonzero if we found a computed goto while building basic blocks. */
93static bool found_computed_goto;
94
95/* Basic blocks and flowgraphs. */
96static basic_block create_bb (void *, void *, basic_block);
97static void create_block_annotation (basic_block);
98static void free_blocks_annotations (void);
99static void clear_blocks_annotations (void);
100static void make_blocks (tree);
101static void factor_computed_gotos (void);
6de9cd9a
DN
102
103/* Edges. */
104static void make_edges (void);
105static void make_ctrl_stmt_edges (basic_block);
106static void make_exit_edges (basic_block);
107static void make_cond_expr_edges (basic_block);
108static void make_switch_expr_edges (basic_block);
109static void make_goto_expr_edges (basic_block);
110static edge tree_redirect_edge_and_branch (edge, basic_block);
111static edge tree_try_redirect_by_replacing_jump (edge, basic_block);
112static void split_critical_edges (void);
d4e6fecb 113static bool remove_fallthru_edge (VEC(edge,gc) *);
6de9cd9a
DN
114
115/* Various helpers. */
116static inline bool stmt_starts_bb_p (tree, tree);
117static int tree_verify_flow_info (void);
118static void tree_make_forwarder_block (edge);
23ab2e4e 119static bool tree_forwarder_block_p (basic_block, bool);
6de9cd9a
DN
120static void tree_cfg2vcg (FILE *);
121
122/* Flowgraph optimization and cleanup. */
123static void tree_merge_blocks (basic_block, basic_block);
124static bool tree_can_merge_blocks_p (basic_block, basic_block);
125static void remove_bb (basic_block);
6de9cd9a
DN
126static bool cleanup_control_flow (void);
127static bool cleanup_control_expr_graph (basic_block, block_stmt_iterator);
be477406 128static edge find_taken_edge_computed_goto (basic_block, tree);
6de9cd9a
DN
129static edge find_taken_edge_cond_expr (basic_block, tree);
130static edge find_taken_edge_switch_expr (basic_block, tree);
131static tree find_case_label_for_value (tree, tree);
132static bool phi_alternatives_equal (basic_block, edge, edge);
63bb59a3 133static bool cleanup_forwarder_blocks (void);
6de9cd9a 134
a930a4ef
JH
135void
136init_empty_tree_cfg (void)
137{
138 /* Initialize the basic block array. */
139 init_flow ();
140 profile_status = PROFILE_ABSENT;
141 n_basic_blocks = 0;
142 last_basic_block = 0;
143 VARRAY_BB_INIT (basic_block_info, initial_cfg_capacity, "basic_block_info");
144
145 /* Build a mapping of labels to their associated blocks. */
146 VARRAY_BB_INIT (label_to_block_map, initial_cfg_capacity,
147 "label to block map");
148
149 ENTRY_BLOCK_PTR->next_bb = EXIT_BLOCK_PTR;
150 EXIT_BLOCK_PTR->prev_bb = ENTRY_BLOCK_PTR;
151
152 create_block_annotation (ENTRY_BLOCK_PTR);
153 create_block_annotation (EXIT_BLOCK_PTR);
154}
6de9cd9a
DN
155
156/*---------------------------------------------------------------------------
157 Create basic blocks
158---------------------------------------------------------------------------*/
159
160/* Entry point to the CFG builder for trees. TP points to the list of
161 statements to be added to the flowgraph. */
162
163static void
164build_tree_cfg (tree *tp)
165{
166 /* Register specific tree functions. */
167 tree_register_cfg_hooks ();
168
6de9cd9a
DN
169 memset ((void *) &cfg_stats, 0, sizeof (cfg_stats));
170
a930a4ef 171 init_empty_tree_cfg ();
6de9cd9a
DN
172
173 found_computed_goto = 0;
174 make_blocks (*tp);
175
176 /* Computed gotos are hell to deal with, especially if there are
177 lots of them with a large number of destinations. So we factor
178 them to a common computed goto location before we build the
179 edge list. After we convert back to normal form, we will un-factor
180 the computed gotos since factoring introduces an unwanted jump. */
181 if (found_computed_goto)
182 factor_computed_gotos ();
183
f0b698c1 184 /* Make sure there is always at least one block, even if it's empty. */
6de9cd9a
DN
185 if (n_basic_blocks == 0)
186 create_empty_bb (ENTRY_BLOCK_PTR);
187
6de9cd9a
DN
188 /* Adjust the size of the array. */
189 VARRAY_GROW (basic_block_info, n_basic_blocks);
190
f667741c
SB
191 /* To speed up statement iterator walks, we first purge dead labels. */
192 cleanup_dead_labels ();
193
194 /* Group case nodes to reduce the number of edges.
195 We do this after cleaning up dead labels because otherwise we miss
196 a lot of obvious case merging opportunities. */
197 group_case_labels ();
198
6de9cd9a
DN
199 /* Create the edges of the flowgraph. */
200 make_edges ();
201
202 /* Debugging dumps. */
203
204 /* Write the flowgraph to a VCG file. */
205 {
206 int local_dump_flags;
207 FILE *dump_file = dump_begin (TDI_vcg, &local_dump_flags);
208 if (dump_file)
209 {
210 tree_cfg2vcg (dump_file);
211 dump_end (TDI_vcg, dump_file);
212 }
213 }
214
81cfbbc2
JH
215#ifdef ENABLE_CHECKING
216 verify_stmts ();
217#endif
218
6de9cd9a
DN
219 /* Dump a textual representation of the flowgraph. */
220 if (dump_file)
221 dump_tree_cfg (dump_file, dump_flags);
222}
223
224static void
225execute_build_cfg (void)
226{
227 build_tree_cfg (&DECL_SAVED_TREE (current_function_decl));
228}
229
230struct tree_opt_pass pass_build_cfg =
231{
232 "cfg", /* name */
233 NULL, /* gate */
234 execute_build_cfg, /* execute */
235 NULL, /* sub */
236 NULL, /* next */
237 0, /* static_pass_number */
238 TV_TREE_CFG, /* tv_id */
239 PROP_gimple_leh, /* properties_required */
240 PROP_cfg, /* properties_provided */
241 0, /* properties_destroyed */
242 0, /* todo_flags_start */
9f8628ba
PB
243 TODO_verify_stmts, /* todo_flags_finish */
244 0 /* letter */
6de9cd9a
DN
245};
246
247/* Search the CFG for any computed gotos. If found, factor them to a
248 common computed goto site. Also record the location of that site so
249 that we can un-factor the gotos after we have converted back to
250 normal form. */
251
252static void
253factor_computed_gotos (void)
254{
255 basic_block bb;
256 tree factored_label_decl = NULL;
257 tree var = NULL;
258 tree factored_computed_goto_label = NULL;
259 tree factored_computed_goto = NULL;
260
261 /* We know there are one or more computed gotos in this function.
262 Examine the last statement in each basic block to see if the block
263 ends with a computed goto. */
264
265 FOR_EACH_BB (bb)
266 {
267 block_stmt_iterator bsi = bsi_last (bb);
268 tree last;
269
270 if (bsi_end_p (bsi))
271 continue;
272 last = bsi_stmt (bsi);
273
274 /* Ignore the computed goto we create when we factor the original
275 computed gotos. */
276 if (last == factored_computed_goto)
277 continue;
278
279 /* If the last statement is a computed goto, factor it. */
280 if (computed_goto_p (last))
281 {
282 tree assignment;
283
284 /* The first time we find a computed goto we need to create
285 the factored goto block and the variable each original
286 computed goto will use for their goto destination. */
287 if (! factored_computed_goto)
288 {
289 basic_block new_bb = create_empty_bb (bb);
290 block_stmt_iterator new_bsi = bsi_start (new_bb);
291
292 /* Create the destination of the factored goto. Each original
293 computed goto will put its desired destination into this
294 variable and jump to the label we create immediately
295 below. */
296 var = create_tmp_var (ptr_type_node, "gotovar");
297
298 /* Build a label for the new block which will contain the
299 factored computed goto. */
300 factored_label_decl = create_artificial_label ();
301 factored_computed_goto_label
302 = build1 (LABEL_EXPR, void_type_node, factored_label_decl);
303 bsi_insert_after (&new_bsi, factored_computed_goto_label,
304 BSI_NEW_STMT);
305
306 /* Build our new computed goto. */
307 factored_computed_goto = build1 (GOTO_EXPR, void_type_node, var);
308 bsi_insert_after (&new_bsi, factored_computed_goto,
309 BSI_NEW_STMT);
310 }
311
312 /* Copy the original computed goto's destination into VAR. */
313 assignment = build (MODIFY_EXPR, ptr_type_node,
314 var, GOTO_DESTINATION (last));
315 bsi_insert_before (&bsi, assignment, BSI_SAME_STMT);
316
317 /* And re-vector the computed goto to the new destination. */
318 GOTO_DESTINATION (last) = factored_label_decl;
319 }
320 }
321}
322
323
324/* Create annotations for a single basic block. */
325
326static void
327create_block_annotation (basic_block bb)
328{
329 /* Verify that the tree_annotations field is clear. */
1e128c5f 330 gcc_assert (!bb->tree_annotations);
6de9cd9a
DN
331 bb->tree_annotations = ggc_alloc_cleared (sizeof (struct bb_ann_d));
332}
333
334
335/* Free the annotations for all the basic blocks. */
336
337static void free_blocks_annotations (void)
338{
339 clear_blocks_annotations ();
340}
341
342
343/* Clear the annotations for all the basic blocks. */
344
345static void
346clear_blocks_annotations (void)
347{
348 basic_block bb;
349
350 FOR_BB_BETWEEN (bb, ENTRY_BLOCK_PTR, NULL, next_bb)
351 bb->tree_annotations = NULL;
352}
353
354
355/* Build a flowgraph for the statement_list STMT_LIST. */
356
357static void
358make_blocks (tree stmt_list)
359{
360 tree_stmt_iterator i = tsi_start (stmt_list);
361 tree stmt = NULL;
362 bool start_new_block = true;
363 bool first_stmt_of_list = true;
364 basic_block bb = ENTRY_BLOCK_PTR;
365
366 while (!tsi_end_p (i))
367 {
368 tree prev_stmt;
369
370 prev_stmt = stmt;
371 stmt = tsi_stmt (i);
372
373 /* If the statement starts a new basic block or if we have determined
374 in a previous pass that we need to create a new block for STMT, do
375 so now. */
376 if (start_new_block || stmt_starts_bb_p (stmt, prev_stmt))
377 {
378 if (!first_stmt_of_list)
379 stmt_list = tsi_split_statement_list_before (&i);
380 bb = create_basic_block (stmt_list, NULL, bb);
381 start_new_block = false;
382 }
383
384 /* Now add STMT to BB and create the subgraphs for special statement
385 codes. */
386 set_bb_for_stmt (stmt, bb);
387
388 if (computed_goto_p (stmt))
389 found_computed_goto = true;
390
391 /* If STMT is a basic block terminator, set START_NEW_BLOCK for the
392 next iteration. */
393 if (stmt_ends_bb_p (stmt))
394 start_new_block = true;
395
396 tsi_next (&i);
397 first_stmt_of_list = false;
398 }
399}
400
401
402/* Create and return a new empty basic block after bb AFTER. */
403
404static basic_block
405create_bb (void *h, void *e, basic_block after)
406{
407 basic_block bb;
408
1e128c5f 409 gcc_assert (!e);
6de9cd9a 410
27fd69fa
KH
411 /* Create and initialize a new basic block. Since alloc_block uses
412 ggc_alloc_cleared to allocate a basic block, we do not have to
413 clear the newly allocated basic block here. */
6de9cd9a 414 bb = alloc_block ();
6de9cd9a
DN
415
416 bb->index = last_basic_block;
417 bb->flags = BB_NEW;
418 bb->stmt_list = h ? h : alloc_stmt_list ();
419
420 /* Add the new block to the linked list of blocks. */
421 link_block (bb, after);
422
423 /* Grow the basic block array if needed. */
424 if ((size_t) last_basic_block == VARRAY_SIZE (basic_block_info))
425 {
426 size_t new_size = last_basic_block + (last_basic_block + 3) / 4;
427 VARRAY_GROW (basic_block_info, new_size);
428 }
429
430 /* Add the newly created block to the array. */
431 BASIC_BLOCK (last_basic_block) = bb;
432
433 create_block_annotation (bb);
434
435 n_basic_blocks++;
436 last_basic_block++;
437
438 initialize_bb_rbi (bb);
439 return bb;
440}
441
442
443/*---------------------------------------------------------------------------
444 Edge creation
445---------------------------------------------------------------------------*/
446
fca01525
KH
447/* Fold COND_EXPR_COND of each COND_EXPR. */
448
e21aff8a 449void
fca01525
KH
450fold_cond_expr_cond (void)
451{
452 basic_block bb;
453
454 FOR_EACH_BB (bb)
455 {
456 tree stmt = last_stmt (bb);
457
458 if (stmt
459 && TREE_CODE (stmt) == COND_EXPR)
460 {
461 tree cond = fold (COND_EXPR_COND (stmt));
462 if (integer_zerop (cond))
4bafe847 463 COND_EXPR_COND (stmt) = boolean_false_node;
fca01525 464 else if (integer_onep (cond))
4bafe847 465 COND_EXPR_COND (stmt) = boolean_true_node;
fca01525
KH
466 }
467 }
468}
469
6de9cd9a
DN
470/* Join all the blocks in the flowgraph. */
471
472static void
473make_edges (void)
474{
475 basic_block bb;
6de9cd9a
DN
476
477 /* Create an edge from entry to the first block with executable
478 statements in it. */
479 make_edge (ENTRY_BLOCK_PTR, BASIC_BLOCK (0), EDGE_FALLTHRU);
480
adb35797 481 /* Traverse the basic block array placing edges. */
6de9cd9a
DN
482 FOR_EACH_BB (bb)
483 {
484 tree first = first_stmt (bb);
485 tree last = last_stmt (bb);
486
487 if (first)
488 {
489 /* Edges for statements that always alter flow control. */
490 if (is_ctrl_stmt (last))
491 make_ctrl_stmt_edges (bb);
492
493 /* Edges for statements that sometimes alter flow control. */
494 if (is_ctrl_altering_stmt (last))
495 make_exit_edges (bb);
496 }
497
498 /* Finally, if no edges were created above, this is a regular
499 basic block that only needs a fallthru edge. */
628f6a4e 500 if (EDGE_COUNT (bb->succs) == 0)
6de9cd9a
DN
501 make_edge (bb, bb->next_bb, EDGE_FALLTHRU);
502 }
503
6de9cd9a
DN
504 /* We do not care about fake edges, so remove any that the CFG
505 builder inserted for completeness. */
6809cbf9 506 remove_fake_exit_edges ();
6de9cd9a 507
fca01525
KH
508 /* Fold COND_EXPR_COND of each COND_EXPR. */
509 fold_cond_expr_cond ();
510
6de9cd9a
DN
511 /* Clean up the graph and warn for unreachable code. */
512 cleanup_tree_cfg ();
513}
514
515
516/* Create edges for control statement at basic block BB. */
517
518static void
519make_ctrl_stmt_edges (basic_block bb)
520{
521 tree last = last_stmt (bb);
6de9cd9a 522
1e128c5f 523 gcc_assert (last);
6de9cd9a
DN
524 switch (TREE_CODE (last))
525 {
526 case GOTO_EXPR:
527 make_goto_expr_edges (bb);
528 break;
529
530 case RETURN_EXPR:
531 make_edge (bb, EXIT_BLOCK_PTR, 0);
532 break;
533
534 case COND_EXPR:
535 make_cond_expr_edges (bb);
536 break;
537
538 case SWITCH_EXPR:
539 make_switch_expr_edges (bb);
540 break;
541
542 case RESX_EXPR:
543 make_eh_edges (last);
544 /* Yet another NORETURN hack. */
628f6a4e 545 if (EDGE_COUNT (bb->succs) == 0)
6de9cd9a
DN
546 make_edge (bb, EXIT_BLOCK_PTR, EDGE_FAKE);
547 break;
548
549 default:
1e128c5f 550 gcc_unreachable ();
6de9cd9a
DN
551 }
552}
553
554
555/* Create exit edges for statements in block BB that alter the flow of
556 control. Statements that alter the control flow are 'goto', 'return'
557 and calls to non-returning functions. */
558
559static void
560make_exit_edges (basic_block bb)
561{
cd709752 562 tree last = last_stmt (bb), op;
6de9cd9a 563
1e128c5f 564 gcc_assert (last);
6de9cd9a
DN
565 switch (TREE_CODE (last))
566 {
cc7220fd
JH
567 case RESX_EXPR:
568 break;
6de9cd9a
DN
569 case CALL_EXPR:
570 /* If this function receives a nonlocal goto, then we need to
571 make edges from this call site to all the nonlocal goto
572 handlers. */
573 if (TREE_SIDE_EFFECTS (last)
574 && current_function_has_nonlocal_label)
575 make_goto_expr_edges (bb);
576
577 /* If this statement has reachable exception handlers, then
578 create abnormal edges to them. */
579 make_eh_edges (last);
580
581 /* Some calls are known not to return. For such calls we create
582 a fake edge.
583
584 We really need to revamp how we build edges so that it's not
585 such a bloody pain to avoid creating edges for this case since
586 all we do is remove these edges when we're done building the
587 CFG. */
6e14af16 588 if (call_expr_flags (last) & ECF_NORETURN)
6de9cd9a
DN
589 {
590 make_edge (bb, EXIT_BLOCK_PTR, EDGE_FAKE);
591 return;
592 }
593
594 /* Don't forget the fall-thru edge. */
595 make_edge (bb, bb->next_bb, EDGE_FALLTHRU);
596 break;
597
598 case MODIFY_EXPR:
599 /* A MODIFY_EXPR may have a CALL_EXPR on its RHS and the CALL_EXPR
600 may have an abnormal edge. Search the RHS for this case and
601 create any required edges. */
cd709752
RH
602 op = get_call_expr_in (last);
603 if (op && TREE_SIDE_EFFECTS (op)
6de9cd9a
DN
604 && current_function_has_nonlocal_label)
605 make_goto_expr_edges (bb);
606
607 make_eh_edges (last);
608 make_edge (bb, bb->next_bb, EDGE_FALLTHRU);
609 break;
610
611 default:
1e128c5f 612 gcc_unreachable ();
6de9cd9a
DN
613 }
614}
615
616
617/* Create the edges for a COND_EXPR starting at block BB.
618 At this point, both clauses must contain only simple gotos. */
619
620static void
621make_cond_expr_edges (basic_block bb)
622{
623 tree entry = last_stmt (bb);
624 basic_block then_bb, else_bb;
625 tree then_label, else_label;
626
1e128c5f
GB
627 gcc_assert (entry);
628 gcc_assert (TREE_CODE (entry) == COND_EXPR);
6de9cd9a
DN
629
630 /* Entry basic blocks for each component. */
631 then_label = GOTO_DESTINATION (COND_EXPR_THEN (entry));
632 else_label = GOTO_DESTINATION (COND_EXPR_ELSE (entry));
633 then_bb = label_to_block (then_label);
634 else_bb = label_to_block (else_label);
635
636 make_edge (bb, then_bb, EDGE_TRUE_VALUE);
637 make_edge (bb, else_bb, EDGE_FALSE_VALUE);
638}
639
d6be0d7f 640/* Hashing routine for EDGE_TO_CASES. */
92b6dff3
JL
641
642static hashval_t
d6be0d7f 643edge_to_cases_hash (const void *p)
92b6dff3 644{
d6be0d7f 645 edge e = ((struct edge_to_cases_elt *)p)->e;
92b6dff3
JL
646
647 /* Hash on the edge itself (which is a pointer). */
648 return htab_hash_pointer (e);
649}
650
d6be0d7f 651/* Equality routine for EDGE_TO_CASES, edges are unique, so testing
92b6dff3
JL
652 for equality is just a pointer comparison. */
653
654static int
d6be0d7f 655edge_to_cases_eq (const void *p1, const void *p2)
92b6dff3 656{
d6be0d7f
JL
657 edge e1 = ((struct edge_to_cases_elt *)p1)->e;
658 edge e2 = ((struct edge_to_cases_elt *)p2)->e;
92b6dff3
JL
659
660 return e1 == e2;
661}
662
d6be0d7f
JL
663/* Called for each element in the hash table (P) as we delete the
664 edge to cases hash table.
665
666 Clear all the TREE_CHAINs to prevent problems with copying of
667 SWITCH_EXPRs and structure sharing rules, then free the hash table
668 element. */
669
670static void
671edge_to_cases_cleanup (void *p)
672{
673 struct edge_to_cases_elt *elt = p;
674 tree t, next;
675
676 for (t = elt->case_labels; t; t = next)
677 {
678 next = TREE_CHAIN (t);
679 TREE_CHAIN (t) = NULL;
680 }
681 free (p);
682}
683
684/* Start recording information mapping edges to case labels. */
685
686static void
687start_recording_case_labels (void)
688{
689 gcc_assert (edge_to_cases == NULL);
690
691 edge_to_cases = htab_create (37,
692 edge_to_cases_hash,
693 edge_to_cases_eq,
694 edge_to_cases_cleanup);
695}
696
697/* Return nonzero if we are recording information for case labels. */
698
699static bool
700recording_case_labels_p (void)
701{
702 return (edge_to_cases != NULL);
703}
704
705/* Stop recording information mapping edges to case labels and
706 remove any information we have recorded. */
707static void
708end_recording_case_labels (void)
709{
710 htab_delete (edge_to_cases);
711 edge_to_cases = NULL;
712}
713
92b6dff3
JL
714/* Record that CASE_LABEL (a CASE_LABEL_EXPR) references edge E. */
715
716static void
717record_switch_edge (edge e, tree case_label)
718{
d6be0d7f 719 struct edge_to_cases_elt *elt;
92b6dff3
JL
720 void **slot;
721
722 /* Build a hash table element so we can see if E is already
723 in the table. */
d6be0d7f 724 elt = xmalloc (sizeof (struct edge_to_cases_elt));
92b6dff3 725 elt->e = e;
d6be0d7f 726 elt->case_labels = case_label;
92b6dff3 727
d6be0d7f 728 slot = htab_find_slot (edge_to_cases, elt, INSERT);
92b6dff3
JL
729
730 if (*slot == NULL)
731 {
732 /* E was not in the hash table. Install E into the hash table. */
733 *slot = (void *)elt;
734 }
735 else
736 {
737 /* E was already in the hash table. Free ELT as we do not need it
738 anymore. */
739 free (elt);
740
741 /* Get the entry stored in the hash table. */
d6be0d7f 742 elt = (struct edge_to_cases_elt *) *slot;
92b6dff3 743
d6be0d7f
JL
744 /* Add it to the chain of CASE_LABEL_EXPRs referencing E. */
745 TREE_CHAIN (case_label) = elt->case_labels;
746 elt->case_labels = case_label;
92b6dff3
JL
747 }
748}
749
d6be0d7f
JL
750/* If we are inside a {start,end}_recording_cases block, then return
751 a chain of CASE_LABEL_EXPRs from T which reference E.
752
753 Otherwise return NULL. */
92b6dff3
JL
754
755static tree
d6be0d7f 756get_cases_for_edge (edge e, tree t)
92b6dff3 757{
d6be0d7f 758 struct edge_to_cases_elt elt, *elt_p;
92b6dff3 759 void **slot;
d6be0d7f
JL
760 size_t i, n;
761 tree vec;
92b6dff3 762
d6be0d7f
JL
763 /* If we are not recording cases, then we do not have CASE_LABEL_EXPR
764 chains available. Return NULL so the caller can detect this case. */
765 if (!recording_case_labels_p ())
766 return NULL;
767
768restart:
92b6dff3 769 elt.e = e;
d6be0d7f
JL
770 elt.case_labels = NULL;
771 slot = htab_find_slot (edge_to_cases, &elt, NO_INSERT);
92b6dff3
JL
772
773 if (slot)
774 {
d6be0d7f
JL
775 elt_p = (struct edge_to_cases_elt *)*slot;
776 return elt_p->case_labels;
92b6dff3
JL
777 }
778
d6be0d7f
JL
779 /* If we did not find E in the hash table, then this must be the first
780 time we have been queried for information about E & T. Add all the
781 elements from T to the hash table then perform the query again. */
92b6dff3 782
d6be0d7f 783 vec = SWITCH_LABELS (t);
92b6dff3 784 n = TREE_VEC_LENGTH (vec);
92b6dff3
JL
785 for (i = 0; i < n; i++)
786 {
d6be0d7f
JL
787 tree lab = CASE_LABEL (TREE_VEC_ELT (vec, i));
788 basic_block label_bb = label_to_block (lab);
789 record_switch_edge (find_edge (e->src, label_bb), TREE_VEC_ELT (vec, i));
92b6dff3 790 }
d6be0d7f 791 goto restart;
92b6dff3 792}
6de9cd9a
DN
793
794/* Create the edges for a SWITCH_EXPR starting at block BB.
795 At this point, the switch body has been lowered and the
796 SWITCH_LABELS filled in, so this is in effect a multi-way branch. */
797
798static void
799make_switch_expr_edges (basic_block bb)
800{
801 tree entry = last_stmt (bb);
802 size_t i, n;
803 tree vec;
804
805 vec = SWITCH_LABELS (entry);
806 n = TREE_VEC_LENGTH (vec);
807
808 for (i = 0; i < n; ++i)
809 {
810 tree lab = CASE_LABEL (TREE_VEC_ELT (vec, i));
811 basic_block label_bb = label_to_block (lab);
d6be0d7f 812 make_edge (bb, label_bb, 0);
6de9cd9a
DN
813 }
814}
815
816
817/* Return the basic block holding label DEST. */
818
819basic_block
997de8ed 820label_to_block_fn (struct function *ifun, tree dest)
6de9cd9a 821{
242229bb
JH
822 int uid = LABEL_DECL_UID (dest);
823
f0b698c1
KH
824 /* We would die hard when faced by an undefined label. Emit a label to
825 the very first basic block. This will hopefully make even the dataflow
242229bb
JH
826 and undefined variable warnings quite right. */
827 if ((errorcount || sorrycount) && uid < 0)
828 {
829 block_stmt_iterator bsi = bsi_start (BASIC_BLOCK (0));
830 tree stmt;
831
832 stmt = build1 (LABEL_EXPR, void_type_node, dest);
833 bsi_insert_before (&bsi, stmt, BSI_NEW_STMT);
834 uid = LABEL_DECL_UID (dest);
835 }
98f464e0
SB
836 if (VARRAY_SIZE (ifun->cfg->x_label_to_block_map) <= (unsigned int)uid)
837 return NULL;
997de8ed 838 return VARRAY_BB (ifun->cfg->x_label_to_block_map, uid);
6de9cd9a
DN
839}
840
6de9cd9a
DN
841/* Create edges for a goto statement at block BB. */
842
843static void
844make_goto_expr_edges (basic_block bb)
845{
7d3bf067 846 tree goto_t;
6de9cd9a
DN
847 basic_block target_bb;
848 int for_call;
849 block_stmt_iterator last = bsi_last (bb);
850
851 goto_t = bsi_stmt (last);
852
853 /* If the last statement is not a GOTO (i.e., it is a RETURN_EXPR,
854 CALL_EXPR or MODIFY_EXPR), then the edge is an abnormal edge resulting
855 from a nonlocal goto. */
856 if (TREE_CODE (goto_t) != GOTO_EXPR)
7d3bf067 857 for_call = 1;
6de9cd9a
DN
858 else
859 {
7d3bf067 860 tree dest = GOTO_DESTINATION (goto_t);
6de9cd9a
DN
861 for_call = 0;
862
863 /* A GOTO to a local label creates normal edges. */
864 if (simple_goto_p (goto_t))
865 {
62b857ea 866 edge e = make_edge (bb, label_to_block (dest), EDGE_FALLTHRU);
9506ac2b
PB
867#ifdef USE_MAPPED_LOCATION
868 e->goto_locus = EXPR_LOCATION (goto_t);
869#else
62b857ea 870 e->goto_locus = EXPR_LOCUS (goto_t);
9506ac2b 871#endif
6de9cd9a
DN
872 bsi_remove (&last);
873 return;
874 }
875
9cf737f8 876 /* Nothing more to do for nonlocal gotos. */
6de9cd9a
DN
877 if (TREE_CODE (dest) == LABEL_DECL)
878 return;
879
880 /* Computed gotos remain. */
881 }
882
883 /* Look for the block starting with the destination label. In the
884 case of a computed goto, make an edge to any label block we find
885 in the CFG. */
886 FOR_EACH_BB (target_bb)
887 {
888 block_stmt_iterator bsi;
889
890 for (bsi = bsi_start (target_bb); !bsi_end_p (bsi); bsi_next (&bsi))
891 {
892 tree target = bsi_stmt (bsi);
893
894 if (TREE_CODE (target) != LABEL_EXPR)
895 break;
896
897 if (
898 /* Computed GOTOs. Make an edge to every label block that has
899 been marked as a potential target for a computed goto. */
900 (FORCED_LABEL (LABEL_EXPR_LABEL (target)) && for_call == 0)
901 /* Nonlocal GOTO target. Make an edge to every label block
902 that has been marked as a potential target for a nonlocal
903 goto. */
904 || (DECL_NONLOCAL (LABEL_EXPR_LABEL (target)) && for_call == 1))
905 {
906 make_edge (bb, target_bb, EDGE_ABNORMAL);
907 break;
908 }
909 }
910 }
911
912 /* Degenerate case of computed goto with no labels. */
628f6a4e 913 if (!for_call && EDGE_COUNT (bb->succs) == 0)
6de9cd9a
DN
914 make_edge (bb, EXIT_BLOCK_PTR, EDGE_FAKE);
915}
916
917
918/*---------------------------------------------------------------------------
919 Flowgraph analysis
920---------------------------------------------------------------------------*/
921
922/* Remove unreachable blocks and other miscellaneous clean up work. */
923
56b043c8 924bool
6de9cd9a
DN
925cleanup_tree_cfg (void)
926{
56b043c8 927 bool retval = false;
6de9cd9a
DN
928
929 timevar_push (TV_TREE_CLEANUP_CFG);
930
8f28be81 931 retval = cleanup_control_flow ();
26d4492f 932 retval |= delete_unreachable_blocks ();
d6be0d7f 933
63bb59a3
ZD
934 /* cleanup_forwarder_blocks can redirect edges out of SWITCH_EXPRs,
935 which can get expensive. So we want to enable recording of edge
936 to CASE_LABEL_EXPR mappings around the call to
937 cleanup_forwarder_blocks. */
d6be0d7f 938 start_recording_case_labels ();
63bb59a3 939 retval |= cleanup_forwarder_blocks ();
d6be0d7f 940 end_recording_case_labels ();
6de9cd9a 941
8f28be81
KH
942#ifdef ENABLE_CHECKING
943 if (retval)
26d4492f
KH
944 {
945 gcc_assert (!cleanup_control_flow ());
946 gcc_assert (!delete_unreachable_blocks ());
63bb59a3 947 gcc_assert (!cleanup_forwarder_blocks ());
26d4492f 948 }
8f28be81
KH
949#endif
950
6de9cd9a
DN
951 /* Merging the blocks creates no new opportunities for the other
952 optimizations, so do it here. */
086aa12e 953 retval |= merge_seq_blocks ();
6de9cd9a
DN
954
955 compact_blocks ();
956
957#ifdef ENABLE_CHECKING
958 verify_flow_info ();
959#endif
960 timevar_pop (TV_TREE_CLEANUP_CFG);
56b043c8 961 return retval;
6de9cd9a
DN
962}
963
964
2b271002
ZD
965/* Cleanup cfg and repair loop structures. */
966
967void
968cleanup_tree_cfg_loop (void)
969{
970 bitmap changed_bbs = BITMAP_ALLOC (NULL);
971
972 cleanup_tree_cfg ();
973
974 fix_loop_structure (current_loops, changed_bbs);
975 calculate_dominance_info (CDI_DOMINATORS);
976
977 /* This usually does nothing. But sometimes parts of cfg that originally
978 were inside a loop get out of it due to edge removal (since they
979 become unreachable by back edges from latch). */
84d65814 980 rewrite_into_loop_closed_ssa (changed_bbs, TODO_update_ssa);
2b271002
ZD
981
982 BITMAP_FREE (changed_bbs);
983
984#ifdef ENABLE_CHECKING
985 verify_loop_structure (current_loops);
986#endif
987}
988
f698d217
SB
989/* Cleanup useless labels in basic blocks. This is something we wish
990 to do early because it allows us to group case labels before creating
991 the edges for the CFG, and it speeds up block statement iterators in
992 all passes later on.
993 We only run this pass once, running it more than once is probably not
994 profitable. */
995
996/* A map from basic block index to the leading label of that block. */
997static tree *label_for_bb;
998
999/* Callback for for_each_eh_region. Helper for cleanup_dead_labels. */
1000static void
1001update_eh_label (struct eh_region *region)
1002{
1003 tree old_label = get_eh_region_tree_label (region);
1004 if (old_label)
1005 {
165b54c3
SB
1006 tree new_label;
1007 basic_block bb = label_to_block (old_label);
1008
1009 /* ??? After optimizing, there may be EH regions with labels
1010 that have already been removed from the function body, so
1011 there is no basic block for them. */
1012 if (! bb)
1013 return;
1014
1015 new_label = label_for_bb[bb->index];
f698d217
SB
1016 set_eh_region_tree_label (region, new_label);
1017 }
1018}
1019
242229bb
JH
1020/* Given LABEL return the first label in the same basic block. */
1021static tree
1022main_block_label (tree label)
1023{
1024 basic_block bb = label_to_block (label);
1025
1026 /* label_to_block possibly inserted undefined label into the chain. */
1027 if (!label_for_bb[bb->index])
1028 label_for_bb[bb->index] = label;
1029 return label_for_bb[bb->index];
1030}
1031
b986ebf3 1032/* Cleanup redundant labels. This is a three-step process:
f698d217
SB
1033 1) Find the leading label for each block.
1034 2) Redirect all references to labels to the leading labels.
1035 3) Cleanup all useless labels. */
6de9cd9a 1036
165b54c3 1037void
6de9cd9a
DN
1038cleanup_dead_labels (void)
1039{
1040 basic_block bb;
f698d217 1041 label_for_bb = xcalloc (last_basic_block, sizeof (tree));
6de9cd9a
DN
1042
1043 /* Find a suitable label for each block. We use the first user-defined
f0b698c1 1044 label if there is one, or otherwise just the first label we see. */
6de9cd9a
DN
1045 FOR_EACH_BB (bb)
1046 {
1047 block_stmt_iterator i;
1048
1049 for (i = bsi_start (bb); !bsi_end_p (i); bsi_next (&i))
1050 {
1051 tree label, stmt = bsi_stmt (i);
1052
1053 if (TREE_CODE (stmt) != LABEL_EXPR)
1054 break;
1055
1056 label = LABEL_EXPR_LABEL (stmt);
1057
1058 /* If we have not yet seen a label for the current block,
1059 remember this one and see if there are more labels. */
1060 if (! label_for_bb[bb->index])
1061 {
1062 label_for_bb[bb->index] = label;
1063 continue;
1064 }
1065
1066 /* If we did see a label for the current block already, but it
1067 is an artificially created label, replace it if the current
1068 label is a user defined label. */
1069 if (! DECL_ARTIFICIAL (label)
1070 && DECL_ARTIFICIAL (label_for_bb[bb->index]))
1071 {
1072 label_for_bb[bb->index] = label;
1073 break;
1074 }
1075 }
1076 }
1077
f698d217
SB
1078 /* Now redirect all jumps/branches to the selected label.
1079 First do so for each block ending in a control statement. */
6de9cd9a
DN
1080 FOR_EACH_BB (bb)
1081 {
1082 tree stmt = last_stmt (bb);
1083 if (!stmt)
1084 continue;
1085
1086 switch (TREE_CODE (stmt))
1087 {
1088 case COND_EXPR:
1089 {
1090 tree true_branch, false_branch;
6de9cd9a
DN
1091
1092 true_branch = COND_EXPR_THEN (stmt);
1093 false_branch = COND_EXPR_ELSE (stmt);
6de9cd9a 1094
242229bb
JH
1095 GOTO_DESTINATION (true_branch)
1096 = main_block_label (GOTO_DESTINATION (true_branch));
1097 GOTO_DESTINATION (false_branch)
1098 = main_block_label (GOTO_DESTINATION (false_branch));
6de9cd9a
DN
1099
1100 break;
1101 }
1102
1103 case SWITCH_EXPR:
1104 {
1105 size_t i;
1106 tree vec = SWITCH_LABELS (stmt);
1107 size_t n = TREE_VEC_LENGTH (vec);
1108
1109 /* Replace all destination labels. */
1110 for (i = 0; i < n; ++i)
92b6dff3
JL
1111 {
1112 tree elt = TREE_VEC_ELT (vec, i);
1113 tree label = main_block_label (CASE_LABEL (elt));
d6be0d7f 1114 CASE_LABEL (elt) = label;
92b6dff3 1115 }
6de9cd9a
DN
1116 break;
1117 }
1118
f667741c
SB
1119 /* We have to handle GOTO_EXPRs until they're removed, and we don't
1120 remove them until after we've created the CFG edges. */
1121 case GOTO_EXPR:
242229bb
JH
1122 if (! computed_goto_p (stmt))
1123 {
1124 GOTO_DESTINATION (stmt)
1125 = main_block_label (GOTO_DESTINATION (stmt));
1126 break;
1127 }
f667741c 1128
6de9cd9a
DN
1129 default:
1130 break;
1131 }
1132 }
1133
f698d217
SB
1134 for_each_eh_region (update_eh_label);
1135
6de9cd9a
DN
1136 /* Finally, purge dead labels. All user-defined labels and labels that
1137 can be the target of non-local gotos are preserved. */
1138 FOR_EACH_BB (bb)
1139 {
1140 block_stmt_iterator i;
1141 tree label_for_this_bb = label_for_bb[bb->index];
1142
1143 if (! label_for_this_bb)
1144 continue;
1145
1146 for (i = bsi_start (bb); !bsi_end_p (i); )
1147 {
1148 tree label, stmt = bsi_stmt (i);
1149
1150 if (TREE_CODE (stmt) != LABEL_EXPR)
1151 break;
1152
1153 label = LABEL_EXPR_LABEL (stmt);
1154
1155 if (label == label_for_this_bb
1156 || ! DECL_ARTIFICIAL (label)
1157 || DECL_NONLOCAL (label))
1158 bsi_next (&i);
1159 else
1160 bsi_remove (&i);
1161 }
1162 }
1163
1164 free (label_for_bb);
1165}
1166
f667741c
SB
1167/* Look for blocks ending in a multiway branch (a SWITCH_EXPR in GIMPLE),
1168 and scan the sorted vector of cases. Combine the ones jumping to the
1169 same label.
1170 Eg. three separate entries 1: 2: 3: become one entry 1..3: */
1171
165b54c3 1172void
f667741c
SB
1173group_case_labels (void)
1174{
1175 basic_block bb;
1176
1177 FOR_EACH_BB (bb)
1178 {
1179 tree stmt = last_stmt (bb);
1180 if (stmt && TREE_CODE (stmt) == SWITCH_EXPR)
1181 {
1182 tree labels = SWITCH_LABELS (stmt);
1183 int old_size = TREE_VEC_LENGTH (labels);
1184 int i, j, new_size = old_size;
29c4d22b
AP
1185 tree default_case = TREE_VEC_ELT (labels, old_size - 1);
1186 tree default_label;
1187
66efeafc 1188 /* The default label is always the last case in a switch
29c4d22b
AP
1189 statement after gimplification. */
1190 default_label = CASE_LABEL (default_case);
f667741c
SB
1191
1192 /* Look for possible opportunities to merge cases.
1193 Ignore the last element of the label vector because it
1194 must be the default case. */
1195 i = 0;
d717e500 1196 while (i < old_size - 1)
f667741c 1197 {
ed9cef22 1198 tree base_case, base_label, base_high;
f667741c
SB
1199 base_case = TREE_VEC_ELT (labels, i);
1200
1e128c5f 1201 gcc_assert (base_case);
f667741c 1202 base_label = CASE_LABEL (base_case);
31e9eea2
SB
1203
1204 /* Discard cases that have the same destination as the
1205 default case. */
1206 if (base_label == default_label)
1207 {
1208 TREE_VEC_ELT (labels, i) = NULL_TREE;
1209 i++;
29c4d22b 1210 new_size--;
31e9eea2
SB
1211 continue;
1212 }
1213
f667741c
SB
1214 base_high = CASE_HIGH (base_case) ?
1215 CASE_HIGH (base_case) : CASE_LOW (base_case);
d717e500 1216 i++;
f667741c
SB
1217 /* Try to merge case labels. Break out when we reach the end
1218 of the label vector or when we cannot merge the next case
1219 label with the current one. */
d717e500 1220 while (i < old_size - 1)
f667741c 1221 {
d717e500 1222 tree merge_case = TREE_VEC_ELT (labels, i);
f667741c
SB
1223 tree merge_label = CASE_LABEL (merge_case);
1224 tree t = int_const_binop (PLUS_EXPR, base_high,
1225 integer_one_node, 1);
1226
1227 /* Merge the cases if they jump to the same place,
1228 and their ranges are consecutive. */
1229 if (merge_label == base_label
1230 && tree_int_cst_equal (CASE_LOW (merge_case), t))
1231 {
1232 base_high = CASE_HIGH (merge_case) ?
1233 CASE_HIGH (merge_case) : CASE_LOW (merge_case);
1234 CASE_HIGH (base_case) = base_high;
1235 TREE_VEC_ELT (labels, i) = NULL_TREE;
1236 new_size--;
d717e500 1237 i++;
f667741c
SB
1238 }
1239 else
1240 break;
1241 }
1242 }
1243
1244 /* Compress the case labels in the label vector, and adjust the
1245 length of the vector. */
1246 for (i = 0, j = 0; i < new_size; i++)
1247 {
1248 while (! TREE_VEC_ELT (labels, j))
1249 j++;
1250 TREE_VEC_ELT (labels, i) = TREE_VEC_ELT (labels, j++);
1251 }
1252 TREE_VEC_LENGTH (labels) = new_size;
1253 }
1254 }
1255}
6de9cd9a
DN
1256
1257/* Checks whether we can merge block B into block A. */
1258
1259static bool
1260tree_can_merge_blocks_p (basic_block a, basic_block b)
1261{
1262 tree stmt;
1263 block_stmt_iterator bsi;
38965eb2 1264 tree phi;
6de9cd9a 1265
c5cbcccf 1266 if (!single_succ_p (a))
6de9cd9a
DN
1267 return false;
1268
c5cbcccf 1269 if (single_succ_edge (a)->flags & EDGE_ABNORMAL)
6de9cd9a
DN
1270 return false;
1271
c5cbcccf 1272 if (single_succ (a) != b)
6de9cd9a
DN
1273 return false;
1274
c5cbcccf 1275 if (!single_pred_p (b))
6de9cd9a
DN
1276 return false;
1277
26e75214
KH
1278 if (b == EXIT_BLOCK_PTR)
1279 return false;
1280
6de9cd9a
DN
1281 /* If A ends by a statement causing exceptions or something similar, we
1282 cannot merge the blocks. */
1283 stmt = last_stmt (a);
1284 if (stmt && stmt_ends_bb_p (stmt))
1285 return false;
1286
1287 /* Do not allow a block with only a non-local label to be merged. */
1288 if (stmt && TREE_CODE (stmt) == LABEL_EXPR
1289 && DECL_NONLOCAL (LABEL_EXPR_LABEL (stmt)))
1290 return false;
1291
38965eb2
ZD
1292 /* It must be possible to eliminate all phi nodes in B. If ssa form
1293 is not up-to-date, we cannot eliminate any phis. */
1294 phi = phi_nodes (b);
1295 if (phi)
1296 {
1297 if (need_ssa_update_p ())
1298 return false;
1299
1300 for (; phi; phi = PHI_CHAIN (phi))
1301 if (!is_gimple_reg (PHI_RESULT (phi))
1302 && !may_propagate_copy (PHI_RESULT (phi), PHI_ARG_DEF (phi, 0)))
1303 return false;
1304 }
6de9cd9a
DN
1305
1306 /* Do not remove user labels. */
1307 for (bsi = bsi_start (b); !bsi_end_p (bsi); bsi_next (&bsi))
1308 {
1309 stmt = bsi_stmt (bsi);
1310 if (TREE_CODE (stmt) != LABEL_EXPR)
1311 break;
1312 if (!DECL_ARTIFICIAL (LABEL_EXPR_LABEL (stmt)))
1313 return false;
1314 }
1315
2b271002
ZD
1316 /* Protect the loop latches. */
1317 if (current_loops
1318 && b->loop_father->latch == b)
1319 return false;
1320
6de9cd9a
DN
1321 return true;
1322}
1323
38965eb2
ZD
1324/* Replaces all uses of NAME by VAL. */
1325
1326static void
1327replace_uses_by (tree name, tree val)
1328{
1329 imm_use_iterator imm_iter;
1330 use_operand_p use;
1331 tree stmt;
1332 edge e;
1333 unsigned i;
1334 VEC(tree,heap) *stmts = VEC_alloc (tree, heap, 20);
1335
1336 FOR_EACH_IMM_USE_SAFE (use, imm_iter, name)
1337 {
1338 stmt = USE_STMT (use);
1339
1340 SET_USE (use, val);
1341
1342 if (TREE_CODE (stmt) == PHI_NODE)
1343 {
1344 e = PHI_ARG_EDGE (stmt, PHI_ARG_INDEX_FROM_USE (use));
1345 if (e->flags & EDGE_ABNORMAL)
1346 {
1347 /* This can only occur for virtual operands, since
1348 for the real ones SSA_NAME_OCCURS_IN_ABNORMAL_PHI (name))
1349 would prevent replacement. */
1350 gcc_assert (!is_gimple_reg (name));
1351 SSA_NAME_OCCURS_IN_ABNORMAL_PHI (val) = 1;
1352 }
1353 }
1354 else
1355 VEC_safe_push (tree, heap, stmts, stmt);
1356 }
1357
1358 /* We do not update the statements in the loop above. Consider
1359 x = w * w;
1360
1361 If we performed the update in the first loop, the statement
1362 would be rescanned after first occurence of w is replaced,
1363 the new uses would be placed to the beginning of the list,
1364 and we would never process them. */
1365 for (i = 0; VEC_iterate (tree, stmts, i, stmt); i++)
1366 {
1367 fold_stmt_inplace (stmt);
1368 update_stmt (stmt);
1369 }
1370
1371 VEC_free (tree, heap, stmts);
1372}
6de9cd9a
DN
1373
1374/* Merge block B into block A. */
1375
1376static void
1377tree_merge_blocks (basic_block a, basic_block b)
1378{
1379 block_stmt_iterator bsi;
1380 tree_stmt_iterator last;
38965eb2 1381 tree phi;
6de9cd9a
DN
1382
1383 if (dump_file)
1384 fprintf (dump_file, "Merging blocks %d and %d\n", a->index, b->index);
1385
38965eb2
ZD
1386 /* Remove the phi nodes. */
1387 bsi = bsi_last (a);
1388 for (phi = phi_nodes (b); phi; phi = phi_nodes (b))
1389 {
1390 tree def = PHI_RESULT (phi), use = PHI_ARG_DEF (phi, 0);
1391 tree copy;
1392
1393 if (!may_propagate_copy (def, use)
1394 /* Propagating pointers might cause the set of vops for statements
1395 to be changed, and thus require ssa form update. */
1396 || (is_gimple_reg (def)
1397 && POINTER_TYPE_P (TREE_TYPE (def))))
1398 {
1399 gcc_assert (is_gimple_reg (def));
1400
1401 /* Note that just emiting the copies is fine -- there is no problem
1402 with ordering of phi nodes. This is because A is the single
1403 predecessor of B, therefore results of the phi nodes cannot
1404 appear as arguments of the phi nodes. */
1405 copy = build2 (MODIFY_EXPR, void_type_node, def, use);
1406 bsi_insert_after (&bsi, copy, BSI_NEW_STMT);
1407 SET_PHI_RESULT (phi, NULL_TREE);
1408 SSA_NAME_DEF_STMT (def) = copy;
1409 }
1410 else
1411 replace_uses_by (def, use);
1412 remove_phi_node (phi, NULL);
1413 }
1414
6de9cd9a
DN
1415 /* Ensure that B follows A. */
1416 move_block_after (b, a);
1417
c5cbcccf 1418 gcc_assert (single_succ_edge (a)->flags & EDGE_FALLTHRU);
1e128c5f 1419 gcc_assert (!last_stmt (a) || !stmt_ends_bb_p (last_stmt (a)));
6de9cd9a
DN
1420
1421 /* Remove labels from B and set bb_for_stmt to A for other statements. */
1422 for (bsi = bsi_start (b); !bsi_end_p (bsi);)
1423 {
1424 if (TREE_CODE (bsi_stmt (bsi)) == LABEL_EXPR)
be477406
JL
1425 {
1426 tree label = bsi_stmt (bsi);
1427
1428 bsi_remove (&bsi);
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 (LABEL_EXPR_LABEL (label)))
1436 {
1437 block_stmt_iterator dest_bsi = bsi_start (a);
1438 bsi_insert_before (&dest_bsi, label, BSI_NEW_STMT);
1439 }
1440 }
6de9cd9a
DN
1441 else
1442 {
1443 set_bb_for_stmt (bsi_stmt (bsi), a);
1444 bsi_next (&bsi);
1445 }
1446 }
1447
1448 /* Merge the chains. */
1449 last = tsi_last (a->stmt_list);
1450 tsi_link_after (&last, b->stmt_list, TSI_NEW_STMT);
1451 b->stmt_list = NULL;
1452}
1453
1454
1455/* Walk the function tree removing unnecessary statements.
1456
1457 * Empty statement nodes are removed
1458
1459 * Unnecessary TRY_FINALLY and TRY_CATCH blocks are removed
1460
1461 * Unnecessary COND_EXPRs are removed
1462
1463 * Some unnecessary BIND_EXPRs are removed
1464
1465 Clearly more work could be done. The trick is doing the analysis
1466 and removal fast enough to be a net improvement in compile times.
1467
1468 Note that when we remove a control structure such as a COND_EXPR
1469 BIND_EXPR, or TRY block, we will need to repeat this optimization pass
1470 to ensure we eliminate all the useless code. */
1471
1472struct rus_data
1473{
1474 tree *last_goto;
1475 bool repeat;
1476 bool may_throw;
1477 bool may_branch;
1478 bool has_label;
1479};
1480
1481static void remove_useless_stmts_1 (tree *, struct rus_data *);
1482
1483static bool
1484remove_useless_stmts_warn_notreached (tree stmt)
1485{
9506ac2b 1486 if (EXPR_HAS_LOCATION (stmt))
6de9cd9a 1487 {
9506ac2b 1488 location_t loc = EXPR_LOCATION (stmt);
43e05e45
SB
1489 if (LOCATION_LINE (loc) > 0)
1490 {
d4ee4d25 1491 warning (0, "%Hwill never be executed", &loc);
43e05e45
SB
1492 return true;
1493 }
6de9cd9a
DN
1494 }
1495
1496 switch (TREE_CODE (stmt))
1497 {
1498 case STATEMENT_LIST:
1499 {
1500 tree_stmt_iterator i;
1501 for (i = tsi_start (stmt); !tsi_end_p (i); tsi_next (&i))
1502 if (remove_useless_stmts_warn_notreached (tsi_stmt (i)))
1503 return true;
1504 }
1505 break;
1506
1507 case COND_EXPR:
1508 if (remove_useless_stmts_warn_notreached (COND_EXPR_COND (stmt)))
1509 return true;
1510 if (remove_useless_stmts_warn_notreached (COND_EXPR_THEN (stmt)))
1511 return true;
1512 if (remove_useless_stmts_warn_notreached (COND_EXPR_ELSE (stmt)))
1513 return true;
1514 break;
1515
1516 case TRY_FINALLY_EXPR:
1517 case TRY_CATCH_EXPR:
1518 if (remove_useless_stmts_warn_notreached (TREE_OPERAND (stmt, 0)))
1519 return true;
1520 if (remove_useless_stmts_warn_notreached (TREE_OPERAND (stmt, 1)))
1521 return true;
1522 break;
1523
1524 case CATCH_EXPR:
1525 return remove_useless_stmts_warn_notreached (CATCH_BODY (stmt));
1526 case EH_FILTER_EXPR:
1527 return remove_useless_stmts_warn_notreached (EH_FILTER_FAILURE (stmt));
1528 case BIND_EXPR:
1529 return remove_useless_stmts_warn_notreached (BIND_EXPR_BLOCK (stmt));
1530
1531 default:
1532 /* Not a live container. */
1533 break;
1534 }
1535
1536 return false;
1537}
1538
1539static void
1540remove_useless_stmts_cond (tree *stmt_p, struct rus_data *data)
1541{
1542 tree then_clause, else_clause, cond;
1543 bool save_has_label, then_has_label, else_has_label;
1544
1545 save_has_label = data->has_label;
1546 data->has_label = false;
1547 data->last_goto = NULL;
1548
1549 remove_useless_stmts_1 (&COND_EXPR_THEN (*stmt_p), data);
1550
1551 then_has_label = data->has_label;
1552 data->has_label = false;
1553 data->last_goto = NULL;
1554
1555 remove_useless_stmts_1 (&COND_EXPR_ELSE (*stmt_p), data);
1556
1557 else_has_label = data->has_label;
1558 data->has_label = save_has_label | then_has_label | else_has_label;
1559
6de9cd9a
DN
1560 then_clause = COND_EXPR_THEN (*stmt_p);
1561 else_clause = COND_EXPR_ELSE (*stmt_p);
18faa5da 1562 cond = fold (COND_EXPR_COND (*stmt_p));
6de9cd9a
DN
1563
1564 /* If neither arm does anything at all, we can remove the whole IF. */
1565 if (!TREE_SIDE_EFFECTS (then_clause) && !TREE_SIDE_EFFECTS (else_clause))
1566 {
1567 *stmt_p = build_empty_stmt ();
1568 data->repeat = true;
1569 }
1570
1571 /* If there are no reachable statements in an arm, then we can
1572 zap the entire conditional. */
1573 else if (integer_nonzerop (cond) && !else_has_label)
1574 {
1575 if (warn_notreached)
1576 remove_useless_stmts_warn_notreached (else_clause);
1577 *stmt_p = then_clause;
1578 data->repeat = true;
1579 }
1580 else if (integer_zerop (cond) && !then_has_label)
1581 {
1582 if (warn_notreached)
1583 remove_useless_stmts_warn_notreached (then_clause);
1584 *stmt_p = else_clause;
1585 data->repeat = true;
1586 }
1587
1588 /* Check a couple of simple things on then/else with single stmts. */
1589 else
1590 {
1591 tree then_stmt = expr_only (then_clause);
1592 tree else_stmt = expr_only (else_clause);
1593
1594 /* Notice branches to a common destination. */
1595 if (then_stmt && else_stmt
1596 && TREE_CODE (then_stmt) == GOTO_EXPR
1597 && TREE_CODE (else_stmt) == GOTO_EXPR
1598 && (GOTO_DESTINATION (then_stmt) == GOTO_DESTINATION (else_stmt)))
1599 {
1600 *stmt_p = then_stmt;
1601 data->repeat = true;
1602 }
1603
1604 /* If the THEN/ELSE clause merely assigns a value to a variable or
1605 parameter which is already known to contain that value, then
1606 remove the useless THEN/ELSE clause. */
1607 else if (TREE_CODE (cond) == VAR_DECL || TREE_CODE (cond) == PARM_DECL)
1608 {
1609 if (else_stmt
1610 && TREE_CODE (else_stmt) == MODIFY_EXPR
1611 && TREE_OPERAND (else_stmt, 0) == cond
1612 && integer_zerop (TREE_OPERAND (else_stmt, 1)))
1613 COND_EXPR_ELSE (*stmt_p) = alloc_stmt_list ();
1614 }
1615 else if ((TREE_CODE (cond) == EQ_EXPR || TREE_CODE (cond) == NE_EXPR)
1616 && (TREE_CODE (TREE_OPERAND (cond, 0)) == VAR_DECL
1617 || TREE_CODE (TREE_OPERAND (cond, 0)) == PARM_DECL)
1618 && TREE_CONSTANT (TREE_OPERAND (cond, 1)))
1619 {
1620 tree stmt = (TREE_CODE (cond) == EQ_EXPR
1621 ? then_stmt : else_stmt);
1622 tree *location = (TREE_CODE (cond) == EQ_EXPR
1623 ? &COND_EXPR_THEN (*stmt_p)
1624 : &COND_EXPR_ELSE (*stmt_p));
1625
1626 if (stmt
1627 && TREE_CODE (stmt) == MODIFY_EXPR
1628 && TREE_OPERAND (stmt, 0) == TREE_OPERAND (cond, 0)
1629 && TREE_OPERAND (stmt, 1) == TREE_OPERAND (cond, 1))
1630 *location = alloc_stmt_list ();
1631 }
1632 }
1633
1634 /* Protect GOTOs in the arm of COND_EXPRs from being removed. They
1635 would be re-introduced during lowering. */
1636 data->last_goto = NULL;
1637}
1638
1639
1640static void
1641remove_useless_stmts_tf (tree *stmt_p, struct rus_data *data)
1642{
1643 bool save_may_branch, save_may_throw;
1644 bool this_may_branch, this_may_throw;
1645
1646 /* Collect may_branch and may_throw information for the body only. */
1647 save_may_branch = data->may_branch;
1648 save_may_throw = data->may_throw;
1649 data->may_branch = false;
1650 data->may_throw = false;
1651 data->last_goto = NULL;
1652
1653 remove_useless_stmts_1 (&TREE_OPERAND (*stmt_p, 0), data);
1654
1655 this_may_branch = data->may_branch;
1656 this_may_throw = data->may_throw;
1657 data->may_branch |= save_may_branch;
1658 data->may_throw |= save_may_throw;
1659 data->last_goto = NULL;
1660
1661 remove_useless_stmts_1 (&TREE_OPERAND (*stmt_p, 1), data);
1662
1663 /* If the body is empty, then we can emit the FINALLY block without
1664 the enclosing TRY_FINALLY_EXPR. */
1665 if (!TREE_SIDE_EFFECTS (TREE_OPERAND (*stmt_p, 0)))
1666 {
1667 *stmt_p = TREE_OPERAND (*stmt_p, 1);
1668 data->repeat = true;
1669 }
1670
1671 /* If the handler is empty, then we can emit the TRY block without
1672 the enclosing TRY_FINALLY_EXPR. */
1673 else if (!TREE_SIDE_EFFECTS (TREE_OPERAND (*stmt_p, 1)))
1674 {
1675 *stmt_p = TREE_OPERAND (*stmt_p, 0);
1676 data->repeat = true;
1677 }
1678
1679 /* If the body neither throws, nor branches, then we can safely
1680 string the TRY and FINALLY blocks together. */
1681 else if (!this_may_branch && !this_may_throw)
1682 {
1683 tree stmt = *stmt_p;
1684 *stmt_p = TREE_OPERAND (stmt, 0);
1685 append_to_statement_list (TREE_OPERAND (stmt, 1), stmt_p);
1686 data->repeat = true;
1687 }
1688}
1689
1690
1691static void
1692remove_useless_stmts_tc (tree *stmt_p, struct rus_data *data)
1693{
1694 bool save_may_throw, this_may_throw;
1695 tree_stmt_iterator i;
1696 tree stmt;
1697
1698 /* Collect may_throw information for the body only. */
1699 save_may_throw = data->may_throw;
1700 data->may_throw = false;
1701 data->last_goto = NULL;
1702
1703 remove_useless_stmts_1 (&TREE_OPERAND (*stmt_p, 0), data);
1704
1705 this_may_throw = data->may_throw;
1706 data->may_throw = save_may_throw;
1707
1708 /* If the body cannot throw, then we can drop the entire TRY_CATCH_EXPR. */
1709 if (!this_may_throw)
1710 {
1711 if (warn_notreached)
1712 remove_useless_stmts_warn_notreached (TREE_OPERAND (*stmt_p, 1));
1713 *stmt_p = TREE_OPERAND (*stmt_p, 0);
1714 data->repeat = true;
1715 return;
1716 }
1717
1718 /* Process the catch clause specially. We may be able to tell that
1719 no exceptions propagate past this point. */
1720
1721 this_may_throw = true;
1722 i = tsi_start (TREE_OPERAND (*stmt_p, 1));
1723 stmt = tsi_stmt (i);
1724 data->last_goto = NULL;
1725
1726 switch (TREE_CODE (stmt))
1727 {
1728 case CATCH_EXPR:
1729 for (; !tsi_end_p (i); tsi_next (&i))
1730 {
1731 stmt = tsi_stmt (i);
1732 /* If we catch all exceptions, then the body does not
1733 propagate exceptions past this point. */
1734 if (CATCH_TYPES (stmt) == NULL)
1735 this_may_throw = false;
1736 data->last_goto = NULL;
1737 remove_useless_stmts_1 (&CATCH_BODY (stmt), data);
1738 }
1739 break;
1740
1741 case EH_FILTER_EXPR:
1742 if (EH_FILTER_MUST_NOT_THROW (stmt))
1743 this_may_throw = false;
1744 else if (EH_FILTER_TYPES (stmt) == NULL)
1745 this_may_throw = false;
1746 remove_useless_stmts_1 (&EH_FILTER_FAILURE (stmt), data);
1747 break;
1748
1749 default:
1750 /* Otherwise this is a cleanup. */
1751 remove_useless_stmts_1 (&TREE_OPERAND (*stmt_p, 1), data);
1752
1753 /* If the cleanup is empty, then we can emit the TRY block without
1754 the enclosing TRY_CATCH_EXPR. */
1755 if (!TREE_SIDE_EFFECTS (TREE_OPERAND (*stmt_p, 1)))
1756 {
1757 *stmt_p = TREE_OPERAND (*stmt_p, 0);
1758 data->repeat = true;
1759 }
1760 break;
1761 }
1762 data->may_throw |= this_may_throw;
1763}
1764
1765
1766static void
1767remove_useless_stmts_bind (tree *stmt_p, struct rus_data *data)
1768{
1769 tree block;
1770
1771 /* First remove anything underneath the BIND_EXPR. */
1772 remove_useless_stmts_1 (&BIND_EXPR_BODY (*stmt_p), data);
1773
1774 /* If the BIND_EXPR has no variables, then we can pull everything
1775 up one level and remove the BIND_EXPR, unless this is the toplevel
1776 BIND_EXPR for the current function or an inlined function.
1777
1778 When this situation occurs we will want to apply this
1779 optimization again. */
1780 block = BIND_EXPR_BLOCK (*stmt_p);
1781 if (BIND_EXPR_VARS (*stmt_p) == NULL_TREE
1782 && *stmt_p != DECL_SAVED_TREE (current_function_decl)
1783 && (! block
1784 || ! BLOCK_ABSTRACT_ORIGIN (block)
1785 || (TREE_CODE (BLOCK_ABSTRACT_ORIGIN (block))
1786 != FUNCTION_DECL)))
1787 {
1788 *stmt_p = BIND_EXPR_BODY (*stmt_p);
1789 data->repeat = true;
1790 }
1791}
1792
1793
1794static void
1795remove_useless_stmts_goto (tree *stmt_p, struct rus_data *data)
1796{
1797 tree dest = GOTO_DESTINATION (*stmt_p);
1798
1799 data->may_branch = true;
1800 data->last_goto = NULL;
1801
1802 /* Record the last goto expr, so that we can delete it if unnecessary. */
1803 if (TREE_CODE (dest) == LABEL_DECL)
1804 data->last_goto = stmt_p;
1805}
1806
1807
1808static void
1809remove_useless_stmts_label (tree *stmt_p, struct rus_data *data)
1810{
1811 tree label = LABEL_EXPR_LABEL (*stmt_p);
1812
1813 data->has_label = true;
1814
1815 /* We do want to jump across non-local label receiver code. */
1816 if (DECL_NONLOCAL (label))
1817 data->last_goto = NULL;
1818
1819 else if (data->last_goto && GOTO_DESTINATION (*data->last_goto) == label)
1820 {
1821 *data->last_goto = build_empty_stmt ();
1822 data->repeat = true;
1823 }
1824
1825 /* ??? Add something here to delete unused labels. */
1826}
1827
1828
1829/* If the function is "const" or "pure", then clear TREE_SIDE_EFFECTS on its
1830 decl. This allows us to eliminate redundant or useless
1831 calls to "const" functions.
1832
1833 Gimplifier already does the same operation, but we may notice functions
1834 being const and pure once their calls has been gimplified, so we need
1835 to update the flag. */
1836
1837static void
1838update_call_expr_flags (tree call)
1839{
1840 tree decl = get_callee_fndecl (call);
1841 if (!decl)
1842 return;
1843 if (call_expr_flags (call) & (ECF_CONST | ECF_PURE))
1844 TREE_SIDE_EFFECTS (call) = 0;
1845 if (TREE_NOTHROW (decl))
1846 TREE_NOTHROW (call) = 1;
1847}
1848
1849
1850/* T is CALL_EXPR. Set current_function_calls_* flags. */
1851
1852void
1853notice_special_calls (tree t)
1854{
1855 int flags = call_expr_flags (t);
1856
1857 if (flags & ECF_MAY_BE_ALLOCA)
1858 current_function_calls_alloca = true;
1859 if (flags & ECF_RETURNS_TWICE)
1860 current_function_calls_setjmp = true;
1861}
1862
1863
1864/* Clear flags set by notice_special_calls. Used by dead code removal
1865 to update the flags. */
1866
1867void
1868clear_special_calls (void)
1869{
1870 current_function_calls_alloca = false;
1871 current_function_calls_setjmp = false;
1872}
1873
1874
1875static void
1876remove_useless_stmts_1 (tree *tp, struct rus_data *data)
1877{
cd709752 1878 tree t = *tp, op;
6de9cd9a
DN
1879
1880 switch (TREE_CODE (t))
1881 {
1882 case COND_EXPR:
1883 remove_useless_stmts_cond (tp, data);
1884 break;
1885
1886 case TRY_FINALLY_EXPR:
1887 remove_useless_stmts_tf (tp, data);
1888 break;
1889
1890 case TRY_CATCH_EXPR:
1891 remove_useless_stmts_tc (tp, data);
1892 break;
1893
1894 case BIND_EXPR:
1895 remove_useless_stmts_bind (tp, data);
1896 break;
1897
1898 case GOTO_EXPR:
1899 remove_useless_stmts_goto (tp, data);
1900 break;
1901
1902 case LABEL_EXPR:
1903 remove_useless_stmts_label (tp, data);
1904 break;
1905
1906 case RETURN_EXPR:
53e782e5 1907 fold_stmt (tp);
6de9cd9a
DN
1908 data->last_goto = NULL;
1909 data->may_branch = true;
1910 break;
1911
1912 case CALL_EXPR:
53e782e5 1913 fold_stmt (tp);
6de9cd9a
DN
1914 data->last_goto = NULL;
1915 notice_special_calls (t);
1916 update_call_expr_flags (t);
1917 if (tree_could_throw_p (t))
1918 data->may_throw = true;
1919 break;
1920
1921 case MODIFY_EXPR:
1922 data->last_goto = NULL;
53e782e5 1923 fold_stmt (tp);
cd709752
RH
1924 op = get_call_expr_in (t);
1925 if (op)
6de9cd9a 1926 {
cd709752
RH
1927 update_call_expr_flags (op);
1928 notice_special_calls (op);
6de9cd9a
DN
1929 }
1930 if (tree_could_throw_p (t))
1931 data->may_throw = true;
1932 break;
1933
1934 case STATEMENT_LIST:
1935 {
1936 tree_stmt_iterator i = tsi_start (t);
1937 while (!tsi_end_p (i))
1938 {
1939 t = tsi_stmt (i);
1940 if (IS_EMPTY_STMT (t))
1941 {
1942 tsi_delink (&i);
1943 continue;
1944 }
1945
1946 remove_useless_stmts_1 (tsi_stmt_ptr (i), data);
1947
1948 t = tsi_stmt (i);
1949 if (TREE_CODE (t) == STATEMENT_LIST)
1950 {
1951 tsi_link_before (&i, t, TSI_SAME_STMT);
1952 tsi_delink (&i);
1953 }
1954 else
1955 tsi_next (&i);
1956 }
1957 }
1958 break;
8e14584d 1959 case ASM_EXPR:
53e782e5
AP
1960 fold_stmt (tp);
1961 data->last_goto = NULL;
1962 break;
6de9cd9a
DN
1963
1964 default:
1965 data->last_goto = NULL;
1966 break;
1967 }
1968}
1969
1970static void
1971remove_useless_stmts (void)
1972{
1973 struct rus_data data;
1974
1975 clear_special_calls ();
1976
1977 do
1978 {
1979 memset (&data, 0, sizeof (data));
1980 remove_useless_stmts_1 (&DECL_SAVED_TREE (current_function_decl), &data);
1981 }
1982 while (data.repeat);
1983}
1984
1985
1986struct tree_opt_pass pass_remove_useless_stmts =
1987{
1988 "useless", /* name */
1989 NULL, /* gate */
1990 remove_useless_stmts, /* execute */
1991 NULL, /* sub */
1992 NULL, /* next */
1993 0, /* static_pass_number */
1994 0, /* tv_id */
1995 PROP_gimple_any, /* properties_required */
1996 0, /* properties_provided */
1997 0, /* properties_destroyed */
1998 0, /* todo_flags_start */
9f8628ba
PB
1999 TODO_dump_func, /* todo_flags_finish */
2000 0 /* letter */
6de9cd9a
DN
2001};
2002
6de9cd9a
DN
2003/* Remove PHI nodes associated with basic block BB and all edges out of BB. */
2004
2005static void
2006remove_phi_nodes_and_edges_for_unreachable_block (basic_block bb)
2007{
2008 tree phi;
2009
2010 /* Since this block is no longer reachable, we can just delete all
2011 of its PHI nodes. */
2012 phi = phi_nodes (bb);
2013 while (phi)
2014 {
17192884 2015 tree next = PHI_CHAIN (phi);
d19e3ef6 2016 remove_phi_node (phi, NULL_TREE);
6de9cd9a
DN
2017 phi = next;
2018 }
2019
2020 /* Remove edges to BB's successors. */
628f6a4e 2021 while (EDGE_COUNT (bb->succs) > 0)
d0d2cc21 2022 remove_edge (EDGE_SUCC (bb, 0));
6de9cd9a
DN
2023}
2024
2025
2026/* Remove statements of basic block BB. */
2027
2028static void
2029remove_bb (basic_block bb)
2030{
2031 block_stmt_iterator i;
dbce1570
PB
2032#ifdef USE_MAPPED_LOCATION
2033 source_location loc = UNKNOWN_LOCATION;
2034#else
9506ac2b 2035 source_locus loc = 0;
dbce1570 2036#endif
6de9cd9a
DN
2037
2038 if (dump_file)
2039 {
2040 fprintf (dump_file, "Removing basic block %d\n", bb->index);
2041 if (dump_flags & TDF_DETAILS)
2042 {
2043 dump_bb (bb, dump_file, 0);
2044 fprintf (dump_file, "\n");
2045 }
2046 }
2047
2b271002
ZD
2048 /* If we remove the header or the latch of a loop, mark the loop for
2049 removal by setting its header and latch to NULL. */
2050 if (current_loops)
2051 {
2052 struct loop *loop = bb->loop_father;
2053
2054 if (loop->latch == bb
2055 || loop->header == bb)
2056 {
2057 loop->latch = NULL;
2058 loop->header = NULL;
2059 }
2060 }
2061
6de9cd9a 2062 /* Remove all the instructions in the block. */
77568960 2063 for (i = bsi_start (bb); !bsi_end_p (i);)
6de9cd9a
DN
2064 {
2065 tree stmt = bsi_stmt (i);
77568960
AP
2066 if (TREE_CODE (stmt) == LABEL_EXPR
2067 && FORCED_LABEL (LABEL_EXPR_LABEL (stmt)))
2068 {
2069 basic_block new_bb = bb->prev_bb;
ef0b4f28 2070 block_stmt_iterator new_bsi = bsi_start (new_bb);
77568960
AP
2071
2072 bsi_remove (&i);
ef0b4f28 2073 bsi_insert_before (&new_bsi, stmt, BSI_NEW_STMT);
77568960
AP
2074 }
2075 else
2076 {
2077 release_defs (stmt);
6de9cd9a 2078
77568960
AP
2079 bsi_remove (&i);
2080 }
6de9cd9a
DN
2081
2082 /* Don't warn for removed gotos. Gotos are often removed due to
2083 jump threading, thus resulting in bogus warnings. Not great,
2084 since this way we lose warnings for gotos in the original
2085 program that are indeed unreachable. */
9506ac2b 2086 if (TREE_CODE (stmt) != GOTO_EXPR && EXPR_HAS_LOCATION (stmt) && !loc)
43e05e45 2087 {
9506ac2b 2088#ifdef USE_MAPPED_LOCATION
dbce1570
PB
2089 if (EXPR_HAS_LOCATION (stmt))
2090 loc = EXPR_LOCATION (stmt);
9506ac2b 2091#else
dbce1570 2092 source_locus t;
43e05e45 2093 t = EXPR_LOCUS (stmt);
43e05e45
SB
2094 if (t && LOCATION_LINE (*t) > 0)
2095 loc = t;
dbce1570 2096#endif
43e05e45 2097 }
6de9cd9a
DN
2098 }
2099
2100 /* If requested, give a warning that the first statement in the
2101 block is unreachable. We walk statements backwards in the
2102 loop above, so the last statement we process is the first statement
2103 in the block. */
9506ac2b 2104#ifdef USE_MAPPED_LOCATION
b747e45d 2105 if (warn_notreached && loc > BUILTINS_LOCATION)
d4ee4d25 2106 warning (0, "%Hwill never be executed", &loc);
9506ac2b 2107#else
dbce1570 2108 if (warn_notreached && loc)
d4ee4d25 2109 warning (0, "%Hwill never be executed", loc);
9506ac2b 2110#endif
6de9cd9a
DN
2111
2112 remove_phi_nodes_and_edges_for_unreachable_block (bb);
2113}
2114
7ded35b4
RS
2115/* A list of all the noreturn calls passed to modify_stmt.
2116 cleanup_control_flow uses it to detect cases where a mid-block
2117 indirect call has been turned into a noreturn call. When this
2118 happens, all the instructions after the call are no longer
2119 reachable and must be deleted as dead. */
2120
d4e6fecb 2121VEC(tree,gc) *modified_noreturn_calls;
7ded35b4 2122
6de9cd9a
DN
2123/* Try to remove superfluous control structures. */
2124
2125static bool
2126cleanup_control_flow (void)
2127{
2128 basic_block bb;
2129 block_stmt_iterator bsi;
2130 bool retval = false;
7ded35b4
RS
2131 tree stmt;
2132
2133 /* Detect cases where a mid-block call is now known not to return. */
2134 while (VEC_length (tree, modified_noreturn_calls))
2135 {
2136 stmt = VEC_pop (tree, modified_noreturn_calls);
2137 bb = bb_for_stmt (stmt);
2138 if (bb != NULL && last_stmt (bb) != stmt && noreturn_call_p (stmt))
2139 split_block (bb, stmt);
2140 }
6de9cd9a
DN
2141
2142 FOR_EACH_BB (bb)
2143 {
2144 bsi = bsi_last (bb);
2145
2146 if (bsi_end_p (bsi))
2147 continue;
2148
2149 stmt = bsi_stmt (bsi);
2150 if (TREE_CODE (stmt) == COND_EXPR
2151 || TREE_CODE (stmt) == SWITCH_EXPR)
2152 retval |= cleanup_control_expr_graph (bb, bsi);
d7f3fc19 2153
be477406
JL
2154 /* If we had a computed goto which has a compile-time determinable
2155 destination, then we can eliminate the goto. */
2156 if (TREE_CODE (stmt) == GOTO_EXPR
2157 && TREE_CODE (GOTO_DESTINATION (stmt)) == ADDR_EXPR
2158 && TREE_CODE (TREE_OPERAND (GOTO_DESTINATION (stmt), 0)) == LABEL_DECL)
2159 {
2160 edge e;
2161 tree label;
2162 edge_iterator ei;
2163 basic_block target_block;
b0c32a73 2164 bool removed_edge = false;
be477406
JL
2165
2166 /* First look at all the outgoing edges. Delete any outgoing
2167 edges which do not go to the right block. For the one
2168 edge which goes to the right block, fix up its flags. */
2169 label = TREE_OPERAND (GOTO_DESTINATION (stmt), 0);
2170 target_block = label_to_block (label);
2171 for (ei = ei_start (bb->succs); (e = ei_safe_edge (ei)); )
2172 {
2173 if (e->dest != target_block)
b0c32a73
JL
2174 {
2175 removed_edge = true;
2176 remove_edge (e);
2177 }
be477406
JL
2178 else
2179 {
2180 /* Turn off the EDGE_ABNORMAL flag. */
c5cbcccf 2181 e->flags &= ~EDGE_ABNORMAL;
be477406
JL
2182
2183 /* And set EDGE_FALLTHRU. */
c5cbcccf 2184 e->flags |= EDGE_FALLTHRU;
be477406
JL
2185 ei_next (&ei);
2186 }
2187 }
2188
b0c32a73
JL
2189 /* If we removed one or more edges, then we will need to fix the
2190 dominators. It may be possible to incrementally update them. */
2191 if (removed_edge)
2192 free_dominance_info (CDI_DOMINATORS);
2193
be477406
JL
2194 /* Remove the GOTO_EXPR as it is not needed. The CFG has all the
2195 relevant information we need. */
2196 bsi_remove (&bsi);
2197 retval = true;
2198 }
2199
d7f3fc19
RS
2200 /* Check for indirect calls that have been turned into
2201 noreturn calls. */
7ded35b4 2202 if (noreturn_call_p (stmt) && remove_fallthru_edge (bb->succs))
d7f3fc19
RS
2203 {
2204 free_dominance_info (CDI_DOMINATORS);
2205 retval = true;
2206 }
6de9cd9a
DN
2207 }
2208 return retval;
2209}
2210
2211
2212/* Disconnect an unreachable block in the control expression starting
2213 at block BB. */
2214
2215static bool
2216cleanup_control_expr_graph (basic_block bb, block_stmt_iterator bsi)
2217{
2218 edge taken_edge;
2219 bool retval = false;
2220 tree expr = bsi_stmt (bsi), val;
2221
c5cbcccf 2222 if (!single_succ_p (bb))
6de9cd9a 2223 {
628f6a4e
BE
2224 edge e;
2225 edge_iterator ei;
6de9cd9a
DN
2226
2227 switch (TREE_CODE (expr))
2228 {
2229 case COND_EXPR:
2230 val = COND_EXPR_COND (expr);
2231 break;
2232
2233 case SWITCH_EXPR:
2234 val = SWITCH_COND (expr);
2235 if (TREE_CODE (val) != INTEGER_CST)
2236 return false;
2237 break;
2238
2239 default:
1e128c5f 2240 gcc_unreachable ();
6de9cd9a
DN
2241 }
2242
2243 taken_edge = find_taken_edge (bb, val);
2244 if (!taken_edge)
2245 return false;
2246
2247 /* Remove all the edges except the one that is always executed. */
628f6a4e 2248 for (ei = ei_start (bb->succs); (e = ei_safe_edge (ei)); )
6de9cd9a 2249 {
6de9cd9a
DN
2250 if (e != taken_edge)
2251 {
2252 taken_edge->probability += e->probability;
2253 taken_edge->count += e->count;
d0d2cc21 2254 remove_edge (e);
6de9cd9a
DN
2255 retval = true;
2256 }
628f6a4e
BE
2257 else
2258 ei_next (&ei);
6de9cd9a
DN
2259 }
2260 if (taken_edge->probability > REG_BR_PROB_BASE)
2261 taken_edge->probability = REG_BR_PROB_BASE;
2262 }
2263 else
c5cbcccf 2264 taken_edge = single_succ_edge (bb);
6de9cd9a
DN
2265
2266 bsi_remove (&bsi);
2267 taken_edge->flags = EDGE_FALLTHRU;
2268
2269 /* We removed some paths from the cfg. */
fce22de5 2270 free_dominance_info (CDI_DOMINATORS);
6de9cd9a
DN
2271
2272 return retval;
2273}
2274
d7f3fc19
RS
2275/* Remove any fallthru edge from EV. Return true if an edge was removed. */
2276
2277static bool
d4e6fecb 2278remove_fallthru_edge (VEC(edge,gc) *ev)
d7f3fc19
RS
2279{
2280 edge_iterator ei;
2281 edge e;
2282
2283 FOR_EACH_EDGE (e, ei, ev)
2284 if ((e->flags & EDGE_FALLTHRU) != 0)
2285 {
2286 remove_edge (e);
2287 return true;
2288 }
2289 return false;
2290}
6de9cd9a 2291
35920270
KH
2292/* Given a basic block BB ending with COND_EXPR or SWITCH_EXPR, and a
2293 predicate VAL, return the edge that will be taken out of the block.
2294 If VAL does not match a unique edge, NULL is returned. */
6de9cd9a
DN
2295
2296edge
2297find_taken_edge (basic_block bb, tree val)
2298{
2299 tree stmt;
2300
2301 stmt = last_stmt (bb);
2302
1e128c5f
GB
2303 gcc_assert (stmt);
2304 gcc_assert (is_ctrl_stmt (stmt));
65f4323d 2305 gcc_assert (val);
6de9cd9a 2306
be477406 2307 if (! is_gimple_min_invariant (val))
6de9cd9a
DN
2308 return NULL;
2309
2310 if (TREE_CODE (stmt) == COND_EXPR)
2311 return find_taken_edge_cond_expr (bb, val);
2312
2313 if (TREE_CODE (stmt) == SWITCH_EXPR)
2314 return find_taken_edge_switch_expr (bb, val);
2315
be477406
JL
2316 if (computed_goto_p (stmt))
2317 return find_taken_edge_computed_goto (bb, TREE_OPERAND( val, 0));
2318
35920270 2319 gcc_unreachable ();
6de9cd9a
DN
2320}
2321
be477406
JL
2322/* Given a constant value VAL and the entry block BB to a GOTO_EXPR
2323 statement, determine which of the outgoing edges will be taken out of the
2324 block. Return NULL if either edge may be taken. */
2325
2326static edge
2327find_taken_edge_computed_goto (basic_block bb, tree val)
2328{
2329 basic_block dest;
2330 edge e = NULL;
2331
2332 dest = label_to_block (val);
2333 if (dest)
2334 {
2335 e = find_edge (bb, dest);
2336 gcc_assert (e != NULL);
2337 }
2338
2339 return e;
2340}
6de9cd9a
DN
2341
2342/* Given a constant value VAL and the entry block BB to a COND_EXPR
2343 statement, determine which of the two edges will be taken out of the
2344 block. Return NULL if either edge may be taken. */
2345
2346static edge
2347find_taken_edge_cond_expr (basic_block bb, tree val)
2348{
2349 edge true_edge, false_edge;
2350
2351 extract_true_false_edges_from_block (bb, &true_edge, &false_edge);
f1b19062
ZD
2352
2353 gcc_assert (TREE_CODE (val) == INTEGER_CST);
2354 return (zero_p (val) ? false_edge : true_edge);
6de9cd9a
DN
2355}
2356
fca01525 2357/* Given an INTEGER_CST VAL and the entry block BB to a SWITCH_EXPR
6de9cd9a
DN
2358 statement, determine which edge will be taken out of the block. Return
2359 NULL if any edge may be taken. */
2360
2361static edge
2362find_taken_edge_switch_expr (basic_block bb, tree val)
2363{
2364 tree switch_expr, taken_case;
2365 basic_block dest_bb;
2366 edge e;
2367
6de9cd9a
DN
2368 switch_expr = last_stmt (bb);
2369 taken_case = find_case_label_for_value (switch_expr, val);
2370 dest_bb = label_to_block (CASE_LABEL (taken_case));
2371
2372 e = find_edge (bb, dest_bb);
1e128c5f 2373 gcc_assert (e);
6de9cd9a
DN
2374 return e;
2375}
2376
2377
f667741c
SB
2378/* Return the CASE_LABEL_EXPR that SWITCH_EXPR will take for VAL.
2379 We can make optimal use here of the fact that the case labels are
2380 sorted: We can do a binary search for a case matching VAL. */
6de9cd9a
DN
2381
2382static tree
2383find_case_label_for_value (tree switch_expr, tree val)
2384{
2385 tree vec = SWITCH_LABELS (switch_expr);
f667741c
SB
2386 size_t low, high, n = TREE_VEC_LENGTH (vec);
2387 tree default_case = TREE_VEC_ELT (vec, n - 1);
6de9cd9a 2388
f667741c 2389 for (low = -1, high = n - 1; high - low > 1; )
6de9cd9a 2390 {
f667741c 2391 size_t i = (high + low) / 2;
6de9cd9a 2392 tree t = TREE_VEC_ELT (vec, i);
f667741c
SB
2393 int cmp;
2394
2395 /* Cache the result of comparing CASE_LOW and val. */
2396 cmp = tree_int_cst_compare (CASE_LOW (t), val);
6de9cd9a 2397
f667741c
SB
2398 if (cmp > 0)
2399 high = i;
2400 else
2401 low = i;
2402
2403 if (CASE_HIGH (t) == NULL)
6de9cd9a 2404 {
f667741c
SB
2405 /* A singe-valued case label. */
2406 if (cmp == 0)
6de9cd9a
DN
2407 return t;
2408 }
2409 else
2410 {
2411 /* A case range. We can only handle integer ranges. */
f667741c 2412 if (cmp <= 0 && tree_int_cst_compare (CASE_HIGH (t), val) >= 0)
6de9cd9a
DN
2413 return t;
2414 }
2415 }
2416
6de9cd9a
DN
2417 return default_case;
2418}
2419
2420
2421/* If all the PHI nodes in DEST have alternatives for E1 and E2 and
2422 those alternatives are equal in each of the PHI nodes, then return
2423 true, else return false. */
2424
2425static bool
2426phi_alternatives_equal (basic_block dest, edge e1, edge e2)
2427{
5dd8841a
KH
2428 int n1 = e1->dest_idx;
2429 int n2 = e2->dest_idx;
2430 tree phi;
6de9cd9a 2431
17192884 2432 for (phi = phi_nodes (dest); phi; phi = PHI_CHAIN (phi))
6de9cd9a 2433 {
5dd8841a
KH
2434 tree val1 = PHI_ARG_DEF (phi, n1);
2435 tree val2 = PHI_ARG_DEF (phi, n2);
6de9cd9a 2436
5dd8841a
KH
2437 gcc_assert (val1 != NULL_TREE);
2438 gcc_assert (val2 != NULL_TREE);
6de9cd9a 2439
cdef8bc6 2440 if (!operand_equal_for_phi_arg_p (val1, val2))
6de9cd9a
DN
2441 return false;
2442 }
2443
2444 return true;
2445}
2446
2447
6de9cd9a
DN
2448/*---------------------------------------------------------------------------
2449 Debugging functions
2450---------------------------------------------------------------------------*/
2451
2452/* Dump tree-specific information of block BB to file OUTF. */
2453
2454void
2455tree_dump_bb (basic_block bb, FILE *outf, int indent)
2456{
2457 dump_generic_bb (outf, bb, indent, TDF_VOPS);
2458}
2459
2460
2461/* Dump a basic block on stderr. */
2462
2463void
2464debug_tree_bb (basic_block bb)
2465{
2466 dump_bb (bb, stderr, 0);
2467}
2468
2469
2470/* Dump basic block with index N on stderr. */
2471
2472basic_block
2473debug_tree_bb_n (int n)
2474{
2475 debug_tree_bb (BASIC_BLOCK (n));
2476 return BASIC_BLOCK (n);
2477}
2478
2479
2480/* Dump the CFG on stderr.
2481
2482 FLAGS are the same used by the tree dumping functions
2483 (see TDF_* in tree.h). */
2484
2485void
2486debug_tree_cfg (int flags)
2487{
2488 dump_tree_cfg (stderr, flags);
2489}
2490
2491
2492/* Dump the program showing basic block boundaries on the given FILE.
2493
2494 FLAGS are the same used by the tree dumping functions (see TDF_* in
2495 tree.h). */
2496
2497void
2498dump_tree_cfg (FILE *file, int flags)
2499{
2500 if (flags & TDF_DETAILS)
2501 {
2502 const char *funcname
673fda6b 2503 = lang_hooks.decl_printable_name (current_function_decl, 2);
6de9cd9a
DN
2504
2505 fputc ('\n', file);
2506 fprintf (file, ";; Function %s\n\n", funcname);
2507 fprintf (file, ";; \n%d basic blocks, %d edges, last basic block %d.\n\n",
2508 n_basic_blocks, n_edges, last_basic_block);
2509
2510 brief_dump_cfg (file);
2511 fprintf (file, "\n");
2512 }
2513
2514 if (flags & TDF_STATS)
2515 dump_cfg_stats (file);
2516
2517 dump_function_to_file (current_function_decl, file, flags | TDF_BLOCKS);
2518}
2519
2520
2521/* Dump CFG statistics on FILE. */
2522
2523void
2524dump_cfg_stats (FILE *file)
2525{
2526 static long max_num_merged_labels = 0;
2527 unsigned long size, total = 0;
7b0cab99 2528 long num_edges;
6de9cd9a
DN
2529 basic_block bb;
2530 const char * const fmt_str = "%-30s%-13s%12s\n";
f7fda749 2531 const char * const fmt_str_1 = "%-30s%13d%11lu%c\n";
6de9cd9a
DN
2532 const char * const fmt_str_3 = "%-43s%11lu%c\n";
2533 const char *funcname
673fda6b 2534 = lang_hooks.decl_printable_name (current_function_decl, 2);
6de9cd9a
DN
2535
2536
2537 fprintf (file, "\nCFG Statistics for %s\n\n", funcname);
2538
2539 fprintf (file, "---------------------------------------------------------\n");
2540 fprintf (file, fmt_str, "", " Number of ", "Memory");
2541 fprintf (file, fmt_str, "", " instances ", "used ");
2542 fprintf (file, "---------------------------------------------------------\n");
2543
2544 size = n_basic_blocks * sizeof (struct basic_block_def);
2545 total += size;
f7fda749
RH
2546 fprintf (file, fmt_str_1, "Basic blocks", n_basic_blocks,
2547 SCALE (size), LABEL (size));
6de9cd9a 2548
7b0cab99 2549 num_edges = 0;
6de9cd9a 2550 FOR_EACH_BB (bb)
7b0cab99
JH
2551 num_edges += EDGE_COUNT (bb->succs);
2552 size = num_edges * sizeof (struct edge_def);
6de9cd9a 2553 total += size;
7b0cab99 2554 fprintf (file, fmt_str_1, "Edges", num_edges, SCALE (size), LABEL (size));
6de9cd9a
DN
2555
2556 size = n_basic_blocks * sizeof (struct bb_ann_d);
2557 total += size;
2558 fprintf (file, fmt_str_1, "Basic block annotations", n_basic_blocks,
2559 SCALE (size), LABEL (size));
2560
2561 fprintf (file, "---------------------------------------------------------\n");
2562 fprintf (file, fmt_str_3, "Total memory used by CFG data", SCALE (total),
2563 LABEL (total));
2564 fprintf (file, "---------------------------------------------------------\n");
2565 fprintf (file, "\n");
2566
2567 if (cfg_stats.num_merged_labels > max_num_merged_labels)
2568 max_num_merged_labels = cfg_stats.num_merged_labels;
2569
2570 fprintf (file, "Coalesced label blocks: %ld (Max so far: %ld)\n",
2571 cfg_stats.num_merged_labels, max_num_merged_labels);
2572
2573 fprintf (file, "\n");
2574}
2575
2576
2577/* Dump CFG statistics on stderr. Keep extern so that it's always
2578 linked in the final executable. */
2579
2580void
2581debug_cfg_stats (void)
2582{
2583 dump_cfg_stats (stderr);
2584}
2585
2586
2587/* Dump the flowgraph to a .vcg FILE. */
2588
2589static void
2590tree_cfg2vcg (FILE *file)
2591{
2592 edge e;
628f6a4e 2593 edge_iterator ei;
6de9cd9a
DN
2594 basic_block bb;
2595 const char *funcname
673fda6b 2596 = lang_hooks.decl_printable_name (current_function_decl, 2);
6de9cd9a
DN
2597
2598 /* Write the file header. */
2599 fprintf (file, "graph: { title: \"%s\"\n", funcname);
2600 fprintf (file, "node: { title: \"ENTRY\" label: \"ENTRY\" }\n");
2601 fprintf (file, "node: { title: \"EXIT\" label: \"EXIT\" }\n");
2602
2603 /* Write blocks and edges. */
628f6a4e 2604 FOR_EACH_EDGE (e, ei, ENTRY_BLOCK_PTR->succs)
6de9cd9a
DN
2605 {
2606 fprintf (file, "edge: { sourcename: \"ENTRY\" targetname: \"%d\"",
2607 e->dest->index);
2608
2609 if (e->flags & EDGE_FAKE)
2610 fprintf (file, " linestyle: dotted priority: 10");
2611 else
2612 fprintf (file, " linestyle: solid priority: 100");
2613
2614 fprintf (file, " }\n");
2615 }
2616 fputc ('\n', file);
2617
2618 FOR_EACH_BB (bb)
2619 {
2620 enum tree_code head_code, end_code;
2621 const char *head_name, *end_name;
2622 int head_line = 0;
2623 int end_line = 0;
2624 tree first = first_stmt (bb);
2625 tree last = last_stmt (bb);
2626
2627 if (first)
2628 {
2629 head_code = TREE_CODE (first);
2630 head_name = tree_code_name[head_code];
2631 head_line = get_lineno (first);
2632 }
2633 else
2634 head_name = "no-statement";
2635
2636 if (last)
2637 {
2638 end_code = TREE_CODE (last);
2639 end_name = tree_code_name[end_code];
2640 end_line = get_lineno (last);
2641 }
2642 else
2643 end_name = "no-statement";
2644
2645 fprintf (file, "node: { title: \"%d\" label: \"#%d\\n%s (%d)\\n%s (%d)\"}\n",
2646 bb->index, bb->index, head_name, head_line, end_name,
2647 end_line);
2648
628f6a4e 2649 FOR_EACH_EDGE (e, ei, bb->succs)
6de9cd9a
DN
2650 {
2651 if (e->dest == EXIT_BLOCK_PTR)
2652 fprintf (file, "edge: { sourcename: \"%d\" targetname: \"EXIT\"", bb->index);
2653 else
2654 fprintf (file, "edge: { sourcename: \"%d\" targetname: \"%d\"", bb->index, e->dest->index);
2655
2656 if (e->flags & EDGE_FAKE)
2657 fprintf (file, " priority: 10 linestyle: dotted");
2658 else
2659 fprintf (file, " priority: 100 linestyle: solid");
2660
2661 fprintf (file, " }\n");
2662 }
2663
2664 if (bb->next_bb != EXIT_BLOCK_PTR)
2665 fputc ('\n', file);
2666 }
2667
2668 fputs ("}\n\n", file);
2669}
2670
2671
2672
2673/*---------------------------------------------------------------------------
2674 Miscellaneous helpers
2675---------------------------------------------------------------------------*/
2676
2677/* Return true if T represents a stmt that always transfers control. */
2678
2679bool
2680is_ctrl_stmt (tree t)
2681{
2682 return (TREE_CODE (t) == COND_EXPR
2683 || TREE_CODE (t) == SWITCH_EXPR
2684 || TREE_CODE (t) == GOTO_EXPR
2685 || TREE_CODE (t) == RETURN_EXPR
2686 || TREE_CODE (t) == RESX_EXPR);
2687}
2688
2689
2690/* Return true if T is a statement that may alter the flow of control
2691 (e.g., a call to a non-returning function). */
2692
2693bool
2694is_ctrl_altering_stmt (tree t)
2695{
cd709752 2696 tree call;
6de9cd9a 2697
1e128c5f 2698 gcc_assert (t);
cd709752
RH
2699 call = get_call_expr_in (t);
2700 if (call)
6de9cd9a 2701 {
6de9cd9a
DN
2702 /* A non-pure/const CALL_EXPR alters flow control if the current
2703 function has nonlocal labels. */
cd709752 2704 if (TREE_SIDE_EFFECTS (call) && current_function_has_nonlocal_label)
6de9cd9a
DN
2705 return true;
2706
2707 /* A CALL_EXPR also alters control flow if it does not return. */
6e14af16 2708 if (call_expr_flags (call) & ECF_NORETURN)
6de9cd9a 2709 return true;
6de9cd9a
DN
2710 }
2711
2712 /* If a statement can throw, it alters control flow. */
2713 return tree_can_throw_internal (t);
2714}
2715
2716
2717/* Return true if T is a computed goto. */
2718
2719bool
2720computed_goto_p (tree t)
2721{
2722 return (TREE_CODE (t) == GOTO_EXPR
2723 && TREE_CODE (GOTO_DESTINATION (t)) != LABEL_DECL);
2724}
2725
2726
2727/* Checks whether EXPR is a simple local goto. */
2728
2729bool
2730simple_goto_p (tree expr)
2731{
ab8907ef
RH
2732 return (TREE_CODE (expr) == GOTO_EXPR
2733 && TREE_CODE (GOTO_DESTINATION (expr)) == LABEL_DECL);
6de9cd9a
DN
2734}
2735
2736
2737/* Return true if T should start a new basic block. PREV_T is the
2738 statement preceding T. It is used when T is a label or a case label.
2739 Labels should only start a new basic block if their previous statement
2740 wasn't a label. Otherwise, sequence of labels would generate
2741 unnecessary basic blocks that only contain a single label. */
2742
2743static inline bool
2744stmt_starts_bb_p (tree t, tree prev_t)
2745{
6de9cd9a
DN
2746 if (t == NULL_TREE)
2747 return false;
2748
2749 /* LABEL_EXPRs start a new basic block only if the preceding
2750 statement wasn't a label of the same type. This prevents the
2751 creation of consecutive blocks that have nothing but a single
2752 label. */
229cc11f 2753 if (TREE_CODE (t) == LABEL_EXPR)
6de9cd9a
DN
2754 {
2755 /* Nonlocal and computed GOTO targets always start a new block. */
229cc11f
KH
2756 if (DECL_NONLOCAL (LABEL_EXPR_LABEL (t))
2757 || FORCED_LABEL (LABEL_EXPR_LABEL (t)))
6de9cd9a
DN
2758 return true;
2759
229cc11f 2760 if (prev_t && TREE_CODE (prev_t) == LABEL_EXPR)
6de9cd9a
DN
2761 {
2762 if (DECL_NONLOCAL (LABEL_EXPR_LABEL (prev_t)))
2763 return true;
2764
2765 cfg_stats.num_merged_labels++;
2766 return false;
2767 }
2768 else
2769 return true;
2770 }
2771
2772 return false;
2773}
2774
2775
2776/* Return true if T should end a basic block. */
2777
2778bool
2779stmt_ends_bb_p (tree t)
2780{
2781 return is_ctrl_stmt (t) || is_ctrl_altering_stmt (t);
2782}
2783
2784
2785/* Add gotos that used to be represented implicitly in the CFG. */
2786
2787void
2788disband_implicit_edges (void)
2789{
2790 basic_block bb;
2791 block_stmt_iterator last;
2792 edge e;
628f6a4e 2793 edge_iterator ei;
eb4e1c01 2794 tree stmt, label;
6de9cd9a
DN
2795
2796 FOR_EACH_BB (bb)
2797 {
2798 last = bsi_last (bb);
2799 stmt = last_stmt (bb);
2800
2801 if (stmt && TREE_CODE (stmt) == COND_EXPR)
2802 {
2803 /* Remove superfluous gotos from COND_EXPR branches. Moved
2804 from cfg_remove_useless_stmts here since it violates the
2805 invariants for tree--cfg correspondence and thus fits better
2806 here where we do it anyway. */
9ff3d2de
JL
2807 e = find_edge (bb, bb->next_bb);
2808 if (e)
6de9cd9a 2809 {
6de9cd9a
DN
2810 if (e->flags & EDGE_TRUE_VALUE)
2811 COND_EXPR_THEN (stmt) = build_empty_stmt ();
2812 else if (e->flags & EDGE_FALSE_VALUE)
2813 COND_EXPR_ELSE (stmt) = build_empty_stmt ();
2814 else
1e128c5f 2815 gcc_unreachable ();
6de9cd9a
DN
2816 e->flags |= EDGE_FALLTHRU;
2817 }
2818
2819 continue;
2820 }
2821
2822 if (stmt && TREE_CODE (stmt) == RETURN_EXPR)
2823 {
2824 /* Remove the RETURN_EXPR if we may fall though to the exit
2825 instead. */
c5cbcccf
ZD
2826 gcc_assert (single_succ_p (bb));
2827 gcc_assert (single_succ (bb) == EXIT_BLOCK_PTR);
6de9cd9a
DN
2828
2829 if (bb->next_bb == EXIT_BLOCK_PTR
2830 && !TREE_OPERAND (stmt, 0))
2831 {
2832 bsi_remove (&last);
c5cbcccf 2833 single_succ_edge (bb)->flags |= EDGE_FALLTHRU;
6de9cd9a
DN
2834 }
2835 continue;
2836 }
2837
2838 /* There can be no fallthru edge if the last statement is a control
2839 one. */
2840 if (stmt && is_ctrl_stmt (stmt))
2841 continue;
2842
2843 /* Find a fallthru edge and emit the goto if necessary. */
628f6a4e 2844 FOR_EACH_EDGE (e, ei, bb->succs)
6de9cd9a
DN
2845 if (e->flags & EDGE_FALLTHRU)
2846 break;
2847
62b857ea 2848 if (!e || e->dest == bb->next_bb)
6de9cd9a
DN
2849 continue;
2850
1e128c5f 2851 gcc_assert (e->dest != EXIT_BLOCK_PTR);
6de9cd9a
DN
2852 label = tree_block_label (e->dest);
2853
62b857ea 2854 stmt = build1 (GOTO_EXPR, void_type_node, label);
9506ac2b
PB
2855#ifdef USE_MAPPED_LOCATION
2856 SET_EXPR_LOCATION (stmt, e->goto_locus);
2857#else
62b857ea 2858 SET_EXPR_LOCUS (stmt, e->goto_locus);
9506ac2b 2859#endif
62b857ea 2860 bsi_insert_after (&last, stmt, BSI_NEW_STMT);
6de9cd9a
DN
2861 e->flags &= ~EDGE_FALLTHRU;
2862 }
2863}
2864
242229bb 2865/* Remove block annotations and other datastructures. */
6de9cd9a
DN
2866
2867void
242229bb 2868delete_tree_cfg_annotations (void)
6de9cd9a 2869{
242229bb 2870 basic_block bb;
6de9cd9a
DN
2871 if (n_basic_blocks > 0)
2872 free_blocks_annotations ();
2873
6de9cd9a 2874 label_to_block_map = NULL;
242229bb
JH
2875 FOR_EACH_BB (bb)
2876 bb->rbi = NULL;
6de9cd9a
DN
2877}
2878
2879
2880/* Return the first statement in basic block BB. */
2881
2882tree
2883first_stmt (basic_block bb)
2884{
2885 block_stmt_iterator i = bsi_start (bb);
2886 return !bsi_end_p (i) ? bsi_stmt (i) : NULL_TREE;
2887}
2888
2889
2890/* Return the last statement in basic block BB. */
2891
2892tree
2893last_stmt (basic_block bb)
2894{
2895 block_stmt_iterator b = bsi_last (bb);
2896 return !bsi_end_p (b) ? bsi_stmt (b) : NULL_TREE;
2897}
2898
2899
2900/* Return a pointer to the last statement in block BB. */
2901
2902tree *
2903last_stmt_ptr (basic_block bb)
2904{
2905 block_stmt_iterator last = bsi_last (bb);
2906 return !bsi_end_p (last) ? bsi_stmt_ptr (last) : NULL;
2907}
2908
2909
2910/* Return the last statement of an otherwise empty block. Return NULL
2911 if the block is totally empty, or if it contains more than one
2912 statement. */
2913
2914tree
2915last_and_only_stmt (basic_block bb)
2916{
2917 block_stmt_iterator i = bsi_last (bb);
2918 tree last, prev;
2919
2920 if (bsi_end_p (i))
2921 return NULL_TREE;
2922
2923 last = bsi_stmt (i);
2924 bsi_prev (&i);
2925 if (bsi_end_p (i))
2926 return last;
2927
2928 /* Empty statements should no longer appear in the instruction stream.
2929 Everything that might have appeared before should be deleted by
2930 remove_useless_stmts, and the optimizers should just bsi_remove
2931 instead of smashing with build_empty_stmt.
2932
2933 Thus the only thing that should appear here in a block containing
2934 one executable statement is a label. */
2935 prev = bsi_stmt (i);
2936 if (TREE_CODE (prev) == LABEL_EXPR)
2937 return last;
2938 else
2939 return NULL_TREE;
2940}
2941
2942
2943/* Mark BB as the basic block holding statement T. */
2944
2945void
2946set_bb_for_stmt (tree t, basic_block bb)
2947{
30d396e3
ZD
2948 if (TREE_CODE (t) == PHI_NODE)
2949 PHI_BB (t) = bb;
2950 else if (TREE_CODE (t) == STATEMENT_LIST)
6de9cd9a
DN
2951 {
2952 tree_stmt_iterator i;
2953 for (i = tsi_start (t); !tsi_end_p (i); tsi_next (&i))
2954 set_bb_for_stmt (tsi_stmt (i), bb);
2955 }
2956 else
2957 {
2958 stmt_ann_t ann = get_stmt_ann (t);
2959 ann->bb = bb;
2960
2961 /* If the statement is a label, add the label to block-to-labels map
2962 so that we can speed up edge creation for GOTO_EXPRs. */
2963 if (TREE_CODE (t) == LABEL_EXPR)
2964 {
2965 int uid;
2966
2967 t = LABEL_EXPR_LABEL (t);
2968 uid = LABEL_DECL_UID (t);
2969 if (uid == -1)
2970 {
2971 LABEL_DECL_UID (t) = uid = cfun->last_label_uid++;
2972 if (VARRAY_SIZE (label_to_block_map) <= (unsigned) uid)
2973 VARRAY_GROW (label_to_block_map, 3 * uid / 2);
2974 }
2975 else
1e128c5f
GB
2976 /* We're moving an existing label. Make sure that we've
2977 removed it from the old block. */
2978 gcc_assert (!bb || !VARRAY_BB (label_to_block_map, uid));
6de9cd9a
DN
2979 VARRAY_BB (label_to_block_map, uid) = bb;
2980 }
2981 }
2982}
2983
8b11a64c
ZD
2984/* Finds iterator for STMT. */
2985
2986extern block_stmt_iterator
1a1804c2 2987bsi_for_stmt (tree stmt)
8b11a64c
ZD
2988{
2989 block_stmt_iterator bsi;
2990
2991 for (bsi = bsi_start (bb_for_stmt (stmt)); !bsi_end_p (bsi); bsi_next (&bsi))
2992 if (bsi_stmt (bsi) == stmt)
2993 return bsi;
2994
1e128c5f 2995 gcc_unreachable ();
8b11a64c 2996}
6de9cd9a 2997
f430bae8
AM
2998/* Mark statement T as modified, and update it. */
2999static inline void
3000update_modified_stmts (tree t)
3001{
3002 if (TREE_CODE (t) == STATEMENT_LIST)
3003 {
3004 tree_stmt_iterator i;
3005 tree stmt;
3006 for (i = tsi_start (t); !tsi_end_p (i); tsi_next (&i))
3007 {
3008 stmt = tsi_stmt (i);
3009 update_stmt_if_modified (stmt);
3010 }
3011 }
3012 else
3013 update_stmt_if_modified (t);
3014}
3015
6de9cd9a
DN
3016/* Insert statement (or statement list) T before the statement
3017 pointed-to by iterator I. M specifies how to update iterator I
3018 after insertion (see enum bsi_iterator_update). */
3019
3020void
3021bsi_insert_before (block_stmt_iterator *i, tree t, enum bsi_iterator_update m)
3022{
3023 set_bb_for_stmt (t, i->bb);
f430bae8 3024 update_modified_stmts (t);
6de9cd9a
DN
3025 tsi_link_before (&i->tsi, t, m);
3026}
3027
3028
3029/* Insert statement (or statement list) T after the statement
3030 pointed-to by iterator I. M specifies how to update iterator I
3031 after insertion (see enum bsi_iterator_update). */
3032
3033void
3034bsi_insert_after (block_stmt_iterator *i, tree t, enum bsi_iterator_update m)
3035{
3036 set_bb_for_stmt (t, i->bb);
f430bae8 3037 update_modified_stmts (t);
6de9cd9a
DN
3038 tsi_link_after (&i->tsi, t, m);
3039}
3040
3041
3042/* Remove the statement pointed to by iterator I. The iterator is updated
3043 to the next statement. */
3044
3045void
3046bsi_remove (block_stmt_iterator *i)
3047{
3048 tree t = bsi_stmt (*i);
3049 set_bb_for_stmt (t, NULL);
f430bae8 3050 delink_stmt_imm_use (t);
6de9cd9a 3051 tsi_delink (&i->tsi);
f430bae8 3052 mark_stmt_modified (t);
6de9cd9a
DN
3053}
3054
3055
3056/* Move the statement at FROM so it comes right after the statement at TO. */
3057
3058void
3059bsi_move_after (block_stmt_iterator *from, block_stmt_iterator *to)
3060{
3061 tree stmt = bsi_stmt (*from);
3062 bsi_remove (from);
3063 bsi_insert_after (to, stmt, BSI_SAME_STMT);
3064}
3065
3066
3067/* Move the statement at FROM so it comes right before the statement at TO. */
3068
3069void
3070bsi_move_before (block_stmt_iterator *from, block_stmt_iterator *to)
3071{
3072 tree stmt = bsi_stmt (*from);
3073 bsi_remove (from);
3074 bsi_insert_before (to, stmt, BSI_SAME_STMT);
3075}
3076
3077
3078/* Move the statement at FROM to the end of basic block BB. */
3079
3080void
3081bsi_move_to_bb_end (block_stmt_iterator *from, basic_block bb)
3082{
3083 block_stmt_iterator last = bsi_last (bb);
3084
3085 /* Have to check bsi_end_p because it could be an empty block. */
3086 if (!bsi_end_p (last) && is_ctrl_stmt (bsi_stmt (last)))
3087 bsi_move_before (from, &last);
3088 else
3089 bsi_move_after (from, &last);
3090}
3091
3092
3093/* Replace the contents of the statement pointed to by iterator BSI
3094 with STMT. If PRESERVE_EH_INFO is true, the exception handling
3095 information of the original statement is preserved. */
3096
3097void
3098bsi_replace (const block_stmt_iterator *bsi, tree stmt, bool preserve_eh_info)
3099{
3100 int eh_region;
3101 tree orig_stmt = bsi_stmt (*bsi);
3102
3103 SET_EXPR_LOCUS (stmt, EXPR_LOCUS (orig_stmt));
3104 set_bb_for_stmt (stmt, bsi->bb);
3105
3106 /* Preserve EH region information from the original statement, if
3107 requested by the caller. */
3108 if (preserve_eh_info)
3109 {
3110 eh_region = lookup_stmt_eh_region (orig_stmt);
3111 if (eh_region >= 0)
3112 add_stmt_to_eh_region (stmt, eh_region);
3113 }
3114
b1ca239f 3115 delink_stmt_imm_use (orig_stmt);
6de9cd9a 3116 *bsi_stmt_ptr (*bsi) = stmt;
f430bae8
AM
3117 mark_stmt_modified (stmt);
3118 update_modified_stmts (stmt);
6de9cd9a
DN
3119}
3120
3121
3122/* Insert the statement pointed-to by BSI into edge E. Every attempt
3123 is made to place the statement in an existing basic block, but
3124 sometimes that isn't possible. When it isn't possible, the edge is
3125 split and the statement is added to the new block.
3126
3127 In all cases, the returned *BSI points to the correct location. The
3128 return value is true if insertion should be done after the location,
82b85a85
ZD
3129 or false if it should be done before the location. If new basic block
3130 has to be created, it is stored in *NEW_BB. */
6de9cd9a
DN
3131
3132static bool
82b85a85
ZD
3133tree_find_edge_insert_loc (edge e, block_stmt_iterator *bsi,
3134 basic_block *new_bb)
6de9cd9a
DN
3135{
3136 basic_block dest, src;
3137 tree tmp;
3138
3139 dest = e->dest;
3140 restart:
3141
3142 /* If the destination has one predecessor which has no PHI nodes,
3143 insert there. Except for the exit block.
3144
3145 The requirement for no PHI nodes could be relaxed. Basically we
3146 would have to examine the PHIs to prove that none of them used
e28d0cfb 3147 the value set by the statement we want to insert on E. That
6de9cd9a 3148 hardly seems worth the effort. */
c5cbcccf 3149 if (single_pred_p (dest)
6de9cd9a
DN
3150 && ! phi_nodes (dest)
3151 && dest != EXIT_BLOCK_PTR)
3152 {
3153 *bsi = bsi_start (dest);
3154 if (bsi_end_p (*bsi))
3155 return true;
3156
3157 /* Make sure we insert after any leading labels. */
3158 tmp = bsi_stmt (*bsi);
3159 while (TREE_CODE (tmp) == LABEL_EXPR)
3160 {
3161 bsi_next (bsi);
3162 if (bsi_end_p (*bsi))
3163 break;
3164 tmp = bsi_stmt (*bsi);
3165 }
3166
3167 if (bsi_end_p (*bsi))
3168 {
3169 *bsi = bsi_last (dest);
3170 return true;
3171 }
3172 else
3173 return false;
3174 }
3175
3176 /* If the source has one successor, the edge is not abnormal and
3177 the last statement does not end a basic block, insert there.
3178 Except for the entry block. */
3179 src = e->src;
3180 if ((e->flags & EDGE_ABNORMAL) == 0
c5cbcccf 3181 && single_succ_p (src)
6de9cd9a
DN
3182 && src != ENTRY_BLOCK_PTR)
3183 {
3184 *bsi = bsi_last (src);
3185 if (bsi_end_p (*bsi))
3186 return true;
3187
3188 tmp = bsi_stmt (*bsi);
3189 if (!stmt_ends_bb_p (tmp))
3190 return true;
ce068299
JH
3191
3192 /* Insert code just before returning the value. We may need to decompose
3193 the return in the case it contains non-trivial operand. */
3194 if (TREE_CODE (tmp) == RETURN_EXPR)
3195 {
3196 tree op = TREE_OPERAND (tmp, 0);
3197 if (!is_gimple_val (op))
3198 {
1e128c5f 3199 gcc_assert (TREE_CODE (op) == MODIFY_EXPR);
ce068299
JH
3200 bsi_insert_before (bsi, op, BSI_NEW_STMT);
3201 TREE_OPERAND (tmp, 0) = TREE_OPERAND (op, 0);
3202 }
3203 bsi_prev (bsi);
3204 return true;
3205 }
6de9cd9a
DN
3206 }
3207
3208 /* Otherwise, create a new basic block, and split this edge. */
3209 dest = split_edge (e);
82b85a85
ZD
3210 if (new_bb)
3211 *new_bb = dest;
c5cbcccf 3212 e = single_pred_edge (dest);
6de9cd9a
DN
3213 goto restart;
3214}
3215
3216
3217/* This routine will commit all pending edge insertions, creating any new
8e731e4e 3218 basic blocks which are necessary. */
6de9cd9a
DN
3219
3220void
8e731e4e 3221bsi_commit_edge_inserts (void)
6de9cd9a
DN
3222{
3223 basic_block bb;
3224 edge e;
628f6a4e 3225 edge_iterator ei;
6de9cd9a 3226
c5cbcccf 3227 bsi_commit_one_edge_insert (single_succ_edge (ENTRY_BLOCK_PTR), NULL);
6de9cd9a
DN
3228
3229 FOR_EACH_BB (bb)
628f6a4e 3230 FOR_EACH_EDGE (e, ei, bb->succs)
edfaf675 3231 bsi_commit_one_edge_insert (e, NULL);
6de9cd9a
DN
3232}
3233
3234
edfaf675
AM
3235/* Commit insertions pending at edge E. If a new block is created, set NEW_BB
3236 to this block, otherwise set it to NULL. */
6de9cd9a 3237
edfaf675
AM
3238void
3239bsi_commit_one_edge_insert (edge e, basic_block *new_bb)
6de9cd9a 3240{
edfaf675
AM
3241 if (new_bb)
3242 *new_bb = NULL;
6de9cd9a
DN
3243 if (PENDING_STMT (e))
3244 {
3245 block_stmt_iterator bsi;
3246 tree stmt = PENDING_STMT (e);
3247
3248 PENDING_STMT (e) = NULL_TREE;
3249
edfaf675 3250 if (tree_find_edge_insert_loc (e, &bsi, new_bb))
6de9cd9a
DN
3251 bsi_insert_after (&bsi, stmt, BSI_NEW_STMT);
3252 else
3253 bsi_insert_before (&bsi, stmt, BSI_NEW_STMT);
3254 }
3255}
3256
3257
3258/* Add STMT to the pending list of edge E. No actual insertion is
3259 made until a call to bsi_commit_edge_inserts () is made. */
3260
3261void
3262bsi_insert_on_edge (edge e, tree stmt)
3263{
3264 append_to_statement_list (stmt, &PENDING_STMT (e));
3265}
3266
adb35797
KH
3267/* Similar to bsi_insert_on_edge+bsi_commit_edge_inserts. If a new
3268 block has to be created, it is returned. */
82b85a85
ZD
3269
3270basic_block
3271bsi_insert_on_edge_immediate (edge e, tree stmt)
3272{
3273 block_stmt_iterator bsi;
3274 basic_block new_bb = NULL;
3275
1e128c5f 3276 gcc_assert (!PENDING_STMT (e));
82b85a85
ZD
3277
3278 if (tree_find_edge_insert_loc (e, &bsi, &new_bb))
3279 bsi_insert_after (&bsi, stmt, BSI_NEW_STMT);
3280 else
3281 bsi_insert_before (&bsi, stmt, BSI_NEW_STMT);
3282
3283 return new_bb;
3284}
6de9cd9a 3285
6de9cd9a
DN
3286/*---------------------------------------------------------------------------
3287 Tree specific functions for CFG manipulation
3288---------------------------------------------------------------------------*/
3289
4f7db7f7
KH
3290/* Reinstall those PHI arguments queued in OLD_EDGE to NEW_EDGE. */
3291
3292static void
3293reinstall_phi_args (edge new_edge, edge old_edge)
3294{
3295 tree var, phi;
3296
3297 if (!PENDING_STMT (old_edge))
3298 return;
3299
3300 for (var = PENDING_STMT (old_edge), phi = phi_nodes (new_edge->dest);
3301 var && phi;
3302 var = TREE_CHAIN (var), phi = PHI_CHAIN (phi))
3303 {
3304 tree result = TREE_PURPOSE (var);
3305 tree arg = TREE_VALUE (var);
3306
3307 gcc_assert (result == PHI_RESULT (phi));
3308
d2e398df 3309 add_phi_arg (phi, arg, new_edge);
4f7db7f7
KH
3310 }
3311
3312 PENDING_STMT (old_edge) = NULL;
3313}
3314
6de9cd9a
DN
3315/* Split a (typically critical) edge EDGE_IN. Return the new block.
3316 Abort on abnormal edges. */
3317
3318static basic_block
3319tree_split_edge (edge edge_in)
3320{
3321 basic_block new_bb, after_bb, dest, src;
3322 edge new_edge, e;
6de9cd9a
DN
3323
3324 /* Abnormal edges cannot be split. */
1e128c5f 3325 gcc_assert (!(edge_in->flags & EDGE_ABNORMAL));
6de9cd9a
DN
3326
3327 src = edge_in->src;
3328 dest = edge_in->dest;
3329
3330 /* Place the new block in the block list. Try to keep the new block
3331 near its "logical" location. This is of most help to humans looking
3332 at debugging dumps. */
7510740d 3333 if (dest->prev_bb && find_edge (dest->prev_bb, dest))
6de9cd9a 3334 after_bb = edge_in->src;
7510740d
KH
3335 else
3336 after_bb = dest->prev_bb;
6de9cd9a
DN
3337
3338 new_bb = create_empty_bb (after_bb);
b829f3fa
JH
3339 new_bb->frequency = EDGE_FREQUENCY (edge_in);
3340 new_bb->count = edge_in->count;
6de9cd9a 3341 new_edge = make_edge (new_bb, dest, EDGE_FALLTHRU);
b829f3fa
JH
3342 new_edge->probability = REG_BR_PROB_BASE;
3343 new_edge->count = edge_in->count;
6de9cd9a 3344
1e128c5f
GB
3345 e = redirect_edge_and_branch (edge_in, new_bb);
3346 gcc_assert (e);
4f7db7f7 3347 reinstall_phi_args (new_edge, e);
6de9cd9a
DN
3348
3349 return new_bb;
3350}
3351
3352
3353/* Return true when BB has label LABEL in it. */
3354
3355static bool
3356has_label_p (basic_block bb, tree label)
3357{
3358 block_stmt_iterator bsi;
3359
3360 for (bsi = bsi_start (bb); !bsi_end_p (bsi); bsi_next (&bsi))
3361 {
3362 tree stmt = bsi_stmt (bsi);
3363
3364 if (TREE_CODE (stmt) != LABEL_EXPR)
3365 return false;
3366 if (LABEL_EXPR_LABEL (stmt) == label)
3367 return true;
3368 }
3369 return false;
3370}
3371
3372
3373/* Callback for walk_tree, check that all elements with address taken are
7a442a1d
SB
3374 properly noticed as such. The DATA is an int* that is 1 if TP was seen
3375 inside a PHI node. */
6de9cd9a
DN
3376
3377static tree
2fbe90f2 3378verify_expr (tree *tp, int *walk_subtrees, void *data ATTRIBUTE_UNUSED)
6de9cd9a
DN
3379{
3380 tree t = *tp, x;
7a442a1d 3381 bool in_phi = (data != NULL);
6de9cd9a
DN
3382
3383 if (TYPE_P (t))
3384 *walk_subtrees = 0;
2fbe90f2 3385
50b04185
RK
3386 /* Check operand N for being valid GIMPLE and give error MSG if not.
3387 We check for constants explicitly since they are not considered
3388 gimple invariants if they overflowed. */
2fbe90f2 3389#define CHECK_OP(N, MSG) \
6615c446
JO
3390 do { if (!CONSTANT_CLASS_P (TREE_OPERAND (t, N)) \
3391 && !is_gimple_val (TREE_OPERAND (t, N))) \
2fbe90f2 3392 { error (MSG); return TREE_OPERAND (t, N); }} while (0)
6de9cd9a
DN
3393
3394 switch (TREE_CODE (t))
3395 {
3396 case SSA_NAME:
3397 if (SSA_NAME_IN_FREE_LIST (t))
3398 {
3399 error ("SSA name in freelist but still referenced");
3400 return *tp;
3401 }
3402 break;
3403
0bca51f0
DN
3404 case ASSERT_EXPR:
3405 x = fold (ASSERT_EXPR_COND (t));
3406 if (x == boolean_false_node)
3407 {
3408 error ("ASSERT_EXPR with an always-false condition");
3409 return *tp;
3410 }
3411 break;
3412
6de9cd9a
DN
3413 case MODIFY_EXPR:
3414 x = TREE_OPERAND (t, 0);
3415 if (TREE_CODE (x) == BIT_FIELD_REF
3416 && is_gimple_reg (TREE_OPERAND (x, 0)))
3417 {
3418 error ("GIMPLE register modified with BIT_FIELD_REF");
2fbe90f2 3419 return t;
6de9cd9a
DN
3420 }
3421 break;
3422
3423 case ADDR_EXPR:
7a442a1d
SB
3424 /* ??? tree-ssa-alias.c may have overlooked dead PHI nodes, missing
3425 dead PHIs that take the address of something. But if the PHI
3426 result is dead, the fact that it takes the address of anything
3427 is irrelevant. Because we can not tell from here if a PHI result
3428 is dead, we just skip this check for PHIs altogether. This means
3429 we may be missing "valid" checks, but what can you do?
3430 This was PR19217. */
3431 if (in_phi)
3432 break;
3433
2fbe90f2
RK
3434 /* Skip any references (they will be checked when we recurse down the
3435 tree) and ensure that any variable used as a prefix is marked
3436 addressable. */
3437 for (x = TREE_OPERAND (t, 0);
afe84921 3438 handled_component_p (x);
44de5aeb
RK
3439 x = TREE_OPERAND (x, 0))
3440 ;
3441
6de9cd9a
DN
3442 if (TREE_CODE (x) != VAR_DECL && TREE_CODE (x) != PARM_DECL)
3443 return NULL;
3444 if (!TREE_ADDRESSABLE (x))
3445 {
3446 error ("address taken, but ADDRESSABLE bit not set");
3447 return x;
3448 }
3449 break;
3450
3451 case COND_EXPR:
a6234684 3452 x = COND_EXPR_COND (t);
6de9cd9a
DN
3453 if (TREE_CODE (TREE_TYPE (x)) != BOOLEAN_TYPE)
3454 {
3455 error ("non-boolean used in condition");
3456 return x;
3457 }
3458 break;
3459
3460 case NOP_EXPR:
3461 case CONVERT_EXPR:
3462 case FIX_TRUNC_EXPR:
3463 case FIX_CEIL_EXPR:
3464 case FIX_FLOOR_EXPR:
3465 case FIX_ROUND_EXPR:
3466 case FLOAT_EXPR:
3467 case NEGATE_EXPR:
3468 case ABS_EXPR:
3469 case BIT_NOT_EXPR:
3470 case NON_LVALUE_EXPR:
3471 case TRUTH_NOT_EXPR:
2fbe90f2 3472 CHECK_OP (0, "Invalid operand to unary operator");
6de9cd9a
DN
3473 break;
3474
3475 case REALPART_EXPR:
3476 case IMAGPART_EXPR:
2fbe90f2
RK
3477 case COMPONENT_REF:
3478 case ARRAY_REF:
3479 case ARRAY_RANGE_REF:
3480 case BIT_FIELD_REF:
3481 case VIEW_CONVERT_EXPR:
3482 /* We have a nest of references. Verify that each of the operands
3483 that determine where to reference is either a constant or a variable,
3484 verify that the base is valid, and then show we've already checked
3485 the subtrees. */
afe84921 3486 while (handled_component_p (t))
2fbe90f2
RK
3487 {
3488 if (TREE_CODE (t) == COMPONENT_REF && TREE_OPERAND (t, 2))
3489 CHECK_OP (2, "Invalid COMPONENT_REF offset operator");
3490 else if (TREE_CODE (t) == ARRAY_REF
3491 || TREE_CODE (t) == ARRAY_RANGE_REF)
3492 {
3493 CHECK_OP (1, "Invalid array index.");
3494 if (TREE_OPERAND (t, 2))
3495 CHECK_OP (2, "Invalid array lower bound.");
3496 if (TREE_OPERAND (t, 3))
3497 CHECK_OP (3, "Invalid array stride.");
3498 }
3499 else if (TREE_CODE (t) == BIT_FIELD_REF)
3500 {
3501 CHECK_OP (1, "Invalid operand to BIT_FIELD_REF");
3502 CHECK_OP (2, "Invalid operand to BIT_FIELD_REF");
3503 }
3504
3505 t = TREE_OPERAND (t, 0);
3506 }
3507
6615c446 3508 if (!CONSTANT_CLASS_P (t) && !is_gimple_lvalue (t))
2fbe90f2
RK
3509 {
3510 error ("Invalid reference prefix.");
3511 return t;
3512 }
3513 *walk_subtrees = 0;
6de9cd9a
DN
3514 break;
3515
3516 case LT_EXPR:
3517 case LE_EXPR:
3518 case GT_EXPR:
3519 case GE_EXPR:
3520 case EQ_EXPR:
3521 case NE_EXPR:
3522 case UNORDERED_EXPR:
3523 case ORDERED_EXPR:
3524 case UNLT_EXPR:
3525 case UNLE_EXPR:
3526 case UNGT_EXPR:
3527 case UNGE_EXPR:
3528 case UNEQ_EXPR:
d1a7edaf 3529 case LTGT_EXPR:
6de9cd9a
DN
3530 case PLUS_EXPR:
3531 case MINUS_EXPR:
3532 case MULT_EXPR:
3533 case TRUNC_DIV_EXPR:
3534 case CEIL_DIV_EXPR:
3535 case FLOOR_DIV_EXPR:
3536 case ROUND_DIV_EXPR:
3537 case TRUNC_MOD_EXPR:
3538 case CEIL_MOD_EXPR:
3539 case FLOOR_MOD_EXPR:
3540 case ROUND_MOD_EXPR:
3541 case RDIV_EXPR:
3542 case EXACT_DIV_EXPR:
3543 case MIN_EXPR:
3544 case MAX_EXPR:
3545 case LSHIFT_EXPR:
3546 case RSHIFT_EXPR:
3547 case LROTATE_EXPR:
3548 case RROTATE_EXPR:
3549 case BIT_IOR_EXPR:
3550 case BIT_XOR_EXPR:
3551 case BIT_AND_EXPR:
50b04185
RK
3552 CHECK_OP (0, "Invalid operand to binary operator");
3553 CHECK_OP (1, "Invalid operand to binary operator");
6de9cd9a
DN
3554 break;
3555
3556 default:
3557 break;
3558 }
3559 return NULL;
2fbe90f2
RK
3560
3561#undef CHECK_OP
6de9cd9a
DN
3562}
3563
3564
3565/* Verify STMT, return true if STMT is not in GIMPLE form.
3566 TODO: Implement type checking. */
3567
3568static bool
1eaba2f2 3569verify_stmt (tree stmt, bool last_in_block)
6de9cd9a
DN
3570{
3571 tree addr;
3572
3573 if (!is_gimple_stmt (stmt))
3574 {
3575 error ("Is not a valid GIMPLE statement.");
1eaba2f2 3576 goto fail;
6de9cd9a
DN
3577 }
3578
3579 addr = walk_tree (&stmt, verify_expr, NULL, NULL);
3580 if (addr)
3581 {
3582 debug_generic_stmt (addr);
3583 return true;
3584 }
3585
1eaba2f2
RH
3586 /* If the statement is marked as part of an EH region, then it is
3587 expected that the statement could throw. Verify that when we
3588 have optimizations that simplify statements such that we prove
3589 that they cannot throw, that we update other data structures
3590 to match. */
3591 if (lookup_stmt_eh_region (stmt) >= 0)
3592 {
3593 if (!tree_could_throw_p (stmt))
3594 {
971801ff 3595 error ("Statement marked for throw, but doesn%'t.");
1eaba2f2
RH
3596 goto fail;
3597 }
3598 if (!last_in_block && tree_can_throw_internal (stmt))
3599 {
3600 error ("Statement marked for throw in middle of block.");
3601 goto fail;
3602 }
3603 }
3604
6de9cd9a 3605 return false;
1eaba2f2
RH
3606
3607 fail:
3608 debug_generic_stmt (stmt);
3609 return true;
6de9cd9a
DN
3610}
3611
3612
3613/* Return true when the T can be shared. */
3614
3615static bool
3616tree_node_can_be_shared (tree t)
3617{
6615c446 3618 if (IS_TYPE_OR_DECL_P (t)
6de9cd9a
DN
3619 /* We check for constants explicitly since they are not considered
3620 gimple invariants if they overflowed. */
6615c446 3621 || CONSTANT_CLASS_P (t)
6de9cd9a 3622 || is_gimple_min_invariant (t)
5e23162d 3623 || TREE_CODE (t) == SSA_NAME
bac8beb4 3624 || t == error_mark_node)
6de9cd9a
DN
3625 return true;
3626
92b6dff3
JL
3627 if (TREE_CODE (t) == CASE_LABEL_EXPR)
3628 return true;
3629
44de5aeb 3630 while (((TREE_CODE (t) == ARRAY_REF || TREE_CODE (t) == ARRAY_RANGE_REF)
6de9cd9a
DN
3631 /* We check for constants explicitly since they are not considered
3632 gimple invariants if they overflowed. */
6615c446 3633 && (CONSTANT_CLASS_P (TREE_OPERAND (t, 1))
6de9cd9a
DN
3634 || is_gimple_min_invariant (TREE_OPERAND (t, 1))))
3635 || (TREE_CODE (t) == COMPONENT_REF
3636 || TREE_CODE (t) == REALPART_EXPR
3637 || TREE_CODE (t) == IMAGPART_EXPR))
3638 t = TREE_OPERAND (t, 0);
3639
3640 if (DECL_P (t))
3641 return true;
3642
3643 return false;
3644}
3645
3646
3647/* Called via walk_trees. Verify tree sharing. */
3648
3649static tree
3650verify_node_sharing (tree * tp, int *walk_subtrees, void *data)
3651{
3652 htab_t htab = (htab_t) data;
3653 void **slot;
3654
3655 if (tree_node_can_be_shared (*tp))
3656 {
3657 *walk_subtrees = false;
3658 return NULL;
3659 }
3660
3661 slot = htab_find_slot (htab, *tp, INSERT);
3662 if (*slot)
3663 return *slot;
3664 *slot = *tp;
3665
3666 return NULL;
3667}
3668
3669
3670/* Verify the GIMPLE statement chain. */
3671
3672void
3673verify_stmts (void)
3674{
3675 basic_block bb;
3676 block_stmt_iterator bsi;
3677 bool err = false;
3678 htab_t htab;
3679 tree addr;
3680
3681 timevar_push (TV_TREE_STMT_VERIFY);
3682 htab = htab_create (37, htab_hash_pointer, htab_eq_pointer, NULL);
3683
3684 FOR_EACH_BB (bb)
3685 {
3686 tree phi;
3687 int i;
3688
17192884 3689 for (phi = phi_nodes (bb); phi; phi = PHI_CHAIN (phi))
6de9cd9a
DN
3690 {
3691 int phi_num_args = PHI_NUM_ARGS (phi);
3692
8de1fc1b
KH
3693 if (bb_for_stmt (phi) != bb)
3694 {
3695 error ("bb_for_stmt (phi) is set to a wrong basic block\n");
3696 err |= true;
3697 }
3698
6de9cd9a
DN
3699 for (i = 0; i < phi_num_args; i++)
3700 {
3701 tree t = PHI_ARG_DEF (phi, i);
3702 tree addr;
3703
3704 /* Addressable variables do have SSA_NAMEs but they
3705 are not considered gimple values. */
3706 if (TREE_CODE (t) != SSA_NAME
3707 && TREE_CODE (t) != FUNCTION_DECL
3708 && !is_gimple_val (t))
3709 {
3710 error ("PHI def is not a GIMPLE value");
3711 debug_generic_stmt (phi);
3712 debug_generic_stmt (t);
3713 err |= true;
3714 }
3715
7a442a1d 3716 addr = walk_tree (&t, verify_expr, (void *) 1, NULL);
6de9cd9a
DN
3717 if (addr)
3718 {
3719 debug_generic_stmt (addr);
3720 err |= true;
3721 }
3722
3723 addr = walk_tree (&t, verify_node_sharing, htab, NULL);
3724 if (addr)
3725 {
3726 error ("Incorrect sharing of tree nodes");
3727 debug_generic_stmt (phi);
3728 debug_generic_stmt (addr);
3729 err |= true;
3730 }
3731 }
3732 }
3733
1eaba2f2 3734 for (bsi = bsi_start (bb); !bsi_end_p (bsi); )
6de9cd9a
DN
3735 {
3736 tree stmt = bsi_stmt (bsi);
8de1fc1b
KH
3737
3738 if (bb_for_stmt (stmt) != bb)
3739 {
3740 error ("bb_for_stmt (stmt) is set to a wrong basic block\n");
3741 err |= true;
3742 }
3743
1eaba2f2
RH
3744 bsi_next (&bsi);
3745 err |= verify_stmt (stmt, bsi_end_p (bsi));
6de9cd9a
DN
3746 addr = walk_tree (&stmt, verify_node_sharing, htab, NULL);
3747 if (addr)
3748 {
3749 error ("Incorrect sharing of tree nodes");
3750 debug_generic_stmt (stmt);
3751 debug_generic_stmt (addr);
3752 err |= true;
3753 }
3754 }
3755 }
3756
3757 if (err)
3758 internal_error ("verify_stmts failed.");
3759
3760 htab_delete (htab);
3761 timevar_pop (TV_TREE_STMT_VERIFY);
3762}
3763
3764
3765/* Verifies that the flow information is OK. */
3766
3767static int
3768tree_verify_flow_info (void)
3769{
3770 int err = 0;
3771 basic_block bb;
3772 block_stmt_iterator bsi;
3773 tree stmt;
3774 edge e;
628f6a4e 3775 edge_iterator ei;
6de9cd9a
DN
3776
3777 if (ENTRY_BLOCK_PTR->stmt_list)
3778 {
3779 error ("ENTRY_BLOCK has a statement list associated with it\n");
3780 err = 1;
3781 }
3782
3783 if (EXIT_BLOCK_PTR->stmt_list)
3784 {
3785 error ("EXIT_BLOCK has a statement list associated with it\n");
3786 err = 1;
3787 }
3788
628f6a4e 3789 FOR_EACH_EDGE (e, ei, EXIT_BLOCK_PTR->preds)
6de9cd9a
DN
3790 if (e->flags & EDGE_FALLTHRU)
3791 {
3792 error ("Fallthru to exit from bb %d\n", e->src->index);
3793 err = 1;
3794 }
3795
3796 FOR_EACH_BB (bb)
3797 {
3798 bool found_ctrl_stmt = false;
3799
548414c6
KH
3800 stmt = NULL_TREE;
3801
6de9cd9a
DN
3802 /* Skip labels on the start of basic block. */
3803 for (bsi = bsi_start (bb); !bsi_end_p (bsi); bsi_next (&bsi))
3804 {
548414c6
KH
3805 tree prev_stmt = stmt;
3806
3807 stmt = bsi_stmt (bsi);
3808
3809 if (TREE_CODE (stmt) != LABEL_EXPR)
6de9cd9a
DN
3810 break;
3811
548414c6
KH
3812 if (prev_stmt && DECL_NONLOCAL (LABEL_EXPR_LABEL (stmt)))
3813 {
3814 error ("Nonlocal label %s is not first "
cde68236 3815 "in a sequence of labels in bb %d",
548414c6
KH
3816 IDENTIFIER_POINTER (DECL_NAME (LABEL_EXPR_LABEL (stmt))),
3817 bb->index);
3818 err = 1;
3819 }
3820
3821 if (label_to_block (LABEL_EXPR_LABEL (stmt)) != bb)
6de9cd9a
DN
3822 {
3823 error ("Label %s to block does not match in bb %d\n",
77568960 3824 IDENTIFIER_POINTER (DECL_NAME (LABEL_EXPR_LABEL (stmt))),
6de9cd9a
DN
3825 bb->index);
3826 err = 1;
3827 }
3828
548414c6 3829 if (decl_function_context (LABEL_EXPR_LABEL (stmt))
6de9cd9a
DN
3830 != current_function_decl)
3831 {
3832 error ("Label %s has incorrect context in bb %d\n",
77568960 3833 IDENTIFIER_POINTER (DECL_NAME (LABEL_EXPR_LABEL (stmt))),
6de9cd9a
DN
3834 bb->index);
3835 err = 1;
3836 }
3837 }
3838
3839 /* Verify that body of basic block BB is free of control flow. */
3840 for (; !bsi_end_p (bsi); bsi_next (&bsi))
3841 {
3842 tree stmt = bsi_stmt (bsi);
3843
3844 if (found_ctrl_stmt)
3845 {
3846 error ("Control flow in the middle of basic block %d\n",
3847 bb->index);
3848 err = 1;
3849 }
3850
3851 if (stmt_ends_bb_p (stmt))
3852 found_ctrl_stmt = true;
3853
3854 if (TREE_CODE (stmt) == LABEL_EXPR)
3855 {
3856 error ("Label %s in the middle of basic block %d\n",
b7d1c15e 3857 IDENTIFIER_POINTER (DECL_NAME (LABEL_EXPR_LABEL (stmt))),
6de9cd9a
DN
3858 bb->index);
3859 err = 1;
3860 }
3861 }
3862 bsi = bsi_last (bb);
3863 if (bsi_end_p (bsi))
3864 continue;
3865
3866 stmt = bsi_stmt (bsi);
3867
cc7220fd
JH
3868 err |= verify_eh_edges (stmt);
3869
6de9cd9a
DN
3870 if (is_ctrl_stmt (stmt))
3871 {
628f6a4e 3872 FOR_EACH_EDGE (e, ei, bb->succs)
6de9cd9a
DN
3873 if (e->flags & EDGE_FALLTHRU)
3874 {
3875 error ("Fallthru edge after a control statement in bb %d \n",
3876 bb->index);
3877 err = 1;
3878 }
3879 }
3880
3881 switch (TREE_CODE (stmt))
3882 {
3883 case COND_EXPR:
3884 {
3885 edge true_edge;
3886 edge false_edge;
3887 if (TREE_CODE (COND_EXPR_THEN (stmt)) != GOTO_EXPR
3888 || TREE_CODE (COND_EXPR_ELSE (stmt)) != GOTO_EXPR)
3889 {
3890 error ("Structured COND_EXPR at the end of bb %d\n", bb->index);
3891 err = 1;
3892 }
3893
3894 extract_true_false_edges_from_block (bb, &true_edge, &false_edge);
3895
3896 if (!true_edge || !false_edge
3897 || !(true_edge->flags & EDGE_TRUE_VALUE)
3898 || !(false_edge->flags & EDGE_FALSE_VALUE)
3899 || (true_edge->flags & (EDGE_FALLTHRU | EDGE_ABNORMAL))
3900 || (false_edge->flags & (EDGE_FALLTHRU | EDGE_ABNORMAL))
628f6a4e 3901 || EDGE_COUNT (bb->succs) >= 3)
6de9cd9a
DN
3902 {
3903 error ("Wrong outgoing edge flags at end of bb %d\n",
3904 bb->index);
3905 err = 1;
3906 }
3907
3908 if (!has_label_p (true_edge->dest,
3909 GOTO_DESTINATION (COND_EXPR_THEN (stmt))))
3910 {
971801ff 3911 error ("%<then%> label does not match edge at end of bb %d\n",
6de9cd9a
DN
3912 bb->index);
3913 err = 1;
3914 }
3915
3916 if (!has_label_p (false_edge->dest,
3917 GOTO_DESTINATION (COND_EXPR_ELSE (stmt))))
3918 {
971801ff 3919 error ("%<else%> label does not match edge at end of bb %d\n",
6de9cd9a
DN
3920 bb->index);
3921 err = 1;
3922 }
3923 }
3924 break;
3925
3926 case GOTO_EXPR:
3927 if (simple_goto_p (stmt))
3928 {
3929 error ("Explicit goto at end of bb %d\n", bb->index);
3930 err = 1;
3931 }
3932 else
3933 {
3934 /* FIXME. We should double check that the labels in the
3935 destination blocks have their address taken. */
628f6a4e 3936 FOR_EACH_EDGE (e, ei, bb->succs)
6de9cd9a
DN
3937 if ((e->flags & (EDGE_FALLTHRU | EDGE_TRUE_VALUE
3938 | EDGE_FALSE_VALUE))
3939 || !(e->flags & EDGE_ABNORMAL))
3940 {
3941 error ("Wrong outgoing edge flags at end of bb %d\n",
3942 bb->index);
3943 err = 1;
3944 }
3945 }
3946 break;
3947
3948 case RETURN_EXPR:
c5cbcccf
ZD
3949 if (!single_succ_p (bb)
3950 || (single_succ_edge (bb)->flags
3951 & (EDGE_FALLTHRU | EDGE_ABNORMAL
3952 | EDGE_TRUE_VALUE | EDGE_FALSE_VALUE)))
6de9cd9a
DN
3953 {
3954 error ("Wrong outgoing edge flags at end of bb %d\n", bb->index);
3955 err = 1;
3956 }
c5cbcccf 3957 if (single_succ (bb) != EXIT_BLOCK_PTR)
6de9cd9a
DN
3958 {
3959 error ("Return edge does not point to exit in bb %d\n",
3960 bb->index);
3961 err = 1;
3962 }
3963 break;
3964
3965 case SWITCH_EXPR:
3966 {
7853504d 3967 tree prev;
6de9cd9a
DN
3968 edge e;
3969 size_t i, n;
3970 tree vec;
3971
3972 vec = SWITCH_LABELS (stmt);
3973 n = TREE_VEC_LENGTH (vec);
3974
3975 /* Mark all the destination basic blocks. */
3976 for (i = 0; i < n; ++i)
3977 {
3978 tree lab = CASE_LABEL (TREE_VEC_ELT (vec, i));
3979 basic_block label_bb = label_to_block (lab);
3980
1e128c5f 3981 gcc_assert (!label_bb->aux || label_bb->aux == (void *)1);
6de9cd9a
DN
3982 label_bb->aux = (void *)1;
3983 }
3984
7853504d
SB
3985 /* Verify that the case labels are sorted. */
3986 prev = TREE_VEC_ELT (vec, 0);
3987 for (i = 1; i < n - 1; ++i)
3988 {
3989 tree c = TREE_VEC_ELT (vec, i);
3990 if (! CASE_LOW (c))
3991 {
3992 error ("Found default case not at end of case vector");
3993 err = 1;
3994 continue;
3995 }
3996 if (! tree_int_cst_lt (CASE_LOW (prev), CASE_LOW (c)))
3997 {
3998 error ("Case labels not sorted:\n ");
3999 print_generic_expr (stderr, prev, 0);
4000 fprintf (stderr," is greater than ");
4001 print_generic_expr (stderr, c, 0);
4002 fprintf (stderr," but comes before it.\n");
4003 err = 1;
4004 }
4005 prev = c;
4006 }
4007 if (CASE_LOW (TREE_VEC_ELT (vec, n - 1)))
4008 {
4009 error ("No default case found at end of case vector");
4010 err = 1;
4011 }
4012
628f6a4e 4013 FOR_EACH_EDGE (e, ei, bb->succs)
6de9cd9a
DN
4014 {
4015 if (!e->dest->aux)
4016 {
4017 error ("Extra outgoing edge %d->%d\n",
4018 bb->index, e->dest->index);
4019 err = 1;
4020 }
4021 e->dest->aux = (void *)2;
4022 if ((e->flags & (EDGE_FALLTHRU | EDGE_ABNORMAL
4023 | EDGE_TRUE_VALUE | EDGE_FALSE_VALUE)))
4024 {
4025 error ("Wrong outgoing edge flags at end of bb %d\n",
4026 bb->index);
4027 err = 1;
4028 }
4029 }
4030
4031 /* Check that we have all of them. */
4032 for (i = 0; i < n; ++i)
4033 {
4034 tree lab = CASE_LABEL (TREE_VEC_ELT (vec, i));
4035 basic_block label_bb = label_to_block (lab);
4036
4037 if (label_bb->aux != (void *)2)
4038 {
6ade0959 4039 error ("Missing edge %i->%i",
6de9cd9a
DN
4040 bb->index, label_bb->index);
4041 err = 1;
4042 }
4043 }
4044
628f6a4e 4045 FOR_EACH_EDGE (e, ei, bb->succs)
6de9cd9a
DN
4046 e->dest->aux = (void *)0;
4047 }
4048
4049 default: ;
4050 }
4051 }
4052
4053 if (dom_computed[CDI_DOMINATORS] >= DOM_NO_FAST_QUERY)
4054 verify_dominators (CDI_DOMINATORS);
4055
4056 return err;
4057}
4058
4059
f0b698c1 4060/* Updates phi nodes after creating a forwarder block joined
6de9cd9a
DN
4061 by edge FALLTHRU. */
4062
4063static void
4064tree_make_forwarder_block (edge fallthru)
4065{
4066 edge e;
628f6a4e 4067 edge_iterator ei;
6de9cd9a 4068 basic_block dummy, bb;
5ae71719 4069 tree phi, new_phi, var;
6de9cd9a
DN
4070
4071 dummy = fallthru->src;
4072 bb = fallthru->dest;
4073
c5cbcccf 4074 if (single_pred_p (bb))
6de9cd9a
DN
4075 return;
4076
4077 /* If we redirected a branch we must create new phi nodes at the
4078 start of BB. */
17192884 4079 for (phi = phi_nodes (dummy); phi; phi = PHI_CHAIN (phi))
6de9cd9a
DN
4080 {
4081 var = PHI_RESULT (phi);
4082 new_phi = create_phi_node (var, bb);
4083 SSA_NAME_DEF_STMT (var) = new_phi;
d00ad49b 4084 SET_PHI_RESULT (phi, make_ssa_name (SSA_NAME_VAR (var), phi));
d2e398df 4085 add_phi_arg (new_phi, PHI_RESULT (phi), fallthru);
6de9cd9a
DN
4086 }
4087
17192884 4088 /* Ensure that the PHI node chain is in the same order. */
5ae71719 4089 set_phi_nodes (bb, phi_reverse (phi_nodes (bb)));
6de9cd9a
DN
4090
4091 /* Add the arguments we have stored on edges. */
628f6a4e 4092 FOR_EACH_EDGE (e, ei, bb->preds)
6de9cd9a
DN
4093 {
4094 if (e == fallthru)
4095 continue;
4096
71882046 4097 flush_pending_stmts (e);
6de9cd9a
DN
4098 }
4099}
4100
4101
4102/* Return true if basic block BB does nothing except pass control
4103 flow to another block and that we can safely insert a label at
10a52335
KH
4104 the start of the successor block.
4105
4106 As a precondition, we require that BB be not equal to
4107 ENTRY_BLOCK_PTR. */
6de9cd9a
DN
4108
4109static bool
23ab2e4e 4110tree_forwarder_block_p (basic_block bb, bool phi_wanted)
6de9cd9a
DN
4111{
4112 block_stmt_iterator bsi;
6de9cd9a 4113
10a52335 4114 /* BB must have a single outgoing edge. */
c5cbcccf 4115 if (single_succ_p (bb) != 1
23ab2e4e
KH
4116 /* If PHI_WANTED is false, BB must not have any PHI nodes.
4117 Otherwise, BB must have PHI nodes. */
4118 || (phi_nodes (bb) != NULL_TREE) != phi_wanted
10a52335 4119 /* BB may not be a predecessor of EXIT_BLOCK_PTR. */
c5cbcccf 4120 || single_succ (bb) == EXIT_BLOCK_PTR
63bb59a3 4121 /* Nor should this be an infinite loop. */
c5cbcccf 4122 || single_succ (bb) == bb
10a52335 4123 /* BB may not have an abnormal outgoing edge. */
c5cbcccf 4124 || (single_succ_edge (bb)->flags & EDGE_ABNORMAL))
78b6731d 4125 return false;
6de9cd9a 4126
10a52335
KH
4127#if ENABLE_CHECKING
4128 gcc_assert (bb != ENTRY_BLOCK_PTR);
4129#endif
4130
f8ef82ea
KH
4131 /* Now walk through the statements backward. We can ignore labels,
4132 anything else means this is not a forwarder block. */
02f4bd12 4133 for (bsi = bsi_last (bb); !bsi_end_p (bsi); bsi_prev (&bsi))
6de9cd9a
DN
4134 {
4135 tree stmt = bsi_stmt (bsi);
4136
4137 switch (TREE_CODE (stmt))
4138 {
4139 case LABEL_EXPR:
4140 if (DECL_NONLOCAL (LABEL_EXPR_LABEL (stmt)))
4141 return false;
4142 break;
4143
4144 default:
6de9cd9a
DN
4145 return false;
4146 }
4147 }
4148
91d9ede4
KH
4149 if (find_edge (ENTRY_BLOCK_PTR, bb))
4150 return false;
4151
2b271002
ZD
4152 if (current_loops)
4153 {
4154 basic_block dest;
4155 /* Protect loop latches, headers and preheaders. */
4156 if (bb->loop_father->header == bb)
4157 return false;
4158 dest = EDGE_SUCC (bb, 0)->dest;
4159
4160 if (dest->loop_father->header == dest)
4161 return false;
4162 }
4163
6de9cd9a
DN
4164 return true;
4165}
4166
63bb59a3
ZD
4167/* Return true if BB has at least one abnormal incoming edge. */
4168
4169static inline bool
4170has_abnormal_incoming_edge_p (basic_block bb)
4171{
4172 edge e;
4173 edge_iterator ei;
4174
4175 FOR_EACH_EDGE (e, ei, bb->preds)
4176 if (e->flags & EDGE_ABNORMAL)
4177 return true;
4178
4179 return false;
4180}
4181
adb35797 4182/* Removes forwarder block BB. Returns false if this failed. If a new
63bb59a3
ZD
4183 forwarder block is created due to redirection of edges, it is
4184 stored to worklist. */
072269d8
KH
4185
4186static bool
63bb59a3 4187remove_forwarder_block (basic_block bb, basic_block **worklist)
072269d8 4188{
c5cbcccf 4189 edge succ = single_succ_edge (bb), e, s;
63bb59a3
ZD
4190 basic_block dest = succ->dest;
4191 tree label;
4192 tree phi;
072269d8 4193 edge_iterator ei;
63bb59a3
ZD
4194 block_stmt_iterator bsi, bsi_to;
4195 bool seen_abnormal_edge = false;
4196
4197 /* We check for infinite loops already in tree_forwarder_block_p.
4198 However it may happen that the infinite loop is created
4199 afterwards due to removal of forwarders. */
4200 if (dest == bb)
4201 return false;
072269d8 4202
a85ba5a8 4203 /* If the destination block consists of a nonlocal label, do not merge
63bb59a3 4204 it. */
04d38c3b 4205 label = first_stmt (dest);
63bb59a3
ZD
4206 if (label
4207 && TREE_CODE (label) == LABEL_EXPR
4208 && DECL_NONLOCAL (LABEL_EXPR_LABEL (label)))
4209 return false;
4210
4211 /* If there is an abnormal edge to basic block BB, but not into
4212 dest, problems might occur during removal of the phi node at out
4213 of ssa due to overlapping live ranges of registers.
4214
4215 If there is an abnormal edge in DEST, the problems would occur
4216 anyway since cleanup_dead_labels would then merge the labels for
4217 two different eh regions, and rest of exception handling code
4218 does not like it.
4219
4220 So if there is an abnormal edge to BB, proceed only if there is
4221 no abnormal edge to DEST and there are no phi nodes in DEST. */
4222 if (has_abnormal_incoming_edge_p (bb))
072269d8 4223 {
63bb59a3 4224 seen_abnormal_edge = true;
072269d8 4225
63bb59a3
ZD
4226 if (has_abnormal_incoming_edge_p (dest)
4227 || phi_nodes (dest) != NULL_TREE)
4228 return false;
4229 }
072269d8 4230
63bb59a3
ZD
4231 /* If there are phi nodes in DEST, and some of the blocks that are
4232 predecessors of BB are also predecessors of DEST, check that the
4233 phi node arguments match. */
4234 if (phi_nodes (dest))
4235 {
4236 FOR_EACH_EDGE (e, ei, bb->preds)
072269d8 4237 {
63bb59a3
ZD
4238 s = find_edge (e->src, dest);
4239 if (!s)
4240 continue;
4241
4242 if (!phi_alternatives_equal (dest, succ, s))
4243 return false;
072269d8 4244 }
63bb59a3 4245 }
072269d8 4246
63bb59a3
ZD
4247 /* Redirect the edges. */
4248 for (ei = ei_start (bb->preds); (e = ei_safe_edge (ei)); )
4249 {
4250 if (e->flags & EDGE_ABNORMAL)
072269d8 4251 {
63bb59a3
ZD
4252 /* If there is an abnormal edge, redirect it anyway, and
4253 move the labels to the new block to make it legal. */
4254 s = redirect_edge_succ_nodup (e, dest);
072269d8 4255 }
63bb59a3
ZD
4256 else
4257 s = redirect_edge_and_branch (e, dest);
072269d8 4258
63bb59a3 4259 if (s == e)
072269d8 4260 {
63bb59a3
ZD
4261 /* Create arguments for the phi nodes, since the edge was not
4262 here before. */
072269d8 4263 for (phi = phi_nodes (dest); phi; phi = PHI_CHAIN (phi))
63bb59a3 4264 add_phi_arg (phi, PHI_ARG_DEF (phi, succ->dest_idx), s);
072269d8 4265 }
63bb59a3 4266 else
072269d8 4267 {
63bb59a3
ZD
4268 /* The source basic block might become a forwarder. We know
4269 that it was not a forwarder before, since it used to have
4270 at least two outgoing edges, so we may just add it to
4271 worklist. */
23ab2e4e 4272 if (tree_forwarder_block_p (s->src, false))
63bb59a3 4273 *(*worklist)++ = s->src;
072269d8 4274 }
63bb59a3 4275 }
072269d8 4276
63bb59a3
ZD
4277 if (seen_abnormal_edge)
4278 {
4279 /* Move the labels to the new block, so that the redirection of
4280 the abnormal edges works. */
072269d8 4281
63bb59a3
ZD
4282 bsi_to = bsi_start (dest);
4283 for (bsi = bsi_start (bb); !bsi_end_p (bsi); )
4284 {
4285 label = bsi_stmt (bsi);
4286 gcc_assert (TREE_CODE (label) == LABEL_EXPR);
4287 bsi_remove (&bsi);
4288 bsi_insert_before (&bsi_to, label, BSI_CONTINUE_LINKING);
072269d8
KH
4289 }
4290 }
4291
63bb59a3
ZD
4292 /* Update the dominators. */
4293 if (dom_info_available_p (CDI_DOMINATORS))
4294 {
4295 basic_block dom, dombb, domdest;
4296
4297 dombb = get_immediate_dominator (CDI_DOMINATORS, bb);
4298 domdest = get_immediate_dominator (CDI_DOMINATORS, dest);
4299 if (domdest == bb)
4300 {
4301 /* Shortcut to avoid calling (relatively expensive)
4302 nearest_common_dominator unless necessary. */
4303 dom = dombb;
4304 }
4305 else
4306 dom = nearest_common_dominator (CDI_DOMINATORS, domdest, dombb);
072269d8 4307
63bb59a3
ZD
4308 set_immediate_dominator (CDI_DOMINATORS, dest, dom);
4309 }
6de9cd9a 4310
63bb59a3
ZD
4311 /* And kill the forwarder block. */
4312 delete_basic_block (bb);
6de9cd9a 4313
63bb59a3
ZD
4314 return true;
4315}
2abacef0 4316
63bb59a3 4317/* Removes forwarder blocks. */
072269d8 4318
6de9cd9a 4319static bool
63bb59a3 4320cleanup_forwarder_blocks (void)
6de9cd9a 4321{
072269d8 4322 basic_block bb;
63bb59a3 4323 bool changed = false;
29cc8719 4324 basic_block *worklist = xmalloc (sizeof (basic_block) * n_basic_blocks);
31864f59 4325 basic_block *current = worklist;
6de9cd9a
DN
4326
4327 FOR_EACH_BB (bb)
08445125 4328 {
23ab2e4e 4329 if (tree_forwarder_block_p (bb, false))
63bb59a3 4330 *current++ = bb;
08445125 4331 }
6de9cd9a 4332
63bb59a3 4333 while (current != worklist)
08445125 4334 {
31864f59 4335 bb = *--current;
63bb59a3 4336 changed |= remove_forwarder_block (bb, &current);
6de9cd9a 4337 }
08445125
KH
4338
4339 free (worklist);
63bb59a3 4340 return changed;
6de9cd9a
DN
4341}
4342
23ab2e4e
KH
4343/* Merge the PHI nodes at BB into those at BB's sole successor. */
4344
4345static void
4346remove_forwarder_block_with_phi (basic_block bb)
4347{
c5cbcccf 4348 edge succ = single_succ_edge (bb);
23ab2e4e 4349 basic_block dest = succ->dest;
28773f15 4350 tree label;
23ab2e4e 4351 basic_block dombb, domdest, dom;
23ab2e4e
KH
4352
4353 /* We check for infinite loops already in tree_forwarder_block_p.
4354 However it may happen that the infinite loop is created
4355 afterwards due to removal of forwarders. */
4356 if (dest == bb)
4357 return;
4358
4359 /* If the destination block consists of a nonlocal label, do not
4360 merge it. */
28773f15
KH
4361 label = first_stmt (dest);
4362 if (label
4363 && TREE_CODE (label) == LABEL_EXPR
4364 && DECL_NONLOCAL (LABEL_EXPR_LABEL (label)))
4365 return;
23ab2e4e
KH
4366
4367 /* Redirect each incoming edge to BB to DEST. */
4368 while (EDGE_COUNT (bb->preds) > 0)
4369 {
4370 edge e = EDGE_PRED (bb, 0), s;
4371 tree phi;
4372
4373 s = find_edge (e->src, dest);
4374 if (s)
4375 {
4376 /* We already have an edge S from E->src to DEST. If S and
4377 E->dest's sole successor edge have the same PHI arguments
4378 at DEST, redirect S to DEST. */
4379 if (phi_alternatives_equal (dest, s, succ))
4380 {
4381 e = redirect_edge_and_branch (e, dest);
4382 PENDING_STMT (e) = NULL_TREE;
4383 continue;
4384 }
4385
a85ba5a8 4386 /* PHI arguments are different. Create a forwarder block by
23ab2e4e
KH
4387 splitting E so that we can merge PHI arguments on E to
4388 DEST. */
c5cbcccf 4389 e = single_succ_edge (split_edge (e));
23ab2e4e
KH
4390 }
4391
4392 s = redirect_edge_and_branch (e, dest);
4393
4394 /* redirect_edge_and_branch must not create a new edge. */
4395 gcc_assert (s == e);
4396
4397 /* Add to the PHI nodes at DEST each PHI argument removed at the
4398 destination of E. */
4399 for (phi = phi_nodes (dest); phi; phi = PHI_CHAIN (phi))
4400 {
4401 tree def = PHI_ARG_DEF (phi, succ->dest_idx);
4402
4403 if (TREE_CODE (def) == SSA_NAME)
4404 {
4405 tree var;
4406
4407 /* If DEF is one of the results of PHI nodes removed during
4408 redirection, replace it with the PHI argument that used
4409 to be on E. */
4410 for (var = PENDING_STMT (e); var; var = TREE_CHAIN (var))
4411 {
4412 tree old_arg = TREE_PURPOSE (var);
4413 tree new_arg = TREE_VALUE (var);
4414
4415 if (def == old_arg)
4416 {
4417 def = new_arg;
4418 break;
4419 }
4420 }
4421 }
4422
4423 add_phi_arg (phi, def, s);
4424 }
4425
4426 PENDING_STMT (e) = NULL;
4427 }
4428
4429 /* Update the dominators. */
4430 dombb = get_immediate_dominator (CDI_DOMINATORS, bb);
4431 domdest = get_immediate_dominator (CDI_DOMINATORS, dest);
4432 if (domdest == bb)
4433 {
4434 /* Shortcut to avoid calling (relatively expensive)
4435 nearest_common_dominator unless necessary. */
4436 dom = dombb;
4437 }
4438 else
4439 dom = nearest_common_dominator (CDI_DOMINATORS, domdest, dombb);
4440
4441 set_immediate_dominator (CDI_DOMINATORS, dest, dom);
4442
4443 /* Remove BB since all of BB's incoming edges have been redirected
4444 to DEST. */
4445 delete_basic_block (bb);
4446}
4447
a85ba5a8
KH
4448/* This pass merges PHI nodes if one feeds into another. For example,
4449 suppose we have the following:
23ab2e4e
KH
4450
4451 goto <bb 9> (<L9>);
4452
4453<L8>:;
4454 tem_17 = foo ();
4455
4456 # tem_6 = PHI <tem_17(8), tem_23(7)>;
4457<L9>:;
4458
4459 # tem_3 = PHI <tem_6(9), tem_2(5)>;
4460<L10>:;
4461
4462 Then we merge the first PHI node into the second one like so:
4463
4464 goto <bb 9> (<L10>);
4465
4466<L8>:;
4467 tem_17 = foo ();
4468
4469 # tem_3 = PHI <tem_23(7), tem_2(5), tem_17(8)>;
4470<L10>:;
4471*/
4472
4473static void
4474merge_phi_nodes (void)
4475{
4476 basic_block *worklist = xmalloc (sizeof (basic_block) * n_basic_blocks);
4477 basic_block *current = worklist;
4478 basic_block bb;
4479
4480 calculate_dominance_info (CDI_DOMINATORS);
4481
4482 /* Find all PHI nodes that we may be able to merge. */
4483 FOR_EACH_BB (bb)
4484 {
4485 basic_block dest;
4486
4487 /* Look for a forwarder block with PHI nodes. */
4488 if (!tree_forwarder_block_p (bb, true))
4489 continue;
4490
c5cbcccf 4491 dest = single_succ (bb);
23ab2e4e
KH
4492
4493 /* We have to feed into another basic block with PHI
4494 nodes. */
4495 if (!phi_nodes (dest)
4496 /* We don't want to deal with a basic block with
4497 abnormal edges. */
4498 || has_abnormal_incoming_edge_p (bb))
4499 continue;
4500
4501 if (!dominated_by_p (CDI_DOMINATORS, dest, bb))
4502 {
4503 /* If BB does not dominate DEST, then the PHI nodes at
4504 DEST must be the only users of the results of the PHI
4505 nodes at BB. */
4506 *current++ = bb;
4507 }
4508 }
4509
4510 /* Now let's drain WORKLIST. */
4511 while (current != worklist)
4512 {
4513 bb = *--current;
4514 remove_forwarder_block_with_phi (bb);
4515 }
4516
4517 free (worklist);
4518}
4519
4520static bool
4521gate_merge_phi (void)
4522{
4523 return 1;
4524}
4525
4526struct tree_opt_pass pass_merge_phi = {
4527 "mergephi", /* name */
4528 gate_merge_phi, /* gate */
4529 merge_phi_nodes, /* execute */
4530 NULL, /* sub */
4531 NULL, /* next */
4532 0, /* static_pass_number */
4533 TV_TREE_MERGE_PHI, /* tv_id */
4534 PROP_cfg | PROP_ssa, /* properties_required */
4535 0, /* properties_provided */
4536 0, /* properties_destroyed */
4537 0, /* todo_flags_start */
4538 TODO_dump_func | TODO_ggc_collect /* todo_flags_finish */
4539 | TODO_verify_ssa,
4540 0 /* letter */
4541};
4542
6de9cd9a
DN
4543/* Return a non-special label in the head of basic block BLOCK.
4544 Create one if it doesn't exist. */
4545
d7621d3c 4546tree
6de9cd9a
DN
4547tree_block_label (basic_block bb)
4548{
4549 block_stmt_iterator i, s = bsi_start (bb);
4550 bool first = true;
4551 tree label, stmt;
4552
4553 for (i = s; !bsi_end_p (i); first = false, bsi_next (&i))
4554 {
4555 stmt = bsi_stmt (i);
4556 if (TREE_CODE (stmt) != LABEL_EXPR)
4557 break;
4558 label = LABEL_EXPR_LABEL (stmt);
4559 if (!DECL_NONLOCAL (label))
4560 {
4561 if (!first)
4562 bsi_move_before (&i, &s);
4563 return label;
4564 }
4565 }
4566
4567 label = create_artificial_label ();
4568 stmt = build1 (LABEL_EXPR, void_type_node, label);
4569 bsi_insert_before (&s, stmt, BSI_NEW_STMT);
4570 return label;
4571}
4572
4573
4574/* Attempt to perform edge redirection by replacing a possibly complex
4575 jump instruction by a goto or by removing the jump completely.
4576 This can apply only if all edges now point to the same block. The
4577 parameters and return values are equivalent to
4578 redirect_edge_and_branch. */
4579
4580static edge
4581tree_try_redirect_by_replacing_jump (edge e, basic_block target)
4582{
4583 basic_block src = e->src;
6de9cd9a
DN
4584 block_stmt_iterator b;
4585 tree stmt;
6de9cd9a 4586
07b43a87
KH
4587 /* We can replace or remove a complex jump only when we have exactly
4588 two edges. */
4589 if (EDGE_COUNT (src->succs) != 2
4590 /* Verify that all targets will be TARGET. Specifically, the
4591 edge that is not E must also go to TARGET. */
4592 || EDGE_SUCC (src, EDGE_SUCC (src, 0) == e)->dest != target)
6de9cd9a
DN
4593 return NULL;
4594
4595 b = bsi_last (src);
4596 if (bsi_end_p (b))
4597 return NULL;
4598 stmt = bsi_stmt (b);
4599
4600 if (TREE_CODE (stmt) == COND_EXPR
4601 || TREE_CODE (stmt) == SWITCH_EXPR)
4602 {
4603 bsi_remove (&b);
4604 e = ssa_redirect_edge (e, target);
4605 e->flags = EDGE_FALLTHRU;
4606 return e;
4607 }
4608
4609 return NULL;
4610}
4611
4612
4613/* Redirect E to DEST. Return NULL on failure. Otherwise, return the
4614 edge representing the redirected branch. */
4615
4616static edge
4617tree_redirect_edge_and_branch (edge e, basic_block dest)
4618{
4619 basic_block bb = e->src;
4620 block_stmt_iterator bsi;
4621 edge ret;
4622 tree label, stmt;
4623
4624 if (e->flags & (EDGE_ABNORMAL_CALL | EDGE_EH))
4625 return NULL;
4626
4627 if (e->src != ENTRY_BLOCK_PTR
4628 && (ret = tree_try_redirect_by_replacing_jump (e, dest)))
4629 return ret;
4630
4631 if (e->dest == dest)
4632 return NULL;
4633
4634 label = tree_block_label (dest);
4635
4636 bsi = bsi_last (bb);
4637 stmt = bsi_end_p (bsi) ? NULL : bsi_stmt (bsi);
4638
4639 switch (stmt ? TREE_CODE (stmt) : ERROR_MARK)
4640 {
4641 case COND_EXPR:
4642 stmt = (e->flags & EDGE_TRUE_VALUE
4643 ? COND_EXPR_THEN (stmt)
4644 : COND_EXPR_ELSE (stmt));
4645 GOTO_DESTINATION (stmt) = label;
4646 break;
4647
4648 case GOTO_EXPR:
4649 /* No non-abnormal edges should lead from a non-simple goto, and
4650 simple ones should be represented implicitly. */
1e128c5f 4651 gcc_unreachable ();
6de9cd9a
DN
4652
4653 case SWITCH_EXPR:
4654 {
d6be0d7f 4655 tree cases = get_cases_for_edge (e, stmt);
6de9cd9a 4656
d6be0d7f
JL
4657 /* If we have a list of cases associated with E, then use it
4658 as it's a lot faster than walking the entire case vector. */
4659 if (cases)
6de9cd9a 4660 {
4edbbd3f 4661 edge e2 = find_edge (e->src, dest);
d6be0d7f
JL
4662 tree last, first;
4663
4664 first = cases;
4665 while (cases)
4666 {
4667 last = cases;
4668 CASE_LABEL (cases) = label;
4669 cases = TREE_CHAIN (cases);
4670 }
4671
4672 /* If there was already an edge in the CFG, then we need
4673 to move all the cases associated with E to E2. */
4674 if (e2)
4675 {
4676 tree cases2 = get_cases_for_edge (e2, stmt);
4677
4678 TREE_CHAIN (last) = TREE_CHAIN (cases2);
4679 TREE_CHAIN (cases2) = first;
4680 }
6de9cd9a 4681 }
92b6dff3
JL
4682 else
4683 {
d6be0d7f
JL
4684 tree vec = SWITCH_LABELS (stmt);
4685 size_t i, n = TREE_VEC_LENGTH (vec);
4686
4687 for (i = 0; i < n; i++)
4688 {
4689 tree elt = TREE_VEC_ELT (vec, i);
4690
4691 if (label_to_block (CASE_LABEL (elt)) == e->dest)
4692 CASE_LABEL (elt) = label;
4693 }
92b6dff3 4694 }
d6be0d7f 4695
92b6dff3 4696 break;
6de9cd9a 4697 }
6de9cd9a
DN
4698
4699 case RETURN_EXPR:
4700 bsi_remove (&bsi);
4701 e->flags |= EDGE_FALLTHRU;
4702 break;
4703
4704 default:
4705 /* Otherwise it must be a fallthru edge, and we don't need to
4706 do anything besides redirecting it. */
1e128c5f 4707 gcc_assert (e->flags & EDGE_FALLTHRU);
6de9cd9a
DN
4708 break;
4709 }
4710
4711 /* Update/insert PHI nodes as necessary. */
4712
4713 /* Now update the edges in the CFG. */
4714 e = ssa_redirect_edge (e, dest);
4715
4716 return e;
4717}
4718
4719
4720/* Simple wrapper, as we can always redirect fallthru edges. */
4721
4722static basic_block
4723tree_redirect_edge_and_branch_force (edge e, basic_block dest)
4724{
4725 e = tree_redirect_edge_and_branch (e, dest);
1e128c5f 4726 gcc_assert (e);
6de9cd9a
DN
4727
4728 return NULL;
4729}
4730
4731
4732/* Splits basic block BB after statement STMT (but at least after the
4733 labels). If STMT is NULL, BB is split just after the labels. */
4734
4735static basic_block
4736tree_split_block (basic_block bb, void *stmt)
4737{
4738 block_stmt_iterator bsi, bsi_tgt;
4739 tree act;
4740 basic_block new_bb;
4741 edge e;
628f6a4e 4742 edge_iterator ei;
6de9cd9a
DN
4743
4744 new_bb = create_empty_bb (bb);
4745
4746 /* Redirect the outgoing edges. */
628f6a4e
BE
4747 new_bb->succs = bb->succs;
4748 bb->succs = NULL;
4749 FOR_EACH_EDGE (e, ei, new_bb->succs)
6de9cd9a
DN
4750 e->src = new_bb;
4751
4752 if (stmt && TREE_CODE ((tree) stmt) == LABEL_EXPR)
4753 stmt = NULL;
4754
4755 /* Move everything from BSI to the new basic block. */
4756 for (bsi = bsi_start (bb); !bsi_end_p (bsi); bsi_next (&bsi))
4757 {
4758 act = bsi_stmt (bsi);
4759 if (TREE_CODE (act) == LABEL_EXPR)
4760 continue;
4761
4762 if (!stmt)
4763 break;
4764
4765 if (stmt == act)
4766 {
4767 bsi_next (&bsi);
4768 break;
4769 }
4770 }
4771
4772 bsi_tgt = bsi_start (new_bb);
4773 while (!bsi_end_p (bsi))
4774 {
4775 act = bsi_stmt (bsi);
4776 bsi_remove (&bsi);
4777 bsi_insert_after (&bsi_tgt, act, BSI_NEW_STMT);
4778 }
4779
4780 return new_bb;
4781}
4782
4783
4784/* Moves basic block BB after block AFTER. */
4785
4786static bool
4787tree_move_block_after (basic_block bb, basic_block after)
4788{
4789 if (bb->prev_bb == after)
4790 return true;
4791
4792 unlink_block (bb);
4793 link_block (bb, after);
4794
4795 return true;
4796}
4797
4798
4799/* Return true if basic_block can be duplicated. */
4800
4801static bool
4802tree_can_duplicate_bb_p (basic_block bb ATTRIBUTE_UNUSED)
4803{
4804 return true;
4805}
4806
84d65814 4807
6de9cd9a
DN
4808/* Create a duplicate of the basic block BB. NOTE: This does not
4809 preserve SSA form. */
4810
4811static basic_block
4812tree_duplicate_bb (basic_block bb)
4813{
4814 basic_block new_bb;
4815 block_stmt_iterator bsi, bsi_tgt;
84d65814 4816 tree phi;
6de9cd9a
DN
4817
4818 new_bb = create_empty_bb (EXIT_BLOCK_PTR->prev_bb);
b0382c67 4819
84d65814
DN
4820 /* Copy the PHI nodes. We ignore PHI node arguments here because
4821 the incoming edges have not been setup yet. */
bb29d951 4822 for (phi = phi_nodes (bb); phi; phi = PHI_CHAIN (phi))
b0382c67 4823 {
84d65814
DN
4824 tree copy = create_phi_node (PHI_RESULT (phi), new_bb);
4825 create_new_def_for (PHI_RESULT (copy), copy, PHI_RESULT_PTR (copy));
b0382c67 4826 }
84d65814
DN
4827
4828 /* Keep the chain of PHI nodes in the same order so that they can be
4829 updated by ssa_redirect_edge. */
5ae71719 4830 set_phi_nodes (new_bb, phi_reverse (phi_nodes (new_bb)));
b0382c67 4831
6de9cd9a
DN
4832 bsi_tgt = bsi_start (new_bb);
4833 for (bsi = bsi_start (bb); !bsi_end_p (bsi); bsi_next (&bsi))
4834 {
84d65814
DN
4835 def_operand_p def_p;
4836 ssa_op_iter op_iter;
4837 tree stmt, copy;
cc7220fd 4838 int region;
6de9cd9a 4839
84d65814 4840 stmt = bsi_stmt (bsi);
6de9cd9a
DN
4841 if (TREE_CODE (stmt) == LABEL_EXPR)
4842 continue;
4843
84d65814
DN
4844 /* Create a new copy of STMT and duplicate STMT's virtual
4845 operands. */
5f240ec4 4846 copy = unshare_expr (stmt);
5f240ec4 4847 bsi_insert_after (&bsi_tgt, copy, BSI_NEW_STMT);
84d65814 4848 copy_virtual_operands (copy, stmt);
cc7220fd
JH
4849 region = lookup_stmt_eh_region (stmt);
4850 if (region >= 0)
4851 add_stmt_to_eh_region (copy, region);
84d65814
DN
4852
4853 /* Create new names for all the definitions created by COPY and
4854 add replacement mappings for each new name. */
4855 FOR_EACH_SSA_DEF_OPERAND (def_p, copy, op_iter, SSA_OP_ALL_DEFS)
4856 create_new_def_for (DEF_FROM_PTR (def_p), copy, def_p);
6de9cd9a
DN
4857 }
4858
4859 return new_bb;
4860}
4861
84d65814 4862
42759f1e
ZD
4863/* Basic block BB_COPY was created by code duplication. Add phi node
4864 arguments for edges going out of BB_COPY. The blocks that were
4865 duplicated have rbi->duplicated set to one. */
4866
4867void
4868add_phi_args_after_copy_bb (basic_block bb_copy)
4869{
4870 basic_block bb, dest;
4871 edge e, e_copy;
628f6a4e 4872 edge_iterator ei;
42759f1e
ZD
4873 tree phi, phi_copy, phi_next, def;
4874
4875 bb = bb_copy->rbi->original;
4876
628f6a4e 4877 FOR_EACH_EDGE (e_copy, ei, bb_copy->succs)
42759f1e
ZD
4878 {
4879 if (!phi_nodes (e_copy->dest))
4880 continue;
4881
4882 if (e_copy->dest->rbi->duplicated)
4883 dest = e_copy->dest->rbi->original;
4884 else
4885 dest = e_copy->dest;
4886
4887 e = find_edge (bb, dest);
4888 if (!e)
4889 {
4890 /* During loop unrolling the target of the latch edge is copied.
4891 In this case we are not looking for edge to dest, but to
4892 duplicated block whose original was dest. */
628f6a4e 4893 FOR_EACH_EDGE (e, ei, bb->succs)
42759f1e
ZD
4894 if (e->dest->rbi->duplicated
4895 && e->dest->rbi->original == dest)
4896 break;
4897
4898 gcc_assert (e != NULL);
4899 }
4900
4901 for (phi = phi_nodes (e->dest), phi_copy = phi_nodes (e_copy->dest);
4902 phi;
eaf0dc02 4903 phi = phi_next, phi_copy = PHI_CHAIN (phi_copy))
42759f1e 4904 {
eaf0dc02 4905 phi_next = PHI_CHAIN (phi);
42759f1e 4906 def = PHI_ARG_DEF_FROM_EDGE (phi, e);
d2e398df 4907 add_phi_arg (phi_copy, def, e_copy);
42759f1e
ZD
4908 }
4909 }
4910}
4911
4912/* Blocks in REGION_COPY array of length N_REGION were created by
4913 duplication of basic blocks. Add phi node arguments for edges
4914 going from these blocks. */
4915
4916void
4917add_phi_args_after_copy (basic_block *region_copy, unsigned n_region)
4918{
4919 unsigned i;
4920
4921 for (i = 0; i < n_region; i++)
4922 region_copy[i]->rbi->duplicated = 1;
4923
4924 for (i = 0; i < n_region; i++)
4925 add_phi_args_after_copy_bb (region_copy[i]);
4926
4927 for (i = 0; i < n_region; i++)
4928 region_copy[i]->rbi->duplicated = 0;
4929}
4930
42759f1e
ZD
4931/* Duplicates a REGION (set of N_REGION basic blocks) with just a single
4932 important exit edge EXIT. By important we mean that no SSA name defined
4933 inside region is live over the other exit edges of the region. All entry
4934 edges to the region must go to ENTRY->dest. The edge ENTRY is redirected
4935 to the duplicate of the region. SSA form, dominance and loop information
4936 is updated. The new basic blocks are stored to REGION_COPY in the same
4937 order as they had in REGION, provided that REGION_COPY is not NULL.
4938 The function returns false if it is unable to copy the region,
4939 true otherwise. */
4940
4941bool
4942tree_duplicate_sese_region (edge entry, edge exit,
4943 basic_block *region, unsigned n_region,
4944 basic_block *region_copy)
4945{
84d65814 4946 unsigned i, n_doms;
42759f1e
ZD
4947 bool free_region_copy = false, copying_header = false;
4948 struct loop *loop = entry->dest->loop_father;
4949 edge exit_copy;
42759f1e 4950 basic_block *doms;
42759f1e 4951 edge redirected;
5deaef19 4952 int total_freq, entry_freq;
42759f1e
ZD
4953
4954 if (!can_copy_bbs_p (region, n_region))
4955 return false;
4956
4957 /* Some sanity checking. Note that we do not check for all possible
4958 missuses of the functions. I.e. if you ask to copy something weird,
4959 it will work, but the state of structures probably will not be
4960 correct. */
42759f1e
ZD
4961 for (i = 0; i < n_region; i++)
4962 {
4963 /* We do not handle subloops, i.e. all the blocks must belong to the
4964 same loop. */
4965 if (region[i]->loop_father != loop)
4966 return false;
4967
4968 if (region[i] != entry->dest
4969 && region[i] == loop->header)
4970 return false;
4971 }
4972
4973 loop->copy = loop;
4974
4975 /* In case the function is used for loop header copying (which is the primary
4976 use), ensure that EXIT and its copy will be new latch and entry edges. */
4977 if (loop->header == entry->dest)
4978 {
4979 copying_header = true;
4980 loop->copy = loop->outer;
4981
4982 if (!dominated_by_p (CDI_DOMINATORS, loop->latch, exit->src))
4983 return false;
4984
4985 for (i = 0; i < n_region; i++)
4986 if (region[i] != exit->src
4987 && dominated_by_p (CDI_DOMINATORS, region[i], exit->src))
4988 return false;
4989 }
4990
4991 if (!region_copy)
4992 {
4993 region_copy = xmalloc (sizeof (basic_block) * n_region);
4994 free_region_copy = true;
4995 }
4996
84d65814 4997 gcc_assert (!need_ssa_update_p ());
42759f1e 4998
5deaef19 4999 /* Record blocks outside the region that are dominated by something
42759f1e
ZD
5000 inside. */
5001 doms = xmalloc (sizeof (basic_block) * n_basic_blocks);
5002 n_doms = get_dominated_by_region (CDI_DOMINATORS, region, n_region, doms);
5003
5deaef19
ZD
5004 total_freq = entry->dest->frequency;
5005 entry_freq = EDGE_FREQUENCY (entry);
5006 /* Fix up corner cases, to avoid division by zero or creation of negative
5007 frequencies. */
5008 if (total_freq == 0)
5009 total_freq = 1;
5010 else if (entry_freq > total_freq)
5011 entry_freq = total_freq;
5012
42759f1e 5013 copy_bbs (region, n_region, region_copy, &exit, 1, &exit_copy, loop);
5deaef19
ZD
5014 scale_bbs_frequencies_int (region, n_region, total_freq - entry_freq,
5015 total_freq);
5016 scale_bbs_frequencies_int (region_copy, n_region, entry_freq, total_freq);
42759f1e
ZD
5017
5018 if (copying_header)
5019 {
5020 loop->header = exit->dest;
5021 loop->latch = exit->src;
5022 }
5023
5024 /* Redirect the entry and add the phi node arguments. */
5025 redirected = redirect_edge_and_branch (entry, entry->dest->rbi->copy);
5026 gcc_assert (redirected != NULL);
71882046 5027 flush_pending_stmts (entry);
42759f1e
ZD
5028
5029 /* Concerning updating of dominators: We must recount dominators
84d65814
DN
5030 for entry block and its copy. Anything that is outside of the
5031 region, but was dominated by something inside needs recounting as
5032 well. */
42759f1e
ZD
5033 set_immediate_dominator (CDI_DOMINATORS, entry->dest, entry->src);
5034 doms[n_doms++] = entry->dest->rbi->original;
5035 iterate_fix_dominators (CDI_DOMINATORS, doms, n_doms);
5036 free (doms);
5037
84d65814 5038 /* Add the other PHI node arguments. */
42759f1e
ZD
5039 add_phi_args_after_copy (region_copy, n_region);
5040
84d65814
DN
5041 /* Update the SSA web. */
5042 update_ssa (TODO_update_ssa);
42759f1e
ZD
5043
5044 if (free_region_copy)
5045 free (region_copy);
5046
42759f1e
ZD
5047 return true;
5048}
6de9cd9a 5049
84d65814 5050
6de9cd9a
DN
5051/* Dump FUNCTION_DECL FN to file FILE using FLAGS (see TDF_* in tree.h) */
5052
5053void
5054dump_function_to_file (tree fn, FILE *file, int flags)
5055{
5056 tree arg, vars, var;
5057 bool ignore_topmost_bind = false, any_var = false;
5058 basic_block bb;
5059 tree chain;
5060
673fda6b 5061 fprintf (file, "%s (", lang_hooks.decl_printable_name (fn, 2));
6de9cd9a
DN
5062
5063 arg = DECL_ARGUMENTS (fn);
5064 while (arg)
5065 {
5066 print_generic_expr (file, arg, dump_flags);
5067 if (TREE_CHAIN (arg))
5068 fprintf (file, ", ");
5069 arg = TREE_CHAIN (arg);
5070 }
5071 fprintf (file, ")\n");
5072
cc7220fd
JH
5073 if (flags & TDF_DETAILS)
5074 dump_eh_tree (file, DECL_STRUCT_FUNCTION (fn));
6de9cd9a
DN
5075 if (flags & TDF_RAW)
5076 {
5077 dump_node (fn, TDF_SLIM | flags, file);
5078 return;
5079 }
5080
5081 /* When GIMPLE is lowered, the variables are no longer available in
5082 BIND_EXPRs, so display them separately. */
32a87d45 5083 if (cfun && cfun->decl == fn && cfun->unexpanded_var_list)
6de9cd9a
DN
5084 {
5085 ignore_topmost_bind = true;
5086
5087 fprintf (file, "{\n");
5088 for (vars = cfun->unexpanded_var_list; vars; vars = TREE_CHAIN (vars))
5089 {
5090 var = TREE_VALUE (vars);
5091
5092 print_generic_decl (file, var, flags);
5093 fprintf (file, "\n");
5094
5095 any_var = true;
5096 }
5097 }
5098
32a87d45 5099 if (cfun && cfun->decl == fn && cfun->cfg && basic_block_info)
6de9cd9a
DN
5100 {
5101 /* Make a CFG based dump. */
878f99d2 5102 check_bb_profile (ENTRY_BLOCK_PTR, file);
6de9cd9a
DN
5103 if (!ignore_topmost_bind)
5104 fprintf (file, "{\n");
5105
5106 if (any_var && n_basic_blocks)
5107 fprintf (file, "\n");
5108
5109 FOR_EACH_BB (bb)
5110 dump_generic_bb (file, bb, 2, flags);
5111
5112 fprintf (file, "}\n");
878f99d2 5113 check_bb_profile (EXIT_BLOCK_PTR, file);
6de9cd9a
DN
5114 }
5115 else
5116 {
5117 int indent;
5118
5119 /* Make a tree based dump. */
5120 chain = DECL_SAVED_TREE (fn);
5121
5122 if (TREE_CODE (chain) == BIND_EXPR)
5123 {
5124 if (ignore_topmost_bind)
5125 {
5126 chain = BIND_EXPR_BODY (chain);
5127 indent = 2;
5128 }
5129 else
5130 indent = 0;
5131 }
5132 else
5133 {
5134 if (!ignore_topmost_bind)
5135 fprintf (file, "{\n");
5136 indent = 2;
5137 }
5138
5139 if (any_var)
5140 fprintf (file, "\n");
5141
5142 print_generic_stmt_indented (file, chain, flags, indent);
5143 if (ignore_topmost_bind)
5144 fprintf (file, "}\n");
5145 }
5146
5147 fprintf (file, "\n\n");
5148}
5149
5150
5151/* Pretty print of the loops intermediate representation. */
5152static void print_loop (FILE *, struct loop *, int);
628f6a4e
BE
5153static void print_pred_bbs (FILE *, basic_block bb);
5154static void print_succ_bbs (FILE *, basic_block bb);
6de9cd9a
DN
5155
5156
5157/* Print the predecessors indexes of edge E on FILE. */
5158
5159static void
628f6a4e 5160print_pred_bbs (FILE *file, basic_block bb)
6de9cd9a 5161{
628f6a4e
BE
5162 edge e;
5163 edge_iterator ei;
5164
5165 FOR_EACH_EDGE (e, ei, bb->preds)
6de9cd9a 5166 fprintf (file, "bb_%d", e->src->index);
6de9cd9a
DN
5167}
5168
5169
5170/* Print the successors indexes of edge E on FILE. */
5171
5172static void
628f6a4e 5173print_succ_bbs (FILE *file, basic_block bb)
6de9cd9a 5174{
628f6a4e
BE
5175 edge e;
5176 edge_iterator ei;
5177
5178 FOR_EACH_EDGE (e, ei, bb->succs)
5179 fprintf (file, "bb_%d", e->src->index);
6de9cd9a
DN
5180}
5181
5182
5183/* Pretty print LOOP on FILE, indented INDENT spaces. */
5184
5185static void
5186print_loop (FILE *file, struct loop *loop, int indent)
5187{
5188 char *s_indent;
5189 basic_block bb;
5190
5191 if (loop == NULL)
5192 return;
5193
5194 s_indent = (char *) alloca ((size_t) indent + 1);
5195 memset ((void *) s_indent, ' ', (size_t) indent);
5196 s_indent[indent] = '\0';
5197
5198 /* Print the loop's header. */
5199 fprintf (file, "%sloop_%d\n", s_indent, loop->num);
5200
5201 /* Print the loop's body. */
5202 fprintf (file, "%s{\n", s_indent);
5203 FOR_EACH_BB (bb)
5204 if (bb->loop_father == loop)
5205 {
5206 /* Print the basic_block's header. */
5207 fprintf (file, "%s bb_%d (preds = {", s_indent, bb->index);
628f6a4e 5208 print_pred_bbs (file, bb);
6de9cd9a 5209 fprintf (file, "}, succs = {");
628f6a4e 5210 print_succ_bbs (file, bb);
6de9cd9a
DN
5211 fprintf (file, "})\n");
5212
5213 /* Print the basic_block's body. */
5214 fprintf (file, "%s {\n", s_indent);
5215 tree_dump_bb (bb, file, indent + 4);
5216 fprintf (file, "%s }\n", s_indent);
5217 }
5218
5219 print_loop (file, loop->inner, indent + 2);
5220 fprintf (file, "%s}\n", s_indent);
5221 print_loop (file, loop->next, indent);
5222}
5223
5224
5225/* Follow a CFG edge from the entry point of the program, and on entry
5226 of a loop, pretty print the loop structure on FILE. */
5227
5228void
5229print_loop_ir (FILE *file)
5230{
5231 basic_block bb;
5232
5233 bb = BASIC_BLOCK (0);
5234 if (bb && bb->loop_father)
5235 print_loop (file, bb->loop_father, 0);
5236}
5237
5238
5239/* Debugging loops structure at tree level. */
5240
5241void
5242debug_loop_ir (void)
5243{
5244 print_loop_ir (stderr);
5245}
5246
5247
5248/* Return true if BB ends with a call, possibly followed by some
5249 instructions that must stay with the call. Return false,
5250 otherwise. */
5251
5252static bool
5253tree_block_ends_with_call_p (basic_block bb)
5254{
5255 block_stmt_iterator bsi = bsi_last (bb);
cd709752 5256 return get_call_expr_in (bsi_stmt (bsi)) != NULL;
6de9cd9a
DN
5257}
5258
5259
5260/* Return true if BB ends with a conditional branch. Return false,
5261 otherwise. */
5262
5263static bool
5264tree_block_ends_with_condjump_p (basic_block bb)
5265{
9885da8e
ZD
5266 tree stmt = last_stmt (bb);
5267 return (stmt && TREE_CODE (stmt) == COND_EXPR);
6de9cd9a
DN
5268}
5269
5270
5271/* Return true if we need to add fake edge to exit at statement T.
5272 Helper function for tree_flow_call_edges_add. */
5273
5274static bool
5275need_fake_edge_p (tree t)
5276{
cd709752 5277 tree call;
6de9cd9a
DN
5278
5279 /* NORETURN and LONGJMP calls already have an edge to exit.
321cf1f2 5280 CONST and PURE calls do not need one.
6de9cd9a
DN
5281 We don't currently check for CONST and PURE here, although
5282 it would be a good idea, because those attributes are
5283 figured out from the RTL in mark_constant_function, and
5284 the counter incrementation code from -fprofile-arcs
5285 leads to different results from -fbranch-probabilities. */
cd709752
RH
5286 call = get_call_expr_in (t);
5287 if (call
321cf1f2 5288 && !(call_expr_flags (call) & ECF_NORETURN))
6de9cd9a
DN
5289 return true;
5290
5291 if (TREE_CODE (t) == ASM_EXPR
5292 && (ASM_VOLATILE_P (t) || ASM_INPUT_P (t)))
5293 return true;
5294
5295 return false;
5296}
5297
5298
5299/* Add fake edges to the function exit for any non constant and non
5300 noreturn calls, volatile inline assembly in the bitmap of blocks
5301 specified by BLOCKS or to the whole CFG if BLOCKS is zero. Return
5302 the number of blocks that were split.
5303
5304 The goal is to expose cases in which entering a basic block does
5305 not imply that all subsequent instructions must be executed. */
5306
5307static int
5308tree_flow_call_edges_add (sbitmap blocks)
5309{
5310 int i;
5311 int blocks_split = 0;
5312 int last_bb = last_basic_block;
5313 bool check_last_block = false;
5314
5315 if (n_basic_blocks == 0)
5316 return 0;
5317
5318 if (! blocks)
5319 check_last_block = true;
5320 else
5321 check_last_block = TEST_BIT (blocks, EXIT_BLOCK_PTR->prev_bb->index);
5322
5323 /* In the last basic block, before epilogue generation, there will be
5324 a fallthru edge to EXIT. Special care is required if the last insn
5325 of the last basic block is a call because make_edge folds duplicate
5326 edges, which would result in the fallthru edge also being marked
5327 fake, which would result in the fallthru edge being removed by
5328 remove_fake_edges, which would result in an invalid CFG.
5329
5330 Moreover, we can't elide the outgoing fake edge, since the block
5331 profiler needs to take this into account in order to solve the minimal
5332 spanning tree in the case that the call doesn't return.
5333
5334 Handle this by adding a dummy instruction in a new last basic block. */
5335 if (check_last_block)
5336 {
5337 basic_block bb = EXIT_BLOCK_PTR->prev_bb;
5338 block_stmt_iterator bsi = bsi_last (bb);
5339 tree t = NULL_TREE;
5340 if (!bsi_end_p (bsi))
5341 t = bsi_stmt (bsi);
5342
5343 if (need_fake_edge_p (t))
5344 {
5345 edge e;
5346
9ff3d2de
JL
5347 e = find_edge (bb, EXIT_BLOCK_PTR);
5348 if (e)
5349 {
5350 bsi_insert_on_edge (e, build_empty_stmt ());
5351 bsi_commit_edge_inserts ();
5352 }
6de9cd9a
DN
5353 }
5354 }
5355
5356 /* Now add fake edges to the function exit for any non constant
5357 calls since there is no way that we can determine if they will
5358 return or not... */
5359 for (i = 0; i < last_bb; i++)
5360 {
5361 basic_block bb = BASIC_BLOCK (i);
5362 block_stmt_iterator bsi;
5363 tree stmt, last_stmt;
5364
5365 if (!bb)
5366 continue;
5367
5368 if (blocks && !TEST_BIT (blocks, i))
5369 continue;
5370
5371 bsi = bsi_last (bb);
5372 if (!bsi_end_p (bsi))
5373 {
5374 last_stmt = bsi_stmt (bsi);
5375 do
5376 {
5377 stmt = bsi_stmt (bsi);
5378 if (need_fake_edge_p (stmt))
5379 {
5380 edge e;
5381 /* The handling above of the final block before the
5382 epilogue should be enough to verify that there is
5383 no edge to the exit block in CFG already.
5384 Calling make_edge in such case would cause us to
5385 mark that edge as fake and remove it later. */
5386#ifdef ENABLE_CHECKING
5387 if (stmt == last_stmt)
628f6a4e 5388 {
9ff3d2de
JL
5389 e = find_edge (bb, EXIT_BLOCK_PTR);
5390 gcc_assert (e == NULL);
628f6a4e 5391 }
6de9cd9a
DN
5392#endif
5393
5394 /* Note that the following may create a new basic block
5395 and renumber the existing basic blocks. */
5396 if (stmt != last_stmt)
5397 {
5398 e = split_block (bb, stmt);
5399 if (e)
5400 blocks_split++;
5401 }
5402 make_edge (bb, EXIT_BLOCK_PTR, EDGE_FAKE);
5403 }
5404 bsi_prev (&bsi);
5405 }
5406 while (!bsi_end_p (bsi));
5407 }
5408 }
5409
5410 if (blocks_split)
5411 verify_flow_info ();
5412
5413 return blocks_split;
5414}
5415
1eaba2f2
RH
5416bool
5417tree_purge_dead_eh_edges (basic_block bb)
5418{
5419 bool changed = false;
628f6a4e
BE
5420 edge e;
5421 edge_iterator ei;
1eaba2f2
RH
5422 tree stmt = last_stmt (bb);
5423
5424 if (stmt && tree_can_throw_internal (stmt))
5425 return false;
5426
628f6a4e 5427 for (ei = ei_start (bb->succs); (e = ei_safe_edge (ei)); )
1eaba2f2 5428 {
1eaba2f2
RH
5429 if (e->flags & EDGE_EH)
5430 {
d0d2cc21 5431 remove_edge (e);
1eaba2f2
RH
5432 changed = true;
5433 }
628f6a4e
BE
5434 else
5435 ei_next (&ei);
1eaba2f2
RH
5436 }
5437
69d49802
JJ
5438 /* Removal of dead EH edges might change dominators of not
5439 just immediate successors. E.g. when bb1 is changed so that
5440 it no longer can throw and bb1->bb3 and bb1->bb4 are dead
5441 eh edges purged by this function in:
5442 0
5443 / \
5444 v v
5445 1-->2
5446 / \ |
5447 v v |
5448 3-->4 |
5449 \ v
5450 --->5
5451 |
5452 -
5453 idom(bb5) must be recomputed. For now just free the dominance
5454 info. */
5455 if (changed)
5456 free_dominance_info (CDI_DOMINATORS);
5457
1eaba2f2
RH
5458 return changed;
5459}
5460
5461bool
5462tree_purge_all_dead_eh_edges (bitmap blocks)
5463{
5464 bool changed = false;
3cd8c58a 5465 unsigned i;
87c476a2 5466 bitmap_iterator bi;
1eaba2f2 5467
87c476a2
ZD
5468 EXECUTE_IF_SET_IN_BITMAP (blocks, 0, i, bi)
5469 {
5470 changed |= tree_purge_dead_eh_edges (BASIC_BLOCK (i));
5471 }
1eaba2f2
RH
5472
5473 return changed;
5474}
6de9cd9a 5475
a100ac1e
KH
5476/* This function is called whenever a new edge is created or
5477 redirected. */
5478
5479static void
5480tree_execute_on_growing_pred (edge e)
5481{
5482 basic_block bb = e->dest;
5483
5484 if (phi_nodes (bb))
5485 reserve_phi_args_for_new_edge (bb);
5486}
5487
e51546f8
KH
5488/* This function is called immediately before edge E is removed from
5489 the edge vector E->dest->preds. */
5490
5491static void
5492tree_execute_on_shrinking_pred (edge e)
5493{
5494 if (phi_nodes (e->dest))
5495 remove_phi_args (e);
5496}
5497
1cb7dfc3
MH
5498/*---------------------------------------------------------------------------
5499 Helper functions for Loop versioning
5500 ---------------------------------------------------------------------------*/
5501
5502/* Adjust phi nodes for 'first' basic block. 'second' basic block is a copy
5503 of 'first'. Both of them are dominated by 'new_head' basic block. When
5504 'new_head' was created by 'second's incoming edge it received phi arguments
5505 on the edge by split_edge(). Later, additional edge 'e' was created to
5506 connect 'new_head' and 'first'. Now this routine adds phi args on this
5507 additional edge 'e' that new_head to second edge received as part of edge
5508 splitting.
5509*/
5510
5511static void
5512tree_lv_adjust_loop_header_phi (basic_block first, basic_block second,
5513 basic_block new_head, edge e)
5514{
5515 tree phi1, phi2;
d0e12fc6
KH
5516 edge e2 = find_edge (new_head, second);
5517
5518 /* Because NEW_HEAD has been created by splitting SECOND's incoming
5519 edge, we should always have an edge from NEW_HEAD to SECOND. */
5520 gcc_assert (e2 != NULL);
1cb7dfc3
MH
5521
5522 /* Browse all 'second' basic block phi nodes and add phi args to
5523 edge 'e' for 'first' head. PHI args are always in correct order. */
5524
5525 for (phi2 = phi_nodes (second), phi1 = phi_nodes (first);
5526 phi2 && phi1;
5527 phi2 = PHI_CHAIN (phi2), phi1 = PHI_CHAIN (phi1))
5528 {
d0e12fc6
KH
5529 tree def = PHI_ARG_DEF (phi2, e2->dest_idx);
5530 add_phi_arg (phi1, def, e);
1cb7dfc3
MH
5531 }
5532}
5533
5534/* Adds a if else statement to COND_BB with condition COND_EXPR.
5535 SECOND_HEAD is the destination of the THEN and FIRST_HEAD is
5536 the destination of the ELSE part. */
5537static void
5538tree_lv_add_condition_to_bb (basic_block first_head, basic_block second_head,
5539 basic_block cond_bb, void *cond_e)
5540{
5541 block_stmt_iterator bsi;
5542 tree goto1 = NULL_TREE;
5543 tree goto2 = NULL_TREE;
5544 tree new_cond_expr = NULL_TREE;
5545 tree cond_expr = (tree) cond_e;
5546 edge e0;
5547
5548 /* Build new conditional expr */
5549 goto1 = build1 (GOTO_EXPR, void_type_node, tree_block_label (first_head));
5550 goto2 = build1 (GOTO_EXPR, void_type_node, tree_block_label (second_head));
5551 new_cond_expr = build3 (COND_EXPR, void_type_node, cond_expr, goto1, goto2);
5552
5553 /* Add new cond in cond_bb. */
5554 bsi = bsi_start (cond_bb);
5555 bsi_insert_after (&bsi, new_cond_expr, BSI_NEW_STMT);
5556 /* Adjust edges appropriately to connect new head with first head
5557 as well as second head. */
5558 e0 = single_succ_edge (cond_bb);
5559 e0->flags &= ~EDGE_FALLTHRU;
5560 e0->flags |= EDGE_FALSE_VALUE;
5561}
5562
6de9cd9a
DN
5563struct cfg_hooks tree_cfg_hooks = {
5564 "tree",
5565 tree_verify_flow_info,
5566 tree_dump_bb, /* dump_bb */
5567 create_bb, /* create_basic_block */
5568 tree_redirect_edge_and_branch,/* redirect_edge_and_branch */
5569 tree_redirect_edge_and_branch_force,/* redirect_edge_and_branch_force */
5570 remove_bb, /* delete_basic_block */
5571 tree_split_block, /* split_block */
5572 tree_move_block_after, /* move_block_after */
5573 tree_can_merge_blocks_p, /* can_merge_blocks_p */
5574 tree_merge_blocks, /* merge_blocks */
5575 tree_predict_edge, /* predict_edge */
5576 tree_predicted_by_p, /* predicted_by_p */
5577 tree_can_duplicate_bb_p, /* can_duplicate_block_p */
5578 tree_duplicate_bb, /* duplicate_block */
5579 tree_split_edge, /* split_edge */
5580 tree_make_forwarder_block, /* make_forward_block */
5581 NULL, /* tidy_fallthru_edge */
5582 tree_block_ends_with_call_p, /* block_ends_with_call_p */
5583 tree_block_ends_with_condjump_p, /* block_ends_with_condjump_p */
d9d4706f 5584 tree_flow_call_edges_add, /* flow_call_edges_add */
a100ac1e 5585 tree_execute_on_growing_pred, /* execute_on_growing_pred */
e51546f8 5586 tree_execute_on_shrinking_pred, /* execute_on_shrinking_pred */
1cb7dfc3
MH
5587 tree_duplicate_loop_to_header_edge, /* duplicate loop for trees */
5588 tree_lv_add_condition_to_bb, /* lv_add_condition_to_bb */
5589 tree_lv_adjust_loop_header_phi, /* lv_adjust_loop_header_phi*/
5590 extract_true_false_edges_from_block, /* extract_cond_bb_edges */
5591 flush_pending_stmts /* flush_pending_stmts */
6de9cd9a
DN
5592};
5593
5594
5595/* Split all critical edges. */
5596
5597static void
5598split_critical_edges (void)
5599{
5600 basic_block bb;
5601 edge e;
628f6a4e 5602 edge_iterator ei;
6de9cd9a 5603
d6be0d7f
JL
5604 /* split_edge can redirect edges out of SWITCH_EXPRs, which can get
5605 expensive. So we want to enable recording of edge to CASE_LABEL_EXPR
5606 mappings around the calls to split_edge. */
5607 start_recording_case_labels ();
6de9cd9a
DN
5608 FOR_ALL_BB (bb)
5609 {
628f6a4e 5610 FOR_EACH_EDGE (e, ei, bb->succs)
6de9cd9a
DN
5611 if (EDGE_CRITICAL_P (e) && !(e->flags & EDGE_ABNORMAL))
5612 {
5613 split_edge (e);
5614 }
5615 }
d6be0d7f 5616 end_recording_case_labels ();
6de9cd9a
DN
5617}
5618
5619struct tree_opt_pass pass_split_crit_edges =
5620{
5d44aeed 5621 "crited", /* name */
6de9cd9a
DN
5622 NULL, /* gate */
5623 split_critical_edges, /* execute */
5624 NULL, /* sub */
5625 NULL, /* next */
5626 0, /* static_pass_number */
5627 TV_TREE_SPLIT_EDGES, /* tv_id */
5628 PROP_cfg, /* properties required */
5629 PROP_no_crit_edges, /* properties_provided */
5630 0, /* properties_destroyed */
5631 0, /* todo_flags_start */
9f8628ba
PB
5632 TODO_dump_func, /* todo_flags_finish */
5633 0 /* letter */
6de9cd9a 5634};
26277d41
PB
5635
5636\f
5637/* Return EXP if it is a valid GIMPLE rvalue, else gimplify it into
5638 a temporary, make sure and register it to be renamed if necessary,
5639 and finally return the temporary. Put the statements to compute
5640 EXP before the current statement in BSI. */
5641
5642tree
5643gimplify_val (block_stmt_iterator *bsi, tree type, tree exp)
5644{
5645 tree t, new_stmt, orig_stmt;
5646
5647 if (is_gimple_val (exp))
5648 return exp;
5649
5650 t = make_rename_temp (type, NULL);
5651 new_stmt = build (MODIFY_EXPR, type, t, exp);
5652
5653 orig_stmt = bsi_stmt (*bsi);
5654 SET_EXPR_LOCUS (new_stmt, EXPR_LOCUS (orig_stmt));
5655 TREE_BLOCK (new_stmt) = TREE_BLOCK (orig_stmt);
5656
5657 bsi_insert_before (bsi, new_stmt, BSI_SAME_STMT);
5658
5659 return t;
5660}
5661
5662/* Build a ternary operation and gimplify it. Emit code before BSI.
5663 Return the gimple_val holding the result. */
5664
5665tree
5666gimplify_build3 (block_stmt_iterator *bsi, enum tree_code code,
5667 tree type, tree a, tree b, tree c)
5668{
5669 tree ret;
5670
5671 ret = fold (build3 (code, type, a, b, c));
5672 STRIP_NOPS (ret);
5673
5674 return gimplify_val (bsi, type, ret);
5675}
5676
5677/* Build a binary operation and gimplify it. Emit code before BSI.
5678 Return the gimple_val holding the result. */
5679
5680tree
5681gimplify_build2 (block_stmt_iterator *bsi, enum tree_code code,
5682 tree type, tree a, tree b)
5683{
5684 tree ret;
5685
5686 ret = fold (build2 (code, type, a, b));
5687 STRIP_NOPS (ret);
5688
5689 return gimplify_val (bsi, type, ret);
5690}
5691
5692/* Build a unary operation and gimplify it. Emit code before BSI.
5693 Return the gimple_val holding the result. */
5694
5695tree
5696gimplify_build1 (block_stmt_iterator *bsi, enum tree_code code, tree type,
5697 tree a)
5698{
5699 tree ret;
5700
5701 ret = fold (build1 (code, type, a));
5702 STRIP_NOPS (ret);
5703
5704 return gimplify_val (bsi, type, ret);
5705}
5706
5707
6de9cd9a
DN
5708\f
5709/* Emit return warnings. */
5710
5711static void
5712execute_warn_function_return (void)
5713{
9506ac2b
PB
5714#ifdef USE_MAPPED_LOCATION
5715 source_location location;
5716#else
6de9cd9a 5717 location_t *locus;
9506ac2b 5718#endif
6de9cd9a
DN
5719 tree last;
5720 edge e;
628f6a4e 5721 edge_iterator ei;
6de9cd9a 5722
6de9cd9a
DN
5723 /* If we have a path to EXIT, then we do return. */
5724 if (TREE_THIS_VOLATILE (cfun->decl)
628f6a4e 5725 && EDGE_COUNT (EXIT_BLOCK_PTR->preds) > 0)
6de9cd9a 5726 {
9506ac2b
PB
5727#ifdef USE_MAPPED_LOCATION
5728 location = UNKNOWN_LOCATION;
5729#else
6de9cd9a 5730 locus = NULL;
9506ac2b 5731#endif
628f6a4e 5732 FOR_EACH_EDGE (e, ei, EXIT_BLOCK_PTR->preds)
6de9cd9a
DN
5733 {
5734 last = last_stmt (e->src);
5735 if (TREE_CODE (last) == RETURN_EXPR
9506ac2b
PB
5736#ifdef USE_MAPPED_LOCATION
5737 && (location = EXPR_LOCATION (last)) != UNKNOWN_LOCATION)
5738#else
6de9cd9a 5739 && (locus = EXPR_LOCUS (last)) != NULL)
9506ac2b 5740#endif
6de9cd9a
DN
5741 break;
5742 }
9506ac2b
PB
5743#ifdef USE_MAPPED_LOCATION
5744 if (location == UNKNOWN_LOCATION)
5745 location = cfun->function_end_locus;
d4ee4d25 5746 warning (0, "%H%<noreturn%> function does return", &location);
9506ac2b 5747#else
6de9cd9a
DN
5748 if (!locus)
5749 locus = &cfun->function_end_locus;
d4ee4d25 5750 warning (0, "%H%<noreturn%> function does return", locus);
9506ac2b 5751#endif
6de9cd9a
DN
5752 }
5753
5754 /* If we see "return;" in some basic block, then we do reach the end
5755 without returning a value. */
5756 else if (warn_return_type
089efaa4 5757 && !TREE_NO_WARNING (cfun->decl)
628f6a4e 5758 && EDGE_COUNT (EXIT_BLOCK_PTR->preds) > 0
6de9cd9a
DN
5759 && !VOID_TYPE_P (TREE_TYPE (TREE_TYPE (cfun->decl))))
5760 {
628f6a4e 5761 FOR_EACH_EDGE (e, ei, EXIT_BLOCK_PTR->preds)
6de9cd9a
DN
5762 {
5763 tree last = last_stmt (e->src);
5764 if (TREE_CODE (last) == RETURN_EXPR
5765 && TREE_OPERAND (last, 0) == NULL)
5766 {
9506ac2b
PB
5767#ifdef USE_MAPPED_LOCATION
5768 location = EXPR_LOCATION (last);
5769 if (location == UNKNOWN_LOCATION)
5770 location = cfun->function_end_locus;
d4ee4d25 5771 warning (0, "%Hcontrol reaches end of non-void function", &location);
9506ac2b 5772#else
6de9cd9a
DN
5773 locus = EXPR_LOCUS (last);
5774 if (!locus)
5775 locus = &cfun->function_end_locus;
d4ee4d25 5776 warning (0, "%Hcontrol reaches end of non-void function", locus);
9506ac2b 5777#endif
089efaa4 5778 TREE_NO_WARNING (cfun->decl) = 1;
6de9cd9a
DN
5779 break;
5780 }
5781 }
5782 }
5783}
5784
5785
5786/* Given a basic block B which ends with a conditional and has
5787 precisely two successors, determine which of the edges is taken if
5788 the conditional is true and which is taken if the conditional is
5789 false. Set TRUE_EDGE and FALSE_EDGE appropriately. */
5790
5791void
5792extract_true_false_edges_from_block (basic_block b,
5793 edge *true_edge,
5794 edge *false_edge)
5795{
628f6a4e 5796 edge e = EDGE_SUCC (b, 0);
6de9cd9a
DN
5797
5798 if (e->flags & EDGE_TRUE_VALUE)
5799 {
5800 *true_edge = e;
628f6a4e 5801 *false_edge = EDGE_SUCC (b, 1);
6de9cd9a
DN
5802 }
5803 else
5804 {
5805 *false_edge = e;
628f6a4e 5806 *true_edge = EDGE_SUCC (b, 1);
6de9cd9a
DN
5807 }
5808}
5809
5810struct tree_opt_pass pass_warn_function_return =
5811{
5812 NULL, /* name */
5813 NULL, /* gate */
5814 execute_warn_function_return, /* execute */
5815 NULL, /* sub */
5816 NULL, /* next */
5817 0, /* static_pass_number */
5818 0, /* tv_id */
00bfee6f 5819 PROP_cfg, /* properties_required */
6de9cd9a
DN
5820 0, /* properties_provided */
5821 0, /* properties_destroyed */
5822 0, /* todo_flags_start */
9f8628ba
PB
5823 0, /* todo_flags_finish */
5824 0 /* letter */
6de9cd9a 5825};
aa313ed4
JH
5826
5827/* Emit noreturn warnings. */
5828
5829static void
5830execute_warn_function_noreturn (void)
5831{
5832 if (warn_missing_noreturn
5833 && !TREE_THIS_VOLATILE (cfun->decl)
5834 && EDGE_COUNT (EXIT_BLOCK_PTR->preds) == 0
5835 && !lang_hooks.function.missing_noreturn_ok_p (cfun->decl))
5836 warning (0, "%Jfunction might be possible candidate for "
5837 "attribute %<noreturn%>",
5838 cfun->decl);
5839}
5840
5841struct tree_opt_pass pass_warn_function_noreturn =
5842{
5843 NULL, /* name */
5844 NULL, /* gate */
5845 execute_warn_function_noreturn, /* execute */
5846 NULL, /* sub */
5847 NULL, /* next */
5848 0, /* static_pass_number */
5849 0, /* tv_id */
5850 PROP_cfg, /* properties_required */
5851 0, /* properties_provided */
5852 0, /* properties_destroyed */
5853 0, /* todo_flags_start */
5854 0, /* todo_flags_finish */
5855 0 /* letter */
5856};