i386.c (legitimize_tls_address): Generate tls_initial_exec_64_sun only when !TARGET_X32.
[gcc.git] / gcc / cfgrtl.c
1 /* Control flow graph manipulation code for GNU compiler.
2 Copyright (C) 1987, 1988, 1992, 1993, 1994, 1995, 1996, 1997, 1998,
3 1999, 2000, 2001, 2002, 2003, 2004, 2005, 2006, 2007, 2008, 2009, 2010,
4 2011, 2012 Free Software Foundation, Inc.
5
6 This file is part of GCC.
7
8 GCC is free software; you can redistribute it and/or modify it under
9 the terms of the GNU General Public License as published by the Free
10 Software Foundation; either version 3, or (at your option) any later
11 version.
12
13 GCC is distributed in the hope that it will be useful, but WITHOUT ANY
14 WARRANTY; without even the implied warranty of MERCHANTABILITY or
15 FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License
16 for more details.
17
18 You should have received a copy of the GNU General Public License
19 along with GCC; see the file COPYING3. If not see
20 <http://www.gnu.org/licenses/>. */
21
22 /* This file contains low level functions to manipulate the CFG and analyze it
23 that are aware of the RTL intermediate language.
24
25 Available functionality:
26 - Basic CFG/RTL manipulation API documented in cfghooks.h
27 - CFG-aware instruction chain manipulation
28 delete_insn, delete_insn_chain
29 - Edge splitting and committing to edges
30 insert_insn_on_edge, commit_edge_insertions
31 - CFG updating after insn simplification
32 purge_dead_edges, purge_all_dead_edges
33 - CFG fixing after coarse manipulation
34 fixup_abnormal_edges
35
36 Functions not supposed for generic use:
37 - Infrastructure to determine quickly basic block for insn
38 compute_bb_for_insn, update_bb_for_insn, set_block_for_insn,
39 - Edge redirection with updating and optimizing of insn chain
40 block_label, tidy_fallthru_edge, force_nonfallthru */
41 \f
42 #include "config.h"
43 #include "system.h"
44 #include "coretypes.h"
45 #include "tm.h"
46 #include "tree.h"
47 #include "hard-reg-set.h"
48 #include "basic-block.h"
49 #include "regs.h"
50 #include "flags.h"
51 #include "output.h"
52 #include "function.h"
53 #include "except.h"
54 #include "rtl-error.h"
55 #include "tm_p.h"
56 #include "obstack.h"
57 #include "insn-attr.h"
58 #include "insn-config.h"
59 #include "cfglayout.h"
60 #include "expr.h"
61 #include "target.h"
62 #include "common/common-target.h"
63 #include "cfgloop.h"
64 #include "ggc.h"
65 #include "tree-pass.h"
66 #include "df.h"
67
68 static int can_delete_note_p (const_rtx);
69 static int can_delete_label_p (const_rtx);
70 static basic_block rtl_split_edge (edge);
71 static bool rtl_move_block_after (basic_block, basic_block);
72 static int rtl_verify_flow_info (void);
73 static basic_block cfg_layout_split_block (basic_block, void *);
74 static edge cfg_layout_redirect_edge_and_branch (edge, basic_block);
75 static basic_block cfg_layout_redirect_edge_and_branch_force (edge, basic_block);
76 static void cfg_layout_delete_block (basic_block);
77 static void rtl_delete_block (basic_block);
78 static basic_block rtl_redirect_edge_and_branch_force (edge, basic_block);
79 static edge rtl_redirect_edge_and_branch (edge, basic_block);
80 static basic_block rtl_split_block (basic_block, void *);
81 static void rtl_dump_bb (basic_block, FILE *, int, int);
82 static int rtl_verify_flow_info_1 (void);
83 static void rtl_make_forwarder_block (edge);
84 \f
85 /* Return true if NOTE is not one of the ones that must be kept paired,
86 so that we may simply delete it. */
87
88 static int
89 can_delete_note_p (const_rtx note)
90 {
91 switch (NOTE_KIND (note))
92 {
93 case NOTE_INSN_DELETED:
94 case NOTE_INSN_BASIC_BLOCK:
95 case NOTE_INSN_EPILOGUE_BEG:
96 return true;
97
98 default:
99 return false;
100 }
101 }
102
103 /* True if a given label can be deleted. */
104
105 static int
106 can_delete_label_p (const_rtx label)
107 {
108 return (!LABEL_PRESERVE_P (label)
109 /* User declared labels must be preserved. */
110 && LABEL_NAME (label) == 0
111 && !in_expr_list_p (forced_labels, label));
112 }
113
114 /* Delete INSN by patching it out. */
115
116 void
117 delete_insn (rtx insn)
118 {
119 rtx note;
120 bool really_delete = true;
121
122 if (LABEL_P (insn))
123 {
124 /* Some labels can't be directly removed from the INSN chain, as they
125 might be references via variables, constant pool etc.
126 Convert them to the special NOTE_INSN_DELETED_LABEL note. */
127 if (! can_delete_label_p (insn))
128 {
129 const char *name = LABEL_NAME (insn);
130 basic_block bb = BLOCK_FOR_INSN (insn);
131 rtx bb_note = NEXT_INSN (insn);
132
133 really_delete = false;
134 PUT_CODE (insn, NOTE);
135 NOTE_KIND (insn) = NOTE_INSN_DELETED_LABEL;
136 NOTE_DELETED_LABEL_NAME (insn) = name;
137
138 if (bb_note != NULL_RTX && NOTE_INSN_BASIC_BLOCK_P (bb_note)
139 && BLOCK_FOR_INSN (bb_note) == bb)
140 {
141 reorder_insns_nobb (insn, insn, bb_note);
142 BB_HEAD (bb) = bb_note;
143 if (BB_END (bb) == bb_note)
144 BB_END (bb) = insn;
145 }
146 }
147
148 remove_node_from_expr_list (insn, &nonlocal_goto_handler_labels);
149 }
150
151 if (really_delete)
152 {
153 /* If this insn has already been deleted, something is very wrong. */
154 gcc_assert (!INSN_DELETED_P (insn));
155 remove_insn (insn);
156 INSN_DELETED_P (insn) = 1;
157 }
158
159 /* If deleting a jump, decrement the use count of the label. Deleting
160 the label itself should happen in the normal course of block merging. */
161 if (JUMP_P (insn))
162 {
163 if (JUMP_LABEL (insn)
164 && LABEL_P (JUMP_LABEL (insn)))
165 LABEL_NUSES (JUMP_LABEL (insn))--;
166
167 /* If there are more targets, remove them too. */
168 while ((note
169 = find_reg_note (insn, REG_LABEL_TARGET, NULL_RTX)) != NULL_RTX
170 && LABEL_P (XEXP (note, 0)))
171 {
172 LABEL_NUSES (XEXP (note, 0))--;
173 remove_note (insn, note);
174 }
175 }
176
177 /* Also if deleting any insn that references a label as an operand. */
178 while ((note = find_reg_note (insn, REG_LABEL_OPERAND, NULL_RTX)) != NULL_RTX
179 && LABEL_P (XEXP (note, 0)))
180 {
181 LABEL_NUSES (XEXP (note, 0))--;
182 remove_note (insn, note);
183 }
184
185 if (JUMP_TABLE_DATA_P (insn))
186 {
187 rtx pat = PATTERN (insn);
188 int diff_vec_p = GET_CODE (PATTERN (insn)) == ADDR_DIFF_VEC;
189 int len = XVECLEN (pat, diff_vec_p);
190 int i;
191
192 for (i = 0; i < len; i++)
193 {
194 rtx label = XEXP (XVECEXP (pat, diff_vec_p, i), 0);
195
196 /* When deleting code in bulk (e.g. removing many unreachable
197 blocks) we can delete a label that's a target of the vector
198 before deleting the vector itself. */
199 if (!NOTE_P (label))
200 LABEL_NUSES (label)--;
201 }
202 }
203 }
204
205 /* Like delete_insn but also purge dead edges from BB. */
206
207 void
208 delete_insn_and_edges (rtx insn)
209 {
210 bool purge = false;
211
212 if (INSN_P (insn)
213 && BLOCK_FOR_INSN (insn)
214 && BB_END (BLOCK_FOR_INSN (insn)) == insn)
215 purge = true;
216 delete_insn (insn);
217 if (purge)
218 purge_dead_edges (BLOCK_FOR_INSN (insn));
219 }
220
221 /* Unlink a chain of insns between START and FINISH, leaving notes
222 that must be paired. If CLEAR_BB is true, we set bb field for
223 insns that cannot be removed to NULL. */
224
225 void
226 delete_insn_chain (rtx start, rtx finish, bool clear_bb)
227 {
228 rtx prev, current;
229
230 /* Unchain the insns one by one. It would be quicker to delete all of these
231 with a single unchaining, rather than one at a time, but we need to keep
232 the NOTE's. */
233 current = finish;
234 while (1)
235 {
236 prev = PREV_INSN (current);
237 if (NOTE_P (current) && !can_delete_note_p (current))
238 ;
239 else
240 delete_insn (current);
241
242 if (clear_bb && !INSN_DELETED_P (current))
243 set_block_for_insn (current, NULL);
244
245 if (current == start)
246 break;
247 current = prev;
248 }
249 }
250 \f
251 /* Create a new basic block consisting of the instructions between HEAD and END
252 inclusive. This function is designed to allow fast BB construction - reuses
253 the note and basic block struct in BB_NOTE, if any and do not grow
254 BASIC_BLOCK chain and should be used directly only by CFG construction code.
255 END can be NULL in to create new empty basic block before HEAD. Both END
256 and HEAD can be NULL to create basic block at the end of INSN chain.
257 AFTER is the basic block we should be put after. */
258
259 basic_block
260 create_basic_block_structure (rtx head, rtx end, rtx bb_note, basic_block after)
261 {
262 basic_block bb;
263
264 if (bb_note
265 && (bb = NOTE_BASIC_BLOCK (bb_note)) != NULL
266 && bb->aux == NULL)
267 {
268 /* If we found an existing note, thread it back onto the chain. */
269
270 rtx after;
271
272 if (LABEL_P (head))
273 after = head;
274 else
275 {
276 after = PREV_INSN (head);
277 head = bb_note;
278 }
279
280 if (after != bb_note && NEXT_INSN (after) != bb_note)
281 reorder_insns_nobb (bb_note, bb_note, after);
282 }
283 else
284 {
285 /* Otherwise we must create a note and a basic block structure. */
286
287 bb = alloc_block ();
288
289 init_rtl_bb_info (bb);
290 if (!head && !end)
291 head = end = bb_note
292 = emit_note_after (NOTE_INSN_BASIC_BLOCK, get_last_insn ());
293 else if (LABEL_P (head) && end)
294 {
295 bb_note = emit_note_after (NOTE_INSN_BASIC_BLOCK, head);
296 if (head == end)
297 end = bb_note;
298 }
299 else
300 {
301 bb_note = emit_note_before (NOTE_INSN_BASIC_BLOCK, head);
302 head = bb_note;
303 if (!end)
304 end = head;
305 }
306
307 NOTE_BASIC_BLOCK (bb_note) = bb;
308 }
309
310 /* Always include the bb note in the block. */
311 if (NEXT_INSN (end) == bb_note)
312 end = bb_note;
313
314 BB_HEAD (bb) = head;
315 BB_END (bb) = end;
316 bb->index = last_basic_block++;
317 bb->flags = BB_NEW | BB_RTL;
318 link_block (bb, after);
319 SET_BASIC_BLOCK (bb->index, bb);
320 df_bb_refs_record (bb->index, false);
321 update_bb_for_insn (bb);
322 BB_SET_PARTITION (bb, BB_UNPARTITIONED);
323
324 /* Tag the block so that we know it has been used when considering
325 other basic block notes. */
326 bb->aux = bb;
327
328 return bb;
329 }
330
331 /* Create new basic block consisting of instructions in between HEAD and END
332 and place it to the BB chain after block AFTER. END can be NULL to
333 create a new empty basic block before HEAD. Both END and HEAD can be
334 NULL to create basic block at the end of INSN chain. */
335
336 static basic_block
337 rtl_create_basic_block (void *headp, void *endp, basic_block after)
338 {
339 rtx head = (rtx) headp, end = (rtx) endp;
340 basic_block bb;
341
342 /* Grow the basic block array if needed. */
343 if ((size_t) last_basic_block >= VEC_length (basic_block, basic_block_info))
344 {
345 size_t new_size = last_basic_block + (last_basic_block + 3) / 4;
346 VEC_safe_grow_cleared (basic_block, gc, basic_block_info, new_size);
347 }
348
349 n_basic_blocks++;
350
351 bb = create_basic_block_structure (head, end, NULL, after);
352 bb->aux = NULL;
353 return bb;
354 }
355
356 static basic_block
357 cfg_layout_create_basic_block (void *head, void *end, basic_block after)
358 {
359 basic_block newbb = rtl_create_basic_block (head, end, after);
360
361 return newbb;
362 }
363 \f
364 /* Delete the insns in a (non-live) block. We physically delete every
365 non-deleted-note insn, and update the flow graph appropriately.
366
367 Return nonzero if we deleted an exception handler. */
368
369 /* ??? Preserving all such notes strikes me as wrong. It would be nice
370 to post-process the stream to remove empty blocks, loops, ranges, etc. */
371
372 static void
373 rtl_delete_block (basic_block b)
374 {
375 rtx insn, end;
376
377 /* If the head of this block is a CODE_LABEL, then it might be the
378 label for an exception handler which can't be reached. We need
379 to remove the label from the exception_handler_label list. */
380 insn = BB_HEAD (b);
381
382 end = get_last_bb_insn (b);
383
384 /* Selectively delete the entire chain. */
385 BB_HEAD (b) = NULL;
386 delete_insn_chain (insn, end, true);
387
388
389 if (dump_file)
390 fprintf (dump_file, "deleting block %d\n", b->index);
391 df_bb_delete (b->index);
392 }
393 \f
394 /* Records the basic block struct in BLOCK_FOR_INSN for every insn. */
395
396 void
397 compute_bb_for_insn (void)
398 {
399 basic_block bb;
400
401 FOR_EACH_BB (bb)
402 {
403 rtx end = BB_END (bb);
404 rtx insn;
405
406 for (insn = BB_HEAD (bb); ; insn = NEXT_INSN (insn))
407 {
408 BLOCK_FOR_INSN (insn) = bb;
409 if (insn == end)
410 break;
411 }
412 }
413 }
414
415 /* Release the basic_block_for_insn array. */
416
417 unsigned int
418 free_bb_for_insn (void)
419 {
420 rtx insn;
421 for (insn = get_insns (); insn; insn = NEXT_INSN (insn))
422 if (!BARRIER_P (insn))
423 BLOCK_FOR_INSN (insn) = NULL;
424 return 0;
425 }
426
427 static unsigned int
428 rest_of_pass_free_cfg (void)
429 {
430 #ifdef DELAY_SLOTS
431 /* The resource.c machinery uses DF but the CFG isn't guaranteed to be
432 valid at that point so it would be too late to call df_analyze. */
433 if (optimize > 0 && flag_delayed_branch)
434 {
435 df_note_add_problem ();
436 df_analyze ();
437 }
438 #endif
439
440 free_bb_for_insn ();
441 return 0;
442 }
443
444 struct rtl_opt_pass pass_free_cfg =
445 {
446 {
447 RTL_PASS,
448 "*free_cfg", /* name */
449 NULL, /* gate */
450 rest_of_pass_free_cfg, /* execute */
451 NULL, /* sub */
452 NULL, /* next */
453 0, /* static_pass_number */
454 TV_NONE, /* tv_id */
455 0, /* properties_required */
456 0, /* properties_provided */
457 PROP_cfg, /* properties_destroyed */
458 0, /* todo_flags_start */
459 0, /* todo_flags_finish */
460 }
461 };
462
463 /* Return RTX to emit after when we want to emit code on the entry of function. */
464 rtx
465 entry_of_function (void)
466 {
467 return (n_basic_blocks > NUM_FIXED_BLOCKS ?
468 BB_HEAD (ENTRY_BLOCK_PTR->next_bb) : get_insns ());
469 }
470
471 /* Emit INSN at the entry point of the function, ensuring that it is only
472 executed once per function. */
473 void
474 emit_insn_at_entry (rtx insn)
475 {
476 edge_iterator ei = ei_start (ENTRY_BLOCK_PTR->succs);
477 edge e = ei_safe_edge (ei);
478 gcc_assert (e->flags & EDGE_FALLTHRU);
479
480 insert_insn_on_edge (insn, e);
481 commit_edge_insertions ();
482 }
483
484 /* Update BLOCK_FOR_INSN of insns between BEGIN and END
485 (or BARRIER if found) and notify df of the bb change.
486 The insn chain range is inclusive
487 (i.e. both BEGIN and END will be updated. */
488
489 static void
490 update_bb_for_insn_chain (rtx begin, rtx end, basic_block bb)
491 {
492 rtx insn;
493
494 end = NEXT_INSN (end);
495 for (insn = begin; insn != end; insn = NEXT_INSN (insn))
496 if (!BARRIER_P (insn))
497 df_insn_change_bb (insn, bb);
498 }
499
500 /* Update BLOCK_FOR_INSN of insns in BB to BB,
501 and notify df of the change. */
502
503 void
504 update_bb_for_insn (basic_block bb)
505 {
506 update_bb_for_insn_chain (BB_HEAD (bb), BB_END (bb), bb);
507 }
508
509 \f
510 /* Return the NOTE_INSN_BASIC_BLOCK of BB. */
511 rtx
512 bb_note (basic_block bb)
513 {
514 rtx note;
515
516 note = BB_HEAD (bb);
517 if (LABEL_P (note))
518 note = NEXT_INSN (note);
519
520 gcc_assert (NOTE_INSN_BASIC_BLOCK_P (note));
521 return note;
522 }
523
524 /* Return the INSN immediately following the NOTE_INSN_BASIC_BLOCK
525 note associated with the BLOCK. */
526
527 static rtx
528 first_insn_after_basic_block_note (basic_block block)
529 {
530 rtx insn;
531
532 /* Get the first instruction in the block. */
533 insn = BB_HEAD (block);
534
535 if (insn == NULL_RTX)
536 return NULL_RTX;
537 if (LABEL_P (insn))
538 insn = NEXT_INSN (insn);
539 gcc_assert (NOTE_INSN_BASIC_BLOCK_P (insn));
540
541 return NEXT_INSN (insn);
542 }
543
544 /* Creates a new basic block just after basic block B by splitting
545 everything after specified instruction I. */
546
547 static basic_block
548 rtl_split_block (basic_block bb, void *insnp)
549 {
550 basic_block new_bb;
551 rtx insn = (rtx) insnp;
552 edge e;
553 edge_iterator ei;
554
555 if (!insn)
556 {
557 insn = first_insn_after_basic_block_note (bb);
558
559 if (insn)
560 {
561 rtx next = insn;
562
563 insn = PREV_INSN (insn);
564
565 /* If the block contains only debug insns, insn would have
566 been NULL in a non-debug compilation, and then we'd end
567 up emitting a DELETED note. For -fcompare-debug
568 stability, emit the note too. */
569 if (insn != BB_END (bb)
570 && DEBUG_INSN_P (next)
571 && DEBUG_INSN_P (BB_END (bb)))
572 {
573 while (next != BB_END (bb) && DEBUG_INSN_P (next))
574 next = NEXT_INSN (next);
575
576 if (next == BB_END (bb))
577 emit_note_after (NOTE_INSN_DELETED, next);
578 }
579 }
580 else
581 insn = get_last_insn ();
582 }
583
584 /* We probably should check type of the insn so that we do not create
585 inconsistent cfg. It is checked in verify_flow_info anyway, so do not
586 bother. */
587 if (insn == BB_END (bb))
588 emit_note_after (NOTE_INSN_DELETED, insn);
589
590 /* Create the new basic block. */
591 new_bb = create_basic_block (NEXT_INSN (insn), BB_END (bb), bb);
592 BB_COPY_PARTITION (new_bb, bb);
593 BB_END (bb) = insn;
594
595 /* Redirect the outgoing edges. */
596 new_bb->succs = bb->succs;
597 bb->succs = NULL;
598 FOR_EACH_EDGE (e, ei, new_bb->succs)
599 e->src = new_bb;
600
601 /* The new block starts off being dirty. */
602 df_set_bb_dirty (bb);
603 return new_bb;
604 }
605
606 /* Return true if the single edge between blocks A and B is the only place
607 in RTL which holds some unique locus. */
608
609 static bool
610 unique_locus_on_edge_between_p (basic_block a, basic_block b)
611 {
612 const int goto_locus = EDGE_SUCC (a, 0)->goto_locus;
613 rtx insn, end;
614
615 if (!goto_locus)
616 return false;
617
618 /* First scan block A backward. */
619 insn = BB_END (a);
620 end = PREV_INSN (BB_HEAD (a));
621 while (insn != end && (!NONDEBUG_INSN_P (insn) || INSN_LOCATOR (insn) == 0))
622 insn = PREV_INSN (insn);
623
624 if (insn != end && locator_eq (INSN_LOCATOR (insn), goto_locus))
625 return false;
626
627 /* Then scan block B forward. */
628 insn = BB_HEAD (b);
629 if (insn)
630 {
631 end = NEXT_INSN (BB_END (b));
632 while (insn != end && !NONDEBUG_INSN_P (insn))
633 insn = NEXT_INSN (insn);
634
635 if (insn != end && INSN_LOCATOR (insn) != 0
636 && locator_eq (INSN_LOCATOR (insn), goto_locus))
637 return false;
638 }
639
640 return true;
641 }
642
643 /* If the single edge between blocks A and B is the only place in RTL which
644 holds some unique locus, emit a nop with that locus between the blocks. */
645
646 static void
647 emit_nop_for_unique_locus_between (basic_block a, basic_block b)
648 {
649 if (!unique_locus_on_edge_between_p (a, b))
650 return;
651
652 BB_END (a) = emit_insn_after_noloc (gen_nop (), BB_END (a), a);
653 INSN_LOCATOR (BB_END (a)) = EDGE_SUCC (a, 0)->goto_locus;
654 }
655
656 /* Blocks A and B are to be merged into a single block A. The insns
657 are already contiguous. */
658
659 static void
660 rtl_merge_blocks (basic_block a, basic_block b)
661 {
662 rtx b_head = BB_HEAD (b), b_end = BB_END (b), a_end = BB_END (a);
663 rtx del_first = NULL_RTX, del_last = NULL_RTX;
664 rtx b_debug_start = b_end, b_debug_end = b_end;
665 bool forwarder_p = (b->flags & BB_FORWARDER_BLOCK) != 0;
666 int b_empty = 0;
667
668 if (dump_file)
669 fprintf (dump_file, "Merging block %d into block %d...\n", b->index,
670 a->index);
671
672 while (DEBUG_INSN_P (b_end))
673 b_end = PREV_INSN (b_debug_start = b_end);
674
675 /* If there was a CODE_LABEL beginning B, delete it. */
676 if (LABEL_P (b_head))
677 {
678 /* Detect basic blocks with nothing but a label. This can happen
679 in particular at the end of a function. */
680 if (b_head == b_end)
681 b_empty = 1;
682
683 del_first = del_last = b_head;
684 b_head = NEXT_INSN (b_head);
685 }
686
687 /* Delete the basic block note and handle blocks containing just that
688 note. */
689 if (NOTE_INSN_BASIC_BLOCK_P (b_head))
690 {
691 if (b_head == b_end)
692 b_empty = 1;
693 if (! del_last)
694 del_first = b_head;
695
696 del_last = b_head;
697 b_head = NEXT_INSN (b_head);
698 }
699
700 /* If there was a jump out of A, delete it. */
701 if (JUMP_P (a_end))
702 {
703 rtx prev;
704
705 for (prev = PREV_INSN (a_end); ; prev = PREV_INSN (prev))
706 if (!NOTE_P (prev)
707 || NOTE_INSN_BASIC_BLOCK_P (prev)
708 || prev == BB_HEAD (a))
709 break;
710
711 del_first = a_end;
712
713 #ifdef HAVE_cc0
714 /* If this was a conditional jump, we need to also delete
715 the insn that set cc0. */
716 if (only_sets_cc0_p (prev))
717 {
718 rtx tmp = prev;
719
720 prev = prev_nonnote_insn (prev);
721 if (!prev)
722 prev = BB_HEAD (a);
723 del_first = tmp;
724 }
725 #endif
726
727 a_end = PREV_INSN (del_first);
728 }
729 else if (BARRIER_P (NEXT_INSN (a_end)))
730 del_first = NEXT_INSN (a_end);
731
732 /* Delete everything marked above as well as crap that might be
733 hanging out between the two blocks. */
734 BB_END (a) = a_end;
735 BB_HEAD (b) = b_empty ? NULL_RTX : b_head;
736 delete_insn_chain (del_first, del_last, true);
737
738 /* When not optimizing CFG and the edge is the only place in RTL which holds
739 some unique locus, emit a nop with that locus in between. */
740 if (!optimize)
741 {
742 emit_nop_for_unique_locus_between (a, b);
743 a_end = BB_END (a);
744 }
745
746 /* Reassociate the insns of B with A. */
747 if (!b_empty)
748 {
749 update_bb_for_insn_chain (a_end, b_debug_end, a);
750
751 BB_END (a) = b_debug_end;
752 BB_HEAD (b) = NULL_RTX;
753 }
754 else if (b_end != b_debug_end)
755 {
756 /* Move any deleted labels and other notes between the end of A
757 and the debug insns that make up B after the debug insns,
758 bringing the debug insns into A while keeping the notes after
759 the end of A. */
760 if (NEXT_INSN (a_end) != b_debug_start)
761 reorder_insns_nobb (NEXT_INSN (a_end), PREV_INSN (b_debug_start),
762 b_debug_end);
763 update_bb_for_insn_chain (b_debug_start, b_debug_end, a);
764 BB_END (a) = b_debug_end;
765 }
766
767 df_bb_delete (b->index);
768
769 /* If B was a forwarder block, propagate the locus on the edge. */
770 if (forwarder_p && !EDGE_SUCC (b, 0)->goto_locus)
771 EDGE_SUCC (b, 0)->goto_locus = EDGE_SUCC (a, 0)->goto_locus;
772
773 if (dump_file)
774 fprintf (dump_file, "Merged blocks %d and %d.\n", a->index, b->index);
775 }
776
777
778 /* Return true when block A and B can be merged. */
779
780 static bool
781 rtl_can_merge_blocks (basic_block a, basic_block b)
782 {
783 /* If we are partitioning hot/cold basic blocks, we don't want to
784 mess up unconditional or indirect jumps that cross between hot
785 and cold sections.
786
787 Basic block partitioning may result in some jumps that appear to
788 be optimizable (or blocks that appear to be mergeable), but which really
789 must be left untouched (they are required to make it safely across
790 partition boundaries). See the comments at the top of
791 bb-reorder.c:partition_hot_cold_basic_blocks for complete details. */
792
793 if (BB_PARTITION (a) != BB_PARTITION (b))
794 return false;
795
796 /* Protect the loop latches. */
797 if (current_loops && b->loop_father->latch == b)
798 return false;
799
800 /* There must be exactly one edge in between the blocks. */
801 return (single_succ_p (a)
802 && single_succ (a) == b
803 && single_pred_p (b)
804 && a != b
805 /* Must be simple edge. */
806 && !(single_succ_edge (a)->flags & EDGE_COMPLEX)
807 && a->next_bb == b
808 && a != ENTRY_BLOCK_PTR && b != EXIT_BLOCK_PTR
809 /* If the jump insn has side effects,
810 we can't kill the edge. */
811 && (!JUMP_P (BB_END (a))
812 || (reload_completed
813 ? simplejump_p (BB_END (a)) : onlyjump_p (BB_END (a)))));
814 }
815 \f
816 /* Return the label in the head of basic block BLOCK. Create one if it doesn't
817 exist. */
818
819 rtx
820 block_label (basic_block block)
821 {
822 if (block == EXIT_BLOCK_PTR)
823 return NULL_RTX;
824
825 if (!LABEL_P (BB_HEAD (block)))
826 {
827 BB_HEAD (block) = emit_label_before (gen_label_rtx (), BB_HEAD (block));
828 }
829
830 return BB_HEAD (block);
831 }
832
833 /* Attempt to perform edge redirection by replacing possibly complex jump
834 instruction by unconditional jump or removing jump completely. This can
835 apply only if all edges now point to the same block. The parameters and
836 return values are equivalent to redirect_edge_and_branch. */
837
838 edge
839 try_redirect_by_replacing_jump (edge e, basic_block target, bool in_cfglayout)
840 {
841 basic_block src = e->src;
842 rtx insn = BB_END (src), kill_from;
843 rtx set;
844 int fallthru = 0;
845
846 /* If we are partitioning hot/cold basic blocks, we don't want to
847 mess up unconditional or indirect jumps that cross between hot
848 and cold sections.
849
850 Basic block partitioning may result in some jumps that appear to
851 be optimizable (or blocks that appear to be mergeable), but which really
852 must be left untouched (they are required to make it safely across
853 partition boundaries). See the comments at the top of
854 bb-reorder.c:partition_hot_cold_basic_blocks for complete details. */
855
856 if (find_reg_note (insn, REG_CROSSING_JUMP, NULL_RTX)
857 || BB_PARTITION (src) != BB_PARTITION (target))
858 return NULL;
859
860 /* We can replace or remove a complex jump only when we have exactly
861 two edges. Also, if we have exactly one outgoing edge, we can
862 redirect that. */
863 if (EDGE_COUNT (src->succs) >= 3
864 /* Verify that all targets will be TARGET. Specifically, the
865 edge that is not E must also go to TARGET. */
866 || (EDGE_COUNT (src->succs) == 2
867 && EDGE_SUCC (src, EDGE_SUCC (src, 0) == e)->dest != target))
868 return NULL;
869
870 if (!onlyjump_p (insn))
871 return NULL;
872 if ((!optimize || reload_completed) && tablejump_p (insn, NULL, NULL))
873 return NULL;
874
875 /* Avoid removing branch with side effects. */
876 set = single_set (insn);
877 if (!set || side_effects_p (set))
878 return NULL;
879
880 /* In case we zap a conditional jump, we'll need to kill
881 the cc0 setter too. */
882 kill_from = insn;
883 #ifdef HAVE_cc0
884 if (reg_mentioned_p (cc0_rtx, PATTERN (insn))
885 && only_sets_cc0_p (PREV_INSN (insn)))
886 kill_from = PREV_INSN (insn);
887 #endif
888
889 /* See if we can create the fallthru edge. */
890 if (in_cfglayout || can_fallthru (src, target))
891 {
892 if (dump_file)
893 fprintf (dump_file, "Removing jump %i.\n", INSN_UID (insn));
894 fallthru = 1;
895
896 /* Selectively unlink whole insn chain. */
897 if (in_cfglayout)
898 {
899 rtx insn = BB_FOOTER (src);
900
901 delete_insn_chain (kill_from, BB_END (src), false);
902
903 /* Remove barriers but keep jumptables. */
904 while (insn)
905 {
906 if (BARRIER_P (insn))
907 {
908 if (PREV_INSN (insn))
909 NEXT_INSN (PREV_INSN (insn)) = NEXT_INSN (insn);
910 else
911 BB_FOOTER (src) = NEXT_INSN (insn);
912 if (NEXT_INSN (insn))
913 PREV_INSN (NEXT_INSN (insn)) = PREV_INSN (insn);
914 }
915 if (LABEL_P (insn))
916 break;
917 insn = NEXT_INSN (insn);
918 }
919 }
920 else
921 delete_insn_chain (kill_from, PREV_INSN (BB_HEAD (target)),
922 false);
923 }
924
925 /* If this already is simplejump, redirect it. */
926 else if (simplejump_p (insn))
927 {
928 if (e->dest == target)
929 return NULL;
930 if (dump_file)
931 fprintf (dump_file, "Redirecting jump %i from %i to %i.\n",
932 INSN_UID (insn), e->dest->index, target->index);
933 if (!redirect_jump (insn, block_label (target), 0))
934 {
935 gcc_assert (target == EXIT_BLOCK_PTR);
936 return NULL;
937 }
938 }
939
940 /* Cannot do anything for target exit block. */
941 else if (target == EXIT_BLOCK_PTR)
942 return NULL;
943
944 /* Or replace possibly complicated jump insn by simple jump insn. */
945 else
946 {
947 rtx target_label = block_label (target);
948 rtx barrier, label, table;
949
950 emit_jump_insn_after_noloc (gen_jump (target_label), insn);
951 JUMP_LABEL (BB_END (src)) = target_label;
952 LABEL_NUSES (target_label)++;
953 if (dump_file)
954 fprintf (dump_file, "Replacing insn %i by jump %i\n",
955 INSN_UID (insn), INSN_UID (BB_END (src)));
956
957
958 delete_insn_chain (kill_from, insn, false);
959
960 /* Recognize a tablejump that we are converting to a
961 simple jump and remove its associated CODE_LABEL
962 and ADDR_VEC or ADDR_DIFF_VEC. */
963 if (tablejump_p (insn, &label, &table))
964 delete_insn_chain (label, table, false);
965
966 barrier = next_nonnote_insn (BB_END (src));
967 if (!barrier || !BARRIER_P (barrier))
968 emit_barrier_after (BB_END (src));
969 else
970 {
971 if (barrier != NEXT_INSN (BB_END (src)))
972 {
973 /* Move the jump before barrier so that the notes
974 which originally were or were created before jump table are
975 inside the basic block. */
976 rtx new_insn = BB_END (src);
977
978 update_bb_for_insn_chain (NEXT_INSN (BB_END (src)),
979 PREV_INSN (barrier), src);
980
981 NEXT_INSN (PREV_INSN (new_insn)) = NEXT_INSN (new_insn);
982 PREV_INSN (NEXT_INSN (new_insn)) = PREV_INSN (new_insn);
983
984 NEXT_INSN (new_insn) = barrier;
985 NEXT_INSN (PREV_INSN (barrier)) = new_insn;
986
987 PREV_INSN (new_insn) = PREV_INSN (barrier);
988 PREV_INSN (barrier) = new_insn;
989 }
990 }
991 }
992
993 /* Keep only one edge out and set proper flags. */
994 if (!single_succ_p (src))
995 remove_edge (e);
996 gcc_assert (single_succ_p (src));
997
998 e = single_succ_edge (src);
999 if (fallthru)
1000 e->flags = EDGE_FALLTHRU;
1001 else
1002 e->flags = 0;
1003
1004 e->probability = REG_BR_PROB_BASE;
1005 e->count = src->count;
1006
1007 if (e->dest != target)
1008 redirect_edge_succ (e, target);
1009 return e;
1010 }
1011
1012 /* Subroutine of redirect_branch_edge that tries to patch the jump
1013 instruction INSN so that it reaches block NEW. Do this
1014 only when it originally reached block OLD. Return true if this
1015 worked or the original target wasn't OLD, return false if redirection
1016 doesn't work. */
1017
1018 static bool
1019 patch_jump_insn (rtx insn, rtx old_label, basic_block new_bb)
1020 {
1021 rtx tmp;
1022 /* Recognize a tablejump and adjust all matching cases. */
1023 if (tablejump_p (insn, NULL, &tmp))
1024 {
1025 rtvec vec;
1026 int j;
1027 rtx new_label = block_label (new_bb);
1028
1029 if (new_bb == EXIT_BLOCK_PTR)
1030 return false;
1031 if (GET_CODE (PATTERN (tmp)) == ADDR_VEC)
1032 vec = XVEC (PATTERN (tmp), 0);
1033 else
1034 vec = XVEC (PATTERN (tmp), 1);
1035
1036 for (j = GET_NUM_ELEM (vec) - 1; j >= 0; --j)
1037 if (XEXP (RTVEC_ELT (vec, j), 0) == old_label)
1038 {
1039 RTVEC_ELT (vec, j) = gen_rtx_LABEL_REF (Pmode, new_label);
1040 --LABEL_NUSES (old_label);
1041 ++LABEL_NUSES (new_label);
1042 }
1043
1044 /* Handle casesi dispatch insns. */
1045 if ((tmp = single_set (insn)) != NULL
1046 && SET_DEST (tmp) == pc_rtx
1047 && GET_CODE (SET_SRC (tmp)) == IF_THEN_ELSE
1048 && GET_CODE (XEXP (SET_SRC (tmp), 2)) == LABEL_REF
1049 && XEXP (XEXP (SET_SRC (tmp), 2), 0) == old_label)
1050 {
1051 XEXP (SET_SRC (tmp), 2) = gen_rtx_LABEL_REF (Pmode,
1052 new_label);
1053 --LABEL_NUSES (old_label);
1054 ++LABEL_NUSES (new_label);
1055 }
1056 }
1057 else if ((tmp = extract_asm_operands (PATTERN (insn))) != NULL)
1058 {
1059 int i, n = ASM_OPERANDS_LABEL_LENGTH (tmp);
1060 rtx new_label, note;
1061
1062 if (new_bb == EXIT_BLOCK_PTR)
1063 return false;
1064 new_label = block_label (new_bb);
1065
1066 for (i = 0; i < n; ++i)
1067 {
1068 rtx old_ref = ASM_OPERANDS_LABEL (tmp, i);
1069 gcc_assert (GET_CODE (old_ref) == LABEL_REF);
1070 if (XEXP (old_ref, 0) == old_label)
1071 {
1072 ASM_OPERANDS_LABEL (tmp, i)
1073 = gen_rtx_LABEL_REF (Pmode, new_label);
1074 --LABEL_NUSES (old_label);
1075 ++LABEL_NUSES (new_label);
1076 }
1077 }
1078
1079 if (JUMP_LABEL (insn) == old_label)
1080 {
1081 JUMP_LABEL (insn) = new_label;
1082 note = find_reg_note (insn, REG_LABEL_TARGET, new_label);
1083 if (note)
1084 remove_note (insn, note);
1085 }
1086 else
1087 {
1088 note = find_reg_note (insn, REG_LABEL_TARGET, old_label);
1089 if (note)
1090 remove_note (insn, note);
1091 if (JUMP_LABEL (insn) != new_label
1092 && !find_reg_note (insn, REG_LABEL_TARGET, new_label))
1093 add_reg_note (insn, REG_LABEL_TARGET, new_label);
1094 }
1095 while ((note = find_reg_note (insn, REG_LABEL_OPERAND, old_label))
1096 != NULL_RTX)
1097 XEXP (note, 0) = new_label;
1098 }
1099 else
1100 {
1101 /* ?? We may play the games with moving the named labels from
1102 one basic block to the other in case only one computed_jump is
1103 available. */
1104 if (computed_jump_p (insn)
1105 /* A return instruction can't be redirected. */
1106 || returnjump_p (insn))
1107 return false;
1108
1109 if (!currently_expanding_to_rtl || JUMP_LABEL (insn) == old_label)
1110 {
1111 /* If the insn doesn't go where we think, we're confused. */
1112 gcc_assert (JUMP_LABEL (insn) == old_label);
1113
1114 /* If the substitution doesn't succeed, die. This can happen
1115 if the back end emitted unrecognizable instructions or if
1116 target is exit block on some arches. */
1117 if (!redirect_jump (insn, block_label (new_bb), 0))
1118 {
1119 gcc_assert (new_bb == EXIT_BLOCK_PTR);
1120 return false;
1121 }
1122 }
1123 }
1124 return true;
1125 }
1126
1127
1128 /* Redirect edge representing branch of (un)conditional jump or tablejump,
1129 NULL on failure */
1130 static edge
1131 redirect_branch_edge (edge e, basic_block target)
1132 {
1133 rtx old_label = BB_HEAD (e->dest);
1134 basic_block src = e->src;
1135 rtx insn = BB_END (src);
1136
1137 /* We can only redirect non-fallthru edges of jump insn. */
1138 if (e->flags & EDGE_FALLTHRU)
1139 return NULL;
1140 else if (!JUMP_P (insn) && !currently_expanding_to_rtl)
1141 return NULL;
1142
1143 if (!currently_expanding_to_rtl)
1144 {
1145 if (!patch_jump_insn (insn, old_label, target))
1146 return NULL;
1147 }
1148 else
1149 /* When expanding this BB might actually contain multiple
1150 jumps (i.e. not yet split by find_many_sub_basic_blocks).
1151 Redirect all of those that match our label. */
1152 FOR_BB_INSNS (src, insn)
1153 if (JUMP_P (insn) && !patch_jump_insn (insn, old_label, target))
1154 return NULL;
1155
1156 if (dump_file)
1157 fprintf (dump_file, "Edge %i->%i redirected to %i\n",
1158 e->src->index, e->dest->index, target->index);
1159
1160 if (e->dest != target)
1161 e = redirect_edge_succ_nodup (e, target);
1162
1163 return e;
1164 }
1165
1166 /* Attempt to change code to redirect edge E to TARGET. Don't do that on
1167 expense of adding new instructions or reordering basic blocks.
1168
1169 Function can be also called with edge destination equivalent to the TARGET.
1170 Then it should try the simplifications and do nothing if none is possible.
1171
1172 Return edge representing the branch if transformation succeeded. Return NULL
1173 on failure.
1174 We still return NULL in case E already destinated TARGET and we didn't
1175 managed to simplify instruction stream. */
1176
1177 static edge
1178 rtl_redirect_edge_and_branch (edge e, basic_block target)
1179 {
1180 edge ret;
1181 basic_block src = e->src;
1182
1183 if (e->flags & (EDGE_ABNORMAL_CALL | EDGE_EH))
1184 return NULL;
1185
1186 if (e->dest == target)
1187 return e;
1188
1189 if ((ret = try_redirect_by_replacing_jump (e, target, false)) != NULL)
1190 {
1191 df_set_bb_dirty (src);
1192 return ret;
1193 }
1194
1195 ret = redirect_branch_edge (e, target);
1196 if (!ret)
1197 return NULL;
1198
1199 df_set_bb_dirty (src);
1200 return ret;
1201 }
1202
1203 /* Like force_nonfallthru below, but additionally performs redirection
1204 Used by redirect_edge_and_branch_force. JUMP_LABEL is used only
1205 when redirecting to the EXIT_BLOCK, it is either ret_rtx or
1206 simple_return_rtx, indicating which kind of returnjump to create.
1207 It should be NULL otherwise. */
1208
1209 basic_block
1210 force_nonfallthru_and_redirect (edge e, basic_block target, rtx jump_label)
1211 {
1212 basic_block jump_block, new_bb = NULL, src = e->src;
1213 rtx note;
1214 edge new_edge;
1215 int abnormal_edge_flags = 0;
1216 bool asm_goto_edge = false;
1217 int loc;
1218
1219 /* In the case the last instruction is conditional jump to the next
1220 instruction, first redirect the jump itself and then continue
1221 by creating a basic block afterwards to redirect fallthru edge. */
1222 if (e->src != ENTRY_BLOCK_PTR && e->dest != EXIT_BLOCK_PTR
1223 && any_condjump_p (BB_END (e->src))
1224 && JUMP_LABEL (BB_END (e->src)) == BB_HEAD (e->dest))
1225 {
1226 rtx note;
1227 edge b = unchecked_make_edge (e->src, target, 0);
1228 bool redirected;
1229
1230 redirected = redirect_jump (BB_END (e->src), block_label (target), 0);
1231 gcc_assert (redirected);
1232
1233 note = find_reg_note (BB_END (e->src), REG_BR_PROB, NULL_RTX);
1234 if (note)
1235 {
1236 int prob = INTVAL (XEXP (note, 0));
1237
1238 b->probability = prob;
1239 b->count = e->count * prob / REG_BR_PROB_BASE;
1240 e->probability -= e->probability;
1241 e->count -= b->count;
1242 if (e->probability < 0)
1243 e->probability = 0;
1244 if (e->count < 0)
1245 e->count = 0;
1246 }
1247 }
1248
1249 if (e->flags & EDGE_ABNORMAL)
1250 {
1251 /* Irritating special case - fallthru edge to the same block as abnormal
1252 edge.
1253 We can't redirect abnormal edge, but we still can split the fallthru
1254 one and create separate abnormal edge to original destination.
1255 This allows bb-reorder to make such edge non-fallthru. */
1256 gcc_assert (e->dest == target);
1257 abnormal_edge_flags = e->flags & ~(EDGE_FALLTHRU | EDGE_CAN_FALLTHRU);
1258 e->flags &= EDGE_FALLTHRU | EDGE_CAN_FALLTHRU;
1259 }
1260 else
1261 {
1262 gcc_assert (e->flags & EDGE_FALLTHRU);
1263 if (e->src == ENTRY_BLOCK_PTR)
1264 {
1265 /* We can't redirect the entry block. Create an empty block
1266 at the start of the function which we use to add the new
1267 jump. */
1268 edge tmp;
1269 edge_iterator ei;
1270 bool found = false;
1271
1272 basic_block bb = create_basic_block (BB_HEAD (e->dest), NULL, ENTRY_BLOCK_PTR);
1273
1274 /* Change the existing edge's source to be the new block, and add
1275 a new edge from the entry block to the new block. */
1276 e->src = bb;
1277 for (ei = ei_start (ENTRY_BLOCK_PTR->succs); (tmp = ei_safe_edge (ei)); )
1278 {
1279 if (tmp == e)
1280 {
1281 VEC_unordered_remove (edge, ENTRY_BLOCK_PTR->succs, ei.index);
1282 found = true;
1283 break;
1284 }
1285 else
1286 ei_next (&ei);
1287 }
1288
1289 gcc_assert (found);
1290
1291 VEC_safe_push (edge, gc, bb->succs, e);
1292 make_single_succ_edge (ENTRY_BLOCK_PTR, bb, EDGE_FALLTHRU);
1293 }
1294 }
1295
1296 /* If e->src ends with asm goto, see if any of the ASM_OPERANDS_LABELs
1297 don't point to target label. */
1298 if (JUMP_P (BB_END (e->src))
1299 && target != EXIT_BLOCK_PTR
1300 && e->dest == target
1301 && (e->flags & EDGE_FALLTHRU)
1302 && (note = extract_asm_operands (PATTERN (BB_END (e->src)))))
1303 {
1304 int i, n = ASM_OPERANDS_LABEL_LENGTH (note);
1305
1306 for (i = 0; i < n; ++i)
1307 if (XEXP (ASM_OPERANDS_LABEL (note, i), 0) == BB_HEAD (target))
1308 {
1309 asm_goto_edge = true;
1310 break;
1311 }
1312 }
1313
1314 if (EDGE_COUNT (e->src->succs) >= 2 || abnormal_edge_flags || asm_goto_edge)
1315 {
1316 gcov_type count = e->count;
1317 int probability = e->probability;
1318 /* Create the new structures. */
1319
1320 /* If the old block ended with a tablejump, skip its table
1321 by searching forward from there. Otherwise start searching
1322 forward from the last instruction of the old block. */
1323 if (!tablejump_p (BB_END (e->src), NULL, &note))
1324 note = BB_END (e->src);
1325 note = NEXT_INSN (note);
1326
1327 jump_block = create_basic_block (note, NULL, e->src);
1328 jump_block->count = count;
1329 jump_block->frequency = EDGE_FREQUENCY (e);
1330 jump_block->loop_depth = target->loop_depth;
1331
1332 /* Make sure new block ends up in correct hot/cold section. */
1333
1334 BB_COPY_PARTITION (jump_block, e->src);
1335 if (flag_reorder_blocks_and_partition
1336 && targetm_common.have_named_sections
1337 && JUMP_P (BB_END (jump_block))
1338 && !any_condjump_p (BB_END (jump_block))
1339 && (EDGE_SUCC (jump_block, 0)->flags & EDGE_CROSSING))
1340 add_reg_note (BB_END (jump_block), REG_CROSSING_JUMP, NULL_RTX);
1341
1342 /* Wire edge in. */
1343 new_edge = make_edge (e->src, jump_block, EDGE_FALLTHRU);
1344 new_edge->probability = probability;
1345 new_edge->count = count;
1346
1347 /* Redirect old edge. */
1348 redirect_edge_pred (e, jump_block);
1349 e->probability = REG_BR_PROB_BASE;
1350
1351 /* If asm goto has any label refs to target's label,
1352 add also edge from asm goto bb to target. */
1353 if (asm_goto_edge)
1354 {
1355 new_edge->probability /= 2;
1356 new_edge->count /= 2;
1357 jump_block->count /= 2;
1358 jump_block->frequency /= 2;
1359 new_edge = make_edge (new_edge->src, target,
1360 e->flags & ~EDGE_FALLTHRU);
1361 new_edge->probability = probability - probability / 2;
1362 new_edge->count = count - count / 2;
1363 }
1364
1365 new_bb = jump_block;
1366 }
1367 else
1368 jump_block = e->src;
1369
1370 if (e->goto_locus && e->goto_block == NULL)
1371 loc = e->goto_locus;
1372 else
1373 loc = 0;
1374 e->flags &= ~EDGE_FALLTHRU;
1375 if (target == EXIT_BLOCK_PTR)
1376 {
1377 if (jump_label == ret_rtx)
1378 {
1379 #ifdef HAVE_return
1380 emit_jump_insn_after_setloc (gen_return (), BB_END (jump_block), loc);
1381 #else
1382 gcc_unreachable ();
1383 #endif
1384 }
1385 else
1386 {
1387 gcc_assert (jump_label == simple_return_rtx);
1388 #ifdef HAVE_simple_return
1389 emit_jump_insn_after_setloc (gen_simple_return (),
1390 BB_END (jump_block), loc);
1391 #else
1392 gcc_unreachable ();
1393 #endif
1394 }
1395 set_return_jump_label (BB_END (jump_block));
1396 }
1397 else
1398 {
1399 rtx label = block_label (target);
1400 emit_jump_insn_after_setloc (gen_jump (label), BB_END (jump_block), loc);
1401 JUMP_LABEL (BB_END (jump_block)) = label;
1402 LABEL_NUSES (label)++;
1403 }
1404
1405 emit_barrier_after (BB_END (jump_block));
1406 redirect_edge_succ_nodup (e, target);
1407
1408 if (abnormal_edge_flags)
1409 make_edge (src, target, abnormal_edge_flags);
1410
1411 df_mark_solutions_dirty ();
1412 return new_bb;
1413 }
1414
1415 /* Edge E is assumed to be fallthru edge. Emit needed jump instruction
1416 (and possibly create new basic block) to make edge non-fallthru.
1417 Return newly created BB or NULL if none. */
1418
1419 static basic_block
1420 rtl_force_nonfallthru (edge e)
1421 {
1422 return force_nonfallthru_and_redirect (e, e->dest, NULL_RTX);
1423 }
1424
1425 /* Redirect edge even at the expense of creating new jump insn or
1426 basic block. Return new basic block if created, NULL otherwise.
1427 Conversion must be possible. */
1428
1429 static basic_block
1430 rtl_redirect_edge_and_branch_force (edge e, basic_block target)
1431 {
1432 if (redirect_edge_and_branch (e, target)
1433 || e->dest == target)
1434 return NULL;
1435
1436 /* In case the edge redirection failed, try to force it to be non-fallthru
1437 and redirect newly created simplejump. */
1438 df_set_bb_dirty (e->src);
1439 return force_nonfallthru_and_redirect (e, target, NULL_RTX);
1440 }
1441
1442 /* The given edge should potentially be a fallthru edge. If that is in
1443 fact true, delete the jump and barriers that are in the way. */
1444
1445 static void
1446 rtl_tidy_fallthru_edge (edge e)
1447 {
1448 rtx q;
1449 basic_block b = e->src, c = b->next_bb;
1450
1451 /* ??? In a late-running flow pass, other folks may have deleted basic
1452 blocks by nopping out blocks, leaving multiple BARRIERs between here
1453 and the target label. They ought to be chastised and fixed.
1454
1455 We can also wind up with a sequence of undeletable labels between
1456 one block and the next.
1457
1458 So search through a sequence of barriers, labels, and notes for
1459 the head of block C and assert that we really do fall through. */
1460
1461 for (q = NEXT_INSN (BB_END (b)); q != BB_HEAD (c); q = NEXT_INSN (q))
1462 if (INSN_P (q))
1463 return;
1464
1465 /* Remove what will soon cease being the jump insn from the source block.
1466 If block B consisted only of this single jump, turn it into a deleted
1467 note. */
1468 q = BB_END (b);
1469 if (JUMP_P (q)
1470 && onlyjump_p (q)
1471 && (any_uncondjump_p (q)
1472 || single_succ_p (b)))
1473 {
1474 #ifdef HAVE_cc0
1475 /* If this was a conditional jump, we need to also delete
1476 the insn that set cc0. */
1477 if (any_condjump_p (q) && only_sets_cc0_p (PREV_INSN (q)))
1478 q = PREV_INSN (q);
1479 #endif
1480
1481 q = PREV_INSN (q);
1482 }
1483
1484 /* Selectively unlink the sequence. */
1485 if (q != PREV_INSN (BB_HEAD (c)))
1486 delete_insn_chain (NEXT_INSN (q), PREV_INSN (BB_HEAD (c)), false);
1487
1488 e->flags |= EDGE_FALLTHRU;
1489 }
1490 \f
1491 /* Should move basic block BB after basic block AFTER. NIY. */
1492
1493 static bool
1494 rtl_move_block_after (basic_block bb ATTRIBUTE_UNUSED,
1495 basic_block after ATTRIBUTE_UNUSED)
1496 {
1497 return false;
1498 }
1499
1500 /* Split a (typically critical) edge. Return the new block.
1501 The edge must not be abnormal.
1502
1503 ??? The code generally expects to be called on critical edges.
1504 The case of a block ending in an unconditional jump to a
1505 block with multiple predecessors is not handled optimally. */
1506
1507 static basic_block
1508 rtl_split_edge (edge edge_in)
1509 {
1510 basic_block bb;
1511 rtx before;
1512
1513 /* Abnormal edges cannot be split. */
1514 gcc_assert (!(edge_in->flags & EDGE_ABNORMAL));
1515
1516 /* We are going to place the new block in front of edge destination.
1517 Avoid existence of fallthru predecessors. */
1518 if ((edge_in->flags & EDGE_FALLTHRU) == 0)
1519 {
1520 edge e = find_fallthru_edge (edge_in->dest->preds);
1521
1522 if (e)
1523 force_nonfallthru (e);
1524 }
1525
1526 /* Create the basic block note. */
1527 if (edge_in->dest != EXIT_BLOCK_PTR)
1528 before = BB_HEAD (edge_in->dest);
1529 else
1530 before = NULL_RTX;
1531
1532 /* If this is a fall through edge to the exit block, the blocks might be
1533 not adjacent, and the right place is after the source. */
1534 if ((edge_in->flags & EDGE_FALLTHRU) && edge_in->dest == EXIT_BLOCK_PTR)
1535 {
1536 before = NEXT_INSN (BB_END (edge_in->src));
1537 bb = create_basic_block (before, NULL, edge_in->src);
1538 BB_COPY_PARTITION (bb, edge_in->src);
1539 }
1540 else
1541 {
1542 bb = create_basic_block (before, NULL, edge_in->dest->prev_bb);
1543 /* ??? Why not edge_in->dest->prev_bb here? */
1544 BB_COPY_PARTITION (bb, edge_in->dest);
1545 }
1546
1547 make_single_succ_edge (bb, edge_in->dest, EDGE_FALLTHRU);
1548
1549 /* For non-fallthru edges, we must adjust the predecessor's
1550 jump instruction to target our new block. */
1551 if ((edge_in->flags & EDGE_FALLTHRU) == 0)
1552 {
1553 edge redirected = redirect_edge_and_branch (edge_in, bb);
1554 gcc_assert (redirected);
1555 }
1556 else
1557 {
1558 if (edge_in->src != ENTRY_BLOCK_PTR)
1559 {
1560 /* For asm goto even splitting of fallthru edge might
1561 need insn patching, as other labels might point to the
1562 old label. */
1563 rtx last = BB_END (edge_in->src);
1564 if (last
1565 && JUMP_P (last)
1566 && edge_in->dest != EXIT_BLOCK_PTR
1567 && extract_asm_operands (PATTERN (last)) != NULL_RTX
1568 && patch_jump_insn (last, before, bb))
1569 df_set_bb_dirty (edge_in->src);
1570 }
1571 redirect_edge_succ (edge_in, bb);
1572 }
1573
1574 return bb;
1575 }
1576
1577 /* Queue instructions for insertion on an edge between two basic blocks.
1578 The new instructions and basic blocks (if any) will not appear in the
1579 CFG until commit_edge_insertions is called. */
1580
1581 void
1582 insert_insn_on_edge (rtx pattern, edge e)
1583 {
1584 /* We cannot insert instructions on an abnormal critical edge.
1585 It will be easier to find the culprit if we die now. */
1586 gcc_assert (!((e->flags & EDGE_ABNORMAL) && EDGE_CRITICAL_P (e)));
1587
1588 if (e->insns.r == NULL_RTX)
1589 start_sequence ();
1590 else
1591 push_to_sequence (e->insns.r);
1592
1593 emit_insn (pattern);
1594
1595 e->insns.r = get_insns ();
1596 end_sequence ();
1597 }
1598
1599 /* Update the CFG for the instructions queued on edge E. */
1600
1601 void
1602 commit_one_edge_insertion (edge e)
1603 {
1604 rtx before = NULL_RTX, after = NULL_RTX, insns, tmp, last;
1605 basic_block bb;
1606
1607 /* Pull the insns off the edge now since the edge might go away. */
1608 insns = e->insns.r;
1609 e->insns.r = NULL_RTX;
1610
1611 /* Figure out where to put these insns. If the destination has
1612 one predecessor, insert there. Except for the exit block. */
1613 if (single_pred_p (e->dest) && e->dest != EXIT_BLOCK_PTR)
1614 {
1615 bb = e->dest;
1616
1617 /* Get the location correct wrt a code label, and "nice" wrt
1618 a basic block note, and before everything else. */
1619 tmp = BB_HEAD (bb);
1620 if (LABEL_P (tmp))
1621 tmp = NEXT_INSN (tmp);
1622 if (NOTE_INSN_BASIC_BLOCK_P (tmp))
1623 tmp = NEXT_INSN (tmp);
1624 if (tmp == BB_HEAD (bb))
1625 before = tmp;
1626 else if (tmp)
1627 after = PREV_INSN (tmp);
1628 else
1629 after = get_last_insn ();
1630 }
1631
1632 /* If the source has one successor and the edge is not abnormal,
1633 insert there. Except for the entry block. */
1634 else if ((e->flags & EDGE_ABNORMAL) == 0
1635 && single_succ_p (e->src)
1636 && e->src != ENTRY_BLOCK_PTR)
1637 {
1638 bb = e->src;
1639
1640 /* It is possible to have a non-simple jump here. Consider a target
1641 where some forms of unconditional jumps clobber a register. This
1642 happens on the fr30 for example.
1643
1644 We know this block has a single successor, so we can just emit
1645 the queued insns before the jump. */
1646 if (JUMP_P (BB_END (bb)))
1647 before = BB_END (bb);
1648 else
1649 {
1650 /* We'd better be fallthru, or we've lost track of what's what. */
1651 gcc_assert (e->flags & EDGE_FALLTHRU);
1652
1653 after = BB_END (bb);
1654 }
1655 }
1656
1657 /* Otherwise we must split the edge. */
1658 else
1659 {
1660 bb = split_edge (e);
1661 after = BB_END (bb);
1662
1663 if (flag_reorder_blocks_and_partition
1664 && targetm_common.have_named_sections
1665 && e->src != ENTRY_BLOCK_PTR
1666 && BB_PARTITION (e->src) == BB_COLD_PARTITION
1667 && !(e->flags & EDGE_CROSSING)
1668 && JUMP_P (after)
1669 && !any_condjump_p (after)
1670 && (single_succ_edge (bb)->flags & EDGE_CROSSING))
1671 add_reg_note (after, REG_CROSSING_JUMP, NULL_RTX);
1672 }
1673
1674 /* Now that we've found the spot, do the insertion. */
1675 if (before)
1676 {
1677 emit_insn_before_noloc (insns, before, bb);
1678 last = prev_nonnote_insn (before);
1679 }
1680 else
1681 last = emit_insn_after_noloc (insns, after, bb);
1682
1683 if (returnjump_p (last))
1684 {
1685 /* ??? Remove all outgoing edges from BB and add one for EXIT.
1686 This is not currently a problem because this only happens
1687 for the (single) epilogue, which already has a fallthru edge
1688 to EXIT. */
1689
1690 e = single_succ_edge (bb);
1691 gcc_assert (e->dest == EXIT_BLOCK_PTR
1692 && single_succ_p (bb) && (e->flags & EDGE_FALLTHRU));
1693
1694 e->flags &= ~EDGE_FALLTHRU;
1695 emit_barrier_after (last);
1696
1697 if (before)
1698 delete_insn (before);
1699 }
1700 else
1701 gcc_assert (!JUMP_P (last));
1702 }
1703
1704 /* Update the CFG for all queued instructions. */
1705
1706 void
1707 commit_edge_insertions (void)
1708 {
1709 basic_block bb;
1710
1711 #ifdef ENABLE_CHECKING
1712 verify_flow_info ();
1713 #endif
1714
1715 FOR_BB_BETWEEN (bb, ENTRY_BLOCK_PTR, EXIT_BLOCK_PTR, next_bb)
1716 {
1717 edge e;
1718 edge_iterator ei;
1719
1720 FOR_EACH_EDGE (e, ei, bb->succs)
1721 if (e->insns.r)
1722 commit_one_edge_insertion (e);
1723 }
1724 }
1725 \f
1726
1727 /* Print out RTL-specific basic block information (live information
1728 at start and end). */
1729
1730 static void
1731 rtl_dump_bb (basic_block bb, FILE *outf, int indent, int flags ATTRIBUTE_UNUSED)
1732 {
1733 rtx insn;
1734 rtx last;
1735 char *s_indent;
1736
1737 s_indent = (char *) alloca ((size_t) indent + 1);
1738 memset (s_indent, ' ', (size_t) indent);
1739 s_indent[indent] = '\0';
1740
1741 if (df)
1742 {
1743 df_dump_top (bb, outf);
1744 putc ('\n', outf);
1745 }
1746
1747 if (bb->index != ENTRY_BLOCK && bb->index != EXIT_BLOCK)
1748 for (insn = BB_HEAD (bb), last = NEXT_INSN (BB_END (bb)); insn != last;
1749 insn = NEXT_INSN (insn))
1750 print_rtl_single (outf, insn);
1751
1752 if (df)
1753 {
1754 df_dump_bottom (bb, outf);
1755 putc ('\n', outf);
1756 }
1757
1758 }
1759 \f
1760 /* Like print_rtl, but also print out live information for the start of each
1761 basic block. */
1762
1763 void
1764 print_rtl_with_bb (FILE *outf, const_rtx rtx_first)
1765 {
1766 const_rtx tmp_rtx;
1767 if (rtx_first == 0)
1768 fprintf (outf, "(nil)\n");
1769 else
1770 {
1771 enum bb_state { NOT_IN_BB, IN_ONE_BB, IN_MULTIPLE_BB };
1772 int max_uid = get_max_uid ();
1773 basic_block *start = XCNEWVEC (basic_block, max_uid);
1774 basic_block *end = XCNEWVEC (basic_block, max_uid);
1775 enum bb_state *in_bb_p = XCNEWVEC (enum bb_state, max_uid);
1776
1777 basic_block bb;
1778
1779 if (df)
1780 df_dump_start (outf);
1781
1782 FOR_EACH_BB_REVERSE (bb)
1783 {
1784 rtx x;
1785
1786 start[INSN_UID (BB_HEAD (bb))] = bb;
1787 end[INSN_UID (BB_END (bb))] = bb;
1788 for (x = BB_HEAD (bb); x != NULL_RTX; x = NEXT_INSN (x))
1789 {
1790 enum bb_state state = IN_MULTIPLE_BB;
1791
1792 if (in_bb_p[INSN_UID (x)] == NOT_IN_BB)
1793 state = IN_ONE_BB;
1794 in_bb_p[INSN_UID (x)] = state;
1795
1796 if (x == BB_END (bb))
1797 break;
1798 }
1799 }
1800
1801 for (tmp_rtx = rtx_first; NULL != tmp_rtx; tmp_rtx = NEXT_INSN (tmp_rtx))
1802 {
1803 int did_output;
1804
1805 bb = start[INSN_UID (tmp_rtx)];
1806 if (bb != NULL)
1807 dump_bb_info (bb, true, false, dump_flags, ";; ", outf);
1808
1809 if (in_bb_p[INSN_UID (tmp_rtx)] == NOT_IN_BB
1810 && !NOTE_P (tmp_rtx)
1811 && !BARRIER_P (tmp_rtx))
1812 fprintf (outf, ";; Insn is not within a basic block\n");
1813 else if (in_bb_p[INSN_UID (tmp_rtx)] == IN_MULTIPLE_BB)
1814 fprintf (outf, ";; Insn is in multiple basic blocks\n");
1815
1816 did_output = print_rtl_single (outf, tmp_rtx);
1817
1818 bb = end[INSN_UID (tmp_rtx)];
1819 if (bb != NULL)
1820 dump_bb_info (bb, false, true, dump_flags, ";; ", outf);
1821 if (did_output)
1822 putc ('\n', outf);
1823 }
1824
1825 free (start);
1826 free (end);
1827 free (in_bb_p);
1828 }
1829
1830 if (crtl->epilogue_delay_list != 0)
1831 {
1832 fprintf (outf, "\n;; Insns in epilogue delay list:\n\n");
1833 for (tmp_rtx = crtl->epilogue_delay_list; tmp_rtx != 0;
1834 tmp_rtx = XEXP (tmp_rtx, 1))
1835 print_rtl_single (outf, XEXP (tmp_rtx, 0));
1836 }
1837 }
1838 \f
1839 void
1840 update_br_prob_note (basic_block bb)
1841 {
1842 rtx note;
1843 if (!JUMP_P (BB_END (bb)))
1844 return;
1845 note = find_reg_note (BB_END (bb), REG_BR_PROB, NULL_RTX);
1846 if (!note || INTVAL (XEXP (note, 0)) == BRANCH_EDGE (bb)->probability)
1847 return;
1848 XEXP (note, 0) = GEN_INT (BRANCH_EDGE (bb)->probability);
1849 }
1850
1851 /* Get the last insn associated with block BB (that includes barriers and
1852 tablejumps after BB). */
1853 rtx
1854 get_last_bb_insn (basic_block bb)
1855 {
1856 rtx tmp;
1857 rtx end = BB_END (bb);
1858
1859 /* Include any jump table following the basic block. */
1860 if (tablejump_p (end, NULL, &tmp))
1861 end = tmp;
1862
1863 /* Include any barriers that may follow the basic block. */
1864 tmp = next_nonnote_insn_bb (end);
1865 while (tmp && BARRIER_P (tmp))
1866 {
1867 end = tmp;
1868 tmp = next_nonnote_insn_bb (end);
1869 }
1870
1871 return end;
1872 }
1873 \f
1874 /* Verify the CFG and RTL consistency common for both underlying RTL and
1875 cfglayout RTL.
1876
1877 Currently it does following checks:
1878
1879 - overlapping of basic blocks
1880 - insns with wrong BLOCK_FOR_INSN pointers
1881 - headers of basic blocks (the NOTE_INSN_BASIC_BLOCK note)
1882 - tails of basic blocks (ensure that boundary is necessary)
1883 - scans body of the basic block for JUMP_INSN, CODE_LABEL
1884 and NOTE_INSN_BASIC_BLOCK
1885 - verify that no fall_thru edge crosses hot/cold partition boundaries
1886 - verify that there are no pending RTL branch predictions
1887
1888 In future it can be extended check a lot of other stuff as well
1889 (reachability of basic blocks, life information, etc. etc.). */
1890
1891 static int
1892 rtl_verify_flow_info_1 (void)
1893 {
1894 rtx x;
1895 int err = 0;
1896 basic_block bb;
1897
1898 /* Check the general integrity of the basic blocks. */
1899 FOR_EACH_BB_REVERSE (bb)
1900 {
1901 rtx insn;
1902
1903 if (!(bb->flags & BB_RTL))
1904 {
1905 error ("BB_RTL flag not set for block %d", bb->index);
1906 err = 1;
1907 }
1908
1909 FOR_BB_INSNS (bb, insn)
1910 if (BLOCK_FOR_INSN (insn) != bb)
1911 {
1912 error ("insn %d basic block pointer is %d, should be %d",
1913 INSN_UID (insn),
1914 BLOCK_FOR_INSN (insn) ? BLOCK_FOR_INSN (insn)->index : 0,
1915 bb->index);
1916 err = 1;
1917 }
1918
1919 for (insn = BB_HEADER (bb); insn; insn = NEXT_INSN (insn))
1920 if (!BARRIER_P (insn)
1921 && BLOCK_FOR_INSN (insn) != NULL)
1922 {
1923 error ("insn %d in header of bb %d has non-NULL basic block",
1924 INSN_UID (insn), bb->index);
1925 err = 1;
1926 }
1927 for (insn = BB_FOOTER (bb); insn; insn = NEXT_INSN (insn))
1928 if (!BARRIER_P (insn)
1929 && BLOCK_FOR_INSN (insn) != NULL)
1930 {
1931 error ("insn %d in footer of bb %d has non-NULL basic block",
1932 INSN_UID (insn), bb->index);
1933 err = 1;
1934 }
1935 }
1936
1937 /* Now check the basic blocks (boundaries etc.) */
1938 FOR_EACH_BB_REVERSE (bb)
1939 {
1940 int n_fallthru = 0, n_eh = 0, n_call = 0, n_abnormal = 0, n_branch = 0;
1941 edge e, fallthru = NULL;
1942 rtx note;
1943 edge_iterator ei;
1944
1945 if (JUMP_P (BB_END (bb))
1946 && (note = find_reg_note (BB_END (bb), REG_BR_PROB, NULL_RTX))
1947 && EDGE_COUNT (bb->succs) >= 2
1948 && any_condjump_p (BB_END (bb)))
1949 {
1950 if (INTVAL (XEXP (note, 0)) != BRANCH_EDGE (bb)->probability
1951 && profile_status != PROFILE_ABSENT)
1952 {
1953 error ("verify_flow_info: REG_BR_PROB does not match cfg %wi %i",
1954 INTVAL (XEXP (note, 0)), BRANCH_EDGE (bb)->probability);
1955 err = 1;
1956 }
1957 }
1958 FOR_EACH_EDGE (e, ei, bb->succs)
1959 {
1960 bool is_crossing;
1961
1962 if (e->flags & EDGE_FALLTHRU)
1963 n_fallthru++, fallthru = e;
1964
1965 is_crossing = (BB_PARTITION (e->src) != BB_PARTITION (e->dest)
1966 && e->src != ENTRY_BLOCK_PTR
1967 && e->dest != EXIT_BLOCK_PTR);
1968 if (e->flags & EDGE_CROSSING)
1969 {
1970 if (!is_crossing)
1971 {
1972 error ("EDGE_CROSSING incorrectly set across same section");
1973 err = 1;
1974 }
1975 if (e->flags & EDGE_FALLTHRU)
1976 {
1977 error ("fallthru edge crosses section boundary (bb %i)",
1978 e->src->index);
1979 err = 1;
1980 }
1981 if (e->flags & EDGE_EH)
1982 {
1983 error ("EH edge crosses section boundary (bb %i)",
1984 e->src->index);
1985 err = 1;
1986 }
1987 }
1988 else if (is_crossing)
1989 {
1990 error ("EDGE_CROSSING missing across section boundary");
1991 err = 1;
1992 }
1993
1994 if ((e->flags & ~(EDGE_DFS_BACK
1995 | EDGE_CAN_FALLTHRU
1996 | EDGE_IRREDUCIBLE_LOOP
1997 | EDGE_LOOP_EXIT
1998 | EDGE_CROSSING
1999 | EDGE_PRESERVE)) == 0)
2000 n_branch++;
2001
2002 if (e->flags & EDGE_ABNORMAL_CALL)
2003 n_call++;
2004
2005 if (e->flags & EDGE_EH)
2006 n_eh++;
2007 else if (e->flags & EDGE_ABNORMAL)
2008 n_abnormal++;
2009 }
2010
2011 if (n_eh && !find_reg_note (BB_END (bb), REG_EH_REGION, NULL_RTX))
2012 {
2013 error ("missing REG_EH_REGION note in the end of bb %i", bb->index);
2014 err = 1;
2015 }
2016 if (n_eh > 1)
2017 {
2018 error ("too many eh edges %i", bb->index);
2019 err = 1;
2020 }
2021 if (n_branch
2022 && (!JUMP_P (BB_END (bb))
2023 || (n_branch > 1 && (any_uncondjump_p (BB_END (bb))
2024 || any_condjump_p (BB_END (bb))))))
2025 {
2026 error ("too many outgoing branch edges from bb %i", bb->index);
2027 err = 1;
2028 }
2029 if (n_fallthru && any_uncondjump_p (BB_END (bb)))
2030 {
2031 error ("fallthru edge after unconditional jump %i", bb->index);
2032 err = 1;
2033 }
2034 if (n_branch != 1 && any_uncondjump_p (BB_END (bb)))
2035 {
2036 error ("wrong number of branch edges after unconditional jump %i",
2037 bb->index);
2038 err = 1;
2039 }
2040 if (n_branch != 1 && any_condjump_p (BB_END (bb))
2041 && JUMP_LABEL (BB_END (bb)) != BB_HEAD (fallthru->dest))
2042 {
2043 error ("wrong amount of branch edges after conditional jump %i",
2044 bb->index);
2045 err = 1;
2046 }
2047 if (n_call && !CALL_P (BB_END (bb)))
2048 {
2049 error ("call edges for non-call insn in bb %i", bb->index);
2050 err = 1;
2051 }
2052 if (n_abnormal
2053 && (!CALL_P (BB_END (bb)) && n_call != n_abnormal)
2054 && (!JUMP_P (BB_END (bb))
2055 || any_condjump_p (BB_END (bb))
2056 || any_uncondjump_p (BB_END (bb))))
2057 {
2058 error ("abnormal edges for no purpose in bb %i", bb->index);
2059 err = 1;
2060 }
2061
2062 for (x = BB_HEAD (bb); x != NEXT_INSN (BB_END (bb)); x = NEXT_INSN (x))
2063 /* We may have a barrier inside a basic block before dead code
2064 elimination. There is no BLOCK_FOR_INSN field in a barrier. */
2065 if (!BARRIER_P (x) && BLOCK_FOR_INSN (x) != bb)
2066 {
2067 debug_rtx (x);
2068 if (! BLOCK_FOR_INSN (x))
2069 error
2070 ("insn %d inside basic block %d but block_for_insn is NULL",
2071 INSN_UID (x), bb->index);
2072 else
2073 error
2074 ("insn %d inside basic block %d but block_for_insn is %i",
2075 INSN_UID (x), bb->index, BLOCK_FOR_INSN (x)->index);
2076
2077 err = 1;
2078 }
2079
2080 /* OK pointers are correct. Now check the header of basic
2081 block. It ought to contain optional CODE_LABEL followed
2082 by NOTE_BASIC_BLOCK. */
2083 x = BB_HEAD (bb);
2084 if (LABEL_P (x))
2085 {
2086 if (BB_END (bb) == x)
2087 {
2088 error ("NOTE_INSN_BASIC_BLOCK is missing for block %d",
2089 bb->index);
2090 err = 1;
2091 }
2092
2093 x = NEXT_INSN (x);
2094 }
2095
2096 if (!NOTE_INSN_BASIC_BLOCK_P (x) || NOTE_BASIC_BLOCK (x) != bb)
2097 {
2098 error ("NOTE_INSN_BASIC_BLOCK is missing for block %d",
2099 bb->index);
2100 err = 1;
2101 }
2102
2103 if (BB_END (bb) == x)
2104 /* Do checks for empty blocks here. */
2105 ;
2106 else
2107 for (x = NEXT_INSN (x); x; x = NEXT_INSN (x))
2108 {
2109 if (NOTE_INSN_BASIC_BLOCK_P (x))
2110 {
2111 error ("NOTE_INSN_BASIC_BLOCK %d in middle of basic block %d",
2112 INSN_UID (x), bb->index);
2113 err = 1;
2114 }
2115
2116 if (x == BB_END (bb))
2117 break;
2118
2119 if (control_flow_insn_p (x))
2120 {
2121 error ("in basic block %d:", bb->index);
2122 fatal_insn ("flow control insn inside a basic block", x);
2123 }
2124 }
2125 }
2126
2127 /* Clean up. */
2128 return err;
2129 }
2130
2131 /* Verify the CFG and RTL consistency common for both underlying RTL and
2132 cfglayout RTL.
2133
2134 Currently it does following checks:
2135 - all checks of rtl_verify_flow_info_1
2136 - test head/end pointers
2137 - check that all insns are in the basic blocks
2138 (except the switch handling code, barriers and notes)
2139 - check that all returns are followed by barriers
2140 - check that all fallthru edge points to the adjacent blocks. */
2141
2142 static int
2143 rtl_verify_flow_info (void)
2144 {
2145 basic_block bb;
2146 int err = rtl_verify_flow_info_1 ();
2147 rtx x;
2148 rtx last_head = get_last_insn ();
2149 basic_block *bb_info;
2150 int num_bb_notes;
2151 const rtx rtx_first = get_insns ();
2152 basic_block last_bb_seen = ENTRY_BLOCK_PTR, curr_bb = NULL;
2153 const int max_uid = get_max_uid ();
2154
2155 bb_info = XCNEWVEC (basic_block, max_uid);
2156
2157 FOR_EACH_BB_REVERSE (bb)
2158 {
2159 edge e;
2160 rtx head = BB_HEAD (bb);
2161 rtx end = BB_END (bb);
2162
2163 for (x = last_head; x != NULL_RTX; x = PREV_INSN (x))
2164 {
2165 /* Verify the end of the basic block is in the INSN chain. */
2166 if (x == end)
2167 break;
2168
2169 /* And that the code outside of basic blocks has NULL bb field. */
2170 if (!BARRIER_P (x)
2171 && BLOCK_FOR_INSN (x) != NULL)
2172 {
2173 error ("insn %d outside of basic blocks has non-NULL bb field",
2174 INSN_UID (x));
2175 err = 1;
2176 }
2177 }
2178
2179 if (!x)
2180 {
2181 error ("end insn %d for block %d not found in the insn stream",
2182 INSN_UID (end), bb->index);
2183 err = 1;
2184 }
2185
2186 /* Work backwards from the end to the head of the basic block
2187 to verify the head is in the RTL chain. */
2188 for (; x != NULL_RTX; x = PREV_INSN (x))
2189 {
2190 /* While walking over the insn chain, verify insns appear
2191 in only one basic block. */
2192 if (bb_info[INSN_UID (x)] != NULL)
2193 {
2194 error ("insn %d is in multiple basic blocks (%d and %d)",
2195 INSN_UID (x), bb->index, bb_info[INSN_UID (x)]->index);
2196 err = 1;
2197 }
2198
2199 bb_info[INSN_UID (x)] = bb;
2200
2201 if (x == head)
2202 break;
2203 }
2204 if (!x)
2205 {
2206 error ("head insn %d for block %d not found in the insn stream",
2207 INSN_UID (head), bb->index);
2208 err = 1;
2209 }
2210
2211 last_head = PREV_INSN (x);
2212
2213 e = find_fallthru_edge (bb->succs);
2214 if (!e)
2215 {
2216 rtx insn;
2217
2218 /* Ensure existence of barrier in BB with no fallthru edges. */
2219 for (insn = NEXT_INSN (BB_END (bb)); ; insn = NEXT_INSN (insn))
2220 {
2221 if (!insn || NOTE_INSN_BASIC_BLOCK_P (insn))
2222 {
2223 error ("missing barrier after block %i", bb->index);
2224 err = 1;
2225 break;
2226 }
2227 if (BARRIER_P (insn))
2228 break;
2229 }
2230 }
2231 else if (e->src != ENTRY_BLOCK_PTR
2232 && e->dest != EXIT_BLOCK_PTR)
2233 {
2234 rtx insn;
2235
2236 if (e->src->next_bb != e->dest)
2237 {
2238 error
2239 ("verify_flow_info: Incorrect blocks for fallthru %i->%i",
2240 e->src->index, e->dest->index);
2241 err = 1;
2242 }
2243 else
2244 for (insn = NEXT_INSN (BB_END (e->src)); insn != BB_HEAD (e->dest);
2245 insn = NEXT_INSN (insn))
2246 if (BARRIER_P (insn) || INSN_P (insn))
2247 {
2248 error ("verify_flow_info: Incorrect fallthru %i->%i",
2249 e->src->index, e->dest->index);
2250 fatal_insn ("wrong insn in the fallthru edge", insn);
2251 err = 1;
2252 }
2253 }
2254 }
2255
2256 for (x = last_head; x != NULL_RTX; x = PREV_INSN (x))
2257 {
2258 /* Check that the code before the first basic block has NULL
2259 bb field. */
2260 if (!BARRIER_P (x)
2261 && BLOCK_FOR_INSN (x) != NULL)
2262 {
2263 error ("insn %d outside of basic blocks has non-NULL bb field",
2264 INSN_UID (x));
2265 err = 1;
2266 }
2267 }
2268 free (bb_info);
2269
2270 num_bb_notes = 0;
2271 last_bb_seen = ENTRY_BLOCK_PTR;
2272
2273 for (x = rtx_first; x; x = NEXT_INSN (x))
2274 {
2275 if (NOTE_INSN_BASIC_BLOCK_P (x))
2276 {
2277 bb = NOTE_BASIC_BLOCK (x);
2278
2279 num_bb_notes++;
2280 if (bb != last_bb_seen->next_bb)
2281 internal_error ("basic blocks not laid down consecutively");
2282
2283 curr_bb = last_bb_seen = bb;
2284 }
2285
2286 if (!curr_bb)
2287 {
2288 switch (GET_CODE (x))
2289 {
2290 case BARRIER:
2291 case NOTE:
2292 break;
2293
2294 case CODE_LABEL:
2295 /* An addr_vec is placed outside any basic block. */
2296 if (NEXT_INSN (x)
2297 && JUMP_TABLE_DATA_P (NEXT_INSN (x)))
2298 x = NEXT_INSN (x);
2299
2300 /* But in any case, non-deletable labels can appear anywhere. */
2301 break;
2302
2303 default:
2304 fatal_insn ("insn outside basic block", x);
2305 }
2306 }
2307
2308 if (JUMP_P (x)
2309 && returnjump_p (x) && ! condjump_p (x)
2310 && ! (next_nonnote_insn (x) && BARRIER_P (next_nonnote_insn (x))))
2311 fatal_insn ("return not followed by barrier", x);
2312 if (curr_bb && x == BB_END (curr_bb))
2313 curr_bb = NULL;
2314 }
2315
2316 if (num_bb_notes != n_basic_blocks - NUM_FIXED_BLOCKS)
2317 internal_error
2318 ("number of bb notes in insn chain (%d) != n_basic_blocks (%d)",
2319 num_bb_notes, n_basic_blocks);
2320
2321 return err;
2322 }
2323 \f
2324 /* Assume that the preceding pass has possibly eliminated jump instructions
2325 or converted the unconditional jumps. Eliminate the edges from CFG.
2326 Return true if any edges are eliminated. */
2327
2328 bool
2329 purge_dead_edges (basic_block bb)
2330 {
2331 edge e;
2332 rtx insn = BB_END (bb), note;
2333 bool purged = false;
2334 bool found;
2335 edge_iterator ei;
2336
2337 if (DEBUG_INSN_P (insn) && insn != BB_HEAD (bb))
2338 do
2339 insn = PREV_INSN (insn);
2340 while ((DEBUG_INSN_P (insn) || NOTE_P (insn)) && insn != BB_HEAD (bb));
2341
2342 /* If this instruction cannot trap, remove REG_EH_REGION notes. */
2343 if (NONJUMP_INSN_P (insn)
2344 && (note = find_reg_note (insn, REG_EH_REGION, NULL)))
2345 {
2346 rtx eqnote;
2347
2348 if (! may_trap_p (PATTERN (insn))
2349 || ((eqnote = find_reg_equal_equiv_note (insn))
2350 && ! may_trap_p (XEXP (eqnote, 0))))
2351 remove_note (insn, note);
2352 }
2353
2354 /* Cleanup abnormal edges caused by exceptions or non-local gotos. */
2355 for (ei = ei_start (bb->succs); (e = ei_safe_edge (ei)); )
2356 {
2357 bool remove = false;
2358
2359 /* There are three types of edges we need to handle correctly here: EH
2360 edges, abnormal call EH edges, and abnormal call non-EH edges. The
2361 latter can appear when nonlocal gotos are used. */
2362 if (e->flags & EDGE_ABNORMAL_CALL)
2363 {
2364 if (!CALL_P (insn))
2365 remove = true;
2366 else if (can_nonlocal_goto (insn))
2367 ;
2368 else if ((e->flags & EDGE_EH) && can_throw_internal (insn))
2369 ;
2370 else if (flag_tm && find_reg_note (insn, REG_TM, NULL))
2371 ;
2372 else
2373 remove = true;
2374 }
2375 else if (e->flags & EDGE_EH)
2376 remove = !can_throw_internal (insn);
2377
2378 if (remove)
2379 {
2380 remove_edge (e);
2381 df_set_bb_dirty (bb);
2382 purged = true;
2383 }
2384 else
2385 ei_next (&ei);
2386 }
2387
2388 if (JUMP_P (insn))
2389 {
2390 rtx note;
2391 edge b,f;
2392 edge_iterator ei;
2393
2394 /* We do care only about conditional jumps and simplejumps. */
2395 if (!any_condjump_p (insn)
2396 && !returnjump_p (insn)
2397 && !simplejump_p (insn))
2398 return purged;
2399
2400 /* Branch probability/prediction notes are defined only for
2401 condjumps. We've possibly turned condjump into simplejump. */
2402 if (simplejump_p (insn))
2403 {
2404 note = find_reg_note (insn, REG_BR_PROB, NULL);
2405 if (note)
2406 remove_note (insn, note);
2407 while ((note = find_reg_note (insn, REG_BR_PRED, NULL)))
2408 remove_note (insn, note);
2409 }
2410
2411 for (ei = ei_start (bb->succs); (e = ei_safe_edge (ei)); )
2412 {
2413 /* Avoid abnormal flags to leak from computed jumps turned
2414 into simplejumps. */
2415
2416 e->flags &= ~EDGE_ABNORMAL;
2417
2418 /* See if this edge is one we should keep. */
2419 if ((e->flags & EDGE_FALLTHRU) && any_condjump_p (insn))
2420 /* A conditional jump can fall through into the next
2421 block, so we should keep the edge. */
2422 {
2423 ei_next (&ei);
2424 continue;
2425 }
2426 else if (e->dest != EXIT_BLOCK_PTR
2427 && BB_HEAD (e->dest) == JUMP_LABEL (insn))
2428 /* If the destination block is the target of the jump,
2429 keep the edge. */
2430 {
2431 ei_next (&ei);
2432 continue;
2433 }
2434 else if (e->dest == EXIT_BLOCK_PTR && returnjump_p (insn))
2435 /* If the destination block is the exit block, and this
2436 instruction is a return, then keep the edge. */
2437 {
2438 ei_next (&ei);
2439 continue;
2440 }
2441 else if ((e->flags & EDGE_EH) && can_throw_internal (insn))
2442 /* Keep the edges that correspond to exceptions thrown by
2443 this instruction and rematerialize the EDGE_ABNORMAL
2444 flag we just cleared above. */
2445 {
2446 e->flags |= EDGE_ABNORMAL;
2447 ei_next (&ei);
2448 continue;
2449 }
2450
2451 /* We do not need this edge. */
2452 df_set_bb_dirty (bb);
2453 purged = true;
2454 remove_edge (e);
2455 }
2456
2457 if (EDGE_COUNT (bb->succs) == 0 || !purged)
2458 return purged;
2459
2460 if (dump_file)
2461 fprintf (dump_file, "Purged edges from bb %i\n", bb->index);
2462
2463 if (!optimize)
2464 return purged;
2465
2466 /* Redistribute probabilities. */
2467 if (single_succ_p (bb))
2468 {
2469 single_succ_edge (bb)->probability = REG_BR_PROB_BASE;
2470 single_succ_edge (bb)->count = bb->count;
2471 }
2472 else
2473 {
2474 note = find_reg_note (insn, REG_BR_PROB, NULL);
2475 if (!note)
2476 return purged;
2477
2478 b = BRANCH_EDGE (bb);
2479 f = FALLTHRU_EDGE (bb);
2480 b->probability = INTVAL (XEXP (note, 0));
2481 f->probability = REG_BR_PROB_BASE - b->probability;
2482 b->count = bb->count * b->probability / REG_BR_PROB_BASE;
2483 f->count = bb->count * f->probability / REG_BR_PROB_BASE;
2484 }
2485
2486 return purged;
2487 }
2488 else if (CALL_P (insn) && SIBLING_CALL_P (insn))
2489 {
2490 /* First, there should not be any EH or ABCALL edges resulting
2491 from non-local gotos and the like. If there were, we shouldn't
2492 have created the sibcall in the first place. Second, there
2493 should of course never have been a fallthru edge. */
2494 gcc_assert (single_succ_p (bb));
2495 gcc_assert (single_succ_edge (bb)->flags
2496 == (EDGE_SIBCALL | EDGE_ABNORMAL));
2497
2498 return 0;
2499 }
2500
2501 /* If we don't see a jump insn, we don't know exactly why the block would
2502 have been broken at this point. Look for a simple, non-fallthru edge,
2503 as these are only created by conditional branches. If we find such an
2504 edge we know that there used to be a jump here and can then safely
2505 remove all non-fallthru edges. */
2506 found = false;
2507 FOR_EACH_EDGE (e, ei, bb->succs)
2508 if (! (e->flags & (EDGE_COMPLEX | EDGE_FALLTHRU)))
2509 {
2510 found = true;
2511 break;
2512 }
2513
2514 if (!found)
2515 return purged;
2516
2517 /* Remove all but the fake and fallthru edges. The fake edge may be
2518 the only successor for this block in the case of noreturn
2519 calls. */
2520 for (ei = ei_start (bb->succs); (e = ei_safe_edge (ei)); )
2521 {
2522 if (!(e->flags & (EDGE_FALLTHRU | EDGE_FAKE)))
2523 {
2524 df_set_bb_dirty (bb);
2525 remove_edge (e);
2526 purged = true;
2527 }
2528 else
2529 ei_next (&ei);
2530 }
2531
2532 gcc_assert (single_succ_p (bb));
2533
2534 single_succ_edge (bb)->probability = REG_BR_PROB_BASE;
2535 single_succ_edge (bb)->count = bb->count;
2536
2537 if (dump_file)
2538 fprintf (dump_file, "Purged non-fallthru edges from bb %i\n",
2539 bb->index);
2540 return purged;
2541 }
2542
2543 /* Search all basic blocks for potentially dead edges and purge them. Return
2544 true if some edge has been eliminated. */
2545
2546 bool
2547 purge_all_dead_edges (void)
2548 {
2549 int purged = false;
2550 basic_block bb;
2551
2552 FOR_EACH_BB (bb)
2553 {
2554 bool purged_here = purge_dead_edges (bb);
2555
2556 purged |= purged_here;
2557 }
2558
2559 return purged;
2560 }
2561
2562 /* This is used by a few passes that emit some instructions after abnormal
2563 calls, moving the basic block's end, while they in fact do want to emit
2564 them on the fallthru edge. Look for abnormal call edges, find backward
2565 the call in the block and insert the instructions on the edge instead.
2566
2567 Similarly, handle instructions throwing exceptions internally.
2568
2569 Return true when instructions have been found and inserted on edges. */
2570
2571 bool
2572 fixup_abnormal_edges (void)
2573 {
2574 bool inserted = false;
2575 basic_block bb;
2576
2577 FOR_EACH_BB (bb)
2578 {
2579 edge e;
2580 edge_iterator ei;
2581
2582 /* Look for cases we are interested in - calls or instructions causing
2583 exceptions. */
2584 FOR_EACH_EDGE (e, ei, bb->succs)
2585 if ((e->flags & EDGE_ABNORMAL_CALL)
2586 || ((e->flags & (EDGE_ABNORMAL | EDGE_EH))
2587 == (EDGE_ABNORMAL | EDGE_EH)))
2588 break;
2589
2590 if (e && !CALL_P (BB_END (bb)) && !can_throw_internal (BB_END (bb)))
2591 {
2592 rtx insn;
2593
2594 /* Get past the new insns generated. Allow notes, as the insns
2595 may be already deleted. */
2596 insn = BB_END (bb);
2597 while ((NONJUMP_INSN_P (insn) || NOTE_P (insn))
2598 && !can_throw_internal (insn)
2599 && insn != BB_HEAD (bb))
2600 insn = PREV_INSN (insn);
2601
2602 if (CALL_P (insn) || can_throw_internal (insn))
2603 {
2604 rtx stop, next;
2605
2606 e = find_fallthru_edge (bb->succs);
2607
2608 stop = NEXT_INSN (BB_END (bb));
2609 BB_END (bb) = insn;
2610
2611 for (insn = NEXT_INSN (insn); insn != stop; insn = next)
2612 {
2613 next = NEXT_INSN (insn);
2614 if (INSN_P (insn))
2615 {
2616 delete_insn (insn);
2617
2618 /* Sometimes there's still the return value USE.
2619 If it's placed after a trapping call (i.e. that
2620 call is the last insn anyway), we have no fallthru
2621 edge. Simply delete this use and don't try to insert
2622 on the non-existent edge. */
2623 if (GET_CODE (PATTERN (insn)) != USE)
2624 {
2625 /* We're not deleting it, we're moving it. */
2626 INSN_DELETED_P (insn) = 0;
2627 PREV_INSN (insn) = NULL_RTX;
2628 NEXT_INSN (insn) = NULL_RTX;
2629
2630 insert_insn_on_edge (insn, e);
2631 inserted = true;
2632 }
2633 }
2634 else if (!BARRIER_P (insn))
2635 set_block_for_insn (insn, NULL);
2636 }
2637 }
2638
2639 /* It may be that we don't find any trapping insn. In this
2640 case we discovered quite late that the insn that had been
2641 marked as can_throw_internal in fact couldn't trap at all.
2642 So we should in fact delete the EH edges out of the block. */
2643 else
2644 purge_dead_edges (bb);
2645 }
2646 }
2647
2648 return inserted;
2649 }
2650
2651 /* Same as split_block but update cfg_layout structures. */
2652
2653 static basic_block
2654 cfg_layout_split_block (basic_block bb, void *insnp)
2655 {
2656 rtx insn = (rtx) insnp;
2657 basic_block new_bb = rtl_split_block (bb, insn);
2658
2659 BB_FOOTER (new_bb) = BB_FOOTER (bb);
2660 BB_FOOTER (bb) = NULL;
2661
2662 return new_bb;
2663 }
2664
2665 /* Redirect Edge to DEST. */
2666 static edge
2667 cfg_layout_redirect_edge_and_branch (edge e, basic_block dest)
2668 {
2669 basic_block src = e->src;
2670 edge ret;
2671
2672 if (e->flags & (EDGE_ABNORMAL_CALL | EDGE_EH))
2673 return NULL;
2674
2675 if (e->dest == dest)
2676 return e;
2677
2678 if (e->src != ENTRY_BLOCK_PTR
2679 && (ret = try_redirect_by_replacing_jump (e, dest, true)))
2680 {
2681 df_set_bb_dirty (src);
2682 return ret;
2683 }
2684
2685 if (e->src == ENTRY_BLOCK_PTR
2686 && (e->flags & EDGE_FALLTHRU) && !(e->flags & EDGE_COMPLEX))
2687 {
2688 if (dump_file)
2689 fprintf (dump_file, "Redirecting entry edge from bb %i to %i\n",
2690 e->src->index, dest->index);
2691
2692 df_set_bb_dirty (e->src);
2693 redirect_edge_succ (e, dest);
2694 return e;
2695 }
2696
2697 /* Redirect_edge_and_branch may decide to turn branch into fallthru edge
2698 in the case the basic block appears to be in sequence. Avoid this
2699 transformation. */
2700
2701 if (e->flags & EDGE_FALLTHRU)
2702 {
2703 /* Redirect any branch edges unified with the fallthru one. */
2704 if (JUMP_P (BB_END (src))
2705 && label_is_jump_target_p (BB_HEAD (e->dest),
2706 BB_END (src)))
2707 {
2708 edge redirected;
2709
2710 if (dump_file)
2711 fprintf (dump_file, "Fallthru edge unified with branch "
2712 "%i->%i redirected to %i\n",
2713 e->src->index, e->dest->index, dest->index);
2714 e->flags &= ~EDGE_FALLTHRU;
2715 redirected = redirect_branch_edge (e, dest);
2716 gcc_assert (redirected);
2717 redirected->flags |= EDGE_FALLTHRU;
2718 df_set_bb_dirty (redirected->src);
2719 return redirected;
2720 }
2721 /* In case we are redirecting fallthru edge to the branch edge
2722 of conditional jump, remove it. */
2723 if (EDGE_COUNT (src->succs) == 2)
2724 {
2725 /* Find the edge that is different from E. */
2726 edge s = EDGE_SUCC (src, EDGE_SUCC (src, 0) == e);
2727
2728 if (s->dest == dest
2729 && any_condjump_p (BB_END (src))
2730 && onlyjump_p (BB_END (src)))
2731 delete_insn (BB_END (src));
2732 }
2733 if (dump_file)
2734 fprintf (dump_file, "Redirecting fallthru edge %i->%i to %i\n",
2735 e->src->index, e->dest->index, dest->index);
2736 ret = redirect_edge_succ_nodup (e, dest);
2737 }
2738 else
2739 ret = redirect_branch_edge (e, dest);
2740
2741 /* We don't want simplejumps in the insn stream during cfglayout. */
2742 gcc_assert (!simplejump_p (BB_END (src)));
2743
2744 df_set_bb_dirty (src);
2745 return ret;
2746 }
2747
2748 /* Simple wrapper as we always can redirect fallthru edges. */
2749 static basic_block
2750 cfg_layout_redirect_edge_and_branch_force (edge e, basic_block dest)
2751 {
2752 edge redirected = cfg_layout_redirect_edge_and_branch (e, dest);
2753
2754 gcc_assert (redirected);
2755 return NULL;
2756 }
2757
2758 /* Same as delete_basic_block but update cfg_layout structures. */
2759
2760 static void
2761 cfg_layout_delete_block (basic_block bb)
2762 {
2763 rtx insn, next, prev = PREV_INSN (BB_HEAD (bb)), *to, remaints;
2764
2765 if (BB_HEADER (bb))
2766 {
2767 next = BB_HEAD (bb);
2768 if (prev)
2769 NEXT_INSN (prev) = BB_HEADER (bb);
2770 else
2771 set_first_insn (BB_HEADER (bb));
2772 PREV_INSN (BB_HEADER (bb)) = prev;
2773 insn = BB_HEADER (bb);
2774 while (NEXT_INSN (insn))
2775 insn = NEXT_INSN (insn);
2776 NEXT_INSN (insn) = next;
2777 PREV_INSN (next) = insn;
2778 }
2779 next = NEXT_INSN (BB_END (bb));
2780 if (BB_FOOTER (bb))
2781 {
2782 insn = BB_FOOTER (bb);
2783 while (insn)
2784 {
2785 if (BARRIER_P (insn))
2786 {
2787 if (PREV_INSN (insn))
2788 NEXT_INSN (PREV_INSN (insn)) = NEXT_INSN (insn);
2789 else
2790 BB_FOOTER (bb) = NEXT_INSN (insn);
2791 if (NEXT_INSN (insn))
2792 PREV_INSN (NEXT_INSN (insn)) = PREV_INSN (insn);
2793 }
2794 if (LABEL_P (insn))
2795 break;
2796 insn = NEXT_INSN (insn);
2797 }
2798 if (BB_FOOTER (bb))
2799 {
2800 insn = BB_END (bb);
2801 NEXT_INSN (insn) = BB_FOOTER (bb);
2802 PREV_INSN (BB_FOOTER (bb)) = insn;
2803 while (NEXT_INSN (insn))
2804 insn = NEXT_INSN (insn);
2805 NEXT_INSN (insn) = next;
2806 if (next)
2807 PREV_INSN (next) = insn;
2808 else
2809 set_last_insn (insn);
2810 }
2811 }
2812 if (bb->next_bb != EXIT_BLOCK_PTR)
2813 to = &BB_HEADER (bb->next_bb);
2814 else
2815 to = &cfg_layout_function_footer;
2816
2817 rtl_delete_block (bb);
2818
2819 if (prev)
2820 prev = NEXT_INSN (prev);
2821 else
2822 prev = get_insns ();
2823 if (next)
2824 next = PREV_INSN (next);
2825 else
2826 next = get_last_insn ();
2827
2828 if (next && NEXT_INSN (next) != prev)
2829 {
2830 remaints = unlink_insn_chain (prev, next);
2831 insn = remaints;
2832 while (NEXT_INSN (insn))
2833 insn = NEXT_INSN (insn);
2834 NEXT_INSN (insn) = *to;
2835 if (*to)
2836 PREV_INSN (*to) = insn;
2837 *to = remaints;
2838 }
2839 }
2840
2841 /* Return true when blocks A and B can be safely merged. */
2842
2843 static bool
2844 cfg_layout_can_merge_blocks_p (basic_block a, basic_block b)
2845 {
2846 /* If we are partitioning hot/cold basic blocks, we don't want to
2847 mess up unconditional or indirect jumps that cross between hot
2848 and cold sections.
2849
2850 Basic block partitioning may result in some jumps that appear to
2851 be optimizable (or blocks that appear to be mergeable), but which really
2852 must be left untouched (they are required to make it safely across
2853 partition boundaries). See the comments at the top of
2854 bb-reorder.c:partition_hot_cold_basic_blocks for complete details. */
2855
2856 if (BB_PARTITION (a) != BB_PARTITION (b))
2857 return false;
2858
2859 /* Protect the loop latches. */
2860 if (current_loops && b->loop_father->latch == b)
2861 return false;
2862
2863 /* If we would end up moving B's instructions, make sure it doesn't fall
2864 through into the exit block, since we cannot recover from a fallthrough
2865 edge into the exit block occurring in the middle of a function. */
2866 if (NEXT_INSN (BB_END (a)) != BB_HEAD (b))
2867 {
2868 edge e = find_fallthru_edge (b->succs);
2869 if (e && e->dest == EXIT_BLOCK_PTR)
2870 return false;
2871 }
2872
2873 /* There must be exactly one edge in between the blocks. */
2874 return (single_succ_p (a)
2875 && single_succ (a) == b
2876 && single_pred_p (b) == 1
2877 && a != b
2878 /* Must be simple edge. */
2879 && !(single_succ_edge (a)->flags & EDGE_COMPLEX)
2880 && a != ENTRY_BLOCK_PTR && b != EXIT_BLOCK_PTR
2881 /* If the jump insn has side effects, we can't kill the edge.
2882 When not optimizing, try_redirect_by_replacing_jump will
2883 not allow us to redirect an edge by replacing a table jump. */
2884 && (!JUMP_P (BB_END (a))
2885 || ((!optimize || reload_completed)
2886 ? simplejump_p (BB_END (a)) : onlyjump_p (BB_END (a)))));
2887 }
2888
2889 /* Merge block A and B. The blocks must be mergeable. */
2890
2891 static void
2892 cfg_layout_merge_blocks (basic_block a, basic_block b)
2893 {
2894 bool forwarder_p = (b->flags & BB_FORWARDER_BLOCK) != 0;
2895 rtx insn;
2896
2897 gcc_checking_assert (cfg_layout_can_merge_blocks_p (a, b));
2898
2899 if (dump_file)
2900 fprintf (dump_file, "Merging block %d into block %d...\n", b->index,
2901 a->index);
2902
2903 /* If there was a CODE_LABEL beginning B, delete it. */
2904 if (LABEL_P (BB_HEAD (b)))
2905 {
2906 delete_insn (BB_HEAD (b));
2907 }
2908
2909 /* We should have fallthru edge in a, or we can do dummy redirection to get
2910 it cleaned up. */
2911 if (JUMP_P (BB_END (a)))
2912 try_redirect_by_replacing_jump (EDGE_SUCC (a, 0), b, true);
2913 gcc_assert (!JUMP_P (BB_END (a)));
2914
2915 /* When not optimizing CFG and the edge is the only place in RTL which holds
2916 some unique locus, emit a nop with that locus in between. */
2917 if (!optimize)
2918 emit_nop_for_unique_locus_between (a, b);
2919
2920 /* Possible line number notes should appear in between. */
2921 if (BB_HEADER (b))
2922 {
2923 rtx first = BB_END (a), last;
2924
2925 last = emit_insn_after_noloc (BB_HEADER (b), BB_END (a), a);
2926 /* The above might add a BARRIER as BB_END, but as barriers
2927 aren't valid parts of a bb, remove_insn doesn't update
2928 BB_END if it is a barrier. So adjust BB_END here. */
2929 while (BB_END (a) != first && BARRIER_P (BB_END (a)))
2930 BB_END (a) = PREV_INSN (BB_END (a));
2931 delete_insn_chain (NEXT_INSN (first), last, false);
2932 BB_HEADER (b) = NULL;
2933 }
2934
2935 /* In the case basic blocks are not adjacent, move them around. */
2936 if (NEXT_INSN (BB_END (a)) != BB_HEAD (b))
2937 {
2938 insn = unlink_insn_chain (BB_HEAD (b), BB_END (b));
2939
2940 emit_insn_after_noloc (insn, BB_END (a), a);
2941 }
2942 /* Otherwise just re-associate the instructions. */
2943 else
2944 {
2945 insn = BB_HEAD (b);
2946 BB_END (a) = BB_END (b);
2947 }
2948
2949 /* emit_insn_after_noloc doesn't call df_insn_change_bb.
2950 We need to explicitly call. */
2951 update_bb_for_insn_chain (insn, BB_END (b), a);
2952
2953 /* Skip possible DELETED_LABEL insn. */
2954 if (!NOTE_INSN_BASIC_BLOCK_P (insn))
2955 insn = NEXT_INSN (insn);
2956 gcc_assert (NOTE_INSN_BASIC_BLOCK_P (insn));
2957 BB_HEAD (b) = NULL;
2958 delete_insn (insn);
2959
2960 df_bb_delete (b->index);
2961
2962 /* Possible tablejumps and barriers should appear after the block. */
2963 if (BB_FOOTER (b))
2964 {
2965 if (!BB_FOOTER (a))
2966 BB_FOOTER (a) = BB_FOOTER (b);
2967 else
2968 {
2969 rtx last = BB_FOOTER (a);
2970
2971 while (NEXT_INSN (last))
2972 last = NEXT_INSN (last);
2973 NEXT_INSN (last) = BB_FOOTER (b);
2974 PREV_INSN (BB_FOOTER (b)) = last;
2975 }
2976 BB_FOOTER (b) = NULL;
2977 }
2978
2979 /* If B was a forwarder block, propagate the locus on the edge. */
2980 if (forwarder_p && !EDGE_SUCC (b, 0)->goto_locus)
2981 EDGE_SUCC (b, 0)->goto_locus = EDGE_SUCC (a, 0)->goto_locus;
2982
2983 if (dump_file)
2984 fprintf (dump_file, "Merged blocks %d and %d.\n", a->index, b->index);
2985 }
2986
2987 /* Split edge E. */
2988
2989 static basic_block
2990 cfg_layout_split_edge (edge e)
2991 {
2992 basic_block new_bb =
2993 create_basic_block (e->src != ENTRY_BLOCK_PTR
2994 ? NEXT_INSN (BB_END (e->src)) : get_insns (),
2995 NULL_RTX, e->src);
2996
2997 if (e->dest == EXIT_BLOCK_PTR)
2998 BB_COPY_PARTITION (new_bb, e->src);
2999 else
3000 BB_COPY_PARTITION (new_bb, e->dest);
3001 make_edge (new_bb, e->dest, EDGE_FALLTHRU);
3002 redirect_edge_and_branch_force (e, new_bb);
3003
3004 return new_bb;
3005 }
3006
3007 /* Do postprocessing after making a forwarder block joined by edge FALLTHRU. */
3008
3009 static void
3010 rtl_make_forwarder_block (edge fallthru ATTRIBUTE_UNUSED)
3011 {
3012 }
3013
3014 /* Return 1 if BB ends with a call, possibly followed by some
3015 instructions that must stay with the call, 0 otherwise. */
3016
3017 static bool
3018 rtl_block_ends_with_call_p (basic_block bb)
3019 {
3020 rtx insn = BB_END (bb);
3021
3022 while (!CALL_P (insn)
3023 && insn != BB_HEAD (bb)
3024 && (keep_with_call_p (insn)
3025 || NOTE_P (insn)
3026 || DEBUG_INSN_P (insn)))
3027 insn = PREV_INSN (insn);
3028 return (CALL_P (insn));
3029 }
3030
3031 /* Return 1 if BB ends with a conditional branch, 0 otherwise. */
3032
3033 static bool
3034 rtl_block_ends_with_condjump_p (const_basic_block bb)
3035 {
3036 return any_condjump_p (BB_END (bb));
3037 }
3038
3039 /* Return true if we need to add fake edge to exit.
3040 Helper function for rtl_flow_call_edges_add. */
3041
3042 static bool
3043 need_fake_edge_p (const_rtx insn)
3044 {
3045 if (!INSN_P (insn))
3046 return false;
3047
3048 if ((CALL_P (insn)
3049 && !SIBLING_CALL_P (insn)
3050 && !find_reg_note (insn, REG_NORETURN, NULL)
3051 && !(RTL_CONST_OR_PURE_CALL_P (insn))))
3052 return true;
3053
3054 return ((GET_CODE (PATTERN (insn)) == ASM_OPERANDS
3055 && MEM_VOLATILE_P (PATTERN (insn)))
3056 || (GET_CODE (PATTERN (insn)) == PARALLEL
3057 && asm_noperands (insn) != -1
3058 && MEM_VOLATILE_P (XVECEXP (PATTERN (insn), 0, 0)))
3059 || GET_CODE (PATTERN (insn)) == ASM_INPUT);
3060 }
3061
3062 /* Add fake edges to the function exit for any non constant and non noreturn
3063 calls, volatile inline assembly in the bitmap of blocks specified by
3064 BLOCKS or to the whole CFG if BLOCKS is zero. Return the number of blocks
3065 that were split.
3066
3067 The goal is to expose cases in which entering a basic block does not imply
3068 that all subsequent instructions must be executed. */
3069
3070 static int
3071 rtl_flow_call_edges_add (sbitmap blocks)
3072 {
3073 int i;
3074 int blocks_split = 0;
3075 int last_bb = last_basic_block;
3076 bool check_last_block = false;
3077
3078 if (n_basic_blocks == NUM_FIXED_BLOCKS)
3079 return 0;
3080
3081 if (! blocks)
3082 check_last_block = true;
3083 else
3084 check_last_block = TEST_BIT (blocks, EXIT_BLOCK_PTR->prev_bb->index);
3085
3086 /* In the last basic block, before epilogue generation, there will be
3087 a fallthru edge to EXIT. Special care is required if the last insn
3088 of the last basic block is a call because make_edge folds duplicate
3089 edges, which would result in the fallthru edge also being marked
3090 fake, which would result in the fallthru edge being removed by
3091 remove_fake_edges, which would result in an invalid CFG.
3092
3093 Moreover, we can't elide the outgoing fake edge, since the block
3094 profiler needs to take this into account in order to solve the minimal
3095 spanning tree in the case that the call doesn't return.
3096
3097 Handle this by adding a dummy instruction in a new last basic block. */
3098 if (check_last_block)
3099 {
3100 basic_block bb = EXIT_BLOCK_PTR->prev_bb;
3101 rtx insn = BB_END (bb);
3102
3103 /* Back up past insns that must be kept in the same block as a call. */
3104 while (insn != BB_HEAD (bb)
3105 && keep_with_call_p (insn))
3106 insn = PREV_INSN (insn);
3107
3108 if (need_fake_edge_p (insn))
3109 {
3110 edge e;
3111
3112 e = find_edge (bb, EXIT_BLOCK_PTR);
3113 if (e)
3114 {
3115 insert_insn_on_edge (gen_use (const0_rtx), e);
3116 commit_edge_insertions ();
3117 }
3118 }
3119 }
3120
3121 /* Now add fake edges to the function exit for any non constant
3122 calls since there is no way that we can determine if they will
3123 return or not... */
3124
3125 for (i = NUM_FIXED_BLOCKS; i < last_bb; i++)
3126 {
3127 basic_block bb = BASIC_BLOCK (i);
3128 rtx insn;
3129 rtx prev_insn;
3130
3131 if (!bb)
3132 continue;
3133
3134 if (blocks && !TEST_BIT (blocks, i))
3135 continue;
3136
3137 for (insn = BB_END (bb); ; insn = prev_insn)
3138 {
3139 prev_insn = PREV_INSN (insn);
3140 if (need_fake_edge_p (insn))
3141 {
3142 edge e;
3143 rtx split_at_insn = insn;
3144
3145 /* Don't split the block between a call and an insn that should
3146 remain in the same block as the call. */
3147 if (CALL_P (insn))
3148 while (split_at_insn != BB_END (bb)
3149 && keep_with_call_p (NEXT_INSN (split_at_insn)))
3150 split_at_insn = NEXT_INSN (split_at_insn);
3151
3152 /* The handling above of the final block before the epilogue
3153 should be enough to verify that there is no edge to the exit
3154 block in CFG already. Calling make_edge in such case would
3155 cause us to mark that edge as fake and remove it later. */
3156
3157 #ifdef ENABLE_CHECKING
3158 if (split_at_insn == BB_END (bb))
3159 {
3160 e = find_edge (bb, EXIT_BLOCK_PTR);
3161 gcc_assert (e == NULL);
3162 }
3163 #endif
3164
3165 /* Note that the following may create a new basic block
3166 and renumber the existing basic blocks. */
3167 if (split_at_insn != BB_END (bb))
3168 {
3169 e = split_block (bb, split_at_insn);
3170 if (e)
3171 blocks_split++;
3172 }
3173
3174 make_edge (bb, EXIT_BLOCK_PTR, EDGE_FAKE);
3175 }
3176
3177 if (insn == BB_HEAD (bb))
3178 break;
3179 }
3180 }
3181
3182 if (blocks_split)
3183 verify_flow_info ();
3184
3185 return blocks_split;
3186 }
3187
3188 /* Add COMP_RTX as a condition at end of COND_BB. FIRST_HEAD is
3189 the conditional branch target, SECOND_HEAD should be the fall-thru
3190 there is no need to handle this here the loop versioning code handles
3191 this. the reason for SECON_HEAD is that it is needed for condition
3192 in trees, and this should be of the same type since it is a hook. */
3193 static void
3194 rtl_lv_add_condition_to_bb (basic_block first_head ,
3195 basic_block second_head ATTRIBUTE_UNUSED,
3196 basic_block cond_bb, void *comp_rtx)
3197 {
3198 rtx label, seq, jump;
3199 rtx op0 = XEXP ((rtx)comp_rtx, 0);
3200 rtx op1 = XEXP ((rtx)comp_rtx, 1);
3201 enum rtx_code comp = GET_CODE ((rtx)comp_rtx);
3202 enum machine_mode mode;
3203
3204
3205 label = block_label (first_head);
3206 mode = GET_MODE (op0);
3207 if (mode == VOIDmode)
3208 mode = GET_MODE (op1);
3209
3210 start_sequence ();
3211 op0 = force_operand (op0, NULL_RTX);
3212 op1 = force_operand (op1, NULL_RTX);
3213 do_compare_rtx_and_jump (op0, op1, comp, 0,
3214 mode, NULL_RTX, NULL_RTX, label, -1);
3215 jump = get_last_insn ();
3216 JUMP_LABEL (jump) = label;
3217 LABEL_NUSES (label)++;
3218 seq = get_insns ();
3219 end_sequence ();
3220
3221 /* Add the new cond , in the new head. */
3222 emit_insn_after(seq, BB_END(cond_bb));
3223 }
3224
3225
3226 /* Given a block B with unconditional branch at its end, get the
3227 store the return the branch edge and the fall-thru edge in
3228 BRANCH_EDGE and FALLTHRU_EDGE respectively. */
3229 static void
3230 rtl_extract_cond_bb_edges (basic_block b, edge *branch_edge,
3231 edge *fallthru_edge)
3232 {
3233 edge e = EDGE_SUCC (b, 0);
3234
3235 if (e->flags & EDGE_FALLTHRU)
3236 {
3237 *fallthru_edge = e;
3238 *branch_edge = EDGE_SUCC (b, 1);
3239 }
3240 else
3241 {
3242 *branch_edge = e;
3243 *fallthru_edge = EDGE_SUCC (b, 1);
3244 }
3245 }
3246
3247 void
3248 init_rtl_bb_info (basic_block bb)
3249 {
3250 gcc_assert (!bb->il.x.rtl);
3251 bb->il.x.head_ = NULL;
3252 bb->il.x.rtl = ggc_alloc_cleared_rtl_bb_info ();
3253 }
3254
3255 /* Returns true if it is possible to remove edge E by redirecting
3256 it to the destination of the other edge from E->src. */
3257
3258 static bool
3259 rtl_can_remove_branch_p (const_edge e)
3260 {
3261 const_basic_block src = e->src;
3262 const_basic_block target = EDGE_SUCC (src, EDGE_SUCC (src, 0) == e)->dest;
3263 const_rtx insn = BB_END (src), set;
3264
3265 /* The conditions are taken from try_redirect_by_replacing_jump. */
3266 if (target == EXIT_BLOCK_PTR)
3267 return false;
3268
3269 if (e->flags & (EDGE_ABNORMAL_CALL | EDGE_EH))
3270 return false;
3271
3272 if (find_reg_note (insn, REG_CROSSING_JUMP, NULL_RTX)
3273 || BB_PARTITION (src) != BB_PARTITION (target))
3274 return false;
3275
3276 if (!onlyjump_p (insn)
3277 || tablejump_p (insn, NULL, NULL))
3278 return false;
3279
3280 set = single_set (insn);
3281 if (!set || side_effects_p (set))
3282 return false;
3283
3284 return true;
3285 }
3286
3287 /* We do not want to declare these functions in a header file, since they
3288 should only be used through the cfghooks interface, and we do not want to
3289 move them here since it would require also moving quite a lot of related
3290 code. They are in cfglayout.c. */
3291 extern bool cfg_layout_can_duplicate_bb_p (const_basic_block);
3292 extern basic_block cfg_layout_duplicate_bb (basic_block);
3293
3294 static basic_block
3295 rtl_duplicate_bb (basic_block bb)
3296 {
3297 bb = cfg_layout_duplicate_bb (bb);
3298 bb->aux = NULL;
3299 return bb;
3300 }
3301
3302 /* Implementation of CFG manipulation for linearized RTL. */
3303 struct cfg_hooks rtl_cfg_hooks = {
3304 "rtl",
3305 rtl_verify_flow_info,
3306 rtl_dump_bb,
3307 rtl_create_basic_block,
3308 rtl_redirect_edge_and_branch,
3309 rtl_redirect_edge_and_branch_force,
3310 rtl_can_remove_branch_p,
3311 rtl_delete_block,
3312 rtl_split_block,
3313 rtl_move_block_after,
3314 rtl_can_merge_blocks, /* can_merge_blocks_p */
3315 rtl_merge_blocks,
3316 rtl_predict_edge,
3317 rtl_predicted_by_p,
3318 cfg_layout_can_duplicate_bb_p,
3319 rtl_duplicate_bb,
3320 rtl_split_edge,
3321 rtl_make_forwarder_block,
3322 rtl_tidy_fallthru_edge,
3323 rtl_force_nonfallthru,
3324 rtl_block_ends_with_call_p,
3325 rtl_block_ends_with_condjump_p,
3326 rtl_flow_call_edges_add,
3327 NULL, /* execute_on_growing_pred */
3328 NULL, /* execute_on_shrinking_pred */
3329 NULL, /* duplicate loop for trees */
3330 NULL, /* lv_add_condition_to_bb */
3331 NULL, /* lv_adjust_loop_header_phi*/
3332 NULL, /* extract_cond_bb_edges */
3333 NULL /* flush_pending_stmts */
3334 };
3335
3336 /* Implementation of CFG manipulation for cfg layout RTL, where
3337 basic block connected via fallthru edges does not have to be adjacent.
3338 This representation will hopefully become the default one in future
3339 version of the compiler. */
3340
3341 struct cfg_hooks cfg_layout_rtl_cfg_hooks = {
3342 "cfglayout mode",
3343 rtl_verify_flow_info_1,
3344 rtl_dump_bb,
3345 cfg_layout_create_basic_block,
3346 cfg_layout_redirect_edge_and_branch,
3347 cfg_layout_redirect_edge_and_branch_force,
3348 rtl_can_remove_branch_p,
3349 cfg_layout_delete_block,
3350 cfg_layout_split_block,
3351 rtl_move_block_after,
3352 cfg_layout_can_merge_blocks_p,
3353 cfg_layout_merge_blocks,
3354 rtl_predict_edge,
3355 rtl_predicted_by_p,
3356 cfg_layout_can_duplicate_bb_p,
3357 cfg_layout_duplicate_bb,
3358 cfg_layout_split_edge,
3359 rtl_make_forwarder_block,
3360 NULL, /* tidy_fallthru_edge */
3361 rtl_force_nonfallthru,
3362 rtl_block_ends_with_call_p,
3363 rtl_block_ends_with_condjump_p,
3364 rtl_flow_call_edges_add,
3365 NULL, /* execute_on_growing_pred */
3366 NULL, /* execute_on_shrinking_pred */
3367 duplicate_loop_to_header_edge, /* duplicate loop for trees */
3368 rtl_lv_add_condition_to_bb, /* lv_add_condition_to_bb */
3369 NULL, /* lv_adjust_loop_header_phi*/
3370 rtl_extract_cond_bb_edges, /* extract_cond_bb_edges */
3371 NULL /* flush_pending_stmts */
3372 };