OSDN Git Service

* arm.c (arm_handle_notshared_attribute): Wrap declaration and use
[pf3gnuchains/gcc-fork.git] / gcc / bb-reorder.c
1 /* Basic block reordering routines for the GNU compiler.
2    Copyright (C) 2000, 2002, 2003, 2004 Free Software Foundation, Inc.
3
4    This file is part of GCC.
5
6    GCC is free software; you can redistribute it and/or modify it
7    under the terms of the GNU General Public License as published by
8    the Free Software Foundation; either version 2, or (at your option)
9    any later version.
10
11    GCC is distributed in the hope that it will be useful, but WITHOUT
12    ANY WARRANTY; without even the implied warranty of MERCHANTABILITY
13    or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU General Public
14    License for more details.
15
16    You should have received a copy of the GNU General Public License
17    along with GCC; see the file COPYING.  If not, write to the Free
18    Software Foundation, 59 Temple Place - Suite 330, Boston, MA
19    02111-1307, USA.  */
20
21 /* This (greedy) algorithm constructs traces in several rounds.
22    The construction starts from "seeds".  The seed for the first round
23    is the entry point of function.  When there are more than one seed
24    that one is selected first that has the lowest key in the heap
25    (see function bb_to_key).  Then the algorithm repeatedly adds the most
26    probable successor to the end of a trace.  Finally it connects the traces.
27
28    There are two parameters: Branch Threshold and Exec Threshold.
29    If the edge to a successor of the actual basic block is lower than
30    Branch Threshold or the frequency of the successor is lower than
31    Exec Threshold the successor will be the seed in one of the next rounds.
32    Each round has these parameters lower than the previous one.
33    The last round has to have these parameters set to zero
34    so that the remaining blocks are picked up.
35
36    The algorithm selects the most probable successor from all unvisited
37    successors and successors that have been added to this trace.
38    The other successors (that has not been "sent" to the next round) will be
39    other seeds for this round and the secondary traces will start in them.
40    If the successor has not been visited in this trace it is added to the trace
41    (however, there is some heuristic for simple branches).
42    If the successor has been visited in this trace the loop has been found.
43    If the loop has many iterations the loop is rotated so that the
44    source block of the most probable edge going out from the loop
45    is the last block of the trace.
46    If the loop has few iterations and there is no edge from the last block of
47    the loop going out from loop the loop header is duplicated.
48    Finally, the construction of the trace is terminated.
49
50    When connecting traces it first checks whether there is an edge from the
51    last block of one trace to the first block of another trace.
52    When there are still some unconnected traces it checks whether there exists
53    a basic block BB such that BB is a successor of the last bb of one trace
54    and BB is a predecessor of the first block of another trace. In this case,
55    BB is duplicated and the traces are connected through this duplicate.
56    The rest of traces are simply connected so there will be a jump to the
57    beginning of the rest of trace.
58
59
60    References:
61
62    "Software Trace Cache"
63    A. Ramirez, J. Larriba-Pey, C. Navarro, J. Torrellas and M. Valero; 1999
64    http://citeseer.nj.nec.com/15361.html
65
66 */
67
68 #include "config.h"
69 #include "system.h"
70 #include "coretypes.h"
71 #include "tm.h"
72 #include "rtl.h"
73 #include "basic-block.h"
74 #include "flags.h"
75 #include "timevar.h"
76 #include "output.h"
77 #include "cfglayout.h"
78 #include "fibheap.h"
79 #include "target.h"
80 #include "function.h"
81 #include "tm_p.h"
82 #include "obstack.h"
83 #include "expr.h"
84 #include "regs.h"
85
86 /* The number of rounds.  In most cases there will only be 4 rounds, but
87    when partitioning hot and cold basic blocks into separate sections of
88    the .o file there will be an extra round.*/
89 #define N_ROUNDS 5
90
91 /* Stubs in case we don't have a return insn.
92    We have to check at runtime too, not only compiletime.  */  
93
94 #ifndef HAVE_return
95 #define HAVE_return 0
96 #define gen_return() NULL_RTX
97 #endif
98
99
100 /* Branch thresholds in thousandths (per mille) of the REG_BR_PROB_BASE.  */
101 static int branch_threshold[N_ROUNDS] = {400, 200, 100, 0, 0};
102
103 /* Exec thresholds in thousandths (per mille) of the frequency of bb 0.  */
104 static int exec_threshold[N_ROUNDS] = {500, 200, 50, 0, 0};
105
106 /* If edge frequency is lower than DUPLICATION_THRESHOLD per mille of entry
107    block the edge destination is not duplicated while connecting traces.  */
108 #define DUPLICATION_THRESHOLD 100
109
110 /* Length of unconditional jump instruction.  */
111 static int uncond_jump_length;
112
113 /* Structure to hold needed information for each basic block.  */
114 typedef struct bbro_basic_block_data_def
115 {
116   /* Which trace is the bb start of (-1 means it is not a start of a trace).  */
117   int start_of_trace;
118
119   /* Which trace is the bb end of (-1 means it is not an end of a trace).  */
120   int end_of_trace;
121
122   /* Which heap is BB in (if any)?  */
123   fibheap_t heap;
124
125   /* Which heap node is BB in (if any)?  */
126   fibnode_t node;
127 } bbro_basic_block_data;
128
129 /* The current size of the following dynamic array.  */
130 static int array_size;
131
132 /* The array which holds needed information for basic blocks.  */
133 static bbro_basic_block_data *bbd;
134
135 /* To avoid frequent reallocation the size of arrays is greater than needed,
136    the number of elements is (not less than) 1.25 * size_wanted.  */
137 #define GET_ARRAY_SIZE(X) ((((X) / 4) + 1) * 5)
138
139 /* Free the memory and set the pointer to NULL.  */
140 #define FREE(P) (gcc_assert (P), free (P), P = 0)
141
142 /* Structure for holding information about a trace.  */
143 struct trace
144 {
145   /* First and last basic block of the trace.  */
146   basic_block first, last;
147
148   /* The round of the STC creation which this trace was found in.  */
149   int round;
150
151   /* The length (i.e. the number of basic blocks) of the trace.  */
152   int length;
153 };
154
155 /* Maximum frequency and count of one of the entry blocks.  */
156 int max_entry_frequency;
157 gcov_type max_entry_count;
158
159 /* Local function prototypes.  */
160 static void find_traces (int *, struct trace *);
161 static basic_block rotate_loop (edge, struct trace *, int);
162 static void mark_bb_visited (basic_block, int);
163 static void find_traces_1_round (int, int, gcov_type, struct trace *, int *,
164                                  int, fibheap_t *, int);
165 static basic_block copy_bb (basic_block, edge, basic_block, int);
166 static fibheapkey_t bb_to_key (basic_block);
167 static bool better_edge_p (basic_block, edge, int, int, int, int, edge);
168 static void connect_traces (int, struct trace *);
169 static bool copy_bb_p (basic_block, int);
170 static int get_uncond_jump_length (void);
171 static bool push_to_next_round_p (basic_block, int, int, int, gcov_type);
172 static void add_unlikely_executed_notes (void);
173 static void find_rarely_executed_basic_blocks_and_crossing_edges (edge *, 
174                                                                   int *,
175                                                                   int *);
176 static void mark_bb_for_unlikely_executed_section  (basic_block);
177 static void add_labels_and_missing_jumps (edge *, int);
178 static void add_reg_crossing_jump_notes (void);
179 static void fix_up_fall_thru_edges (void);
180 static void fix_edges_for_rarely_executed_code (edge *, int);
181 static void fix_crossing_conditional_branches (void);
182 static void fix_crossing_unconditional_branches (void);
183 \f
184 /* Check to see if bb should be pushed into the next round of trace
185    collections or not.  Reasons for pushing the block forward are 1).
186    If the block is cold, we are doing partitioning, and there will be
187    another round (cold partition blocks are not supposed to be
188    collected into traces until the very last round); or 2). There will
189    be another round, and the basic block is not "hot enough" for the
190    current round of trace collection.  */
191
192 static bool
193 push_to_next_round_p (basic_block bb, int round, int number_of_rounds,
194                       int exec_th, gcov_type count_th)
195 {
196   bool there_exists_another_round;
197   bool cold_block;
198   bool block_not_hot_enough;
199   bool next_round_is_last;
200
201   there_exists_another_round = round < number_of_rounds - 1;
202   next_round_is_last = round + 1 == number_of_rounds - 1;
203
204   cold_block = (flag_reorder_blocks_and_partition 
205                 && BB_PARTITION (bb) == BB_COLD_PARTITION);
206
207   block_not_hot_enough = (bb->frequency < exec_th 
208                           || bb->count < count_th
209                           || probably_never_executed_bb_p (bb));
210
211   if (flag_reorder_blocks_and_partition
212       && next_round_is_last
213       && BB_PARTITION (bb) != BB_COLD_PARTITION)
214     return false;
215   else if (there_exists_another_round
216       && (cold_block || block_not_hot_enough))
217     return true;
218   else 
219     return false;
220 }
221
222 /* Find the traces for Software Trace Cache.  Chain each trace through
223    RBI()->next.  Store the number of traces to N_TRACES and description of
224    traces to TRACES.  */
225
226 static void
227 find_traces (int *n_traces, struct trace *traces)
228 {
229   int i;
230   int number_of_rounds;
231   edge e;
232   edge_iterator ei;
233   fibheap_t heap;
234
235   /* Add one extra round of trace collection when partitioning hot/cold
236      basic blocks into separate sections.  The last round is for all the
237      cold blocks (and ONLY the cold blocks).  */
238
239   number_of_rounds = N_ROUNDS - 1;
240   if (flag_reorder_blocks_and_partition)
241     number_of_rounds = N_ROUNDS;
242
243   /* Insert entry points of function into heap.  */
244   heap = fibheap_new ();
245   max_entry_frequency = 0;
246   max_entry_count = 0;
247   FOR_EACH_EDGE (e, ei, ENTRY_BLOCK_PTR->succs)
248     {
249       bbd[e->dest->index].heap = heap;
250       bbd[e->dest->index].node = fibheap_insert (heap, bb_to_key (e->dest),
251                                                     e->dest);
252       if (e->dest->frequency > max_entry_frequency)
253         max_entry_frequency = e->dest->frequency;
254       if (e->dest->count > max_entry_count)
255         max_entry_count = e->dest->count;
256     }
257
258   /* Find the traces.  */
259   for (i = 0; i < number_of_rounds; i++)
260     {
261       gcov_type count_threshold;
262
263       if (dump_file)
264         fprintf (dump_file, "STC - round %d\n", i + 1);
265
266       if (max_entry_count < INT_MAX / 1000)
267         count_threshold = max_entry_count * exec_threshold[i] / 1000;
268       else
269         count_threshold = max_entry_count / 1000 * exec_threshold[i];
270
271       find_traces_1_round (REG_BR_PROB_BASE * branch_threshold[i] / 1000,
272                            max_entry_frequency * exec_threshold[i] / 1000,
273                            count_threshold, traces, n_traces, i, &heap,
274                            number_of_rounds);
275     }
276   fibheap_delete (heap);
277
278   if (dump_file)
279     {
280       for (i = 0; i < *n_traces; i++)
281         {
282           basic_block bb;
283           fprintf (dump_file, "Trace %d (round %d):  ", i + 1,
284                    traces[i].round + 1);
285           for (bb = traces[i].first; bb != traces[i].last; bb = bb->rbi->next)
286             fprintf (dump_file, "%d [%d] ", bb->index, bb->frequency);
287           fprintf (dump_file, "%d [%d]\n", bb->index, bb->frequency);
288         }
289       fflush (dump_file);
290     }
291 }
292
293 /* Rotate loop whose back edge is BACK_EDGE in the tail of trace TRACE
294    (with sequential number TRACE_N).  */
295
296 static basic_block
297 rotate_loop (edge back_edge, struct trace *trace, int trace_n)
298 {
299   basic_block bb;
300
301   /* Information about the best end (end after rotation) of the loop.  */
302   basic_block best_bb = NULL;
303   edge best_edge = NULL;
304   int best_freq = -1;
305   gcov_type best_count = -1;
306   /* The best edge is preferred when its destination is not visited yet
307      or is a start block of some trace.  */
308   bool is_preferred = false;
309
310   /* Find the most frequent edge that goes out from current trace.  */
311   bb = back_edge->dest;
312   do
313     {
314       edge e;
315       edge_iterator ei;
316
317       FOR_EACH_EDGE (e, ei, bb->succs)
318         if (e->dest != EXIT_BLOCK_PTR
319             && e->dest->rbi->visited != trace_n
320             && (e->flags & EDGE_CAN_FALLTHRU)
321             && !(e->flags & EDGE_COMPLEX))
322         {
323           if (is_preferred)
324             {
325               /* The best edge is preferred.  */
326               if (!e->dest->rbi->visited
327                   || bbd[e->dest->index].start_of_trace >= 0)
328                 {
329                   /* The current edge E is also preferred.  */
330                   int freq = EDGE_FREQUENCY (e);
331                   if (freq > best_freq || e->count > best_count)
332                     {
333                       best_freq = freq;
334                       best_count = e->count;
335                       best_edge = e;
336                       best_bb = bb;
337                     }
338                 }
339             }
340           else
341             {
342               if (!e->dest->rbi->visited
343                   || bbd[e->dest->index].start_of_trace >= 0)
344                 {
345                   /* The current edge E is preferred.  */
346                   is_preferred = true;
347                   best_freq = EDGE_FREQUENCY (e);
348                   best_count = e->count;
349                   best_edge = e;
350                   best_bb = bb;
351                 }
352               else
353                 {
354                   int freq = EDGE_FREQUENCY (e);
355                   if (!best_edge || freq > best_freq || e->count > best_count)
356                     {
357                       best_freq = freq;
358                       best_count = e->count;
359                       best_edge = e;
360                       best_bb = bb;
361                     }
362                 }
363             }
364         }
365       bb = bb->rbi->next;
366     }
367   while (bb != back_edge->dest);
368
369   if (best_bb)
370     {
371       /* Rotate the loop so that the BEST_EDGE goes out from the last block of
372          the trace.  */
373       if (back_edge->dest == trace->first)
374         {
375           trace->first = best_bb->rbi->next;
376         }
377       else
378         {
379           basic_block prev_bb;
380
381           for (prev_bb = trace->first;
382                prev_bb->rbi->next != back_edge->dest;
383                prev_bb = prev_bb->rbi->next)
384             ;
385           prev_bb->rbi->next = best_bb->rbi->next;
386
387           /* Try to get rid of uncond jump to cond jump.  */
388           if (EDGE_COUNT (prev_bb->succs) == 1)
389             {
390               basic_block header = EDGE_SUCC (prev_bb, 0)->dest;
391
392               /* Duplicate HEADER if it is a small block containing cond jump
393                  in the end.  */
394               if (any_condjump_p (BB_END (header)) && copy_bb_p (header, 0)
395                   && !find_reg_note (BB_END (header), REG_CROSSING_JUMP, 
396                                      NULL_RTX))
397                 {
398                   copy_bb (header, EDGE_SUCC (prev_bb, 0), prev_bb, trace_n);
399                 }
400             }
401         }
402     }
403   else
404     {
405       /* We have not found suitable loop tail so do no rotation.  */
406       best_bb = back_edge->src;
407     }
408   best_bb->rbi->next = NULL;
409   return best_bb;
410 }
411
412 /* This function marks BB that it was visited in trace number TRACE.  */
413
414 static void
415 mark_bb_visited (basic_block bb, int trace)
416 {
417   bb->rbi->visited = trace;
418   if (bbd[bb->index].heap)
419     {
420       fibheap_delete_node (bbd[bb->index].heap, bbd[bb->index].node);
421       bbd[bb->index].heap = NULL;
422       bbd[bb->index].node = NULL;
423     }
424 }
425
426 /* One round of finding traces. Find traces for BRANCH_TH and EXEC_TH i.e. do
427    not include basic blocks their probability is lower than BRANCH_TH or their
428    frequency is lower than EXEC_TH into traces (or count is lower than
429    COUNT_TH).  It stores the new traces into TRACES and modifies the number of
430    traces *N_TRACES. Sets the round (which the trace belongs to) to ROUND. It
431    expects that starting basic blocks are in *HEAP and at the end it deletes
432    *HEAP and stores starting points for the next round into new *HEAP.  */
433
434 static void
435 find_traces_1_round (int branch_th, int exec_th, gcov_type count_th,
436                      struct trace *traces, int *n_traces, int round,
437                      fibheap_t *heap, int number_of_rounds)
438 {
439   /* The following variable refers to the last round in which non-"cold" 
440      blocks may be collected into a trace.  */
441
442   int last_round = N_ROUNDS - 1;
443
444   /* Heap for discarded basic blocks which are possible starting points for
445      the next round.  */
446   fibheap_t new_heap = fibheap_new ();
447
448   while (!fibheap_empty (*heap))
449     {
450       basic_block bb;
451       struct trace *trace;
452       edge best_edge, e;
453       fibheapkey_t key;
454       edge_iterator ei;
455
456       bb = fibheap_extract_min (*heap);
457       bbd[bb->index].heap = NULL;
458       bbd[bb->index].node = NULL;
459
460       if (dump_file)
461         fprintf (dump_file, "Getting bb %d\n", bb->index);
462
463       /* If the BB's frequency is too low send BB to the next round.  When
464          partitioning hot/cold blocks into separate sections, make sure all
465          the cold blocks (and ONLY the cold blocks) go into the (extra) final
466          round.  */
467
468       if (push_to_next_round_p (bb, round, number_of_rounds, exec_th, 
469                                 count_th))
470         {
471           int key = bb_to_key (bb);
472           bbd[bb->index].heap = new_heap;
473           bbd[bb->index].node = fibheap_insert (new_heap, key, bb);
474
475           if (dump_file)
476             fprintf (dump_file,
477                      "  Possible start point of next round: %d (key: %d)\n",
478                      bb->index, key);
479           continue;
480         }
481
482       trace = traces + *n_traces;
483       trace->first = bb;
484       trace->round = round;
485       trace->length = 0;
486       (*n_traces)++;
487
488       do
489         {
490           int prob, freq;
491
492           /* The probability and frequency of the best edge.  */
493           int best_prob = INT_MIN / 2;
494           int best_freq = INT_MIN / 2;
495
496           best_edge = NULL;
497           mark_bb_visited (bb, *n_traces);
498           trace->length++;
499
500           if (dump_file)
501             fprintf (dump_file, "Basic block %d was visited in trace %d\n",
502                      bb->index, *n_traces - 1);
503
504           /* Select the successor that will be placed after BB.  */
505           FOR_EACH_EDGE (e, ei, bb->succs)
506             {
507               gcc_assert (!(e->flags & EDGE_FAKE));
508
509               if (e->dest == EXIT_BLOCK_PTR)
510                 continue;
511
512               if (e->dest->rbi->visited
513                   && e->dest->rbi->visited != *n_traces)
514                 continue;
515
516               if (BB_PARTITION (e->dest) == BB_COLD_PARTITION
517                   && round < last_round)
518                 continue;
519
520               prob = e->probability;
521               freq = EDGE_FREQUENCY (e);
522
523               /* Edge that cannot be fallthru or improbable or infrequent
524                  successor (i.e. it is unsuitable successor).  */
525               if (!(e->flags & EDGE_CAN_FALLTHRU) || (e->flags & EDGE_COMPLEX)
526                   || prob < branch_th || freq < exec_th || e->count < count_th)
527                 continue;
528
529               /* If partitioning hot/cold basic blocks, don't consider edges
530                  that cross section boundaries.  */
531
532               if (better_edge_p (bb, e, prob, freq, best_prob, best_freq,
533                                  best_edge))
534                 {
535                   best_edge = e;
536                   best_prob = prob;
537                   best_freq = freq;
538                 }
539             }
540
541           /* If the best destination has multiple predecessors, and can be
542              duplicated cheaper than a jump, don't allow it to be added
543              to a trace.  We'll duplicate it when connecting traces.  */
544           if (best_edge && EDGE_COUNT (best_edge->dest->preds) >= 2
545               && copy_bb_p (best_edge->dest, 0))
546             best_edge = NULL;
547
548           /* Add all non-selected successors to the heaps.  */
549           FOR_EACH_EDGE (e, ei, bb->succs)
550             {
551               if (e == best_edge
552                   || e->dest == EXIT_BLOCK_PTR
553                   || e->dest->rbi->visited)
554                 continue;
555
556               key = bb_to_key (e->dest);
557
558               if (bbd[e->dest->index].heap)
559                 {
560                   /* E->DEST is already in some heap.  */
561                   if (key != bbd[e->dest->index].node->key)
562                     {
563                       if (dump_file)
564                         {
565                           fprintf (dump_file,
566                                    "Changing key for bb %d from %ld to %ld.\n",
567                                    e->dest->index,
568                                    (long) bbd[e->dest->index].node->key,
569                                    key);
570                         }
571                       fibheap_replace_key (bbd[e->dest->index].heap,
572                                            bbd[e->dest->index].node, key);
573                     }
574                 }
575               else
576                 {
577                   fibheap_t which_heap = *heap;
578
579                   prob = e->probability;
580                   freq = EDGE_FREQUENCY (e);
581
582                   if (!(e->flags & EDGE_CAN_FALLTHRU)
583                       || (e->flags & EDGE_COMPLEX)
584                       || prob < branch_th || freq < exec_th
585                       || e->count < count_th)
586                     {
587                       /* When partitioning hot/cold basic blocks, make sure
588                          the cold blocks (and only the cold blocks) all get
589                          pushed to the last round of trace collection.  */
590
591                       if (push_to_next_round_p (e->dest, round, 
592                                                 number_of_rounds,
593                                                 exec_th, count_th))
594                         which_heap = new_heap;
595                     }
596
597                   bbd[e->dest->index].heap = which_heap;
598                   bbd[e->dest->index].node = fibheap_insert (which_heap,
599                                                                 key, e->dest);
600
601                   if (dump_file)
602                     {
603                       fprintf (dump_file,
604                                "  Possible start of %s round: %d (key: %ld)\n",
605                                (which_heap == new_heap) ? "next" : "this",
606                                e->dest->index, (long) key);
607                     }
608
609                 }
610             }
611
612           if (best_edge) /* Suitable successor was found.  */
613             {
614               if (best_edge->dest->rbi->visited == *n_traces)
615                 {
616                   /* We do nothing with one basic block loops.  */
617                   if (best_edge->dest != bb)
618                     {
619                       if (EDGE_FREQUENCY (best_edge)
620                           > 4 * best_edge->dest->frequency / 5)
621                         {
622                           /* The loop has at least 4 iterations.  If the loop
623                              header is not the first block of the function
624                              we can rotate the loop.  */
625
626                           if (best_edge->dest != ENTRY_BLOCK_PTR->next_bb)
627                             {
628                               if (dump_file)
629                                 {
630                                   fprintf (dump_file,
631                                            "Rotating loop %d - %d\n",
632                                            best_edge->dest->index, bb->index);
633                                 }
634                               bb->rbi->next = best_edge->dest;
635                               bb = rotate_loop (best_edge, trace, *n_traces);
636                             }
637                         }
638                       else
639                         {
640                           /* The loop has less than 4 iterations.  */
641
642                           /* Check whether there is another edge from BB.  */
643                           edge another_edge;
644                           FOR_EACH_EDGE (another_edge, ei, bb->succs)
645                             if (another_edge != best_edge)
646                               break;
647
648                           if (!another_edge && copy_bb_p (best_edge->dest,
649                                                           !optimize_size))
650                             {
651                               bb = copy_bb (best_edge->dest, best_edge, bb,
652                                             *n_traces);
653                             }
654                         }
655                     }
656
657                   /* Terminate the trace.  */
658                   break;
659                 }
660               else
661                 {
662                   /* Check for a situation
663
664                     A
665                    /|
666                   B |
667                    \|
668                     C
669
670                   where
671                   EDGE_FREQUENCY (AB) + EDGE_FREQUENCY (BC)
672                     >= EDGE_FREQUENCY (AC).
673                   (i.e. 2 * B->frequency >= EDGE_FREQUENCY (AC) )
674                   Best ordering is then A B C.
675
676                   This situation is created for example by:
677
678                   if (A) B;
679                   C;
680
681                   */
682
683                   FOR_EACH_EDGE (e, ei, bb->succs)
684                     if (e != best_edge
685                         && (e->flags & EDGE_CAN_FALLTHRU)
686                         && !(e->flags & EDGE_COMPLEX)
687                         && !e->dest->rbi->visited
688                         && EDGE_COUNT (e->dest->preds) == 1
689                         && !(e->flags & EDGE_CROSSING)
690                         && EDGE_COUNT (e->dest->succs) == 1
691                         && (EDGE_SUCC (e->dest, 0)->flags & EDGE_CAN_FALLTHRU)
692                         && !(EDGE_SUCC (e->dest, 0)->flags & EDGE_COMPLEX)
693                         && EDGE_SUCC (e->dest, 0)->dest == best_edge->dest
694                         && 2 * e->dest->frequency >= EDGE_FREQUENCY (best_edge))
695                       {
696                         best_edge = e;
697                         if (dump_file)
698                           fprintf (dump_file, "Selecting BB %d\n",
699                                    best_edge->dest->index);
700                         break;
701                       }
702
703                   bb->rbi->next = best_edge->dest;
704                   bb = best_edge->dest;
705                 }
706             }
707         }
708       while (best_edge);
709       trace->last = bb;
710       bbd[trace->first->index].start_of_trace = *n_traces - 1;
711       bbd[trace->last->index].end_of_trace = *n_traces - 1;
712
713       /* The trace is terminated so we have to recount the keys in heap
714          (some block can have a lower key because now one of its predecessors
715          is an end of the trace).  */
716       FOR_EACH_EDGE (e, ei, bb->succs)
717         {
718           if (e->dest == EXIT_BLOCK_PTR
719               || e->dest->rbi->visited)
720             continue;
721
722           if (bbd[e->dest->index].heap)
723             {
724               key = bb_to_key (e->dest);
725               if (key != bbd[e->dest->index].node->key)
726                 {
727                   if (dump_file)
728                     {
729                       fprintf (dump_file,
730                                "Changing key for bb %d from %ld to %ld.\n",
731                                e->dest->index,
732                                (long) bbd[e->dest->index].node->key, key);
733                     }
734                   fibheap_replace_key (bbd[e->dest->index].heap,
735                                        bbd[e->dest->index].node,
736                                        key);
737                 }
738             }
739         }
740     }
741
742   fibheap_delete (*heap);
743
744   /* "Return" the new heap.  */
745   *heap = new_heap;
746 }
747
748 /* Create a duplicate of the basic block OLD_BB and redirect edge E to it, add
749    it to trace after BB, mark OLD_BB visited and update pass' data structures
750    (TRACE is a number of trace which OLD_BB is duplicated to).  */
751
752 static basic_block
753 copy_bb (basic_block old_bb, edge e, basic_block bb, int trace)
754 {
755   basic_block new_bb;
756
757   new_bb = duplicate_block (old_bb, e);
758   BB_COPY_PARTITION (new_bb, old_bb);
759
760   gcc_assert (e->dest == new_bb);
761   gcc_assert (!e->dest->rbi->visited);
762
763   if (dump_file)
764     fprintf (dump_file,
765              "Duplicated bb %d (created bb %d)\n",
766              old_bb->index, new_bb->index);
767   new_bb->rbi->visited = trace;
768   new_bb->rbi->next = bb->rbi->next;
769   bb->rbi->next = new_bb;
770
771   if (new_bb->index >= array_size || last_basic_block > array_size)
772     {
773       int i;
774       int new_size;
775
776       new_size = MAX (last_basic_block, new_bb->index + 1);
777       new_size = GET_ARRAY_SIZE (new_size);
778       bbd = xrealloc (bbd, new_size * sizeof (bbro_basic_block_data));
779       for (i = array_size; i < new_size; i++)
780         {
781           bbd[i].start_of_trace = -1;
782           bbd[i].end_of_trace = -1;
783           bbd[i].heap = NULL;
784           bbd[i].node = NULL;
785         }
786       array_size = new_size;
787
788       if (dump_file)
789         {
790           fprintf (dump_file,
791                    "Growing the dynamic array to %d elements.\n",
792                    array_size);
793         }
794     }
795
796   return new_bb;
797 }
798
799 /* Compute and return the key (for the heap) of the basic block BB.  */
800
801 static fibheapkey_t
802 bb_to_key (basic_block bb)
803 {
804   edge e;
805   edge_iterator ei;
806   int priority = 0;
807
808   /* Do not start in probably never executed blocks.  */
809
810   if (BB_PARTITION (bb) == BB_COLD_PARTITION
811       || probably_never_executed_bb_p (bb))
812     return BB_FREQ_MAX;
813
814   /* Prefer blocks whose predecessor is an end of some trace
815      or whose predecessor edge is EDGE_DFS_BACK.  */
816   FOR_EACH_EDGE (e, ei, bb->preds)
817     {
818       if ((e->src != ENTRY_BLOCK_PTR && bbd[e->src->index].end_of_trace >= 0)
819           || (e->flags & EDGE_DFS_BACK))
820         {
821           int edge_freq = EDGE_FREQUENCY (e);
822
823           if (edge_freq > priority)
824             priority = edge_freq;
825         }
826     }
827
828   if (priority)
829     /* The block with priority should have significantly lower key.  */
830     return -(100 * BB_FREQ_MAX + 100 * priority + bb->frequency);
831   return -bb->frequency;
832 }
833
834 /* Return true when the edge E from basic block BB is better than the temporary
835    best edge (details are in function).  The probability of edge E is PROB. The
836    frequency of the successor is FREQ.  The current best probability is
837    BEST_PROB, the best frequency is BEST_FREQ.
838    The edge is considered to be equivalent when PROB does not differ much from
839    BEST_PROB; similarly for frequency.  */
840
841 static bool
842 better_edge_p (basic_block bb, edge e, int prob, int freq, int best_prob,
843                int best_freq, edge cur_best_edge)
844 {
845   bool is_better_edge;
846
847   /* The BEST_* values do not have to be best, but can be a bit smaller than
848      maximum values.  */
849   int diff_prob = best_prob / 10;
850   int diff_freq = best_freq / 10;
851
852   if (prob > best_prob + diff_prob)
853     /* The edge has higher probability than the temporary best edge.  */
854     is_better_edge = true;
855   else if (prob < best_prob - diff_prob)
856     /* The edge has lower probability than the temporary best edge.  */
857     is_better_edge = false;
858   else if (freq < best_freq - diff_freq)
859     /* The edge and the temporary best edge  have almost equivalent
860        probabilities.  The higher frequency of a successor now means
861        that there is another edge going into that successor.
862        This successor has lower frequency so it is better.  */
863     is_better_edge = true;
864   else if (freq > best_freq + diff_freq)
865     /* This successor has higher frequency so it is worse.  */
866     is_better_edge = false;
867   else if (e->dest->prev_bb == bb)
868     /* The edges have equivalent probabilities and the successors
869        have equivalent frequencies.  Select the previous successor.  */
870     is_better_edge = true;
871   else
872     is_better_edge = false;
873
874   /* If we are doing hot/cold partitioning, make sure that we always favor
875      non-crossing edges over crossing edges.  */
876
877   if (!is_better_edge
878       && flag_reorder_blocks_and_partition 
879       && cur_best_edge 
880       && (cur_best_edge->flags & EDGE_CROSSING)
881       && !(e->flags & EDGE_CROSSING))
882     is_better_edge = true;
883
884   return is_better_edge;
885 }
886
887 /* Connect traces in array TRACES, N_TRACES is the count of traces.  */
888
889 static void
890 connect_traces (int n_traces, struct trace *traces)
891 {
892   int i;
893   int unconnected_hot_trace_count = 0;
894   bool cold_connected = true;
895   bool *connected;
896   bool *cold_traces;
897   int last_trace;
898   int freq_threshold;
899   gcov_type count_threshold;
900
901   freq_threshold = max_entry_frequency * DUPLICATION_THRESHOLD / 1000;
902   if (max_entry_count < INT_MAX / 1000)
903     count_threshold = max_entry_count * DUPLICATION_THRESHOLD / 1000;
904   else
905     count_threshold = max_entry_count / 1000 * DUPLICATION_THRESHOLD;
906
907   connected = xcalloc (n_traces, sizeof (bool));
908   last_trace = -1;
909
910   /* If we are partitioning hot/cold basic blocks, mark the cold
911      traces as already connected, to remove them from consideration
912      for connection to the hot traces.  After the hot traces have all
913      been connected (determined by "unconnected_hot_trace_count"), we
914      will go back and connect the cold traces.  */
915
916   cold_traces = xcalloc (n_traces, sizeof (bool));
917
918   if (flag_reorder_blocks_and_partition)
919     for (i = 0; i < n_traces; i++)
920       {
921         if (BB_PARTITION (traces[i].first) == BB_COLD_PARTITION)
922           {
923             connected[i] = true;
924             cold_traces[i] = true;
925             cold_connected = false;
926           }
927         else
928           unconnected_hot_trace_count++;
929       }
930   
931   for (i = 0; i < n_traces || !cold_connected ; i++)
932     {
933       int t = i;
934       int t2;
935       edge e, best;
936       int best_len;
937
938       /* If we are partitioning hot/cold basic blocks, check to see
939          if all the hot traces have been connected.  If so, go back
940          and mark the cold traces as unconnected so we can connect
941          them up too.  Re-set "i" to the first (unconnected) cold
942          trace. Use flag "cold_connected" to make sure we don't do
943          this step more than once.  */
944
945       if (flag_reorder_blocks_and_partition
946           && (i >= n_traces || unconnected_hot_trace_count <= 0)
947           && !cold_connected)
948         {
949           int j;
950           int first_cold_trace = -1;
951
952           for (j = 0; j < n_traces; j++)
953             if (cold_traces[j])
954               {
955                 connected[j] = false;
956                 if (first_cold_trace == -1)
957                   first_cold_trace = j;
958               }
959           i = t = first_cold_trace;
960           cold_connected = true;
961         }
962
963       if (connected[t])
964         continue;
965
966       connected[t] = true;
967       if (unconnected_hot_trace_count > 0)
968         unconnected_hot_trace_count--;
969
970       /* Find the predecessor traces.  */
971       for (t2 = t; t2 > 0;)
972         {
973           edge_iterator ei;
974           best = NULL;
975           best_len = 0;
976           FOR_EACH_EDGE (e, ei, traces[t2].first->preds)
977             {
978               int si = e->src->index;
979
980               if (e->src != ENTRY_BLOCK_PTR
981                   && (e->flags & EDGE_CAN_FALLTHRU)
982                   && !(e->flags & EDGE_COMPLEX)
983                   && bbd[si].end_of_trace >= 0
984                   && !connected[bbd[si].end_of_trace]
985                   && (!best
986                       || e->probability > best->probability
987                       || (e->probability == best->probability
988                           && traces[bbd[si].end_of_trace].length > best_len)))
989                 {
990                   best = e;
991                   best_len = traces[bbd[si].end_of_trace].length;
992                 }
993             }
994           if (best)
995             {
996               best->src->rbi->next = best->dest;
997               t2 = bbd[best->src->index].end_of_trace;
998               connected[t2] = true;
999
1000               if (unconnected_hot_trace_count > 0)
1001                 unconnected_hot_trace_count--;
1002
1003               if (dump_file)
1004                 {
1005                   fprintf (dump_file, "Connection: %d %d\n",
1006                            best->src->index, best->dest->index);
1007                 }
1008             }
1009           else
1010             break;
1011         }
1012
1013       if (last_trace >= 0)
1014         traces[last_trace].last->rbi->next = traces[t2].first;
1015       last_trace = t;
1016
1017       /* Find the successor traces.  */
1018       while (1)
1019         {
1020           /* Find the continuation of the chain.  */
1021           edge_iterator ei;
1022           best = NULL;
1023           best_len = 0;
1024           FOR_EACH_EDGE (e, ei, traces[t].last->succs)
1025             {
1026               int di = e->dest->index;
1027
1028               if (e->dest != EXIT_BLOCK_PTR
1029                   && (e->flags & EDGE_CAN_FALLTHRU)
1030                   && !(e->flags & EDGE_COMPLEX)
1031                   && bbd[di].start_of_trace >= 0
1032                   && !connected[bbd[di].start_of_trace]
1033                   && (!best
1034                       || e->probability > best->probability
1035                       || (e->probability == best->probability
1036                           && traces[bbd[di].start_of_trace].length > best_len)))
1037                 {
1038                   best = e;
1039                   best_len = traces[bbd[di].start_of_trace].length;
1040                 }
1041             }
1042
1043           if (best)
1044             {
1045               if (dump_file)
1046                 {
1047                   fprintf (dump_file, "Connection: %d %d\n",
1048                            best->src->index, best->dest->index);
1049                 }
1050               t = bbd[best->dest->index].start_of_trace;
1051               traces[last_trace].last->rbi->next = traces[t].first;
1052               connected[t] = true;
1053               if (unconnected_hot_trace_count > 0)
1054                 unconnected_hot_trace_count--;
1055               last_trace = t;
1056             }
1057           else
1058             {
1059               /* Try to connect the traces by duplication of 1 block.  */
1060               edge e2;
1061               basic_block next_bb = NULL;
1062               bool try_copy = false;
1063
1064               FOR_EACH_EDGE (e, ei, traces[t].last->succs)
1065                 if (e->dest != EXIT_BLOCK_PTR
1066                     && (e->flags & EDGE_CAN_FALLTHRU)
1067                     && !(e->flags & EDGE_COMPLEX)
1068                     && (!best || e->probability > best->probability))
1069                   {
1070                     edge_iterator ei;
1071                     edge best2 = NULL;
1072                     int best2_len = 0;
1073
1074                     /* If the destination is a start of a trace which is only
1075                        one block long, then no need to search the successor
1076                        blocks of the trace.  Accept it.  */
1077                     if (bbd[e->dest->index].start_of_trace >= 0
1078                         && traces[bbd[e->dest->index].start_of_trace].length
1079                            == 1)
1080                       {
1081                         best = e;
1082                         try_copy = true;
1083                         continue;
1084                       }
1085
1086                     FOR_EACH_EDGE (e2, ei, e->dest->succs)
1087                       {
1088                         int di = e2->dest->index;
1089
1090                         if (e2->dest == EXIT_BLOCK_PTR
1091                             || ((e2->flags & EDGE_CAN_FALLTHRU)
1092                                 && !(e2->flags & EDGE_COMPLEX)
1093                                 && bbd[di].start_of_trace >= 0
1094                                 && !connected[bbd[di].start_of_trace]
1095                                 && (EDGE_FREQUENCY (e2) >= freq_threshold)
1096                                 && (e2->count >= count_threshold)
1097                                 && (!best2
1098                                     || e2->probability > best2->probability
1099                                     || (e2->probability == best2->probability
1100                                         && traces[bbd[di].start_of_trace].length
1101                                            > best2_len))))
1102                           {
1103                             best = e;
1104                             best2 = e2;
1105                             if (e2->dest != EXIT_BLOCK_PTR)
1106                               best2_len = traces[bbd[di].start_of_trace].length;
1107                             else
1108                               best2_len = INT_MAX;
1109                             next_bb = e2->dest;
1110                             try_copy = true;
1111                           }
1112                       }
1113                   }
1114
1115               if (flag_reorder_blocks_and_partition)
1116                 try_copy = false;
1117
1118               /* Copy tiny blocks always; copy larger blocks only when the
1119                  edge is traversed frequently enough.  */
1120               if (try_copy
1121                   && copy_bb_p (best->dest,
1122                                 !optimize_size
1123                                 && EDGE_FREQUENCY (best) >= freq_threshold
1124                                 && best->count >= count_threshold))
1125                 {
1126                   basic_block new_bb;
1127
1128                   if (dump_file)
1129                     {
1130                       fprintf (dump_file, "Connection: %d %d ",
1131                                traces[t].last->index, best->dest->index);
1132                       if (!next_bb)
1133                         fputc ('\n', dump_file);
1134                       else if (next_bb == EXIT_BLOCK_PTR)
1135                         fprintf (dump_file, "exit\n");
1136                       else
1137                         fprintf (dump_file, "%d\n", next_bb->index);
1138                     }
1139
1140                   new_bb = copy_bb (best->dest, best, traces[t].last, t);
1141                   traces[t].last = new_bb;
1142                   if (next_bb && next_bb != EXIT_BLOCK_PTR)
1143                     {
1144                       t = bbd[next_bb->index].start_of_trace;
1145                       traces[last_trace].last->rbi->next = traces[t].first;
1146                       connected[t] = true;
1147                       if (unconnected_hot_trace_count > 0)
1148                         unconnected_hot_trace_count--;
1149                       last_trace = t;
1150                     }
1151                   else
1152                     break;      /* Stop finding the successor traces.  */
1153                 }
1154               else
1155                 break;  /* Stop finding the successor traces.  */
1156             }
1157         }
1158     }
1159
1160   if (dump_file)
1161     {
1162       basic_block bb;
1163
1164       fprintf (dump_file, "Final order:\n");
1165       for (bb = traces[0].first; bb; bb = bb->rbi->next)
1166         fprintf (dump_file, "%d ", bb->index);
1167       fprintf (dump_file, "\n");
1168       fflush (dump_file);
1169     }
1170
1171   FREE (connected);
1172   FREE (cold_traces);
1173 }
1174
1175 /* Return true when BB can and should be copied. CODE_MAY_GROW is true
1176    when code size is allowed to grow by duplication.  */
1177
1178 static bool
1179 copy_bb_p (basic_block bb, int code_may_grow)
1180 {
1181   int size = 0;
1182   int max_size = uncond_jump_length;
1183   rtx insn;
1184
1185   if (!bb->frequency)
1186     return false;
1187   if (EDGE_COUNT (bb->preds) < 2)
1188     return false;
1189   if (!can_duplicate_block_p (bb))
1190     return false;
1191
1192   /* Avoid duplicating blocks which have many successors (PR/13430).  */
1193   if (EDGE_COUNT (bb->succs) > 8)
1194     return false;
1195
1196   if (code_may_grow && maybe_hot_bb_p (bb))
1197     max_size *= 8;
1198
1199   for (insn = BB_HEAD (bb); insn != NEXT_INSN (BB_END (bb));
1200        insn = NEXT_INSN (insn))
1201     {
1202       if (INSN_P (insn))
1203         size += get_attr_length (insn);
1204     }
1205
1206   if (size <= max_size)
1207     return true;
1208
1209   if (dump_file)
1210     {
1211       fprintf (dump_file,
1212                "Block %d can't be copied because its size = %d.\n",
1213                bb->index, size);
1214     }
1215
1216   return false;
1217 }
1218
1219 /* Return the length of unconditional jump instruction.  */
1220
1221 static int
1222 get_uncond_jump_length (void)
1223 {
1224   rtx label, jump;
1225   int length;
1226
1227   label = emit_label_before (gen_label_rtx (), get_insns ());
1228   jump = emit_jump_insn (gen_jump (label));
1229
1230   length = get_attr_length (jump);
1231
1232   delete_insn (jump);
1233   delete_insn (label);
1234   return length;
1235 }
1236
1237 static void
1238 add_unlikely_executed_notes (void)
1239 {
1240   basic_block bb;
1241
1242   /* Add the UNLIKELY_EXECUTED_NOTES to each cold basic block.  */
1243
1244   FOR_EACH_BB (bb)
1245     if (BB_PARTITION (bb) == BB_COLD_PARTITION)
1246       mark_bb_for_unlikely_executed_section (bb);
1247 }
1248
1249 /* Find the basic blocks that are rarely executed and need to be moved to
1250    a separate section of the .o file (to cut down on paging and improve
1251    cache locality).  */
1252
1253 static void
1254 find_rarely_executed_basic_blocks_and_crossing_edges (edge *crossing_edges, 
1255                                                       int *n_crossing_edges, 
1256                                                       int *max_idx)
1257 {
1258   basic_block bb;
1259   bool has_hot_blocks = false;
1260   edge e;
1261   int i;
1262   edge_iterator ei;
1263
1264   /* Mark which partition (hot/cold) each basic block belongs in.  */
1265   
1266   FOR_EACH_BB (bb)
1267     {
1268       if (probably_never_executed_bb_p (bb))
1269         BB_SET_PARTITION (bb, BB_COLD_PARTITION);
1270       else
1271         {
1272           BB_SET_PARTITION (bb, BB_HOT_PARTITION);
1273           has_hot_blocks = true;
1274         }
1275     }
1276
1277   /* Since all "hot" basic blocks will eventually be scheduled before all
1278      cold basic blocks, make *sure* the real function entry block is in
1279      the hot partition (if there is one).  */
1280   
1281   if (has_hot_blocks)
1282     FOR_EACH_EDGE (e, ei, ENTRY_BLOCK_PTR->succs)
1283       if (e->dest->index >= 0)
1284         {
1285           BB_SET_PARTITION (e->dest, BB_HOT_PARTITION);
1286           break;
1287         }
1288
1289   /* Mark every edge that crosses between sections.  */
1290
1291   i = 0;
1292   if (targetm.have_named_sections)
1293     {
1294       FOR_EACH_BB (bb)
1295         FOR_EACH_EDGE (e, ei, bb->succs)
1296           {
1297             if (e->src != ENTRY_BLOCK_PTR
1298                 && e->dest != EXIT_BLOCK_PTR
1299                 && BB_PARTITION (e->src) != BB_PARTITION (e->dest))
1300               {
1301                 e->flags |= EDGE_CROSSING;
1302                 if (i == *max_idx)
1303                   {
1304                     *max_idx *= 2;
1305                     crossing_edges = xrealloc (crossing_edges,
1306                                                (*max_idx) * sizeof (edge));
1307                   }
1308                 crossing_edges[i++] = e;
1309               }
1310             else
1311               e->flags &= ~EDGE_CROSSING;
1312           }
1313     }
1314   *n_crossing_edges = i;
1315 }
1316
1317 /* Add NOTE_INSN_UNLIKELY_EXECUTED_CODE to top of basic block.   This note
1318    is later used to mark the basic block to be put in the 
1319    unlikely-to-be-executed section of the .o file.  */
1320
1321 static void
1322 mark_bb_for_unlikely_executed_section (basic_block bb) 
1323 {
1324   rtx cur_insn;
1325   rtx insert_insn = NULL;
1326   rtx new_note;
1327   
1328   /* Insert new NOTE immediately after  BASIC_BLOCK note.  */
1329
1330   for (cur_insn = BB_HEAD (bb); cur_insn != NEXT_INSN (BB_END (bb));
1331        cur_insn = NEXT_INSN (cur_insn))
1332     if (GET_CODE (cur_insn) == NOTE
1333         && NOTE_LINE_NUMBER (cur_insn) == NOTE_INSN_BASIC_BLOCK)
1334       {
1335         insert_insn = cur_insn;
1336         break;
1337       }
1338     
1339   /* If basic block does not contain a NOTE_INSN_BASIC_BLOCK, there is
1340      a major problem.  */
1341   gcc_assert (insert_insn);
1342
1343   /* Insert note and assign basic block number to it.  */
1344   
1345   new_note = emit_note_after (NOTE_INSN_UNLIKELY_EXECUTED_CODE, 
1346                               insert_insn);
1347   NOTE_BASIC_BLOCK (new_note) = bb;
1348 }
1349
1350 /* If any destination of a crossing edge does not have a label, add label;
1351    Convert any fall-through crossing edges (for blocks that do not contain
1352    a jump) to unconditional jumps.  */
1353
1354 static void 
1355 add_labels_and_missing_jumps (edge *crossing_edges, int n_crossing_edges)
1356 {
1357   int i;
1358   basic_block src;
1359   basic_block dest;
1360   rtx label;
1361   rtx barrier;
1362   rtx new_jump;
1363   
1364   for (i=0; i < n_crossing_edges; i++) 
1365     {
1366       if (crossing_edges[i]) 
1367         {
1368           src = crossing_edges[i]->src; 
1369           dest = crossing_edges[i]->dest;
1370           
1371           /* Make sure dest has a label.  */
1372           
1373           if (dest && (dest != EXIT_BLOCK_PTR))
1374             {
1375               label = block_label (dest);
1376               
1377               /* Make sure source block ends with a jump.  */
1378               
1379               if (src && (src != ENTRY_BLOCK_PTR)) 
1380                 {
1381                   if (!JUMP_P (BB_END (src)))
1382                     /* bb just falls through.  */
1383                     {
1384                       /* make sure there's only one successor */
1385                       gcc_assert (EDGE_COUNT (src->succs) == 1);
1386                       
1387                       /* Find label in dest block.  */
1388                       label = block_label (dest);
1389                       
1390                       new_jump = emit_jump_insn_after (gen_jump (label), 
1391                                                        BB_END (src));
1392                       barrier = emit_barrier_after (new_jump);
1393                       JUMP_LABEL (new_jump) = label;
1394                       LABEL_NUSES (label) += 1;
1395                       src->rbi->footer = unlink_insn_chain (barrier, barrier);
1396                       /* Mark edge as non-fallthru.  */
1397                       crossing_edges[i]->flags &= ~EDGE_FALLTHRU;
1398                     } /* end: 'if (GET_CODE ... '  */
1399                 } /* end: 'if (src && src->index...'  */
1400             } /* end: 'if (dest && dest->index...'  */
1401         } /* end: 'if (crossing_edges[i]...'  */
1402     } /* end for loop  */
1403 }
1404
1405 /* Find any bb's where the fall-through edge is a crossing edge (note that
1406    these bb's must also contain a conditional jump; we've already
1407    dealt with fall-through edges for blocks that didn't have a
1408    conditional jump in the call to add_labels_and_missing_jumps).
1409    Convert the fall-through edge to non-crossing edge by inserting a
1410    new bb to fall-through into.  The new bb will contain an
1411    unconditional jump (crossing edge) to the original fall through
1412    destination.  */
1413
1414 static void 
1415 fix_up_fall_thru_edges (void)
1416 {
1417   basic_block cur_bb;
1418   basic_block new_bb;
1419   edge succ1;
1420   edge succ2;
1421   edge fall_thru;
1422   edge cond_jump = NULL;
1423   edge e;
1424   bool cond_jump_crosses;
1425   int invert_worked;
1426   rtx old_jump;
1427   rtx fall_thru_label;
1428   rtx barrier;
1429   
1430   FOR_EACH_BB (cur_bb)
1431     {
1432       fall_thru = NULL;
1433       if (EDGE_COUNT (cur_bb->succs) > 0)
1434         succ1 = EDGE_SUCC (cur_bb, 0);
1435       else
1436         succ1 = NULL;
1437
1438       if (EDGE_COUNT (cur_bb->succs) > 1)
1439         succ2 = EDGE_SUCC (cur_bb, 1);
1440       else
1441         succ2 = NULL;
1442       
1443       /* Find the fall-through edge.  */
1444       
1445       if (succ1 
1446           && (succ1->flags & EDGE_FALLTHRU))
1447         {
1448           fall_thru = succ1;
1449           cond_jump = succ2;
1450         }
1451       else if (succ2 
1452                && (succ2->flags & EDGE_FALLTHRU))
1453         {
1454           fall_thru = succ2;
1455           cond_jump = succ1;
1456         }
1457       
1458       if (fall_thru && (fall_thru->dest != EXIT_BLOCK_PTR))
1459         {
1460           /* Check to see if the fall-thru edge is a crossing edge.  */
1461         
1462           if (fall_thru->flags & EDGE_CROSSING)
1463             {
1464               /* The fall_thru edge crosses; now check the cond jump edge, if
1465                  it exists.  */
1466               
1467               cond_jump_crosses = true;
1468               invert_worked  = 0;
1469               old_jump = BB_END (cur_bb);
1470               
1471               /* Find the jump instruction, if there is one.  */
1472               
1473               if (cond_jump)
1474                 {
1475                   if (!(cond_jump->flags & EDGE_CROSSING))
1476                     cond_jump_crosses = false;
1477                   
1478                   /* We know the fall-thru edge crosses; if the cond
1479                      jump edge does NOT cross, and its destination is the
1480                      next block in the bb order, invert the jump
1481                      (i.e. fix it so the fall thru does not cross and
1482                      the cond jump does).  */
1483                   
1484                   if (!cond_jump_crosses
1485                       && cur_bb->rbi->next == cond_jump->dest)
1486                     {
1487                       /* Find label in fall_thru block. We've already added
1488                          any missing labels, so there must be one.  */
1489                       
1490                       fall_thru_label = block_label (fall_thru->dest);
1491
1492                       if (old_jump && fall_thru_label)
1493                         invert_worked = invert_jump (old_jump, 
1494                                                      fall_thru_label,0);
1495                       if (invert_worked)
1496                         {
1497                           fall_thru->flags &= ~EDGE_FALLTHRU;
1498                           cond_jump->flags |= EDGE_FALLTHRU;
1499                           update_br_prob_note (cur_bb);
1500                           e = fall_thru;
1501                           fall_thru = cond_jump;
1502                           cond_jump = e;
1503                           cond_jump->flags |= EDGE_CROSSING;
1504                           fall_thru->flags &= ~EDGE_CROSSING;
1505                         }
1506                     }
1507                 }
1508               
1509               if (cond_jump_crosses || !invert_worked)
1510                 {
1511                   /* This is the case where both edges out of the basic
1512                      block are crossing edges. Here we will fix up the
1513                      fall through edge. The jump edge will be taken care
1514                      of later.  */
1515                   
1516                   new_bb = force_nonfallthru (fall_thru);  
1517                   
1518                   if (new_bb)
1519                     {
1520                       new_bb->rbi->next = cur_bb->rbi->next;
1521                       cur_bb->rbi->next = new_bb;
1522                       
1523                       /* Make sure new fall-through bb is in same 
1524                          partition as bb it's falling through from.  */
1525
1526                       BB_COPY_PARTITION (new_bb, cur_bb);
1527                       EDGE_SUCC (new_bb, 0)->flags |= EDGE_CROSSING;
1528                     }
1529                   
1530                   /* Add barrier after new jump */
1531                   
1532                   if (new_bb)
1533                     {
1534                       barrier = emit_barrier_after (BB_END (new_bb));
1535                       new_bb->rbi->footer = unlink_insn_chain (barrier, 
1536                                                                barrier);
1537                     }
1538                   else
1539                     {
1540                       barrier = emit_barrier_after (BB_END (cur_bb));
1541                       cur_bb->rbi->footer = unlink_insn_chain (barrier,
1542                                                                barrier);
1543                     }
1544                 }
1545             }
1546         }
1547     }
1548 }
1549
1550 /* This function checks the destination blockof a "crossing jump" to
1551    see if it has any crossing predecessors that begin with a code label
1552    and end with an unconditional jump.  If so, it returns that predecessor
1553    block.  (This is to avoid creating lots of new basic blocks that all
1554    contain unconditional jumps to the same destination).  */
1555
1556 static basic_block
1557 find_jump_block (basic_block jump_dest) 
1558
1559   basic_block source_bb = NULL; 
1560   edge e;
1561   rtx insn;
1562   edge_iterator ei;
1563
1564   FOR_EACH_EDGE (e, ei, jump_dest->preds)
1565     if (e->flags & EDGE_CROSSING)
1566       {
1567         basic_block src = e->src;
1568         
1569         /* Check each predecessor to see if it has a label, and contains
1570            only one executable instruction, which is an unconditional jump.
1571            If so, we can use it.  */
1572         
1573         if (LABEL_P (BB_HEAD (src)))
1574           for (insn = BB_HEAD (src); 
1575                !INSN_P (insn) && insn != NEXT_INSN (BB_END (src));
1576                insn = NEXT_INSN (insn))
1577             {
1578               if (INSN_P (insn)
1579                   && insn == BB_END (src)
1580                   && JUMP_P (insn)
1581                   && !any_condjump_p (insn))
1582                 {
1583                   source_bb = src;
1584                   break;
1585                 }
1586             }
1587         
1588         if (source_bb)
1589           break;
1590       }
1591
1592   return source_bb;
1593 }
1594
1595 /* Find all BB's with conditional jumps that are crossing edges;
1596    insert a new bb and make the conditional jump branch to the new
1597    bb instead (make the new bb same color so conditional branch won't
1598    be a 'crossing' edge).  Insert an unconditional jump from the
1599    new bb to the original destination of the conditional jump.  */
1600
1601 static void
1602 fix_crossing_conditional_branches (void)
1603 {
1604   basic_block cur_bb;
1605   basic_block new_bb;
1606   basic_block last_bb;
1607   basic_block dest;
1608   basic_block prev_bb;
1609   edge succ1;
1610   edge succ2;
1611   edge crossing_edge;
1612   edge new_edge;
1613   rtx old_jump;
1614   rtx set_src;
1615   rtx old_label = NULL_RTX;
1616   rtx new_label;
1617   rtx new_jump;
1618   rtx barrier;
1619
1620  last_bb = EXIT_BLOCK_PTR->prev_bb;
1621   
1622   FOR_EACH_BB (cur_bb)
1623     {
1624       crossing_edge = NULL;
1625       if (EDGE_COUNT (cur_bb->succs) > 0)
1626         succ1 = EDGE_SUCC (cur_bb, 0);
1627       else
1628         succ1 = NULL;
1629     
1630       if (EDGE_COUNT (cur_bb->succs) > 1)
1631         succ2 = EDGE_SUCC (cur_bb, 1);
1632       else
1633         succ2 = NULL;
1634       
1635       /* We already took care of fall-through edges, so only one successor
1636          can be a crossing edge.  */
1637       
1638       if (succ1 && (succ1->flags & EDGE_CROSSING))
1639         crossing_edge = succ1;
1640       else if (succ2 && (succ2->flags & EDGE_CROSSING))
1641         crossing_edge = succ2;
1642       
1643       if (crossing_edge) 
1644         {
1645           old_jump = BB_END (cur_bb);
1646           
1647           /* Check to make sure the jump instruction is a
1648              conditional jump.  */
1649           
1650           set_src = NULL_RTX;
1651
1652           if (any_condjump_p (old_jump))
1653             {
1654               if (GET_CODE (PATTERN (old_jump)) == SET)
1655                 set_src = SET_SRC (PATTERN (old_jump));
1656               else if (GET_CODE (PATTERN (old_jump)) == PARALLEL)
1657                 {
1658                   set_src = XVECEXP (PATTERN (old_jump), 0,0);
1659                   if (GET_CODE (set_src) == SET)
1660                     set_src = SET_SRC (set_src);
1661                   else
1662                     set_src = NULL_RTX;
1663                 }
1664             }
1665
1666           if (set_src && (GET_CODE (set_src) == IF_THEN_ELSE))
1667             {
1668               if (GET_CODE (XEXP (set_src, 1)) == PC)
1669                 old_label = XEXP (set_src, 2);
1670               else if (GET_CODE (XEXP (set_src, 2)) == PC)
1671                 old_label = XEXP (set_src, 1);
1672               
1673               /* Check to see if new bb for jumping to that dest has
1674                  already been created; if so, use it; if not, create
1675                  a new one.  */
1676
1677               new_bb = find_jump_block (crossing_edge->dest);
1678               
1679               if (new_bb)
1680                 new_label = block_label (new_bb);
1681               else
1682                 {
1683                   /* Create new basic block to be dest for
1684                      conditional jump.  */
1685                   
1686                   new_bb = create_basic_block (NULL, NULL, last_bb);
1687                   new_bb->rbi->next = last_bb->rbi->next;
1688                   last_bb->rbi->next = new_bb;
1689                   prev_bb = last_bb;
1690                   last_bb = new_bb;
1691                   
1692                   /* Update register liveness information.  */
1693                   
1694                   new_bb->global_live_at_start = 
1695                     OBSTACK_ALLOC_REG_SET (&flow_obstack);
1696                   new_bb->global_live_at_end = 
1697                     OBSTACK_ALLOC_REG_SET (&flow_obstack);
1698                   COPY_REG_SET (new_bb->global_live_at_end,
1699                                 prev_bb->global_live_at_end);
1700                   COPY_REG_SET (new_bb->global_live_at_start,
1701                                 prev_bb->global_live_at_end);
1702                   
1703                   /* Put appropriate instructions in new bb.  */
1704                   
1705                   new_label = gen_label_rtx ();
1706                   emit_label_before (new_label, BB_HEAD (new_bb));
1707                   BB_HEAD (new_bb) = new_label;
1708                   
1709                   if (GET_CODE (old_label) == LABEL_REF)
1710                     {
1711                       old_label = JUMP_LABEL (old_jump);
1712                       new_jump = emit_jump_insn_after (gen_jump 
1713                                                        (old_label), 
1714                                                        BB_END (new_bb));
1715                     }
1716                   else
1717                     {
1718                       gcc_assert (HAVE_return
1719                                   && GET_CODE (old_label) == RETURN);
1720                       new_jump = emit_jump_insn_after (gen_return (), 
1721                                                        BB_END (new_bb));
1722                     }
1723                   
1724                   barrier = emit_barrier_after (new_jump);
1725                   JUMP_LABEL (new_jump) = old_label;
1726                   new_bb->rbi->footer = unlink_insn_chain (barrier, 
1727                                                            barrier);
1728                   
1729                   /* Make sure new bb is in same partition as source
1730                      of conditional branch.  */
1731                   BB_COPY_PARTITION (new_bb, cur_bb);
1732                 }
1733               
1734               /* Make old jump branch to new bb.  */
1735               
1736               redirect_jump (old_jump, new_label, 0);
1737               
1738               /* Remove crossing_edge as predecessor of 'dest'.  */
1739               
1740               dest = crossing_edge->dest;
1741               
1742               redirect_edge_succ (crossing_edge, new_bb);
1743               
1744               /* Make a new edge from new_bb to old dest; new edge
1745                  will be a successor for new_bb and a predecessor
1746                  for 'dest'.  */
1747               
1748               if (EDGE_COUNT (new_bb->succs) == 0)
1749                 new_edge = make_edge (new_bb, dest, 0);
1750               else
1751                 new_edge = EDGE_SUCC (new_bb, 0);
1752               
1753               crossing_edge->flags &= ~EDGE_CROSSING;
1754               new_edge->flags |= EDGE_CROSSING;
1755             }
1756         }
1757     }
1758 }
1759
1760 /* Find any unconditional branches that cross between hot and cold
1761    sections.  Convert them into indirect jumps instead.  */
1762
1763 static void
1764 fix_crossing_unconditional_branches (void)
1765 {
1766   basic_block cur_bb;
1767   rtx last_insn;
1768   rtx label;
1769   rtx label_addr;
1770   rtx indirect_jump_sequence;
1771   rtx jump_insn = NULL_RTX;
1772   rtx new_reg;
1773   rtx cur_insn;
1774   edge succ;
1775
1776   FOR_EACH_BB (cur_bb)
1777     {
1778       last_insn = BB_END (cur_bb);
1779       succ = EDGE_SUCC (cur_bb, 0);
1780
1781       /* Check to see if bb ends in a crossing (unconditional) jump.  At
1782          this point, no crossing jumps should be conditional.  */
1783
1784       if (JUMP_P (last_insn)
1785           && (succ->flags & EDGE_CROSSING))
1786         {
1787           rtx label2, table;
1788
1789           gcc_assert (!any_condjump_p (last_insn));
1790
1791           /* Make sure the jump is not already an indirect or table jump.  */
1792
1793           if (!computed_jump_p (last_insn)
1794               && !tablejump_p (last_insn, &label2, &table))
1795             {
1796               /* We have found a "crossing" unconditional branch.  Now
1797                  we must convert it to an indirect jump.  First create
1798                  reference of label, as target for jump.  */
1799               
1800               label = JUMP_LABEL (last_insn);
1801               label_addr = gen_rtx_LABEL_REF (Pmode, label);
1802               LABEL_NUSES (label) += 1;
1803               
1804               /* Get a register to use for the indirect jump.  */
1805               
1806               new_reg = gen_reg_rtx (Pmode);
1807               
1808               /* Generate indirect the jump sequence.  */
1809               
1810               start_sequence ();
1811               emit_move_insn (new_reg, label_addr);
1812               emit_indirect_jump (new_reg);
1813               indirect_jump_sequence = get_insns ();
1814               end_sequence ();
1815               
1816               /* Make sure every instruction in the new jump sequence has
1817                  its basic block set to be cur_bb.  */
1818               
1819               for (cur_insn = indirect_jump_sequence; cur_insn;
1820                    cur_insn = NEXT_INSN (cur_insn))
1821                 {
1822                   BLOCK_FOR_INSN (cur_insn) = cur_bb;
1823                   if (JUMP_P (cur_insn))
1824                     jump_insn = cur_insn;
1825                 }
1826               
1827               /* Insert the new (indirect) jump sequence immediately before
1828                  the unconditional jump, then delete the unconditional jump.  */
1829               
1830               emit_insn_before (indirect_jump_sequence, last_insn);
1831               delete_insn (last_insn);
1832               
1833               /* Make BB_END for cur_bb be the jump instruction (NOT the
1834                  barrier instruction at the end of the sequence...).  */
1835               
1836               BB_END (cur_bb) = jump_insn;
1837             }
1838         }
1839     }
1840 }
1841
1842 /* Add REG_CROSSING_JUMP note to all crossing jump insns.  */
1843
1844 static void
1845 add_reg_crossing_jump_notes (void)
1846 {
1847   basic_block bb;
1848   edge e;
1849   edge_iterator ei;
1850
1851   FOR_EACH_BB (bb)
1852     FOR_EACH_EDGE (e, ei, bb->succs)
1853       if ((e->flags & EDGE_CROSSING)
1854           && JUMP_P (BB_END (e->src)))
1855         REG_NOTES (BB_END (e->src)) = gen_rtx_EXPR_LIST (REG_CROSSING_JUMP, 
1856                                                          NULL_RTX, 
1857                                                          REG_NOTES (BB_END 
1858                                                                   (e->src)));
1859 }
1860
1861 /* Basic blocks containing NOTE_INSN_UNLIKELY_EXECUTED_CODE will be
1862    put in a separate section of the .o file, to reduce paging and
1863    improve cache performance (hopefully).  This can result in bits of
1864    code from the same function being widely separated in the .o file.
1865    However this is not obvious to the current bb structure.  Therefore
1866    we must take care to ensure that: 1). There are no fall_thru edges
1867    that cross between sections;  2). For those architectures which
1868    have "short" conditional branches, all conditional branches that
1869    attempt to cross between sections are converted to unconditional
1870    branches; and, 3). For those architectures which have "short"
1871    unconditional branches, all unconditional branches that attempt
1872    to cross between sections are converted to indirect jumps.
1873    
1874    The code for fixing up fall_thru edges that cross between hot and
1875    cold basic blocks does so by creating new basic blocks containing 
1876    unconditional branches to the appropriate label in the "other" 
1877    section.  The new basic block is then put in the same (hot or cold)
1878    section as the original conditional branch, and the fall_thru edge
1879    is modified to fall into the new basic block instead.  By adding
1880    this level of indirection we end up with only unconditional branches
1881    crossing between hot and cold sections.  
1882    
1883    Conditional branches are dealt with by adding a level of indirection.
1884    A new basic block is added in the same (hot/cold) section as the 
1885    conditional branch, and the conditional branch is retargeted to the
1886    new basic block.  The new basic block contains an unconditional branch
1887    to the original target of the conditional branch (in the other section).
1888
1889    Unconditional branches are dealt with by converting them into
1890    indirect jumps.  */
1891
1892 static void 
1893 fix_edges_for_rarely_executed_code (edge *crossing_edges, 
1894                                     int n_crossing_edges)
1895 {
1896   /* Make sure the source of any crossing edge ends in a jump and the
1897      destination of any crossing edge has a label.  */
1898   
1899   add_labels_and_missing_jumps (crossing_edges, n_crossing_edges);
1900   
1901   /* Convert all crossing fall_thru edges to non-crossing fall
1902      thrus to unconditional jumps (that jump to the original fall
1903      thru dest).  */
1904   
1905   fix_up_fall_thru_edges ();
1906   
1907   /* Only do the parts necessary for writing separate sections if
1908      the target architecture has the ability to write separate sections
1909      (i.e. it has named sections).  Otherwise, the hot/cold partitioning
1910      information will be used when reordering blocks to try to put all
1911      the hot blocks together, then all the cold blocks, but no actual
1912      section partitioning will be done.  */
1913
1914   if (targetm.have_named_sections)
1915     {
1916       /* If the architecture does not have conditional branches that can
1917          span all of memory, convert crossing conditional branches into
1918          crossing unconditional branches.  */
1919   
1920       if (!HAS_LONG_COND_BRANCH)
1921         fix_crossing_conditional_branches ();
1922   
1923       /* If the architecture does not have unconditional branches that
1924          can span all of memory, convert crossing unconditional branches
1925          into indirect jumps.  Since adding an indirect jump also adds
1926          a new register usage, update the register usage information as
1927          well.  */
1928       
1929       if (!HAS_LONG_UNCOND_BRANCH)
1930         {
1931           fix_crossing_unconditional_branches ();
1932           reg_scan (get_insns(), max_reg_num (), 1);
1933         }
1934
1935       add_reg_crossing_jump_notes ();
1936     }
1937 }
1938
1939 /* Reorder basic blocks.  The main entry point to this file.  FLAGS is
1940    the set of flags to pass to cfg_layout_initialize().  */
1941
1942 void
1943 reorder_basic_blocks (unsigned int flags)
1944 {
1945   int n_traces;
1946   int i;
1947   struct trace *traces;
1948
1949   if (n_basic_blocks <= 1)
1950     return;
1951
1952   if (targetm.cannot_modify_jumps_p ())
1953     return;
1954
1955   timevar_push (TV_REORDER_BLOCKS);
1956
1957   cfg_layout_initialize (flags);
1958
1959   set_edge_can_fallthru_flag ();
1960   mark_dfs_back_edges ();
1961
1962   /* We are estimating the length of uncond jump insn only once since the code
1963      for getting the insn length always returns the minimal length now.  */
1964   if (uncond_jump_length == 0)
1965     uncond_jump_length = get_uncond_jump_length ();
1966
1967   /* We need to know some information for each basic block.  */
1968   array_size = GET_ARRAY_SIZE (last_basic_block);
1969   bbd = xmalloc (array_size * sizeof (bbro_basic_block_data));
1970   for (i = 0; i < array_size; i++)
1971     {
1972       bbd[i].start_of_trace = -1;
1973       bbd[i].end_of_trace = -1;
1974       bbd[i].heap = NULL;
1975       bbd[i].node = NULL;
1976     }
1977
1978   traces = xmalloc (n_basic_blocks * sizeof (struct trace));
1979   n_traces = 0;
1980   find_traces (&n_traces, traces);
1981   connect_traces (n_traces, traces);
1982   FREE (traces);
1983   FREE (bbd);
1984
1985   if (dump_file)
1986     dump_flow_info (dump_file);
1987
1988   if (flag_reorder_blocks_and_partition
1989       && targetm.have_named_sections)
1990     add_unlikely_executed_notes ();
1991
1992   cfg_layout_finalize ();
1993
1994   timevar_pop (TV_REORDER_BLOCKS);
1995 }
1996
1997 /* This function is the main 'entrance' for the optimization that
1998    partitions hot and cold basic blocks into separate sections of the
1999    .o file (to improve performance and cache locality).  Ideally it
2000    would be called after all optimizations that rearrange the CFG have
2001    been called.  However part of this optimization may introduce new
2002    register usage, so it must be called before register allocation has
2003    occurred.  This means that this optimization is actually called
2004    well before the optimization that reorders basic blocks (see
2005    function above).
2006
2007    This optimization checks the feedback information to determine
2008    which basic blocks are hot/cold and causes reorder_basic_blocks to
2009    add NOTE_INSN_UNLIKELY_EXECUTED_CODE to non-hot basic blocks.  The
2010    presence or absence of this note is later used for writing out
2011    sections in the .o file.  Because hot and cold sections can be
2012    arbitrarily large (within the bounds of memory), far beyond the
2013    size of a single function, it is necessary to fix up all edges that
2014    cross section boundaries, to make sure the instructions used can
2015    actually span the required distance.  The fixes are described
2016    below.
2017
2018    Fall-through edges must be changed into jumps; it is not safe or
2019    legal to fall through across a section boundary.  Whenever a
2020    fall-through edge crossing a section boundary is encountered, a new
2021    basic block is inserted (in the same section as the fall-through
2022    source), and the fall through edge is redirected to the new basic
2023    block.  The new basic block contains an unconditional jump to the
2024    original fall-through target.  (If the unconditional jump is
2025    insufficient to cross section boundaries, that is dealt with a
2026    little later, see below).
2027
2028    In order to deal with architectures that have short conditional
2029    branches (which cannot span all of memory) we take any conditional
2030    jump that attempts to cross a section boundary and add a level of
2031    indirection: it becomes a conditional jump to a new basic block, in
2032    the same section.  The new basic block contains an unconditional
2033    jump to the original target, in the other section.
2034
2035    For those architectures whose unconditional branch is also
2036    incapable of reaching all of memory, those unconditional jumps are
2037    converted into indirect jumps, through a register.
2038
2039    IMPORTANT NOTE: This optimization causes some messy interactions
2040    with the cfg cleanup optimizations; those optimizations want to
2041    merge blocks wherever possible, and to collapse indirect jump
2042    sequences (change "A jumps to B jumps to C" directly into "A jumps
2043    to C").  Those optimizations can undo the jump fixes that
2044    partitioning is required to make (see above), in order to ensure
2045    that jumps attempting to cross section boundaries are really able
2046    to cover whatever distance the jump requires (on many architectures
2047    conditional or unconditional jumps are not able to reach all of
2048    memory).  Therefore tests have to be inserted into each such
2049    optimization to make sure that it does not undo stuff necessary to
2050    cross partition boundaries.  This would be much less of a problem
2051    if we could perform this optimization later in the compilation, but
2052    unfortunately the fact that we may need to create indirect jumps
2053    (through registers) requires that this optimization be performed
2054    before register allocation.  */
2055
2056 void
2057 partition_hot_cold_basic_blocks (void)
2058 {
2059   basic_block cur_bb;
2060   edge *crossing_edges;
2061   int n_crossing_edges;
2062   int max_edges = 2 * last_basic_block;
2063   
2064   if (n_basic_blocks <= 1)
2065     return;
2066   
2067   crossing_edges = xcalloc (max_edges, sizeof (edge));
2068
2069   cfg_layout_initialize (0);
2070   
2071   FOR_EACH_BB (cur_bb)
2072     if (cur_bb->index >= 0
2073         && cur_bb->next_bb->index >= 0)
2074       cur_bb->rbi->next = cur_bb->next_bb;
2075   
2076   find_rarely_executed_basic_blocks_and_crossing_edges (crossing_edges, 
2077                                                         &n_crossing_edges, 
2078                                                         &max_edges);
2079
2080   if (n_crossing_edges > 0)
2081     fix_edges_for_rarely_executed_code (crossing_edges, n_crossing_edges);
2082   
2083   free (crossing_edges);
2084
2085   cfg_layout_finalize();
2086 }