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