1 /* Control flow graph manipulation code for GNU compiler.
2 Copyright (C) 1987, 1988, 1992, 1993, 1994, 1995, 1996, 1997, 1998,
3 1999, 2000, 2001, 2002, 2003 Free Software Foundation, Inc.
5 This file is part of GCC.
7 GCC is free software; you can redistribute it and/or modify it under
8 the terms of the GNU General Public License as published by the Free
9 Software Foundation; either version 2, or (at your option) any later
12 GCC is distributed in the hope that it will be useful, but WITHOUT ANY
13 WARRANTY; without even the implied warranty of MERCHANTABILITY or
14 FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License
17 You should have received a copy of the GNU General Public License
18 along with GCC; see the file COPYING. If not, write to the Free
19 Software Foundation, 59 Temple Place - Suite 330, Boston, MA
22 /* This file contains low level functions to manipulate the CFG and
23 analyze it. All other modules should not transform the data structure
24 directly and use abstraction instead. The file is supposed to be
25 ordered bottom-up and should not contain any code dependent on a
26 particular intermediate language (RTL or trees).
28 Available functionality:
29 - Initialization/deallocation
30 init_flow, clear_edges
31 - Low level basic block manipulation
32 alloc_block, expunge_block
34 make_edge, make_single_succ_edge, cached_make_edge, remove_edge
35 - Low level edge redirection (without updating instruction chain)
36 redirect_edge_succ, redirect_edge_succ_nodup, redirect_edge_pred
37 - Dumping and debugging
38 dump_flow_info, debug_flow_info, dump_edge_info
39 - Allocation of AUX fields for basic blocks
40 alloc_aux_for_blocks, free_aux_for_blocks, alloc_aux_for_block
42 - Consistency checking
44 - Dumping and debugging
45 print_rtl_with_bb, dump_bb, debug_bb, debug_bb_n
50 #include "coretypes.h"
54 #include "hard-reg-set.h"
55 #include "basic-block.h"
64 #include "alloc-pool.h"
66 /* The obstack on which the flow graph components are allocated. */
68 struct obstack flow_obstack
;
69 static char *flow_firstobj
;
71 /* Basic block object pool. */
73 static alloc_pool bb_pool
;
75 /* Edge object pool. */
77 static alloc_pool edge_pool
;
79 /* Number of basic blocks in the current function. */
83 /* First free basic block number. */
87 /* Number of edges in the current function. */
91 /* The basic block array. */
93 varray_type basic_block_info
;
95 /* The special entry and exit blocks. */
97 struct basic_block_def entry_exit_blocks
[2]
100 NULL
, /* head_tree */
104 NULL
, /* local_set */
105 NULL
, /* cond_local_set */
106 NULL
, /* global_live_at_start */
107 NULL
, /* global_live_at_end */
109 ENTRY_BLOCK
, /* index */
111 EXIT_BLOCK_PTR
, /* next_bb */
113 NULL
, /* loop_father */
122 NULL
, /* head_tree */
126 NULL
, /* local_set */
127 NULL
, /* cond_local_set */
128 NULL
, /* global_live_at_start */
129 NULL
, /* global_live_at_end */
131 EXIT_BLOCK
, /* index */
132 ENTRY_BLOCK_PTR
, /* prev_bb */
135 NULL
, /* loop_father */
143 void debug_flow_info (void);
144 static void free_edge (edge
);
146 /* Called once at initialization time. */
151 static int initialized
;
157 gcc_obstack_init (&flow_obstack
);
158 flow_firstobj
= obstack_alloc (&flow_obstack
, 0);
163 free_alloc_pool (bb_pool
);
164 free_alloc_pool (edge_pool
);
165 obstack_free (&flow_obstack
, flow_firstobj
);
166 flow_firstobj
= obstack_alloc (&flow_obstack
, 0);
168 bb_pool
= create_alloc_pool ("Basic block pool",
169 sizeof (struct basic_block_def
), 100);
170 edge_pool
= create_alloc_pool ("Edge pool",
171 sizeof (struct edge_def
), 100);
174 /* Helper function for remove_edge and clear_edges. Frees edge structure
175 without actually unlinking it from the pred/succ lists. */
181 pool_free (edge_pool
, e
);
184 /* Free the memory associated with the edge structures. */
198 edge next
= e
->succ_next
;
208 e
= ENTRY_BLOCK_PTR
->succ
;
211 edge next
= e
->succ_next
;
217 EXIT_BLOCK_PTR
->pred
= NULL
;
218 ENTRY_BLOCK_PTR
->succ
= NULL
;
224 /* Allocate memory for basic_block. */
230 bb
= pool_alloc (bb_pool
);
231 memset (bb
, 0, sizeof (*bb
));
235 /* Link block B to chain after AFTER. */
237 link_block (basic_block b
, basic_block after
)
239 b
->next_bb
= after
->next_bb
;
242 b
->next_bb
->prev_bb
= b
;
245 /* Unlink block B from chain. */
247 unlink_block (basic_block b
)
249 b
->next_bb
->prev_bb
= b
->prev_bb
;
250 b
->prev_bb
->next_bb
= b
->next_bb
;
253 /* Sequentially order blocks and compact the arrays. */
255 compact_blocks (void)
263 BASIC_BLOCK (i
) = bb
;
268 if (i
!= n_basic_blocks
)
271 last_basic_block
= n_basic_blocks
;
274 /* Remove block B from the basic block array. */
277 expunge_block (basic_block b
)
280 BASIC_BLOCK (b
->index
) = NULL
;
282 pool_free (bb_pool
, b
);
285 /* Create an edge connecting SRC and DEST with flags FLAGS. Return newly
286 created edge. Use this only if you are sure that this edge can't
287 possibly already exist. */
290 unchecked_make_edge (basic_block src
, basic_block dst
, int flags
)
293 e
= pool_alloc (edge_pool
);
294 memset (e
, 0, sizeof (*e
));
297 e
->succ_next
= src
->succ
;
298 e
->pred_next
= dst
->pred
;
309 /* Create an edge connecting SRC and DST with FLAGS optionally using
310 edge cache CACHE. Return the new edge, NULL if already exist. */
313 cached_make_edge (sbitmap
*edge_cache
, basic_block src
, basic_block dst
, int flags
)
318 /* Don't bother with edge cache for ENTRY or EXIT, if there aren't that
319 many edges to them, or we didn't allocate memory for it. */
320 use_edge_cache
= (edge_cache
321 && src
!= ENTRY_BLOCK_PTR
&& dst
!= EXIT_BLOCK_PTR
);
323 /* Make sure we don't add duplicate edges. */
324 switch (use_edge_cache
)
327 /* Quick test for non-existence of the edge. */
328 if (! TEST_BIT (edge_cache
[src
->index
], dst
->index
))
331 /* The edge exists; early exit if no work to do. */
337 for (e
= src
->succ
; e
; e
= e
->succ_next
)
346 e
= unchecked_make_edge (src
, dst
, flags
);
349 SET_BIT (edge_cache
[src
->index
], dst
->index
);
354 /* Create an edge connecting SRC and DEST with flags FLAGS. Return newly
355 created edge or NULL if already exist. */
358 make_edge (basic_block src
, basic_block dest
, int flags
)
360 return cached_make_edge (NULL
, src
, dest
, flags
);
363 /* Create an edge connecting SRC to DEST and set probability by knowing
364 that it is the single edge leaving SRC. */
367 make_single_succ_edge (basic_block src
, basic_block dest
, int flags
)
369 edge e
= make_edge (src
, dest
, flags
);
371 e
->probability
= REG_BR_PROB_BASE
;
372 e
->count
= src
->count
;
376 /* This function will remove an edge from the flow graph. */
381 edge last_pred
= NULL
;
382 edge last_succ
= NULL
;
384 basic_block src
, dest
;
388 for (tmp
= src
->succ
; tmp
&& tmp
!= e
; tmp
= tmp
->succ_next
)
394 last_succ
->succ_next
= e
->succ_next
;
396 src
->succ
= e
->succ_next
;
398 for (tmp
= dest
->pred
; tmp
&& tmp
!= e
; tmp
= tmp
->pred_next
)
404 last_pred
->pred_next
= e
->pred_next
;
406 dest
->pred
= e
->pred_next
;
411 /* Redirect an edge's successor from one block to another. */
414 redirect_edge_succ (edge e
, basic_block new_succ
)
418 /* Disconnect the edge from the old successor block. */
419 for (pe
= &e
->dest
->pred
; *pe
!= e
; pe
= &(*pe
)->pred_next
)
421 *pe
= (*pe
)->pred_next
;
423 /* Reconnect the edge to the new successor block. */
424 e
->pred_next
= new_succ
->pred
;
429 /* Like previous but avoid possible duplicate edge. */
432 redirect_edge_succ_nodup (edge e
, basic_block new_succ
)
436 /* Check whether the edge is already present. */
437 for (s
= e
->src
->succ
; s
; s
= s
->succ_next
)
438 if (s
->dest
== new_succ
&& s
!= e
)
443 s
->flags
|= e
->flags
;
444 s
->probability
+= e
->probability
;
445 if (s
->probability
> REG_BR_PROB_BASE
)
446 s
->probability
= REG_BR_PROB_BASE
;
447 s
->count
+= e
->count
;
452 redirect_edge_succ (e
, new_succ
);
457 /* Redirect an edge's predecessor from one block to another. */
460 redirect_edge_pred (edge e
, basic_block new_pred
)
464 /* Disconnect the edge from the old predecessor block. */
465 for (pe
= &e
->src
->succ
; *pe
!= e
; pe
= &(*pe
)->succ_next
)
468 *pe
= (*pe
)->succ_next
;
470 /* Reconnect the edge to the new predecessor block. */
471 e
->succ_next
= new_pred
->succ
;
477 clear_bb_flags (void)
481 FOR_BB_BETWEEN (bb
, ENTRY_BLOCK_PTR
, NULL
, next_bb
)
486 dump_flow_info (FILE *file
)
489 int max_regno
= max_reg_num ();
491 static const char * const reg_class_names
[] = REG_CLASS_NAMES
;
493 fprintf (file
, "%d registers.\n", max_regno
);
494 for (i
= FIRST_PSEUDO_REGISTER
; i
< max_regno
; i
++)
497 enum reg_class
class, altclass
;
499 fprintf (file
, "\nRegister %d used %d times across %d insns",
500 i
, REG_N_REFS (i
), REG_LIVE_LENGTH (i
));
501 if (REG_BASIC_BLOCK (i
) >= 0)
502 fprintf (file
, " in block %d", REG_BASIC_BLOCK (i
));
504 fprintf (file
, "; set %d time%s", REG_N_SETS (i
),
505 (REG_N_SETS (i
) == 1) ? "" : "s");
506 if (regno_reg_rtx
[i
] != NULL
&& REG_USERVAR_P (regno_reg_rtx
[i
]))
507 fprintf (file
, "; user var");
508 if (REG_N_DEATHS (i
) != 1)
509 fprintf (file
, "; dies in %d places", REG_N_DEATHS (i
));
510 if (REG_N_CALLS_CROSSED (i
) == 1)
511 fprintf (file
, "; crosses 1 call");
512 else if (REG_N_CALLS_CROSSED (i
))
513 fprintf (file
, "; crosses %d calls", REG_N_CALLS_CROSSED (i
));
514 if (regno_reg_rtx
[i
] != NULL
515 && PSEUDO_REGNO_BYTES (i
) != UNITS_PER_WORD
)
516 fprintf (file
, "; %d bytes", PSEUDO_REGNO_BYTES (i
));
518 class = reg_preferred_class (i
);
519 altclass
= reg_alternate_class (i
);
520 if (class != GENERAL_REGS
|| altclass
!= ALL_REGS
)
522 if (altclass
== ALL_REGS
|| class == ALL_REGS
)
523 fprintf (file
, "; pref %s", reg_class_names
[(int) class]);
524 else if (altclass
== NO_REGS
)
525 fprintf (file
, "; %s or none", reg_class_names
[(int) class]);
527 fprintf (file
, "; pref %s, else %s",
528 reg_class_names
[(int) class],
529 reg_class_names
[(int) altclass
]);
532 if (regno_reg_rtx
[i
] != NULL
&& REG_POINTER (regno_reg_rtx
[i
]))
533 fprintf (file
, "; pointer");
534 fprintf (file
, ".\n");
537 fprintf (file
, "\n%d basic blocks, %d edges.\n", n_basic_blocks
, n_edges
);
544 fprintf (file
, "\nBasic block %d: first insn %d, last %d, ",
545 bb
->index
, INSN_UID (bb
->head
), INSN_UID (bb
->end
));
546 fprintf (file
, "prev %d, next %d, ",
547 bb
->prev_bb
->index
, bb
->next_bb
->index
);
548 fprintf (file
, "loop_depth %d, count ", bb
->loop_depth
);
549 fprintf (file
, HOST_WIDEST_INT_PRINT_DEC
, bb
->count
);
550 fprintf (file
, ", freq %i", bb
->frequency
);
551 if (maybe_hot_bb_p (bb
))
552 fprintf (file
, ", maybe hot");
553 if (probably_never_executed_bb_p (bb
))
554 fprintf (file
, ", probably never executed");
555 fprintf (file
, ".\n");
557 fprintf (file
, "Predecessors: ");
558 for (e
= bb
->pred
; e
; e
= e
->pred_next
)
559 dump_edge_info (file
, e
, 0);
561 fprintf (file
, "\nSuccessors: ");
562 for (e
= bb
->succ
; e
; e
= e
->succ_next
)
563 dump_edge_info (file
, e
, 1);
565 fprintf (file
, "\nRegisters live at start:");
566 dump_regset (bb
->global_live_at_start
, file
);
568 fprintf (file
, "\nRegisters live at end:");
569 dump_regset (bb
->global_live_at_end
, file
);
573 /* Check the consistency of profile information. We can't do that
574 in verify_flow_info, as the counts may get invalid for incompletely
575 solved graphs, later eliminating of conditionals or roundoff errors.
576 It is still practical to have them reported for debugging of simple
579 for (e
= bb
->succ
; e
; e
= e
->succ_next
)
580 sum
+= e
->probability
;
581 if (bb
->succ
&& abs (sum
- REG_BR_PROB_BASE
) > 100)
582 fprintf (file
, "Invalid sum of outgoing probabilities %.1f%%\n",
583 sum
* 100.0 / REG_BR_PROB_BASE
);
585 for (e
= bb
->pred
; e
; e
= e
->pred_next
)
586 sum
+= EDGE_FREQUENCY (e
);
587 if (abs (sum
- bb
->frequency
) > 100)
589 "Invalid sum of incomming frequencies %i, should be %i\n",
592 for (e
= bb
->pred
; e
; e
= e
->pred_next
)
594 if (lsum
- bb
->count
> 100 || lsum
- bb
->count
< -100)
595 fprintf (file
, "Invalid sum of incomming counts %i, should be %i\n",
596 (int)lsum
, (int)bb
->count
);
598 for (e
= bb
->succ
; e
; e
= e
->succ_next
)
600 if (bb
->succ
&& (lsum
- bb
->count
> 100 || lsum
- bb
->count
< -100))
601 fprintf (file
, "Invalid sum of incomming counts %i, should be %i\n",
602 (int)lsum
, (int)bb
->count
);
609 debug_flow_info (void)
611 dump_flow_info (stderr
);
615 dump_edge_info (FILE *file
, edge e
, int do_succ
)
617 basic_block side
= (do_succ
? e
->dest
: e
->src
);
619 if (side
== ENTRY_BLOCK_PTR
)
620 fputs (" ENTRY", file
);
621 else if (side
== EXIT_BLOCK_PTR
)
622 fputs (" EXIT", file
);
624 fprintf (file
, " %d", side
->index
);
627 fprintf (file
, " [%.1f%%] ", e
->probability
* 100.0 / REG_BR_PROB_BASE
);
631 fprintf (file
, " count:");
632 fprintf (file
, HOST_WIDEST_INT_PRINT_DEC
, e
->count
);
637 static const char * const bitnames
[] = {
638 "fallthru", "ab", "abcall", "eh", "fake", "dfs_back",
639 "can_fallthru", "irreducible", "sibcall", "loop_exit"
642 int i
, flags
= e
->flags
;
645 for (i
= 0; flags
; i
++)
646 if (flags
& (1 << i
))
652 if (i
< (int) ARRAY_SIZE (bitnames
))
653 fputs (bitnames
[i
], file
);
655 fprintf (file
, "%d", i
);
663 /* Simple routines to easily allocate AUX fields of basic blocks. */
665 static struct obstack block_aux_obstack
;
666 static void *first_block_aux_obj
= 0;
667 static struct obstack edge_aux_obstack
;
668 static void *first_edge_aux_obj
= 0;
670 /* Allocate a memory block of SIZE as BB->aux. The obstack must
671 be first initialized by alloc_aux_for_blocks. */
674 alloc_aux_for_block (basic_block bb
, int size
)
676 /* Verify that aux field is clear. */
677 if (bb
->aux
|| !first_block_aux_obj
)
679 bb
->aux
= obstack_alloc (&block_aux_obstack
, size
);
680 memset (bb
->aux
, 0, size
);
683 /* Initialize the block_aux_obstack and if SIZE is nonzero, call
684 alloc_aux_for_block for each basic block. */
687 alloc_aux_for_blocks (int size
)
689 static int initialized
;
693 gcc_obstack_init (&block_aux_obstack
);
697 /* Check whether AUX data are still allocated. */
698 else if (first_block_aux_obj
)
700 first_block_aux_obj
= obstack_alloc (&block_aux_obstack
, 0);
705 FOR_BB_BETWEEN (bb
, ENTRY_BLOCK_PTR
, NULL
, next_bb
)
706 alloc_aux_for_block (bb
, size
);
710 /* Clear AUX pointers of all blocks. */
713 clear_aux_for_blocks (void)
717 FOR_BB_BETWEEN (bb
, ENTRY_BLOCK_PTR
, NULL
, next_bb
)
721 /* Free data allocated in block_aux_obstack and clear AUX pointers
725 free_aux_for_blocks (void)
727 if (!first_block_aux_obj
)
729 obstack_free (&block_aux_obstack
, first_block_aux_obj
);
730 first_block_aux_obj
= NULL
;
732 clear_aux_for_blocks ();
735 /* Allocate a memory edge of SIZE as BB->aux. The obstack must
736 be first initialized by alloc_aux_for_edges. */
739 alloc_aux_for_edge (edge e
, int size
)
741 /* Verify that aux field is clear. */
742 if (e
->aux
|| !first_edge_aux_obj
)
744 e
->aux
= obstack_alloc (&edge_aux_obstack
, size
);
745 memset (e
->aux
, 0, size
);
748 /* Initialize the edge_aux_obstack and if SIZE is nonzero, call
749 alloc_aux_for_edge for each basic edge. */
752 alloc_aux_for_edges (int size
)
754 static int initialized
;
758 gcc_obstack_init (&edge_aux_obstack
);
762 /* Check whether AUX data are still allocated. */
763 else if (first_edge_aux_obj
)
766 first_edge_aux_obj
= obstack_alloc (&edge_aux_obstack
, 0);
771 FOR_BB_BETWEEN (bb
, ENTRY_BLOCK_PTR
, EXIT_BLOCK_PTR
, next_bb
)
775 for (e
= bb
->succ
; e
; e
= e
->succ_next
)
776 alloc_aux_for_edge (e
, size
);
781 /* Clear AUX pointers of all edges. */
784 clear_aux_for_edges (void)
789 FOR_BB_BETWEEN (bb
, ENTRY_BLOCK_PTR
, EXIT_BLOCK_PTR
, next_bb
)
791 for (e
= bb
->succ
; e
; e
= e
->succ_next
)
796 /* Free data allocated in edge_aux_obstack and clear AUX pointers
800 free_aux_for_edges (void)
802 if (!first_edge_aux_obj
)
804 obstack_free (&edge_aux_obstack
, first_edge_aux_obj
);
805 first_edge_aux_obj
= NULL
;
807 clear_aux_for_edges ();
810 /* Verify the CFG consistency.
812 Currently it does following checks edge and basic block list correctness
813 and calls into IL dependent checking then. */
815 verify_flow_info (void)
817 size_t *edge_checksum
;
818 int num_bb_notes
, err
= 0;
819 basic_block bb
, last_bb_seen
;
820 basic_block
*last_visited
;
822 last_visited
= xcalloc (last_basic_block
+ 2, sizeof (basic_block
));
823 edge_checksum
= xcalloc (last_basic_block
+ 2, sizeof (size_t));
825 /* Check bb chain & numbers. */
826 last_bb_seen
= ENTRY_BLOCK_PTR
;
827 FOR_BB_BETWEEN (bb
, ENTRY_BLOCK_PTR
->next_bb
, NULL
, next_bb
)
829 if (bb
!= EXIT_BLOCK_PTR
830 && bb
!= BASIC_BLOCK (bb
->index
))
832 error ("bb %d on wrong place", bb
->index
);
836 if (bb
->prev_bb
!= last_bb_seen
)
838 error ("prev_bb of %d should be %d, not %d",
839 bb
->index
, last_bb_seen
->index
, bb
->prev_bb
->index
);
846 /* Now check the basic blocks (boundaries etc.) */
847 FOR_EACH_BB_REVERSE (bb
)
854 error ("verify_flow_info: Wrong count of block %i %i",
855 bb
->index
, (int)bb
->count
);
858 if (bb
->frequency
< 0)
860 error ("verify_flow_info: Wrong frequency of block %i %i",
861 bb
->index
, bb
->frequency
);
864 for (e
= bb
->succ
; e
; e
= e
->succ_next
)
866 if (last_visited
[e
->dest
->index
+ 2] == bb
)
868 error ("verify_flow_info: Duplicate edge %i->%i",
869 e
->src
->index
, e
->dest
->index
);
872 if (e
->probability
< 0 || e
->probability
> REG_BR_PROB_BASE
)
874 error ("verify_flow_info: Wrong probability of edge %i->%i %i",
875 e
->src
->index
, e
->dest
->index
, e
->probability
);
880 error ("verify_flow_info: Wrong count of edge %i->%i %i",
881 e
->src
->index
, e
->dest
->index
, (int)e
->count
);
885 last_visited
[e
->dest
->index
+ 2] = bb
;
887 if (e
->flags
& EDGE_FALLTHRU
)
892 error ("verify_flow_info: Basic block %d succ edge is corrupted",
894 fprintf (stderr
, "Predecessor: ");
895 dump_edge_info (stderr
, e
, 0);
896 fprintf (stderr
, "\nSuccessor: ");
897 dump_edge_info (stderr
, e
, 1);
898 fprintf (stderr
, "\n");
902 edge_checksum
[e
->dest
->index
+ 2] += (size_t) e
;
906 error ("Wrong amount of branch edges after unconditional jump %i", bb
->index
);
910 for (e
= bb
->pred
; e
; e
= e
->pred_next
)
914 error ("basic block %d pred edge is corrupted", bb
->index
);
915 fputs ("Predecessor: ", stderr
);
916 dump_edge_info (stderr
, e
, 0);
917 fputs ("\nSuccessor: ", stderr
);
918 dump_edge_info (stderr
, e
, 1);
919 fputc ('\n', stderr
);
922 edge_checksum
[e
->dest
->index
+ 2] -= (size_t) e
;
926 /* Complete edge checksumming for ENTRY and EXIT. */
930 for (e
= ENTRY_BLOCK_PTR
->succ
; e
; e
= e
->succ_next
)
931 edge_checksum
[e
->dest
->index
+ 2] += (size_t) e
;
933 for (e
= EXIT_BLOCK_PTR
->pred
; e
; e
= e
->pred_next
)
934 edge_checksum
[e
->dest
->index
+ 2] -= (size_t) e
;
937 FOR_BB_BETWEEN (bb
, ENTRY_BLOCK_PTR
, NULL
, next_bb
)
938 if (edge_checksum
[bb
->index
+ 2])
940 error ("basic block %i edge lists are corrupted", bb
->index
);
945 last_bb_seen
= ENTRY_BLOCK_PTR
;
949 free (edge_checksum
);
950 err
|= cfg_hooks
->cfgh_verify_flow_info ();
952 internal_error ("verify_flow_info failed");
955 /* Print out one basic block with live information at start and end. */
958 dump_bb (basic_block bb
, FILE *outf
)
962 fprintf (outf
, ";; Basic block %d, loop depth %d, count ",
963 bb
->index
, bb
->loop_depth
);
964 fprintf (outf
, HOST_WIDEST_INT_PRINT_DEC
, (HOST_WIDEST_INT
) bb
->count
);
967 cfg_hooks
->dump_bb (bb
, outf
);
969 fputs (";; Successors: ", outf
);
970 for (e
= bb
->succ
; e
; e
= e
->succ_next
)
971 dump_edge_info (outf
, e
, 1);
976 debug_bb (basic_block bb
)
978 dump_bb (bb
, stderr
);
984 basic_block bb
= BASIC_BLOCK (n
);
985 dump_bb (bb
, stderr
);