]> gcc.gnu.org Git - gcc.git/blobdiff - gcc/integrate.c
integrate.c (expand_inline_function): Don't put a virtual register into the reg map.
[gcc.git] / gcc / integrate.c
index cde8b6f3e7d61d3ecdc9f0c1abfb09c6fade619e..f6e43027580d3f23c94dd4db1ddb33d271f22cff 100644 (file)
@@ -1,5 +1,6 @@
 /* Procedure integration for GNU CC.
-   Copyright (C) 1988, 91, 93-97, 1998 Free Software Foundation, Inc.
+   Copyright (C) 1988, 1991, 1993, 1994, 1995, 1996, 1997, 1998,
+   1999, 2000, 2001 Free Software Foundation, Inc.
    Contributed by Michael Tiemann (tiemann@cygnus.com)
 
 This file is part of GNU CC.
@@ -19,12 +20,12 @@ along with GNU CC; see the file COPYING.  If not, write to
 the Free Software Foundation, 59 Temple Place - Suite 330,
 Boston, MA 02111-1307, USA.  */
 
-
 #include "config.h"
 #include "system.h"
 
 #include "rtl.h"
 #include "tree.h"
+#include "tm_p.h"
 #include "regs.h"
 #include "flags.h"
 #include "insn-config.h"
@@ -36,6 +37,9 @@ Boston, MA 02111-1307, USA.  */
 #include "real.h"
 #include "except.h"
 #include "function.h"
+#include "toplev.h"
+#include "intl.h"
+#include "loop.h"
 
 #include "obstack.h"
 #define        obstack_chunk_alloc     xmalloc
@@ -43,9 +47,6 @@ Boston, MA 02111-1307, USA.  */
 
 extern struct obstack *function_maybepermanent_obstack;
 
-extern tree pushdecl ();
-extern tree poplevel ();
-
 /* Similar, but round to the next highest integer that meets the
    alignment.  */
 #define CEIL_ROUND(VALUE,ALIGN)        (((VALUE) + (ALIGN) - 1) & ~((ALIGN)- 1))
@@ -57,81 +58,119 @@ extern tree poplevel ();
    all.  Assume 1 instruction for the call and 1.5 insns per argument.  */
 #define INTEGRATE_THRESHOLD(DECL) \
   (optimize_size \
-   ? (1 + (3 * list_length (DECL_ARGUMENTS (DECL)) / 2)) \
+   ? (1 + (3 * list_length (DECL_ARGUMENTS (DECL))) / 2) \
    : (8 * (8 + list_length (DECL_ARGUMENTS (DECL)))))
 #endif
+
+/* Decide whether a function with a target specific attribute
+   attached can be inlined.  By default we disallow this.  */
+#ifndef FUNCTION_ATTRIBUTE_INLINABLE_P
+#define FUNCTION_ATTRIBUTE_INLINABLE_P(FNDECL) 0
+#endif
 \f
-static rtx initialize_for_inline PROTO((tree, int, int, int, int));
-static void finish_inline      PROTO((tree, rtx));
-static void adjust_copied_decl_tree PROTO((tree));
-static tree copy_decl_list     PROTO((tree));
-static tree copy_decl_tree     PROTO((tree));
-static void copy_decl_rtls     PROTO((tree));
-static void save_constants     PROTO((rtx *));
-static void note_modified_parmregs PROTO((rtx, rtx));
-static rtx copy_for_inline     PROTO((rtx));
-static void integrate_parm_decls PROTO((tree, struct inline_remap *, rtvec));
-static void integrate_decl_tree        PROTO((tree, int, struct inline_remap *));
-static void save_constants_in_decl_trees PROTO ((tree));
-static void subst_constants    PROTO((rtx *, rtx, struct inline_remap *));
-static void restore_constants  PROTO((rtx *));
-static void set_block_origin_self PROTO((tree));
-static void set_decl_origin_self PROTO((tree));
-static void set_block_abstract_flags PROTO((tree, int));
-
-void set_decl_abstract_flags   PROTO((tree, int));
+static rtvec initialize_for_inline     PARAMS ((tree));
+static void note_modified_parmregs     PARAMS ((rtx, rtx, void *));
+static void integrate_parm_decls       PARAMS ((tree, struct inline_remap *,
+                                                rtvec));
+static tree integrate_decl_tree                PARAMS ((tree,
+                                                struct inline_remap *));
+static void subst_constants            PARAMS ((rtx *, rtx,
+                                                struct inline_remap *, int));
+static void set_block_origin_self      PARAMS ((tree));
+static void set_block_abstract_flags   PARAMS ((tree, int));
+static void process_reg_param          PARAMS ((struct inline_remap *, rtx,
+                                                rtx));
+void set_decl_abstract_flags           PARAMS ((tree, int));
+static rtx expand_inline_function_eh_labelmap PARAMS ((rtx));
+static void mark_stores                 PARAMS ((rtx, rtx, void *));
+static void save_parm_insns            PARAMS ((rtx, rtx));
+static void copy_insn_list              PARAMS ((rtx, struct inline_remap *,
+                                                rtx));
+static int compare_blocks               PARAMS ((const PTR, const PTR));
+static int find_block                   PARAMS ((const PTR, const PTR));
+
+/* The maximum number of instructions accepted for inlining a
+   function.  Increasing values mean more agressive inlining.
+   This affects currently only functions explicitly marked as
+   inline (or methods defined within the class definition for C++).
+   The default value of 10000 is arbitrary but high to match the
+   previously unlimited gcc capabilities.  */
+
+int inline_max_insns = 10000;
+
+/* Used by copy_rtx_and_substitute; this indicates whether the function is
+   called for the purpose of inlining or some other purpose (i.e. loop
+   unrolling).  This affects how constant pool references are handled.
+   This variable contains the FUNCTION_DECL for the inlined function.  */
+static struct function *inlining = 0;
 \f
 /* Returns the Ith entry in the label_map contained in MAP.  If the
-   Ith entry has not yet been set, it is assumed to be a fresh label.
-   Essentially, we use this function to perform a lazy initialization
-   of label_map, thereby avoiding huge memory explosions when the
-   label_map gets very large.  */
+   Ith entry has not yet been set, return a fresh label.  This function
+   performs a lazy initialization of label_map, thereby avoiding huge memory
+   explosions when the label_map gets very large.  */
+
 rtx
 get_label_from_map (map, i)
-     struct inline_remapmap;
+     struct inline_remap *map;
      int i;
 {
   rtx x = map->label_map[i];
 
   if (x == NULL_RTX)
-    x = map->label_map[i] = gen_label_rtx();
+    x = map->label_map[i] = gen_label_rtx ();
 
   return x;
 }
 
-
 /* Zero if the current function (whose FUNCTION_DECL is FNDECL)
    is safe and reasonable to integrate into other functions.
-   Nonzero means value is a warning message with a single %s
+   Nonzero means value is a warning msgid with a single %s
    for the function's name.  */
 
-char *
+const char *
 function_cannot_inline_p (fndecl)
      register tree fndecl;
 {
   register rtx insn;
   tree last = tree_last (TYPE_ARG_TYPES (TREE_TYPE (fndecl)));
-  int max_insns = INTEGRATE_THRESHOLD (fndecl);
+
+  /* For functions marked as inline increase the maximum size to
+     inline_max_insns (-finline-limit-<n>).  For regular functions
+     use the limit given by INTEGRATE_THRESHOLD.  */
+
+  int max_insns = (DECL_INLINE (fndecl))
+                  ? (inline_max_insns
+                     + 8 * list_length (DECL_ARGUMENTS (fndecl)))
+                  : INTEGRATE_THRESHOLD (fndecl);
+
   register int ninsns = 0;
   register tree parms;
   rtx result;
 
-  /* No inlines with varargs.  `grokdeclarator' gives a warning
-     message about that if `inline' is specified.  This code
-     it put in to catch the volunteers.  */
+  /* No inlines with varargs.  */
   if ((last && TREE_VALUE (last) != void_type_node)
       || current_function_varargs)
-    return "varargs function cannot be inline";
+    return N_("varargs function cannot be inline");
 
   if (current_function_calls_alloca)
-    return "function using alloca cannot be inline";
+    return N_("function using alloca cannot be inline");
+
+  if (current_function_calls_setjmp)
+    return N_("function using setjmp cannot be inline");
 
   if (current_function_contains_functions)
-    return "function with nested functions cannot be inline";
+    return N_("function with nested functions cannot be inline");
+
+  if (forced_labels)
+    return
+      N_("function with label addresses used in initializers cannot inline");
+
+  if (current_function_cannot_inline)
+    return current_function_cannot_inline;
 
   /* If its not even close, don't even look.  */
-  if (!DECL_INLINE (fndecl) && get_max_uid () > 3 * max_insns)
-    return "function too large to be inline";
+  if (get_max_uid () > 3 * max_insns)
+    return N_("function too large to be inline");
 
 #if 0
   /* Don't inline functions which do not specify a function prototype and
@@ -141,59 +180,52 @@ function_cannot_inline_p (fndecl)
       if (TYPE_MODE (TREE_TYPE (parms)) == BLKmode)
        TREE_ADDRESSABLE (parms) = 1;
       if (last == NULL_TREE && TREE_ADDRESSABLE (parms))
-       return "no prototype, and parameter address used; cannot be inline";
+       return N_("no prototype, and parameter address used; cannot be inline");
     }
 #endif
 
   /* We can't inline functions that return structures
      the old-fashioned PCC way, copying into a static block.  */
   if (current_function_returns_pcc_struct)
-    return "inline functions not supported for this return value type";
-
-  /* We can't inline functions that return BLKmode structures in registers.  */
-  if (TYPE_MODE (TREE_TYPE (TREE_TYPE (fndecl))) == BLKmode
-      && ! aggregate_value_p (TREE_TYPE (TREE_TYPE (fndecl))))
-    return "inline functions not supported for this return value type";
+    return N_("inline functions not supported for this return value type");
 
   /* We can't inline functions that return structures of varying size.  */
-  if (int_size_in_bytes (TREE_TYPE (TREE_TYPE (fndecl))) < 0)
-    return "function with varying-size return value cannot be inline";
+  if (TREE_CODE (TREE_TYPE (TREE_TYPE (fndecl))) != VOID_TYPE
+      && int_size_in_bytes (TREE_TYPE (TREE_TYPE (fndecl))) < 0)
+    return N_("function with varying-size return value cannot be inline");
 
   /* Cannot inline a function with a varying size argument or one that
      receives a transparent union.  */
   for (parms = DECL_ARGUMENTS (fndecl); parms; parms = TREE_CHAIN (parms))
     {
       if (int_size_in_bytes (TREE_TYPE (parms)) < 0)
-       return "function with varying-size parameter cannot be inline";
-      else if (TYPE_TRANSPARENT_UNION (TREE_TYPE (parms)))
-       return "function with transparent unit parameter cannot be inline";
+       return N_("function with varying-size parameter cannot be inline");
+      else if (TREE_CODE (TREE_TYPE (parms)) == UNION_TYPE
+              && TYPE_TRANSPARENT_UNION (TREE_TYPE (parms)))
+       return N_("function with transparent unit parameter cannot be inline");
     }
 
-  if (!DECL_INLINE (fndecl) && get_max_uid () > max_insns)
+  if (get_max_uid () > max_insns)
     {
       for (ninsns = 0, insn = get_first_nonparm_insn ();
           insn && ninsns < max_insns;
           insn = NEXT_INSN (insn))
-       if (GET_RTX_CLASS (GET_CODE (insn)) == 'i')
+       if (INSN_P (insn))
          ninsns++;
 
       if (ninsns >= max_insns)
-       return "function too large to be inline";
+       return N_("function too large to be inline");
     }
 
-  /* We cannot inline this function if forced_labels is non-zero.  This
-     implies that a label in this function was used as an initializer.
-     Because labels can not be duplicated, all labels in the function
-     will be renamed when it is inlined.  However, there is no way to find
-     and fix all variables initialized with addresses of labels in this
-     function, hence inlining is impossible.  */
-
-  if (forced_labels)
-    return "function with label addresses used in initializers cannot inline";
+  /* We will not inline a function which uses computed goto.  The addresses of
+     its local labels, which may be tucked into global storage, are of course
+     not constant across instantiations, which causes unexpected behaviour.  */
+  if (current_function_has_computed_jump)
+    return N_("function with computed jump cannot inline");
 
   /* We cannot inline a nested function that jumps to a nonlocal label.  */
   if (current_function_has_nonlocal_goto)
-    return "function with nonlocal goto cannot be inline";
+    return N_("function with nonlocal goto cannot be inline");
 
   /* This is a hack, until the inliner is taught about eh regions at
      the start of the function.  */
@@ -205,92 +237,45 @@ function_cannot_inline_p (fndecl)
     {
       if (insn && GET_CODE (insn) == NOTE
          && NOTE_LINE_NUMBER (insn) == NOTE_INSN_EH_REGION_BEG)
-       return "function with complex parameters cannot be inline";
+       return N_("function with complex parameters cannot be inline");
     }
 
   /* We can't inline functions that return a PARALLEL rtx.  */
   result = DECL_RTL (DECL_RESULT (fndecl));
   if (result && GET_CODE (result) == PARALLEL)
-    return "inline functions not supported for this return value type";
+    return N_("inline functions not supported for this return value type");
+
+  /* If the function has a target specific attribute attached to it,
+     then we assume that we should not inline it.  This can be overriden
+     by the target if it defines FUNCTION_ATTRIBUTE_INLINABLE_P.  */
+  if (DECL_MACHINE_ATTRIBUTES (fndecl)
+      && ! FUNCTION_ATTRIBUTE_INLINABLE_P (fndecl))
+    return N_("function with target specific attribute(s) cannot be inlined");
 
-  return 0;
+  return NULL;
 }
 \f
-/* Variables used within save_for_inline.  */
-
-/* Mapping from old pseudo-register to new pseudo-registers.
-   The first element of this map is reg_map[FIRST_PSEUDO_REGISTER].
-   It is allocated in `save_for_inline' and `expand_inline_function',
-   and deallocated on exit from each of those routines.  */
-static rtx *reg_map;
-
-/* Mapping from old code-labels to new code-labels.
-   The first element of this map is label_map[min_labelno].
-   It is allocated in `save_for_inline' and `expand_inline_function',
-   and deallocated on exit from each of those routines.  */
-static rtx *label_map;
-
-/* Mapping from old insn uid's to copied insns.
-   It is allocated in `save_for_inline' and `expand_inline_function',
-   and deallocated on exit from each of those routines.  */
-static rtx *insn_map;
-
 /* Map pseudo reg number into the PARM_DECL for the parm living in the reg.
    Zero for a reg that isn't a parm's home.
    Only reg numbers less than max_parm_reg are mapped here.  */
 static tree *parmdecl_map;
 
-/* Keep track of first pseudo-register beyond those that are parms.  */
-extern int max_parm_reg;
-extern rtx *parm_reg_stack_loc;
-
-/* When an insn is being copied by copy_for_inline,
-   this is nonzero if we have copied an ASM_OPERANDS.
-   In that case, it is the original input-operand vector.  */
-static rtvec orig_asm_operands_vector;
-
-/* When an insn is being copied by copy_for_inline,
-   this is nonzero if we have copied an ASM_OPERANDS.
-   In that case, it is the copied input-operand vector.  */
-static rtvec copy_asm_operands_vector;
-
-/* Likewise, this is the copied constraints vector.  */
-static rtvec copy_asm_constraints_vector;
-
 /* In save_for_inline, nonzero if past the parm-initialization insns.  */
 static int in_nonparm_insns;
 \f
-/* Subroutine for `save_for_inline{copying,nocopy}'.  Performs initialization
+/* Subroutine for `save_for_inline'.  Performs initialization
    needed to save FNDECL's insns and info for future inline expansion.  */
-   
-static rtx
-initialize_for_inline (fndecl, min_labelno, max_labelno, max_reg, copy)
+
+static rtvec
+initialize_for_inline (fndecl)
      tree fndecl;
-     int min_labelno;
-     int max_labelno;
-     int max_reg;
-     int copy;
 {
-  int function_flags, i;
+  int i;
   rtvec arg_vector;
   tree parms;
 
-  /* Compute the values of any flags we must restore when inlining this.  */
-
-  function_flags
-    = (current_function_calls_alloca * FUNCTION_FLAGS_CALLS_ALLOCA
-       + current_function_calls_setjmp * FUNCTION_FLAGS_CALLS_SETJMP
-       + current_function_calls_longjmp * FUNCTION_FLAGS_CALLS_LONGJMP
-       + current_function_returns_struct * FUNCTION_FLAGS_RETURNS_STRUCT
-       + current_function_returns_pcc_struct * FUNCTION_FLAGS_RETURNS_PCC_STRUCT
-       + current_function_needs_context * FUNCTION_FLAGS_NEEDS_CONTEXT
-       + current_function_has_nonlocal_label * FUNCTION_FLAGS_HAS_NONLOCAL_LABEL
-       + current_function_returns_pointer * FUNCTION_FLAGS_RETURNS_POINTER
-       + current_function_uses_const_pool * FUNCTION_FLAGS_USES_CONST_POOL
-       + current_function_uses_pic_offset_table * FUNCTION_FLAGS_USES_PIC_OFFSET_TABLE);
-
   /* Clear out PARMDECL_MAP.  It was allocated in the caller's frame.  */
-  bzero ((char *) parmdecl_map, max_parm_reg * sizeof (tree));
+  memset ((char *) parmdecl_map, 0, max_parm_reg * sizeof (tree));
   arg_vector = rtvec_alloc (list_length (DECL_ARGUMENTS (fndecl)));
 
   for (parms = DECL_ARGUMENTS (fndecl), i = 0;
@@ -306,24 +291,6 @@ initialize_for_inline (fndecl, min_labelno, max_labelno, max_reg, copy)
          && GET_CODE (XEXP (XEXP (p, 0), 0)) == MEM)
        p = XEXP (XEXP (p, 0), 0);
 
-      if (GET_CODE (p) == MEM && copy)
-       {
-         /* Copy the rtl so that modifications of the addresses
-            later in compilation won't affect this arg_vector.
-            Virtual register instantiation can screw the address
-            of the rtl.  */
-         rtx new = copy_rtx (p);
-
-         /* Don't leave the old copy anywhere in this decl.  */
-         if (DECL_RTL (parms) == DECL_INCOMING_RTL (parms)
-             || (GET_CODE (DECL_RTL (parms)) == MEM
-                 && GET_CODE (DECL_INCOMING_RTL (parms)) == MEM
-                 && (XEXP (DECL_RTL (parms), 0)
-                     == XEXP (DECL_INCOMING_RTL (parms), 0))))
-           DECL_INCOMING_RTL (parms) = new;
-         DECL_RTL (parms) = new;
-       }
-
       RTVEC_ELT (arg_vector, i) = p;
 
       if (GET_CODE (p) == REG)
@@ -344,453 +311,72 @@ initialize_for_inline (fndecl, min_labelno, max_labelno, max_reg, copy)
       TREE_READONLY (parms) = 1;
     }
 
-  /* Assume we start out in the insns that set up the parameters.  */
-  in_nonparm_insns = 0;
-
-  /* The list of DECL_SAVED_INSNS, starts off with a header which
-     contains the following information:
-
-     the first insn of the function (not including the insns that copy
-     parameters into registers).
-     the first parameter insn of the function,
-     the first label used by that function,
-     the last label used by that function,
-     the highest register number used for parameters,
-     the total number of registers used,
-     the size of the incoming stack area for parameters,
-     the number of bytes popped on return,
-     the stack slot list,
-     the labels that are forced to exist,
-     some flags that are used to restore compiler globals,
-     the value of current_function_outgoing_args_size,
-     the original argument vector,
-     the original DECL_INITIAL,
-     and pointers to the table of pseudo regs, pointer flags, and alignment. */
-
-  return gen_inline_header_rtx (NULL_RTX, NULL_RTX, min_labelno, max_labelno,
-                               max_parm_reg, max_reg,
-                               current_function_args_size,
-                               current_function_pops_args,
-                               stack_slot_list, forced_labels, function_flags,
-                               current_function_outgoing_args_size,
-                               arg_vector, (rtx) DECL_INITIAL (fndecl),
-                               (rtvec) regno_reg_rtx, regno_pointer_flag,
-                               regno_pointer_align,
-                               (rtvec) parm_reg_stack_loc);
+  return arg_vector;
 }
 
