OSDN Git Service

* fold-const.c (fold): Avoid non INTEGER_TYPEs when widening
[pf3gnuchains/gcc-fork.git] / gcc / bt-load.c
index dd2dcb2..bbd6abd 100644 (file)
@@ -1,5 +1,5 @@
 /* Perform branch target register load optimizations.
-   Copyright (C) 2001, 2002, 2003 Free Software Foundation, Inc.
+   Copyright (C) 2001, 2002, 2003, 2004 Free Software Foundation, Inc.
 
 This file is part of GCC.
 
@@ -36,6 +36,8 @@ Software Foundation, 59 Temple Place - Suite 330, Boston, MA
 #include "flags.h"
 #include "insn-attr.h"
 #include "function.h"
+#include "except.h"
+#include "tm_p.h"
 
 /* Target register optimizations - these are performed after reload.  */
 
@@ -88,7 +90,7 @@ typedef struct btr_def_s
   btr_user uses;
   /* If this def has a reaching use which is not a simple use
      in a branch instruction, then has_ambiguous_use will be true,
-     and we will not attempt to migrate this definition.       */
+     and we will not attempt to migrate this definition.  */
   char has_ambiguous_use;
   /* live_range is an approximation to the true live range for this
      def/use web, because it records the set of blocks that contain
@@ -97,7 +99,7 @@ typedef struct btr_def_s
      containing the def (before the def), or in a block containing
      a use (after the use).  If there are such other live ranges, then
      other_btr_uses_before_def or other_btr_uses_after_use must be set true
-     as appropriate. */
+     as appropriate.  */
   char other_btr_uses_before_def;
   char other_btr_uses_after_use;
   bitmap live_range;
@@ -154,13 +156,14 @@ static void note_btr_set (rtx, rtx, void *);
    migrating branch target load instructions.  */
 static struct obstack migrate_btrl_obstack;
 
-/* Basic block dominator information used when migrating PT instructions */
-static dominance_info dom;
-
 /* Array indexed by basic block number, giving the set of registers
    live in that block.  */
 static HARD_REG_SET *btrs_live;
 
+/* Array indexed by basic block number, giving the set of registers live at
+  the end of that block, including any uses by a final jump insn, if any.  */
+static HARD_REG_SET *btrs_live_at_end;
+
 /* Set of all target registers that we are willing to allocate.  */
 static HARD_REG_SET all_btrs;
 
@@ -170,8 +173,7 @@ static int first_btr, last_btr;
 
 
 
