OSDN Git Service

In include:
[pf3gnuchains/gcc-fork.git] / gcc / haifa-sched.c
index 8641f11..6371b45 100644 (file)
@@ -1,24 +1,25 @@
 /* Instruction scheduling pass.
-   Copyright (C) 1992, 93-98, 1999 Free Software Foundation, Inc.
+   Copyright (C) 1992, 1993, 1994, 1995, 1996, 1997, 1998,
+   1999, 2000 Free Software Foundation, Inc.
    Contributed by Michael Tiemann (tiemann@cygnus.com) Enhanced by,
    and currently maintained by, Jim Wilson (wilson@cygnus.com)
 
-   This file is part of GNU CC.
+This file is part of GNU CC.
 
-   GNU CC is free software; you can redistribute it and/or modify it
-   under the terms of the GNU General Public License as published by
-   the Free Software Foundation; either version 2, or (at your option)
-   any later version.
+GNU CC is free software; you can redistribute it and/or modify it
+under the terms of the GNU General Public License as published by the
+Free Software Foundation; either version 2, or (at your option) any
+later version.
 
-   GNU CC is distributed in the hope that it will be useful, but
-   WITHOUT ANY WARRANTY; without even the implied warranty of
-   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
-   General Public License for more details.
+GNU CC is distributed in the hope that it will be useful, but WITHOUT
+ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
+FITNESS FOR A PARTICULAR PURPOSE.  See the GNU General Public License
+for more details.
 
-   You should have received a copy of the GNU General Public License
-   along with GNU CC; see the file COPYING.  If not, write to the Free
-   the Free Software Foundation, 59 Temple Place - Suite 330,
-   Boston, MA 02111-1307, USA.  */
+You should have received a copy of the GNU General Public License
+along with GNU CC; see the file COPYING.  If not, write to the Free
+the Free Software Foundation, 59 Temple Place - Suite 330, Boston, MA
+02111-1307, USA.  */
 
 
 /* Instruction scheduling pass.
 #include "toplev.h"
 #include "rtl.h"
 #include "tm_p.h"
+#include "hard-reg-set.h"
 #include "basic-block.h"
 #include "regs.h"
 #include "function.h"
-#include "hard-reg-set.h"
 #include "flags.h"
 #include "insn-config.h"
 #include "insn-attr.h"
@@ -196,7 +197,7 @@ static int issue_rate;
 #endif
 
 /* sched-verbose controls the amount of debugging output the
-   scheduler prints.  It is controlled by -fsched-verbose-N:
+   scheduler prints.  It is controlled by -fsched-verbose=N:
    N>0 and no -DSR : the output is directed to stderr.
    N>=10 will direct the printouts to stderr (regardless of -dSR).
    N=1: same as -dSR.
@@ -219,7 +220,7 @@ static int nr_inter, nr_spec;
 static FILE *dump = 0;
 
 /* fix_sched_param() is called from toplev.c upon detection
-   of the -fsched-***-N options.  */
+   of the -fsched-verbose=N option.  */
 
 void
 fix_sched_param (param, val)
@@ -231,79 +232,159 @@ fix_sched_param (param, val)
     warning ("fix_sched_param: unknown param: %s", param);
 }
 
+/* Describe state of dependencies used during sched_analyze phase.  */
+struct deps
+{
+  /* The *_insns and *_mems are paired lists.  Each pending memory operation
+     will have a pointer to the MEM rtx on one list and a pointer to the
+     containing insn on the other list in the same place in the list.  */
+
+  /* We can't use add_dependence like the old code did, because a single insn
+     may have multiple memory accesses, and hence needs to be on the list
+     once for each memory access.  Add_dependence won't let you add an insn
+     to a list more than once.  */
+
+  /* An INSN_LIST containing all insns with pending read operations.  */
+  rtx pending_read_insns;
+
+  /* An EXPR_LIST containing all MEM rtx's which are pending reads.  */
+  rtx pending_read_mems;
+
+  /* An INSN_LIST containing all insns with pending write operations.  */
+  rtx pending_write_insns;
+
+  /* An EXPR_LIST containing all MEM rtx's which are pending writes.  */
+  rtx pending_write_mems;
+
+  /* Indicates the combined length of the two pending lists.  We must prevent
+     these lists from ever growing too large since the number of dependencies
+     produced is at least O(N*N), and execution time is at least O(4*N*N), as
+     a function of the length of these pending lists.  */
+  int pending_lists_length;
+
+  /* The last insn upon which all memory references must depend.
+     This is an insn which flushed the pending lists, creating a dependency
+     between it and all previously pending memory references.  This creates
+     a barrier (or a checkpoint) which no memory reference is allowed to cross.
+
+     This includes all non constant CALL_INSNs.  When we do interprocedural
+     alias analysis, this restriction can be relaxed.
+     This may also be an INSN that writes memory if the pending lists grow
+     too large.  */
+  rtx last_pending_memory_flush;
+
+  /* The last function call we have seen.  All hard regs, and, of course,
+     the last function call, must depend on this.  */
+  rtx last_function_call;
+
+  /* Used to keep post-call psuedo/hard reg movements together with
+     the call.  */
+  int in_post_call_group_p;
+
+  /* The LOG_LINKS field of this is a list of insns which use a pseudo
+     register that does not already cross a call.  We create
+     dependencies between each of those insn and the next call insn,
+     to ensure that they won't cross a call after scheduling is done.  */
+  rtx sched_before_next_call;
+
+  /* Element N is the next insn that sets (hard or pseudo) register
+     N within the current basic block; or zero, if there is no
+     such insn.  Needed for new registers which may be introduced
+     by splitting insns.  */
+  rtx *reg_last_uses;
+  rtx *reg_last_sets;
+  rtx *reg_last_clobbers;
+};
 
-/* Arrays set up by scheduling for the same respective purposes as
-   similar-named arrays set up by flow analysis.  We work with these
-   arrays during the scheduling pass so we can compare values against
-   unscheduled code.
-
-   Values of these arrays are copied at the end of this pass into the
-   arrays set up by flow analysis.  */
-static int *sched_reg_n_calls_crossed;
-static int *sched_reg_live_length;
-static int *sched_reg_basic_block;
-
-/* We need to know the current block number during the post scheduling
-   update of live register information so that we can also update
-   REG_BASIC_BLOCK if a register changes blocks.  */
-static int current_block_num;
-
-/* Element N is the next insn that sets (hard or pseudo) register
-   N within the current basic block; or zero, if there is no
-   such insn.  Needed for new registers which may be introduced
-   by splitting insns.  */
-static rtx *reg_last_uses;
-static rtx *reg_last_sets;
-static rtx *reg_last_clobbers;
 static regset reg_pending_sets;
 static regset reg_pending_clobbers;
 static int reg_pending_sets_all;
 
-/* Vector indexed by INSN_UID giving the original ordering of the insns.  */
-static int *insn_luid;
-#define INSN_LUID(INSN) (insn_luid[INSN_UID (INSN)])
-
-/* Vector indexed by INSN_UID giving each instruction a priority.  */
-static int *insn_priority;
-#define INSN_PRIORITY(INSN) (insn_priority[INSN_UID (INSN)])
-
-static short *insn_costs;
-#define INSN_COST(INSN)        insn_costs[INSN_UID (INSN)]
-
-/* Vector indexed by INSN_UID giving an encoding of the function units
-   used.  */
-static short *insn_units;
-#define INSN_UNIT(INSN)        insn_units[INSN_UID (INSN)]
-
-/* Vector indexed by INSN_UID giving each instruction a
-   register-weight.  This weight is an estimation of the insn
-   contribution to registers pressure.  */
-static int *insn_reg_weight;
-#define INSN_REG_WEIGHT(INSN) (insn_reg_weight[INSN_UID (INSN)])
-
-/* Vector indexed by INSN_UID giving list of insns which
-   depend upon INSN.  Unlike LOG_LINKS, it represents forward dependences.  */
-static rtx *insn_depend;
-#define INSN_DEPEND(INSN) insn_depend[INSN_UID (INSN)]
-
-/* Vector indexed by INSN_UID. Initialized to the number of incoming
-   edges in forward dependence graph (= number of LOG_LINKS).  As
-   scheduling procedes, dependence counts are decreased.  An
-   instruction moves to the ready list when its counter is zero.  */
-static int *insn_dep_count;
-#define INSN_DEP_COUNT(INSN) (insn_dep_count[INSN_UID (INSN)])
-
-/* Vector indexed by INSN_UID giving an encoding of the blockage range
-   function.  The unit and the range are encoded.  */
-static unsigned int *insn_blockage;
-#define INSN_BLOCKAGE(INSN) insn_blockage[INSN_UID (INSN)]
-#define UNIT_BITS 5
-#define BLOCKAGE_MASK ((1 << BLOCKAGE_BITS) - 1)
-#define ENCODE_BLOCKAGE(U, R)                          \
-(((U) << BLOCKAGE_BITS                                 \
-  | MIN_BLOCKAGE_COST (R)) << BLOCKAGE_BITS            \
- | MAX_BLOCKAGE_COST (R))
-#define UNIT_BLOCKED(B) ((B) >> (2 * BLOCKAGE_BITS))
+/* To speed up the test for duplicate dependency links we keep a record
+   of true dependencies created by add_dependence when the average number
+   of instructions in a basic block is very large.
+
+   Studies have shown that there is typically around 5 instructions between
+   branches for typical C code.  So we can make a guess that the average
+   basic block is approximately 5 instructions long; we will choose 100X
+   the average size as a very large basic block.
+  
+   Each insn has an associated bitmap for its dependencies.  Each bitmap
+   has enough entries to represent a dependency on any other insn in the
+   insn chain.  */
+static sbitmap *true_dependency_cache;
+
+/* Indexed by INSN_UID, the collection of all data associated with
+   a single instruction.  */
+
+struct haifa_insn_data
+{
+  /* A list of insns which depend on the instruction.  Unlike LOG_LINKS,
+     it represents forward dependancies.  */
+  rtx depend;
+
+  /* The line number note in effect for each insn.  For line number 
+     notes, this indicates whether the note may be reused.  */
+  rtx line_note;
+
+  /* Logical uid gives the original ordering of the insns.  */
+  int luid;
+
+  /* A priority for each insn.  */
+  int priority;
+
+  /* The number of incoming edges in the forward dependency graph.
+     As scheduling proceds, counts are decreased.  An insn moves to
+     the ready queue when its counter reaches zero.  */
+  int dep_count;
+
+  /* An encoding of the blockage range function.  Both unit and range
+     are coded.  */
+  unsigned int blockage;
+
+  /* Number of instructions referring to this insn.  */
+  int ref_count;
+
+  /* The minimum clock tick at which the insn becomes ready.  This is
+     used to note timing constraints for the insns in the pending list.  */
+  int tick;
+
+  short cost;
+
+  /* An encoding of the function units used.  */
+  short units;
+
+  /* This weight is an estimation of the insn's contribution to
+     register pressure.  */
+  short reg_weight;
+
+  /* Some insns (e.g. call) are not allowed to move across blocks.  */
+  unsigned int cant_move : 1;
+
+  /* Set if there's DEF-USE dependance between some speculatively
+     moved load insn and this one.  */
+  unsigned int fed_by_spec_load : 1;
+  unsigned int is_load_insn : 1;
+};
+
+static struct haifa_insn_data *h_i_d;
+
+#define INSN_DEPEND(INSN)      (h_i_d[INSN_UID (INSN)].depend)
+#define INSN_LUID(INSN)                (h_i_d[INSN_UID (INSN)].luid)
+#define INSN_PRIORITY(INSN)    (h_i_d[INSN_UID (INSN)].priority)
+#define INSN_DEP_COUNT(INSN)   (h_i_d[INSN_UID (INSN)].dep_count)
+#define INSN_COST(INSN)                (h_i_d[INSN_UID (INSN)].cost)
+#define INSN_UNIT(INSN)                (h_i_d[INSN_UID (INSN)].units)
+#define INSN_REG_WEIGHT(INSN)  (h_i_d[INSN_UID (INSN)].reg_weight)
+
+#define INSN_BLOCKAGE(INSN)    (h_i_d[INSN_UID (INSN)].blockage)
+#define UNIT_BITS              5
+#define BLOCKAGE_MASK          ((1 << BLOCKAGE_BITS) - 1)
+#define ENCODE_BLOCKAGE(U, R)                  \
+  (((U) << BLOCKAGE_BITS                       \
+    | MIN_BLOCKAGE_COST (R)) << BLOCKAGE_BITS  \
+   | MAX_BLOCKAGE_COST (R))
+#define UNIT_BLOCKED(B)                ((B) >> (2 * BLOCKAGE_BITS))
 #define BLOCKAGE_RANGE(B)                                                \
   (((((B) >> BLOCKAGE_BITS) & BLOCKAGE_MASK) << (HOST_BITS_PER_INT / 2)) \
    | ((B) & BLOCKAGE_MASK))
@@ -319,16 +400,12 @@ static unsigned int *insn_blockage;
 #define DONE_PRIORITY_P(INSN) (INSN_PRIORITY (INSN) < 0)
 #define LOW_PRIORITY_P(INSN) ((INSN_PRIORITY (INSN) & 0x7f000000) == 0)
 
-/* Vector indexed by INSN_UID giving number of insns referring to this
-   insn.  */
-static int *insn_ref_count;
-#define INSN_REF_COUNT(INSN) (insn_ref_count[INSN_UID (INSN)])
-
-/* Vector indexed by INSN_UID giving line-number note in effect for each
-   insn.  For line-number notes, this indicates whether the note may be
-   reused.  */
-static rtx *line_note;
-#define LINE_NOTE(INSN) (line_note[INSN_UID (INSN)])
+#define INSN_REF_COUNT(INSN)   (h_i_d[INSN_UID (INSN)].ref_count)
+#define LINE_NOTE(INSN)                (h_i_d[INSN_UID (INSN)].line_note)
+#define INSN_TICK(INSN)                (h_i_d[INSN_UID (INSN)].tick)
+#define CANT_MOVE(insn)                (h_i_d[INSN_UID (insn)].cant_move)
+#define FED_BY_SPEC_LOAD(insn) (h_i_d[INSN_UID (insn)].fed_by_spec_load)
+#define IS_LOAD_INSN(insn)     (h_i_d[INSN_UID (insn)].is_load_insn)
 
 /* Vector indexed by basic block number giving the starting line-number
    for each basic block.  */
@@ -338,23 +415,6 @@ static rtx *line_note_head;
    last element in the list.  */
 static rtx note_list;
 
-/* Regsets telling whether a given register is live or dead before the last
-   scheduled insn.  Must scan the instructions once before scheduling to
-   determine what registers are live or dead at the end of the block.  */
-static regset bb_live_regs;
-
-/* Regset telling whether a given register is live after the insn currently
-   being scheduled.  Before processing an insn, this is equal to bb_live_regs
-   above.  This is used so that we can find registers that are newly born/dead
-   after processing an insn.  */
-static regset old_live_regs;
-
-/* The chain of REG_DEAD notes.  REG_DEAD notes are removed from all insns
-   during the initial scan and reused later.  If there are not exactly as
-   many REG_DEAD notes in the post scheduled code as there were in the
-   prescheduled code then we trigger an abort because this indicates a bug.  */
-static rtx dead_notes;
-
 /* Queues, etc.  */
 
 /* An instruction is ready to be scheduled when all insns preceding it
@@ -408,65 +468,37 @@ static int q_size = 0;
 #define NEXT_Q(X) (((X)+1) & (INSN_QUEUE_SIZE-1))
 #define NEXT_Q_AFTER(X, C) (((X)+C) & (INSN_QUEUE_SIZE-1))
 
-/* Vector indexed by INSN_UID giving the minimum clock tick at which
-   the insn becomes ready.  This is used to note timing constraints for
-   insns in the pending list.  */
-static int *insn_tick;
-#define INSN_TICK(INSN) (insn_tick[INSN_UID (INSN)])
-
-/* Data structure for keeping track of register information
-   during that register's life.  */
-
-struct sometimes
-  {
-    int regno;
-    int live_length;
-    int calls_crossed;
-  };
-
 /* Forward declarations.  */
-static void add_dependence PROTO ((rtx, rtx, enum reg_note));
-static void remove_dependence PROTO ((rtx, rtx));
-static rtx find_insn_list PROTO ((rtx, rtx));
-static int insn_unit PROTO ((rtx));
-static unsigned int blockage_range PROTO ((int, rtx));
-static void clear_units PROTO ((void));
-static int actual_hazard_this_instance PROTO ((int, int, rtx, int, int));
-static void schedule_unit PROTO ((int, rtx, int));
-static int actual_hazard PROTO ((int, rtx, int, int));
-static int potential_hazard PROTO ((int, rtx, int));
-static int insn_cost PROTO ((rtx, rtx, rtx));
-static int priority PROTO ((rtx));
-static void free_pending_lists PROTO ((void));
-static void add_insn_mem_dependence PROTO ((rtx *, rtx *, rtx, rtx));
-static void flush_pending_lists PROTO ((rtx, int));
-static void sched_analyze_1 PROTO ((rtx, rtx));
-static void sched_analyze_2 PROTO ((rtx, rtx));
-static void sched_analyze_insn PROTO ((rtx, rtx, rtx));
-static void sched_analyze PROTO ((rtx, rtx));
-static void sched_note_set PROTO ((rtx, int));
-static int rank_for_schedule PROTO ((const PTR, const PTR));
-static void swap_sort PROTO ((rtx *, int));
-static void queue_insn PROTO ((rtx, int));
-static int schedule_insn PROTO ((rtx, rtx *, int, int));
-static void create_reg_dead_note PROTO ((rtx, rtx));
-static void attach_deaths PROTO ((rtx, rtx, int));
-static void attach_deaths_insn PROTO ((rtx));
-static int new_sometimes_live PROTO ((struct sometimes *, int, int));
-static void finish_sometimes_live PROTO ((struct sometimes *, int));
-static int schedule_block PROTO ((int, int));
-static char *safe_concat PROTO ((char *, char *, const char *));
-static int insn_issue_delay PROTO ((rtx));
-static int birthing_insn_p PROTO ((rtx));
-static void adjust_priority PROTO ((rtx));
-
-/* Mapping of insns to their original block prior to scheduling.  */
-static int *insn_orig_block;
-#define INSN_BLOCK(insn) (insn_orig_block[INSN_UID (insn)])
-
-/* Some insns (e.g. call) are not allowed to move across blocks.  */
-static char *cant_move;
-#define CANT_MOVE(insn) (cant_move[INSN_UID (insn)])
+static void add_dependence PARAMS ((rtx, rtx, enum reg_note));
+static void remove_dependence PARAMS ((rtx, rtx));
+static rtx find_insn_list PARAMS ((rtx, rtx));
+static void set_sched_group_p PARAMS ((rtx));
+static int insn_unit PARAMS ((rtx));
+static unsigned int blockage_range PARAMS ((int, rtx));
+static void clear_units PARAMS ((void));
+static int actual_hazard_this_instance PARAMS ((int, int, rtx, int, int));
+static void schedule_unit PARAMS ((int, rtx, int));
+static int actual_hazard PARAMS ((int, rtx, int, int));
+static int potential_hazard PARAMS ((int, rtx, int));
+static int insn_cost PARAMS ((rtx, rtx, rtx));
+static int priority PARAMS ((rtx));
+static void free_pending_lists PARAMS ((void));
+static void add_insn_mem_dependence PARAMS ((struct deps *, rtx *, rtx *, rtx,
+                                           rtx));
+static void flush_pending_lists PARAMS ((struct deps *, rtx, int));
+static void sched_analyze_1 PARAMS ((struct deps *, rtx, rtx));
+static void sched_analyze_2 PARAMS ((struct deps *, rtx, rtx));
+static void sched_analyze_insn PARAMS ((struct deps *, rtx, rtx, rtx));
+static void sched_analyze PARAMS ((struct deps *, rtx, rtx));
+static int rank_for_schedule PARAMS ((const PTR, const PTR));
+static void swap_sort PARAMS ((rtx *, int));
+static void queue_insn PARAMS ((rtx, int));
+static int schedule_insn PARAMS ((rtx, rtx *, int, int));
+static void find_insn_reg_weight PARAMS ((int));
+static int schedule_block PARAMS ((int, int));
+static char *safe_concat PARAMS ((char *, char *, const char *));
+static int insn_issue_delay PARAMS ((rtx));
+static void adjust_priority PARAMS ((rtx));
 
 /* Control flow graph edges are kept in circular lists.  */
 typedef struct
@@ -497,10 +529,9 @@ static int *out_edges;
 
 
 
-static int is_cfg_nonregular PROTO ((void));
-static int build_control_flow PROTO ((int_list_ptr *, int_list_ptr *,
-                                     int *, int *));
-static void new_edge PROTO ((int, int));
+static int is_cfg_nonregular PARAMS ((void));
+static int build_control_flow PARAMS ((struct edge_list *));
+static void new_edge PARAMS ((int, int));
 
 
 /* A region is the main entity for interblock scheduling: insns
@@ -536,13 +567,12 @@ static int *containing_rgn;
 #define BLOCK_TO_BB(block) (block_to_bb[block])
 #define CONTAINING_RGN(block) (containing_rgn[block])
 
-void debug_regions PROTO ((void));
-static void find_single_block_region PROTO ((void));
-static void find_rgns PROTO ((int_list_ptr *, int_list_ptr *,
-                             int *, int *, sbitmap *));
-static int too_large PROTO ((int, int *, int *));
+void debug_regions PARAMS ((void));
+static void find_single_block_region PARAMS ((void));
+static void find_rgns PARAMS ((struct edge_list *, sbitmap *));
+static int too_large PARAMS ((int, int *, int *));
 
-extern void debug_live PROTO ((int, int));
+extern void debug_live PARAMS ((int, int));
 
 /* Blocks of the current region being scheduled.  */
 static int current_nr_blocks;
@@ -567,8 +597,8 @@ static int bitlst_table_last;
 static int bitlst_table_size;
 static int *bitlst_table;
 
-static char bitset_member PROTO ((bitset, int, int));
-static void extract_bitlst PROTO ((bitset, int, bitlst *));
+static char bitset_member PARAMS ((bitset, int, int));
+static void extract_bitlst PARAMS ((bitset, int, int, bitlst *));
 
 /* Target info declarations.
 
@@ -609,10 +639,10 @@ static int target_bb;
 typedef bitlst edgelst;
 
 /* Target info functions.  */
-static void split_edges PROTO ((int, int, edgelst *));
-static void compute_trg_info PROTO ((int));
-void debug_candidate PROTO ((int));
-void debug_candidates PROTO ((int));
+static void split_edges PARAMS ((int, int, edgelst *));
+static void compute_trg_info PARAMS ((int));
+void debug_candidate PARAMS ((int));
+void debug_candidates PARAMS ((int));
 
 
 /* Bit-set of bbs, where bit 'i' stands for bb 'i'.  */
@@ -654,6 +684,9 @@ static int *rgn_edges;
 /* Number of words in an edgeset.  */
 static int edgeset_size;
 
+/* Number of bits in an edgeset.  */
+static int edgeset_bitsize;
+
 /* Mapping from each edge in the graph to its number in the rgn.  */
 static int *edge_to_bit;
 #define EDGE_TO_BIT(edge) (edge_to_bit[edge])
@@ -669,12 +702,12 @@ static edgeset *pot_split;
 /* For every bb, a set of its ancestor edges.  */
 static edgeset *ancestor_edges;
 
-static void compute_dom_prob_ps PROTO ((int));
+static void compute_dom_prob_ps PARAMS ((int));
 
 #define ABS_VALUE(x) (((x)<0)?(-(x)):(x))
-#define INSN_PROBABILITY(INSN) (SRC_PROB (BLOCK_TO_BB (INSN_BLOCK (INSN))))
-#define IS_SPECULATIVE_INSN(INSN) (IS_SPECULATIVE (BLOCK_TO_BB (INSN_BLOCK (INSN))))
-#define INSN_BB(INSN) (BLOCK_TO_BB (INSN_BLOCK (INSN)))
+#define INSN_PROBABILITY(INSN) (SRC_PROB (BLOCK_TO_BB (BLOCK_NUM (INSN))))
+#define IS_SPECULATIVE_INSN(INSN) (IS_SPECULATIVE (BLOCK_TO_BB (BLOCK_NUM (INSN))))
+#define INSN_BB(INSN) (BLOCK_TO_BB (BLOCK_NUM (INSN)))
 
 /* Parameters affecting the decision of rank_for_schedule().  */
 #define MIN_DIFF_PRIORITY 2
@@ -682,25 +715,24 @@ static void compute_dom_prob_ps PROTO ((int));
 #define MIN_PROB_DIFF 10
 
 /* Speculative scheduling functions.  */