-/* Subroutine for `save_for_inline{copying,nocopy}'.  Finishes up the
-   things that must be done to make FNDECL expandable as an inline function.
-   HEAD contains the chain of insns to which FNDECL will expand.  */
-   
-static void
-finish_inline (fndecl, head)
-     tree fndecl;
-     rtx head;
-{
-  FIRST_FUNCTION_INSN (head) = get_first_nonparm_insn ();
-  FIRST_PARM_INSN (head) = get_insns ();
-  DECL_SAVED_INSNS (fndecl) = head;
-  DECL_FRAME_SIZE (fndecl) = get_frame_size ();
-}
-
-/* Adjust the BLOCK_END_NOTE pointers in a given copied DECL tree so that
-   they all point to the new (copied) rtxs.  */
+/* Copy NODE (which must be a DECL, but not a PARM_DECL).  The DECL
+   originally was in the FROM_FN, but now it will be in the
+   TO_FN.  */
 
-static void
-adjust_copied_decl_tree (block)
-     register tree block;
+tree
+copy_decl_for_inlining (decl, from_fn, to_fn)
+     tree decl;
+     tree from_fn;
+     tree to_fn;
 {
-  register tree subblock;
-  register rtx original_end;
+  tree copy;
 
-  original_end = BLOCK_END_NOTE (block);
-  if (original_end)
+  /* Copy the declaration.  */
+  if (TREE_CODE (decl) == PARM_DECL || TREE_CODE (decl) == RESULT_DECL)
     {
-      BLOCK_END_NOTE (block) = (rtx) NOTE_SOURCE_FILE (original_end);
-      NOTE_SOURCE_FILE (original_end) = 0;
+      /* For a parameter, we must make an equivalent VAR_DECL, not a
+        new PARM_DECL.  */
+      copy = build_decl (VAR_DECL, DECL_NAME (decl), TREE_TYPE (decl));
+      TREE_ADDRESSABLE (copy) = TREE_ADDRESSABLE (decl);
+      TREE_READONLY (copy) = TREE_READONLY (decl);
+      TREE_THIS_VOLATILE (copy) = TREE_THIS_VOLATILE (decl);
     }
-
-  /* Process all subblocks.  */
-  for (subblock = BLOCK_SUBBLOCKS (block);
-       subblock;
-       subblock = TREE_CHAIN (subblock))
-    adjust_copied_decl_tree (subblock);
-}
-
-/* Make the insns and PARM_DECLs of the current function permanent
-   and record other information in DECL_SAVED_INSNS to allow inlining
-   of this function in subsequent calls.
-
-   This function is called when we are going to immediately compile
-   the insns for FNDECL.  The insns in maybepermanent_obstack cannot be
-   modified by the compilation process, so we copy all of them to
-   new storage and consider the new insns to be the insn chain to be
-   compiled.  Our caller (rest_of_compilation) saves the original
-   DECL_INITIAL and DECL_ARGUMENTS; here we copy them.  */
-
-/* ??? The nonlocal_label list should be adjusted also.  However, since
-   a function that contains a nested function never gets inlined currently,
-   the nonlocal_label list will always be empty, so we don't worry about
-   it for now.  */
-
-void
-save_for_inline_copying (fndecl)
-     tree fndecl;
-{
-  rtx first_insn, last_insn, insn;
-  rtx head, copy;
-  int max_labelno, min_labelno, i, len;
-  int max_reg;
-  int max_uid;
-  rtx first_nonparm_insn;
-  char *new, *new1;
-  rtx *new_parm_reg_stack_loc;
-  rtx *new2;
-
-  /* Make and emit a return-label if we have not already done so. 
-     Do this before recording the bounds on label numbers.  */
-
-  if (return_label == 0)
-    {
-      return_label = gen_label_rtx ();
-      emit_label (return_label);
-    }
-
-  /* Get some bounds on the labels and registers used.  */
-
-  max_labelno = max_label_num ();
-  min_labelno = get_first_label_num ();
-  max_reg = max_reg_num ();
-
-  /* Set up PARMDECL_MAP which maps pseudo-reg number to its PARM_DECL.
-     Later we set TREE_READONLY to 0 if the parm is modified inside the fn.
-     Also set up ARG_VECTOR, which holds the unmodified DECL_RTX values
-     for the parms, prior to elimination of virtual registers.
-     These values are needed for substituting parms properly.  */
-
-  parmdecl_map = (tree *) alloca (max_parm_reg * sizeof (tree));
-
-  head = initialize_for_inline (fndecl, min_labelno, max_labelno, max_reg, 1);
-
-  if (current_function_uses_const_pool)
-    {
-      /* Replace any constant pool references with the actual constant.  We
-        will put the constants back in the copy made below.  */
-      for (insn = get_insns (); insn; insn = NEXT_INSN (insn))
-       if (GET_RTX_CLASS (GET_CODE (insn)) == 'i')
-         {
-           save_constants (&PATTERN (insn));
-           if (REG_NOTES (insn))
-             save_constants (&REG_NOTES (insn));
-         }
-
-      /* Also scan all decls, and replace any constant pool references with the
-        actual constant.  */
-      save_constants_in_decl_trees (DECL_INITIAL (fndecl));
-
-      /* Clear out the constant pool so that we can recreate it with the
-        copied constants below.  */
-      init_const_rtx_hash_table ();
-      clear_const_double_mem ();
-    }
-
-  max_uid = INSN_UID (head);
-
-  /* We have now allocated all that needs to be allocated permanently
-     on the rtx obstack.  Set our high-water mark, so that we
-     can free the rest of this when the time comes.  */
-
-  preserve_data ();
-
-  /* Copy the chain insns of this function.
-     Install the copied chain as the insns of this function,
-     for continued compilation;
-     the original chain is recorded as the DECL_SAVED_INSNS
-     for inlining future calls.  */
-
-  /* If there are insns that copy parms from the stack into pseudo registers,
-     those insns are not copied.  `expand_inline_function' must
-     emit the correct code to handle such things.  */
-
-  insn = get_insns ();
-  if (GET_CODE (insn) != NOTE)
-    abort ();
-  first_insn = rtx_alloc (NOTE);
-  NOTE_SOURCE_FILE (first_insn) = NOTE_SOURCE_FILE (insn);
-  NOTE_LINE_NUMBER (first_insn) = NOTE_LINE_NUMBER (insn);
-  INSN_UID (first_insn) = INSN_UID (insn);
-  PREV_INSN (first_insn) = NULL;
-  NEXT_INSN (first_insn) = NULL;
-  last_insn = first_insn;
-
-  /* Each pseudo-reg in the old insn chain must have a unique rtx in the copy.
-     Make these new rtx's now, and install them in regno_reg_rtx, so they
-     will be the official pseudo-reg rtx's for the rest of compilation.  */
-
-  reg_map = (rtx *) savealloc (regno_pointer_flag_length * sizeof (rtx));
-
-  len = sizeof (struct rtx_def) + (GET_RTX_LENGTH (REG) - 1) * sizeof (rtunion);
-  for (i = max_reg - 1; i > LAST_VIRTUAL_REGISTER; i--)
-    reg_map[i] = (rtx)obstack_copy (function_maybepermanent_obstack,
-                                   regno_reg_rtx[i], len);
-
-  regno_reg_rtx = reg_map;
-
-  /* Put copies of all the virtual register rtx into the new regno_reg_rtx.  */
-  regno_reg_rtx[VIRTUAL_INCOMING_ARGS_REGNUM] = virtual_incoming_args_rtx;
-  regno_reg_rtx[VIRTUAL_STACK_VARS_REGNUM] = virtual_stack_vars_rtx;
-  regno_reg_rtx[VIRTUAL_STACK_DYNAMIC_REGNUM] = virtual_stack_dynamic_rtx;
-  regno_reg_rtx[VIRTUAL_OUTGOING_ARGS_REGNUM] = virtual_outgoing_args_rtx;
-
-  /* Likewise each label rtx must have a unique rtx as its copy.  */
-
-  /* We used to use alloca here, but the size of what it would try to
-     allocate would occasionally cause it to exceed the stack limit and
-     cause unpredictable core dumps.  Some examples were > 2Mb in size.  */
-  label_map = (rtx *) xmalloc ((max_labelno) * sizeof (rtx));
-
-  for (i = min_labelno; i < max_labelno; i++)
-    label_map[i] = gen_label_rtx ();
-
-  /* Likewise for parm_reg_stack_slot.  */
-  new_parm_reg_stack_loc = (rtx *) savealloc (max_parm_reg * sizeof (rtx));
-  for (i = 0; i < max_parm_reg; i++)
-    new_parm_reg_stack_loc[i] = copy_for_inline (parm_reg_stack_loc[i]);
-
-  parm_reg_stack_loc = new_parm_reg_stack_loc;
-
-  /* Record the mapping of old insns to copied insns.  */
-
-  insn_map = (rtx *) alloca (max_uid * sizeof (rtx));
-  bzero ((char *) insn_map, max_uid * sizeof (rtx));
-
-  /* Get the insn which signals the end of parameter setup code.  */
-  first_nonparm_insn = get_first_nonparm_insn ();
-
-  /* Copy any entries in regno_reg_rtx or DECL_RTLs that reference MEM
-     (the former occurs when a variable has its address taken)
-     since these may be shared and can be changed by virtual
-     register instantiation.  DECL_RTL values for our arguments
-     have already been copied by initialize_for_inline.  */
-  for (i = LAST_VIRTUAL_REGISTER + 1; i < max_reg; i++)
-    if (GET_CODE (regno_reg_rtx[i]) == MEM)
-      XEXP (regno_reg_rtx[i], 0)
-       = copy_for_inline (XEXP (regno_reg_rtx[i], 0));
-
-  /* Copy the parm_reg_stack_loc array, and substitute for all of the rtx
-     contained in it.  */
-  new2 = (rtx *) savealloc (max_parm_reg * sizeof (rtx));
-  bcopy ((char *) parm_reg_stack_loc, (char *) new2,
-        max_parm_reg * sizeof (rtx));
-  parm_reg_stack_loc = new2;
-  for (i = LAST_VIRTUAL_REGISTER + 1; i < max_parm_reg; ++i)
-    if (parm_reg_stack_loc[i])
-      parm_reg_stack_loc[i] = copy_for_inline (parm_reg_stack_loc[i]);
-
-  /* Copy the tree of subblocks of the function, and the decls in them.
-     We will use the copy for compiling this function, then restore the original
-     subblocks and decls for use when inlining this function.
-
-     Several parts of the compiler modify BLOCK trees.  In particular,
-     instantiate_virtual_regs will instantiate any virtual regs
-     mentioned in the DECL_RTLs of the decls, and loop
-     unrolling will replicate any BLOCK trees inside an unrolled loop.
-
-     The modified subblocks or DECL_RTLs would be incorrect for the original rtl
-     which we will use for inlining.  The rtl might even contain pseudoregs
-     whose space has been freed.  */
-
-  DECL_INITIAL (fndecl) = copy_decl_tree (DECL_INITIAL (fndecl));
-  DECL_ARGUMENTS (fndecl) = copy_decl_list (DECL_ARGUMENTS (fndecl));
-
-  /* Now copy each DECL_RTL which is a MEM,
-     so it is safe to modify their addresses.  */
-  copy_decl_rtls (DECL_INITIAL (fndecl));
-
-  /* The fndecl node acts as its own progenitor, so mark it as such.  */
-  DECL_ABSTRACT_ORIGIN (fndecl) = fndecl;
-
-  /* Now copy the chain of insns.  Do this twice.  The first copy the insn
-     itself and its body.  The second time copy of REG_NOTES.  This is because
-     a REG_NOTE may have a forward pointer to another insn.  */
-
-  for (insn = NEXT_INSN (insn); insn; insn = NEXT_INSN (insn))
-    {
-      orig_asm_operands_vector = 0;
-
-      if (insn == first_nonparm_insn)
-       in_nonparm_insns = 1;
-
-      switch (GET_CODE (insn))
-       {
-       case NOTE:
-         /* No need to keep these.  */
-         if (NOTE_LINE_NUMBER (insn) == NOTE_INSN_DELETED)
-           continue;
-
-         copy = rtx_alloc (NOTE);
-         NOTE_LINE_NUMBER (copy) = NOTE_LINE_NUMBER (insn);
-         if (NOTE_LINE_NUMBER (insn) != NOTE_INSN_BLOCK_END)
-           NOTE_SOURCE_FILE (copy) = NOTE_SOURCE_FILE (insn);
-         else
-           {
-             NOTE_SOURCE_FILE (insn) = (char *) copy;
-             NOTE_SOURCE_FILE (copy) = 0;
-           }
-         if (NOTE_LINE_NUMBER (copy) == NOTE_INSN_EH_REGION_BEG
-             || NOTE_LINE_NUMBER (copy) == NOTE_INSN_EH_REGION_END)
-           {
-             /* We have to forward these both to match the new exception
-                region.  */
-             NOTE_BLOCK_NUMBER (copy)
-               = CODE_LABEL_NUMBER (label_map[NOTE_BLOCK_NUMBER (copy)]);
-             
-           }
-         RTX_INTEGRATED_P (copy) = RTX_INTEGRATED_P (insn);
-         break;
-
-       case INSN:
-       case JUMP_INSN:
-       case CALL_INSN:
-         copy = rtx_alloc (GET_CODE (insn));
-
-         if (GET_CODE (insn) == CALL_INSN)
-           CALL_INSN_FUNCTION_USAGE (copy)
-             = copy_for_inline (CALL_INSN_FUNCTION_USAGE (insn));
-
-         PATTERN (copy) = copy_for_inline (PATTERN (insn));
-         INSN_CODE (copy) = -1;
-         LOG_LINKS (copy) = NULL_RTX;
-         RTX_INTEGRATED_P (copy) = RTX_INTEGRATED_P (insn);
-         break;
-
-       case CODE_LABEL:
-         copy = label_map[CODE_LABEL_NUMBER (insn)];
-         LABEL_NAME (copy) = LABEL_NAME (insn);
-         break;
-
-       case BARRIER:
-         copy = rtx_alloc (BARRIER);
-         break;
-
-       default:
-         abort ();
-       }
-      INSN_UID (copy) = INSN_UID (insn);
-      insn_map[INSN_UID (insn)] = copy;
-      NEXT_INSN (last_insn) = copy;
-      PREV_INSN (copy) = last_insn;
-      last_insn = copy;
-    }
-
-  adjust_copied_decl_tree (DECL_INITIAL (fndecl));
-
-  /* Now copy the REG_NOTES.  */
-  for (insn = NEXT_INSN (get_insns ()); insn; insn = NEXT_INSN (insn))
-    if (GET_RTX_CLASS (GET_CODE (insn)) == 'i'
-       && insn_map[INSN_UID(insn)])
-      REG_NOTES (insn_map[INSN_UID (insn)])
-       = copy_for_inline (REG_NOTES (insn));
-
-  NEXT_INSN (last_insn) = NULL;
-
-  finish_inline (fndecl, head);
-
-  /* Make new versions of the register tables.  */
-  new = (char *) savealloc (regno_pointer_flag_length);
-  bcopy (regno_pointer_flag, new, regno_pointer_flag_length);
-  new1 = (char *) savealloc (regno_pointer_flag_length);
-  bcopy (regno_pointer_align, new1, regno_pointer_flag_length);
-
-  regno_pointer_flag = new;
-  regno_pointer_align = new1;
-
-  set_new_first_and_last_insn (first_insn, last_insn);
-
-  if (label_map)
-    free (label_map);
-}
-
-/* Return a copy of a chain of nodes, chained through the TREE_CHAIN field.
-   For example, this can copy a list made of TREE_LIST nodes.  While copying,
-   for each node copied which doesn't already have is DECL_ABSTRACT_ORIGIN
-   set to some non-zero value, set the DECL_ABSTRACT_ORIGIN of the copy to
-   point to the corresponding (abstract) original node.  */
-
-static tree
-copy_decl_list (list)
-     tree list;
-{
-  tree head;
-  register tree prev, next;
-
-  if (list == 0)
-    return 0;
-
-  head = prev = copy_node (list);
-  if (DECL_ABSTRACT_ORIGIN (head) == NULL_TREE)
-    DECL_ABSTRACT_ORIGIN (head) = list;
-  next = TREE_CHAIN (list);
-  while (next)
-    {
-      register tree copy;
-
-      copy = copy_node (next);
-      if (DECL_ABSTRACT_ORIGIN (copy) == NULL_TREE)
-       DECL_ABSTRACT_ORIGIN (copy) = next;
-      TREE_CHAIN (prev) = copy;
-      prev = copy;
-      next = TREE_CHAIN (next);
-    }
-  return head;
-}
-
-/* Make a copy of the entire tree of blocks BLOCK, and return it.  */
-
-static tree
-copy_decl_tree (block)
-     tree block;
-{
-  tree t, vars, subblocks;
-
-  vars = copy_decl_list (BLOCK_VARS (block));
-  subblocks = 0;
-
-  /* Process all subblocks.  */
-  for (t = BLOCK_SUBBLOCKS (block); t; t = TREE_CHAIN (t))
+  else
     {
-      tree copy = copy_decl_tree (t);
-      TREE_CHAIN (copy) = subblocks;
-      subblocks = copy;
+      copy = copy_node (decl);
+      if (DECL_LANG_SPECIFIC (copy))
+       copy_lang_decl (copy);
+
+      /* TREE_ADDRESSABLE isn't used to indicate that a label's
+        address has been taken; it's for internal bookkeeping in
+        expand_goto_internal.  */
+      if (TREE_CODE (copy) == LABEL_DECL)
+       TREE_ADDRESSABLE (copy) = 0;
     }
 
-  t = copy_node (block);
-  BLOCK_VARS (t) = vars;
-  BLOCK_SUBBLOCKS (t) = nreverse (subblocks);
-  /* If the BLOCK being cloned is already marked as having been instantiated
-     from something else, then leave that `origin' marking alone.  Otherwise,
-     mark the clone as having originated from the BLOCK we are cloning.  */
-  if (BLOCK_ABSTRACT_ORIGIN (t) == NULL_TREE)
-    BLOCK_ABSTRACT_ORIGIN (t) = block;
-  return t;
-}
+  /* Set the DECL_ABSTRACT_ORIGIN so the debugging routines know what
+     declaration inspired this copy.  */
+  DECL_ABSTRACT_ORIGIN (copy) = DECL_ORIGIN (decl);
 
-/* Copy DECL_RTLs in all decls in the given BLOCK node.  */
+  /* The new variable/label has no RTL, yet.  */
+  DECL_RTL (copy) = NULL_RTX;
 
-static void
-copy_decl_rtls (block)
-     tree block;
-{
-  tree t;
+  /* These args would always appear unused, if not for this.  */
+  TREE_USED (copy) = 1;
 
-  for (t = BLOCK_VARS (block); t; t = TREE_CHAIN (t))
-    if (DECL_RTL (t) && GET_CODE (DECL_RTL (t)) == MEM)
-      DECL_RTL (t) = copy_for_inline (DECL_RTL (t));
+  /* Set the context for the new declaration.  */
+  if (!DECL_CONTEXT (decl))
+    /* Globals stay global.  */
+    ;
+  else if (DECL_CONTEXT (decl) != from_fn)
+    /* Things that weren't in the scope of the function we're inlining
+       from aren't in the scope we're inlining too, either.  */
+    ;
+  else if (TREE_STATIC (decl))
+    /* Function-scoped static variables should say in the original
+       function.  */
+    ;
+  else
+    /* Ordinary automatic local variables are now in the scope of the
+       new function.  */
+    DECL_CONTEXT (copy) = to_fn;
 
-  /* Process all subblocks.  */
-  for (t = BLOCK_SUBBLOCKS (block); t; t = TREE_CHAIN (t))
-    copy_decl_rtls (t);
+  return copy;
 }
 
 /* Make the insns and PARM_DECLs of the current function permanent
@@ -813,11 +399,11 @@ copy_decl_rtls (block)
    functions at the end of compilation.  */
 
 void