-/* Return an estimate of the frequency of execution of block bb.
-   If we have a profiling count available, we could use it here.  */
+/* Return an estimate of the frequency of execution of block bb.  */
 static int
 basic_block_freq (basic_block bb)
 {
@@ -193,10 +195,10 @@ find_btr_reference (rtx *px, void *preg)
   if (px == preg)
     return -1;
   x = *px;
-  if (GET_CODE (x) != REG)
+  if (!REG_P (x))
     return 0;
   regno = REGNO (x);
-  for (i = HARD_REGNO_NREGS (regno, GET_MODE (x)) - 1; i >= 0; i--)
+  for (i = hard_regno_nregs[regno][GET_MODE (x)] - 1; i >= 0; i--)
     if (TEST_HARD_REG_BIT (all_btrs, regno+i))
       {
        btr_reference_found = px;
@@ -223,7 +225,7 @@ insn_sets_btr_p (rtx insn, int check_const, int *regno)
 {
   rtx set;
 
-  if (GET_CODE (insn) == INSN
+  if (NONJUMP_INSN_P (insn)
       && (set = single_set (insn)))
     {
       rtx dest = SET_DEST (set);
@@ -232,11 +234,11 @@ insn_sets_btr_p (rtx insn, int check_const, int *regno)
       if (GET_CODE (dest) == SUBREG)
        dest = XEXP (dest, 0);
 
-      if (GET_CODE (dest) == REG
+      if (REG_P (dest)
          && TEST_HARD_REG_BIT (all_btrs, REGNO (dest)))
        {
-         if (btr_referenced_p (src, NULL))
-           abort();
+         gcc_assert (!btr_referenced_p (src, NULL));
+         
          if (!check_const || CONSTANT_P (src))
            {
              if (regno)
@@ -248,7 +250,7 @@ insn_sets_btr_p (rtx insn, int check_const, int *regno)
   return 0;
 }
 
-/* Find and return a use of a target register within an instruction INSN. */
+/* Find and return a use of a target register within an instruction INSN.  */
 static rtx *
 find_btr_use (rtx insn)
 {
@@ -276,9 +278,8 @@ find_btr_def_group (btr_def_group *all_btr_def_groups, btr_def def)
 
       if (!this_group)
        {
-         this_group = (btr_def_group)
-           obstack_alloc (&migrate_btrl_obstack,
-                          sizeof (struct btr_def_group_s));
+         this_group = obstack_alloc (&migrate_btrl_obstack,
+                                     sizeof (struct btr_def_group_s));
          this_group->src = def_src;
          this_group->members = NULL;
          this_group->next = *all_btr_def_groups;
@@ -300,8 +301,8 @@ add_btr_def (fibheap_t all_btr_defs, basic_block bb, int insn_luid, rtx insn,
             unsigned int dest_reg, int other_btr_uses_before_def,
             btr_def_group *all_btr_def_groups)
 {
-  btr_def this = (btr_def)
-    obstack_alloc (&migrate_btrl_obstack, sizeof (struct btr_def_s));
+  btr_def this
+    obstack_alloc (&migrate_btrl_obstack, sizeof (struct btr_def_s));
   this->bb = bb;
   this->luid = insn_luid;
   this->insn = insn;
@@ -318,8 +319,8 @@ add_btr_def (fibheap_t all_btr_defs, basic_block bb, int insn_luid, rtx insn,
 
   fibheap_insert (all_btr_defs, -this->cost, this);
 
-  if (rtl_dump_file)
-    fprintf (rtl_dump_file,
+  if (dump_file)
+    fprintf (dump_file,
       "Found target reg definition: sets %u { bb %d, insn %d }%s priority %d\n",
       dest_reg, bb->index, INSN_UID (insn), (this->group ? "" : ":not const"),
       this->cost);
@@ -352,8 +353,7 @@ new_btr_user (basic_block bb, int insn_luid, rtx insn)
        usep = NULL;
     }
   use = usep ? *usep : NULL_RTX;
-  user = (btr_user)
-    obstack_alloc (&migrate_btrl_obstack, sizeof (struct btr_user_s));
+  user = obstack_alloc (&migrate_btrl_obstack, sizeof (struct btr_user_s));
   user->bb = bb;
   user->luid = insn_luid;
   user->insn = insn;
@@ -363,36 +363,36 @@ new_btr_user (basic_block bb, int insn_luid, rtx insn)
   user->n_reaching_defs = 0;
   user->first_reaching_def = -1;
 
-  if (rtl_dump_file)
+  if (dump_file)
     {
-      fprintf (rtl_dump_file, "Uses target reg: { bb %d, insn %d }",
+      fprintf (dump_file, "Uses target reg: { bb %d, insn %d }",
               bb->index, INSN_UID (insn));
 
       if (user->use)
-       fprintf (rtl_dump_file, ": unambiguous use of reg %d\n",
+       fprintf (dump_file, ": unambiguous use of reg %d\n",
                 REGNO (user->use));
     }
 
   return user;
 }
 
-/* Write the contents of S to the dump file. */
+/* Write the contents of S to the dump file.  */
 static void
 dump_hard_reg_set (HARD_REG_SET s)
 {
   int reg;
   for (reg = 0; reg < FIRST_PSEUDO_REGISTER; reg++)
     if (TEST_HARD_REG_BIT (s, reg))
-      fprintf (rtl_dump_file, " %d", reg);
+      fprintf (dump_file, " %d", reg);
 }
 
-/* Write the set of target regs live in block BB to the dump file. */
+/* Write the set of target regs live in block BB to the dump file.  */
 static void
 dump_btrs_live (int bb)
 {
-  fprintf (rtl_dump_file, "BB%d live:", bb);
+  fprintf (dump_file, "BB%d live:", bb);
   dump_hard_reg_set (btrs_live[bb]);
-  fprintf (rtl_dump_file, "\n");
+  fprintf (dump_file, "\n");
 }
 
 /* REGNO is the number of a branch target register that is being used or
@@ -420,17 +420,17 @@ typedef struct {
 /* Called via note_stores or directly to register stores into /
    clobbers of a branch target register DEST that are not recognized as
    straightforward definitions.  DATA points to information about the
-   current basic block that needs updating.   */
+   current basic block that needs updating.  */
 static void
 note_btr_set (rtx dest, rtx set ATTRIBUTE_UNUSED, void *data)
 {
   defs_uses_info *info = data;
   int regno, end_regno;
 
-  if (GET_CODE (dest) != REG)
+  if (!REG_P (dest))
     return;
   regno = REGNO (dest);
-  end_regno = regno + HARD_REGNO_NREGS (regno, GET_MODE (dest));
+  end_regno = regno + hard_regno_nregs[regno][GET_MODE (dest)];
   for (; regno < end_regno; regno++)
     if (TEST_HARD_REG_BIT (all_btrs, regno))
       {
@@ -466,6 +466,7 @@ compute_defs_uses_and_gen (fibheap_t all_btr_defs, btr_def *def_array,
       btr_def defs_this_bb = NULL;
       rtx insn;
       rtx last;
+      int can_throw = 0;
 
       info.users_this_bb = NULL;
       info.bb_gen = bb_gen[i];
@@ -478,7 +479,7 @@ compute_defs_uses_and_gen (fibheap_t all_btr_defs, btr_def *def_array,
            && REGNO_REG_SET_P (bb->global_live_at_start, reg))
          SET_HARD_REG_BIT (info.btrs_live_in_block, reg);
 
-      for (insn = bb->head, last = NEXT_INSN (bb->end);
+      for (insn = BB_HEAD (bb), last = NEXT_INSN (BB_END (bb));
           insn != last;
           insn = NEXT_INSN (insn), insn_luid++)
        {
@@ -532,7 +533,7 @@ compute_defs_uses_and_gen (fibheap_t all_btr_defs, btr_def *def_array,
                      user->next = info.users_this_bb;
                      info.users_this_bb = user;
                    }
-                 if (GET_CODE (insn) == CALL_INSN)
+                 if (CALL_P (insn))
                    {
                      HARD_REG_SET *clobbered = &call_used_reg_set;
                      HARD_REG_SET call_saved;
@@ -548,7 +549,7 @@ compute_defs_uses_and_gen (fibheap_t all_btr_defs, btr_def *def_array,
                                                  call_used_reg_set);
                              clobbered = &call_saved;
                            }
-                             
+
                      for (regno = first_btr; regno <= last_btr; regno++)
                        if (TEST_HARD_REG_BIT (*clobbered, regno))
                          note_btr_set (regno_reg_rtx[regno], NULL_RTX, &info);
@@ -559,7 +560,36 @@ compute_defs_uses_and_gen (fibheap_t all_btr_defs, btr_def *def_array,
 
       COPY_HARD_REG_SET (btrs_live[i], info.btrs_live_in_block);
       COPY_HARD_REG_SET (btrs_written[i], info.btrs_written_in_block);
-      if (rtl_dump_file)
+
+      REG_SET_TO_HARD_REG_SET (btrs_live_at_end[i], bb->global_live_at_end);
+      /* If this block ends in a jump insn, add any uses or even clobbers
+        of branch target registers that it might have.  */
+      for (insn = BB_END (bb); insn != BB_HEAD (bb) && ! INSN_P (insn); )
+       insn = PREV_INSN (insn);
+      /* ??? for the fall-through edge, it would make sense to insert the
+        btr set on the edge, but that would require to split the block
+        early on so that we can distinguish between dominance from the fall
+        through edge - which can use the call-clobbered registers - from
+        dominance by the throw edge.  */
+      if (can_throw_internal (insn))
+       {
+         HARD_REG_SET tmp;
+
+         COPY_HARD_REG_SET (tmp, call_used_reg_set);
+         AND_HARD_REG_SET (tmp, all_btrs);
+         IOR_HARD_REG_SET (btrs_live_at_end[i], tmp);
+         can_throw = 1;
+       }
+      if (can_throw || JUMP_P (insn))
+       {
+         int regno;
+
+         for (regno = first_btr; regno <= last_btr; regno++)
+           if (refers_to_regno_p (regno, regno+1, insn, NULL))
+             SET_HARD_REG_BIT (btrs_live_at_end[i], regno);
+       }
+
+      if (dump_file)
        dump_btrs_live(i);
     }
 }
@@ -572,7 +602,7 @@ compute_kill (sbitmap *bb_kill, sbitmap *btr_defset,
   int regno;
 
   /* For each basic block, form the set BB_KILL - the set
-     of definitions that the block kills. */
+     of definitions that the block kills.  */
   sbitmap_vector_zero (bb_kill, n_basic_blocks);
   for (i = 0; i < n_basic_blocks; i++)
     {
@@ -592,7 +622,7 @@ compute_out (sbitmap *bb_out, sbitmap *bb_gen, sbitmap *bb_kill, int max_uid)
       For each block,
        BB_IN  = union over predecessors of BB_OUT(pred)
        BB_OUT = (BB_IN - BB_KILL) + BB_GEN
-     Iterate until the bb_out sets stop growing.   */
+     Iterate until the bb_out sets stop growing.  */
   int i;
   int changed;
   sbitmap bb_in = sbitmap_alloc (max_uid);
@@ -622,7 +652,7 @@ link_btr_uses (btr_def *def_array, btr_user *use_array, sbitmap *bb_out,
   sbitmap reaching_defs = sbitmap_alloc (max_uid);
 
   /* Link uses to the uses lists of all of their reaching defs.
-     Count up the number of reaching defs of each use. */
+     Count up the number of reaching defs of each use.  */
   for (i = 0; i < n_basic_blocks; i++)
     {
       basic_block bb = BASIC_BLOCK (i);
@@ -630,7 +660,7 @@ link_btr_uses (btr_def *def_array, btr_user *use_array, sbitmap *bb_out,
       rtx last;
 
       sbitmap_union_of_preds (reaching_defs, bb_out, i);
-      for (insn = bb->head, last = NEXT_INSN (bb->end);
+      for (insn = BB_HEAD (bb), last = NEXT_INSN (BB_END (bb));
           insn != last;
           insn = NEXT_INSN (insn))
        {
@@ -643,7 +673,7 @@ link_btr_uses (btr_def *def_array, btr_user *use_array, sbitmap *bb_out,
              if (def != NULL)
                {
                  /* Remove all reaching defs of regno except
-                    for this one. */
+                    for this one.  */
                  sbitmap_difference (reaching_defs, reaching_defs,
                                      btr_defset[def->btr - first_btr]);
                  SET_BIT(reaching_defs, insn_uid);
@@ -651,7 +681,7 @@ link_btr_uses (btr_def *def_array, btr_user *use_array, sbitmap *bb_out,
 
              if (user != NULL)
                {
-                 /* Find all the reaching defs for this use */
+                 /* Find all the reaching defs for this use */
                  sbitmap reaching_defs_of_reg = sbitmap_alloc(max_uid);
                  int uid;
 
@@ -678,10 +708,10 @@ link_btr_uses (btr_def *def_array, btr_user *use_array, sbitmap *bb_out,
                    {
                      btr_def def = def_array[uid];
 
-                     /* We now know that def reaches user */
+                     /* We now know that def reaches user */
 
-                     if (rtl_dump_file)
-                       fprintf (rtl_dump_file,
+                     if (dump_file)
+                       fprintf (dump_file,
                          "Def in insn %d reaches use in insn %d\n",
                          uid, insn_uid);
 
@@ -691,12 +721,12 @@ link_btr_uses (btr_def *def_array, btr_user *use_array, sbitmap *bb_out,
                      if (user->first_reaching_def != -1)
                        { /* There is more than one reaching def.  This is
                             a rare case, so just give up on this def/use
-                            web when it occurs. */
+                            web when it occurs.  */
                          def->has_ambiguous_use = 1;
                          def_array[user->first_reaching_def]
                            ->has_ambiguous_use = 1;
-                         if (rtl_dump_file)
-                           fprintf (rtl_dump_file,
+                         if (dump_file)
+                           fprintf (dump_file,
                                     "(use %d has multiple reaching defs)\n",
                                     insn_uid);
                        }
@@ -710,7 +740,7 @@ link_btr_uses (btr_def *def_array, btr_user *use_array, sbitmap *bb_out,
                  sbitmap_free (reaching_defs_of_reg);
                }
 
-             if (GET_CODE (insn) == CALL_INSN)
+             if (CALL_P (insn))
                {
                  int regno;
 
@@ -735,8 +765,7 @@ build_btr_def_use_webs (fibheap_t all_btr_defs)
   sbitmap *btr_defset   = sbitmap_vector_alloc (
                           (last_btr - first_btr) + 1, max_uid);
   sbitmap *bb_gen      = sbitmap_vector_alloc (n_basic_blocks, max_uid);
-  HARD_REG_SET *btrs_written = (HARD_REG_SET *) xcalloc (
-                              n_basic_blocks, sizeof (HARD_REG_SET));
+  HARD_REG_SET *btrs_written = xcalloc (n_basic_blocks, sizeof (HARD_REG_SET));
   sbitmap *bb_kill;
   sbitmap *bb_out;
 
@@ -788,7 +817,7 @@ block_at_edge_of_live_range_p (int bb, btr_def def)
    Blocks at the boundary of the live range may contain other live
    ranges for the same target register, so we have to be careful
    to remove the target register from the live set of these blocks
-   only if they do not contain other live ranges for the same register. */
+   only if they do not contain other live ranges for the same register.  */
 static void
 clear_btr_from_live_range (btr_def def)
 {
@@ -802,7 +831,8 @@ clear_btr_from_live_range (btr_def def)
           || !block_at_edge_of_live_range_p (bb, def))
         {
           CLEAR_HARD_REG_BIT (btrs_live[bb], def->btr);
-          if (rtl_dump_file)
+          CLEAR_HARD_REG_BIT (btrs_live_at_end[bb], def->btr);
+          if (dump_file)
             dump_btrs_live (bb);
         }
      });
@@ -820,7 +850,8 @@ add_btr_to_live_range (btr_def def)
     (def->live_range, 0, bb,
      {
        SET_HARD_REG_BIT (btrs_live[bb], def->btr);
-       if (rtl_dump_file)
+       SET_HARD_REG_BIT (btrs_live_at_end[bb], def->btr);
+       if (dump_file)
         dump_btrs_live (bb);
      });
 }
@@ -840,31 +871,37 @@ augment_live_range (bitmap live_range, HARD_REG_SET *btrs_live_in_range,
 {
   basic_block *worklist, *tos;
 
-  tos = worklist =
-    (basic_block *) xmalloc (sizeof (basic_block) * (n_basic_blocks + 1));
+  tos = worklist = xmalloc (sizeof (basic_block) * (n_basic_blocks + 1));
 
-  if (dominated_by_p (dom, new_bb, head_bb))
+  if (dominated_by_p (CDI_DOMINATORS, new_bb, head_bb))
     *tos++ = new_bb;
-  else if (dominated_by_p (dom, head_bb, new_bb))
+  else
     {
       edge e;
       int new_block = new_bb->index;
 
+      gcc_assert (dominated_by_p (CDI_DOMINATORS, head_bb, new_bb));
+  
       bitmap_set_bit (live_range, new_block);
-      IOR_HARD_REG_SET (*btrs_live_in_range, btrs_live[new_block]);
-      if (rtl_dump_file)
+      if (flag_btr_bb_exclusive)
+       IOR_HARD_REG_SET (*btrs_live_in_range, btrs_live[new_block]);
+      else
        {
-         fprintf (rtl_dump_file,
-                  "Adding block %d to live range\n", new_block);
-         fprintf (rtl_dump_file,"Now live btrs are ");
+         IOR_HARD_REG_SET (*btrs_live_in_range, btrs_live_at_end[new_block]);
+         IOR_HARD_REG_SET (*btrs_live_in_range, btrs_live[head_bb->index]);
+       }
+      if (dump_file)
+       {
+         fprintf (dump_file,
+                  "Adding end of block %d and rest of %d to live range\n",
+                  new_block, head_bb->index);
+         fprintf (dump_file,"Now live btrs are ");
          dump_hard_reg_set (*btrs_live_in_range);
-         fprintf (rtl_dump_file, "\n");
+         fprintf (dump_file, "\n");
        }
       for (e = head_bb->pred; e; e = e->pred_next)
        *tos++ = e->src;
     }
-  else
-    abort();
 
   while (tos != worklist)
     {
@@ -876,13 +913,13 @@ augment_live_range (bitmap live_range, HARD_REG_SET *btrs_live_in_range,
          bitmap_set_bit (live_range, bb->index);
          IOR_HARD_REG_SET (*btrs_live_in_range,
            btrs_live[bb->index]);
-         if (rtl_dump_file)
+         if (dump_file)
            {
-             fprintf (rtl_dump_file,
+             fprintf (dump_file,
                "Adding block %d to live range\n", bb->index);
-             fprintf (rtl_dump_file,"Now live btrs are ");
+             fprintf (dump_file,"Now live btrs are ");
              dump_hard_reg_set (*btrs_live_in_range);
-             fprintf (rtl_dump_file, "\n");
+             fprintf (dump_file, "\n");
            }
 
          for (e = bb->pred; e != NULL; e = e->pred_next)
@@ -935,7 +972,11 @@ btr_def_live_range (btr_def def, HARD_REG_SET *btrs_live_in_range)
       def->live_range = BITMAP_XMALLOC ();
 
       bitmap_set_bit (def->live_range, def->bb->index);
-      COPY_HARD_REG_SET (*btrs_live_in_range, btrs_live[def->bb->index]);
+      if (flag_btr_bb_exclusive)
+       COPY_HARD_REG_SET (*btrs_live_in_range, btrs_live[def->bb->index]);
+      else
+       COPY_HARD_REG_SET (*btrs_live_in_range,
+                          btrs_live_at_end[def->bb->index]);
 
       for (user = def->uses; user != NULL; user = user->next)
        augment_live_range (def->live_range, btrs_live_in_range,
@@ -948,14 +989,23 @@ btr_def_live_range (btr_def def, HARD_REG_SET *btrs_live_in_range)
         of other PT instructions may have affected it.
       */
       int bb;
+      int def_bb = def->bb->index;
 
       CLEAR_HARD_REG_SET (*btrs_live_in_range);
-      EXECUTE_IF_SET_IN_BITMAP
-       (def->live_range, 0, bb,
-        {
-          IOR_HARD_REG_SET (*btrs_live_in_range,
-            btrs_live[bb]);
-        });
+      if (flag_btr_bb_exclusive)
+       EXECUTE_IF_SET_IN_BITMAP
+         (def->live_range, 0, bb,
+          {
+            IOR_HARD_REG_SET (*btrs_live_in_range, btrs_live[bb]);
+          });
+      else
+       EXECUTE_IF_SET_IN_BITMAP
+         (def->live_range, 0, bb,
+          {
+            IOR_HARD_REG_SET (*btrs_live_in_range,
+                              (def_bb == bb
+                               ? btrs_live_at_end : btrs_live) [bb]);
+          });
     }
   if (!def->other_btr_uses_before_def &&
       !def->other_btr_uses_after_use)
@@ -977,12 +1027,12 @@ combine_btr_defs (btr_def def, HARD_REG_SET *btrs_live_in_range)
       if (other_def != def
          && other_def->uses != NULL
          && ! other_def->has_ambiguous_use
-         && dominated_by_p (dom, other_def->bb, def->bb))
+         && dominated_by_p (CDI_DOMINATORS, other_def->bb, def->bb))
        {
          /* def->bb dominates the other def, so def and other_def could
-            be combined. */
+            be combined.  */
          /* Merge their live ranges, and get the set of
-            target registers live over the merged range. */
+            target registers live over the merged range.  */
          int btr;
          HARD_REG_SET combined_btrs_live;
          bitmap combined_live_range = BITMAP_XMALLOC ();
@@ -1003,9 +1053,9 @@ combine_btr_defs (btr_def def, HARD_REG_SET *btrs_live_in_range)
          btr = choose_btr (combined_btrs_live);
          if (btr != -1)
            {
-             /* We can combine them */
-             if (rtl_dump_file)
-               fprintf (rtl_dump_file,
+             /* We can combine them */
+             if (dump_file)
+               fprintf (dump_file,
                         "Combining def in insn %d with def in insn %d\n",
                         INSN_UID (other_def->insn), INSN_UID (def->insn));
 
@@ -1024,7 +1074,7 @@ combine_btr_defs (btr_def def, HARD_REG_SET *btrs_live_in_range)
                 some REG_DEAD notes may no longer be correct.  We could
                 be more precise about this if we looked at the combined
                 live range, but here I just delete any REG_DEAD notes
-                in case they are no longer correct. */
+                in case they are no longer correct.  */
              for (user = def->uses; user != NULL; user = user->next)
                remove_note (user->insn,
                             find_regno_note (user->insn, REG_DEAD,
@@ -1036,7 +1086,7 @@ combine_btr_defs (btr_def def, HARD_REG_SET *btrs_live_in_range)
                def->other_btr_uses_after_use = 1;
              COPY_HARD_REG_SET (*btrs_live_in_range, combined_btrs_live);
 
-             /* Delete the old target register initialization */
+             /* Delete the old target register initialization */
              delete_insn (other_def->insn);
 
            }
@@ -1059,9 +1109,9 @@ move_btr_def (basic_block new_def_bb, int btr, btr_def def, bitmap live_range,
      Set a target register in block NEW_DEF_BB to the value
      needed for this target register definition.
      Replace all uses of the old target register definition by
-     uses of the new definition.  Delete the old definition. */
+     uses of the new definition.  Delete the old definition.  */
   basic_block b = new_def_bb;
-  rtx insp = b->head;
+  rtx insp = BB_HEAD (b);
   rtx old_insn = def->insn;
   rtx src;
   rtx btr_rtx;
@@ -1070,8 +1120,8 @@ move_btr_def (basic_block new_def_bb, int btr, btr_def def, bitmap live_range,
   btr_user user;
   rtx set;
 
-  if (rtl_dump_file)
-    fprintf(rtl_dump_file, "migrating to basic block %d, using reg %d\n",
+  if (dump_file)
+    fprintf(dump_file, "migrating to basic block %d, using reg %d\n",
            new_def_bb->index, btr);
 
   clear_btr_from_live_range (def);
@@ -1079,51 +1129,62 @@ move_btr_def (basic_block new_def_bb, int btr, btr_def def, bitmap live_range,
   def->bb = new_def_bb;
   def->luid = 0;
   def->cost = basic_block_freq (new_def_bb);
-  def->other_btr_uses_before_def = 0;
+  def->other_btr_uses_before_def
+    = TEST_HARD_REG_BIT (btrs_live[b->index], btr) ? 1 : 0;
   bitmap_copy (def->live_range, live_range);
   combine_btr_defs (def, btrs_live_in_range);
   btr = def->btr;
   add_btr_to_live_range (def);
-  if (GET_CODE (insp) == CODE_LABEL)
+  if (LABEL_P (insp))
     insp = NEXT_INSN (insp);
   /* N.B.: insp is expected to be NOTE_INSN_BASIC_BLOCK now.  Some
      optimizations can result in insp being both first and last insn of
      its basic block.  */
   /* ?? some assertions to check that insp is sensible? */
 
+  if (def->other_btr_uses_before_def)
+    {
+      insp = BB_END (b);
+      for (insp = BB_END (b); ! INSN_P (insp); insp = PREV_INSN (insp))
+       gcc_assert (insp != BB_HEAD (b));
+      
+      if (JUMP_P (insp) || can_throw_internal (insp))
+       insp = PREV_INSN (insp);
+    }
+
   set = single_set (old_insn);
   src = SET_SRC (set);
   btr_mode = GET_MODE (SET_DEST (set));
-  btr_rtx = gen_rtx (REG, btr_mode, btr);
+  btr_rtx = gen_rtx_REG (btr_mode, btr);
 
   new_insn = gen_move_insn (btr_rtx, src);
 
-  /* Insert target register initialization at head of basic block. */
+  /* Insert target register initialization at head of basic block.  */
   def->insn = emit_insn_after (new_insn, insp);
 
   regs_ever_live[btr] = 1;
 
-  if (rtl_dump_file)
-    fprintf (rtl_dump_file, "New pt is insn %d, inserted after insn %d\n",
+  if (dump_file)
+    fprintf (dump_file, "New pt is insn %d, inserted after insn %d\n",
             INSN_UID (def->insn), INSN_UID (insp));
 
-  /* Delete the old target register initialization */
+  /* Delete the old target register initialization */
   delete_insn (old_insn);
 
   /* Replace each use of the old target register by a use of the new target
-     register. */
+     register.  */
   for (user = def->uses; user != NULL; user = user->next)
     {
       /* Some extra work here to ensure consistent modes, because
         it seems that a target register REG rtx can be given a different
         mode depending on the context (surely that should not be
-        the case?). */
+        the case?).  */
       rtx replacement_rtx;
       if (GET_MODE (user->use) == GET_MODE (btr_rtx)
          || GET_MODE (user->use) == VOIDmode)
        replacement_rtx = btr_rtx;
       else
-       replacement_rtx = gen_rtx (REG, GET_MODE (user->use), btr);
+       replacement_rtx = gen_rtx_REG (GET_MODE (user->use), btr);
       replace_rtx (user->insn, user->use, replacement_rtx);
       user->use = replacement_rtx;
     }
@@ -1134,7 +1195,7 @@ move_btr_def (basic_block new_def_bb, int btr, btr_def def, bitmap live_range,
 static int
 can_move_up (basic_block bb, rtx insn, int n_insns)
 {
-  while (insn != bb->head && n_insns > 0)
+  while (insn != BB_HEAD (bb) && n_insns > 0)
     {
       insn = PREV_INSN (insn);
       /* ??? What if we have an anti-dependency that actually prevents the
@@ -1156,15 +1217,15 @@ can_move_up (basic_block bb, rtx insn, int n_insns)
    MIN_COST is the lower bound on the cost of the DEF after migration.
    If we migrate DEF so that its cost falls below MIN_COST,
    then we do not attempt to migrate further.  The idea is that
-   we migrate defintions in a priority order based on their cost,
+   we migrate definitions in a priority order based on their cost,
    when the cost of this definition falls below MIN_COST, then
    there is another definition with cost == MIN_COST which now
    has a higher priority than this definition.
 
-   Return non-zero if there may be benefit from attempting to
+   Return nonzero if there may be benefit from attempting to
    migrate this DEF further (i.e. we have reduced the cost below
    MIN_COST, but we may be able to reduce it further).
-   Return zero if no further migration is possible. */
+   Return zero if no further migration is possible.  */
 static int
 migrate_btr_def (btr_def def, int min_cost)
 {
@@ -1178,16 +1239,16 @@ migrate_btr_def (btr_def def, int min_cost)
   btr_user user;
   int def_latency;
 
-  if (rtl_dump_file)
-    fprintf (rtl_dump_file,
+  if (dump_file)
+    fprintf (dump_file,
             "Attempting to migrate pt from insn %d (cost = %d, min_cost = %d) ... ",
             INSN_UID (def->insn), def->cost, min_cost);
 
   if (!def->group || def->has_ambiguous_use)
-    /* These defs are not migratable */
+    /* These defs are not migratable */
     {
-      if (rtl_dump_file)
-       fprintf (rtl_dump_file, "it's not migratable\n");
+      if (dump_file)
+       fprintf (dump_file, "it's not migratable\n");
       return 0;
     }
 
@@ -1196,8 +1257,8 @@ migrate_btr_def (btr_def def, int min_cost)
        no need to consider it further.
     */
     {
-      if (rtl_dump_file)
-       fprintf (rtl_dump_file, "it's already combined with another pt\n");
+      if (dump_file)
+       fprintf (dump_file, "it's already combined with another pt\n");
       return 0;
     }
 
@@ -1205,11 +1266,11 @@ migrate_btr_def (btr_def def, int min_cost)
   live_range = BITMAP_XMALLOC ();
   bitmap_copy (live_range, def->live_range);
 
-  if ((*targetm.sched.use_dfa_pipeline_interface) ())
-    def_latency = insn_default_latency (def->insn);
-  else
-    def_latency = result_ready_cost (def->insn);
-  def_latency *= issue_rate;
+#ifdef INSN_SCHEDULING
+  def_latency = insn_default_latency (def->insn) * issue_rate;
+#else
+  def_latency = issue_rate;
+#endif
 
   for (user = def->uses; user != NULL; user = user->next)
     {
@@ -1226,27 +1287,27 @@ migrate_btr_def (btr_def def, int min_cost)
 
   def_basic_block_freq = basic_block_freq (def->bb);
 
-  for (try = get_immediate_dominator (dom, def->bb);
+  for (try = get_immediate_dominator (CDI_DOMINATORS, def->bb);
        !give_up && try && try != ENTRY_BLOCK_PTR && def->cost >= min_cost;
-       try = get_immediate_dominator (dom, try))
+       try = get_immediate_dominator (CDI_DOMINATORS, try))
     {
       /* Try to move the instruction that sets the target register into
-        basic block TRY. */
+        basic block TRY.  */
       int try_freq = basic_block_freq (try);
 
-      if (rtl_dump_file)
-       fprintf (rtl_dump_file, "trying block %d ...", try->index);
+      if (dump_file)
+       fprintf (dump_file, "trying block %d ...", try->index);
 
       if (try_freq < def_basic_block_freq
          || (try_freq == def_basic_block_freq && btr_used_near_def))
        {
          int btr;
          augment_live_range (live_range, &btrs_live_in_range, def->bb, try);
-         if (rtl_dump_file)
+         if (dump_file)
            {
-             fprintf (rtl_dump_file, "Now btrs live in range are: ");
+             fprintf (dump_file, "Now btrs live in range are: ");
              dump_hard_reg_set (btrs_live_in_range);
-             fprintf (rtl_dump_file, "\n");
+             fprintf (dump_file, "\n");
            }
          btr = choose_btr (btrs_live_in_range);
          if (btr != -1)
@@ -1262,8 +1323,8 @@ migrate_btr_def (btr_def def, int min_cost)
              /* There are no free target registers available to move
                 this far forward, so give up */
              give_up = 1;
-             if (rtl_dump_file)
-               fprintf (rtl_dump_file,
+             if (dump_file)
+               fprintf (dump_file,
                         "giving up because there are no free target registers\n");
            }
 
@@ -1272,15 +1333,15 @@ migrate_btr_def (btr_def def, int min_cost)
   if (!def_moved)
     {
       give_up = 1;
-      if (rtl_dump_file)
-       fprintf (rtl_dump_file, "failed to move\n");
+      if (dump_file)
+       fprintf (dump_file, "failed to move\n");
     }
   BITMAP_XFREE (live_range);
   return !give_up;
 }
 
 /* Attempt to move instructions that set target registers earlier
-   in the flowgraph, away from their corresponding uses. */
+   in the flowgraph, away from their corresponding uses.  */
 static void
 migrate_btr_defs (enum reg_class btr_class, int allow_callee_save)
 {
@@ -1288,17 +1349,18 @@ migrate_btr_defs (enum reg_class btr_class, int allow_callee_save)
   int reg;
 
   gcc_obstack_init (&migrate_btrl_obstack);
-  if (rtl_dump_file)
+  if (dump_file)
     {
       int i;
 
       for (i = 0; i < n_basic_blocks; i++)
        {
          basic_block bb = BASIC_BLOCK (i);
-         fprintf(rtl_dump_file,
-           "Basic block %d: count = %lld loop-depth = %d idom = %d\n",
-           i, bb->count, bb->loop_depth,
-           get_immediate_dominator (dom, bb)->index);
+         fprintf(dump_file,
+           "Basic block %d: count = " HOST_WIDEST_INT_PRINT_DEC
+           " loop-depth = %d idom = %d\n",
+           i, (HOST_WIDEST_INT) bb->count, bb->loop_depth,
+           get_immediate_dominator (CDI_DOMINATORS, bb)->index);
        }
     }
 
@@ -1313,22 +1375,21 @@ migrate_btr_defs (enum reg_class btr_class, int allow_callee_save)
          first_btr = reg;
       }
 
-  btrs_live =
-    (HARD_REG_SET *) xcalloc (n_basic_blocks, sizeof (HARD_REG_SET));
+  btrs_live = xcalloc (n_basic_blocks, sizeof (HARD_REG_SET));
+  btrs_live_at_end = xcalloc (n_basic_blocks, sizeof (HARD_REG_SET));
 
   build_btr_def_use_webs (all_btr_defs);
 
   while (!fibheap_empty (all_btr_defs))
     {
-      btr_def def =
-       (btr_def) fibheap_extract_min (all_btr_defs);
+      btr_def def = fibheap_extract_min (all_btr_defs);
       int min_cost = -fibheap_min_key (all_btr_defs);
       if (migrate_btr_def (def, min_cost))
        {
          fibheap_insert (all_btr_defs, -def->cost, (void *) def);
-         if (rtl_dump_file)
+         if (dump_file)
            {
-             fprintf (rtl_dump_file,
+             fprintf (dump_file,
                "Putting insn %d back on queue with priority %d\n",
                INSN_UID (def->insn), def->cost);
            }
@@ -1341,38 +1402,39 @@ migrate_btr_defs (enum reg_class btr_class, int allow_callee_save)
     }
 
   free (btrs_live);
+  free (btrs_live_at_end);
   obstack_free (&migrate_btrl_obstack, NULL);
   fibheap_delete (all_btr_defs);
 }
 
 void
-branch_target_load_optimize (rtx insns, bool after_prologue_epilogue_gen)
+branch_target_load_optimize (bool after_prologue_epilogue_gen)
 {
-  enum reg_class class = (*targetm.branch_target_register_class) ();
+  enum reg_class class = targetm.branch_target_register_class ();
   if (class != NO_REGS)
     {
       /* Initialize issue_rate.  */
       if (targetm.sched.issue_rate)
-       issue_rate = (*targetm.sched.issue_rate) ();
+       issue_rate = targetm.sched.issue_rate ();
       else
        issue_rate = 1;
 
-      /* Build the CFG for migrate_btr_defs. */
+      /* Build the CFG for migrate_btr_defs.  */
 #if 1
       /* This may or may not be needed, depending on where we
-        run this phase. */
+        run this phase.  */
       cleanup_cfg (optimize ? CLEANUP_EXPENSIVE : 0);
 #endif
 
-      life_analysis (insns, NULL, 0);
+      life_analysis (NULL, 0);
 
-      /* Dominator info is also needed for migrate_btr_def. */
-      dom = calculate_dominance_info (CDI_DOMINATORS);
+      /* Dominator info is also needed for migrate_btr_def.  */
+      calculate_dominance_info (CDI_DOMINATORS);
       migrate_btr_defs (class,
-                      ((*targetm.branch_target_register_callee_saved)
+                      (targetm.branch_target_register_callee_saved
                        (after_prologue_epilogue_gen)));
 
-      free_dominance_info (dom);
+      free_dominance_info (CDI_DOMINATORS);
 
       update_life_info (NULL, UPDATE_LIFE_GLOBAL_RM_NOTES,
                        PROP_DEATH_NOTES | PROP_REG_INFO);