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