-static int check_live_1 PROTO ((int, rtx));
-static void update_live_1 PROTO ((int, rtx));
-static int check_live PROTO ((rtx, int));
-static void update_live PROTO ((rtx, int));
-static void set_spec_fed PROTO ((rtx));
-static int is_pfree PROTO ((rtx, int, int));
-static int find_conditional_protection PROTO ((rtx, int));
-static int is_conditionally_protected PROTO ((rtx, int, int));
-static int may_trap_exp PROTO ((rtx, int));
-static int haifa_classify_insn PROTO ((rtx));
-static int is_prisky PROTO ((rtx, int, int));
-static int is_exception_free PROTO ((rtx, int, int));
-
-static char find_insn_mem_list PROTO ((rtx, rtx, rtx, rtx));
-static void compute_block_forward_dependences PROTO ((int));
-static void init_rgn_data_dependences PROTO ((int));
-static void add_branch_dependences PROTO ((rtx, rtx));
-static void compute_block_backward_dependences PROTO ((int));
-void debug_dependencies PROTO ((void));
+static int check_live_1 PARAMS ((int, rtx));
+static void update_live_1 PARAMS ((int, rtx));
+static int check_live PARAMS ((rtx, int));
+static void update_live PARAMS ((rtx, int));
+static void set_spec_fed PARAMS ((rtx));
+static int is_pfree PARAMS ((rtx, int, int));
+static int find_conditional_protection PARAMS ((rtx, int));
+static int is_conditionally_protected PARAMS ((rtx, int, int));
+static int may_trap_exp PARAMS ((rtx, int));
+static int haifa_classify_insn PARAMS ((rtx));
+static int is_prisky PARAMS ((rtx, int, int));
+static int is_exception_free PARAMS ((rtx, int, int));
+
+static char find_insn_mem_list PARAMS ((rtx, rtx, rtx, rtx));
+static void compute_block_forward_dependences PARAMS ((int));
+static void add_branch_dependences PARAMS ((rtx, rtx));
+static void compute_block_backward_dependences PARAMS ((int));
+void debug_dependencies PARAMS ((void));
 
 /* Notes handling mechanism:
    =========================
@@ -725,43 +757,42 @@ void debug_dependencies PROTO ((void));
    unlink_other_notes ()).  After scheduling the block, these notes are
    inserted at the beginning of the block (in schedule_block()).  */
 
-static rtx unlink_other_notes PROTO ((rtx, rtx));
-static rtx unlink_line_notes PROTO ((rtx, rtx));
-static void rm_line_notes PROTO ((int));
-static void save_line_notes PROTO ((int));
-static void restore_line_notes PROTO ((int));
-static void rm_redundant_line_notes PROTO ((void));
-static void rm_other_notes PROTO ((rtx, rtx));
-static rtx reemit_notes PROTO ((rtx, rtx));
-
-static void get_block_head_tail PROTO ((int, rtx *, rtx *));
-
-static void find_pre_sched_live PROTO ((int));
-static void find_post_sched_live PROTO ((int));
-static void update_reg_usage PROTO ((void));
-static int queue_to_ready PROTO ((rtx [], int));
-
-static void debug_ready_list PROTO ((rtx[], int));
-static void init_target_units PROTO ((void));
-static void insn_print_units PROTO ((rtx));
-static int get_visual_tbl_length PROTO ((void));
-static void init_block_visualization PROTO ((void));
-static void print_block_visualization PROTO ((int, const char *));
-static void visualize_scheduled_insns PROTO ((int, int));
-static void visualize_no_unit PROTO ((rtx));
-static void visualize_stall_cycles PROTO ((int, int));
-static void print_exp PROTO ((char *, rtx, int));
-static void print_value PROTO ((char *, rtx, int));
-static void print_pattern PROTO ((char *, rtx, int));
-static void print_insn PROTO ((char *, rtx, int));
-void debug_reg_vector PROTO ((regset));
-
-static rtx move_insn1 PROTO ((rtx, rtx));
-static rtx move_insn PROTO ((rtx, rtx));
-static rtx group_leader PROTO ((rtx));
-static int set_priorities PROTO ((int));
-static void init_rtx_vector PROTO ((rtx **, rtx *, int, int));
-static void schedule_region PROTO ((int));
+static rtx unlink_other_notes PARAMS ((rtx, rtx));
+static rtx unlink_line_notes PARAMS ((rtx, rtx));
+static void rm_line_notes PARAMS ((int));
+static void save_line_notes PARAMS ((int));
+static void restore_line_notes PARAMS ((int));
+static void rm_redundant_line_notes PARAMS ((void));
+static void rm_other_notes PARAMS ((rtx, rtx));
+static rtx reemit_notes PARAMS ((rtx, rtx));
+
+static void get_block_head_tail PARAMS ((int, rtx *, rtx *));
+static void get_bb_head_tail PARAMS ((int, rtx *, rtx *));
+
+static int queue_to_ready PARAMS ((rtx [], int));
+
+static void debug_ready_list PARAMS ((rtx[], int));
+static void init_target_units PARAMS ((void));
+static void insn_print_units PARAMS ((rtx));
+static int get_visual_tbl_length PARAMS ((void));
+static void init_block_visualization PARAMS ((void));
+static void print_block_visualization PARAMS ((int, const char *));
+static void visualize_scheduled_insns PARAMS ((int, int));
+static void visualize_no_unit PARAMS ((rtx));
+static void visualize_stall_cycles PARAMS ((int, int));
+static void print_exp PARAMS ((char *, rtx, int));
+static void print_value PARAMS ((char *, rtx, int));
+static void print_pattern PARAMS ((char *, rtx, int));
+static void print_insn PARAMS ((char *, rtx, int));
+void debug_reg_vector PARAMS ((regset));
+
+static rtx move_insn1 PARAMS ((rtx, rtx));
+static rtx move_insn PARAMS ((rtx, rtx));
+static rtx group_leader PARAMS ((rtx));
+static int set_priorities PARAMS ((int));
+static void init_deps PARAMS ((struct deps *));
+static void schedule_region PARAMS ((int));
+static void propagate_deps PARAMS ((int, struct deps *, int));
 
 #endif /* INSN_SCHEDULING */
 \f
@@ -794,26 +825,23 @@ add_dependence (insn, elem, dep_type)
      When HAVE_cc0, it is possible for NOTEs to exist between users and
      setters of the condition codes, so we must skip past notes here.
      Otherwise, NOTEs are impossible here.  */
-
-  next = NEXT_INSN (elem);
-
-#ifdef HAVE_cc0
-  while (next && GET_CODE (next) == NOTE)
-    next = NEXT_INSN (next);
-#endif
-
+  next = next_nonnote_insn (elem);
   if (next && SCHED_GROUP_P (next)
       && GET_CODE (next) != CODE_LABEL)
     {
       /* Notes will never intervene here though, so don't bother checking
          for them.  */
+      /* Hah!  Wrong.  */
       /* We must reject CODE_LABELs, so that we don't get confused by one
          that has LABEL_PRESERVE_P set, which is represented by the same
          bit in the rtl as SCHED_GROUP_P.  A CODE_LABEL can never be
          SCHED_GROUP_P.  */
-      while (NEXT_INSN (next) && SCHED_GROUP_P (NEXT_INSN (next))
-            && GET_CODE (NEXT_INSN (next)) != CODE_LABEL)
-       next = NEXT_INSN (next);
+
+      rtx nnext;
+      while ((nnext = next_nonnote_insn (next)) != NULL
+            && SCHED_GROUP_P (nnext)
+            && GET_CODE (nnext) != CODE_LABEL)
+       next = nnext;
 
       /* Again, don't depend an insn on itself.  */
       if (insn == next)
@@ -833,6 +861,12 @@ add_dependence (insn, elem, dep_type)
       && (INSN_BB (elem) != INSN_BB (insn)))
     return;
 
+  /* If we already have a true dependency for ELEM, then we do not
+     need to do anything.  Avoiding the list walk below can cut
+     compile times dramatically for some code.  */
+  if (true_dependency_cache
+      && TEST_BIT (true_dependency_cache[INSN_LUID (insn)], INSN_LUID (elem)))
+    return;
 #endif
 
   /* Check that we don't already have this dependence.  */
@@ -843,6 +877,13 @@ add_dependence (insn, elem, dep_type)
           one, then change the existing dependence to this type.  */
        if ((int) dep_type < (int) REG_NOTE_KIND (link))
          PUT_REG_NOTE_KIND (link, dep_type);
+
+#ifdef INSN_SCHEDULING
+       /* If we are adding a true dependency to INSN's LOG_LINKs, then
+          note that in the bitmap cache of true dependency information.  */
+       if ((int)dep_type == 0 && true_dependency_cache)
+         SET_BIT (true_dependency_cache[INSN_LUID (insn)], INSN_LUID (elem));
+#endif
        return;
       }
   /* Might want to check one level of transitivity to save conses.  */
@@ -852,6 +893,13 @@ add_dependence (insn, elem, dep_type)
 
   /* Insn dependency, not data dependency.  */
   PUT_REG_NOTE_KIND (link, dep_type);
+
+#ifdef INSN_SCHEDULING
+  /* If we are adding a true dependency to INSN's LOG_LINKs, then
+     note that in the bitmap cache of true dependency information.  */
+  if ((int)dep_type == 0 && true_dependency_cache)
+    SET_BIT (true_dependency_cache[INSN_LUID (insn)], INSN_LUID (elem));
+#endif
 }
 
 /* Remove ELEM wrapped in an INSN_LIST from the LOG_LINKS
@@ -874,6 +922,15 @@ remove_dependence (insn, elem)
            XEXP (prev, 1) = next;
          else
            LOG_LINKS (insn) = next;
+
+#ifdef INSN_SCHEDULING
+         /* If we are removing a true dependency from the LOG_LINKS list,
+            make sure to remove it from the cache too.  */
+         if (REG_NOTE_KIND (link) == 0 && true_dependency_cache)
+           RESET_BIT (true_dependency_cache[INSN_LUID (insn)],
+                      INSN_LUID (elem));
+#endif
+
          free_INSN_LIST_node (link);
 
          found = 1;
@@ -886,11 +943,56 @@ remove_dependence (insn, elem)
     abort ();
   return;
 }
+
+/* Return the INSN_LIST containing INSN in LIST, or NULL
+   if LIST does not contain INSN.  */
+
+static inline rtx
+find_insn_list (insn, list)
+     rtx insn;
+     rtx list;
+{
+  while (list)
+    {
+      if (XEXP (list, 0) == insn)
+       return list;
+      list = XEXP (list, 1);
+    }
+  return 0;
+}
+
+/* Set SCHED_GROUP_P and care for the rest of the bookkeeping that
+   goes along with that.  */
+
+static void
+set_sched_group_p (insn)
+     rtx insn;
+{
+  rtx link, prev;
+
+  SCHED_GROUP_P (insn) = 1;
+
+  /* There may be a note before this insn now, but all notes will
+     be removed before we actually try to schedule the insns, so
+     it won't cause a problem later.  We must avoid it here though.  */
+  prev = prev_nonnote_insn (insn);
+
+  /* Make a copy of all dependencies on the immediately previous insn,
+     and add to this insn.  This is so that all the dependencies will
+     apply to the group.  Remove an explicit dependence on this insn
+     as SCHED_GROUP_P now represents it.  */
+
+  if (find_insn_list (prev, LOG_LINKS (insn)))
+    remove_dependence (insn, prev);
+
+  for (link = LOG_LINKS (prev); link; link = XEXP (link, 1))
+    add_dependence (insn, XEXP (link, 0), REG_NOTE_KIND (link));
+}
 \f
 #ifndef INSN_SCHEDULING
 void
 schedule_insns (dump_file)
-     FILE *dump_file;
+     FILE *dump_file ATTRIBUTE_UNUSED;
 {
 }
 #else
@@ -904,57 +1006,13 @@ schedule_insns (dump_file)
 
 /* Computation of memory dependencies.  */
 
-/* The *_insns and *_mems are paired lists.  Each pending memory operation
-   will have a pointer to the MEM rtx on one list and a pointer to the
-   containing insn on the other list in the same place in the list.  */
-
-/* We can't use add_dependence like the old code did, because a single insn
-   may have multiple memory accesses, and hence needs to be on the list
-   once for each memory access.  Add_dependence won't let you add an insn
-   to a list more than once.  */
-
-/* An INSN_LIST containing all insns with pending read operations.  */
-static rtx pending_read_insns;
-
-/* An EXPR_LIST containing all MEM rtx's which are pending reads.  */
-static rtx pending_read_mems;
-
-/* An INSN_LIST containing all insns with pending write operations.  */
-static rtx pending_write_insns;
-
-/* An EXPR_LIST containing all MEM rtx's which are pending writes.  */
-static rtx pending_write_mems;
-
-/* Indicates the combined length of the two pending lists.  We must prevent
-   these lists from ever growing too large since the number of dependencies
-   produced is at least O(N*N), and execution time is at least O(4*N*N), as
-   a function of the length of these pending lists.  */
-
-static int pending_lists_length;
-
-/* The last insn upon which all memory references must depend.
-   This is an insn which flushed the pending lists, creating a dependency
-   between it and all previously pending memory references.  This creates
-   a barrier (or a checkpoint) which no memory reference is allowed to cross.
-
-   This includes all non constant CALL_INSNs.  When we do interprocedural
-   alias analysis, this restriction can be relaxed.
-   This may also be an INSN that writes memory if the pending lists grow
-   too large.  */
-
-static rtx last_pending_memory_flush;
-
-/* The last function call we have seen.  All hard regs, and, of course,
-   the last function call, must depend on this.  */
-
-static rtx last_function_call;
-
-/* The LOG_LINKS field of this is a list of insns which use a pseudo register
-   that does not already cross a call.  We create dependencies between each
-   of those insn and the next call insn, to ensure that they won't cross a call
-   after scheduling is done.  */
+/* Data structures for the computation of data dependences in a regions.  We
+   keep one mem_deps structure for every basic block.  Before analyzing the
+   data dependences for a bb, its variables are initialized as a function of
+   the variables of its predecessors.  When the analysis for a bb completes,
+   we save the contents to the corresponding bb_mem_deps[bb] variable.  */
 
-static rtx sched_before_next_call;
+static struct deps *bb_deps;
 
 /* Pointer to the last instruction scheduled.  Used by rank_for_schedule,
    so that insns independent of the last scheduled insn will be preferred
@@ -962,31 +1020,6 @@ static rtx sched_before_next_call;
 
 static rtx last_scheduled_insn;
 
-/* Data structures for the computation of data dependences in a regions.  We
-   keep one copy of each of the declared above variables for each bb in the
-   region.  Before analyzing the data dependences for a bb, its variables
-   are initialized as a function of the variables of its predecessors.  When
-   the analysis for a bb completes, we save the contents of each variable X
-   to a corresponding bb_X[bb] variable.  For example, pending_read_insns is
-   copied to bb_pending_read_insns[bb].  Another change is that few
-   variables are now a list of insns rather than a single insn:
-   last_pending_memory_flash, last_function_call, reg_last_sets.  The
-   manipulation of these variables was changed appropriately.  */
-
-static rtx **bb_reg_last_uses;
-static rtx **bb_reg_last_sets;
-static rtx **bb_reg_last_clobbers;
-
-static rtx *bb_pending_read_insns;
-static rtx *bb_pending_read_mems;
-static rtx *bb_pending_write_insns;
-static rtx *bb_pending_write_mems;
-static int *bb_pending_lists_length;
-
-static rtx *bb_last_pending_memory_flush;
-static rtx *bb_last_function_call;
-static rtx *bb_sched_before_next_call;
-
 /* Functions for construction of the control flow graph.  */
 
 /* Return 1 if control flow graph should not be constructed, 0 otherwise.
@@ -1055,48 +1088,45 @@ is_cfg_nonregular ()
    prevent cross block scheduling.  */
 
 static int