-save_for_inline_nocopy (fndecl)
+save_for_inline (fndecl)
      tree fndecl;
 {
   rtx insn;
-  rtx head;
+  rtvec argvec;
   rtx first_nonparm_insn;
 
   /* Set up PARMDECL_MAP which maps pseudo-reg number to its PARM_DECL.
@@ -826,7 +412,7 @@ save_for_inline_nocopy (fndecl)
      for the parms, prior to elimination of virtual registers.
      These values are needed for substituting parms properly.  */
 
-  parmdecl_map = (tree *) alloca (max_parm_reg * sizeof (tree));
+  parmdecl_map = (tree *) xmalloc (max_parm_reg * sizeof (tree));
 
   /* Make and emit a return-label if we have not already done so.  */
 
@@ -836,8 +422,7 @@ save_for_inline_nocopy (fndecl)
       emit_label (return_label);
     }
 
-  head = initialize_for_inline (fndecl, get_first_label_num (),
-                               max_label_num (), max_reg_num (), 0);
+  argvec = initialize_for_inline (fndecl);
 
   /* If there are insns that copy parms from the stack into pseudo registers,
      those insns are not copied.  `expand_inline_function' must
@@ -856,118 +441,55 @@ save_for_inline_nocopy (fndecl)
      perform constant folding when its incoming value is constant).
      Otherwise, we have to copy its value into a new register and track
      the new register's life.  */
+  in_nonparm_insns = 0;
+  save_parm_insns (insn, first_nonparm_insn);
 
-  for (insn = NEXT_INSN (insn); insn; insn = NEXT_INSN (insn))
-    {
-      if (insn == first_nonparm_insn)
-       in_nonparm_insns = 1;
-
-      if (GET_RTX_CLASS (GET_CODE (insn)) == 'i')
-       {
-         if (current_function_uses_const_pool)
-           {
-             /* Replace any constant pool references with the actual constant.
-                We will put the constant back if we need to write the
-                function out after all.  */
-             save_constants (&PATTERN (insn));
-             if (REG_NOTES (insn))
-               save_constants (&REG_NOTES (insn));
-           }
-
-         /* Record what interesting things happen to our parameters.  */
-         note_stores (PATTERN (insn), note_modified_parmregs);
-       }
-    }
-
-  /* Also scan all decls, and replace any constant pool references with the
-     actual constant.  */
-  save_constants_in_decl_trees (DECL_INITIAL (fndecl));
-
-  /* We have now allocated all that needs to be allocated permanently
-     on the rtx obstack.  Set our high-water mark, so that we
-     can free the rest of this when the time comes.  */
-
-  preserve_data ();
+  cfun->inl_max_label_num = max_label_num ();
+  cfun->inl_last_parm_insn = cfun->x_last_parm_insn;
+  cfun->original_arg_vector = argvec;
+  cfun->original_decl_initial = DECL_INITIAL (fndecl);
+  cfun->no_debugging_symbols = (write_symbols == NO_DEBUG);
+  DECL_SAVED_INSNS (fndecl) = cfun;
 
-  finish_inline (fndecl, head);
+  /* Clean up.  */
+  free (parmdecl_map);
 }
-\f
-/* Given PX, a pointer into an insn, search for references to the constant
-   pool.  Replace each with a CONST that has the mode of the original
-   constant, contains the constant, and has RTX_INTEGRATED_P set.
-   Similarly, constant pool addresses not enclosed in a MEM are replaced
-   with an ADDRESS and CONST rtx which also gives the constant, its
-   mode, the mode of the address, and has RTX_INTEGRATED_P set.  */
+
+/* Scan the chain of insns to see what happens to our PARM_DECLs.  If a
+   PARM_DECL is used but never modified, we can substitute its rtl directly
+   when expanding inline (and perform constant folding when its incoming
+   value is constant). Otherwise, we have to copy its value into a new
+   register and track the new register's life.  */
 
 static void