-build_control_flow (s_preds, s_succs, num_preds, num_succs)
-     int_list_ptr *s_preds;
-     int_list_ptr *s_succs;
-     int *num_preds;
-     int *num_succs;
+build_control_flow (edge_list)
+     struct edge_list *edge_list;
 {
-  int i;
-  int_list_ptr succ;
-  int unreachable;
+  int i, unreachable, num_edges;
 
-  /* Count the number of edges in the cfg.  */
-  nr_edges = 0;
+  /* This already accounts for entry/exit edges.  */
+  num_edges = NUM_EDGES (edge_list);
+
+  /* Unreachable loops with more than one basic block are detected
+     during the DFS traversal in find_rgns.
+
+     Unreachable loops with a single block are detected here.  This
+     test is redundant with the one in find_rgns, but it's much
+    cheaper to go ahead and catch the trivial case here.  */
   unreachable = 0;
   for (i = 0; i < n_basic_blocks; i++)
     {
-      nr_edges += num_succs[i];
+      basic_block b = BASIC_BLOCK (i);
 
-      /* Unreachable loops with more than one basic block are detected
-        during the DFS traversal in find_rgns.
-
-        Unreachable loops with a single block are detected here.  This
-        test is redundant with the one in find_rgns, but it's much
-        cheaper to go ahead and catch the trivial case here.  */
-      if (num_preds[i] == 0
-         || (num_preds[i] == 1 && INT_LIST_VAL (s_preds[i]) == i))
+      if (b->pred == NULL
+         || (b->pred->src == b
+             && b->pred->pred_next == NULL))
        unreachable = 1;
     }
 
-  /* Account for entry/exit edges.  */
-  nr_edges += 2;
-
+  /* ??? We can kill these soon.  */
   in_edges = (int *) xcalloc (n_basic_blocks, sizeof (int));
   out_edges = (int *) xcalloc (n_basic_blocks, sizeof (int));
-  edge_table = (haifa_edge *) xcalloc (nr_edges, sizeof (haifa_edge));
+  edge_table = (haifa_edge *) xcalloc (num_edges, sizeof (haifa_edge));
 
   nr_edges = 0;
-  for (i = 0; i < n_basic_blocks; i++)
-    for (succ = s_succs[i]; succ; succ = succ->next)
-      {
-       if (INT_LIST_VAL (succ) != EXIT_BLOCK)
-         new_edge (i, INT_LIST_VAL (succ));
-      }
+  for (i = 0; i < num_edges; i++)
+    {
+      edge e = INDEX_EDGE (edge_list, i);
+
+      if (e->dest != EXIT_BLOCK_PTR
+         && e->src != ENTRY_BLOCK_PTR)
+       new_edge (e->src->index, e->dest->index);
+    }
 
   /* Increment by 1, since edge 0 is unused.  */
   nr_edges++;
@@ -1233,9 +1263,10 @@ bitset_member (set, index, len)
 /* Translate a bit-set SET to a list BL of the bit-set members.  */
 
 static void
-extract_bitlst (set, len, bl)
+extract_bitlst (set, len, bitlen, bl)
      bitset set;
      int len;
+     int bitlen;
      bitlst *bl;
 {
   int i, j, offset;
@@ -1247,11 +1278,15 @@ extract_bitlst (set, len, bl)
   bl->first_member = &bitlst_table[bitlst_table_last];
   bl->nr_members = 0;
 
+  /* Iterate over each word in the bitset.  */
   for (i = 0; i < len; i++)
     {
       word = set[i];
       offset = i * HOST_BITS_PER_WIDE_INT;
-      for (j = 0; word; j++)
+
+      /* Iterate over each bit in the word, but do not
+        go beyond the end of the defined bits.  */
+      for (j = 0; offset < bitlen && word; j++)
        {
          if (word & 1)
            {
@@ -1386,14 +1421,11 @@ too_large (block, num_bbs, num_insns)
    of edge tables.  That would simplify it somewhat.  */
 
 static void
-find_rgns (s_preds, s_succs, num_preds, num_succs, dom)
-     int_list_ptr *s_preds;
-     int_list_ptr *s_succs;
-     int *num_preds;
-     int *num_succs;
+find_rgns (edge_list, dom)
+     struct edge_list *edge_list;
      sbitmap *dom;
 {
-  int *max_hdr, *dfs_nr, *stack, *queue, *degree;
+  int *max_hdr, *dfs_nr, *stack, *degree;
   char no_loops = 1;
   int node, child, loop_head, i, head, tail;
   int count = 0, sp, idx = 0, current_edge = out_edges[0];
@@ -1415,6 +1447,8 @@ find_rgns (s_preds, s_succs, num_preds, num_succs, dom)
   /* Note if a block is in the block queue. */
   sbitmap in_stack;
 
+  int num_edges = NUM_EDGES (edge_list);
+
   /* Perform a DFS traversal of the cfg.  Identify loop headers, inner loops
      and a mapping from block to its loop header (if the block is contained
      in a loop, else -1).
@@ -1425,10 +1459,9 @@ find_rgns (s_preds, s_succs, num_preds, num_succs, dom)
      STACK, SP and DFS_NR are only used during the first traversal.  */
 
   /* Allocate and initialize variables for the first traversal.  */
-  max_hdr = (int *) alloca (n_basic_blocks * sizeof (int));
-  dfs_nr = (int *) alloca (n_basic_blocks * sizeof (int));
-  bzero ((char *) dfs_nr, n_basic_blocks * sizeof (int));
-  stack = (int *) alloca (nr_edges * sizeof (int));
+  max_hdr = (int *) xmalloc (n_basic_blocks * sizeof (int));
+  dfs_nr = (int *) xcalloc (n_basic_blocks, sizeof (int));
+  stack = (int *) xmalloc (nr_edges * sizeof (int));
 
   inner = sbitmap_alloc (n_basic_blocks);
   sbitmap_ones (inner);
@@ -1550,21 +1583,29 @@ find_rgns (s_preds, s_succs, num_preds, num_succs, dom)
      to hold degree counts.  */
   degree = dfs_nr;
 
-  /* Compute the in-degree of every block in the graph.  */
   for (i = 0; i < n_basic_blocks; i++)
-    degree[i] = num_preds[i];
+    degree[i] = 0;
+  for (i = 0; i < num_edges; i++)
+    {
+      edge e = INDEX_EDGE (edge_list, i);
+
+      if (e->dest != EXIT_BLOCK_PTR)
+       degree[e->dest->index]++;
+    }
 
   /* Do not perform region scheduling if there are any unreachable
      blocks.  */
   if (!unreachable)
     {
+      int *queue;
+
       if (no_loops)
        SET_BIT (header, 0);
 
       /* Second travsersal:find reducible inner loops and topologically sort
         block of each region.  */
 
-      queue = (int *) alloca (n_basic_blocks * sizeof (int));
+      queue = (int *) xmalloc (n_basic_blocks * sizeof (int));
 
       /* Find blocks which are inner loop headers.  We still have non-reducible
         loops to consider at this point.  */
@@ -1572,7 +1613,7 @@ find_rgns (s_preds, s_succs, num_preds, num_succs, dom)
        {
          if (TEST_BIT (header, i) && TEST_BIT (inner, i))
            {
-             int_list_ptr ps;
+             edge e;
              int j;
 
              /* Now check that the loop is reducible.  We do this separate
@@ -1613,10 +1654,9 @@ find_rgns (s_preds, s_succs, num_preds, num_succs, dom)
 
              /* Decrease degree of all I's successors for topological
                 ordering.  */
-             for (ps = s_succs[i]; ps; ps = ps->next)
-               if (INT_LIST_VAL (ps) != EXIT_BLOCK
-                   && INT_LIST_VAL (ps) != ENTRY_BLOCK)
-                 --degree[INT_LIST_VAL(ps)];
+             for (e = BASIC_BLOCK (i)->succ; e; e = e->succ_next)
+               if (e->dest != EXIT_BLOCK_PTR)
+                 --degree[e->dest->index];
 
              /* Estimate # insns, and count # blocks in the region.  */
              num_bbs = 1;
@@ -1633,8 +1673,9 @@ find_rgns (s_preds, s_succs, num_preds, num_succs, dom)
                  for (j = 0; j < n_basic_blocks; j++)
                    /* Leaf nodes have only a single successor which must
                       be EXIT_BLOCK.  */
-                   if (num_succs[j] == 1
-                       && INT_LIST_VAL (s_succs[j]) == EXIT_BLOCK)
+                   if (BASIC_BLOCK (j)->succ
+                       && BASIC_BLOCK (j)->succ->dest == EXIT_BLOCK_PTR
+                       && BASIC_BLOCK (j)->succ->succ_next == NULL)
                      {
                        queue[++tail] = j;
                        SET_BIT (in_queue, j);
@@ -1648,15 +1689,15 @@ find_rgns (s_preds, s_succs, num_preds, num_succs, dom)
                }
              else
                {
-                 int_list_ptr ps;
+                 edge e;
 
-                 for (ps = s_preds[i]; ps; ps = ps->next)
+                 for (e = BASIC_BLOCK (i)->pred; e; e = e->pred_next)
                    {
-                     node = INT_LIST_VAL (ps);
-
-                     if (node == ENTRY_BLOCK || node == EXIT_BLOCK)
+                     if (e->src == ENTRY_BLOCK_PTR)
                        continue;
+
+                     node = e->src->index;
+
                      if (max_hdr[node] == loop_head && node != i)
                        {
                          /* This is a loop latch.  */
@@ -1706,16 +1747,16 @@ find_rgns (s_preds, s_succs, num_preds, num_succs, dom)
        
              while (head < tail && !too_large_failure)
                {
-                 int_list_ptr ps;
+                 edge e;
                  child = queue[++head];
 
-                 for (ps = s_preds[child]; ps; ps = ps->next)
+                 for (e = BASIC_BLOCK (child)->pred; e; e = e->pred_next)
                    {
-                     node = INT_LIST_VAL (ps);
+                     node = e->src->index;
 
                      /* See discussion above about nodes not marked as in
                         this loop during the initial DFS traversal.  */
-                     if (node == ENTRY_BLOCK || node == EXIT_BLOCK
+                     if (e->src == ENTRY_BLOCK_PTR
                          || max_hdr[node] != loop_head)
                        {
                          tail = -1;
@@ -1751,23 +1792,24 @@ find_rgns (s_preds, s_succs, num_preds, num_succs, dom)
                     the region.  */
                  while (tail >= 0)
                    {
-                     int_list_ptr ps;
-
                      if (head < 0)
                        head = tail;
                      child = queue[head];
                      if (degree[child] == 0)
                        {
+                         edge e;
+
                          degree[child] = -1;
                          rgn_bb_table[idx++] = child;
                          BLOCK_TO_BB (child) = ++count;
                          CONTAINING_RGN (child) = nr_regions;
                          queue[head] = queue[tail--];
 
-                         for (ps = s_succs[child]; ps; ps = ps->next)
-                           if (INT_LIST_VAL (ps) != ENTRY_BLOCK
-                               && INT_LIST_VAL (ps) != EXIT_BLOCK)
-                             --degree[INT_LIST_VAL (ps)];
+                         for (e = BASIC_BLOCK (child)->succ;
+                              e;
+                              e = e->succ_next)
+                           if (e->dest != EXIT_BLOCK_PTR)
+                             --degree[e->dest->index];
                        }
                      else
                        --head;
@@ -1776,6 +1818,7 @@ find_rgns (s_preds, s_succs, num_preds, num_succs, dom)
                }
            }
        }
+      free (queue);
     }
 
   /* Any block that did not end up in a region is placed into a region
@@ -1790,6 +1833,9 @@ find_rgns (s_preds, s_succs, num_preds, num_succs, dom)
        BLOCK_TO_BB (i) = 0;
       }
 
+  free (max_hdr);
+  free (dfs_nr);
+  free (stack);
   free (passed);
   free (header);
   free (inner);
@@ -1890,12 +1936,13 @@ split_edges (bb_src, bb_trg, bl)
      edgelst *bl;
 {
   int es = edgeset_size;
-  edgeset src = (edgeset) alloca (es * sizeof (HOST_WIDE_INT));
+  edgeset src = (edgeset) xcalloc (es, sizeof (HOST_WIDE_INT));
 
   while (es--)
     src[es] = (pot_split[bb_src])[es];
   BITSET_DIFFER (src, pot_split[bb_trg], edgeset_size);
-  extract_bitlst (src, edgeset_size, bl);
+  extract_bitlst (src, edgeset_size, edgeset_bitsize, bl);
+  free (src);
 }
 
 
@@ -2302,11 +2349,6 @@ enum INSN_TRAP_CLASS
 #define WORST_CLASS(class1, class2) \
 ((class1 > class2) ? class1 : class2)
 
-/* Indexed by INSN_UID, and set if there's DEF-USE dependence between 
-   some speculatively moved load insn and this one.  */
-char *fed_by_spec_load;
-char *is_load_insn;
-
 /* Non-zero if block bb_to is equal to, or reachable from block bb_from.  */
 #define IS_REACHABLE(bb_from, bb_to)                                   \
 (bb_from == bb_to                                                       \
@@ -2314,8 +2356,6 @@ char *is_load_insn;
    || (bitset_member (ancestor_edges[bb_to],                           \
                      EDGE_TO_BIT (IN_EDGES (BB_TO_BLOCK (bb_from))),   \
                      edgeset_size)))
-#define FED_BY_SPEC_LOAD(insn) (fed_by_spec_load[INSN_UID (insn)])
-#define IS_LOAD_INSN(insn) (is_load_insn[INSN_UID (insn)])
 
 /* Non-zero iff the address is comprised from at most 1 register.  */
 #define CONST_BASED_ADDRESS_P(x)                       \
@@ -2352,7 +2392,7 @@ find_conditional_protection (insn, load_insn_bb)
   for (link = INSN_DEPEND (insn); link; link = XEXP (link, 1))
     {
       rtx next = XEXP (link, 0);
-      if ((CONTAINING_RGN (INSN_BLOCK (next)) ==
+      if ((CONTAINING_RGN (BLOCK_NUM (next)) ==
           CONTAINING_RGN (BB_TO_BLOCK (load_insn_bb)))
          && IS_REACHABLE (INSN_BB (next), load_insn_bb)
          && load_insn_bb != INSN_BB (next)
@@ -2396,7 +2436,7 @@ is_conditionally_protected (load_insn, bb_src, bb_trg)
 
       /* Must exist a path: region-entry -> ... -> bb_trg -> ... load_insn.  */
       if (INSN_BB (insn1) == bb_src
-         || (CONTAINING_RGN (INSN_BLOCK (insn1))
+         || (CONTAINING_RGN (BLOCK_NUM (insn1))
              != CONTAINING_RGN (BB_TO_BLOCK (bb_src)))
          || (!IS_REACHABLE (bb_trg, INSN_BB (insn1))
              && !IS_REACHABLE (INSN_BB (insn1), bb_trg)))
@@ -2467,7 +2507,7 @@ is_pfree (load_insn, bb_src, bb_trg)
                    /* insn2 is the similar load, in the target block.  */
                    return 1;
 
-                 if (*(candp->split_bbs.first_member) == INSN_BLOCK (insn2))
+                 if (*(candp->split_bbs.first_member) == BLOCK_NUM (insn2))
                    /* insn2 is a similar load, in a split-block.  */
                    return 1;
                }
@@ -2590,6 +2630,7 @@ haifa_classify_insn (insn)
                WORST_CLASS (tmp_class,
                           may_trap_exp (SET_SRC (XVECEXP (pat, 0, i)), 0));
              break;
+           case COND_EXEC:
            case TRAP_IF:
              tmp_class = TRAP_RISKY;
              break;
@@ -2619,6 +2660,7 @@ haifa_classify_insn (insn)
            WORST_CLASS (tmp_class,
                         may_trap_exp (SET_SRC (pat), 0));
          break;
+       case COND_EXEC:
        case TRAP_IF:
          tmp_class = TRAP_RISKY;
          break;
@@ -2711,24 +2753,6 @@ is_exception_free (insn, bb_src, bb_trg)
    We are careful to build only dependencies which actually exist, and
    use transitivity to avoid building too many links.  */
 \f
-/* Return the INSN_LIST containing INSN in LIST, or NULL
-   if LIST does not contain INSN.  */
-
-HAIFA_INLINE static rtx
-find_insn_list (insn, list)
-     rtx insn;
-     rtx list;
-{
-  while (list)
-    {
-      if (XEXP (list, 0) == insn)
-       return list;
-      list = XEXP (list, 1);
-    }
-  return 0;
-}
-
-
 /* Return 1 if the pair (insn, x) is found in (LIST, LIST1), or 0
    otherwise.  */
 
@@ -3108,7 +3132,7 @@ priority (insn)
   int this_priority;
   rtx link;
 
-  if (GET_RTX_CLASS (GET_CODE (insn)) != 'i')
+  if (! INSN_P (insn))
     return 0;
 
   if ((this_priority = INSN_PRIORITY (insn)) == 0)
@@ -3127,7 +3151,7 @@ priority (insn)
            next = XEXP (link, 0);
 
            /* Critical path is meaningful in block boundaries only.  */
-           if (INSN_BLOCK (next) != INSN_BLOCK (insn))
+           if (BLOCK_NUM (next) != BLOCK_NUM (insn))
              continue;
 
            next_priority = insn_cost (insn, link, next) + priority (next);
@@ -3146,25 +3170,14 @@ priority (insn)
 static void
 free_pending_lists ()
 {
-  if (current_nr_blocks <= 1)
-    {
-      free_INSN_LIST_list (&pending_read_insns);
-      free_INSN_LIST_list (&pending_write_insns);
-      free_EXPR_LIST_list (&pending_read_mems);
-      free_EXPR_LIST_list (&pending_write_mems);
-    }
-  else
-    {
-      /* Interblock scheduling.  */
-      int bb;
+  int bb;
 
-      for (bb = 0; bb < current_nr_blocks; bb++)
-       {
-         free_INSN_LIST_list (&bb_pending_read_insns[bb]);
-         free_INSN_LIST_list (&bb_pending_write_insns[bb]);
-         free_EXPR_LIST_list (&bb_pending_read_mems[bb]);
-         free_EXPR_LIST_list (&bb_pending_write_mems[bb]);
-       }
+  for (bb = 0; bb < current_nr_blocks; bb++)
+    {
+      free_INSN_LIST_list (&bb_deps[bb].pending_read_insns);
+      free_INSN_LIST_list (&bb_deps[bb].pending_write_insns);
+      free_EXPR_LIST_list (&bb_deps[bb].pending_read_mems);
+      free_EXPR_LIST_list (&bb_deps[bb].pending_write_mems);
     }
 }
 
@@ -3173,7 +3186,8 @@ free_pending_lists ()
    so that we can do memory aliasing on it.  */
 
 static void
-add_insn_mem_dependence (insn_list, mem_list, insn, mem)
+add_insn_mem_dependence (deps, insn_list, mem_list, insn, mem)
+     struct deps *deps;
      rtx *insn_list, *mem_list, insn, mem;
 {
   register rtx link;
@@ -3184,54 +3198,56 @@ add_insn_mem_dependence (insn_list, mem_list, insn, mem)
   link = alloc_EXPR_LIST (VOIDmode, mem, *mem_list);
   *mem_list = link;
 
-  pending_lists_length++;
+  deps->pending_lists_length++;
 }
 \f
-
 /* Make a dependency between every memory reference on the pending lists
    and INSN, thus flushing the pending lists.  If ONLY_WRITE, don't flush
    the read list.  */
 
 static void
-flush_pending_lists (insn, only_write)
+flush_pending_lists (deps, insn, only_write)
+     struct deps *deps;
      rtx insn;
      int only_write;
 {
   rtx u;
   rtx link;
 
-  while (pending_read_insns && ! only_write)
+  while (deps->pending_read_insns && ! only_write)
     {
-      add_dependence (insn, XEXP (pending_read_insns, 0), REG_DEP_ANTI);
+      add_dependence (insn, XEXP (deps->pending_read_insns, 0),
+                     REG_DEP_ANTI);
 
-      link = pending_read_insns;
-      pending_read_insns = XEXP (pending_read_insns, 1);
+      link = deps->pending_read_insns;
+      deps->pending_read_insns = XEXP (deps->pending_read_insns, 1);
       free_INSN_LIST_node (link);
 
-      link = pending_read_mems;
-      pending_read_mems = XEXP (pending_read_mems, 1);
+      link = deps->pending_read_mems;
+      deps->pending_read_mems = XEXP (deps->pending_read_mems, 1);
       free_EXPR_LIST_node (link);
     }
-  while (pending_write_insns)
+  while (deps->pending_write_insns)
     {
-      add_dependence (insn, XEXP (pending_write_insns, 0), REG_DEP_ANTI);
+      add_dependence (insn, XEXP (deps->pending_write_insns, 0),
+                     REG_DEP_ANTI);
 
-      link = pending_write_insns;
-      pending_write_insns = XEXP (pending_write_insns, 1);
+      link = deps->pending_write_insns;
+      deps->pending_write_insns = XEXP (deps->pending_write_insns, 1);
       free_INSN_LIST_node (link);
 
-      link = pending_write_mems;
-      pending_write_mems = XEXP (pending_write_mems, 1);
+      link = deps->pending_write_mems;
+      deps->pending_write_mems = XEXP (deps->pending_write_mems, 1);
       free_EXPR_LIST_node (link);
     }
-  pending_lists_length = 0;
+  deps->pending_lists_length = 0;
 
   /* last_pending_memory_flush is now a list of insns.  */
-  for (u = last_pending_memory_flush; u; u = XEXP (u, 1))
+  for (u = deps->last_pending_memory_flush; u; u = XEXP (u, 1))
     add_dependence (insn, XEXP (u, 0), REG_DEP_ANTI);
 
-  free_INSN_LIST_list (&last_pending_memory_flush);
-  last_pending_memory_flush = alloc_INSN_LIST (insn, NULL_RTX);
+  free_INSN_LIST_list (&deps->last_pending_memory_flush);
+  deps->last_pending_memory_flush = alloc_INSN_LIST (insn, NULL_RTX);
 }
 
 /* Analyze a single SET, CLOBBER, PRE_DEC, POST_DEC, PRE_INC or POST_INC
@@ -3239,7 +3255,8 @@ flush_pending_lists (insn, only_write)
    destination of X, and reads of everything mentioned.  */
 
 static void
-sched_analyze_1 (x, insn)
+sched_analyze_1 (deps, x, insn)
+     struct deps *deps;
      rtx x;
      rtx insn;
 {
@@ -3255,9 +3272,9 @@ sched_analyze_1 (x, insn)
     {
       register int i;
       for (i = XVECLEN (dest, 0) - 1; i >= 0; i--)
-       sched_analyze_1 (XVECEXP (dest, 0, i), insn);
+       sched_analyze_1 (deps, XVECEXP (dest, 0, i), insn);
       if (GET_CODE (x) == SET)
-       sched_analyze_2 (SET_SRC (x), insn);
+       sched_analyze_2 (deps, SET_SRC (x), insn);
       return;
     }
 
@@ -3267,8 +3284,8 @@ sched_analyze_1 (x, insn)
       if (GET_CODE (dest) == ZERO_EXTRACT || GET_CODE (dest) == SIGN_EXTRACT)
        {
          /* The second and third arguments are values read by this insn.  */
-         sched_analyze_2 (XEXP (dest, 1), insn);
-         sched_analyze_2 (XEXP (dest, 2), insn);
+         sched_analyze_2 (deps, XEXP (dest, 1), insn);
+         sched_analyze_2 (deps, XEXP (dest, 2), insn);
        }
       dest = XEXP (dest, 0);
     }
@@ -3286,12 +3303,13 @@ sched_analyze_1 (x, insn)
          i = HARD_REGNO_NREGS (regno, GET_MODE (dest));
          while (--i >= 0)
            {
+             int r = regno + i;
              rtx u;
 
-             for (u = reg_last_uses[regno + i]; u; u = XEXP (u, 1))
+             for (u = deps->reg_last_uses[r]; u; u = XEXP (u, 1))
                add_dependence (insn, XEXP (u, 0), REG_DEP_ANTI);
 
-             for (u = reg_last_sets[regno + i]; u; u = XEXP (u, 1))
+             for (u = deps->reg_last_sets[r]; u; u = XEXP (u, 1))
                add_dependence (insn, XEXP (u, 0), REG_DEP_OUTPUT);
 
              /* Clobbers need not be ordered with respect to one
@@ -3299,18 +3317,17 @@ sched_analyze_1 (x, insn)
                 pending clobber.  */
              if (code == SET)
                {
-                 free_INSN_LIST_list (&reg_last_uses[regno + i]);
-                 for (u = reg_last_clobbers[regno + i]; u; u = XEXP (u, 1))
+                 free_INSN_LIST_list (&deps->reg_last_uses[r]);
+                 for (u = deps->reg_last_clobbers[r]; u; u = XEXP (u, 1))
                    add_dependence (insn, XEXP (u, 0), REG_DEP_OUTPUT);
-                 SET_REGNO_REG_SET (reg_pending_sets, regno + i);
+                 SET_REGNO_REG_SET (reg_pending_sets, r);
                }
              else
-               SET_REGNO_REG_SET (reg_pending_clobbers, regno + i);
+               SET_REGNO_REG_SET (reg_pending_clobbers, r);
 
              /* Function calls clobber all call_used regs.  */
-             if (global_regs[regno + i]
-                 || (code == SET && call_used_regs[regno + i]))
-               for (u = last_function_call; u; u = XEXP (u, 1))
+             if (global_regs[r] || (code == SET && call_used_regs[r]))
+               for (u = deps->last_function_call; u; u = XEXP (u, 1))
                  add_dependence (insn, XEXP (u, 0), REG_DEP_ANTI);
            }
        }
@@ -3318,16 +3335,16 @@ sched_analyze_1 (x, insn)
        {
          rtx u;
 
-         for (u = reg_last_uses[regno]; u; u = XEXP (u, 1))
+         for (u = deps->reg_last_uses[regno]; u; u = XEXP (u, 1))
            add_dependence (insn, XEXP (u, 0), REG_DEP_ANTI);
 
-         for (u = reg_last_sets[regno]; u; u = XEXP (u, 1))
+         for (u = deps->reg_last_sets[regno]; u; u = XEXP (u, 1))
            add_dependence (insn, XEXP (u, 0), REG_DEP_OUTPUT);
 
          if (code == SET)
            {
-             free_INSN_LIST_list (&reg_last_uses[regno]);
-             for (u = reg_last_clobbers[regno]; u; u = XEXP (u, 1))
+             free_INSN_LIST_list (&deps->reg_last_uses[regno]);
+             for (u = deps->reg_last_clobbers[regno]; u; u = XEXP (u, 1))
                add_dependence (insn, XEXP (u, 0), REG_DEP_OUTPUT);
              SET_REGNO_REG_SET (reg_pending_sets, regno);
            }
@@ -3340,13 +3357,13 @@ sched_analyze_1 (x, insn)
          if (!reload_completed
              && reg_known_equiv_p[regno]
              && GET_CODE (reg_known_value[regno]) == MEM)
-           sched_analyze_2 (XEXP (reg_known_value[regno], 0), insn);
+           sched_analyze_2 (deps, XEXP (reg_known_value[regno], 0), insn);
 
          /* Don't let it cross a call after scheduling if it doesn't
             already cross one.  */
 
          if (REG_N_CALLS_CROSSED (regno) == 0)
-           for (u = last_function_call; u; u = XEXP (u, 1))
+           for (u = deps->last_function_call; u; u = XEXP (u, 1))
              add_dependence (insn, XEXP (u, 0), REG_DEP_ANTI);
        }
     }
@@ -3354,7 +3371,7 @@ sched_analyze_1 (x, insn)
     {
       /* Writing memory.  */
 
-      if (pending_lists_length > 32)
+      if (deps->pending_lists_length > 32)
        {
          /* Flush all pending reads and writes to prevent the pending lists
             from getting any larger.  Insn scheduling runs too slowly when
@@ -3362,15 +3379,15 @@ sched_analyze_1 (x, insn)
             seems like a reasonable number.  When compiling GCC with itself,
             this flush occurs 8 times for sparc, and 10 times for m88k using
             the number 32.  */
-         flush_pending_lists (insn, 0);
+         flush_pending_lists (deps, insn, 0);
        }
       else
        {
          rtx u;
          rtx pending, pending_mem;
 
-         pending = pending_read_insns;
-         pending_mem = pending_read_mems;
+         pending = deps->pending_read_insns;
+         pending_mem = deps->pending_read_mems;
          while (pending)
            {
              if (anti_dependence (XEXP (pending_mem, 0), dest))
@@ -3380,8 +3397,8 @@ sched_analyze_1 (x, insn)
              pending_mem = XEXP (pending_mem, 1);
            }
 
-         pending = pending_write_insns;
-         pending_mem = pending_write_mems;
+         pending = deps->pending_write_insns;
+         pending_mem = deps->pending_write_mems;
          while (pending)
            {
              if (output_dependence (XEXP (pending_mem, 0), dest))
@@ -3391,24 +3408,25 @@ sched_analyze_1 (x, insn)
              pending_mem = XEXP (pending_mem, 1);
            }
 
-         for (u = last_pending_memory_flush; u; u = XEXP (u, 1))
+         for (u = deps->last_pending_memory_flush; u; u = XEXP (u, 1))
            add_dependence (insn, XEXP (u, 0), REG_DEP_ANTI);
 
-         add_insn_mem_dependence (&pending_write_insns, &pending_write_mems,
-                                  insn, dest);
+         add_insn_mem_dependence (deps, &deps->pending_write_insns,
+                                  &deps->pending_write_mems, insn, dest);
        }
-      sched_analyze_2 (XEXP (dest, 0), insn);
+      sched_analyze_2 (deps, XEXP (dest, 0), insn);
     }
 
   /* Analyze reads.  */
   if (GET_CODE (x) == SET)
-    sched_analyze_2 (SET_SRC (x), insn);
+    sched_analyze_2 (deps, SET_SRC (x), insn);
 }
 
 /* Analyze the uses of memory and registers in rtx X in INSN.  */
 
 static void
-sched_analyze_2 (x, insn)
+sched_analyze_2 (deps, x, insn)
+     struct deps *deps;
      rtx x;
      rtx insn;
 {
@@ -3436,30 +3454,9 @@ sched_analyze_2 (x, insn)
 
 #ifdef HAVE_cc0
     case CC0:
-      {
-       rtx link, prev;
-
-       /* User of CC0 depends on immediately preceding insn.  */
-       SCHED_GROUP_P (insn) = 1;
-
-       /* There may be a note before this insn now, but all notes will
-          be removed before we actually try to schedule the insns, so
-          it won't cause a problem later.  We must avoid it here though.  */
-       prev = prev_nonnote_insn (insn);
-
-       /* Make a copy of all dependencies on the immediately previous insn,
-          and add to this insn.  This is so that all the dependencies will
-          apply to the group.  Remove an explicit dependence on this insn
-          as SCHED_GROUP_P now represents it.  */
-
-       if (find_insn_list (prev, LOG_LINKS (insn)))
-         remove_dependence (insn, prev);
-
-       for (link = LOG_LINKS (prev); link; link = XEXP (link, 1))
-         add_dependence (insn, XEXP (link, 0), REG_NOTE_KIND (link));
-
-       return;
-      }
+      /* User of CC0 depends on immediately preceding insn.  */
+      set_sched_group_p (insn);
+      return;
 #endif
 
     case REG:
@@ -3473,32 +3470,33 @@ sched_analyze_2 (x, insn)
            i = HARD_REGNO_NREGS (regno, GET_MODE (x));
            while (--i >= 0)
              {
-               reg_last_uses[regno + i]
-                 = alloc_INSN_LIST (insn, reg_last_uses[regno + i]);
+               int r = regno + i;
+               deps->reg_last_uses[r]
+                 = alloc_INSN_LIST (insn, deps->reg_last_uses[r]);
 
-               for (u = reg_last_sets[regno + i]; u; u = XEXP (u, 1))
+               for (u = deps->reg_last_sets[r]; u; u = XEXP (u, 1))
                  add_dependence (insn, XEXP (u, 0), 0);
 
                /* ??? This should never happen.  */
-               for (u = reg_last_clobbers[regno + i]; u; u = XEXP (u, 1))
+               for (u = deps->reg_last_clobbers[r]; u; u = XEXP (u, 1))
                  add_dependence (insn, XEXP (u, 0), 0);
 
-               if ((call_used_regs[regno + i] || global_regs[regno + i]))
+               if (call_used_regs[r] || global_regs[r])
                  /* Function calls clobber all call_used regs.  */
-                 for (u = last_function_call; u; u = XEXP (u, 1))
+                 for (u = deps->last_function_call; u; u = XEXP (u, 1))
                    add_dependence (insn, XEXP (u, 0), REG_DEP_ANTI);
              }
          }
        else
          {
-           reg_last_uses[regno] = alloc_INSN_LIST (insn,
-                                                   reg_last_uses[regno]);
+           deps->reg_last_uses[regno]
+             = alloc_INSN_LIST (insn, deps->reg_last_uses[regno]);
 
-           for (u = reg_last_sets[regno]; u; u = XEXP (u, 1))
+           for (u = deps->reg_last_sets[regno]; u; u = XEXP (u, 1))
              add_dependence (insn, XEXP (u, 0), 0);
 
            /* ??? This should never happen.  */
-           for (u = reg_last_clobbers[regno]; u; u = XEXP (u, 1))
+           for (u = deps->reg_last_clobbers[regno]; u; u = XEXP (u, 1))
              add_dependence (insn, XEXP (u, 0), 0);
 
            /* Pseudos that are REG_EQUIV to something may be replaced
@@ -3507,13 +3505,14 @@ sched_analyze_2 (x, insn)
            if (!reload_completed
                && reg_known_equiv_p[regno]
                && GET_CODE (reg_known_value[regno]) == MEM)
-             sched_analyze_2 (XEXP (reg_known_value[regno], 0), insn);
+             sched_analyze_2 (deps, XEXP (reg_known_value[regno], 0), insn);
 
            /* If the register does not already cross any calls, then add this
               insn to the sched_before_next_call list so that it will still
               not cross calls after scheduling.  */
            if (REG_N_CALLS_CROSSED (regno) == 0)
-             add_dependence (sched_before_next_call, insn, REG_DEP_ANTI);
+             add_dependence (deps->sched_before_next_call, insn,
+                             REG_DEP_ANTI);
          }
        return;
       }
@@ -3524,8 +3523,8 @@ sched_analyze_2 (x, insn)
        rtx u;
        rtx pending, pending_mem;
 
-       pending = pending_read_insns;
-       pending_mem = pending_read_mems;
+       pending = deps->pending_read_insns;
+       pending_mem = deps->pending_read_mems;
        while (pending)
          {
            if (read_dependence (XEXP (pending_mem, 0), x))
@@ -3535,8 +3534,8 @@ sched_analyze_2 (x, insn)
            pending_mem = XEXP (pending_mem, 1);
          }
 
-       pending = pending_write_insns;
-       pending_mem = pending_write_mems;
+       pending = deps->pending_write_insns;
+       pending_mem = deps->pending_write_mems;
        while (pending)
          {
            if (true_dependence (XEXP (pending_mem, 0), VOIDmode,
@@ -3547,22 +3546,22 @@ sched_analyze_2 (x, insn)
            pending_mem = XEXP (pending_mem, 1);
          }
 
-       for (u = last_pending_memory_flush; u; u = XEXP (u, 1))
+       for (u = deps->last_pending_memory_flush; u; u = XEXP (u, 1))
          add_dependence (insn, XEXP (u, 0), REG_DEP_ANTI);
 
        /* Always add these dependencies to pending_reads, since
           this insn may be followed by a write.  */
-       add_insn_mem_dependence (&pending_read_insns, &pending_read_mems,
-                                insn, x);
+       add_insn_mem_dependence (deps, &deps->pending_read_insns,
+                                &deps->pending_read_mems, insn, x);
 
        /* Take advantage of tail recursion here.  */
-       sched_analyze_2 (XEXP (x, 0), insn);
+       sched_analyze_2 (deps, XEXP (x, 0), insn);
        return;
       }
 
     /* Force pending stores to memory in case a trap handler needs them.  */
     case TRAP_IF:
-      flush_pending_lists (insn, 1);
+      flush_pending_lists (deps, insn, 1);
       break;
 
     case ASM_OPERANDS:
@@ -3583,19 +3582,19 @@ sched_analyze_2 (x, insn)
            int max_reg = max_reg_num ();
            for (i = 0; i < max_reg; i++)
              {
-               for (u = reg_last_uses[i]; u; u = XEXP (u, 1))
+               for (u = deps->reg_last_uses[i]; u; u = XEXP (u, 1))
                  add_dependence (insn, XEXP (u, 0), REG_DEP_ANTI);
-               free_INSN_LIST_list (&reg_last_uses[i]);
+               free_INSN_LIST_list (&deps->reg_last_uses[i]);
 
-               for (u = reg_last_sets[i]; u; u = XEXP (u, 1))
+               for (u = deps->reg_last_sets[i]; u; u = XEXP (u, 1))
                  add_dependence (insn, XEXP (u, 0), 0);
 
-               for (u = reg_last_clobbers[i]; u; u = XEXP (u, 1))
+               for (u = deps->reg_last_clobbers[i]; u; u = XEXP (u, 1))
                  add_dependence (insn, XEXP (u, 0), 0);
              }
            reg_pending_sets_all = 1;
 
-           flush_pending_lists (insn, 0);
+           flush_pending_lists (deps, insn, 0);
          }
 
        /* For all ASM_OPERANDS, we must traverse the vector of input operands.
@@ -3606,7 +3605,7 @@ sched_analyze_2 (x, insn)
        if (code == ASM_OPERANDS)
          {
            for (j = 0; j < ASM_OPERANDS_INPUT_LENGTH (x); j++)
-             sched_analyze_2 (ASM_OPERANDS_INPUT (x, j), insn);
+             sched_analyze_2 (deps, ASM_OPERANDS_INPUT (x, j), insn);
            return;
          }
        break;
@@ -3622,8 +3621,16 @@ sched_analyze_2 (x, insn)
          instructions.  Thus we need to pass them to both sched_analyze_1
          and sched_analyze_2.  We must call sched_analyze_2 first in order
          to get the proper antecedent for the read.  */
-      sched_analyze_2 (XEXP (x, 0), insn);
-      sched_analyze_1 (x, insn);
+      sched_analyze_2 (deps, XEXP (x, 0), insn);
+      sched_analyze_1 (deps, x, insn);
+      return;
+
+    case POST_MODIFY:
+    case PRE_MODIFY:
+      /* op0 = op0 + op1 */
+      sched_analyze_2 (deps, XEXP (x, 0), insn);
+      sched_analyze_2 (deps, XEXP (x, 1), insn);
+      sched_analyze_1 (deps, x, insn);
       return;
 
     default:
@@ -3635,17 +3642,18 @@ sched_analyze_2 (x, insn)
   for (i = GET_RTX_LENGTH (code) - 1; i >= 0; i--)
     {
       if (fmt[i] == 'e')
-       sched_analyze_2 (XEXP (x, i), insn);
+       sched_analyze_2 (deps, XEXP (x, i), insn);
       else if (fmt[i] == 'E')
        for (j = 0; j < XVECLEN (x, i); j++)
-         sched_analyze_2 (XVECEXP (x, i, j), insn);
+         sched_analyze_2 (deps, XVECEXP (x, i, j), insn);
     }
 }
 
 /* Analyze an INSN with pattern X to find all dependencies.  */
 
 static void
-sched_analyze_insn (x, insn, loop_notes)
+sched_analyze_insn (deps, x, insn, loop_notes)
+     struct deps *deps;
      rtx x, insn;
      rtx loop_notes;
 {
@@ -3654,31 +3662,48 @@ sched_analyze_insn (x, insn, loop_notes)
   int maxreg = max_reg_num ();
   int i;
 
+  if (code == COND_EXEC)
+    {
+      sched_analyze_2 (deps, COND_EXEC_TEST (x), insn);
+
+      /* ??? Should be recording conditions so we reduce the number of
+        false dependancies.  */
+      x = COND_EXEC_CODE (x);
+      code = GET_CODE (x);
+    }
   if (code == SET || code == CLOBBER)
-    sched_analyze_1 (x, insn);
+    sched_analyze_1 (deps, x, insn);
   else if (code == PARALLEL)
     {
       register int i;
       for (i = XVECLEN (x, 0) - 1; i >= 0; i--)
        {
-         code = GET_CODE (XVECEXP (x, 0, i));
+         rtx sub = XVECEXP (x, 0, i);
+         code = GET_CODE (sub);
+
+         if (code == COND_EXEC)
+           {
+             sched_analyze_2 (deps, COND_EXEC_TEST (sub), insn);
+             sub = COND_EXEC_CODE (sub);
+             code = GET_CODE (sub);
+           }
          if (code == SET || code == CLOBBER)
-           sched_analyze_1 (XVECEXP (x, 0, i), insn);
+           sched_analyze_1 (deps, sub, insn);
          else
-           sched_analyze_2 (XVECEXP (x, 0, i), insn);
+           sched_analyze_2 (deps, sub, insn);
        }
     }
   else
-    sched_analyze_2 (x, insn);
+    sched_analyze_2 (deps, x, insn);
 
   /* Mark registers CLOBBERED or used by called function.  */
   if (GET_CODE (insn) == CALL_INSN)
     for (link = CALL_INSN_FUNCTION_USAGE (insn); link; link = XEXP (link, 1))
       {
        if (GET_CODE (XEXP (link, 0)) == CLOBBER)
-         sched_analyze_1 (XEXP (link, 0), insn);
+         sched_analyze_1 (deps, XEXP (link, 0), insn);
        else
-         sched_analyze_2 (XEXP (link, 0), insn);
+         sched_analyze_2 (deps, XEXP (link, 0), insn);
       }
 
   /* If there is a {LOOP,EHREGION}_{BEG,END} note in the middle of a basic
@@ -3716,19 +3741,19 @@ sched_analyze_insn (x, insn, loop_notes)
          for (i = 0; i < max_reg; i++)
            {
              rtx u;
-             for (u = reg_last_uses[i]; u; u = XEXP (u, 1))
+             for (u = deps->reg_last_uses[i]; u; u = XEXP (u, 1))
                add_dependence (insn, XEXP (u, 0), REG_DEP_ANTI);
-             free_INSN_LIST_list (&reg_last_uses[i]);
+             free_INSN_LIST_list (&deps->reg_last_uses[i]);
 
-             for (u = reg_last_sets[i]; u; u = XEXP (u, 1))
+             for (u = deps->reg_last_sets[i]; u; u = XEXP (u, 1))
                add_dependence (insn, XEXP (u, 0), 0);
 
-             for (u = reg_last_clobbers[i]; u; u = XEXP (u, 1))
+             for (u = deps->reg_last_clobbers[i]; u; u = XEXP (u, 1))
                add_dependence (insn, XEXP (u, 0), 0);
            }
          reg_pending_sets_all = 1;
 
-         flush_pending_lists (insn, 0);
+         flush_pending_lists (deps, insn, 0);
        }
 
     }
@@ -3736,19 +3761,19 @@ sched_analyze_insn (x, insn, loop_notes)
   /* Accumulate clobbers until the next set so that it will be output dependent
      on all of them.  At the next set we can clear the clobber list, since
      subsequent sets will be output dependent on it.  */
-  EXECUTE_IF_SET_IN_REG_SET (reg_pending_sets, 0, i,
-                            {
-                              free_INSN_LIST_list (&reg_last_sets[i]);
-                              free_INSN_LIST_list (&reg_last_clobbers[i]);
-                              reg_last_sets[i]
-                                = alloc_INSN_LIST (insn, NULL_RTX);
-                            });
-  EXECUTE_IF_SET_IN_REG_SET (reg_pending_clobbers, 0, i,
-                            {
-                              reg_last_clobbers[i]
-                                = alloc_INSN_LIST (insn, 
-                                                   reg_last_clobbers[i]);
-                            });
+  EXECUTE_IF_SET_IN_REG_SET
+    (reg_pending_sets, 0, i,
+     {
+       free_INSN_LIST_list (&deps->reg_last_sets[i]);
+       free_INSN_LIST_list (&deps->reg_last_clobbers[i]);
+       deps->reg_last_sets[i] = alloc_INSN_LIST (insn, NULL_RTX);
+     });
+  EXECUTE_IF_SET_IN_REG_SET
+    (reg_pending_clobbers, 0, i,
+     {
+       deps->reg_last_clobbers[i]
+        = alloc_INSN_LIST (insn, deps->reg_last_clobbers[i]);
+     });
   CLEAR_REG_SET (reg_pending_sets);
   CLEAR_REG_SET (reg_pending_clobbers);
 
@@ -3756,46 +3781,57 @@ sched_analyze_insn (x, insn, loop_notes)
     {
       for (i = 0; i < maxreg; i++)
        {
-         free_INSN_LIST_list (&reg_last_sets[i]);
-         reg_last_sets[i] = alloc_INSN_LIST (insn, NULL_RTX);
+         free_INSN_LIST_list (&deps->reg_last_sets[i]);
+         free_INSN_LIST_list (&deps->reg_last_clobbers[i]);
+         deps->reg_last_sets[i] = alloc_INSN_LIST (insn, NULL_RTX);
        }
 
       reg_pending_sets_all = 0;
     }
 
-  /* Handle function calls and function returns created by the epilogue
-     threading code.  */
-  if (GET_CODE (insn) == CALL_INSN || GET_CODE (insn) == JUMP_INSN)
+  /* If a post-call group is still open, see if it should remain so.
+     This insn must be a simple move of a hard reg to a pseudo or
+     vice-versa. 
+
+     We must avoid moving these insns for correctness on
+     SMALL_REGISTER_CLASS machines, and for special registers like
+     PIC_OFFSET_TABLE_REGNUM.  For simplicity, extend this to all 
+     hard regs for all targets.  */
+
+  if (deps->in_post_call_group_p)
     {
-      rtx dep_insn;
-      rtx prev_dep_insn;
-
-      /* When scheduling instructions, we make sure calls don't lose their
-         accompanying USE insns by depending them one on another in order.
-
-         Also, we must do the same thing for returns created by the epilogue
-         threading code.  Note this code works only in this special case,
-         because other passes make no guarantee that they will never emit
-         an instruction between a USE and a RETURN.  There is such a guarantee
-         for USE instructions immediately before a call.  */
-
-      prev_dep_insn = insn;
-      dep_insn = PREV_INSN (insn);
-      while (GET_CODE (dep_insn) == INSN
-            && GET_CODE (PATTERN (dep_insn)) == USE
-            && GET_CODE (XEXP (PATTERN (dep_insn), 0)) == REG)
-       {
-         SCHED_GROUP_P (prev_dep_insn) = 1;
+      rtx tmp, set = single_set (insn);
+      int src_regno, dest_regno;
+
+      if (set == NULL)
+       goto end_call_group;
 
-         /* Make a copy of all dependencies on dep_insn, and add to insn.
-            This is so that all of the dependencies will apply to the
-            group.  */
+      tmp = SET_DEST (set);
+      if (GET_CODE (tmp) == SUBREG)
+       tmp = SUBREG_REG (tmp);
+      if (GET_CODE (tmp) == REG)
+       dest_regno = REGNO (tmp);
+      else
+       goto end_call_group;
 
-         for (link = LOG_LINKS (dep_insn); link; link = XEXP (link, 1))
-           add_dependence (insn, XEXP (link, 0), REG_NOTE_KIND (link));
+      tmp = SET_SRC (set);
+      if (GET_CODE (tmp) == SUBREG)
+       tmp = SUBREG_REG (tmp);
+      if (GET_CODE (tmp) == REG)
+       src_regno = REGNO (tmp);
+      else
+       goto end_call_group;
 
-         prev_dep_insn = dep_insn;
-         dep_insn = PREV_INSN (dep_insn);
+      if (src_regno < FIRST_PSEUDO_REGISTER
+         || dest_regno < FIRST_PSEUDO_REGISTER)
+       {
+         set_sched_group_p (insn);
+         CANT_MOVE (insn) = 1;
+       }
+      else
+       {
+       end_call_group:
+         deps->in_post_call_group_p = 0;
        }
     }
 }
@@ -3804,7 +3840,8 @@ sched_analyze_insn (x, insn, loop_notes)
    for every dependency.  */
 
 static void
-sched_analyze (head, tail)
+sched_analyze (deps, head, tail)
+     struct deps *deps;
      rtx head, tail;
 {
   register rtx insn;
@@ -3818,12 +3855,15 @@ sched_analyze (head, tail)
          /* Clear out the stale LOG_LINKS from flow.  */
          free_INSN_LIST_list (&LOG_LINKS (insn));
 
+         /* Clear out stale SCHED_GROUP_P.  */
+         SCHED_GROUP_P (insn) = 0;
+
          /* Make each JUMP_INSN a scheduling barrier for memory
              references.  */
          if (GET_CODE (insn) == JUMP_INSN)
-           last_pending_memory_flush
-             = alloc_INSN_LIST (insn, last_pending_memory_flush);
-         sched_analyze_insn (PATTERN (insn), insn, loop_notes);
+           deps->last_pending_memory_flush
+             = alloc_INSN_LIST (insn, deps->last_pending_memory_flush);
+         sched_analyze_insn (deps, PATTERN (insn), insn, loop_notes);
          loop_notes = 0;
        }
       else if (GET_CODE (insn) == CALL_INSN)
@@ -3831,6 +3871,9 @@ sched_analyze (head, tail)
          rtx x;
          register int i;
 
+         /* Clear out stale SCHED_GROUP_P.  */
+         SCHED_GROUP_P (insn) = 0;
+
          CANT_MOVE (insn) = 1;
 
          /* Clear out the stale LOG_LINKS from flow.  */
@@ -3855,25 +3898,25 @@ sched_analyze (head, tail)
              int max_reg = max_reg_num ();
              for (i = 0; i < max_reg; i++)
                {
-                 for (u = reg_last_uses[i]; u; u = XEXP (u, 1))
+                 for (u = deps->reg_last_uses[i]; u; u = XEXP (u, 1))
                    add_dependence (insn, XEXP (u, 0), REG_DEP_ANTI);
-                 free_INSN_LIST_list (&reg_last_uses[i]);
+                 free_INSN_LIST_list (&deps->reg_last_uses[i]);
 
-                 for (u = reg_last_sets[i]; u; u = XEXP (u, 1))
+                 for (u = deps->reg_last_sets[i]; u; u = XEXP (u, 1))
                    add_dependence (insn, XEXP (u, 0), 0);
 
-                 for (u = reg_last_clobbers[i]; u; u = XEXP (u, 1))
+                 for (u = deps->reg_last_clobbers[i]; u; u = XEXP (u, 1))
                    add_dependence (insn, XEXP (u, 0), 0);
                }
              reg_pending_sets_all = 1;
 
-             /* Add a pair of fake REG_NOTEs which we will later
+             /* Add a pair of REG_SAVE_NOTEs which we will later
                 convert back into a NOTE_INSN_SETJMP note.  See
                 reemit_notes for why we use a pair of NOTEs.  */
-             REG_NOTES (insn) = alloc_EXPR_LIST (REG_DEAD,
+             REG_NOTES (insn) = alloc_EXPR_LIST (REG_SAVE_NOTE,
                                                  GEN_INT (0),
                                                  REG_NOTES (insn));
-             REG_NOTES (insn) = alloc_EXPR_LIST (REG_DEAD,
+             REG_NOTES (insn) = alloc_EXPR_LIST (REG_SAVE_NOTE,
                                                  GEN_INT (NOTE_INSN_SETJMP),
                                                  REG_NOTES (insn));
            }
@@ -3882,10 +3925,10 @@ sched_analyze (head, tail)
              for (i = 0; i < FIRST_PSEUDO_REGISTER; i++)
                if (call_used_regs[i] || global_regs[i])
                  {
-                   for (u = reg_last_uses[i]; u; u = XEXP (u, 1))
+                   for (u = deps->reg_last_uses[i]; u; u = XEXP (u, 1))
                      add_dependence (insn, XEXP (u, 0), REG_DEP_ANTI);
 
-                   for (u = reg_last_sets[i]; u; u = XEXP (u, 1))
+                   for (u = deps->reg_last_sets[i]; u; u = XEXP (u, 1))
                      add_dependence (insn, XEXP (u, 0), REG_DEP_ANTI);
 
                    SET_REGNO_REG_SET (reg_pending_clobbers, i);
@@ -3894,41 +3937,46 @@ sched_analyze (head, tail)
 
          /* For each insn which shouldn't cross a call, add a dependence
             between that insn and this call insn.  */
-         x = LOG_LINKS (sched_before_next_call);
+         x = LOG_LINKS (deps->sched_before_next_call);
          while (x)
            {
              add_dependence (insn, XEXP (x, 0), REG_DEP_ANTI);
              x = XEXP (x, 1);
            }
-         free_INSN_LIST_list (&LOG_LINKS (sched_before_next_call));
+         free_INSN_LIST_list (&LOG_LINKS (deps->sched_before_next_call));
 
-         sched_analyze_insn (PATTERN (insn), insn, loop_notes);
+         sched_analyze_insn (deps, PATTERN (insn), insn, loop_notes);
          loop_notes = 0;
 
          /* In the absence of interprocedural alias analysis, we must flush
             all pending reads and writes, and start new dependencies starting
             from here.  But only flush writes for constant calls (which may
             be passed a pointer to something we haven't written yet).  */
-         flush_pending_lists (insn, CONST_CALL_P (insn));
+         flush_pending_lists (deps, insn, CONST_CALL_P (insn));
 
          /* Depend this function call (actually, the user of this
             function call) on all hard register clobberage.  */
 
          /* last_function_call is now a list of insns.  */
-         free_INSN_LIST_list(&last_function_call);
-         last_function_call = alloc_INSN_LIST (insn, NULL_RTX);
+         free_INSN_LIST_list (&deps->last_function_call);
+         deps->last_function_call = alloc_INSN_LIST (insn, NULL_RTX);
+
+         /* Before reload, begin a post-call group, so as to keep the 
+            lifetimes of hard registers correct.  */
+         if (! reload_completed)
+           deps->in_post_call_group_p = 1;
        }
 
       /* See comments on reemit_notes as to why we do this.  
         ??? Actually, the reemit_notes just say what is done, not why.  */
 
       else if (GET_CODE (insn) == NOTE
-              && (NOTE_LINE_NUMBER (insn) == NOTE_INSN_RANGE_START
+              && (NOTE_LINE_NUMBER (insn) == NOTE_INSN_RANGE_BEG
                   || NOTE_LINE_NUMBER (insn) == NOTE_INSN_RANGE_END))
        {
-         loop_notes = alloc_EXPR_LIST (REG_DEAD, NOTE_RANGE_INFO (insn),
+         loop_notes = alloc_EXPR_LIST (REG_SAVE_NOTE, NOTE_RANGE_INFO (insn),
                                        loop_notes);
-         loop_notes = alloc_EXPR_LIST (REG_DEAD,
+         loop_notes = alloc_EXPR_LIST (REG_SAVE_NOTE,
                                        GEN_INT (NOTE_LINE_NUMBER (insn)),
                                        loop_notes);
        }
@@ -3940,18 +3988,18 @@ sched_analyze (head, tail)
                   || (NOTE_LINE_NUMBER (insn) == NOTE_INSN_SETJMP
                       && GET_CODE (PREV_INSN (insn)) != CALL_INSN)))
        {
-         rtx region;
+         rtx rtx_region;
 
          if (NOTE_LINE_NUMBER (insn) == NOTE_INSN_EH_REGION_BEG
              || NOTE_LINE_NUMBER (insn) == NOTE_INSN_EH_REGION_END)
-           region = GEN_INT (NOTE_EH_HANDLER (insn));
+           rtx_region = GEN_INT (NOTE_EH_HANDLER (insn));
          else
-           region = GEN_INT (0);
+           rtx_region = GEN_INT (0);
 
-         loop_notes = alloc_EXPR_LIST (REG_DEAD,
-                                       region,
+         loop_notes = alloc_EXPR_LIST (REG_SAVE_NOTE,
+                                       rtx_region,
                                        loop_notes);
-         loop_notes = alloc_EXPR_LIST (REG_DEAD,
+         loop_notes = alloc_EXPR_LIST (REG_SAVE_NOTE,
                                        GEN_INT (NOTE_LINE_NUMBER (insn)),
                                        loop_notes);
          CONST_CALL_P (loop_notes) = CONST_CALL_P (insn);
@@ -3963,102 +4011,6 @@ sched_analyze (head, tail)
   abort ();
 }
 \f
-/* Called when we see a set of a register.  If death is true, then we are
-   scanning backwards.  Mark that register as unborn.  If nobody says
-   otherwise, that is how things will remain.  If death is false, then we
-   are scanning forwards.  Mark that register as being born.  */
-
-static void
-sched_note_set (x, death)
-     rtx x;
-     int death;
-{
-  register int regno;
-  register rtx reg = SET_DEST (x);
-  int subreg_p = 0;
-
-  if (reg == 0)
-    return;
-
-  if (GET_CODE (reg) == PARALLEL
-      && GET_MODE (reg) == BLKmode)
-    {
-      register int i;
-      for (i = XVECLEN (reg, 0) - 1; i >= 0; i--)
-       sched_note_set (XVECEXP (reg, 0, i), death);
-      return;
-    }
-
-  while (GET_CODE (reg) == SUBREG || GET_CODE (reg) == STRICT_LOW_PART
-        || GET_CODE (reg) == SIGN_EXTRACT || GET_CODE (reg) == ZERO_EXTRACT)
-    {
-      /* Must treat modification of just one hardware register of a multi-reg
-         value or just a byte field of a register exactly the same way that
-         mark_set_1 in flow.c does, i.e. anything except a paradoxical subreg
-         does not kill the entire register.  */
-      if (GET_CODE (reg) != SUBREG
-         || REG_SIZE (SUBREG_REG (reg)) > REG_SIZE (reg))
-       subreg_p = 1;
-
-      reg = SUBREG_REG (reg);
-    }
-
-  if (GET_CODE (reg) != REG)
-    return;
-
-  /* Global registers are always live, so the code below does not apply
-     to them.  */
-
-  regno = REGNO (reg);
-  if (regno >= FIRST_PSEUDO_REGISTER || !global_regs[regno])
-    {
-      if (death)
-       {
-         /* If we only set part of the register, then this set does not
-            kill it.  */
-         if (subreg_p)
-           return;
-
-         /* Try killing this register.  */
-         if (regno < FIRST_PSEUDO_REGISTER)
-           {
-             int j = HARD_REGNO_NREGS (regno, GET_MODE (reg));
-             while (--j >= 0)
-               {
-                 CLEAR_REGNO_REG_SET (bb_live_regs, regno + j);
-               }
-           }
-         else
-           {
-             /* Recompute REG_BASIC_BLOCK as we update all the other
-                dataflow information.  */
-             if (sched_reg_basic_block[regno] == REG_BLOCK_UNKNOWN)
-               sched_reg_basic_block[regno] = current_block_num;
-             else if (sched_reg_basic_block[regno] != current_block_num)
-               sched_reg_basic_block[regno] = REG_BLOCK_GLOBAL;
-
-             CLEAR_REGNO_REG_SET (bb_live_regs, regno);
-           }
-       }
-      else
-       {
-         /* Make the register live again.  */
-         if (regno < FIRST_PSEUDO_REGISTER)
-           {
-             int j = HARD_REGNO_NREGS (regno, GET_MODE (reg));
-             while (--j >= 0)
-               {
-                 SET_REGNO_REG_SET (bb_live_regs, regno + j);
-               }
-           }
-         else
-           {
-             SET_REGNO_REG_SET (bb_live_regs, regno);
-           }
-       }
-    }
-}
-\f
 /* Macros and functions for keeping the priority queue sorted, and
    dealing with queueing and dequeueing of instructions.  */
 
@@ -4078,8 +4030,8 @@ rank_for_schedule (x, y)
      const PTR x;
      const PTR y;
 {
-  rtx tmp = *(rtx *)y;
-  rtx tmp2 = *(rtx *)x;
+  rtx tmp = *(const rtx *)y;
+  rtx tmp2 = *(const rtx *)x;
   rtx link;
   int tmp_class, tmp2_class, depend_count1, depend_count2;
   int val, priority_val, spec_val, prob_val, weight_val;
@@ -4202,115 +4154,32 @@ queue_insn (insn, n_cycles)
       fprintf (dump, ";;\t\tReady-->Q: insn %d: ", INSN_UID (insn));
 
       if (INSN_BB (insn) != target_bb)
-       fprintf (dump, "(b%d) ", INSN_BLOCK (insn));
+       fprintf (dump, "(b%d) ", BLOCK_NUM (insn));
 
       fprintf (dump, "queued for %d cycles.\n", n_cycles);
     }
 
 }
 
-/* Return nonzero if PAT is the pattern of an insn which makes a
-   register live.  */
+/* PREV is an insn that is ready to execute.  Adjust its priority if that
+   will help shorten or lengthen register lifetimes as appropriate.  Also
+   provide a hook for the target to tweek itself.  */
 
-HAIFA_INLINE static int
-birthing_insn_p (pat)
-     rtx pat;
+HAIFA_INLINE static void
+adjust_priority (prev)
+     rtx prev ATTRIBUTE_UNUSED;
 {
-  int j;
+  /* ??? There used to be code here to try and estimate how an insn
+     affected register lifetimes, but it did it by looking at REG_DEAD
+     notes, which we removed in schedule_region.  Nor did it try to 
+     take into account register pressure or anything useful like that.
 
-  if (reload_completed == 1)
-    return 0;
+     Revisit when we have a machine model to work with and not before.  */
 
-  if (GET_CODE (pat) == SET
-      && (GET_CODE (SET_DEST (pat)) == REG
-         || (GET_CODE (SET_DEST (pat)) == PARALLEL
-             && GET_MODE (SET_DEST (pat)) == BLKmode)))
-    {
-      rtx dest = SET_DEST (pat);
-      int i;
-
-      /* It would be more accurate to use refers_to_regno_p or
-        reg_mentioned_p to determine when the dest is not live before this
-        insn.  */
-      if (GET_CODE (dest) == REG)
-       {
-         i = REGNO (dest);
-         if (REGNO_REG_SET_P (bb_live_regs, i))
-           return (REG_N_SETS (i) == 1);
-       }
-      else
-       {
-         for (i = XVECLEN (dest, 0) - 1; i >= 0; i--)
-           {
-             int regno = REGNO (SET_DEST (XVECEXP (dest, 0, i)));
-             if (REGNO_REG_SET_P (bb_live_regs, regno))
-               return (REG_N_SETS (regno) == 1);
-           }
-       }
-      return 0;
-    }
-  if (GET_CODE (pat) == PARALLEL)
-    {
-      for (j = 0; j < XVECLEN (pat, 0); j++)
-       if (birthing_insn_p (XVECEXP (pat, 0, j)))
-         return 1;
-    }
-  return 0;
-}
-
-/* PREV is an insn that is ready to execute.  Adjust its priority if that
-   will help shorten register lifetimes.  */
-
-HAIFA_INLINE static void
-adjust_priority (prev)
-     rtx prev;
-{
-  /* Trying to shorten register lives after reload has completed
-     is useless and wrong.  It gives inaccurate schedules.  */
-  if (reload_completed == 0)
-    {
-      rtx note;
-      int n_deaths = 0;
-
-      /* ??? This code has no effect, because REG_DEAD notes are removed
-        before we ever get here.  */
-      for (note = REG_NOTES (prev); note; note = XEXP (note, 1))
-       if (REG_NOTE_KIND (note) == REG_DEAD)
-         n_deaths += 1;
-
-      /* Defer scheduling insns which kill registers, since that
-        shortens register lives.  Prefer scheduling insns which
-        make registers live for the same reason.  */
-      switch (n_deaths)
-       {
-       default:
-         INSN_PRIORITY (prev) >>= 3;
-         break;
-       case 3:
-         INSN_PRIORITY (prev) >>= 2;
-         break;
-       case 2:
-       case 1:
-         INSN_PRIORITY (prev) >>= 1;
-         break;
-       case 0:
-         if (birthing_insn_p (PATTERN (prev)))
-           {
-             int max = max_priority;
-
-             if (max > INSN_PRIORITY (prev))
-               INSN_PRIORITY (prev) = max;
-           }
-         break;
-       }
-    }
-
-  /* That said, a target might have it's own reasons for adjusting
-     priority after reload.  */
-#ifdef ADJUST_PRIORITY
-  ADJUST_PRIORITY (prev);
-#endif
-}
+#ifdef ADJUST_PRIORITY
+  ADJUST_PRIORITY (prev);
+#endif
+}
 
 /* Clock at which the previous instruction was issued.  */
 static int last_clock_var;
@@ -4383,7 +4252,7 @@ schedule_insn (insn, ready, n_ready, clock)
                       INSN_UID (next));
 
              if (current_nr_blocks > 1 && INSN_BB (next) != target_bb)
-               fprintf (dump, "/b%d ", INSN_BLOCK (next));
+               fprintf (dump, "/b%d ", BLOCK_NUM (next));
 
              if (effective_cost < 1)
                fprintf (dump, "into ready\n");
@@ -4415,334 +4284,6 @@ schedule_insn (insn, ready, n_ready, clock)
   return n_ready;
 }
 
-
-/* Add a REG_DEAD note for REG to INSN, reusing a REG_DEAD note from the
-   dead_notes list.  */
-
-static void
-create_reg_dead_note (reg, insn)
-     rtx reg, insn;
-{
-  rtx link;
-
-  /* The number of registers killed after scheduling must be the same as the
-     number of registers killed before scheduling.  The number of REG_DEAD
-     notes may not be conserved, i.e. two SImode hard register REG_DEAD notes
-     might become one DImode hard register REG_DEAD note, but the number of
-     registers killed will be conserved.
-
-     We carefully remove REG_DEAD notes from the dead_notes list, so that
-     there will be none left at the end.  If we run out early, then there
-     is a bug somewhere in flow, combine and/or sched.  */
-
-  if (dead_notes == 0)
-    {
-      if (current_nr_blocks <= 1)
-       abort ();
-      else
-       link = alloc_EXPR_LIST (REG_DEAD, NULL_RTX, NULL_RTX);
-    }
-  else
-    {
-      /* Number of regs killed by REG.  */
-      int regs_killed = (REGNO (reg) >= FIRST_PSEUDO_REGISTER ? 1
-                        : HARD_REGNO_NREGS (REGNO (reg), GET_MODE (reg)));
-      /* Number of regs killed by REG_DEAD notes taken off the list.  */
-      int reg_note_regs;
-
-      link = dead_notes;
-      reg_note_regs = (REGNO (XEXP (link, 0)) >= FIRST_PSEUDO_REGISTER ? 1
-                      : HARD_REGNO_NREGS (REGNO (XEXP (link, 0)),
-                                          GET_MODE (XEXP (link, 0))));
-      while (reg_note_regs < regs_killed)
-       {
-         link = XEXP (link, 1);
-
-         /* LINK might be zero if we killed more registers after scheduling
-            than before, and the last hard register we kill is actually
-            multiple hard regs. 
-
-            This is normal for interblock scheduling, so deal with it in
-            that case, else abort.  */
-         if (link == NULL_RTX && current_nr_blocks <= 1)
-           abort ();
-         else if (link == NULL_RTX)
-           link = alloc_EXPR_LIST (REG_DEAD, gen_rtx_REG (word_mode, 0),
-                                   NULL_RTX);
-            
-         reg_note_regs += (REGNO (XEXP (link, 0)) >= FIRST_PSEUDO_REGISTER ? 1
-                           : HARD_REGNO_NREGS (REGNO (XEXP (link, 0)),
-                                               GET_MODE (XEXP (link, 0))));
-       }
-      dead_notes = XEXP (link, 1);
-
-      /* If we took too many regs kills off, put the extra ones back.  */
-      while (reg_note_regs > regs_killed)
-       {
-         rtx temp_reg, temp_link;
-
-         temp_reg = gen_rtx_REG (word_mode, 0);
-         temp_link = alloc_EXPR_LIST (REG_DEAD, temp_reg, dead_notes);
-         dead_notes = temp_link;
-         reg_note_regs--;
-       }
-    }
-
-  XEXP (link, 0) = reg;
-  XEXP (link, 1) = REG_NOTES (insn);
-  REG_NOTES (insn) = link;
-}
-
-/* Subroutine on attach_deaths_insn--handles the recursive search
-   through INSN.  If SET_P is true, then x is being modified by the insn.  */
-
-static void
-attach_deaths (x, insn, set_p)
-     rtx x;
-     rtx insn;
-     int set_p;
-{
-  register int i;
-  register int j;
-  register enum rtx_code code;
-  register const char *fmt;
-
-  if (x == 0)
-    return;
-
-  code = GET_CODE (x);
-
-  switch (code)
-    {
-    case CONST_INT:
-    case CONST_DOUBLE:
-    case LABEL_REF:
-    case SYMBOL_REF:
-    case CONST:
-    case CODE_LABEL:
-    case PC:
-    case CC0:
-      /* Get rid of the easy cases first.  */
-      return;
-
-    case REG:
-      {
-       /* If the register dies in this insn, queue that note, and mark
-          this register as needing to die.  */
-       /* This code is very similar to mark_used_1 (if set_p is false)
-          and mark_set_1 (if set_p is true) in flow.c.  */
-
-       register int regno;
-       int some_needed;
-       int all_needed;
-
-       if (set_p)
-         return;
-
-       regno = REGNO (x);
-       all_needed = some_needed = REGNO_REG_SET_P (old_live_regs, regno);
-       if (regno < FIRST_PSEUDO_REGISTER)
-         {
-           int n;
-
-           n = HARD_REGNO_NREGS (regno, GET_MODE (x));
-           while (--n > 0)
-             {
-               int needed = (REGNO_REG_SET_P (old_live_regs, regno + n));
-               some_needed |= needed;
-               all_needed &= needed;
-             }
-         }
-
-       /* If it wasn't live before we started, then add a REG_DEAD note.
-          We must check the previous lifetime info not the current info,
-          because we may have to execute this code several times, e.g.
-          once for a clobber (which doesn't add a note) and later
-          for a use (which does add a note).
-
-          Always make the register live.  We must do this even if it was
-          live before, because this may be an insn which sets and uses
-          the same register, in which case the register has already been
-          killed, so we must make it live again.
-
-          Global registers are always live, and should never have a REG_DEAD
-          note added for them, so none of the code below applies to them.  */
-
-       if (regno >= FIRST_PSEUDO_REGISTER || ! global_regs[regno])
-         {
-           /* Never add REG_DEAD notes for STACK_POINTER_REGNUM
-              since it's always considered to be live.  Similarly
-              for FRAME_POINTER_REGNUM if a frame pointer is needed
-              and for ARG_POINTER_REGNUM if it is fixed.  */
-           if (! (regno == FRAME_POINTER_REGNUM
-                  && (! reload_completed || frame_pointer_needed))
-#if HARD_FRAME_POINTER_REGNUM != FRAME_POINTER_REGNUM
-               && ! (regno == HARD_FRAME_POINTER_REGNUM
-                     && (! reload_completed || frame_pointer_needed))
-#endif
-#if ARG_POINTER_REGNUM != FRAME_POINTER_REGNUM
-               && ! (regno == ARG_POINTER_REGNUM && fixed_regs[regno])
-#endif
-               && regno != STACK_POINTER_REGNUM)
-             {
-               if (! all_needed && ! dead_or_set_p (insn, x))
-                 {
-                   /* Check for the case where the register dying partially
-                      overlaps the register set by this insn.  */
-                   if (regno < FIRST_PSEUDO_REGISTER
-                       && HARD_REGNO_NREGS (regno, GET_MODE (x)) > 1)
-                     {
-                       int n = HARD_REGNO_NREGS (regno, GET_MODE (x));
-                       while (--n >= 0)
-                         some_needed |= dead_or_set_regno_p (insn, regno + n);
-                     }
-
-                   /* If none of the words in X is needed, make a REG_DEAD
-                      note.  Otherwise, we must make partial REG_DEAD
-                      notes.  */
-                   if (! some_needed)
-                     create_reg_dead_note (x, insn);
-                   else
-                     {
-                       int i;
-
-                       /* Don't make a REG_DEAD note for a part of a
-                          register that is set in the insn.  */
-                       for (i = HARD_REGNO_NREGS (regno, GET_MODE (x)) - 1;
-                            i >= 0; i--)
-                         if (! REGNO_REG_SET_P (old_live_regs, regno+i)
-                             && ! dead_or_set_regno_p (insn, regno + i))
-                           create_reg_dead_note (gen_rtx_REG (reg_raw_mode[regno + i],
-                                                              regno + i),
-                                                 insn);
-                     }
-                 }
-             }
-
-           if (regno < FIRST_PSEUDO_REGISTER)
-             {
-               int j = HARD_REGNO_NREGS (regno, GET_MODE (x));
-               while (--j >= 0)
-                 {
-                   SET_REGNO_REG_SET (bb_live_regs, regno + j);
-                 }
-             }
-           else
-             {
-               /* Recompute REG_BASIC_BLOCK as we update all the other
-                  dataflow information.  */
-               if (sched_reg_basic_block[regno] == REG_BLOCK_UNKNOWN)
-                 sched_reg_basic_block[regno] = current_block_num;
-               else if (sched_reg_basic_block[regno] != current_block_num)
-                 sched_reg_basic_block[regno] = REG_BLOCK_GLOBAL;
-
-               SET_REGNO_REG_SET (bb_live_regs, regno);
-             }
-         }
-       return;
-      }
-
-    case MEM:
-      /* Handle tail-recursive case.  */
-      attach_deaths (XEXP (x, 0), insn, 0);
-      return;
-
-    case SUBREG:
-      attach_deaths (SUBREG_REG (x), insn,
-                    set_p && ((GET_MODE_SIZE (GET_MODE (SUBREG_REG (x)))
-                               <= UNITS_PER_WORD)
-                              || (GET_MODE_SIZE (GET_MODE (SUBREG_REG (x)))
-                                  == GET_MODE_SIZE (GET_MODE ((x))))));
-      return;
-
-    case STRICT_LOW_PART:
-      attach_deaths (XEXP (x, 0), insn, 0);
-      return;
-
-    case ZERO_EXTRACT:
-    case SIGN_EXTRACT:
-      attach_deaths (XEXP (x, 0), insn, 0);
-      attach_deaths (XEXP (x, 1), insn, 0);
-      attach_deaths (XEXP (x, 2), insn, 0);
-      return;
-
-    case PARALLEL:
-      if (set_p
-         && GET_MODE (x) == BLKmode)
-       {
-         for (i = XVECLEN (x, 0) - 1; i >= 0; i--)
-           attach_deaths (SET_DEST (XVECEXP (x, 0, i)), insn, 1);
-         return;
-       }
-
-      /* Fallthrough.  */
-    default:
-      /* Other cases: walk the insn.  */
-      fmt = GET_RTX_FORMAT (code);
-      for (i = GET_RTX_LENGTH (code) - 1; i >= 0; i--)
-       {
-         if (fmt[i] == 'e')
-           attach_deaths (XEXP (x, i), insn, 0);
-         else if (fmt[i] == 'E')
-           for (j = 0; j < XVECLEN (x, i); j++)
-             attach_deaths (XVECEXP (x, i, j), insn, 0);
-       }
-    }
-}
-
-/* After INSN has executed, add register death notes for each register
-   that is dead after INSN.  */
-
-static void
-attach_deaths_insn (insn)
-     rtx insn;
-{
-  rtx x = PATTERN (insn);
-  register RTX_CODE code = GET_CODE (x);
-  rtx link;
-
-  if (code == SET)
-    {
-      attach_deaths (SET_SRC (x), insn, 0);
-
-      /* A register might die here even if it is the destination, e.g.
-         it is the target of a volatile read and is otherwise unused.
-         Hence we must always call attach_deaths for the SET_DEST.  */
-      attach_deaths (SET_DEST (x), insn, 1);
-    }
-  else if (code == PARALLEL)
-    {
-      register int i;
-      for (i = XVECLEN (x, 0) - 1; i >= 0; i--)
-       {
-         code = GET_CODE (XVECEXP (x, 0, i));
-         if (code == SET)
-           {
-             attach_deaths (SET_SRC (XVECEXP (x, 0, i)), insn, 0);
-
-             attach_deaths (SET_DEST (XVECEXP (x, 0, i)), insn, 1);
-           }
-         /* Flow does not add REG_DEAD notes to registers that die in
-            clobbers, so we can't either.  */
-         else if (code != CLOBBER)
-           attach_deaths (XVECEXP (x, 0, i), insn, 0);
-       }
-    }
-  /* If this is a CLOBBER, only add REG_DEAD notes to registers inside a
-     MEM being clobbered, just like flow.  */
-  else if (code == CLOBBER && GET_CODE (XEXP (x, 0)) == MEM)
-    attach_deaths (XEXP (XEXP (x, 0), 0), insn, 0);
-  /* Otherwise don't add a death note to things being clobbered.  */
-  else if (code != CLOBBER)
-    attach_deaths (x, insn, 0);
-
-  /* Make death notes for things used in the called function.  */
-  if (GET_CODE (insn) == CALL_INSN)
-    for (link = CALL_INSN_FUNCTION_USAGE (insn); link; link = XEXP (link, 1))
-      attach_deaths (XEXP (XEXP (link, 0), 0), insn,
-                    GET_CODE (XEXP (link, 0)) == CLOBBER);
-}
-
 /* Functions for handling of notes.  */
 
 /* Delete notes beginning with INSN and put them in the chain
@@ -4764,14 +4305,11 @@ unlink_other_notes (insn, tail)
       if (next)
        PREV_INSN (next) = prev;
 
-      /* Don't save away NOTE_INSN_SETJMPs, because they must remain
-         immediately after the call they follow.  We use a fake
-         (REG_DEAD (const_int -1)) note to remember them.
-         Likewise with NOTE_INSN_{LOOP,EHREGION}_{BEG, END}.  */
+      /* See sched_analyze to see how these are handled.  */
       if (NOTE_LINE_NUMBER (insn) != NOTE_INSN_SETJMP
          && NOTE_LINE_NUMBER (insn) != NOTE_INSN_LOOP_BEG
          && NOTE_LINE_NUMBER (insn) != NOTE_INSN_LOOP_END
-         && NOTE_LINE_NUMBER (insn) != NOTE_INSN_RANGE_START
+         && NOTE_LINE_NUMBER (insn) != NOTE_INSN_RANGE_BEG
          && NOTE_LINE_NUMBER (insn) != NOTE_INSN_RANGE_END
          && NOTE_LINE_NUMBER (insn) != NOTE_INSN_EH_REGION_BEG
          && NOTE_LINE_NUMBER (insn) != NOTE_INSN_EH_REGION_END)
@@ -4823,17 +4361,14 @@ unlink_line_notes (insn, tail)
 /* Return the head and tail pointers of BB.  */
 
 HAIFA_INLINE static void
-get_block_head_tail (bb, headp, tailp)
-     int bb;
+get_block_head_tail (b, headp, tailp)
+     int b;
      rtx *headp;
      rtx *tailp;
 {
 
   rtx head;
   rtx tail;
-  int b;
-
-  b = BB_TO_BLOCK (bb);
 
   /* HEAD and TAIL delimit the basic block being scheduled.  */
   head = BLOCK_HEAD (b);
@@ -4857,6 +4392,15 @@ get_block_head_tail (bb, headp, tailp)
   *tailp = tail;
 }
 
+HAIFA_INLINE static void
+get_bb_head_tail (bb, headp, tailp)
+     int bb;
+     rtx *headp;
+     rtx *tailp;
+{
+  get_block_head_tail (BB_TO_BLOCK (bb), headp, tailp);
+}
+
 /* Delete line notes from bb. Save them so they can be later restored
    (in restore_line_notes ()).  */
 
@@ -4869,10 +4413,9 @@ rm_line_notes (bb)
   rtx head;
   rtx insn;
 
-  get_block_head_tail (bb, &head, &tail);
+  get_bb_head_tail (bb, &head, &tail);
 
-  if (head == tail
-      && (GET_RTX_CLASS (GET_CODE (head)) != 'i'))
+  if (head == tail && (! INSN_P (head)))
     return;
 
   next_tail = NEXT_INSN (tail);
@@ -4915,7 +4458,7 @@ save_line_notes (bb)
   rtx line = line_note_head[BB_TO_BLOCK (bb)];
   rtx insn;
 
-  get_block_head_tail (bb, &head, &tail);
+  get_bb_head_tail (bb, &head, &tail);
   next_tail = NEXT_INSN (tail);
 
   for (insn = BLOCK_HEAD (BB_TO_BLOCK (bb));
@@ -5053,8 +4596,7 @@ rm_other_notes (head, tail)
   rtx next_tail;
   rtx insn;
 
-  if (head == tail
-      && (GET_RTX_CLASS (GET_CODE (head)) != 'i'))
+  if (head == tail && (! INSN_P (head)))
     return;
 
   next_tail = NEXT_INSN (tail);
@@ -5076,464 +4618,60 @@ rm_other_notes (head, tail)
          if (prev == head)
            abort ();
          if (insn == next_tail)
-           abort ();
-       }
-    }
-}
-
-/* Constructor for `sometimes' data structure.  */
-
-static int
-new_sometimes_live (regs_sometimes_live, regno, sometimes_max)
-     struct sometimes *regs_sometimes_live;
-     int regno;
-     int sometimes_max;
-{
-  register struct sometimes *p;
-
-  /* There should never be a register greater than max_regno here.  If there
-     is, it means that a define_split has created a new pseudo reg.  This
-     is not allowed, since there will not be flow info available for any
-     new register, so catch the error here.  */
-  if (regno >= max_regno)
-    abort ();
-
-  p = &regs_sometimes_live[sometimes_max];
-  p->regno = regno;
-  p->live_length = 0;
-  p->calls_crossed = 0;
-  sometimes_max++;
-  return sometimes_max;
-}
-
-/* Count lengths of all regs we are currently tracking,
-   and find new registers no longer live.  */
-
-static void
-finish_sometimes_live (regs_sometimes_live, sometimes_max)
-     struct sometimes *regs_sometimes_live;
-     int sometimes_max;
-{
-  int i;
-
-  for (i = 0; i < sometimes_max; i++)
-    {
-      register struct sometimes *p = &regs_sometimes_live[i];
-      int regno = p->regno;
-
-      sched_reg_live_length[regno] += p->live_length;
-      sched_reg_n_calls_crossed[regno] += p->calls_crossed;
-    }
-}
-
-/* Functions for computation of registers live/usage info.  */
-
-/* It is assumed that prior to scheduling BASIC_BLOCK (b)->global_live_at_start
-   contains the registers that are alive at the entry to b.
-
-   Two passes follow: The first pass is performed before the scheduling
-   of a region. It scans each block of the region forward, computing
-   the set of registers alive at the end of the basic block and
-   discard REG_DEAD notes (done by find_pre_sched_live ()).
-
-   The second path is invoked after scheduling all region blocks.
-   It scans each block of the region backward, a block being traversed
-   only after its succesors in the region. When the set of registers
-   live at the end of a basic block may be changed by the scheduling
-   (this may happen for multiple blocks region), it is computed as
-   the union of the registers live at the start of its succesors.
-   The last-use information is updated by inserting REG_DEAD notes.
-   (done by find_post_sched_live ()) */
-
-/* Scan all the insns to be scheduled, removing register death notes.
-   Register death notes end up in DEAD_NOTES.
-   Recreate the register life information for the end of this basic
-   block.  */
-
-static void
-find_pre_sched_live (bb)
-     int bb;
-{
-  rtx insn, next_tail, head, tail;
-  int b = BB_TO_BLOCK (bb);
-
-  get_block_head_tail (bb, &head, &tail);
-  COPY_REG_SET (bb_live_regs, BASIC_BLOCK (b)->global_live_at_start);
-  next_tail = NEXT_INSN (tail);
-
-  for (insn = head; insn != next_tail; insn = NEXT_INSN (insn))
-    {
-      rtx prev, next, link;
-      int reg_weight = 0;
-
-      /* Handle register life information.  */
-      if (GET_RTX_CLASS (GET_CODE (insn)) == 'i')
-       {
-         /* See if the register gets born here.  */
-         /* We must check for registers being born before we check for
-            registers dying.  It is possible for a register to be born and
-            die in the same insn, e.g. reading from a volatile memory
-            location into an otherwise unused register.  Such a register
-            must be marked as dead after this insn.  */
-         if (GET_CODE (PATTERN (insn)) == SET
-             || GET_CODE (PATTERN (insn)) == CLOBBER)
-           {
-             sched_note_set (PATTERN (insn), 0);
-             reg_weight++;
-           }
-
-         else if (GET_CODE (PATTERN (insn)) == PARALLEL)
-           {
-             int j;
-             for (j = XVECLEN (PATTERN (insn), 0) - 1; j >= 0; j--)
-               if (GET_CODE (XVECEXP (PATTERN (insn), 0, j)) == SET
-                   || GET_CODE (XVECEXP (PATTERN (insn), 0, j)) == CLOBBER)
-                 {
-                   sched_note_set (XVECEXP (PATTERN (insn), 0, j), 0);
-                   reg_weight++;
-                 }
-
-             /* ??? This code is obsolete and should be deleted.  It
-                is harmless though, so we will leave it in for now.  */
-             for (j = XVECLEN (PATTERN (insn), 0) - 1; j >= 0; j--)
-               if (GET_CODE (XVECEXP (PATTERN (insn), 0, j)) == USE)
-                 sched_note_set (XVECEXP (PATTERN (insn), 0, j), 0);
-           }
-
-         /* Each call cobbers (makes live) all call-clobbered regs
-            that are not global or fixed.  Note that the function-value
-            reg is a call_clobbered reg.  */
-         if (GET_CODE (insn) == CALL_INSN)
-           {
-             int j;
-             for (j = 0; j < FIRST_PSEUDO_REGISTER; j++)
-               if (call_used_regs[j] && !global_regs[j]
-                   && ! fixed_regs[j])
-                 {
-                   SET_REGNO_REG_SET (bb_live_regs, j);
-                 }
-           }
-
-         /* Need to know what registers this insn kills.  */
-         for (prev = 0, link = REG_NOTES (insn); link; link = next)
-           {
-             next = XEXP (link, 1);
-             if ((REG_NOTE_KIND (link) == REG_DEAD
-                  || REG_NOTE_KIND (link) == REG_UNUSED)
-             /* Verify that the REG_NOTE has a valid value.  */
-                 && GET_CODE (XEXP (link, 0)) == REG)
-               {
-                 register int regno = REGNO (XEXP (link, 0));
-
-                 reg_weight--;
-
-                 /* Only unlink REG_DEAD notes; leave REG_UNUSED notes
-                    alone.  */
-                 if (REG_NOTE_KIND (link) == REG_DEAD)
-                   {
-                     if (prev)
-                       XEXP (prev, 1) = next;
-                     else
-                       REG_NOTES (insn) = next;
-                     XEXP (link, 1) = dead_notes;
-                     dead_notes = link;
-                   }
-                 else
-                   prev = link;
-
-                 if (regno < FIRST_PSEUDO_REGISTER)
-                   {
-                     int j = HARD_REGNO_NREGS (regno,
-                                               GET_MODE (XEXP (link, 0)));
-                     while (--j >= 0)
-                       {
-                         CLEAR_REGNO_REG_SET (bb_live_regs, regno+j);
-                       }
-                   }
-                 else
-                   {
-                     CLEAR_REGNO_REG_SET (bb_live_regs, regno);
-                   }
-               }
-             else
-               prev = link;
-           }
-       }
-
-      INSN_REG_WEIGHT (insn) = reg_weight;
-    }
-}
-
-/* Update register life and usage information for block bb
-   after scheduling.  Put register dead notes back in the code.  */
-
-static void
-find_post_sched_live (bb)
-     int bb;
-{
-  int sometimes_max;
-  int j, i;
-  int b;
-  rtx insn;
-  rtx head, tail, prev_head, next_tail;
-
-  register struct sometimes *regs_sometimes_live;
-
-  b = BB_TO_BLOCK (bb);
-
-  /* Compute live regs at the end of bb as a function of its successors.  */
-  if (current_nr_blocks > 1)
-    {
-      int e;
-      int first_edge;
-
-      first_edge = e = OUT_EDGES (b);
-      CLEAR_REG_SET (bb_live_regs);
-
-      if (e)
-       do
-         {
-           int b_succ;
-
-           b_succ = TO_BLOCK (e);
-           IOR_REG_SET (bb_live_regs,
-                        BASIC_BLOCK (b_succ)->global_live_at_start);
-           e = NEXT_OUT (e);
-         }
-       while (e != first_edge);
-    }
-
-  get_block_head_tail (bb, &head, &tail);
-  next_tail = NEXT_INSN (tail);
-  prev_head = PREV_INSN (head);
-
-  EXECUTE_IF_SET_IN_REG_SET (bb_live_regs, FIRST_PSEUDO_REGISTER, i,
-                            {
-                              sched_reg_basic_block[i] = REG_BLOCK_GLOBAL;
-                            });
-
-  /* If the block is empty, same regs are alive at its end and its start.
-     since this is not guaranteed after interblock scheduling, make sure they
-     are truly identical.  */
-  if (NEXT_INSN (prev_head) == tail
-      && (GET_RTX_CLASS (GET_CODE (tail)) != 'i'))
-    {
-      if (current_nr_blocks > 1)
-       COPY_REG_SET (BASIC_BLOCK (b)->global_live_at_start, bb_live_regs);
-
-      return;
-    }
-
-  b = BB_TO_BLOCK (bb);
-  current_block_num = b;
-
-  /* Keep track of register lives.  */
-  old_live_regs = ALLOCA_REG_SET ();
-  regs_sometimes_live
-    = (struct sometimes *) alloca (max_regno * sizeof (struct sometimes));
-  sometimes_max = 0;
-
-  /* Initiate "sometimes" data, starting with registers live at end.  */
-  sometimes_max = 0;
-  COPY_REG_SET (old_live_regs, bb_live_regs);
-  EXECUTE_IF_SET_IN_REG_SET (bb_live_regs, 0, j,
-                            {
-                              sometimes_max
-                                = new_sometimes_live (regs_sometimes_live,
-                                                      j, sometimes_max);
-                            });
-
-  /* Scan insns back, computing regs live info.  */
-  for (insn = tail; insn != prev_head; insn = PREV_INSN (insn))
-    {
-      /* First we kill registers set by this insn, and then we
-         make registers used by this insn live.  This is the opposite
-         order used above because we are traversing the instructions
-         backwards.  */
-
-      /* Strictly speaking, we should scan REG_UNUSED notes and make
-         every register mentioned there live, however, we will just
-         kill them again immediately below, so there doesn't seem to
-         be any reason why we bother to do this.  */
-
-      /* See if this is the last notice we must take of a register.  */
-      if (GET_RTX_CLASS (GET_CODE (insn)) != 'i')
-       continue;
-
-      if (GET_CODE (PATTERN (insn)) == SET
-         || GET_CODE (PATTERN (insn)) == CLOBBER)
-       sched_note_set (PATTERN (insn), 1);
-      else if (GET_CODE (PATTERN (insn)) == PARALLEL)
-       {
-         for (j = XVECLEN (PATTERN (insn), 0) - 1; j >= 0; j--)
-           if (GET_CODE (XVECEXP (PATTERN (insn), 0, j)) == SET
-               || GET_CODE (XVECEXP (PATTERN (insn), 0, j)) == CLOBBER)
-             sched_note_set (XVECEXP (PATTERN (insn), 0, j), 1);
-       }
-
-      /* This code keeps life analysis information up to date.  */
-      if (GET_CODE (insn) == CALL_INSN)
-       {
-         register struct sometimes *p;
-
-         /* A call kills all call used registers that are not
-            global or fixed, except for those mentioned in the call
-            pattern which will be made live again later.  */
-         for (i = 0; i < FIRST_PSEUDO_REGISTER; i++)
-           if (call_used_regs[i] && ! global_regs[i]
-               && ! fixed_regs[i])
-             {
-               CLEAR_REGNO_REG_SET (bb_live_regs, i);
-             }
-
-         /* Regs live at the time of a call instruction must not
-            go in a register clobbered by calls.  Record this for
-            all regs now live.  Note that insns which are born or
-            die in a call do not cross a call, so this must be done
-            after the killings (above) and before the births
-            (below).  */
-         p = regs_sometimes_live;
-         for (i = 0; i < sometimes_max; i++, p++)
-           if (REGNO_REG_SET_P (bb_live_regs, p->regno))
-             p->calls_crossed += 1;
-       }
-
-      /* Make every register used live, and add REG_DEAD notes for
-         registers which were not live before we started.  */
-      attach_deaths_insn (insn);
-
-      /* Find registers now made live by that instruction.  */
-      EXECUTE_IF_AND_COMPL_IN_REG_SET (bb_live_regs, old_live_regs, 0, j,
-                                {
-                                  sometimes_max
-                                    = new_sometimes_live (regs_sometimes_live,
-                                                          j, sometimes_max);
-                                });
-      IOR_REG_SET (old_live_regs, bb_live_regs);
-
-      /* Count lengths of all regs we are worrying about now,
-         and handle registers no longer live.  */
-
-      for (i = 0; i < sometimes_max; i++)
-       {
-         register struct sometimes *p = &regs_sometimes_live[i];
-         int regno = p->regno;
-
-         p->live_length += 1;
-
-         if (!REGNO_REG_SET_P (bb_live_regs, regno))
-           {
-             /* This is the end of one of this register's lifetime
-                segments.  Save the lifetime info collected so far,
-                and clear its bit in the old_live_regs entry.  */
-             sched_reg_live_length[regno] += p->live_length;
-             sched_reg_n_calls_crossed[regno] += p->calls_crossed;
-             CLEAR_REGNO_REG_SET (old_live_regs, p->regno);
-
-             /* Delete the reg_sometimes_live entry for this reg by
-                copying the last entry over top of it.  */
-             *p = regs_sometimes_live[--sometimes_max];
-             /* ...and decrement i so that this newly copied entry
-                will be processed.  */
-             i--;
-           }
-       }
-    }
-
-  finish_sometimes_live (regs_sometimes_live, sometimes_max);
-
-  /* In interblock scheduling, global_live_at_start may have changed.  */
-  if (current_nr_blocks > 1)
-    COPY_REG_SET (BASIC_BLOCK (b)->global_live_at_start, bb_live_regs);
-
+           abort ();
+       }
+    }
+}
 
-  FREE_REG_SET (old_live_regs);
-}                              /* find_post_sched_live */
+/* Functions for computation of registers live/usage info.  */
 
-/* After scheduling the subroutine, restore information about uses of
-   registers.  */
+/* Calculate INSN_REG_WEIGHT for all insns of a block.  */
 
 static void
-update_reg_usage ()
+find_insn_reg_weight (b)
+    int b;
 {
-  int regno;
+  rtx insn, next_tail, head, tail;
 
-  if (n_basic_blocks > 0)
-    EXECUTE_IF_SET_IN_REG_SET (bb_live_regs, FIRST_PSEUDO_REGISTER, regno,
-                              {
-                                sched_reg_basic_block[regno]
-                                  = REG_BLOCK_GLOBAL;
-                              });
+  get_block_head_tail (b, &head, &tail);
+  next_tail = NEXT_INSN (tail);
 
-  for (regno = 0; regno < max_regno; regno++)
-    if (sched_reg_live_length[regno])
-      {
-       if (sched_verbose)
-         {
-           if (REG_LIVE_LENGTH (regno) > sched_reg_live_length[regno])
-             fprintf (dump,
-                      ";; register %d life shortened from %d to %d\n",
-                      regno, REG_LIVE_LENGTH (regno),
-                      sched_reg_live_length[regno]);
-           /* Negative values are special; don't overwrite the current
-              reg_live_length value if it is negative.  */
-           else if (REG_LIVE_LENGTH (regno) < sched_reg_live_length[regno]
-                    && REG_LIVE_LENGTH (regno) >= 0)
-             fprintf (dump,
-                      ";; register %d life extended from %d to %d\n",
-                      regno, REG_LIVE_LENGTH (regno),
-                      sched_reg_live_length[regno]);
+  for (insn = head; insn != next_tail; insn = NEXT_INSN (insn))
+    {
+      int reg_weight = 0;
+      rtx x;
 
-           if (!REG_N_CALLS_CROSSED (regno)
-               && sched_reg_n_calls_crossed[regno])
-             fprintf (dump,
-                      ";; register %d now crosses calls\n", regno);
-           else if (REG_N_CALLS_CROSSED (regno)
-                    && !sched_reg_n_calls_crossed[regno]
-                    && REG_BASIC_BLOCK (regno) != REG_BLOCK_GLOBAL)
-             fprintf (dump,
-                      ";; register %d no longer crosses calls\n", regno);
+      /* Handle register life information.  */
+      if (! INSN_P (insn))
+       continue;
 
-           if (REG_BASIC_BLOCK (regno) != sched_reg_basic_block[regno]
-               && sched_reg_basic_block[regno] != REG_BLOCK_UNKNOWN
-               && REG_BASIC_BLOCK(regno) != REG_BLOCK_UNKNOWN)
-             fprintf (dump,
-                      ";; register %d changed basic block from %d to %d\n",
-                       regno, REG_BASIC_BLOCK(regno),
-                       sched_reg_basic_block[regno]);
+      /* Increment weight for each register born here.  */
+      x = PATTERN (insn);
+      if ((GET_CODE (x) == SET || GET_CODE (x) == CLOBBER)
+         && register_operand (SET_DEST (x), VOIDmode))
+       reg_weight++;
+      else if (GET_CODE (x) == PARALLEL)
+       {
+         int j;
+         for (j = XVECLEN (x, 0) - 1; j >= 0; j--)
+           {
+             x = XVECEXP (PATTERN (insn), 0, j);
+             if ((GET_CODE (x) == SET || GET_CODE (x) == CLOBBER)
+                 && register_operand (SET_DEST (x), VOIDmode))
+               reg_weight++;
+           }
+       }
 
-         }
-       /* Negative values are special; don't overwrite the current
-          reg_live_length value if it is negative.  */
-       if (REG_LIVE_LENGTH (regno) >= 0)
-         REG_LIVE_LENGTH (regno) = sched_reg_live_length[regno];
-
-       if (sched_reg_basic_block[regno] != REG_BLOCK_UNKNOWN
-           && REG_BASIC_BLOCK(regno) != REG_BLOCK_UNKNOWN)
-         REG_BASIC_BLOCK(regno) = sched_reg_basic_block[regno];
-
-       /* We can't change the value of reg_n_calls_crossed to zero for
-          pseudos which are live in more than one block.
-
-          This is because combine might have made an optimization which
-          invalidated global_live_at_start and reg_n_calls_crossed,
-          but it does not update them.  If we update reg_n_calls_crossed
-          here, the two variables are now inconsistent, and this might
-          confuse the caller-save code into saving a register that doesn't
-          need to be saved.  This is only a problem when we zero calls
-          crossed for a pseudo live in multiple basic blocks.
-
-          Alternatively, we could try to correctly update basic block live
-          at start here in sched, but that seems complicated.
-
-          Note: it is possible that a global register became local,
-          as result of interblock motion, but will remain marked as a
-          global register.  */
-       if (sched_reg_n_calls_crossed[regno]
-           || REG_BASIC_BLOCK (regno) != REG_BLOCK_GLOBAL)
-         REG_N_CALLS_CROSSED (regno) = sched_reg_n_calls_crossed[regno];
+      /* Decrement weight for each register that dies here.  */
+      for (x = REG_NOTES (insn); x; x = XEXP (x, 1))
+       {
+         if (REG_NOTE_KIND (x) == REG_DEAD
+             || REG_NOTE_KIND (x) == REG_UNUSED)
+           reg_weight--;
+       }
 
-      }
+      INSN_REG_WEIGHT (insn) = reg_weight;
+    }
 }
 
 /* Scheduling clock, modified in schedule_block() and queue_to_ready ().  */
@@ -5563,7 +4701,7 @@ queue_to_ready (ready, n_ready)
        fprintf (dump, ";;\t\tQ-->Ready: insn %d: ", INSN_UID (insn));
 
       if (sched_verbose >= 2 && INSN_BB (insn) != target_bb)
-       fprintf (dump, "(b%d) ", INSN_BLOCK (insn));
+       fprintf (dump, "(b%d) ", BLOCK_NUM (insn));
 
       ready[n_ready++] = insn;
       if (sched_verbose >= 2)
@@ -5590,7 +4728,7 @@ queue_to_ready (ready, n_ready)
                    fprintf (dump, ";;\t\tQ-->Ready: insn %d: ", INSN_UID (insn));
 
                  if (sched_verbose >= 2 && INSN_BB (insn) != target_bb)
-                   fprintf (dump, "(b%d) ", INSN_BLOCK (insn));
+                   fprintf (dump, "(b%d) ", BLOCK_NUM (insn));
 
                  ready[n_ready++] = insn;
                  if (sched_verbose >= 2)
@@ -5624,7 +4762,7 @@ debug_ready_list (ready, n_ready)
     {
       fprintf (dump, "  %d", INSN_UID (ready[i]));
       if (current_nr_blocks > 1 && INSN_BB (ready[i]) != target_bb)
-       fprintf (dump, "/b%d", INSN_BLOCK (ready[i]));
+       fprintf (dump, "/b%d", BLOCK_NUM (ready[i]));
     }
   fprintf (dump, "\n");
 }
@@ -5679,7 +4817,7 @@ init_target_units ()
 
   for (insn = get_last_insn (); insn; insn = PREV_INSN (insn))
     {
-      if (GET_RTX_CLASS (GET_CODE (insn)) != 'i')
+      if (! INSN_P (insn))
        continue;
 
       unit = insn_unit (insn);
@@ -5729,7 +4867,7 @@ init_block_visualization ()
   n_vis_no_unit = 0;
 }
 
-#define BUF_LEN 256
+#define BUF_LEN 2048
 
 static char *
 safe_concat (buf, cur, str)
@@ -6224,6 +5362,11 @@ print_pattern (buf, x, verbose)
       print_value (t1, XEXP (x, 0), verbose);
       sprintf (buf, "use %s", t1);
       break;
+    case COND_EXEC:
+      print_value (t1, COND_EXEC_CODE (x), verbose);
+      print_value (t2, COND_EXEC_TEST (x), verbose);
+      sprintf (buf, "cond_exec %s %s", t1, t2);
+      break;
     case PARALLEL:
       {
        int i;
@@ -6500,10 +5643,10 @@ move_insn1 (insn, last)
   return insn;
 }
 
-/* Search INSN for fake REG_DEAD note pairs for NOTE_INSN_SETJMP,
+/* Search INSN for REG_SAVE_NOTE note pairs for NOTE_INSN_SETJMP,
    NOTE_INSN_{LOOP,EHREGION}_{BEG,END}; and convert them back into
-   NOTEs.  The REG_DEAD note following first one is contains the saved
-   value for NOTE_BLOCK_NUMBER which is useful for
+   NOTEs.  The REG_SAVE_NOTE note following first one is contains the
+   saved value for NOTE_BLOCK_NUMBER which is useful for
    NOTE_INSN_EH_REGION_{BEG,END} NOTEs.  LAST is the last instruction
    output by the instruction scheduler.  Return the new value of LAST.  */
 
@@ -6517,10 +5660,10 @@ reemit_notes (insn, last)
   retval = last;
   for (note = REG_NOTES (insn); note; note = XEXP (note, 1))
     {
-      if (REG_NOTE_KIND (note) == REG_DEAD
-         && GET_CODE (XEXP (note, 0)) == CONST_INT)
+      if (REG_NOTE_KIND (note) == REG_SAVE_NOTE)
        {
-         int note_type = INTVAL (XEXP (note, 0));
+         enum insn_note note_type = INTVAL (XEXP (note, 0));
+
          if (note_type == NOTE_INSN_SETJMP)
            {
              retval = emit_note_after (NOTE_INSN_SETJMP, insn);
@@ -6528,7 +5671,7 @@ reemit_notes (insn, last)
              remove_note (insn, note);
              note = XEXP (note, 1);
            }
-         else if (note_type == NOTE_INSN_RANGE_START
+         else if (note_type == NOTE_INSN_RANGE_BEG
                    || note_type == NOTE_INSN_RANGE_END)
            {
              last = emit_note_before (note_type, last);
@@ -6655,25 +5798,33 @@ schedule_block (bb, rgn_n_insns)
      However, it was removed when it proved to be of marginal benefit
      and caused problems because schedule_block and compute_forward_dependences
      had different notions of what the "head" insn was.  */
-  get_block_head_tail (bb, &head, &tail);
-
-  /* Interblock scheduling could have moved the original head insn from this
-     block into a proceeding block.  This may also cause schedule_block and
-     compute_forward_dependences to have different notions of what the
-     "head" insn was.
-
-     If the interblock movement happened to make this block start with
-     some notes (LOOP, EH or SETJMP) before the first real insn, then
-     HEAD will have various special notes attached to it which must be
-     removed so that we don't end up with extra copies of the notes.  */
-  if (GET_RTX_CLASS (GET_CODE (head)) == 'i')
+  get_bb_head_tail (bb, &head, &tail);
+
+  /* rm_other_notes only removes notes which are _inside_ the
+     block---that is, it won't remove notes before the first real insn
+     or after the last real insn of the block.  So if the first insn
+     has a REG_SAVE_NOTE which would otherwise be emitted before the
+     insn, it is redundant with the note before the start of the
+     block, and so we have to take it out.
+
+     FIXME: Probably the same thing should be done with REG_SAVE_NOTEs
+     referencing NOTE_INSN_SETJMP at the end of the block.  */
+  if (INSN_P (head))
     {
       rtx note;
 
       for (note = REG_NOTES (head); note; note = XEXP (note, 1))
-       if (REG_NOTE_KIND (note) == REG_DEAD
-           && GET_CODE (XEXP (note, 0)) == CONST_INT)
-         remove_note (head, note);
+       if (REG_NOTE_KIND (note) == REG_SAVE_NOTE)
+         {
+           if (INTVAL (XEXP (note, 0)) != NOTE_INSN_SETJMP)
+             {
+               remove_note (head, note);
+               note = XEXP (note, 1);
+               remove_note (head, note);
+             }
+           else
+             note = XEXP (note, 1);
+         }
     }
 
   next_tail = NEXT_INSN (tail);
@@ -6681,8 +5832,7 @@ schedule_block (bb, rgn_n_insns)
 
   /* If the only insn left is a NOTE or a CODE_LABEL, then there is no need
      to schedule this block.  */
-  if (head == tail
-      && (GET_RTX_CLASS (GET_CODE (head)) != 'i'))
+  if (head == tail && (! INSN_P (head)))
     return (sched_n_insns);
 
   /* Debug info.  */
@@ -6711,8 +5861,8 @@ schedule_block (bb, rgn_n_insns)
   /* Prepare current target block info.  */
   if (current_nr_blocks > 1)
     {
-      candidate_table = (candidate *) alloca (current_nr_blocks 
-                                             * sizeof (candidate));
+      candidate_table = (candidate *) xmalloc (current_nr_blocks 
+                                              * sizeof (candidate));
 
       bblst_last = 0;
       /* ??? It is not clear why bblst_size is computed this way.  The original
@@ -6721,11 +5871,11 @@ schedule_block (bb, rgn_n_insns)
         members) seems to be a reasonable solution.  */
       /* ??? Or perhaps there is a bug somewhere else in this file?  */
       bblst_size = (current_nr_blocks - bb) * rgn_nr_edges * 2;
-      bblst_table = (int *) alloca (bblst_size * sizeof (int));
+      bblst_table = (int *) xmalloc (bblst_size * sizeof (int));
 
       bitlst_table_last = 0;
       bitlst_table_size = rgn_nr_edges;
-      bitlst_table = (int *) alloca (rgn_nr_edges * sizeof (int));
+      bitlst_table = (int *) xmalloc (rgn_nr_edges * sizeof (int));
 
       compute_trg_info (bb);
     }
@@ -6733,7 +5883,7 @@ schedule_block (bb, rgn_n_insns)
   clear_units ();
 
   /* Allocate the ready list.  */
-  ready = (rtx *) alloca ((rgn_n_insns + 1) * sizeof (rtx));
+  ready = (rtx *) xmalloc ((rgn_n_insns + 1) * sizeof (rtx));
 
   /* Print debugging information.  */
   if (sched_verbose >= 5)
@@ -6747,12 +5897,12 @@ schedule_block (bb, rgn_n_insns)
     {
       rtx next;
 
-      if (GET_RTX_CLASS (GET_CODE (insn)) != 'i')
+      if (! INSN_P (insn))
        continue;
       next = NEXT_INSN (insn);
 
       if (INSN_DEP_COUNT (insn) == 0
-         && (SCHED_GROUP_P (next) == 0 || GET_RTX_CLASS (GET_CODE (next)) != 'i'))
+         && (SCHED_GROUP_P (next) == 0 || ! INSN_P (next)))
        ready[n_ready++] = insn;
       if (!(SCHED_GROUP_P (insn)))
        target_n_insns++;
@@ -6768,17 +5918,16 @@ schedule_block (bb, rgn_n_insns)
        rtx src_next_tail;
        rtx tail, head;
 
-       get_block_head_tail (bb_src, &head, &tail);
+       get_bb_head_tail (bb_src, &head, &tail);
        src_next_tail = NEXT_INSN (tail);
        src_head = head;
 
-       if (head == tail
-           && (GET_RTX_CLASS (GET_CODE (head)) != 'i'))
+       if (head == tail && (! INSN_P (head)))
          continue;
 
        for (insn = src_head; insn != src_next_tail; insn = NEXT_INSN (insn))
          {
-           if (GET_RTX_CLASS (GET_CODE (insn)) != 'i')
+           if (! INSN_P (insn))
              continue;
 
            if (!CANT_MOVE (insn)
@@ -6786,7 +5935,6 @@ schedule_block (bb, rgn_n_insns)
                    || (insn_issue_delay (insn) <= 3
                        && check_live (insn, bb_src)
                        && is_exception_free (insn, bb_src, target_bb))))
-
              {
                rtx next;
 
@@ -6795,8 +5943,9 @@ schedule_block (bb, rgn_n_insns)
                   speculative insn, NEXT might otherwise be a note.  */
                next = next_nonnote_insn (insn);
                if (INSN_DEP_COUNT (insn) == 0
-                   && (SCHED_GROUP_P (next) == 0
-                       || GET_RTX_CLASS (GET_CODE (next)) != 'i'))
+                   && (! next
+                       || SCHED_GROUP_P (next) == 0
+                       || ! INSN_P (next)))
                  ready[n_ready++] = insn;
              }
          }
@@ -6830,8 +5979,6 @@ schedule_block (bb, rgn_n_insns)
   /* Loop until all the insns in BB are scheduled.  */
   while (sched_target_n_insns < target_n_insns)
     {
-      int b1;
-
       clock_var++;
 
       /* Add to the ready list all pending insns that can be issued now.
@@ -6884,6 +6031,7 @@ schedule_block (bb, rgn_n_insns)
          if (INSN_BB (insn) != target_bb)
            {
              rtx temp;
+             basic_block b1;
 
              if (IS_SPECULATIVE_INSN (insn))
                {
@@ -6899,35 +6047,39 @@ schedule_block (bb, rgn_n_insns)
                }
              nr_inter++;
 
+             /* Find the beginning of the scheduling group.  */
+             /* ??? Ought to update basic block here, but later bits of 
+                schedule_block assumes the original insn block is 
+                still intact.  */
+
              temp = insn;
              while (SCHED_GROUP_P (temp))
                temp = PREV_INSN (temp);
 
              /* Update source block boundaries.   */
-             b1 = INSN_BLOCK (temp);
-             if (temp == BLOCK_HEAD (b1)
-                 && insn == BLOCK_END (b1))
+             b1 = BLOCK_FOR_INSN (temp);
+             if (temp == b1->head && insn == b1->end)
                {
                  /* We moved all the insns in the basic block.
                     Emit a note after the last insn and update the
                     begin/end boundaries to point to the note.  */
-                 emit_note_after (NOTE_INSN_DELETED, insn);
-                 BLOCK_END (b1) = NEXT_INSN (insn);
-                 BLOCK_HEAD (b1) = NEXT_INSN (insn);
+                 rtx note = emit_note_after (NOTE_INSN_DELETED, insn);
+                 b1->head = note;
+                 b1->end = note;
                }
-             else if (insn == BLOCK_END (b1))
+             else if (insn == b1->end)
                {
                  /* We took insns from the end of the basic block,
                     so update the end of block boundary so that it
                     points to the first insn we did not move.  */
-                 BLOCK_END (b1) = PREV_INSN (temp);
+                 b1->end = PREV_INSN (temp);
                }
-             else if (temp == BLOCK_HEAD (b1))
+             else if (temp == b1->head)
                {
                  /* We took insns from the start of the basic block,
                     so update the start of block boundary so that
                     it points to the first insn we did not move.  */
-                 BLOCK_HEAD (b1) = NEXT_INSN (insn);
+                 b1->head = NEXT_INSN (insn);
                }
            }
          else
@@ -7012,6 +6164,15 @@ schedule_block (bb, rgn_n_insns)
               INSN_UID (BLOCK_END (b)));
     }
 
+  /* Clean up.  */
+  if (current_nr_blocks > 1)
+    {
+      free (candidate_table);
+      free (bblst_table);
+      free (bitlst_table);
+    }
+  free (ready);
+
   return (sched_n_insns);
 }                              /* schedule_block () */
 \f
@@ -7044,11 +6205,11 @@ compute_block_forward_dependences (bb)
   rtx next_tail;
   enum reg_note dep_type;
 
-  get_block_head_tail (bb, &head, &tail);
+  get_bb_head_tail (bb, &head, &tail);
   next_tail = NEXT_INSN (tail);
   for (insn = head; insn != next_tail; insn = NEXT_INSN (insn))
     {
-      if (GET_RTX_CLASS (GET_CODE (insn)) != 'i')
+      if (! INSN_P (insn))
        continue;
 
       insn = group_leader (insn);
@@ -7061,11 +6222,18 @@ compute_block_forward_dependences (bb)
          if (x != XEXP (link, 0))
            continue;
 
-         /* Ignore dependences upon deleted insn.  */
-         if (GET_CODE (x) == NOTE || INSN_DELETED_P (x))
-           continue;
-         if (find_insn_list (insn, INSN_DEPEND (x)))
-           continue;
+#ifdef ENABLE_CHECKING
+         /* If add_dependence is working properly there should never
+            be notes, deleted insns or duplicates in the backward
+            links.  Thus we need not check for them here.
+
+            However, if we have enabled checking we might as well go
+            ahead and verify that add_dependence worked properly.  */
+         if (GET_CODE (x) == NOTE
+             || INSN_DELETED_P (x)
+             || find_insn_list (insn, INSN_DEPEND (x)))
+           abort ();
+#endif
 
          new_link = alloc_INSN_LIST (insn, INSN_DEPEND (x));
 
@@ -7081,30 +6249,28 @@ compute_block_forward_dependences (bb)
 /* Initialize variables for region data dependence analysis.
    n_bbs is the number of region blocks.  */
 
-__inline static void
-init_rgn_data_dependences (n_bbs)
-     int n_bbs;
+static void
+init_deps (deps)
+     struct deps *deps;
 {
-  int bb;
-
-  /* Variables for which one copy exists for each block.  */
-  bzero ((char *) bb_pending_read_insns, n_bbs * sizeof (rtx));
-  bzero ((char *) bb_pending_read_mems, n_bbs * sizeof (rtx));
-  bzero ((char *) bb_pending_write_insns, n_bbs * sizeof (rtx));
-  bzero ((char *) bb_pending_write_mems, n_bbs * sizeof (rtx));
-  bzero ((char *) bb_pending_lists_length, n_bbs * sizeof (rtx));
-  bzero ((char *) bb_last_pending_memory_flush, n_bbs * sizeof (rtx));
-  bzero ((char *) bb_last_function_call, n_bbs * sizeof (rtx));
-  bzero ((char *) bb_sched_before_next_call, n_bbs * sizeof (rtx));
-
-  /* Create an insn here so that we can hang dependencies off of it later.  */
-  for (bb = 0; bb < n_bbs; bb++)
-    {
-      bb_sched_before_next_call[bb] =
-       gen_rtx_INSN (VOIDmode, 0, NULL_RTX, NULL_RTX,
-                     NULL_RTX, 0, NULL_RTX, NULL_RTX);
-      LOG_LINKS (bb_sched_before_next_call[bb]) = 0;
-    }
+  int maxreg = max_reg_num ();
+  deps->reg_last_uses = (rtx *) xcalloc (maxreg, sizeof (rtx));
+  deps->reg_last_sets = (rtx *) xcalloc (maxreg, sizeof (rtx));
+  deps->reg_last_clobbers = (rtx *) xcalloc (maxreg, sizeof (rtx));
+
+  deps->pending_read_insns = 0;
+  deps->pending_read_mems = 0;
+  deps->pending_write_insns = 0;
+  deps->pending_write_mems = 0;
+  deps->pending_lists_length = 0;
+  deps->last_pending_memory_flush = 0;
+  deps->last_function_call = 0;
+  deps->in_post_call_group_p = 0;
+
+  deps->sched_before_next_call
+    = gen_rtx_INSN (VOIDmode, 0, NULL_RTX, NULL_RTX,
+                   NULL_RTX, 0, NULL_RTX, NULL_RTX);
+  LOG_LINKS (deps->sched_before_next_call) = 0;
 }
 
 /* Add dependences so that branches are scheduled to run last in their
@@ -7114,13 +6280,12 @@ static void
 add_branch_dependences (head, tail)
      rtx head, tail;
 {
-
   rtx insn, last;
 
-  /* For all branches, calls, uses, and cc0 setters, force them to remain
-     in order at the end of the block by adding dependencies and giving
-     the last a high priority.  There may be notes present, and prev_head
-     may also be a note.
+  /* For all branches, calls, uses, clobbers, and cc0 setters, force them
+     to remain in order at the end of the block by adding dependencies and
+     giving the last a high priority.  There may be notes present, and
+     prev_head may also be a note.
 
      Branches must obviously remain at the end.  Calls should remain at the
      end since moving them results in worse register allocation.  Uses remain
@@ -7128,9 +6293,11 @@ add_branch_dependences (head, tail)
      at the end because they can't be moved away from their cc0 user.  */
   insn = tail;
   last = 0;
-  while (GET_CODE (insn) == CALL_INSN || GET_CODE (insn) == JUMP_INSN
+  while (GET_CODE (insn) == CALL_INSN
+        || GET_CODE (insn) == JUMP_INSN
         || (GET_CODE (insn) == INSN
             && (GET_CODE (PATTERN (insn)) == USE
+                || GET_CODE (PATTERN (insn)) == CLOBBER
 #ifdef HAVE_cc0
                 || sets_cc0_p (PATTERN (insn))
 #endif
@@ -7188,6 +6355,154 @@ add_branch_dependences (head, tail)
       }
 }
 
+/* After computing the dependencies for block BB, propagate the dependencies
+   found in TMP_DEPS to the successors of the block.  MAX_REG is the number
+   of registers.  */
+static void
+propagate_deps (bb, tmp_deps, max_reg)
+     int bb;
+     struct deps *tmp_deps;
+     int max_reg;
+{
+  int b = BB_TO_BLOCK (bb);
+  int e, first_edge;
+  int reg;
+  rtx link_insn, link_mem;
+  rtx u;
+
+  /* These lists should point to the right place, for correct
+     freeing later.  */
+  bb_deps[bb].pending_read_insns = tmp_deps->pending_read_insns;
+  bb_deps[bb].pending_read_mems = tmp_deps->pending_read_mems;
+  bb_deps[bb].pending_write_insns = tmp_deps->pending_write_insns;
+  bb_deps[bb].pending_write_mems = tmp_deps->pending_write_mems;
+
+  /* bb's structures are inherited by its successors.  */
+  first_edge = e = OUT_EDGES (b);
+  if (e <= 0)
+    return;
+
+  do
+    {
+      rtx x;
+      int b_succ = TO_BLOCK (e);
+      int bb_succ = BLOCK_TO_BB (b_succ);
+      struct deps *succ_deps = bb_deps + bb_succ;
+
+      /* Only bbs "below" bb, in the same region, are interesting.  */
+      if (CONTAINING_RGN (b) != CONTAINING_RGN (b_succ)
+         || bb_succ <= bb)
+       {
+         e = NEXT_OUT (e);
+         continue;
+       }
+
+      for (reg = 0; reg < max_reg; reg++)
+       {
+         /* reg-last-uses lists are inherited by bb_succ.  */
+         for (u = tmp_deps->reg_last_uses[reg]; u; u = XEXP (u, 1))
+           {
+             if (find_insn_list (XEXP (u, 0),
+                                 succ_deps->reg_last_uses[reg]))
+               continue;
+
+             succ_deps->reg_last_uses[reg]
+               = alloc_INSN_LIST (XEXP (u, 0),
+                                  succ_deps->reg_last_uses[reg]);
+           }
+
+         /* reg-last-defs lists are inherited by bb_succ.  */
+         for (u = tmp_deps->reg_last_sets[reg]; u; u = XEXP (u, 1))
+           {
+             if (find_insn_list (XEXP (u, 0),
+                                 succ_deps->reg_last_sets[reg]))
+               continue;
+
+             succ_deps->reg_last_sets[reg]
+               = alloc_INSN_LIST (XEXP (u, 0),
+                                  succ_deps->reg_last_sets[reg]);
+           }
+
+         for (u = tmp_deps->reg_last_clobbers[reg]; u; u = XEXP (u, 1))
+           {
+             if (find_insn_list (XEXP (u, 0),
+                                 succ_deps->reg_last_clobbers[reg]))
+               continue;
+
+             succ_deps->reg_last_clobbers[reg]
+               = alloc_INSN_LIST (XEXP (u, 0),
+                                  succ_deps->reg_last_clobbers[reg]);
+           }
+       }
+
+      /* Mem read/write lists are inherited by bb_succ.  */
+      link_insn = tmp_deps->pending_read_insns;
+      link_mem = tmp_deps->pending_read_mems;
+      while (link_insn)
+       {
+         if (!(find_insn_mem_list (XEXP (link_insn, 0),
+                                   XEXP (link_mem, 0),
+                                   succ_deps->pending_read_insns,
+                                   succ_deps->pending_read_mems)))
+           add_insn_mem_dependence (succ_deps, &succ_deps->pending_read_insns,
+                                    &succ_deps->pending_read_mems,
+                                    XEXP (link_insn, 0), XEXP (link_mem, 0));
+         link_insn = XEXP (link_insn, 1);
+         link_mem = XEXP (link_mem, 1);
+       }
+
+      link_insn = tmp_deps->pending_write_insns;
+      link_mem = tmp_deps->pending_write_mems;
+      while (link_insn)
+       {
+         if (!(find_insn_mem_list (XEXP (link_insn, 0),
+                                   XEXP (link_mem, 0),
+                                   succ_deps->pending_write_insns,
+                                   succ_deps->pending_write_mems)))
+           add_insn_mem_dependence (succ_deps,
+                                    &succ_deps->pending_write_insns,
+                                    &succ_deps->pending_write_mems,
+                                    XEXP (link_insn, 0), XEXP (link_mem, 0));
+
+         link_insn = XEXP (link_insn, 1);
+         link_mem = XEXP (link_mem, 1);
+       }
+
+      /* last_function_call is inherited by bb_succ.  */
+      for (u = tmp_deps->last_function_call; u; u = XEXP (u, 1))
+       {
+         if (find_insn_list (XEXP (u, 0),
+                             succ_deps->last_function_call))
+           continue;
+
+         succ_deps->last_function_call
+           = alloc_INSN_LIST (XEXP (u, 0),
+                              succ_deps->last_function_call);
+       }
+
+      /* last_pending_memory_flush is inherited by bb_succ.  */
+      for (u = tmp_deps->last_pending_memory_flush; u; u = XEXP (u, 1))
+       {
+         if (find_insn_list (XEXP (u, 0), 
+                             succ_deps->last_pending_memory_flush))
+           continue;
+
+         succ_deps->last_pending_memory_flush
+           = alloc_INSN_LIST (XEXP (u, 0),
+                              succ_deps->last_pending_memory_flush);
+       }
+
+      /* sched_before_next_call is inherited by bb_succ.  */
+      x = LOG_LINKS (tmp_deps->sched_before_next_call);
+      for (; x; x = XEXP (x, 1))
+       add_dependence (succ_deps->sched_before_next_call,
+                       XEXP (x, 0), REG_DEP_ANTI);
+
+      e = NEXT_OUT (e);
+    }
+  while (e != first_edge);
+}
+
 /* Compute backward dependences inside bb.  In a multiple blocks region:
    (1) a bb is analyzed after its predecessors, and (2) the lists in
    effect at the end of bb (after analyzing for bb) are inherited by
@@ -7209,193 +6524,20 @@ static void
 compute_block_backward_dependences (bb)
      int bb;
 {
-  int b;
-  rtx x;
+  int i;
   rtx head, tail;
   int max_reg = max_reg_num ();
+  struct deps tmp_deps;
 
-  b = BB_TO_BLOCK (bb);
-
-  if (current_nr_blocks == 1)
-    {
-      reg_last_uses = (rtx *) alloca (max_reg * sizeof (rtx));
-      reg_last_sets = (rtx *) alloca (max_reg * sizeof (rtx));
-      reg_last_clobbers = (rtx *) alloca (max_reg * sizeof (rtx));
-
-      bzero ((char *) reg_last_uses, max_reg * sizeof (rtx));
-      bzero ((char *) reg_last_sets, max_reg * sizeof (rtx));
-      bzero ((char *) reg_last_clobbers, max_reg * sizeof (rtx));
-
-      pending_read_insns = 0;
-      pending_read_mems = 0;
-      pending_write_insns = 0;
-      pending_write_mems = 0;
-      pending_lists_length = 0;
-      last_function_call = 0;
-      last_pending_memory_flush = 0;
-      sched_before_next_call
-       = gen_rtx_INSN (VOIDmode, 0, NULL_RTX, NULL_RTX,
-                       NULL_RTX, 0, NULL_RTX, NULL_RTX);
-      LOG_LINKS (sched_before_next_call) = 0;
-    }
-  else
-    {
-      reg_last_uses = bb_reg_last_uses[bb];
-      reg_last_sets = bb_reg_last_sets[bb];
-      reg_last_clobbers = bb_reg_last_clobbers[bb];
-
-      pending_read_insns = bb_pending_read_insns[bb];
-      pending_read_mems = bb_pending_read_mems[bb];
-      pending_write_insns = bb_pending_write_insns[bb];
-      pending_write_mems = bb_pending_write_mems[bb];
-      pending_lists_length = bb_pending_lists_length[bb];
-      last_function_call = bb_last_function_call[bb];
-      last_pending_memory_flush = bb_last_pending_memory_flush[bb];
-
-      sched_before_next_call = bb_sched_before_next_call[bb];
-    }
+  tmp_deps = bb_deps[bb];
 
   /* Do the analysis for this block.  */
-  get_block_head_tail (bb, &head, &tail);
-  sched_analyze (head, tail);
+  get_bb_head_tail (bb, &head, &tail);
+  sched_analyze (&tmp_deps, head, tail);
   add_branch_dependences (head, tail);
 
   if (current_nr_blocks > 1)
-    {
-      int e, first_edge;
-      int b_succ, bb_succ;
-      int reg;
-      rtx link_insn, link_mem;
-      rtx u;
-
-      /* These lists should point to the right place, for correct
-         freeing later.  */
-      bb_pending_read_insns[bb] = pending_read_insns;
-      bb_pending_read_mems[bb] = pending_read_mems;
-      bb_pending_write_insns[bb] = pending_write_insns;
-      bb_pending_write_mems[bb] = pending_write_mems;
-
-      /* bb's structures are inherited by it's successors.  */
-      first_edge = e = OUT_EDGES (b);
-      if (e > 0)
-       do
-         {
-           b_succ = TO_BLOCK (e);
-           bb_succ = BLOCK_TO_BB (b_succ);
-
-           /* Only bbs "below" bb, in the same region, are interesting.  */
-           if (CONTAINING_RGN (b) != CONTAINING_RGN (b_succ)
-               || bb_succ <= bb)
-             {
-               e = NEXT_OUT (e);
-               continue;
-             }
-
-           for (reg = 0; reg < max_reg; reg++)
-             {
-
-               /* reg-last-uses lists are inherited by bb_succ.  */
-               for (u = reg_last_uses[reg]; u; u = XEXP (u, 1))
-                 {
-                   if (find_insn_list (XEXP (u, 0),
-                                       (bb_reg_last_uses[bb_succ])[reg]))
-                     continue;
-
-                   (bb_reg_last_uses[bb_succ])[reg]
-                     = alloc_INSN_LIST (XEXP (u, 0),
-                                        (bb_reg_last_uses[bb_succ])[reg]);
-                 }
-
-               /* reg-last-defs lists are inherited by bb_succ.  */
-               for (u = reg_last_sets[reg]; u; u = XEXP (u, 1))
-                 {
-                   if (find_insn_list (XEXP (u, 0),
-                                       (bb_reg_last_sets[bb_succ])[reg]))
-                     continue;
-
-                   (bb_reg_last_sets[bb_succ])[reg]
-                     = alloc_INSN_LIST (XEXP (u, 0),
-                                        (bb_reg_last_sets[bb_succ])[reg]);
-                 }
-
-               for (u = reg_last_clobbers[reg]; u; u = XEXP (u, 1))
-                 {
-                   if (find_insn_list (XEXP (u, 0),
-                                       (bb_reg_last_clobbers[bb_succ])[reg]))
-                     continue;
-
-                   (bb_reg_last_clobbers[bb_succ])[reg]
-                     = alloc_INSN_LIST (XEXP (u, 0),
-                                        (bb_reg_last_clobbers[bb_succ])[reg]);
-                 }
-             }
-
-           /* Mem read/write lists are inherited by bb_succ.  */
-           link_insn = pending_read_insns;
-           link_mem = pending_read_mems;
-           while (link_insn)
-             {
-               if (!(find_insn_mem_list (XEXP (link_insn, 0),
-                                         XEXP (link_mem, 0),
-                                         bb_pending_read_insns[bb_succ],
-                                         bb_pending_read_mems[bb_succ])))
-                 add_insn_mem_dependence (&bb_pending_read_insns[bb_succ],
-                                          &bb_pending_read_mems[bb_succ],
-                                  XEXP (link_insn, 0), XEXP (link_mem, 0));
-               link_insn = XEXP (link_insn, 1);
-               link_mem = XEXP (link_mem, 1);
-             }
-
-           link_insn = pending_write_insns;
-           link_mem = pending_write_mems;
-           while (link_insn)
-             {
-               if (!(find_insn_mem_list (XEXP (link_insn, 0),
-                                         XEXP (link_mem, 0),
-                                         bb_pending_write_insns[bb_succ],
-                                         bb_pending_write_mems[bb_succ])))
-                 add_insn_mem_dependence (&bb_pending_write_insns[bb_succ],
-                                          &bb_pending_write_mems[bb_succ],
-                                  XEXP (link_insn, 0), XEXP (link_mem, 0));
-
-               link_insn = XEXP (link_insn, 1);
-               link_mem = XEXP (link_mem, 1);
-             }
-
-           /* last_function_call is inherited by bb_succ.  */
-           for (u = last_function_call; u; u = XEXP (u, 1))
-             {
-               if (find_insn_list (XEXP (u, 0),
-                                   bb_last_function_call[bb_succ]))
-                 continue;
-
-               bb_last_function_call[bb_succ]
-                 = alloc_INSN_LIST (XEXP (u, 0),
-                                    bb_last_function_call[bb_succ]);
-             }
-
-           /* last_pending_memory_flush is inherited by bb_succ.  */
-           for (u = last_pending_memory_flush; u; u = XEXP (u, 1))
-             {
-               if (find_insn_list (XEXP (u, 0), 
-                                   bb_last_pending_memory_flush[bb_succ]))
-                 continue;
-
-               bb_last_pending_memory_flush[bb_succ]
-                 = alloc_INSN_LIST (XEXP (u, 0),
-                                    bb_last_pending_memory_flush[bb_succ]);
-             }
-
-           /* sched_before_next_call is inherited by bb_succ.  */
-           x = LOG_LINKS (sched_before_next_call);
-           for (; x; x = XEXP (x, 1))
-             add_dependence (bb_sched_before_next_call[bb_succ],
-                             XEXP (x, 0), REG_DEP_ANTI);
-
-           e = NEXT_OUT (e);
-         }
-       while (e != first_edge);
-    }
+    propagate_deps (bb, &tmp_deps, max_reg);
 
   /* Free up the INSN_LISTs.
 
@@ -7404,23 +6546,23 @@ compute_block_backward_dependences (bb)
      The list was empty for the vast majority of those calls.  On the PA, not 
      calling free_INSN_LIST_list in those cases improves -O2 compile times by
      3-5% on average.  */
-  for (b = 0; b < max_reg; ++b)
+  for (i = 0; i < max_reg; ++i)
     {
-      if (reg_last_clobbers[b])
-       free_INSN_LIST_list (&reg_last_clobbers[b]);
-      if (reg_last_sets[b])
-       free_INSN_LIST_list (&reg_last_sets[b]);
-      if (reg_last_uses[b])
-       free_INSN_LIST_list (&reg_last_uses[b]);
+      if (tmp_deps.reg_last_clobbers[i])
+       free_INSN_LIST_list (&tmp_deps.reg_last_clobbers[i]);
+      if (tmp_deps.reg_last_sets[i])
+       free_INSN_LIST_list (&tmp_deps.reg_last_sets[i]);
+      if (tmp_deps.reg_last_uses[i])
+       free_INSN_LIST_list (&tmp_deps.reg_last_uses[i]);
     }
 
   /* Assert that we won't need bb_reg_last_* for this block anymore.  */
-  if (current_nr_blocks > 1)
-    {
-      bb_reg_last_uses[bb] = (rtx *) NULL_RTX;
-      bb_reg_last_sets[bb] = (rtx *) NULL_RTX;
-      bb_reg_last_clobbers[bb] = (rtx *) NULL_RTX;
-    }
+  free (bb_deps[bb].reg_last_uses);
+  free (bb_deps[bb].reg_last_sets);
+  free (bb_deps[bb].reg_last_clobbers);
+  bb_deps[bb].reg_last_uses = 0;
+  bb_deps[bb].reg_last_sets = 0;
+  bb_deps[bb].reg_last_clobbers = 0;
 }
 
 /* Print dependences for debugging, callable from debugger.  */
@@ -7439,7 +6581,7 @@ debug_dependencies ()
          rtx next_tail;
          rtx insn;
 
-         get_block_head_tail (bb, &head, &tail);
+         get_bb_head_tail (bb, &head, &tail);
          next_tail = NEXT_INSN (tail);
          fprintf (dump, "\n;;   --- Region Dependences --- b %d bb %d \n",
                   BB_TO_BLOCK (bb), bb);
@@ -7453,7 +6595,7 @@ debug_dependencies ()
              rtx link;
              int unit, range;
 
-             if (GET_RTX_CLASS (GET_CODE (insn)) != 'i')
+             if (! INSN_P (insn))
                {
                  int n;
                  fprintf (dump, ";;   %6d ", INSN_UID (insn));
@@ -7510,11 +6652,10 @@ set_priorities (bb)
   rtx prev_head;
   rtx head;
 
-  get_block_head_tail (bb, &head, &tail);
+  get_bb_head_tail (bb, &head, &tail);
   prev_head = PREV_INSN (head);
 
-  if (head == tail
-      && (GET_RTX_CLASS (GET_CODE (head)) != 'i'))
+  if (head == tail && (! INSN_P (head)))
     return 0;
 
   n_insn = 0;
@@ -7532,29 +6673,6 @@ set_priorities (bb)
   return n_insn;
 }
 
-/* Make each element of VECTOR point at an rtx-vector,
-   taking the space for all those rtx-vectors from SPACE.
-   SPACE is of type (rtx *), but it is really as long as NELTS rtx-vectors.
-   BYTES_PER_ELT is the number of bytes in one rtx-vector.
-   (this is the same as init_regset_vector () in flow.c)  */
-
-static void
-init_rtx_vector (vector, space, nelts, bytes_per_elt)
-     rtx **vector;
-     rtx *space;
-     int nelts;
-     int bytes_per_elt;
-{
-  register int i;
-  register rtx *p = space;
-
-  for (i = 0; i < nelts; i++)
-    {
-      vector[i] = p;
-      p += bytes_per_elt / sizeof (*p);
-    }
-}
-
 /* Schedule a region.  A region is either an inner loop, a loop-free
    subroutine, or a single basic block.  Each bb in the region is
    scheduled after its flow predecessors.  */
@@ -7566,55 +6684,21 @@ schedule_region (rgn)
   int bb;
   int rgn_n_insns = 0;
   int sched_rgn_n_insns = 0;
+  regset_head reg_pending_sets_head;
+  regset_head reg_pending_clobbers_head;
 
   /* Set variables for the current region.  */
   current_nr_blocks = RGN_NR_BLOCKS (rgn);
   current_blocks = RGN_BLOCKS (rgn);
 
-  reg_pending_sets = ALLOCA_REG_SET ();
-  reg_pending_clobbers = ALLOCA_REG_SET ();
+  reg_pending_sets = INITIALIZE_REG_SET (reg_pending_sets_head);
+  reg_pending_clobbers = INITIALIZE_REG_SET (reg_pending_clobbers_head);
   reg_pending_sets_all = 0;
 
   /* Initializations for region data dependence analyisis.  */
-  if (current_nr_blocks > 1)
-    {
-      rtx *space;
-      int maxreg = max_reg_num ();
-
-      bb_reg_last_uses = (rtx **) alloca (current_nr_blocks * sizeof (rtx *));
-      space = (rtx *) alloca (current_nr_blocks * maxreg * sizeof (rtx));
-      bzero ((char *) space, current_nr_blocks * maxreg * sizeof (rtx));
-      init_rtx_vector (bb_reg_last_uses, space, current_nr_blocks,
-                      maxreg * sizeof (rtx *));
-
-      bb_reg_last_sets = (rtx **) alloca (current_nr_blocks * sizeof (rtx *));
-      space = (rtx *) alloca (current_nr_blocks * maxreg * sizeof (rtx));
-      bzero ((char *) space, current_nr_blocks * maxreg * sizeof (rtx));
-      init_rtx_vector (bb_reg_last_sets, space, current_nr_blocks,
-                      maxreg * sizeof (rtx *));
-
-      bb_reg_last_clobbers =
-       (rtx **) alloca (current_nr_blocks * sizeof (rtx *));
-      space = (rtx *) alloca (current_nr_blocks * maxreg * sizeof (rtx));
-      bzero ((char *) space, current_nr_blocks * maxreg * sizeof (rtx));
-      init_rtx_vector (bb_reg_last_clobbers, space, current_nr_blocks,
-                      maxreg * sizeof (rtx *));
-
-      bb_pending_read_insns = (rtx *) alloca (current_nr_blocks * sizeof (rtx));
-      bb_pending_read_mems = (rtx *) alloca (current_nr_blocks * sizeof (rtx));
-      bb_pending_write_insns =
-       (rtx *) alloca (current_nr_blocks * sizeof (rtx));
-      bb_pending_write_mems = (rtx *) alloca (current_nr_blocks * sizeof (rtx));
-      bb_pending_lists_length =
-       (int *) alloca (current_nr_blocks * sizeof (int));
-      bb_last_pending_memory_flush =
-       (rtx *) alloca (current_nr_blocks * sizeof (rtx));
-      bb_last_function_call = (rtx *) alloca (current_nr_blocks * sizeof (rtx));
-      bb_sched_before_next_call =
-       (rtx *) alloca (current_nr_blocks * sizeof (rtx));
-
-      init_rgn_data_dependences (current_nr_blocks);
-    }
+  bb_deps = (struct deps *) xmalloc (sizeof (struct deps) * current_nr_blocks);
+  for (bb = 0; bb < current_nr_blocks; bb++)
+    init_deps (bb_deps + bb);
 
   /* Compute LOG_LINKS.  */
   for (bb = 0; bb < current_nr_blocks; bb++)
@@ -7624,13 +6708,9 @@ schedule_region (rgn)
   for (bb = current_nr_blocks - 1; bb >= 0; bb--)
     compute_block_forward_dependences (bb);
 
-  /* Delete line notes, compute live-regs at block end, and set priorities.  */
-  dead_notes = 0;
+  /* Delete line notes and set priorities.  */
   for (bb = 0; bb < current_nr_blocks; bb++)
     {
-      if (reload_completed == 0)
-       find_pre_sched_live (bb);
-
       if (write_symbols != NO_DEBUG)
        {
          save_line_notes (bb);
@@ -7645,23 +6725,20 @@ schedule_region (rgn)
     {
       int i;
 
-      prob = (float *) alloca ((current_nr_blocks) * sizeof (float));
+      prob = (float *) xmalloc ((current_nr_blocks) * sizeof (float));
 
       bbset_size = current_nr_blocks / HOST_BITS_PER_WIDE_INT + 1;
-      dom = (bbset *) alloca (current_nr_blocks * sizeof (bbset));
+      dom = (bbset *) xmalloc (current_nr_blocks * sizeof (bbset));
       for (i = 0; i < current_nr_blocks; i++)
-       {
-         dom[i] = (bbset) alloca (bbset_size * sizeof (HOST_WIDE_INT));
-         bzero ((char *) dom[i], bbset_size * sizeof (HOST_WIDE_INT));
-       }
+       dom[i] = (bbset) xcalloc (bbset_size, sizeof (HOST_WIDE_INT));
 
       /* Edge to bit.  */
       rgn_nr_edges = 0;
-      edge_to_bit = (int *) alloca (nr_edges * sizeof (int));
+      edge_to_bit = (int *) xmalloc (nr_edges * sizeof (int));
       for (i = 1; i < nr_edges; i++)
        if (CONTAINING_RGN (FROM_BLOCK (i)) == rgn)
          EDGE_TO_BIT (i) = rgn_nr_edges++;
-      rgn_edges = (int *) alloca (rgn_nr_edges * sizeof (int));
+      rgn_edges = (int *) xmalloc (rgn_nr_edges * sizeof (int));
 
       rgn_nr_edges = 0;
       for (i = 1; i < nr_edges; i++)
@@ -7670,19 +6747,16 @@ schedule_region (rgn)
 
       /* Split edges.  */
       edgeset_size = rgn_nr_edges / HOST_BITS_PER_WIDE_INT + 1;
-      pot_split = (edgeset *) alloca (current_nr_blocks * sizeof (edgeset));
-      ancestor_edges = (edgeset *) alloca (current_nr_blocks 
-                                          * sizeof (edgeset));
+      edgeset_bitsize = rgn_nr_edges;
+      pot_split = (edgeset *) xmalloc (current_nr_blocks * sizeof (edgeset));
+      ancestor_edges 
+       = (edgeset *) xmalloc (current_nr_blocks * sizeof (edgeset));
       for (i = 0; i < current_nr_blocks; i++)
        {
          pot_split[i] =
-           (edgeset) alloca (edgeset_size * sizeof (HOST_WIDE_INT));
-         bzero ((char *) pot_split[i],
-                edgeset_size * sizeof (HOST_WIDE_INT));
+           (edgeset) xcalloc (edgeset_size, sizeof (HOST_WIDE_INT));
          ancestor_edges[i] =
-           (edgeset) alloca (edgeset_size * sizeof (HOST_WIDE_INT));
-         bzero ((char *) ancestor_edges[i],
-                edgeset_size * sizeof (HOST_WIDE_INT));
+           (edgeset) xcalloc (edgeset_size, sizeof (HOST_WIDE_INT));
        }
 
       /* Compute probabilities, dominators, split_edges.  */
@@ -7692,34 +6766,12 @@ schedule_region (rgn)
 
   /* Now we can schedule all blocks.  */
   for (bb = 0; bb < current_nr_blocks; bb++)
-    {
-      sched_rgn_n_insns += schedule_block (bb, rgn_n_insns);
-
-#ifdef USE_C_ALLOCA
-      alloca (0);
-#endif
-    }
+    sched_rgn_n_insns += schedule_block (bb, rgn_n_insns);
 
   /* Sanity check: verify that all region insns were scheduled.  */
   if (sched_rgn_n_insns != rgn_n_insns)
     abort ();
 
-  /* Update register life and usage information.  */
-  if (reload_completed == 0)
-    {
-      for (bb = current_nr_blocks - 1; bb >= 0; bb--)
-       find_post_sched_live (bb);
-
-      if (current_nr_blocks <= 1)
-       /* Sanity check.  There should be no REG_DEAD notes leftover
-          at the end.  In practice, this can occur as the result of
-          bugs in flow, combine.c, and/or sched.c.  The values of the
-          REG_DEAD notes remaining are meaningless, because
-          dead_notes is just used as a free list.  */
-       if (dead_notes != 0)
-         abort ();
-    }
-
   /* Restore line notes.  */
   if (write_symbols != NO_DEBUG)
     {
@@ -7732,6 +6784,26 @@ schedule_region (rgn)
 
   FREE_REG_SET (reg_pending_sets);
   FREE_REG_SET (reg_pending_clobbers);
+
+  free (bb_deps);
+
+  if (current_nr_blocks > 1)
+    {
+      int i;
+
+      free (prob);
+      for (i = 0; i < current_nr_blocks; ++i)
+       {
+         free (dom[i]);
+         free (pot_split[i]);
+         free (ancestor_edges[i]);
+       }
+      free (dom);
+      free (edge_to_bit);
+      free (rgn_edges);
+      free (pot_split);
+      free (ancestor_edges);
+    }
 }
 
 /* The one entry point in this file.  DUMP_FILE is the dump file for
@@ -7741,13 +6813,14 @@ void
 schedule_insns (dump_file)
      FILE *dump_file;
 {
-
+  int *deaths_in_region;
+  sbitmap blocks, large_region_blocks;
   int max_uid;
   int b;
   rtx insn;
   int rgn;
-
   int luid;
+  int any_large_regions;
 
   /* Disable speculative loads in their presence if cc0 defined.  */
 #ifdef HAVE_cc0
@@ -7760,8 +6833,8 @@ schedule_insns (dump_file)
     return;
 
   /* Set dump and sched_verbose for the desired debugging output.  If no
-     dump-file was specified, but -fsched-verbose-N (any N), print to stderr.
-     For -fsched-verbose-N, N>=10, print everything to stderr.  */
+     dump-file was specified, but -fsched-verbose=N (any N), print to stderr.
+     For -fsched-verbose=N, N>=10, print everything to stderr.  */
   sched_verbose = sched_verbose_param;
   if (sched_verbose_param == 0 && dump_file)
     sched_verbose = 1;
@@ -7773,69 +6846,55 @@ schedule_insns (dump_file)
   /* Initialize issue_rate.  */
   issue_rate = ISSUE_RATE;
 
-  /* Do the splitting first for all blocks.  */
-  for (b = 0; b < n_basic_blocks; b++)
-    split_block_insns (b, 1);
-
-  max_uid = (get_max_uid () + 1);
+  split_all_insns (1);
 
-  cant_move = xcalloc (max_uid, sizeof (char));
-  fed_by_spec_load = xcalloc (max_uid, sizeof (char));
-  is_load_insn = xcalloc (max_uid, sizeof (char));
+  /* We use LUID 0 for the fake insn (UID 0) which holds dependencies for
+     pseudos which do not cross calls.  */
+  max_uid = get_max_uid () + 1;
 
-  insn_orig_block = (int *) xmalloc (max_uid * sizeof (int));
-  insn_luid = (int *) xmalloc (max_uid * sizeof (int));
+  h_i_d = (struct haifa_insn_data *) xcalloc (max_uid, sizeof (*h_i_d));
 
-  luid = 0;
+  h_i_d[0].luid = 0;
+  luid = 1;
   for (b = 0; b < n_basic_blocks; b++)
     for (insn = BLOCK_HEAD (b);; insn = NEXT_INSN (insn))
       {
-       INSN_BLOCK (insn) = b;
-       INSN_LUID (insn) = luid++;
+       INSN_LUID (insn) = luid;
+
+       /* Increment the next luid, unless this is a note.  We don't
+          really need separate IDs for notes and we don't want to
+          schedule differently depending on whether or not there are
+          line-number notes, i.e., depending on whether or not we're
+          generating debugging information.  */
+       if (GET_CODE (insn) != NOTE)
+         ++luid;
 
        if (insn == BLOCK_END (b))
          break;
       }
-
-  /* After reload, remove inter-blocks dependences computed before reload.  */
-  if (reload_completed)
+  
+  /* ?!? We could save some memory by computing a per-region luid mapping
+     which could reduce both the number of vectors in the cache and the size
+     of each vector.  Instead we just avoid the cache entirely unless the
+     average number of instructions in a basic block is very high.  See
+     the comment before the declaration of true_dependency_cache for
+     what we consider "very high".  */
+  if (luid / n_basic_blocks > 100 * 5)
     {
-      int b;
-      rtx insn;
-
-      for (b = 0; b < n_basic_blocks; b++)
-       for (insn = BLOCK_HEAD (b);; insn = NEXT_INSN (insn))
-         {
-           rtx link, prev;
-
-           if (GET_RTX_CLASS (GET_CODE (insn)) == 'i')
-             {
-               prev = NULL_RTX;
-               link = LOG_LINKS (insn);
-               while (link)
-                 {
-                   rtx x = XEXP (link, 0);
-
-                   if (INSN_BLOCK (x) != b)
-                     {
-                       remove_dependence (insn, x);
-                       link = prev ? XEXP (prev, 1) : LOG_LINKS (insn);
-                     }
-                   else
-                     prev = link, link = XEXP (prev, 1);
-                 }
-             }
-
-           if (insn == BLOCK_END (b))
-             break;
-         }
+      true_dependency_cache = sbitmap_vector_alloc (luid, luid);
+      sbitmap_vector_zero (true_dependency_cache, luid);
     }
 
   nr_regions = 0;
-  rgn_table = (region *) alloca ((n_basic_blocks) * sizeof (region));
-  rgn_bb_table = (int *) alloca ((n_basic_blocks) * sizeof (int));
-  block_to_bb = (int *) alloca ((n_basic_blocks) * sizeof (int));
-  containing_rgn = (int *) alloca ((n_basic_blocks) * sizeof (int));
+  rgn_table = (region *) xmalloc ((n_basic_blocks) * sizeof (region));
+  rgn_bb_table = (int *) xmalloc ((n_basic_blocks) * sizeof (int));
+  block_to_bb = (int *) xmalloc ((n_basic_blocks) * sizeof (int));
+  containing_rgn = (int *) xmalloc ((n_basic_blocks) * sizeof (int));
+
+  blocks = sbitmap_alloc (n_basic_blocks);
+  large_region_blocks = sbitmap_alloc (n_basic_blocks);
+
+  compute_bb_for_insn (max_uid);
 
   /* Compute regions for scheduling.  */
   if (reload_completed
@@ -7853,18 +6912,10 @@ schedule_insns (dump_file)
        }
       else
        {
-         int_list_ptr *s_preds, *s_succs;
-         int *num_preds, *num_succs;
-         sbitmap *dom, *pdom;
-
-         s_preds = (int_list_ptr *) alloca (n_basic_blocks
-                                            * sizeof (int_list_ptr));
-         s_succs = (int_list_ptr *) alloca (n_basic_blocks
-                                            * sizeof (int_list_ptr));
-         num_preds = (int *) alloca (n_basic_blocks * sizeof (int));
-         num_succs = (int *) alloca (n_basic_blocks * sizeof (int));
+         sbitmap *dom;
+         struct edge_list *edge_list;
+
          dom = sbitmap_vector_alloc (n_basic_blocks, n_basic_blocks);
-         pdom = sbitmap_vector_alloc (n_basic_blocks, n_basic_blocks);
 
          /* The scheduler runs after flow; therefore, we can't blindly call
             back into find_basic_blocks since doing so could invalidate the
@@ -7877,80 +6928,42 @@ schedule_insns (dump_file)
 
             We could (should?) recompute register live information.  Doing
             so may even be beneficial.  */
-
-         compute_preds_succs (s_preds, s_succs, num_preds, num_succs);
+         edge_list = create_edge_list ();
 
          /* Compute the dominators and post dominators.  We don't
             currently use post dominators, but we should for
             speculative motion analysis.  */
-         compute_dominators (dom, pdom, s_preds, s_succs);
+         compute_flow_dominators (dom, NULL);
 
          /* build_control_flow will return nonzero if it detects unreachable
             blocks or any other irregularity with the cfg which prevents
             cross block scheduling.  */
-         if (build_control_flow (s_preds, s_succs, num_preds, num_succs) != 0)
+         if (build_control_flow (edge_list) != 0)
            find_single_block_region ();
          else
-           find_rgns (s_preds, s_succs, num_preds, num_succs, dom);
+           find_rgns (edge_list, dom);
 
          if (sched_verbose >= 3)
            debug_regions ();
 
+         /* We are done with flow's edge list.  */
+         free_edge_list (edge_list);
+
          /* For now.  This will move as more and more of haifa is converted
             to using the cfg code in flow.c.  */
-         free_bb_mem ();
          free (dom);
-         free (pdom);
        }
     }
 
-  /* Allocate data for this pass.  See comments, above,
-     for what these vectors do.
-
-     We use xmalloc instead of alloca, because max_uid can be very large
-     when there is a lot of function inlining.  If we used alloca, we could
-     exceed stack limits on some hosts for some inputs.  */
-  insn_priority = (int *) xcalloc (max_uid, sizeof (int));
-  insn_reg_weight = (int *) xcalloc (max_uid, sizeof (int));
-  insn_tick = (int *) xcalloc (max_uid, sizeof (int));
-  insn_costs = (short *) xcalloc (max_uid, sizeof (short));
-  insn_units = (short *) xcalloc (max_uid, sizeof (short));
-  insn_blockage = (unsigned int *) xcalloc (max_uid, sizeof (unsigned int));
-  insn_ref_count = (int *) xcalloc (max_uid, sizeof (int));
-
-  /* Allocate for forward dependencies.  */
-  insn_dep_count = (int *) xcalloc (max_uid, sizeof (int));
-  insn_depend = (rtx *) xcalloc (max_uid, sizeof (rtx));
-
-  if (reload_completed == 0)
-    {
-      int i;
-
-      sched_reg_n_calls_crossed = (int *) alloca (max_regno * sizeof (int));
-      sched_reg_live_length = (int *) alloca (max_regno * sizeof (int));
-      sched_reg_basic_block = (int *) alloca (max_regno * sizeof (int));
-      bb_live_regs = ALLOCA_REG_SET ();
-      bzero ((char *) sched_reg_n_calls_crossed, max_regno * sizeof (int));
-      bzero ((char *) sched_reg_live_length, max_regno * sizeof (int));
+  deaths_in_region = (int *) xmalloc (sizeof (int) * nr_regions);
 
-      for (i = 0; i < max_regno; i++)
-       sched_reg_basic_block[i] = REG_BLOCK_UNKNOWN;
-    }
-  else
-    {
-      sched_reg_n_calls_crossed = 0;
-      sched_reg_live_length = 0;
-      bb_live_regs = 0;
-    }
   init_alias_analysis ();
 
   if (write_symbols != NO_DEBUG)
     {
       rtx line;
 
-      line_note = (rtx *) xcalloc (max_uid, sizeof (rtx));
-      line_note_head = (rtx *) alloca (n_basic_blocks * sizeof (rtx));
-      bzero ((char *) line_note_head, n_basic_blocks * sizeof (rtx));
+      line_note_head = (rtx *) xcalloc (n_basic_blocks, sizeof (rtx));
 
       /* Save-line-note-head:
          Determine the line-number at the start of each basic block.
@@ -7984,14 +6997,74 @@ schedule_insns (dump_file)
               && GET_CODE (NEXT_INSN (insn)) == BARRIER)))
     emit_note_after (NOTE_INSN_DELETED, BLOCK_END (n_basic_blocks - 1));
 
-  /* Schedule every region in the subroutine.  */
+  /* Compute INSN_REG_WEIGHT for all blocks.  We must do this before
+     removing death notes.  */
+  for (b = n_basic_blocks - 1; b >= 0; b--)
+    find_insn_reg_weight (b);
+
+  /* Remove all death notes from the subroutine.  */
   for (rgn = 0; rgn < nr_regions; rgn++)
     {
-      schedule_region (rgn);
+      sbitmap_zero (blocks);
+      for (b = RGN_NR_BLOCKS (rgn) - 1; b >= 0; --b)
+       SET_BIT (blocks, rgn_bb_table [RGN_BLOCKS (rgn) + b]);
+
+      deaths_in_region[rgn] = count_or_remove_death_notes (blocks, 1);
+    }
+
+  /* Schedule every region in the subroutine.  */
+  for (rgn = 0; rgn < nr_regions; rgn++)
+    schedule_region (rgn);
+
+  /* Update life analysis for the subroutine.  Do single block regions
+     first so that we can verify that live_at_start didn't change.  Then
+     do all other blocks.   */
+  /* ??? There is an outside possibility that update_life_info, or more
+     to the point propagate_block, could get called with non-zero flags
+     more than once for one basic block.  This would be kinda bad if it
+     were to happen, since REG_INFO would be accumulated twice for the
+     block, and we'd have twice the REG_DEAD notes.
 
-#ifdef USE_C_ALLOCA
-      alloca (0);
+     I'm fairly certain that this _shouldn't_ happen, since I don't think
+     that live_at_start should change at region heads.  Not sure what the
+     best way to test for this kind of thing... */
+
+  allocate_reg_life_data ();
+  compute_bb_for_insn (max_uid);
+
+  any_large_regions = 0;
+  sbitmap_ones (large_region_blocks);
+
+  for (rgn = 0; rgn < nr_regions; rgn++)
+    if (RGN_NR_BLOCKS (rgn) > 1)
+      any_large_regions = 1;
+    else
+      {
+       sbitmap_zero (blocks);
+       SET_BIT (blocks, rgn_bb_table[RGN_BLOCKS (rgn)]);
+       RESET_BIT (large_region_blocks, rgn_bb_table[RGN_BLOCKS (rgn)]);
+
+       /* Don't update reg info after reload, since that affects
+          regs_ever_live, which should not change after reload.  */
+       update_life_info (blocks, UPDATE_LIFE_LOCAL,
+                         (reload_completed ? PROP_DEATH_NOTES
+                          : PROP_DEATH_NOTES | PROP_REG_INFO));
+
+#ifndef HAVE_conditional_execution
+       /* ??? REG_DEAD notes only exist for unconditional deaths.  We need
+          a count of the conditional plus unconditional deaths for this to
+          work out.  */
+       /* In the single block case, the count of registers that died should
+          not have changed during the schedule.  */
+       if (count_or_remove_death_notes (blocks, 0) != deaths_in_region[rgn])
+          abort ();
 #endif
+      }
+
+  if (any_large_regions)
+    {
+      update_life_info (large_region_blocks, UPDATE_LIFE_GLOBAL,
+                       PROP_DEATH_NOTES | PROP_REG_INFO);
     }
 
   /* Reposition the prologue and epilogue notes in case we moved the
@@ -8003,10 +7076,6 @@ schedule_insns (dump_file)
   if (write_symbols != NO_DEBUG)
     rm_redundant_line_notes ();
 
-  /* Update information about uses of registers in the subroutine.  */
-  if (reload_completed == 0)
-    update_reg_usage ();
-
   if (sched_verbose)
     {
       if (reload_completed == 0 && flag_schedule_interblock)
@@ -8022,28 +7091,23 @@ schedule_insns (dump_file)
       fprintf (dump, "\n\n");
     }
 
-  free (cant_move);
-  free (fed_by_spec_load);
-  free (is_load_insn);
-  free (insn_orig_block);
-  free (insn_luid);
+  /* Clean up.  */
+  end_alias_analysis ();
 
-  free (insn_priority);
-  free (insn_reg_weight);
-  free (insn_tick);
-  free (insn_costs);
-  free (insn_units);
-  free (insn_blockage);
-  free (insn_ref_count);
+  if (true_dependency_cache)
+    {
+      free (true_dependency_cache);
+      true_dependency_cache = NULL;
+    }
+  free (rgn_table);
+  free (rgn_bb_table);
+  free (block_to_bb);
+  free (containing_rgn);
 
-  free (insn_dep_count);
-  free (insn_depend);
+  free (h_i_d);
 
   if (write_symbols != NO_DEBUG)
-    free (line_note);
-
-  if (bb_live_regs)
-    FREE_REG_SET (bb_live_regs);
+    free (line_note_head);
 
   if (edge_table)
     {
@@ -8061,5 +7125,11 @@ schedule_insns (dump_file)
       free (out_edges);
       out_edges = NULL;
     }
+
+  sbitmap_free (blocks);
+  sbitmap_free (large_region_blocks);
+
+  free (deaths_in_region);
 }
+
 #endif /* INSN_SCHEDULING */