-save_constants (px)
-     rtx *px;
+save_parm_insns (insn, first_nonparm_insn)
+     rtx insn;
+     rtx first_nonparm_insn;
 {
-  rtx x;
-  int i, j;
-
- again:
-  x = *px;
-
-  /* If this is a CONST_DOUBLE, don't try to fix things up in 
-     CONST_DOUBLE_MEM, because this is an infinite recursion.  */
-  if (GET_CODE (x) == CONST_DOUBLE)
+  if (insn == NULL_RTX)
     return;
-  else if (GET_CODE (x) == MEM && GET_CODE (XEXP (x, 0)) == SYMBOL_REF
-          && CONSTANT_POOL_ADDRESS_P (XEXP (x,0)))
-    {
-      enum machine_mode const_mode = get_pool_mode (XEXP (x, 0));
-      rtx new = gen_rtx_CONST (const_mode, get_pool_constant (XEXP (x, 0)));
-      RTX_INTEGRATED_P (new) = 1;
 
-      /* If the MEM was in a different mode than the constant (perhaps we
-        were only looking at the low-order part), surround it with a 
-        SUBREG so we can save both modes.  */
-
-      if (GET_MODE (x) != const_mode)
-       {
-         new = gen_rtx_SUBREG (GET_MODE (x), new, 0);
-         RTX_INTEGRATED_P (new) = 1;
-       }
-
-      *px = new;
-      save_constants (&XEXP (*px, 0));
-    }
-  else if (GET_CODE (x) == SYMBOL_REF
-          && CONSTANT_POOL_ADDRESS_P (x))
-    {
-      *px = gen_rtx_ADDRESS (GET_MODE (x),
-                            gen_rtx_CONST (get_pool_mode (x),
-                                           get_pool_constant (x)));
-      save_constants (&XEXP (*px, 0));
-      RTX_INTEGRATED_P (*px) = 1;
-    }
-
-  else
+  for (insn = NEXT_INSN (insn); insn; insn = NEXT_INSN (insn))
     {
-      char *fmt = GET_RTX_FORMAT (GET_CODE (x));
-      int len = GET_RTX_LENGTH (GET_CODE (x));
+      if (insn == first_nonparm_insn)
+       in_nonparm_insns = 1;
 
-      for (i = len-1; i >= 0; i--)
+      if (INSN_P (insn))
        {
-         switch (fmt[i])
+         /* Record what interesting things happen to our parameters.  */
+         note_stores (PATTERN (insn), note_modified_parmregs, NULL);
+
+         /* If this is a CALL_PLACEHOLDER insn then we need to look into the
+            three attached sequences: normal call, sibling call and tail
+            recursion.  */
+         if (GET_CODE (insn) == CALL_INSN
+             && GET_CODE (PATTERN (insn)) == CALL_PLACEHOLDER)
            {
-           case 'E':
-             for (j = 0; j < XVECLEN (x, i); j++)
-               save_constants (&XVECEXP (x, i, j));
-             break;
+             int i;
 
-           case 'e':
-             if (XEXP (x, i) == 0)
-               continue;
-             if (i == 0)
-               {
-                 /* Hack tail-recursion here.  */
-                 px = &XEXP (x, 0);
-                 goto again;
-               }
-             save_constants (&XEXP (x, i));
-             break;
+             for (i = 0; i < 3; i++)
+               save_parm_insns (XEXP (PATTERN (insn), i),
+                                first_nonparm_insn);
            }
        }
     }
@@ -976,9 +498,10 @@ save_constants (px)
 /* Note whether a parameter is modified or not.  */
 
 static void
-note_modified_parmregs (reg, x)
+note_modified_parmregs (reg, x, data)
      rtx reg;
-     rtx x;
+     rtx x ATTRIBUTE_UNUSED;
+     void *data ATTRIBUTE_UNUSED;
 {
   if (GET_CODE (reg) == REG && in_nonparm_insns
       && REGNO (reg) < max_parm_reg
@@ -987,271 +510,87 @@ note_modified_parmregs (reg, x)
     TREE_READONLY (parmdecl_map[REGNO (reg)]) = 0;
 }
 
-/* Copy the rtx ORIG recursively, replacing pseudo-regs and labels
-   according to `reg_map' and `label_map'.  The original rtl insns
-   will be saved for inlining; this is used to make a copy
-   which is used to finish compiling the inline function itself.
-
-   If we find a "saved" constant pool entry, one which was replaced with
-   the value of the constant, convert it back to a constant pool entry.
-   Since the pool wasn't touched, this should simply restore the old
-   address.
-
-   All other kinds of rtx are copied except those that can never be
-   changed during compilation.  */
+/* Unfortunately, we need a global copy of const_equiv map for communication
+   with a function called from note_stores.  Be *very* careful that this
+   is used properly in the presence of recursion.  */
 
-static rtx
-copy_for_inline (orig)
-     rtx orig;
-{
-  register rtx x = orig;
-  register rtx new;
-  register int i;
-  register enum rtx_code code;
-  register char *format_ptr;
+varray_type global_const_equiv_varray;
+\f
+#define FIXED_BASE_PLUS_P(X) \
+  (GET_CODE (X) == PLUS && GET_CODE (XEXP (X, 1)) == CONST_INT \
+   && GET_CODE (XEXP (X, 0)) == REG                            \
+   && REGNO (XEXP (X, 0)) >= FIRST_VIRTUAL_REGISTER            \
+   && REGNO (XEXP (X, 0)) <= LAST_VIRTUAL_REGISTER)
 
-  if (x == 0)
-    return x;
+/* Called to set up a mapping for the case where a parameter is in a
+   register.  If it is read-only and our argument is a constant, set up the
+   constant equivalence.
 
-  code = GET_CODE (x);
+   If LOC is REG_USERVAR_P, the usual case, COPY must also have that flag set
+   if it is a register.
 
-  /* These types may be freely shared.  */
-
-  switch (code)
+   Also, don't allow hard registers here; they might not be valid when
+   substituted into insns.  */
+static void
+process_reg_param (map, loc, copy)
+     struct inline_remap *map;
+     rtx loc, copy;
+{
+  if ((GET_CODE (copy) != REG && GET_CODE (copy) != SUBREG)
+      || (GET_CODE (copy) == REG && REG_USERVAR_P (loc)
+         && ! REG_USERVAR_P (copy))
+      || (GET_CODE (copy) == REG
+         && REGNO (copy) < FIRST_PSEUDO_REGISTER))
     {
-    case QUEUED:
-    case CONST_INT:
-    case SYMBOL_REF:
-    case PC:
-    case CC0:
-      return x;
-
-    case CONST_DOUBLE:
-      /* We have to make a new CONST_DOUBLE to ensure that we account for
-        it correctly.  Using the old CONST_DOUBLE_MEM data is wrong.  */
-      if (GET_MODE_CLASS (GET_MODE (x)) == MODE_FLOAT)
-       {
-         REAL_VALUE_TYPE d;
-
-         REAL_VALUE_FROM_CONST_DOUBLE (d, x);
-         return CONST_DOUBLE_FROM_REAL_VALUE (d, GET_MODE (x));
-       }
-      else
-       return immed_double_const (CONST_DOUBLE_LOW (x), CONST_DOUBLE_HIGH (x),
-                                  VOIDmode);
-
-    case CONST:
-      /* Get constant pool entry for constant in the pool.  */
-      if (RTX_INTEGRATED_P (x))
-       return validize_mem (force_const_mem (GET_MODE (x),
-                                             copy_for_inline (XEXP (x, 0))));
-      break;
-
-    case SUBREG:
-      /* Get constant pool entry, but access in different mode.  */
-      if (RTX_INTEGRATED_P (x))
-       {
-         new = force_const_mem (GET_MODE (SUBREG_REG (x)),
-                                copy_for_inline (XEXP (SUBREG_REG (x), 0)));
-
-         PUT_MODE (new, GET_MODE (x));
-         return validize_mem (new);
-       }
-      break;
-
-    case ADDRESS:
-      /* If not special for constant pool error.  Else get constant pool
-        address.  */
-      if (! RTX_INTEGRATED_P (x))
-       abort ();
-
-      new = force_const_mem (GET_MODE (XEXP (x, 0)),
-                            copy_for_inline (XEXP (XEXP (x, 0), 0)));
-      new = XEXP (new, 0);
-
-#ifdef POINTERS_EXTEND_UNSIGNED
-      if (GET_MODE (new) != GET_MODE (x))
-       new = convert_memory_address (GET_MODE (x), new);
-#endif
-
-      return new;
-
-    case ASM_OPERANDS:
-      /* If a single asm insn contains multiple output operands
-        then it contains multiple ASM_OPERANDS rtx's that share operand 3.
-        We must make sure that the copied insn continues to share it.  */
-      if (orig_asm_operands_vector == XVEC (orig, 3))
-       {
-         x = rtx_alloc (ASM_OPERANDS);
-         x->volatil = orig->volatil;
-         XSTR (x, 0) = XSTR (orig, 0);
-         XSTR (x, 1) = XSTR (orig, 1);
-         XINT (x, 2) = XINT (orig, 2);
-         XVEC (x, 3) = copy_asm_operands_vector;
-         XVEC (x, 4) = copy_asm_constraints_vector;
-         XSTR (x, 5) = XSTR (orig, 5);
-         XINT (x, 6) = XINT (orig, 6);
-         return x;
-       }
-      break;
-
-    case MEM:
-      /* A MEM is usually allowed to be shared if its address is constant
-        or is a constant plus one of the special registers.
-
-        We do not allow sharing of addresses that are either a special
-        register or the sum of a constant and a special register because
-        it is possible for unshare_all_rtl to copy the address, into memory
-        that won't be saved.  Although the MEM can safely be shared, and
-        won't be copied there, the address itself cannot be shared, and may
-        need to be copied. 
-
-        There are also two exceptions with constants: The first is if the
-        constant is a LABEL_REF or the sum of the LABEL_REF
-        and an integer.  This case can happen if we have an inline
-        function that supplies a constant operand to the call of another
-        inline function that uses it in a switch statement.  In this case,
-        we will be replacing the LABEL_REF, so we have to replace this MEM
-        as well.
-
-        The second case is if we have a (const (plus (address ..) ...)).
-        In that case we need to put back the address of the constant pool
-        entry.  */
-
-      if (CONSTANT_ADDRESS_P (XEXP (x, 0))
-         && GET_CODE (XEXP (x, 0)) != LABEL_REF
-         && ! (GET_CODE (XEXP (x, 0)) == CONST
-               && (GET_CODE (XEXP (XEXP (x, 0), 0)) == PLUS
-                   && ((GET_CODE (XEXP (XEXP (XEXP (x, 0), 0), 0))
-                       == LABEL_REF)
-                       || (GET_CODE (XEXP (XEXP (XEXP (x, 0), 0), 0))
-                           == ADDRESS)))))
-       return x;
-      break;
-
-    case LABEL_REF:
-      /* If this is a non-local label, just make a new LABEL_REF.
-        Otherwise, use the new label as well.  */
-      x = gen_rtx_LABEL_REF (GET_MODE (orig),
-                            LABEL_REF_NONLOCAL_P (orig) ? XEXP (orig, 0)
-                            : label_map[CODE_LABEL_NUMBER (XEXP (orig, 0))]);
-      LABEL_REF_NONLOCAL_P (x) = LABEL_REF_NONLOCAL_P (orig);
-      LABEL_OUTSIDE_LOOP_P (x) = LABEL_OUTSIDE_LOOP_P (orig);
-      return x;
-
-    case REG:
-      if (REGNO (x) > LAST_VIRTUAL_REGISTER)
-       return reg_map [REGNO (x)];
-      else
-       return x;
-
-    case SET:
-      /* If a parm that gets modified lives in a pseudo-reg,
-        clear its TREE_READONLY to prevent certain optimizations.  */
-      {
-       rtx dest = SET_DEST (x);
-
-       while (GET_CODE (dest) == STRICT_LOW_PART
-              || GET_CODE (dest) == ZERO_EXTRACT
-              || GET_CODE (dest) == SUBREG)
-         dest = XEXP (dest, 0);
-
-       if (GET_CODE (dest) == REG
-           && REGNO (dest) < max_parm_reg
-           && REGNO (dest) >= FIRST_PSEUDO_REGISTER
-           && parmdecl_map[REGNO (dest)] != 0
-           /* The insn to load an arg pseudo from a stack slot
-              does not count as modifying it.  */
-           && in_nonparm_insns)
-         TREE_READONLY (parmdecl_map[REGNO (dest)]) = 0;
-      }
-      break;
-
-#if 0 /* This is a good idea, but here is the wrong place for it.  */
-      /* Arrange that CONST_INTs always appear as the second operand
-        if they appear, and that `frame_pointer_rtx' or `arg_pointer_rtx'
-        always appear as the first.  */
-    case PLUS:
-      if (GET_CODE (XEXP (x, 0)) == CONST_INT
-         || (XEXP (x, 1) == frame_pointer_rtx
-             || (ARG_POINTER_REGNUM != FRAME_POINTER_REGNUM
-                 && XEXP (x, 1) == arg_pointer_rtx)))
-       {
-         rtx t = XEXP (x, 0);
-         XEXP (x, 0) = XEXP (x, 1);
-         XEXP (x, 1) = t;
-       }
-      break;
-#endif
-    default:
-      break;
+      rtx temp = copy_to_mode_reg (GET_MODE (loc), copy);
+      REG_USERVAR_P (temp) = REG_USERVAR_P (loc);
+      if (CONSTANT_P (copy) || FIXED_BASE_PLUS_P (copy))
+       SET_CONST_EQUIV_DATA (map, temp, copy, CONST_AGE_PARM);
+      copy = temp;
     }
+  map->reg_map[REGNO (loc)] = copy;
+}
 
-  /* Replace this rtx with a copy of itself.  */
-
-  x = rtx_alloc (code);
-  bcopy ((char *) orig, (char *) x,
-        (sizeof (*x) - sizeof (x->fld)
-         + sizeof (x->fld[0]) * GET_RTX_LENGTH (code)));
+/* Used by duplicate_eh_handlers to map labels for the exception table */
+static struct inline_remap *eif_eh_map;
 
-  /* Now scan the subexpressions recursively.
-     We can store any replaced subexpressions directly into X
-     since we know X is not shared!  Any vectors in X
-     must be copied if X was copied.  */
+static rtx
+expand_inline_function_eh_labelmap (label)
+     rtx label;
+{
+  int index = CODE_LABEL_NUMBER (label);
+  return get_label_from_map (eif_eh_map, index);
+}
 
-  format_ptr = GET_RTX_FORMAT (code);
+/* Compare two BLOCKs for qsort.  The key we sort on is the
+   BLOCK_ABSTRACT_ORIGIN of the blocks.  */
 
-  for (i = 0; i < GET_RTX_LENGTH (code); i++)
-    {
-      switch (*format_ptr++)
-       {
-       case 'e':
-         XEXP (x, i) = copy_for_inline (XEXP (x, i));
-         break;
-
-       case 'u':
-         /* Change any references to old-insns to point to the
-            corresponding copied insns.  */
-         XEXP (x, i) = insn_map[INSN_UID (XEXP (x, i))];
-         break;
+static int
+compare_blocks (v1, v2)
+     const PTR v1;
+     const PTR v2;
+{
+  tree b1 = *((const tree *) v1);
+  tree b2 = *((const tree *) v2);
 
-       case 'E':
-         if (XVEC (x, i) != NULL && XVECLEN (x, i) != 0)
-           {
-             register int j;
+  return ((char *) BLOCK_ABSTRACT_ORIGIN (b1)
+         - (char *) BLOCK_ABSTRACT_ORIGIN (b2));
+}
 
-             XVEC (x, i) = gen_rtvec_vv (XVECLEN (x, i), XVEC (x, i)->elem);
-             for (j = 0; j < XVECLEN (x, i); j++)
-               XVECEXP (x, i, j)
-                 = copy_for_inline (XVECEXP (x, i, j));
-           }
-         break;
-       }
-    }
+/* Compare two BLOCKs for bsearch.  The first pointer corresponds to
+   an original block; the second to a remapped equivalent.  */
 
-  if (code == ASM_OPERANDS && orig_asm_operands_vector == 0)
-    {
-      orig_asm_operands_vector = XVEC (orig, 3);
-      copy_asm_operands_vector = XVEC (x, 3);
-      copy_asm_constraints_vector = XVEC (x, 4);
-    }
+static int
+find_block (v1, v2)
+     const PTR v1;
+     const PTR v2;
+{
+  const union tree_node *b1 = (const union tree_node *) v1;
+  tree b2 = *((const tree *) v2);
 
-  return x;
+  return ((const char *) b1 - (char *) BLOCK_ABSTRACT_ORIGIN (b2));
 }
 
-/* Unfortunately, we need a global copy of const_equiv map for communication
-   with a function called from note_stores.  Be *very* careful that this
-   is used properly in the presence of recursion.  */
-
-rtx *global_const_equiv_map;
-int global_const_equiv_map_size;
-\f
-#define FIXED_BASE_PLUS_P(X) \
-  (GET_CODE (X) == PLUS && GET_CODE (XEXP (X, 1)) == CONST_INT \
-   && GET_CODE (XEXP (X, 0)) == REG                            \
-   && REGNO (XEXP (X, 0)) >= FIRST_VIRTUAL_REGISTER            \
-   && REGNO (XEXP (X, 0)) <= LAST_VIRTUAL_REGISTER)
-
 /* Integrate the procedure defined by FNDECL.  Note that this function
    may wind up calling itself.  Since the static variables are not
    reentrant, we do not assign them until after the possibility
@@ -1274,40 +613,49 @@ expand_inline_function (fndecl, parms, target, ignore, type,
      tree type;
      rtx structure_value_addr;
 {
+  struct function *inlining_previous;
+  struct function *inl_f = DECL_SAVED_INSNS (fndecl);
   tree formal, actual, block;
-  rtx header = DECL_SAVED_INSNS (fndecl);
-  rtx insns = FIRST_FUNCTION_INSN (header);
-  rtx parm_insns = FIRST_PARM_INSN (header);
+  rtx parm_insns = inl_f->emit->x_first_insn;
+  rtx insns = (inl_f->inl_last_parm_insn
+              ? NEXT_INSN (inl_f->inl_last_parm_insn)
+              : parm_insns);
   tree *arg_trees;
   rtx *arg_vals;
-  rtx insn;
   int max_regno;
   register int i;
-  int min_labelno = FIRST_LABELNO (header);
-  int max_labelno = LAST_LABELNO (header);
+  int min_labelno = inl_f->emit->x_first_label_num;
+  int max_labelno = inl_f->inl_max_label_num;
   int nargs;
-  rtx local_return_label = 0;
   rtx loc;
   rtx stack_save = 0;
   rtx temp;
-  struct inline_remap *map;
+  struct inline_remap *map = 0;
 #ifdef HAVE_cc0
   rtx cc0_insn = 0;
 #endif
-  rtvec arg_vector = ORIGINAL_ARG_VECTOR (header);
+  rtvec arg_vector = (rtvec) inl_f->original_arg_vector;
   rtx static_chain_value = 0;
+  int inl_max_uid;
 
   /* The pointer used to track the true location of the memory used
      for MAP->LABEL_MAP.  */
   rtx *real_label_map = 0;
 
   /* Allow for equivalences of the pseudos we make for virtual fp and ap.  */
-  max_regno = MAX_REGNUM (header) + 3;
+  max_regno = inl_f->emit->x_reg_rtx_no + 3;
   if (max_regno < FIRST_PSEUDO_REGISTER)
     abort ();
 
+  /* Pull out the decl for the function definition; fndecl may be a
+     local declaration, which would break DECL_ABSTRACT_ORIGIN.  */
+  fndecl = inl_f->decl;
+
   nargs = list_length (DECL_ARGUMENTS (fndecl));
 
+  if (cfun->preferred_stack_boundary < inl_f->preferred_stack_boundary)
+    cfun->preferred_stack_boundary = inl_f->preferred_stack_boundary;
+
   /* Check that the parms type match and that sufficient arguments were
      passed.  Since the appropriate conversions or default promotions have
      already been applied, the machine modes should match exactly.  */
@@ -1341,16 +689,11 @@ expand_inline_function (fndecl, parms, target, ignore, type,
     expand_expr (TREE_VALUE (actual), const0_rtx,
                 TYPE_MODE (TREE_TYPE (TREE_VALUE (actual))), 0);
 
-  /* Make a binding contour to keep inline cleanups called at
-     outer function-scope level from looking like they are shadowing
-     parameter declarations.  */
-  pushlevel (0);
-
   /* Expand the function arguments.  Do this first so that any
      new registers get created before we allocate the maps.  */
 
-  arg_vals = (rtx *) alloca (nargs * sizeof (rtx));
-  arg_trees = (tree *) alloca (nargs * sizeof (tree));
+  arg_vals = (rtx *) xmalloc (nargs * sizeof (rtx));
+  arg_trees = (tree *) xmalloc (nargs * sizeof (tree));
 
   for (formal = DECL_ARGUMENTS (fndecl), actual = parms, i = 0;
        formal;
@@ -1373,13 +716,9 @@ expand_inline_function (fndecl, parms, target, ignore, type,
       if (GET_CODE (loc) == MEM && GET_CODE (XEXP (loc, 0)) == REG
          && REGNO (XEXP (loc, 0)) > LAST_VIRTUAL_REGISTER)
        {
-         rtx stack_slot
-           = assign_stack_temp (TYPE_MODE (TREE_TYPE (arg)),
-                                int_size_in_bytes (TREE_TYPE (arg)), 1);
-         MEM_IN_STRUCT_P (stack_slot) = AGGREGATE_TYPE_P (TREE_TYPE (arg));
+         rtx stack_slot = assign_temp (TREE_TYPE (arg), 1, 1, 1);
 
          store_expr (arg, stack_slot, 0);
-
          arg_vals[i] = XEXP (stack_slot, 0);
          invisiref = 1;
        }
@@ -1423,19 +762,18 @@ expand_inline_function (fndecl, parms, target, ignore, type,
        arg_vals[i] = copy_to_mode_reg (GET_MODE (loc), arg_vals[i]);
 
       if (arg_vals[i] != 0 && GET_CODE (arg_vals[i]) == REG
-         && TREE_CODE (TREE_TYPE (formal)) == POINTER_TYPE)
+         && POINTER_TYPE_P (TREE_TYPE (formal)))
        mark_reg_pointer (arg_vals[i],
-                         (TYPE_ALIGN (TREE_TYPE (TREE_TYPE (formal)))
-                          / BITS_PER_UNIT));
+                         TYPE_ALIGN (TREE_TYPE (TREE_TYPE (formal))));
     }
-       
+
   /* Allocate the structures we use to remap things.  */
 
-  map = (struct inline_remap *) alloca (sizeof (struct inline_remap));
+  map = (struct inline_remap *) xmalloc (sizeof (struct inline_remap));
   map->fndecl = fndecl;
 
-  map->reg_map = (rtx *) alloca (max_regno * sizeof (rtx));
-  bzero ((char *) map->reg_map, max_regno * sizeof (rtx));
+  VARRAY_TREE_INIT (map->block_map, 10, "block_map");
+  map->reg_map = (rtx *) xcalloc (max_regno, sizeof (rtx));
 
   /* We used to use alloca here, but the size of what it would try to
      allocate would occasionally cause it to exceed the stack limit and
@@ -1444,37 +782,32 @@ expand_inline_function (fndecl, parms, target, ignore, type,
     = (rtx *) xmalloc ((max_labelno) * sizeof (rtx));
   map->label_map = real_label_map;
 
-  map->insn_map = (rtx *) alloca (INSN_UID (header) * sizeof (rtx));
-  bzero ((char *) map->insn_map, INSN_UID (header) * sizeof (rtx));
+  inl_max_uid = (inl_f->emit->x_cur_insn_uid + 1);
+  map->insn_map = (rtx *) xcalloc (inl_max_uid, sizeof (rtx));
   map->min_insnno = 0;
-  map->max_insnno = INSN_UID (header);
+  map->max_insnno = inl_max_uid;
 
   map->integrating = 1;
 
-  /* const_equiv_map maps pseudos in our routine to constants, so it needs to
-     be large enough for all our pseudos.  This is the number we are currently
-     using plus the number in the called routine, plus 15 for each arg,
-     five to compute the virtual frame pointer, and five for the return value.
-     This should be enough for most cases.  We do not reference entries
-     outside the range of the map.
+  /* const_equiv_varray maps pseudos in our routine to constants, so
+     it needs to be large enough for all our pseudos.  This is the
+     number we are currently using plus the number in the called
+     routine, plus 15 for each arg, five to compute the virtual frame
+     pointer, and five for the return value.  This should be enough
+     for most cases.  We do not reference entries outside the range of
+     the map.
 
      ??? These numbers are quite arbitrary and were obtained by
      experimentation.  At some point, we should try to allocate the
      table after all the parameters are set up so we an more accurately
      estimate the number of pseudos we will need.  */
 
-  map->const_equiv_map_size
-    = max_reg_num () + (max_regno - FIRST_PSEUDO_REGISTER) + 15 * nargs + 10;
-
-  map->const_equiv_map
-    = (rtx *)alloca (map->const_equiv_map_size * sizeof (rtx));
-  bzero ((char *) map->const_equiv_map,
-        map->const_equiv_map_size * sizeof (rtx));
-
-  map->const_age_map
-    = (unsigned *)alloca (map->const_equiv_map_size * sizeof (unsigned));
-  bzero ((char *) map->const_age_map,
-        map->const_equiv_map_size * sizeof (unsigned));
+  VARRAY_CONST_EQUIV_INIT (map->const_equiv_varray,
+                          (max_reg_num ()
+                           + (max_regno - FIRST_PSEUDO_REGISTER)
+                           + 15 * nargs
+                           + 10),
+                          "expand_inline_function");
   map->const_age = 0;
 
   /* Record the current insn in case we have to set up pointers to frame
@@ -1484,21 +817,21 @@ expand_inline_function (fndecl, parms, target, ignore, type,
   if (map->insns_at_start == 0)
     map->insns_at_start = emit_note (NULL_PTR, NOTE_INSN_DELETED);
 
-  map->regno_pointer_flag = INLINE_REGNO_POINTER_FLAG (header);
-  map->regno_pointer_align = INLINE_REGNO_POINTER_ALIGN (header);
+  map->regno_pointer_align = inl_f->emit->regno_pointer_align;
+  map->x_regno_reg_rtx = inl_f->emit->x_regno_reg_rtx;
 
   /* Update the outgoing argument size to allow for those in the inlined
      function.  */
-  if (OUTGOING_ARGS_SIZE (header) > current_function_outgoing_args_size)
-    current_function_outgoing_args_size = OUTGOING_ARGS_SIZE (header);
+  if (inl_f->outgoing_args_size > current_function_outgoing_args_size)
+    current_function_outgoing_args_size = inl_f->outgoing_args_size;
 
   /* If the inline function needs to make PIC references, that means
      that this function's PIC offset table must be used.  */
-  if (FUNCTION_FLAGS (header) & FUNCTION_FLAGS_USES_PIC_OFFSET_TABLE)
+  if (inl_f->uses_pic_offset_table)
     current_function_uses_pic_offset_table = 1;
 
   /* If this function needs a context, set it up.  */
-  if (FUNCTION_FLAGS (header) & FUNCTION_FLAGS_NEEDS_CONTEXT)
+  if (inl_f->needs_context)
     static_chain_value = lookup_static_chain (fndecl);
 
   if (GET_CODE (parm_insns) == NOTE
@@ -1543,111 +876,50 @@ expand_inline_function (fndecl, parms, target, ignore, type,
          if (GET_CODE (copy) != REG)
            {
              temp = copy_addr_to_reg (copy);
-             if ((CONSTANT_P (copy) || FIXED_BASE_PLUS_P (copy))
-                 && REGNO (temp) < map->const_equiv_map_size)
-               {
-                 map->const_equiv_map[REGNO (temp)] = copy;
-                 map->const_age_map[REGNO (temp)] = CONST_AGE_PARM;
-               }
+             if (CONSTANT_P (copy) || FIXED_BASE_PLUS_P (copy))
+               SET_CONST_EQUIV_DATA (map, temp, copy, CONST_AGE_PARM);
              copy = temp;
            }
          map->reg_map[REGNO (XEXP (loc, 0))] = copy;
        }
       else if (GET_CODE (loc) == MEM)
        {
-         /* This is the case of a parameter that lives in memory.
-            It will live in the block we allocate in the called routine's
+         /* This is the case of a parameter that lives in memory.  It
+            will live in the block we allocate in the called routine's
             frame that simulates the incoming argument area.  Do nothing
-            now; we will call store_expr later.  */
-         ;
+            with the parameter now; we will call store_expr later.  In
+            this case, however, we must ensure that the virtual stack and
+            incoming arg rtx values are expanded now so that we can be
+            sure we have enough slots in the const equiv map since the
+            store_expr call can easily blow the size estimate.  */
+         if (DECL_FRAME_SIZE (fndecl) != 0)
+           copy_rtx_and_substitute (virtual_stack_vars_rtx, map, 0);
+
+         if (DECL_SAVED_INSNS (fndecl)->args_size != 0)
+           copy_rtx_and_substitute (virtual_incoming_args_rtx, map, 0);
        }
       else if (GET_CODE (loc) == REG)
-       {
-         /* This is the good case where the parameter is in a register.
-            If it is read-only and our argument is a constant, set up the
-            constant equivalence.
-
-            If LOC is REG_USERVAR_P, the usual case, COPY must also have
-            that flag set if it is a register.
-
-            Also, don't allow hard registers here; they might not be valid
-            when substituted into insns.  */
-
-         if ((GET_CODE (copy) != REG && GET_CODE (copy) != SUBREG)
-             || (GET_CODE (copy) == REG && REG_USERVAR_P (loc)
-                 && ! REG_USERVAR_P (copy))
-             || (GET_CODE (copy) == REG
-                 && REGNO (copy) < FIRST_PSEUDO_REGISTER))
-           {
-             temp = copy_to_mode_reg (GET_MODE (loc), copy);
-             REG_USERVAR_P (temp) = REG_USERVAR_P (loc);
-             if ((CONSTANT_P (copy) || FIXED_BASE_PLUS_P (copy))
-                 && REGNO (temp) < map->const_equiv_map_size)
-               {
-                 map->const_equiv_map[REGNO (temp)] = copy;
-                 map->const_age_map[REGNO (temp)] = CONST_AGE_PARM;
-               }
-             copy = temp;
-           }
-         map->reg_map[REGNO (loc)] = copy;
-       }
+       process_reg_param (map, loc, copy);
       else if (GET_CODE (loc) == CONCAT)
        {
-         /* This is the good case where the parameter is in a
-            pair of separate pseudos.
-            If it is read-only and our argument is a constant, set up the
-            constant equivalence.
-
-            If LOC is REG_USERVAR_P, the usual case, COPY must also have
-            that flag set if it is a register.
-
-            Also, don't allow hard registers here; they might not be valid
-            when substituted into insns.  */
          rtx locreal = gen_realpart (GET_MODE (XEXP (loc, 0)), loc);
          rtx locimag = gen_imagpart (GET_MODE (XEXP (loc, 0)), loc);
          rtx copyreal = gen_realpart (GET_MODE (locreal), copy);
          rtx copyimag = gen_imagpart (GET_MODE (locimag), copy);
 
-         if ((GET_CODE (copyreal) != REG && GET_CODE (copyreal) != SUBREG)
-             || (GET_CODE (copyreal) == REG && REG_USERVAR_P (locreal)
-                 && ! REG_USERVAR_P (copyreal))
-             || (GET_CODE (copyreal) == REG
-                 && REGNO (copyreal) < FIRST_PSEUDO_REGISTER))
-           {
-             temp = copy_to_mode_reg (GET_MODE (locreal), copyreal);
-             REG_USERVAR_P (temp) = REG_USERVAR_P (locreal);
-             if ((CONSTANT_P (copyreal) || FIXED_BASE_PLUS_P (copyreal))
-                 && REGNO (temp) < map->const_equiv_map_size)
-               {
-                 map->const_equiv_map[REGNO (temp)] = copyreal;
-                 map->const_age_map[REGNO (temp)] = CONST_AGE_PARM;
-               }
-             copyreal = temp;
-           }
-         map->reg_map[REGNO (locreal)] = copyreal;
-
-         if ((GET_CODE (copyimag) != REG && GET_CODE (copyimag) != SUBREG)
-             || (GET_CODE (copyimag) == REG && REG_USERVAR_P (locimag)
-                 && ! REG_USERVAR_P (copyimag))
-             || (GET_CODE (copyimag) == REG
-                 && REGNO (copyimag) < FIRST_PSEUDO_REGISTER))
-           {
-             temp = copy_to_mode_reg (GET_MODE (locimag), copyimag);
-             REG_USERVAR_P (temp) = REG_USERVAR_P (locimag);
-             if ((CONSTANT_P (copyimag) || FIXED_BASE_PLUS_P (copyimag))
-                 && REGNO (temp) < map->const_equiv_map_size)
-               {
-                 map->const_equiv_map[REGNO (temp)] = copyimag;
-                 map->const_age_map[REGNO (temp)] = CONST_AGE_PARM;
-               }
-             copyimag = temp;
-           }
-         map->reg_map[REGNO (locimag)] = copyimag;
+         process_reg_param (map, locreal, copyreal);
+         process_reg_param (map, locimag, copyimag);
        }
       else
        abort ();
     }
 
+  /* Tell copy_rtx_and_substitute to handle constant pool SYMBOL_REFs
+     specially.  This function can be called recursively, so we need to
+     save the previous value.  */
+  inlining_previous = inlining;
+  inlining = inl_f;
+
   /* Now do the parameters that will be placed in memory.  */
 
   for (formal = DECL_ARGUMENTS (fndecl), i = 0;
@@ -1667,8 +939,8 @@ expand_inline_function (fndecl, parms, target, ignore, type,
 
          /* Compute the address in the area we reserved and store the
             value there.  */
-         temp = copy_rtx_and_substitute (loc, map);
-         subst_constants (&temp, NULL_RTX, map);
+         temp = copy_rtx_and_substitute (loc, map, 1);
+         subst_constants (&temp, NULL_RTX, map, 1);
          apply_change_group ();
          if (! memory_address_p (GET_MODE (temp), XEXP (temp, 0)))
            temp = change_address (temp, VOIDmode, XEXP (temp, 0));
@@ -1684,46 +956,69 @@ expand_inline_function (fndecl, parms, target, ignore, type,
 
   map->inline_target = 0;
   loc = DECL_RTL (DECL_RESULT (fndecl));
+
   if (TYPE_MODE (type) == VOIDmode)
     /* There is no return value to worry about.  */
     ;
   else if (GET_CODE (loc) == MEM)
     {
-      if (! structure_value_addr || ! aggregate_value_p (DECL_RESULT (fndecl)))
-       abort ();
-  
-      /* Pass the function the address in which to return a structure value.
-        Note that a constructor can cause someone to call us with
-        STRUCTURE_VALUE_ADDR, but the initialization takes place
-        via the first parameter, rather than the struct return address.
-
-        We have two cases:  If the address is a simple register indirect,
-        use the mapping mechanism to point that register to our structure
-        return address.  Otherwise, store the structure return value into
-        the place that it will be referenced from.  */
-
-      if (GET_CODE (XEXP (loc, 0)) == REG)
+      if (GET_CODE (XEXP (loc, 0)) == ADDRESSOF)
        {
-         temp = force_reg (Pmode,
-                           force_operand (structure_value_addr, NULL_RTX));
-         map->reg_map[REGNO (XEXP (loc, 0))] = temp;
-         if ((CONSTANT_P (structure_value_addr)
-              || GET_CODE (structure_value_addr) == ADDRESSOF
-              || (GET_CODE (structure_value_addr) == PLUS
-                  && XEXP (structure_value_addr, 0) == virtual_stack_vars_rtx
-                  && GET_CODE (XEXP (structure_value_addr, 1)) == CONST_INT))
-             && REGNO (temp) < map->const_equiv_map_size)
-           {
-             map->const_equiv_map[REGNO (temp)] = structure_value_addr;
-             map->const_age_map[REGNO (temp)] = CONST_AGE_PARM;
-           }
+         temp = copy_rtx_and_substitute (loc, map, 1);
+         subst_constants (&temp, NULL_RTX, map, 1);
+         apply_change_group ();
+         target = temp;
        }
       else
        {
-         temp = copy_rtx_and_substitute (loc, map);
-         subst_constants (&temp, NULL_RTX, map);
-         apply_change_group ();
-         emit_move_insn (temp, structure_value_addr);
+         if (! structure_value_addr
+             || ! aggregate_value_p (DECL_RESULT (fndecl)))
+           abort ();
+
+         /* Pass the function the address in which to return a structure
+            value.  Note that a constructor can cause someone to call us
+            with STRUCTURE_VALUE_ADDR, but the initialization takes place
+            via the first parameter, rather than the struct return address.
+
+            We have two cases: If the address is a simple register
+            indirect, use the mapping mechanism to point that register to
+            our structure return address.  Otherwise, store the structure
+            return value into the place that it will be referenced from.  */
+
+         if (GET_CODE (XEXP (loc, 0)) == REG)
+           {
+             temp = force_operand (structure_value_addr, NULL_RTX);
+             temp = force_reg (Pmode, temp);
+             /* A virtual register might be invalid in an insn, because
+                it can cause trouble in reload.  Since we don't have access
+                to the expanders at map translation time, make sure we have
+                a proper register now.
+                If a virtual register is actually valid, cse or combine
+                can put it into the mapped insns.  */
+             if (REGNO (temp) >= FIRST_VIRTUAL_REGISTER
+                 && REGNO (temp) <= LAST_VIRTUAL_REGISTER)
+             temp = copy_to_mode_reg (Pmode, temp);
+             map->reg_map[REGNO (XEXP (loc, 0))] = temp;
+
+             if (CONSTANT_P (structure_value_addr)
+                 || GET_CODE (structure_value_addr) == ADDRESSOF
+                 || (GET_CODE (structure_value_addr) == PLUS
+                     && (XEXP (structure_value_addr, 0)
+                         == virtual_stack_vars_rtx)
+                     && (GET_CODE (XEXP (structure_value_addr, 1))
+                         == CONST_INT)))
+               {
+                 SET_CONST_EQUIV_DATA (map, temp, structure_value_addr,
+                                       CONST_AGE_PARM);
+               }
+           }
+         else
+           {
+             temp = copy_rtx_and_substitute (loc, map, 1);
+             subst_constants (&temp, NULL_RTX, map, 0);
+             apply_change_group ();
+             emit_move_insn (temp, structure_value_addr);
+           }
        }
     }
   else if (ignore)
@@ -1751,7 +1046,23 @@ expand_inline_function (fndecl, parms, target, ignore, type,
         Let the combiner substitute the MEM if that is valid.  */
       if (target == 0 || GET_CODE (target) != REG
          || GET_MODE (target) != departing_mode)
-       target = gen_reg_rtx (departing_mode);
+       {
+         /* Don't make BLKmode registers.  If this looks like
+            a BLKmode object being returned in a register, get
+            the mode from that, otherwise abort.  */
+         if (departing_mode == BLKmode)
+           {
+             if (REG == GET_CODE (DECL_RTL (DECL_RESULT (fndecl))))
+               {
+                 departing_mode = GET_MODE (DECL_RTL (DECL_RESULT (fndecl)));
+                 arriving_mode = departing_mode;
+               }
+             else
+               abort ();
+           }
+
+         target = gen_reg_rtx (departing_mode);
+       }
 
       /* If function's value was promoted before return,
         avoid machine mode mismatch when we substitute INLINE_TARGET.
@@ -1785,14 +1096,31 @@ expand_inline_function (fndecl, parms, target, ignore, type,
   else
     abort ();
 
+  /* Initialize label_map.  get_label_from_map will actually make
+     the labels.  */
+  memset ((char *) &map->label_map[min_labelno], 0,
+        (max_labelno - min_labelno) * sizeof (rtx));
+
+  /* Make copies of the decls of the symbols in the inline function, so that
+     the copies of the variables get declared in the current function.  Set
+     up things so that lookup_static_chain knows that to interpret registers
+     in SAVE_EXPRs for TYPE_SIZEs as local.  */
+  inline_function_decl = fndecl;
+  integrate_parm_decls (DECL_ARGUMENTS (fndecl), map, arg_vector);
+  block = integrate_decl_tree (inl_f->original_decl_initial, map);
+  BLOCK_ABSTRACT_ORIGIN (block) = DECL_ORIGIN (fndecl);
+  inline_function_decl = 0;
+
   /* Make a fresh binding contour that we can easily remove.  Do this after
      expanding our arguments so cleanups are properly scoped.  */
-  pushlevel (0);
-  expand_start_bindings (0);
+  expand_start_bindings_and_block (0, block);
 
-  /* Make new label equivalences for the labels in the called function.  */
-  for (i = min_labelno; i < max_labelno; i++)
-    map->label_map[i] = NULL_RTX;
+  /* Sort the block-map so that it will be easy to find remapped
+     blocks later.  */
+  qsort (&VARRAY_TREE (map->block_map, 0),
+        map->block_map->elements_used,
+        sizeof (tree),
+        compare_blocks);
 
   /* Perform postincrements before actually calling the function.  */
   emit_queue ();
@@ -1800,20 +1128,111 @@ expand_inline_function (fndecl, parms, target, ignore, type,
   /* Clean up stack so that variables might have smaller offsets.  */
   do_pending_stack_adjust ();
 
-  /* Save a copy of the location of const_equiv_map for mark_stores, called
-     via note_stores.  */
-  global_const_equiv_map = map->const_equiv_map;
-  global_const_equiv_map_size = map->const_equiv_map_size;
+  /* Save a copy of the location of const_equiv_varray for
+     mark_stores, called via note_stores.  */
+  global_const_equiv_varray = map->const_equiv_varray;
 
   /* If the called function does an alloca, save and restore the
      stack pointer around the call.  This saves stack space, but
      also is required if this inline is being done between two
      pushes.  */
-  if (FUNCTION_FLAGS (header) & FUNCTION_FLAGS_CALLS_ALLOCA)
+  if (inl_f->calls_alloca)
     emit_stack_save (SAVE_BLOCK, &stack_save, NULL_RTX);
 
-  /* Now copy the insns one by one.  Do this in two passes, first the insns and
-     then their REG_NOTES, just like save_for_inline.  */
+  /* Now copy the insns one by one.  */
+  copy_insn_list (insns, map, static_chain_value);
+
+  /* Restore the stack pointer if we saved it above.  */
+  if (inl_f->calls_alloca)
+    emit_stack_restore (SAVE_BLOCK, stack_save, NULL_RTX);
+
+  if (! cfun->x_whole_function_mode_p)
+    /* In statement-at-a-time mode, we just tell the front-end to add
+       this block to the list of blocks at this binding level.  We
+       can't do it the way it's done for function-at-a-time mode the
+       superblocks have not been created yet.  */
+    insert_block (block);
+  else
+    {
+      BLOCK_CHAIN (block)
+       = BLOCK_CHAIN (DECL_INITIAL (current_function_decl));
+      BLOCK_CHAIN (DECL_INITIAL (current_function_decl)) = block;
+    }
+
+  /* End the scope containing the copied formal parameter variables
+     and copied LABEL_DECLs.  We pass NULL_TREE for the variables list
+     here so that expand_end_bindings will not check for unused
+     variables.  That's already been checked for when the inlined
+     function was defined.  */
+  expand_end_bindings (NULL_TREE, 1, 1);
+
+  /* Must mark the line number note after inlined functions as a repeat, so
+     that the test coverage code can avoid counting the call twice.  This
+     just tells the code to ignore the immediately following line note, since
+     there already exists a copy of this note before the expanded inline call.
+     This line number note is still needed for debugging though, so we can't
+     delete it.  */
+  if (flag_test_coverage)
+    emit_note (0, NOTE_INSN_REPEATED_LINE_NUMBER);
+
+  emit_line_note (input_filename, lineno);
+
+  /* If the function returns a BLKmode object in a register, copy it
+     out of the temp register into a BLKmode memory object.  */
+  if (target
+      && TYPE_MODE (TREE_TYPE (TREE_TYPE (fndecl))) == BLKmode
+      && ! aggregate_value_p (TREE_TYPE (TREE_TYPE (fndecl))))
+    target = copy_blkmode_from_reg (0, target, TREE_TYPE (TREE_TYPE (fndecl)));
+
+  if (structure_value_addr)
+    {
+      target = gen_rtx_MEM (TYPE_MODE (type),
+                           memory_address (TYPE_MODE (type),
+                                           structure_value_addr));
+      set_mem_attributes (target, type, 1);
+    }
+
+  /* Make sure we free the things we explicitly allocated with xmalloc.  */
+  if (real_label_map)
+    free (real_label_map);
+  VARRAY_FREE (map->const_equiv_varray);
+  free (map->reg_map);
+  VARRAY_FREE (map->block_map);
+  free (map->insn_map);
+  free (map);
+  free (arg_vals);
+  free (arg_trees);
+
+  inlining = inlining_previous;
+
+  return target;
+}
+
+/* Make copies of each insn in the given list using the mapping
+   computed in expand_inline_function. This function may call itself for
+   insns containing sequences.
+
+   Copying is done in two passes, first the insns and then their REG_NOTES.
+
+   If static_chain_value is non-zero, it represents the context-pointer
+   register for the function.  */
+
+static void
+copy_insn_list (insns, map, static_chain_value)
+     rtx insns;
+     struct inline_remap *map;
+     rtx static_chain_value;
+{
+  register int i;
+  rtx insn;
+  rtx temp;
+  rtx local_return_label = NULL_RTX;
+#ifdef HAVE_cc0
+  rtx cc0_insn = 0;
+#endif
+
+  /* Copy the insns one by one.  Do this in two passes, first the insns and
+     then their REG_NOTES.  */
 
   /* This loop is very similar to the loop in copy_loop_body in unroll.c.  */
 
@@ -1838,7 +1257,7 @@ expand_inline_function (fndecl, parms, target, ignore, type,
            break;
 
          /* If the inline fn needs eh context, make sure that
-            the current fn has one. */
+            the current fn has one.  */
          if (GET_CODE (pattern) == USE
              && find_reg_note (insn, REG_EH_CONTEXT, 0) != 0)
            get_eh_context ();
@@ -1855,7 +1274,7 @@ expand_inline_function (fndecl, parms, target, ignore, type,
 
                  /* If we must not delete the source,
                     load it into a new temporary.  */
-                 copy = emit_insn (copy_rtx_and_substitute (pattern, map));
+                 copy = emit_insn (copy_rtx_and_substitute (pattern, map, 0));
 
                  new_set = single_set (copy);
                  if (new_set == 0)
@@ -1868,11 +1287,18 @@ expand_inline_function (fndecl, parms, target, ignore, type,
                 has a note on it, keep the insn.  */
              else if (rtx_equal_p (SET_DEST (set), SET_SRC (set))
                       && REG_NOTES (insn) != 0)
-               copy = emit_insn (copy_rtx_and_substitute (pattern, map));
+               copy = emit_insn (copy_rtx_and_substitute (pattern, map, 0));
              else
                break;
            }
 
+         /* Similarly if an ignored return value is clobbered.  */
+         else if (map->inline_target == 0
+                  && GET_CODE (pattern) == CLOBBER
+                  && GET_CODE (XEXP (pattern, 0)) == REG
+                  && REG_FUNCTION_VALUE_P (XEXP (pattern, 0)))
+           break;
+
          /* If this is setting the static chain rtx, omit it.  */
          else if (static_chain_value != 0
                   && set != 0
@@ -1888,13 +1314,48 @@ expand_inline_function (fndecl, parms, target, ignore, type,
                   && rtx_equal_p (SET_SRC (set),
                                   static_chain_incoming_rtx))
            {
-             rtx newdest = copy_rtx_and_substitute (SET_DEST (set), map);
+             rtx newdest = copy_rtx_and_substitute (SET_DEST (set), map, 1);
 
              copy = emit_move_insn (newdest, static_chain_value);
              static_chain_value = 0;
            }
+
+         /* If this is setting the virtual stack vars register, this must
+            be the code at the handler for a builtin longjmp.  The value
+            saved in the setjmp buffer will be the address of the frame
+            we've made for this inlined instance within our frame.  But we
+            know the offset of that value so we can use it to reconstruct
+            our virtual stack vars register from that value.  If we are
+            copying it from the stack pointer, leave it unchanged.  */
+         else if (set != 0
+                  && rtx_equal_p (SET_DEST (set), virtual_stack_vars_rtx))
+           {
+             HOST_WIDE_INT offset;
+             temp = map->reg_map[REGNO (SET_DEST (set))];
+             temp = VARRAY_CONST_EQUIV (map->const_equiv_varray,
+                                        REGNO (temp)).rtx;
+
+             if (rtx_equal_p (temp, virtual_stack_vars_rtx))
+               offset = 0;
+             else if (GET_CODE (temp) == PLUS
+                      && rtx_equal_p (XEXP (temp, 0), virtual_stack_vars_rtx)
+                      && GET_CODE (XEXP (temp, 1)) == CONST_INT)
+               offset = INTVAL (XEXP (temp, 1));
+             else
+               abort ();
+
+             if (rtx_equal_p (SET_SRC (set), stack_pointer_rtx))
+               temp = SET_SRC (set);
+             else
+               temp = force_operand (plus_constant (SET_SRC (set),
+                                                    - offset),
+                                     NULL_RTX);
+
+             copy = emit_move_insn (virtual_stack_vars_rtx, temp);
+           }
+
          else
-           copy = emit_insn (copy_rtx_and_substitute (pattern, map));
+           copy = emit_insn (copy_rtx_and_substitute (pattern, map, 0));
          /* REG_NOTES will be copied later.  */
 
 #ifdef HAVE_cc0
@@ -1935,7 +1396,7 @@ expand_inline_function (fndecl, parms, target, ignore, type,
              pattern = gen_jump (local_return_label);
            }
          else
-           pattern = copy_rtx_and_substitute (PATTERN (insn), map);
+           pattern = copy_rtx_and_substitute (PATTERN (insn), map, 0);
 
          copy = emit_jump_insn (pattern);
 
@@ -1948,11 +1409,12 @@ expand_inline_function (fndecl, parms, target, ignore, type,
 
          /* If this used to be a conditional jump insn but whose branch
             direction is now know, we must do something special.  */
-         if (condjump_p (insn) && ! simplejump_p (insn) && map->last_pc_value)
+         if (any_condjump_p (insn) && onlyjump_p (insn) && map->last_pc_value)
            {
 #ifdef HAVE_cc0
-             /* The previous insn set cc0 for us.  So delete it.  */
-             delete_insn (PREV_INSN (copy));
+             /* If the previous insn set cc0 for us, delete it.  */
+             if (sets_cc0_p (PREV_INSN (copy)))
+               delete_insn (PREV_INSN (copy));
 #endif
 
              /* If this is now a no-op, delete it.  */
@@ -1967,16 +1429,57 @@ expand_inline_function (fndecl, parms, target, ignore, type,
                   here, but jump.c will do it just as well.  */
                emit_barrier ();
            }
-         break;
+         break;
+
+       case CALL_INSN:
+         /* If this is a CALL_PLACEHOLDER insn then we need to copy the
+            three attached sequences: normal call, sibling call and tail
+            recursion.  */
+         if (GET_CODE (PATTERN (insn)) == CALL_PLACEHOLDER)
+           {
+             rtx sequence[3];
+             rtx tail_label;
+
+             for (i = 0; i < 3; i++)
+               {
+                 rtx seq;
+
+                 sequence[i] = NULL_RTX;
+                 seq = XEXP (PATTERN (insn), i);
+                 if (seq)
+                   {
+                     start_sequence ();
+                     copy_insn_list (seq, map, static_chain_value);
+                     sequence[i] = get_insns ();
+                     end_sequence ();
+                   }
+               }
+
+             /* Find the new tail recursion label.
+                It will already be substituted into sequence[2].  */
+             tail_label = copy_rtx_and_substitute (XEXP (PATTERN (insn), 3),
+                                                   map, 0);
+
+             copy = emit_call_insn (gen_rtx_CALL_PLACEHOLDER (VOIDmode,
+                                                              sequence[0],
+                                                              sequence[1],
+                                                              sequence[2],
+                                                              tail_label));
+             break;
+           }
 
-       case CALL_INSN:
-         pattern = copy_rtx_and_substitute (PATTERN (insn), map);
+         pattern = copy_rtx_and_substitute (PATTERN (insn), map, 0);
          copy = emit_call_insn (pattern);
 
+         SIBLING_CALL_P (copy) = SIBLING_CALL_P (insn);
+         CONST_CALL_P (copy) = CONST_CALL_P (insn);
+
          /* Because the USAGE information potentially contains objects other
             than hard registers, we need to copy it.  */
+
          CALL_INSN_FUNCTION_USAGE (copy)
-           = copy_rtx_and_substitute (CALL_INSN_FUNCTION_USAGE (insn), map);
+           = copy_rtx_and_substitute (CALL_INSN_FUNCTION_USAGE (insn),
+                                      map, 0);
 
 #ifdef HAVE_cc0
          if (cc0_insn)
@@ -1987,13 +1490,12 @@ expand_inline_function (fndecl, parms, target, ignore, type,
 
          /* Be lazy and assume CALL_INSNs clobber all hard registers.  */
          for (i = 0; i < FIRST_PSEUDO_REGISTER; i++)
-           map->const_equiv_map[i] = 0;
+           VARRAY_CONST_EQUIV (map->const_equiv_varray, i).rtx = 0;
          break;
 
        case CODE_LABEL:
-         copy = 
-           emit_label (get_label_from_map(map,
-                                          CODE_LABEL_NUMBER (insn)));
+         copy = emit_label (get_label_from_map (map,
+                                                CODE_LABEL_NUMBER (insn)));
          LABEL_NAME (copy) = LABEL_NAME (insn);
          map->const_age++;
          break;
@@ -2003,25 +1505,64 @@ expand_inline_function (fndecl, parms, target, ignore, type,
          break;
 
        case NOTE:
-         /* It is important to discard function-end and function-beg notes,
-            so we have only one of each in the current function.
-            Also, NOTE_INSN_DELETED notes aren't useful (save_for_inline
-            deleted these in the copy used for continuing compilation,
-            not the copy used for inlining).  */
+         /* NOTE_INSN_FUNCTION_END and NOTE_INSN_FUNCTION_BEG are
+            discarded because it is important to have only one of
+            each in the current function.
+
+            NOTE_INSN_DELETED notes aren't useful.
+
+            NOTE_INSN_BASIC_BLOCK is discarded because the saved bb
+            pointer (which will soon be dangling) confuses flow's
+            attempts to preserve bb structures during the compilation
+            of a function.  */
+
          if (NOTE_LINE_NUMBER (insn) != NOTE_INSN_FUNCTION_END
              && NOTE_LINE_NUMBER (insn) != NOTE_INSN_FUNCTION_BEG
-             && NOTE_LINE_NUMBER (insn) != NOTE_INSN_DELETED)
+             && NOTE_LINE_NUMBER (insn) != NOTE_INSN_DELETED
+             && NOTE_LINE_NUMBER (insn) != NOTE_INSN_BASIC_BLOCK)
            {
-             copy = emit_note (NOTE_SOURCE_FILE (insn), NOTE_LINE_NUMBER (insn));
-             if (copy && (NOTE_LINE_NUMBER (copy) == NOTE_INSN_EH_REGION_BEG
-                          || NOTE_LINE_NUMBER (copy) == NOTE_INSN_EH_REGION_END))
+             copy = emit_note (NOTE_SOURCE_FILE (insn),
+                               NOTE_LINE_NUMBER (insn));
+             if (copy
+                 && (NOTE_LINE_NUMBER (copy) == NOTE_INSN_EH_REGION_BEG
+                     || NOTE_LINE_NUMBER (copy) == NOTE_INSN_EH_REGION_END))
                {
-                 rtx label =
-                   get_label_from_map (map, NOTE_BLOCK_NUMBER (copy));
+                 rtx label
+                   = get_label_from_map (map, NOTE_EH_HANDLER (copy));
+
+                 /* We have to duplicate the handlers for the original.  */
+                 if (NOTE_LINE_NUMBER (copy) == NOTE_INSN_EH_REGION_BEG)
+                   {
+                     /* We need to duplicate the handlers for the EH region
+                        and we need to indicate where the label map is */
+                     eif_eh_map = map;
+                     duplicate_eh_handlers (NOTE_EH_HANDLER (copy),
+                                            CODE_LABEL_NUMBER (label),
+                                            expand_inline_function_eh_labelmap);
+                   }
 
                  /* We have to forward these both to match the new exception
                     region.  */
-                 NOTE_BLOCK_NUMBER (copy) = CODE_LABEL_NUMBER (label);
+                 NOTE_EH_HANDLER (copy) = CODE_LABEL_NUMBER (label);
+               }
+             else if (copy
+                      && (NOTE_LINE_NUMBER (copy) == NOTE_INSN_BLOCK_BEG
+                          || NOTE_LINE_NUMBER (copy) == NOTE_INSN_BLOCK_END)
+                      && NOTE_BLOCK (insn))
+               {
+                 tree *mapped_block_p;
+
+                 mapped_block_p
+                   = (tree *) bsearch (NOTE_BLOCK (insn),
+                                       &VARRAY_TREE (map->block_map, 0),
+                                       map->block_map->elements_used,
+                                       sizeof (tree),
+                                       find_block);
+
+                 if (!mapped_block_p)
+                   abort ();
+                 else
+                   NOTE_BLOCK (copy) = *mapped_block_p;
                }
            }
          else
@@ -2030,7 +1571,6 @@ expand_inline_function (fndecl, parms, target, ignore, type,
 
        default:
          abort ();
-         break;
        }
 
       if (copy)
@@ -2044,68 +1584,29 @@ expand_inline_function (fndecl, parms, target, ignore, type,
      are valid across the entire function.  */
   map->const_age++;
   for (insn = insns; insn; insn = NEXT_INSN (insn))
-    if (GET_RTX_CLASS (GET_CODE (insn)) == 'i'
+    if (INSN_P (insn)
        && map->insn_map[INSN_UID (insn)]
        && REG_NOTES (insn))
       {
-       rtx tem = copy_rtx_and_substitute (REG_NOTES (insn), map);
+       rtx next, note = copy_rtx_and_substitute (REG_NOTES (insn), map, 0);
+
        /* We must also do subst_constants, in case one of our parameters
           has const type and constant value.  */
-       subst_constants (&tem, NULL_RTX, map);
+       subst_constants (&note, NULL_RTX, map, 0);
        apply_change_group ();
-       REG_NOTES (map->insn_map[INSN_UID (insn)]) = tem;
+       REG_NOTES (map->insn_map[INSN_UID (insn)]) = note;
+
+       /* Finally, delete any REG_LABEL notes from the chain.  */
+       for (; note; note = next)
+         {
+           next = XEXP (note, 1);
+           if (REG_NOTE_KIND (note) == REG_LABEL)
+             remove_note (map->insn_map[INSN_UID (insn)], note);
+         }
       }
 
   if (local_return_label)
     emit_label (local_return_label);
-
-  /* Restore the stack pointer if we saved it above.  */
-  if (FUNCTION_FLAGS (header) & FUNCTION_FLAGS_CALLS_ALLOCA)
-    emit_stack_restore (SAVE_BLOCK, stack_save, NULL_RTX);
-
-  /* Make copies of the decls of the symbols in the inline function, so that
-     the copies of the variables get declared in the current function.  Set
-     up things so that lookup_static_chain knows that to interpret registers
-     in SAVE_EXPRs for TYPE_SIZEs as local.  */
-
-  inline_function_decl = fndecl;
-  integrate_parm_decls (DECL_ARGUMENTS (fndecl), map, arg_vector);
-  integrate_decl_tree ((tree) ORIGINAL_DECL_INITIAL (header), 0, map);
-  inline_function_decl = 0;
-
-  /* End the scope containing the copied formal parameter variables
-     and copied LABEL_DECLs.  */
-
-  expand_end_bindings (getdecls (), 1, 1);
-  block = poplevel (1, 1, 0);
-  BLOCK_ABSTRACT_ORIGIN (block) = (DECL_ABSTRACT_ORIGIN (fndecl) == NULL
-                                  ? fndecl : DECL_ABSTRACT_ORIGIN (fndecl));
-  poplevel (0, 0, 0);
-
-  /* Must mark the line number note after inlined functions as a repeat, so
-     that the test coverage code can avoid counting the call twice.  This
-     just tells the code to ignore the immediately following line note, since
-     there already exists a copy of this note before the expanded inline call.
-     This line number note is still needed for debugging though, so we can't
-     delete it.  */
-  if (flag_test_coverage)
-    emit_note (0, NOTE_REPEATED_LINE_NUMBER);
-
-  emit_line_note (input_filename, lineno);
-
-  if (structure_value_addr)
-    {
-      target = gen_rtx_MEM (TYPE_MODE (type),
-                           memory_address (TYPE_MODE (type),
-                                           structure_value_addr));
-      MEM_IN_STRUCT_P (target) = 1;
-    }
-
-  /* Make sure we free the things we explicitly allocated with xmalloc.  */
-  if (real_label_map)
-    free (real_label_map);
-
-  return target;
 }
 \f
 /* Given a chain of PARM_DECLs, ARGS, copy each decl into a VAR_DECL,
@@ -2122,25 +1623,19 @@ integrate_parm_decls (args, map, arg_vector)
 
   for (tail = args, i = 0; tail; tail = TREE_CHAIN (tail), i++)
     {
-      register tree decl = build_decl (VAR_DECL, DECL_NAME (tail),
-                                      TREE_TYPE (tail));
+      tree decl = copy_decl_for_inlining (tail, map->fndecl,
+                                         current_function_decl);
       rtx new_decl_rtl
-       = copy_rtx_and_substitute (RTVEC_ELT (arg_vector, i), map);
+       = copy_rtx_and_substitute (RTVEC_ELT (arg_vector, i), map, 1);
 
-      DECL_ARG_TYPE (decl) = DECL_ARG_TYPE (tail);
       /* We really should be setting DECL_INCOMING_RTL to something reasonable
         here, but that's going to require some more work.  */
       /* DECL_INCOMING_RTL (decl) = ?; */
-      /* These args would always appear unused, if not for this.  */
-      TREE_USED (decl) = 1;
-      /* Prevent warning for shadowing with these.  */
-      DECL_ABSTRACT_ORIGIN (decl) = tail;
-      pushdecl (decl);
       /* Fully instantiate the address with the equivalent form so that the
         debugging information contains the actual register, instead of the
         virtual register.   Do this by not passing an insn to
         subst_constants.  */
-      subst_constants (&new_decl_rtl, NULL_RTX, map);
+      subst_constants (&new_decl_rtl, NULL_RTX, map, 1);
       apply_change_group ();
       DECL_RTL (decl) = new_decl_rtl;
     }
@@ -2149,106 +1644,87 @@ integrate_parm_decls (args, map, arg_vector)
 /* Given a BLOCK node LET, push decls and levels so as to construct in the
    current function a tree of contexts isomorphic to the one that is given.
 
-   LEVEL indicates how far down into the BLOCK tree is the node we are
-   currently traversing.  It is always zero except for recursive calls.
-
    MAP, if nonzero, is a pointer to an inline_remap map which indicates how
    registers used in the DECL_RTL field should be remapped.  If it is zero,
    no mapping is necessary.  */
 
-static void
-integrate_decl_tree (let, level, map)
+static tree
+integrate_decl_tree (let, map)
      tree let;
-     int level;
      struct inline_remap *map;
 {
-  tree t, node;
+  tree t;
+  tree new_block;
+  tree *next;
+
+  new_block = make_node (BLOCK);
+  VARRAY_PUSH_TREE (map->block_map, new_block);
+  next = &BLOCK_VARS (new_block);
 
-  if (level > 0)
-    pushlevel (0);
-  
   for (t = BLOCK_VARS (let); t; t = TREE_CHAIN (t))
     {
       tree d;
 
-      push_obstacks_nochange ();
-      saveable_allocation ();
-      d = copy_node (t);
-      pop_obstacks ();
+      d = copy_decl_for_inlining (t, map->fndecl, current_function_decl);
 
       if (DECL_RTL (t) != 0)
        {
-         DECL_RTL (d) = copy_rtx_and_substitute (DECL_RTL (t), map);
+         DECL_RTL (d) = copy_rtx_and_substitute (DECL_RTL (t), map, 1);
+
          /* Fully instantiate the address with the equivalent form so that the
             debugging information contains the actual register, instead of the
             virtual register.   Do this by not passing an insn to
             subst_constants.  */
-         subst_constants (&DECL_RTL (d), NULL_RTX, map);
+         subst_constants (&DECL_RTL (d), NULL_RTX, map, 1);
          apply_change_group ();
        }
-      /* These args would always appear unused, if not for this.  */
-      TREE_USED (d) = 1;
-      /* Prevent warning for shadowing with these.  */
-      DECL_ABSTRACT_ORIGIN (d) = t;
 
-      if (DECL_LANG_SPECIFIC (d))
-       copy_lang_decl (d);
-
-      pushdecl (d);
+      /* Add this declaration to the list of variables in the new
+        block.  */
+      *next = d;
+      next = &TREE_CHAIN (d);
     }
 
-  for (t = BLOCK_SUBBLOCKS (let); t; t = TREE_CHAIN (t))
-    integrate_decl_tree (t, level + 1, map);
-
-  if (level > 0)
+  next = &BLOCK_SUBBLOCKS (new_block);
+  for (t = BLOCK_SUBBLOCKS (let); t; t = BLOCK_CHAIN (t))
     {
-      node = poplevel (1, 0, 0);
-      if (node)
-       {
-         TREE_USED (node) = TREE_USED (let);
-         BLOCK_ABSTRACT_ORIGIN (node) = let;
-       }
+      *next = integrate_decl_tree (t, map);
+      BLOCK_SUPERCONTEXT (*next) = new_block;
+      next = &BLOCK_CHAIN (*next);
     }
-}
-
-/* Given a BLOCK node LET, search for all DECL_RTL fields, and pass them
-   through save_constants.  */
-
-static void
-save_constants_in_decl_trees (let)
-     tree let;
-{
-  tree t;
 
-  for (t = BLOCK_VARS (let); t; t = TREE_CHAIN (t))
-    if (DECL_RTL (t) != 0)
-      save_constants (&DECL_RTL (t));
+  TREE_USED (new_block) = TREE_USED (let);
+  BLOCK_ABSTRACT_ORIGIN (new_block) = let;
 
-  for (t = BLOCK_SUBBLOCKS (let); t; t = TREE_CHAIN (t))
-    save_constants_in_decl_trees (t);
+  return new_block;
 }
 \f
-/* Create a new copy of an rtx.
-   Recursively copies the operands of the rtx,
+/* Create a new copy of an rtx. Recursively copies the operands of the rtx,
    except for those few rtx codes that are sharable.
 
    We always return an rtx that is similar to that incoming rtx, with the
    exception of possibly changing a REG to a SUBREG or vice versa.  No
    rtl is ever emitted.
 
+   If FOR_LHS is nonzero, if means we are processing something that will
+   be the LHS of a SET.  In that case, we copy RTX_UNCHANGING_P even if
+   inlining since we need to be conservative in how it is set for
+   such cases.
+
    Handle constants that need to be placed in the constant pool by
    calling `force_const_mem'.  */
 
 rtx
-copy_rtx_and_substitute (orig, map)
+copy_rtx_and_substitute (orig, map, for_lhs)
      register rtx orig;
      struct inline_remap *map;
+     int for_lhs;
 {
   register rtx copy, temp;
   register int i, j;
   register RTX_CODE code;
   register enum machine_mode mode;
-  register char *format_ptr;
+  register const char *format_ptr;
   int regno;
 
   if (orig == 0)
@@ -2265,11 +1741,21 @@ copy_rtx_and_substitute (orig, map)
         Small hard registers are returned as-is.  Pseudo-registers
         go through their `reg_map'.  */
       regno = REGNO (orig);
-      if (regno <= LAST_VIRTUAL_REGISTER)
+      if (regno <= LAST_VIRTUAL_REGISTER
+         || (map->integrating
+             && DECL_SAVED_INSNS (map->fndecl)->internal_arg_pointer == orig))
        {
          /* Some hard registers are also mapped,
             but others are not translated.  */
-         if (map->reg_map[regno] != 0)
+         if (map->reg_map[regno] != 0
+             /* We shouldn't usually have reg_map set for return
+                register, but it may happen if we have leaf-register
+                remapping and the return register is used in one of
+                the calling sequences of a call_placeholer.  In this
+                case, we'll end up with a reg_map set for this
+                register, but we don't want to use for registers
+                marked as return values.  */
+             && ! REG_FUNCTION_VALUE_P (orig))
            return map->reg_map[regno];
 
          /* If this is the virtual frame pointer, make space in current
@@ -2280,17 +1766,21 @@ copy_rtx_and_substitute (orig, map)
             equivalence for it to be the address.  This will substitute the
             address into insns where it can be substituted and use the new
             pseudo where it can't.  */
-         if (regno == VIRTUAL_STACK_VARS_REGNUM)
+         else if (regno == VIRTUAL_STACK_VARS_REGNUM)
            {
              rtx loc, seq;
-             int size = DECL_FRAME_SIZE (map->fndecl);
-
+             int size = get_func_frame_size (DECL_SAVED_INSNS (map->fndecl));
 #ifdef FRAME_GROWS_DOWNWARD
+             int alignment
+               = (DECL_SAVED_INSNS (map->fndecl)->stack_alignment_needed
+                  / BITS_PER_UNIT);
+
              /* In this case, virtual_stack_vars_rtx points to one byte
                 higher than the top of the frame area.  So make sure we
                 allocate a big enough chunk to keep the frame pointer
                 aligned like a real one.  */
-             size = CEIL_ROUND (size, BIGGEST_ALIGNMENT / BITS_PER_UNIT);
+             if (alignment)
+               size = CEIL_ROUND (size, alignment);
 #endif
              start_sequence ();
              loc = assign_stack_temp (BLKmode, size, 1);
@@ -2305,32 +1795,30 @@ copy_rtx_and_substitute (orig, map)
                = force_reg (Pmode, force_operand (loc, NULL_RTX));
 
 #ifdef STACK_BOUNDARY
-             mark_reg_pointer (map->reg_map[regno],
-                               STACK_BOUNDARY / BITS_PER_UNIT);
+             mark_reg_pointer (map->reg_map[regno], STACK_BOUNDARY);
 #endif
 
-             if (REGNO (temp) < map->const_equiv_map_size)
-               {
-                 map->const_equiv_map[REGNO (temp)] = loc;
-                 map->const_age_map[REGNO (temp)] = CONST_AGE_PARM;
-               }
+             SET_CONST_EQUIV_DATA (map, temp, loc, CONST_AGE_PARM);
 
              seq = gen_sequence ();
              end_sequence ();
              emit_insn_after (seq, map->insns_at_start);
              return temp;
            }
-         else if (regno == VIRTUAL_INCOMING_ARGS_REGNUM)
+         else if (regno == VIRTUAL_INCOMING_ARGS_REGNUM
+                  || (map->integrating
+                      && (DECL_SAVED_INSNS (map->fndecl)->internal_arg_pointer
+                          == orig)))
            {
              /* Do the same for a block to contain any arguments referenced
                 in memory.  */
              rtx loc, seq;
-             int size = FUNCTION_ARGS_SIZE (DECL_SAVED_INSNS (map->fndecl));
+             int size = DECL_SAVED_INSNS (map->fndecl)->args_size;
 
              start_sequence ();
              loc = assign_stack_temp (BLKmode, size, 1);
              loc = XEXP (loc, 0);
-             /* When arguments grow downward, the virtual incoming 
+             /* When arguments grow downward, the virtual incoming
                 args pointer points to the top of the argument block,
                 so the remapped location better do the same.  */
 #ifdef ARGS_GROW_DOWNWARD
@@ -2340,15 +1828,10 @@ copy_rtx_and_substitute (orig, map)
                = force_reg (Pmode, force_operand (loc, NULL_RTX));
 
 #ifdef STACK_BOUNDARY
-             mark_reg_pointer (map->reg_map[regno],
-                               STACK_BOUNDARY / BITS_PER_UNIT);
+             mark_reg_pointer (map->reg_map[regno], STACK_BOUNDARY);
 #endif
 
-             if (REGNO (temp) < map->const_equiv_map_size)
-               {
-                 map->const_equiv_map[REGNO (temp)] = loc;
-                 map->const_age_map[REGNO (temp)] = CONST_AGE_PARM;
-               }
+             SET_CONST_EQUIV_DATA (map, temp, loc, CONST_AGE_PARM);
 
              seq = gen_sequence ();
              end_sequence ();
@@ -2359,17 +1842,37 @@ copy_rtx_and_substitute (orig, map)
            {
              /* This is a reference to the function return value.  If
                 the function doesn't have a return value, error.  If the
-                mode doesn't agree, make a SUBREG.  */
+                mode doesn't agree, and it ain't BLKmode, make a SUBREG.  */
              if (map->inline_target == 0)
                /* Must be unrolling loops or replicating code if we
                   reach here, so return the register unchanged.  */
                return orig;
-             else if (mode != GET_MODE (map->inline_target))
+             else if (GET_MODE (map->inline_target) != BLKmode
+                      && mode != GET_MODE (map->inline_target))
                return gen_lowpart (mode, map->inline_target);
              else
                return map->inline_target;
            }
-         return orig;
+#if defined (LEAF_REGISTERS) && defined (LEAF_REG_REMAP)
+         /* If leaf_renumber_regs_insn() might remap this register to
+            some other number, make sure we don't share it with the
+            inlined function, otherwise delayed optimization of the
+            inlined function may change it in place, breaking our
+            reference to it.  We may still shared it within the
+            function, so create an entry for this register in the
+            reg_map.  */
+         if (map->integrating && regno < FIRST_PSEUDO_REGISTER
+             && LEAF_REGISTERS[regno] && LEAF_REG_REMAP (regno) != regno)
+           {
+             temp = gen_rtx_REG (mode, regno);
+             map->reg_map[regno] = temp;
+             return temp;
+           }
+#endif
+         else
+           return orig;
+
+         abort ();
        }
       if (map->reg_map[regno] == NULL)
        {
@@ -2379,28 +1882,39 @@ copy_rtx_and_substitute (orig, map)
          RTX_UNCHANGING_P (map->reg_map[regno]) = RTX_UNCHANGING_P (orig);
          /* A reg with REG_FUNCTION_VALUE_P true will never reach here.  */
 
-         if (map->regno_pointer_flag[regno])
+         if (REG_POINTER (map->x_regno_reg_rtx[regno]))
            mark_reg_pointer (map->reg_map[regno],
                              map->regno_pointer_align[regno]);
        }
       return map->reg_map[regno];
 
     case SUBREG:
-      copy = copy_rtx_and_substitute (SUBREG_REG (orig), map);
+      copy = copy_rtx_and_substitute (SUBREG_REG (orig), map, for_lhs);
       /* SUBREG is ordinary, but don't make nested SUBREGs.  */
       if (GET_CODE (copy) == SUBREG)
        return gen_rtx_SUBREG (GET_MODE (orig), SUBREG_REG (copy),
                               SUBREG_WORD (orig) + SUBREG_WORD (copy));
       else if (GET_CODE (copy) == CONCAT)
-       return (subreg_realpart_p (orig) ? XEXP (copy, 0) : XEXP (copy, 1));
+       {
+         rtx retval = subreg_realpart_p (orig) ? XEXP (copy, 0) : XEXP (copy, 1);
+
+         if (GET_MODE (retval) == GET_MODE (orig))
+           return retval;
+         else
+           return gen_rtx_SUBREG (GET_MODE (orig), retval,
+                                  (SUBREG_WORD (orig) %
+                                   (GET_MODE_UNIT_SIZE (GET_MODE (SUBREG_REG (orig)))
+                                    / (unsigned) UNITS_PER_WORD)));
+       }
       else
        return gen_rtx_SUBREG (GET_MODE (orig), copy,
                               SUBREG_WORD (orig));
 
     case ADDRESSOF:
       copy = gen_rtx_ADDRESSOF (mode,
-                       copy_rtx_and_substitute (XEXP (orig, 0), map), 0);
-      SET_ADDRESSOF_DECL (copy, ADDRESSOF_DECL (orig));
+                               copy_rtx_and_substitute (XEXP (orig, 0),
+                                                        map, for_lhs),
+                               0, ADDRESSOF_DECL (orig));
       regno = ADDRESSOF_REGNO (orig);
       if (map->reg_map[regno])
        regno = REGNO (map->reg_map[regno]);
@@ -2413,7 +1927,7 @@ copy_rtx_and_substitute (orig, map)
          RTX_UNCHANGING_P (map->reg_map[regno]) = RTX_UNCHANGING_P (temp);
          /* A reg with REG_FUNCTION_VALUE_P true will never reach here.  */
 
-         if (map->regno_pointer_flag[regno])
+         if (REG_POINTER (map->x_regno_reg_rtx[regno]))
            mark_reg_pointer (map->reg_map[regno],
                              map->regno_pointer_align[regno]);
          regno = REGNO (map->reg_map[regno]);
@@ -2427,7 +1941,7 @@ copy_rtx_and_substitute (orig, map)
         to (use foo) if the original insn didn't have a subreg.
         Removing the subreg distorts the VAX movstrhi pattern
         by changing the mode of an operand.  */
-      copy = copy_rtx_and_substitute (XEXP (orig, 0), map);
+      copy = copy_rtx_and_substitute (XEXP (orig, 0), map, code == CLOBBER);
       if (GET_CODE (copy) == SUBREG && GET_CODE (XEXP (orig, 0)) != SUBREG)
        copy = SUBREG_REG (copy);
       return gen_rtx_fmt_e (code, VOIDmode, copy);
@@ -2437,11 +1951,20 @@ copy_rtx_and_substitute (orig, map)
        = LABEL_PRESERVE_P (orig);
       return get_label_from_map (map, CODE_LABEL_NUMBER (orig));
 
+    /* We need to handle "deleted" labels that appear in the DECL_RTL
+       of a LABEL_DECL.  */
+    case NOTE:
+      if (NOTE_LINE_NUMBER (orig) == NOTE_INSN_DELETED_LABEL)
+       return map->insn_map[INSN_UID (orig)];
+      break;
+
     case LABEL_REF:
-      copy = gen_rtx_LABEL_REF (mode,
-                               LABEL_REF_NONLOCAL_P (orig) ? XEXP (orig, 0)
-                               : get_label_from_map (map, 
-                                                     CODE_LABEL_NUMBER (XEXP (orig, 0))));
+      copy
+       = gen_rtx_LABEL_REF
+         (mode,
+          LABEL_REF_NONLOCAL_P (orig) ? XEXP (orig, 0)
+          : get_label_from_map (map, CODE_LABEL_NUMBER (XEXP (orig, 0))));
+
       LABEL_OUTSIDE_LOOP_P (copy) = LABEL_OUTSIDE_LOOP_P (orig);
 
       /* The fact that this label was previously nonlocal does not mean
@@ -2472,13 +1995,51 @@ copy_rtx_and_substitute (orig, map)
         remapped label.  Otherwise, symbols are returned unchanged.  */
       if (CONSTANT_POOL_ADDRESS_P (orig))
        {
-         rtx constant = get_pool_constant (orig);
-         if (GET_CODE (constant) == LABEL_REF)
-           return XEXP (force_const_mem (GET_MODE (orig),
+         struct function *f = inlining ? inlining : cfun;
+         rtx constant = get_pool_constant_for_function (f, orig);
+         enum machine_mode const_mode = get_pool_mode_for_function (f, orig);
+         if (inlining)
+           {
+             rtx temp = force_const_mem (const_mode,
                                          copy_rtx_and_substitute (constant,
-                                                                  map)),
+                                                                  map, 0));
+
+#if 0
+             /* Legitimizing the address here is incorrect.
+
+                Since we had a SYMBOL_REF before, we can assume it is valid
+                to have one in this position in the insn.
+
+                Also, change_address may create new registers.  These
+                registers will not have valid reg_map entries.  This can
+                cause try_constants() to fail because assumes that all
+                registers in the rtx have valid reg_map entries, and it may
+                end up replacing one of these new registers with junk.  */
+
+             if (! memory_address_p (GET_MODE (temp), XEXP (temp, 0)))
+               temp = change_address (temp, GET_MODE (temp), XEXP (temp, 0));
+#endif
+
+             temp = XEXP (temp, 0);
+
+#ifdef POINTERS_EXTEND_UNSIGNED
+             if (GET_MODE (temp) != GET_MODE (orig))
+               temp = convert_memory_address (GET_MODE (orig), temp);
+#endif
+             return temp;
+           }
+         else if (GET_CODE (constant) == LABEL_REF)
+           return XEXP (force_const_mem
+                        (GET_MODE (orig),
+                         copy_rtx_and_substitute (constant, map, for_lhs)),
                         0);
        }
+      else if (SYMBOL_REF_NEED_ADJUST (orig))
+       {
+         eif_eh_map = map;
+         return rethrow_symbol_map (orig,
+                                    expand_inline_function_eh_labelmap);
+       }
 
       return orig;
 
@@ -2501,78 +2062,28 @@ copy_rtx_and_substitute (orig, map)
       /* Make new constant pool entry for a constant
         that was in the pool of the inline function.  */
       if (RTX_INTEGRATED_P (orig))
-       {
-         /* If this was an address of a constant pool entry that itself
-            had to be placed in the constant pool, it might not be a
-            valid address.  So the recursive call below might turn it
-            into a register.  In that case, it isn't a constant any
-            more, so return it.  This has the potential of changing a
-            MEM into a REG, but we'll assume that it safe.  */
-         temp = copy_rtx_and_substitute (XEXP (orig, 0), map);
-         if (! CONSTANT_P (temp))
-           return temp;
-         return validize_mem (force_const_mem (GET_MODE (orig), temp));
-       }
-      break;
-
-    case ADDRESS:
-      /* If from constant pool address, make new constant pool entry and
-        return its address.  */
-      if (! RTX_INTEGRATED_P (orig))
        abort ();
-
-      temp
-       = force_const_mem (GET_MODE (XEXP (orig, 0)),
-                          copy_rtx_and_substitute (XEXP (XEXP (orig, 0), 0),
-                                                   map));
-
-#if 0
-      /* Legitimizing the address here is incorrect.
-
-        The only ADDRESS rtx's that can reach here are ones created by
-        save_constants.  Hence the operand of the ADDRESS is always valid
-        in this position of the instruction, since the original rtx without
-        the ADDRESS was valid.
-
-        The reason we don't legitimize the address here is that on the
-        Sparc, the caller may have a (high ...) surrounding this ADDRESS.
-        This code forces the operand of the address to a register, which
-        fails because we can not take the HIGH part of a register.
-
-        Also, change_address may create new registers.  These registers
-        will not have valid reg_map entries.  This can cause try_constants()
-        to fail because assumes that all registers in the rtx have valid
-        reg_map entries, and it may end up replacing one of these new
-        registers with junk.  */
-
-      if (! memory_address_p (GET_MODE (temp), XEXP (temp, 0)))
-       temp = change_address (temp, GET_MODE (temp), XEXP (temp, 0));
-#endif
-
-      temp = XEXP (temp, 0);
-
-#ifdef POINTERS_EXTEND_UNSIGNED
-      if (GET_MODE (temp) != GET_MODE (orig))
-       temp = convert_memory_address (GET_MODE (orig), temp);
-#endif
-
-      return temp;
+      break;
 
     case ASM_OPERANDS:
-      /* If a single asm insn contains multiple output operands
-        then it contains multiple ASM_OPERANDS rtx's that share operand 3.
-        We must make sure that the copied insn continues to share it.  */
-      if (map->orig_asm_operands_vector == XVEC (orig, 3))
+      /* If a single asm insn contains multiple output operands then
+        it contains multiple ASM_OPERANDS rtx's that share the input
+        and constraint vecs.  We must make sure that the copied insn
+        continues to share it.  */
+      if (map->orig_asm_operands_vector == ASM_OPERANDS_INPUT_VEC (orig))
        {
          copy = rtx_alloc (ASM_OPERANDS);
          copy->volatil = orig->volatil;
-         XSTR (copy, 0) = XSTR (orig, 0);
-         XSTR (copy, 1) = XSTR (orig, 1);
-         XINT (copy, 2) = XINT (orig, 2);
-         XVEC (copy, 3) = map->copy_asm_operands_vector;
-         XVEC (copy, 4) = map->copy_asm_constraints_vector;
-         XSTR (copy, 5) = XSTR (orig, 5);
-         XINT (copy, 6) = XINT (orig, 6);
+         PUT_MODE (copy, GET_MODE (orig));
+         ASM_OPERANDS_TEMPLATE (copy) = ASM_OPERANDS_TEMPLATE (orig);
+         ASM_OPERANDS_OUTPUT_CONSTRAINT (copy)
+           = ASM_OPERANDS_OUTPUT_CONSTRAINT (orig);
+         ASM_OPERANDS_OUTPUT_IDX (copy) = ASM_OPERANDS_OUTPUT_IDX (orig);
+         ASM_OPERANDS_INPUT_VEC (copy) = map->copy_asm_operands_vector;
+         ASM_OPERANDS_INPUT_CONSTRAINT_VEC (copy)
+           = map->copy_asm_constraints_vector;
+         ASM_OPERANDS_SOURCE_FILE (copy) = ASM_OPERANDS_SOURCE_FILE (orig);
+         ASM_OPERANDS_SOURCE_LINE (copy) = ASM_OPERANDS_SOURCE_LINE (orig);
          return copy;
        }
       break;
@@ -2585,10 +2096,13 @@ copy_rtx_and_substitute (orig, map)
 #ifndef NO_FUNCTION_CSE
       if (! (optimize && ! flag_no_function_cse))
 #endif
-       return gen_rtx_CALL (GET_MODE (orig),
-                            gen_rtx_MEM (GET_MODE (XEXP (orig, 0)),
-                                         copy_rtx_and_substitute (XEXP (XEXP (orig, 0), 0), map)),
-                       copy_rtx_and_substitute (XEXP (orig, 1), map));
+       return
+         gen_rtx_CALL
+           (GET_MODE (orig),
+            gen_rtx_MEM (GET_MODE (XEXP (orig, 0)),
+                         copy_rtx_and_substitute (XEXP (XEXP (orig, 0), 0),
+                                                  map, 0)),
+            copy_rtx_and_substitute (XEXP (orig, 1), map, 0));
       break;
 
 #if 0
@@ -2605,42 +2119,62 @@ copy_rtx_and_substitute (orig, map)
       if (SET_DEST (orig) == virtual_stack_vars_rtx
          || SET_DEST (orig) == virtual_incoming_args_rtx)
        {
-         /* In case a translation hasn't occurred already, make one now. */
+         /* In case a translation hasn't occurred already, make one now.  */
          rtx equiv_reg;
          rtx equiv_loc;
          HOST_WIDE_INT loc_offset;
 
-         copy_rtx_and_substitute (SET_DEST (orig), map);
+         copy_rtx_and_substitute (SET_DEST (orig), map, for_lhs);
          equiv_reg = map->reg_map[REGNO (SET_DEST (orig))];
-         equiv_loc = map->const_equiv_map[REGNO (equiv_reg)];
+         equiv_loc = VARRAY_CONST_EQUIV (map->const_equiv_varray,
+                                         REGNO (equiv_reg)).rtx;
          loc_offset
            = GET_CODE (equiv_loc) == REG ? 0 : INTVAL (XEXP (equiv_loc, 1));
+
          return gen_rtx_SET (VOIDmode, SET_DEST (orig),
                              force_operand
                              (plus_constant
-                              (copy_rtx_and_substitute (SET_SRC (orig), map),
+                              (copy_rtx_and_substitute (SET_SRC (orig),
+                                                        map, 0),
                                - loc_offset),
                               NULL_RTX));
        }
+      else
+       return gen_rtx_SET (VOIDmode,
+                           copy_rtx_and_substitute (SET_DEST (orig), map, 1),
+                           copy_rtx_and_substitute (SET_SRC (orig), map, 0));
       break;
 
     case MEM:
+      if (inlining
+         && GET_CODE (XEXP (orig, 0)) == SYMBOL_REF
+         && CONSTANT_POOL_ADDRESS_P (XEXP (orig, 0)))
+       {
+         enum machine_mode const_mode
+           = get_pool_mode_for_function (inlining, XEXP (orig, 0));
+         rtx constant
+           = get_pool_constant_for_function (inlining, XEXP (orig, 0));
+
+         constant = copy_rtx_and_substitute (constant, map, 0);
+
+         /* If this was an address of a constant pool entry that itself
+            had to be placed in the constant pool, it might not be a
+            valid address.  So the recursive call might have turned it
+            into a register.  In that case, it isn't a constant any
+            more, so return it.  This has the potential of changing a
+            MEM into a REG, but we'll assume that it safe.  */
+         if (! CONSTANT_P (constant))
+           return constant;
+
+         return validize_mem (force_const_mem (const_mode, constant));
+       }
+
       copy = rtx_alloc (MEM);
       PUT_MODE (copy, mode);
-      XEXP (copy, 0) = copy_rtx_and_substitute (XEXP (orig, 0), map);
-      MEM_IN_STRUCT_P (copy) = MEM_IN_STRUCT_P (orig);
-      MEM_VOLATILE_P (copy) = MEM_VOLATILE_P (orig);
-
-      /* If doing function inlining, this MEM might not be const in the
-        function that it is being inlined into, and thus may not be
-        unchanging after function inlining.  Constant pool references are
-        handled elsewhere, so this doesn't lose RTX_UNCHANGING_P bits
-        for them.  */
-      if (! map->integrating)
-       RTX_UNCHANGING_P (copy) = RTX_UNCHANGING_P (orig);
-
+      XEXP (copy, 0) = copy_rtx_and_substitute (XEXP (orig, 0), map, 0);
+      MEM_COPY_ATTRIBUTES (copy, orig);
       return copy;
-      
+
     default:
       break;
     }
@@ -2658,11 +2192,13 @@ copy_rtx_and_substitute (orig, map)
       switch (*format_ptr++)
        {
        case '0':
-         XEXP (copy, i) = XEXP (orig, i);
+         /* Copy this through the wide int field; that's safest.  */
+         X0WINT (copy, i) = X0WINT (orig, i);
          break;
 
        case 'e':
-         XEXP (copy, i) = copy_rtx_and_substitute (XEXP (orig, i), map);
+         XEXP (copy, i)
+           = copy_rtx_and_substitute (XEXP (orig, i), map, for_lhs);
          break;
 
        case 'u':
@@ -2678,7 +2214,8 @@ copy_rtx_and_substitute (orig, map)
              XVEC (copy, i) = rtvec_alloc (XVECLEN (orig, i));
              for (j = 0; j < XVECLEN (copy, i); j++)
                XVECEXP (copy, i, j)
-                 = copy_rtx_and_substitute (XVECEXP (orig, i, j), map);
+                 = copy_rtx_and_substitute (XVECEXP (orig, i, j),
+                                            map, for_lhs);
            }
          break;
 
@@ -2694,6 +2231,10 @@ copy_rtx_and_substitute (orig, map)
          XSTR (copy, i) = XSTR (orig, i);
          break;
 
+       case 't':
+         XTREE (copy, i) = XTREE (orig, i);
+         break;
+
        default:
          abort ();
        }
@@ -2701,9 +2242,10 @@ copy_rtx_and_substitute (orig, map)
 
   if (code == ASM_OPERANDS && map->orig_asm_operands_vector == 0)
     {
-      map->orig_asm_operands_vector = XVEC (orig, 3);
-      map->copy_asm_operands_vector = XVEC (copy, 3);
-      map->copy_asm_constraints_vector = XVEC (copy, 4);
+      map->orig_asm_operands_vector = ASM_OPERANDS_INPUT_VEC (orig);
+      map->copy_asm_operands_vector = ASM_OPERANDS_INPUT_VEC (copy);
+      map->copy_asm_constraints_vector
+       = ASM_OPERANDS_INPUT_CONSTRAINT_VEC (copy);
     }
 
   return copy;
@@ -2719,13 +2261,18 @@ try_constants (insn, map)
   int i;
 
   map->num_sets = 0;
-  subst_constants (&PATTERN (insn), insn, map);
 
-  /* Apply the changes if they are valid; otherwise discard them.  */
+  /* First try just updating addresses, then other things.  This is
+     important when we have something like the store of a constant
+     into memory and we can update the memory address but the machine
+     does not support a constant source.  */
+  subst_constants (&PATTERN (insn), insn, map, 1);
+  apply_change_group ();
+  subst_constants (&PATTERN (insn), insn, map, 0);
   apply_change_group ();
 
   /* Show we don't know the value of anything stored or clobbered.  */
-  note_stores (PATTERN (insn), mark_stores);
+  note_stores (PATTERN (insn), mark_stores, NULL);
   map->last_pc_value = 0;
 #ifdef HAVE_cc0
   map->last_cc0_value = 0;
@@ -2738,16 +2285,15 @@ try_constants (insn, map)
        {
          int regno = REGNO (map->equiv_sets[i].dest);
 
-         if (regno < map->const_equiv_map_size
-             && (map->const_equiv_map[regno] == 0
-                 /* Following clause is a hack to make case work where GNU C++
-                    reassigns a variable to make cse work right.  */
-                 || ! rtx_equal_p (map->const_equiv_map[regno],
-                                   map->equiv_sets[i].equiv)))
-           {
-             map->const_equiv_map[regno] = map->equiv_sets[i].equiv;
-             map->const_age_map[regno] = map->const_age;
-           }
+         MAYBE_EXTEND_CONST_EQUIV_VARRAY (map, regno);
+         if (VARRAY_CONST_EQUIV (map->const_equiv_varray, regno).rtx == 0
+             /* Following clause is a hack to make case work where GNU C++
+                reassigns a variable to make cse work right.  */
+             || ! rtx_equal_p (VARRAY_CONST_EQUIV (map->const_equiv_varray,
+                                                   regno).rtx,
+                               map->equiv_sets[i].equiv))
+           SET_CONST_EQUIV_DATA (map, map->equiv_sets[i].dest,
+                                 map->equiv_sets[i].equiv, map->const_age);
        }
       else if (map->equiv_sets[i].dest == pc_rtx)
        map->last_pc_value = map->equiv_sets[i].equiv;
@@ -2769,21 +2315,24 @@ try_constants (insn, map)
    into insns; cse will do the latter task better.
 
    This function is also used to adjust address of items previously addressed
-   via the virtual stack variable or virtual incoming arguments registers.  */
+   via the virtual stack variable or virtual incoming arguments registers.
+
+   If MEMONLY is nonzero, only make changes inside a MEM.  */
 
 static void
-subst_constants (loc, insn, map)
+subst_constants (loc, insn, map, memonly)
      rtx *loc;
      rtx insn;
      struct inline_remap *map;
+     int memonly;
 {
   rtx x = *loc;
-  register int i;
+  register int i, j;
   register enum rtx_code code;
-  register char *format_ptr;
+  register const char *format_ptr;
   int num_changes = num_validated_changes ();
   rtx new = 0;
-  enum machine_mode op0_mode;
+  enum machine_mode op0_mode = MAX_MACHINE_MODE;
 
   code = GET_CODE (x);
 
@@ -2800,7 +2349,8 @@ subst_constants (loc, insn, map)
 
 #ifdef HAVE_cc0
     case CC0:
-      validate_change (insn, loc, map->last_cc0_value, 1);
+      if (! memonly)
+       validate_change (insn, loc, map->last_cc0_value, 1);
       return;
 #endif
 
@@ -2809,22 +2359,25 @@ subst_constants (loc, insn, map)
       /* The only thing we can do with a USE or CLOBBER is possibly do
         some substitutions in a MEM within it.  */
       if (GET_CODE (XEXP (x, 0)) == MEM)
-       subst_constants (&XEXP (XEXP (x, 0), 0), insn, map);
+       subst_constants (&XEXP (XEXP (x, 0), 0), insn, map, 0);
       return;
 
     case REG:
       /* Substitute for parms and known constants.  Don't replace
         hard regs used as user variables with constants.  */
-      {
-       int regno = REGNO (x);
-
-       if (! (regno < FIRST_PSEUDO_REGISTER && REG_USERVAR_P (x))
-           && regno < map->const_equiv_map_size
-           && map->const_equiv_map[regno] != 0
-           && map->const_age_map[regno] >= map->const_age)
-         validate_change (insn, loc, map->const_equiv_map[regno], 1);
-       return;
-      }
+      if (! memonly)
+       {
+         int regno = REGNO (x);
+         struct const_equiv_data *p;
+
+         if (! (regno < FIRST_PSEUDO_REGISTER && REG_USERVAR_P (x))
+             && (size_t) regno < VARRAY_SIZE (map->const_equiv_varray)
+             && (p = &VARRAY_CONST_EQUIV (map->const_equiv_varray, regno),
+                 p->rtx != 0)
+             && p->age >= map->const_age)
+           validate_change (insn, loc, p->rtx, 1);
+       }
+      return;
 
     case SUBREG:
       /* SUBREG applied to something other than a reg
@@ -2832,7 +2385,7 @@ subst_constants (loc, insn, map)
         be a special hack and we don't know how to treat it specially.
         Consider for example mulsidi3 in m68k.md.
         Ordinary SUBREG of a REG needs this special treatment.  */
-      if (GET_CODE (SUBREG_REG (x)) == REG)
+      if (! memonly && GET_CODE (SUBREG_REG (x)) == REG)
        {
          rtx inner = SUBREG_REG (x);
          rtx new = 0;
@@ -2840,9 +2393,9 @@ subst_constants (loc, insn, map)
          /* We can't call subst_constants on &SUBREG_REG (x) because any
             constant or SUBREG wouldn't be valid inside our SUBEG.  Instead,
             see what is inside, try to form the new SUBREG and see if that is
-            valid.  We handle two cases: extracting a full word in an 
+            valid.  We handle two cases: extracting a full word in an
             integral mode and extracting the low part.  */
-         subst_constants (&inner, NULL_RTX, map);
+         subst_constants (&inner, NULL_RTX, map, 0);
 
          if (GET_MODE_CLASS (GET_MODE (x)) == MODE_INT
              && GET_MODE_SIZE (GET_MODE (x)) == UNITS_PER_WORD
@@ -2862,11 +2415,11 @@ subst_constants (loc, insn, map)
       break;
 
     case MEM:
-      subst_constants (&XEXP (x, 0), insn, map);
+      subst_constants (&XEXP (x, 0), insn, map, 0);
 
       /* If a memory address got spoiled, change it back.  */
-      if (insn != 0 && num_validated_changes () != num_changes
-         && !memory_address_p (GET_MODE (x), XEXP (x, 0)))
+      if (! memonly && insn != 0 && num_validated_changes () != num_changes
+         && ! memory_address_p (GET_MODE (x), XEXP (x, 0)))
        cancel_changes (num_changes);
       return;
 
@@ -2879,7 +2432,7 @@ subst_constants (loc, insn, map)
        rtx dest = *dest_loc;
        rtx src, tem;
 
-       subst_constants (&SET_SRC (x), insn, map);
+       subst_constants (&SET_SRC (x), insn, map, memonly);
        src = SET_SRC (x);
 
        while (GET_CODE (*dest_loc) == ZERO_EXTRACT
@@ -2888,15 +2441,15 @@ subst_constants (loc, insn, map)
          {
            if (GET_CODE (*dest_loc) == ZERO_EXTRACT)
              {
-               subst_constants (&XEXP (*dest_loc, 1), insn, map);
-               subst_constants (&XEXP (*dest_loc, 2), insn, map);
+               subst_constants (&XEXP (*dest_loc, 1), insn, map, memonly);
+               subst_constants (&XEXP (*dest_loc, 2), insn, map, memonly);
              }
            dest_loc = &XEXP (*dest_loc, 0);
          }
 
        /* Do substitute in the address of a destination in memory.  */
        if (GET_CODE (*dest_loc) == MEM)
-         subst_constants (&XEXP (*dest_loc, 0), insn, map);
+         subst_constants (&XEXP (*dest_loc, 0), insn, map, 0);
 
        /* Check for the case of DEST a SUBREG, both it and the underlying
           register are less than one word, and the SUBREG has the wider mode.
@@ -2944,7 +2497,7 @@ subst_constants (loc, insn, map)
     }
 
   format_ptr = GET_RTX_FORMAT (code);
-  
+
   /* If the first operand is an expression, save its mode for later.  */
   if (*format_ptr == 'e')
     op0_mode = GET_MODE (XEXP (x, 0));
@@ -2958,22 +2511,22 @@ subst_constants (loc, insn, map)
 
        case 'e':
          if (XEXP (x, i))
-           subst_constants (&XEXP (x, i), insn, map);
+           subst_constants (&XEXP (x, i), insn, map, memonly);
          break;
 
        case 'u':
        case 'i':
        case 's':
        case 'w':
+       case 'n':
+       case 't':
          break;
 
        case 'E':
          if (XVEC (x, i) != NULL && XVECLEN (x, i) != 0)
-           {
-             int j;
-             for (j = 0; j < XVECLEN (x, i); j++)
-               subst_constants (&XVECEXP (x, i, j), insn, map);
-           }
+           for (j = 0; j < XVECLEN (x, i); j++)
+             subst_constants (&XVECEXP (x, i, j), insn, map, memonly);
+
          break;
 
        default:
@@ -2983,7 +2536,8 @@ subst_constants (loc, insn, map)
 
   /* If this is a commutative operation, move a constant to the second
      operand unless the second operand is already a CONST_INT.  */
-  if ((GET_RTX_CLASS (code) == 'c' || code == NE || code == EQ)
+  if (! memonly
+      && (GET_RTX_CLASS (code) == 'c' || code == NE || code == EQ)
       && CONSTANT_P (XEXP (x, 0)) && GET_CODE (XEXP (x, 1)) != CONST_INT)
     {
       rtx tem = XEXP (x, 0);
@@ -2992,41 +2546,56 @@ subst_constants (loc, insn, map)
     }
 
   /* Simplify the expression in case we put in some constants.  */
-  switch (GET_RTX_CLASS (code))
-    {
-    case '1':
-      new = simplify_unary_operation (code, GET_MODE (x),
-                                     XEXP (x, 0), op0_mode);
-      break;
-
-    case '<':
+  if (! memonly)
+    switch (GET_RTX_CLASS (code))
       {
-       enum machine_mode op_mode = GET_MODE (XEXP (x, 0));
-       if (op_mode == VOIDmode)
-         op_mode = GET_MODE (XEXP (x, 1));
-       new = simplify_relational_operation (code, op_mode,
-                                            XEXP (x, 0), XEXP (x, 1));
+      case '1':
+       if (op0_mode == MAX_MACHINE_MODE)
+         abort ();
+       new = simplify_unary_operation (code, GET_MODE (x),
+                                       XEXP (x, 0), op0_mode);
+       break;
+
+      case '<':
+       {
+         enum machine_mode op_mode = GET_MODE (XEXP (x, 0));
+
+         if (op_mode == VOIDmode)
+           op_mode = GET_MODE (XEXP (x, 1));
+         new = simplify_relational_operation (code, op_mode,
+                                              XEXP (x, 0), XEXP (x, 1));
 #ifdef FLOAT_STORE_FLAG_VALUE
-       if (new != 0 && GET_MODE_CLASS (GET_MODE (x)) == MODE_FLOAT)
-         new = ((new == const0_rtx) ? CONST0_RTX (GET_MODE (x))
-                : CONST_DOUBLE_FROM_REAL_VALUE (FLOAT_STORE_FLAG_VALUE,
-                                                GET_MODE (x)));
+         if (new != 0 && GET_MODE_CLASS (GET_MODE (x)) == MODE_FLOAT)
+           {
+             enum machine_mode mode = GET_MODE (x);
+             if (new == const0_rtx)
+               new = CONST0_RTX (mode);
+             else
+               {
+                 REAL_VALUE_TYPE val = FLOAT_STORE_FLAG_VALUE (mode);
+                 new = CONST_DOUBLE_FROM_REAL_VALUE (val, mode);
+               }
+           }
 #endif
+         break;
+       }
+
+      case '2':
+      case 'c':
+       new = simplify_binary_operation (code, GET_MODE (x),
+                                        XEXP (x, 0), XEXP (x, 1));
        break;
-      }
 
-    case '2':
-    case 'c':
-      new = simplify_binary_operation (code, GET_MODE (x),
-                                      XEXP (x, 0), XEXP (x, 1));
-      break;
+      case 'b':
+      case '3':
+       if (op0_mode == MAX_MACHINE_MODE)
+         abort ();
 
-    case 'b':
-    case '3':
-      new = simplify_ternary_operation (code, GET_MODE (x), op0_mode,
-                                       XEXP (x, 0), XEXP (x, 1), XEXP (x, 2));
-      break;
-    }
+       new = simplify_ternary_operation (code, GET_MODE (x), op0_mode,
+                                         XEXP (x, 0), XEXP (x, 1),
+                                         XEXP (x, 2));
+       break;
+      }
 
   if (new)
     validate_change (insn, loc, new, 1);
@@ -3035,13 +2604,14 @@ subst_constants (loc, insn, map)
 /* Show that register modified no longer contain known constants.  We are
    called from note_stores with parts of the new insn.  */
 
-void
-mark_stores (dest, x)
+static void
+mark_stores (dest, x, data)
      rtx dest;
-     rtx x;
+     rtx x ATTRIBUTE_UNUSED;
+     void *data ATTRIBUTE_UNUSED;
 {
   int regno = -1;
-  enum machine_mode mode;
+  enum machine_mode mode = VOIDmode;
 
   /* DEST is always the innermost thing set, except in the case of
      SUBREGs of hard registers.  */
@@ -3056,99 +2626,18 @@ mark_stores (dest, x)
 
   if (regno >= 0)
     {
-      int last_reg = (regno >= FIRST_PSEUDO_REGISTER ? regno
-                     : regno + HARD_REGNO_NREGS (regno, mode) - 1);
-      int i;
+      unsigned int uregno = regno;
+      unsigned int last_reg = (uregno >= FIRST_PSEUDO_REGISTER ? uregno
+                              : uregno + HARD_REGNO_NREGS (uregno, mode) - 1);
+      unsigned int i;
 
       /* Ignore virtual stack var or virtual arg register since those
         are handled separately.  */
-      if (regno != VIRTUAL_INCOMING_ARGS_REGNUM
-         && regno != VIRTUAL_STACK_VARS_REGNUM)
-       for (i = regno; i <= last_reg; i++)
-         if (i < global_const_equiv_map_size)
-           global_const_equiv_map[i] = 0;
-    }
-}
-\f
-/* If any CONST expressions with RTX_INTEGRATED_P are present in the rtx
-   pointed to by PX, they represent constants in the constant pool.
-   Replace these with a new memory reference obtained from force_const_mem.
-   Similarly, ADDRESS expressions with RTX_INTEGRATED_P represent the
-   address of a constant pool entry.  Replace them with the address of
-   a new constant pool entry obtained from force_const_mem.  */
-
-static void
-restore_constants (px)
-     rtx *px;
-{
-  rtx x = *px;
-  int i, j;
-  char *fmt;
-
-  if (x == 0)
-    return;
-
-  if (GET_CODE (x) == CONST_DOUBLE)
-    {
-      /* We have to make a new CONST_DOUBLE to ensure that we account for
-        it correctly.  Using the old CONST_DOUBLE_MEM data is wrong.  */
-      if (GET_MODE_CLASS (GET_MODE (x)) == MODE_FLOAT)
-       {
-         REAL_VALUE_TYPE d;
-
-         REAL_VALUE_FROM_CONST_DOUBLE (d, x);
-         *px = CONST_DOUBLE_FROM_REAL_VALUE (d, GET_MODE (x));
-       }
-      else
-       *px = immed_double_const (CONST_DOUBLE_LOW (x), CONST_DOUBLE_HIGH (x),
-                                 VOIDmode);
-    }
-
-  else if (RTX_INTEGRATED_P (x) && GET_CODE (x) == CONST)
-    {
-      restore_constants (&XEXP (x, 0));
-      *px = validize_mem (force_const_mem (GET_MODE (x), XEXP (x, 0)));
-    }
-  else if (RTX_INTEGRATED_P (x) && GET_CODE (x) == SUBREG)
-    {
-      /* This must be (subreg/i:M1 (const/i:M2 ...) 0).  */
-      rtx new = XEXP (SUBREG_REG (x), 0);
-
-      restore_constants (&new);
-      new = force_const_mem (GET_MODE (SUBREG_REG (x)), new);
-      PUT_MODE (new, GET_MODE (x));
-      *px = validize_mem (new);
-    }
-  else if (RTX_INTEGRATED_P (x) && GET_CODE (x) == ADDRESS)
-    {
-      rtx new = XEXP (force_const_mem (GET_MODE (XEXP (x, 0)),
-                                      XEXP (XEXP (x, 0), 0)),
-                     0);
-
-#ifdef POINTERS_EXTEND_UNSIGNED
-      if (GET_MODE (new) != GET_MODE (x))
-       new = convert_memory_address (GET_MODE (x), new);
-#endif
-
-      *px = new;
-    }
-  else
-    {
-      fmt = GET_RTX_FORMAT (GET_CODE (x));
-      for (i = 0; i < GET_RTX_LENGTH (GET_CODE (x)); i++)
-       {
-         switch (*fmt++)
-           {
-           case 'E':
-             for (j = 0; j < XVECLEN (x, i); j++)
-               restore_constants (&XVECEXP (x, i, j));
-             break;
-
-           case 'e':
-             restore_constants (&XEXP (x, i));
-             break;
-           }
-       }
+      if (uregno != VIRTUAL_INCOMING_ARGS_REGNUM
+         && uregno != VIRTUAL_STACK_VARS_REGNUM)
+       for (i = uregno; i <= last_reg; i++)
+         if ((size_t) i < VARRAY_SIZE (global_const_equiv_varray))
+           VARRAY_CONST_EQUIV (global_const_equiv_varray, i).rtx = 0;
     }
 }
 \f
@@ -3171,21 +2660,21 @@ set_block_origin_self (stmt)
       BLOCK_ABSTRACT_ORIGIN (stmt) = stmt;
 
       {
-        register tree local_decl;
+       register tree local_decl;
 
-        for (local_decl = BLOCK_VARS (stmt);
+       for (local_decl = BLOCK_VARS (stmt);
             local_decl != NULL_TREE;
             local_decl = TREE_CHAIN (local_decl))
-          set_decl_origin_self (local_decl);   /* Potential recursion.  */
+         set_decl_origin_self (local_decl);    /* Potential recursion.  */
       }
 
       {
-        register tree subblock;
+       register tree subblock;
 
-        for (subblock = BLOCK_SUBBLOCKS (stmt);
+       for (subblock = BLOCK_SUBBLOCKS (stmt);
             subblock != NULL_TREE;
             subblock = BLOCK_CHAIN (subblock))
-          set_block_origin_self (subblock);    /* Recurse.  */
+         set_block_origin_self (subblock);     /* Recurse.  */
       }
     }
 }
@@ -3201,7 +2690,7 @@ set_block_origin_self (stmt)
    set *their* DECL_ABSTRACT_ORIGIN or BLOCK_ABSTRACT_ORIGIN values to
    point to themselves.  */
 
-static void
+void
 set_decl_origin_self (decl)
      register tree decl;
 {
@@ -3279,108 +2768,31 @@ void
 output_inline_function (fndecl)
      tree fndecl;
 {
-  rtx head;
-  rtx last;
+  struct function *old_cfun = cfun;
+  enum debug_info_type old_write_symbols = write_symbols;
+  struct function *f = DECL_SAVED_INSNS (fndecl);
 
-  /* Things we allocate from here on are part of this function, not
-     permanent.  */
-  temporary_allocation ();
-
-  head = DECL_SAVED_INSNS (fndecl);
+  cfun = f;
   current_function_decl = fndecl;
+  clear_emit_caches ();
 
-  /* This call is only used to initialize global variables.  */
-  init_function_start (fndecl, "lossage", 1);
-
-  /* Redo parameter determinations in case the FUNCTION_...
-     macros took machine-specific actions that need to be redone.  */
-  assign_parms (fndecl, 1);
-
-  /* Set stack frame size.  */
-  assign_stack_local (BLKmode, DECL_FRAME_SIZE (fndecl), 0);
-
-  /* The first is a bit of a lie (the array may be larger), but doesn't
-     matter too much and it isn't worth saving the actual bound.  */
-  reg_rtx_no = regno_pointer_flag_length = MAX_REGNUM (head);
-  regno_reg_rtx = (rtx *) INLINE_REGNO_REG_RTX (head);
-  regno_pointer_flag = INLINE_REGNO_POINTER_FLAG (head);
-  regno_pointer_align = INLINE_REGNO_POINTER_ALIGN (head);
-  max_parm_reg = MAX_PARMREG (head);
-  parm_reg_stack_loc = (rtx *) PARMREG_STACK_LOC (head);
-  
-  stack_slot_list = STACK_SLOT_LIST (head);
-  forced_labels = FORCED_LABELS (head);
-
-  if (FUNCTION_FLAGS (head) & FUNCTION_FLAGS_CALLS_ALLOCA)
-    current_function_calls_alloca = 1;
-
-  if (FUNCTION_FLAGS (head) & FUNCTION_FLAGS_CALLS_SETJMP)
-    current_function_calls_setjmp = 1;
-
-  if (FUNCTION_FLAGS (head) & FUNCTION_FLAGS_CALLS_LONGJMP)
-    current_function_calls_longjmp = 1;
-
-  if (FUNCTION_FLAGS (head) & FUNCTION_FLAGS_RETURNS_STRUCT)
-    current_function_returns_struct = 1;
-
-  if (FUNCTION_FLAGS (head) & FUNCTION_FLAGS_RETURNS_PCC_STRUCT)
-    current_function_returns_pcc_struct = 1;
-
-  if (FUNCTION_FLAGS (head) & FUNCTION_FLAGS_NEEDS_CONTEXT)
-    current_function_needs_context = 1;
-
-  if (FUNCTION_FLAGS (head) & FUNCTION_FLAGS_HAS_NONLOCAL_LABEL)
-    current_function_has_nonlocal_label = 1;
-
-  if (FUNCTION_FLAGS (head) & FUNCTION_FLAGS_RETURNS_POINTER)
-    current_function_returns_pointer = 1;
-
-  if (FUNCTION_FLAGS (head) & FUNCTION_FLAGS_USES_CONST_POOL)
-    current_function_uses_const_pool = 1;
-
-  if (FUNCTION_FLAGS (head) & FUNCTION_FLAGS_USES_PIC_OFFSET_TABLE)
-    current_function_uses_pic_offset_table = 1;
-
-  current_function_outgoing_args_size = OUTGOING_ARGS_SIZE (head);
-  current_function_pops_args = POPS_ARGS (head);
-
-  /* This is the only thing the expand_function_end call that uses to be here
-     actually does and that call can cause problems.  */
-  immediate_size_expand--;
-
-  /* Find last insn and rebuild the constant pool.  */
-  for (last = FIRST_PARM_INSN (head);
-       NEXT_INSN (last); last = NEXT_INSN (last))
-    {
-      if (GET_RTX_CLASS (GET_CODE (last)) == 'i')
-       {
-         restore_constants (&PATTERN (last));
-         restore_constants (&REG_NOTES (last));
-       }
-    }
-
-  set_new_first_and_last_insn (FIRST_PARM_INSN (head), last);
-  set_new_first_and_last_label_num (FIRST_LABELNO (head), LAST_LABELNO (head));
-
-  /* We must have already output DWARF debugging information for the
-     original (abstract) inline function declaration/definition, so
-     we want to make sure that the debugging information we generate
-     for this special instance of the inline function refers back to
-     the information we already generated.  To make sure that happens,
-     we simply have to set the DECL_ABSTRACT_ORIGIN for the function
-     node (and for all of the local ..._DECL nodes which are its children)
-     so that they all point to themselves.  */
-
-  set_decl_origin_self (fndecl);
+  set_new_last_label_num (f->inl_max_label_num);
 
   /* We're not deferring this any longer.  */
   DECL_DEFER_OUTPUT (fndecl) = 0;
 
-  /* We can't inline this anymore.  */
-  DECL_INLINE (fndecl) = 0;
+  /* If requested, suppress debugging information.  */
+  if (f->no_debugging_symbols)
+    write_symbols = NO_DEBUG;
 
   /* Compile this function all the way down to assembly code.  */
   rest_of_compilation (fndecl);
 
-  current_function_decl = 0;
+  /* We can't inline this anymore.  */
+  f->inlinable = 0;
+  DECL_INLINE (fndecl) = 0;
+
+  cfun = old_cfun;
+  current_function_decl = old_cfun ? old_cfun->decl : 0;
+  write_symbols = old_write_symbols;
 }
This page took 0.122365 seconds and 5 git commands to generate.