This commit was generated by cvs2svn to compensate for changes in r5670,
[chise/xemacs-chise.git.1] / src / alloc.c
index 7902603..8765c62 100644 (file)
@@ -36,7 +36,6 @@ Boston, MA 02111-1307, USA.  */
        Added lcrecord lists for 19.14.
    slb: Lots of work on the purification and dump time code.
         Synched Doug Lea malloc support from Emacs 20.2.
-   og:  Killed the purespace.
 */
 
 #include <config.h>
@@ -52,28 +51,18 @@ Boston, MA 02111-1307, USA.  */
 #include "extents.h"
 #include "frame.h"
 #include "glyphs.h"
-#include "opaque.h"
 #include "redisplay.h"
 #include "specifier.h"
 #include "sysfile.h"
 #include "window.h"
 
-#include <stddef.h>
-
 #ifdef DOUG_LEA_MALLOC
 #include <malloc.h>
 #endif
 
 EXFUN (Fgarbage_collect, 0);
 
-/* Return the true size of a struct with a variable-length array field.  */
-#define STRETCHY_STRUCT_SIZEOF(stretchy_struct_type,           \
-                              stretchy_array_field,            \
-                              stretchy_array_length)           \
-  (offsetof (stretchy_struct_type, stretchy_array_field) +     \
-   (offsetof (stretchy_struct_type, stretchy_array_field[1]) - \
-    offsetof (stretchy_struct_type, stretchy_array_field[0])) *        \
-   (stretchy_array_length))
+/* #define GDB_SUCKS */
 
 #if 0 /* this is _way_ too slow to be part of the standard debug options */
 #if defined(DEBUG_XEMACS) && defined(MULE)
@@ -81,6 +70,14 @@ EXFUN (Fgarbage_collect, 0);
 #endif
 #endif
 
+/* Define this to see where all that space is going... */
+/* But the length of the printout is obnoxious, so limit it to testers */
+/* If somebody wants to see this they can ask for it.
+#ifdef DEBUG_XEMACS
+#define PURESTAT
+#endif
+*/
+
 /* Define this to use malloc/free with no freelist for all datatypes,
    the hope being that some debugging tools may help detect
    freed memory references */
@@ -89,14 +86,27 @@ EXFUN (Fgarbage_collect, 0);
 #define ALLOC_NO_POOLS
 #endif
 
+#include "puresize.h"
+
 #ifdef DEBUG_XEMACS
-static int debug_allocation;
-static int debug_allocation_backtrace_length;
+int debug_allocation;
+
+int debug_allocation_backtrace_length;
 #endif
 
 /* Number of bytes of consing done since the last gc */
 EMACS_INT consing_since_gc;
+#ifdef EMACS_BTL
+extern void cadillac_record_backtrace ();
+#define INCREMENT_CONS_COUNTER_1(size)         \
+  do {                                         \
+    EMACS_INT __sz__ = ((EMACS_INT) (size));   \
+    consing_since_gc += __sz__;                        \
+    cadillac_record_backtrace (2, __sz__);     \
+  } while (0)
+#else
 #define INCREMENT_CONS_COUNTER_1(size) (consing_since_gc += (size))
+#endif /* EMACS_BTL */
 
 #define debug_allocation_backtrace()                           \
 do {                                                           \
@@ -129,11 +139,14 @@ do {                                                              \
   INCREMENT_CONS_COUNTER_1 (size)
 #endif
 
-#define DECREMENT_CONS_COUNTER(size) do {      \
-  consing_since_gc -= (size);                  \
-  if (consing_since_gc < 0)                    \
-    consing_since_gc = 0;                      \
-} while (0)
+#define DECREMENT_CONS_COUNTER(size)           \
+  do {                                         \
+    EMACS_INT __sz__ = ((EMACS_INT) (size));   \
+    if (consing_since_gc >= __sz__)            \
+      consing_since_gc -= __sz__;              \
+    else                                       \
+      consing_since_gc = 0;                    \
+  } while (0)
 
 /* Number of bytes of consing since gc before another gc should be done. */
 EMACS_INT gc_cons_threshold;
@@ -173,13 +186,34 @@ extern
 #endif /* VIRT_ADDR_VARIES */
  EMACS_INT malloc_sbrk_unused;
 
-/* Non-zero means we're in the process of doing the dump */
+/* Non-zero means defun should do purecopy on the function definition */
 int purify_flag;
 
 #ifdef HEAP_IN_DATA
 extern void sheap_adjust_h();
 #endif
 
+#define PUREBEG ((char *) pure)
+
+#if 0 /* This is breathing_space in XEmacs */
+/* Points to memory space allocated as "spare",
+   to be freed if we run out of memory.  */
+static char *spare_memory;
+
+/* Amount of spare memory to keep in reserve.  */
+#define SPARE_MEMORY (1 << 14)
+#endif
+
+/* Index in pure at which next pure object will be allocated. */
+static size_t pure_bytes_used;
+
+#define PURIFIED(ptr)                          \
+((char *) (ptr) >= PUREBEG &&                  \
+ (char *) (ptr) <  PUREBEG + get_PURESIZE())
+
+/* Non-zero if pure_bytes_used > get_PURESIZE(); accounts for excess purespace needs. */
+static size_t pure_lossage;
+
 #ifdef ERROR_CHECK_TYPECHECK
 
 Error_behavior ERROR_ME, ERROR_ME_NOT, ERROR_ME_WARN;
@@ -187,22 +221,108 @@ Error_behavior ERROR_ME, ERROR_ME_NOT, ERROR_ME_WARN;
 #endif
 
 int
-c_readonly (Lisp_Object obj)
+purified (Lisp_Object obj)
 {
-  return POINTER_TYPE_P (XGCTYPE (obj)) && C_READONLY (obj);
+  return POINTER_TYPE_P (XGCTYPE (obj)) && PURIFIED (XPNTR (obj));
 }
 
-int
-lisp_readonly (Lisp_Object obj)
+size_t
+purespace_usage (void)
+{
+  return pure_bytes_used;
+}
+
+static int
+check_purespace (size_t size)
+{
+  if (pure_lossage)
+    {
+      pure_lossage += size;
+      return 0;
+    }
+  else if (pure_bytes_used + size > get_PURESIZE())
+    {
+      /* This can cause recursive bad behavior, we'll yell at the end */
+      /* when we're done. */
+      /* message ("\nERROR:  Pure Lisp storage exhausted!\n"); */
+      pure_lossage = size;
+      return 0;
+    }
+  else
+    return 1;
+}
+
+
+\f
+#ifndef PURESTAT
+
+#define bump_purestat(p,b) DO_NOTHING
+
+#else /* PURESTAT */
+
+static int purecopying_for_bytecode;
+
+static size_t pure_sizeof (Lisp_Object /*, int recurse */);
+
+/* Keep statistics on how much of what is in purespace */
+static struct purestat
+{
+  int nobjects;
+  int nbytes;
+  CONST char *name;
+}
+  purestat_cons = {0, 0, "cons cells"},
+  purestat_float = {0, 0, "float objects"},
+  purestat_string_pname = {0, 0, "symbol-name strings"},
+  purestat_bytecode = {0, 0, "compiled-function objects"},
+  purestat_string_bytecodes = {0, 0, "byte-code strings"},
+  purestat_vector_bytecode_constants = {0, 0, "byte-constant vectors"},
+  purestat_string_interactive = {0, 0, "interactive strings"},
+#ifdef I18N3
+  purestat_string_domain = {0, 0, "domain strings"},
+#endif
+  purestat_string_documentation = {0, 0, "documentation strings"},
+  purestat_string_other_function = {0, 0, "other function strings"},
+  purestat_vector_other = {0, 0, "other vectors"},
+  purestat_string_other = {0, 0, "other strings"},
+  purestat_string_all = {0, 0, "all strings"},
+  purestat_vector_all = {0, 0, "all vectors"};
+
+static struct purestat *purestats[] =
+{
+  &purestat_cons,
+  &purestat_float,
+  &purestat_string_pname,
+  &purestat_bytecode,
+  &purestat_string_bytecodes,
+  &purestat_vector_bytecode_constants,
+  &purestat_string_interactive,
+#ifdef I18N3
+  &purestat_string_domain,
+#endif
+  &purestat_string_documentation,
+  &purestat_string_other_function,
+  &purestat_vector_other,
+  &purestat_string_other,
+  0,
+  &purestat_string_all,
+  &purestat_vector_all
+};
+
+static void
+bump_purestat (struct purestat *purestat, size_t nbytes)
 {
-  return POINTER_TYPE_P (XGCTYPE (obj)) && LISP_READONLY (obj);
+  if (pure_lossage) return;
+  purestat->nobjects += 1;
+  purestat->nbytes += nbytes;
 }
+#endif /* PURESTAT */
 
 \f
 /* Maximum amount of C stack to save when a GC happens.  */
 
 #ifndef MAX_SAVE_STACK
-#define MAX_SAVE_STACK 0 /* 16000 */
+#define MAX_SAVE_STACK 16000
 #endif
 
 /* Non-zero means ignore malloc warnings.  Set during initialization.  */
@@ -267,29 +387,18 @@ memory_full (void)
 void *
 xmalloc (size_t size)
 {
-  void *val = malloc (size);
+  void *val = (void *) malloc (size);
 
   if (!val && (size != 0)) memory_full ();
   return val;
 }
 
-#ifdef xcalloc
-#undef xcalloc
-#endif
-
-static void *
-xcalloc (size_t nelem, size_t elsize)
-{
-  void *val = calloc (nelem, elsize);
-
-  if (!val && (nelem != 0)) memory_full ();
-  return val;
-}
-
 void *
 xmalloc_and_zero (size_t size)
 {
-  return xcalloc (size, sizeof (char));
+  void *val = xmalloc (size);
+  memset (val, 0, size);
+  return val;
 }
 
 #ifdef xrealloc
@@ -301,7 +410,7 @@ xrealloc (void *block, size_t size)
 {
   /* We must call malloc explicitly when BLOCK is 0, since some
      reallocs don't do this.  */
-  void *val = block ? realloc (block, size) : malloc (size);
+  void *val = (void *) (block ? realloc (block, size) : malloc (size));
 
   if (!val && (size != 0)) memory_full ();
   return val;
@@ -382,6 +491,17 @@ static void *
 allocate_lisp_storage (size_t size)
 {
   void *p = xmalloc (size);
+#ifndef USE_MINIMAL_TAGBITS
+  char *lim = ((char *) p) + size;
+  Lisp_Object val;
+
+  XSETOBJ (val, Lisp_Type_Record, lim);
+  if ((char *) XPNTR (val) != lim)
+    {
+      xfree (p);
+      memory_full ();
+    }
+#endif /* ! USE_MINIMAL_TAGBITS */
   return p;
 }
 
@@ -397,15 +517,17 @@ alloc_lcrecord (size_t size, CONST struct lrecord_implementation *implementation
 {
   struct lcrecord_header *lcheader;
 
-#ifdef ERROR_CHECK_GC
+  if (size <= 0) abort ();
   if (implementation->static_size == 0)
-    assert (implementation->size_in_bytes_method);
-  else
-    assert (implementation->static_size == size);
-#endif
+    {
+      if (!implementation->size_in_bytes_method)
+       abort ();
+    }
+  else if (implementation->static_size != size)
+    abort ();
 
   lcheader = (struct lcrecord_header *) allocate_lisp_storage (size);
-  set_lheader_implementation (&(lcheader->lheader), implementation);
+  set_lheader_implementation(&(lcheader->lheader), implementation);
   lcheader->next = all_lcrecords;
 #if 1                           /* mly prefers to see small ID numbers */
   lcheader->uid = lrecord_uid_counter++;
@@ -450,7 +572,7 @@ free_lcrecord (struct lcrecord_header *lcrecord)
        }
     }
   if (lrecord->implementation->finalizer)
-    lrecord->implementation->finalizer (lrecord, 0);
+    ((lrecord->implementation->finalizer) (lrecord, 0));
   xfree (lrecord);
   return;
 }
@@ -504,70 +626,91 @@ gc_record_type_p (Lisp_Object frob, CONST struct lrecord_implementation *type)
     return 0;
 
   imp = XRECORD_LHEADER_IMPLEMENTATION (frob);
+#ifdef USE_INDEXED_LRECORD_IMPLEMENTATION
   return imp == type;
+#else
+  return imp == type || imp == type + 1;
+#endif
 }
 
 \f
-/************************************************************************/
-/*                       Debugger support                              */
-/************************************************************************/
-/* Give gdb/dbx enough information to decode Lisp Objects.  We make
-   sure certain symbols are always defined, so gdb doesn't complain
-   about expressions in src/gdbinit.  See src/gdbinit or src/dbxrc to
-   see how this is used.  */
-
-EMACS_UINT dbg_valmask = ((1UL << VALBITS) - 1) << GCBITS;
-EMACS_UINT dbg_typemask = (1UL << GCTYPEBITS) - 1;
-
-#ifdef USE_UNION_TYPE
-unsigned char dbg_USE_UNION_TYPE = 1;
+/**********************************************************************/
+/*                       Debugger support                            */
+/**********************************************************************/
+/* Give gdb/dbx enough information to decode Lisp Objects.
+   We make sure certain symbols are defined, so gdb doesn't complain
+   about expressions in src/gdbinit.  Values are randomly chosen.
+   See src/gdbinit or src/dbxrc to see how this is used.  */
+
+enum dbg_constants
+{
+#ifdef USE_MINIMAL_TAGBITS
+  dbg_valmask = (EMACS_INT) (((1UL << VALBITS) - 1) << GCBITS),
+  dbg_typemask = (EMACS_INT) ((1UL << GCTYPEBITS) - 1),
+  dbg_USE_MINIMAL_TAGBITS = 1,
+  dbg_Lisp_Type_Int = 100,
+#else /* ! USE_MIMIMAL_TAGBITS */
+  dbg_valmask = (EMACS_INT) ((1UL << VALBITS) - 1),
+  dbg_typemask = (EMACS_INT) (((1UL << GCTYPEBITS) - 1) << (VALBITS + GCMARKBITS)),
+  dbg_USE_MINIMAL_TAGBITS = 0,
+  dbg_Lisp_Type_Int = Lisp_Type_Int,
+#endif /* ! USE_MIMIMAL_TAGBITS */
+#ifdef USE_INDEXED_LRECORD_IMPLEMENTATION
+  dbg_USE_INDEXED_LRECORD_IMPLEMENTATION = 1,
 #else
-unsigned char dbg_USE_UNION_TYPE = 0;
+  dbg_USE_INDEXED_LRECORD_IMPLEMENTATION = 0,
 #endif
-
-unsigned char Lisp_Type_Int = 100;
-unsigned char Lisp_Type_Cons = 101;
-unsigned char Lisp_Type_String = 102;
-unsigned char Lisp_Type_Vector = 103;
-unsigned char Lisp_Type_Symbol = 104;
-
-#ifndef MULE
-unsigned char lrecord_char_table_entry;
-unsigned char lrecord_charset;
-#ifndef FILE_CODING
-unsigned char lrecord_coding_system;
+  dbg_Lisp_Type_Char = Lisp_Type_Char,
+  dbg_Lisp_Type_Record = Lisp_Type_Record,
+#ifdef LRECORD_CONS
+  dbg_Lisp_Type_Cons = 101,
+#else
+  dbg_Lisp_Type_Cons = Lisp_Type_Cons,
+  lrecord_cons = 201,
+#endif
+#ifdef LRECORD_STRING
+  dbg_Lisp_Type_String = 102,
+#else
+  dbg_Lisp_Type_String = Lisp_Type_String,
+  lrecord_string = 202,
 #endif
+#ifdef LRECORD_VECTOR
+  dbg_Lisp_Type_Vector = 103,
+#else
+  dbg_Lisp_Type_Vector = Lisp_Type_Vector,
+  lrecord_vector = 203,
+#endif
+#ifdef LRECORD_SYMBOL
+  dbg_Lisp_Type_Symbol = 104,
+#else
+  dbg_Lisp_Type_Symbol = Lisp_Type_Symbol,
+  lrecord_symbol = 204,
+#endif
+#ifndef MULE
+  lrecord_char_table_entry = 205,
+  lrecord_charset          = 206,
+  lrecord_coding_system    = 207,
 #endif
-
 #ifndef HAVE_TOOLBARS
-unsigned char lrecord_toolbar_button;
+  lrecord_toolbar_button   = 208,
 #endif
-
-#ifndef TOOLTALK
-unsigned char lrecord_tooltalk_message;
-unsigned char lrecord_tooltalk_pattern;
+#ifndef HAVE_TOOLTALK
+  lrecord_tooltalk_message = 210,
+  lrecord_tooltalk_pattern = 211,
 #endif
-
 #ifndef HAVE_DATABASE
-unsigned char lrecord_database;
+  lrecord_database = 212,
 #endif
-
-unsigned char dbg_valbits = VALBITS;
-unsigned char dbg_gctypebits = GCTYPEBITS;
-
-/* Macros turned into functions for ease of debugging.
-   Debuggers don't know about macros! */
-int dbg_eq (Lisp_Object obj1, Lisp_Object obj2);
-int
-dbg_eq (Lisp_Object obj1, Lisp_Object obj2)
-{
-  return EQ (obj1, obj2);
-}
+  dbg_valbits = VALBITS,
+  dbg_gctypebits = GCTYPEBITS
+  /* If we don't have an actual object of this enum, pgcc (and perhaps
+     other compilers) might optimize away the entire type declaration :-( */
+} dbg_dummy;
 
 \f
-/************************************************************************/
-/*                       Fixed-size type macros                        */
-/************************************************************************/
+/**********************************************************************/
+/*                        Fixed-size type macros                      */
+/**********************************************************************/
 
 /* For fixed-size types that are commonly used, we malloc() large blocks
    of memory at a time and subdivide them into chunks of the correct
@@ -749,46 +892,45 @@ refill_memory_reserve ()
      / sizeof (structtype))
 #endif /* ALLOC_NO_POOLS */
 
-#define DECLARE_FIXED_TYPE_ALLOC(type, structtype)     \
-                                                       \
-struct type##_block                                    \
-{                                                      \
-  struct type##_block *prev;                           \
-  structtype block[TYPE_ALLOC_SIZE (type, structtype)];        \
-};                                                     \
-                                                       \
-static struct type##_block *current_##type##_block;    \
-static int current_##type##_block_index;               \
-                                                       \
-static structtype *type##_free_list;                   \
-static structtype *type##_free_list_tail;              \
-                                                       \
-static void                                            \
-init_##type##_alloc (void)                             \
-{                                                      \
-  current_##type##_block = 0;                          \
-  current_##type##_block_index =                       \
-    countof (current_##type##_block->block);           \
-  type##_free_list = 0;                                        \
-  type##_free_list_tail = 0;                           \
-}                                                      \
-                                                       \
-static int gc_count_num_##type##_in_use;               \
-static int gc_count_num_##type##_freelist
-
-#define ALLOCATE_FIXED_TYPE_FROM_BLOCK(type, result) do {              \
-  if (current_##type##_block_index                                     \
-      == countof (current_##type##_block->block))                      \
+#define DECLARE_FIXED_TYPE_ALLOC(type, structtype)                       \
+                                                                         \
+struct type##_block                                                      \
+{                                                                        \
+  struct type##_block *prev;                                             \
+  structtype block[TYPE_ALLOC_SIZE (type, structtype)];                          \
+};                                                                       \
+                                                                         \
+static struct type##_block *current_##type##_block;                      \
+static int current_##type##_block_index;                                 \
+                                                                         \
+static structtype *type##_free_list;                                     \
+static structtype *type##_free_list_tail;                                \
+                                                                         \
+static void                                                              \
+init_##type##_alloc (void)                                               \
+{                                                                        \
+  current_##type##_block = 0;                                            \
+  current_##type##_block_index = countof (current_##type##_block->block); \
+  type##_free_list = 0;                                                          \
+  type##_free_list_tail = 0;                                             \
+}                                                                        \
+                                                                         \
+static int gc_count_num_##type##_in_use, gc_count_num_##type##_freelist
+
+#define ALLOCATE_FIXED_TYPE_FROM_BLOCK(type, result)                   \
+  do {                                                                 \
+    if (current_##type##_block_index                                   \
+       == countof (current_##type##_block->block))                     \
     {                                                                  \
-      struct type##_block *AFTFB_new = (struct type##_block *)         \
-       allocate_lisp_storage (sizeof (struct type##_block));           \
-      AFTFB_new->prev = current_##type##_block;                                \
-      current_##type##_block = AFTFB_new;                              \
+      struct type##_block *__new__ = (struct type##_block *)           \
+         allocate_lisp_storage (sizeof (struct type##_block));         \
+      __new__->prev = current_##type##_block;                          \
+      current_##type##_block = __new__;                                        \
       current_##type##_block_index = 0;                                        \
     }                                                                  \
-  (result) =                                                           \
-    &(current_##type##_block->block[current_##type##_block_index++]);  \
-} while (0)
+    (result) =                                                         \
+      &(current_##type##_block->block[current_##type##_block_index++]);        \
+  } while (0)
 
 /* Allocate an instance of a type that is stored in blocks.
    TYPE is the "name" of the type, STRUCTTYPE is the corresponding
@@ -904,22 +1046,22 @@ do { if (type##_free_list_tail)                                          \
 #else /* !ERROR_CHECK_GC */
 
 #define PUT_FIXED_TYPE_ON_FREE_LIST(type, structtype, ptr)     \
-do { * (structtype **) ((char *) (ptr) + sizeof (void *)) =    \
+do { * (structtype **) ((char *) ptr + sizeof (void *)) =      \
        type##_free_list;                                       \
-     type##_free_list = (ptr);                                 \
+     type##_free_list = ptr;                                   \
    } while (0)
 
 #endif /* !ERROR_CHECK_GC */
 
 /* TYPE and STRUCTTYPE are the same as in ALLOCATE_FIXED_TYPE(). */
 
-#define FREE_FIXED_TYPE(type, structtype, ptr) do {            \
-  structtype *FFT_ptr = (ptr);                                 \
-  ADDITIONAL_FREE_##type (FFT_ptr);                            \
-  deadbeef_memory (FFT_ptr, sizeof (structtype));              \
-  PUT_FIXED_TYPE_ON_FREE_LIST (type, structtype, FFT_ptr);     \
-  MARK_STRUCT_AS_FREE (FFT_ptr);                               \
-} while (0)
+#define FREE_FIXED_TYPE(type, structtype, ptr)                 \
+do { structtype *_weird_ = (ptr);                              \
+     ADDITIONAL_FREE_##type (_weird_);                         \
+     deadbeef_memory (ptr, sizeof (structtype));               \
+     PUT_FIXED_TYPE_ON_FREE_LIST (type, structtype, ptr);      \
+     MARK_STRUCT_AS_FREE (_weird_);                            \
+   } while (0)
 
 /* Like FREE_FIXED_TYPE() but used when we are explicitly
    freeing a structure through free_cons(), free_marker(), etc.
@@ -939,22 +1081,23 @@ do { FREE_FIXED_TYPE (type, structtype, ptr);                    \
 
 
 \f
-/************************************************************************/
-/*                        Cons allocation                              */
-/************************************************************************/
+/**********************************************************************/
+/*                         Cons allocation                            */
+/**********************************************************************/
 
 DECLARE_FIXED_TYPE_ALLOC (cons, struct Lisp_Cons);
 /* conses are used and freed so often that we set this really high */
 /* #define MINIMUM_ALLOWED_FIXED_TYPE_CELLS_cons 20000 */
 #define MINIMUM_ALLOWED_FIXED_TYPE_CELLS_cons 2000
 
+#ifdef LRECORD_CONS
 static Lisp_Object
 mark_cons (Lisp_Object obj, void (*markobj) (Lisp_Object))
 {
-  if (GC_NILP (XCDR (obj)))
+  if (NILP (XCDR (obj)))
     return XCAR (obj);
 
-  markobj (XCAR (obj));
+  (markobj) (XCAR (obj));
   return XCDR (obj);
 }
 
@@ -981,6 +1124,7 @@ DEFINE_BASIC_LRECORD_IMPLEMENTATION ("cons", cons,
                                      */
                                     0,
                                     struct Lisp_Cons);
+#endif /* LRECORD_CONS */
 
 DEFUN ("cons", Fcons, 2, 2, 0, /*
 Create a new cons, give it CAR and CDR as components, and return it.
@@ -992,7 +1136,9 @@ Create a new cons, give it CAR and CDR as components, and return it.
   struct Lisp_Cons *c;
 
   ALLOCATE_FIXED_TYPE (cons, struct Lisp_Cons, c);
-  set_lheader_implementation (&(c->lheader), &lrecord_cons);
+#ifdef LRECORD_CONS
+  set_lheader_implementation (&(c->lheader), lrecord_cons);
+#endif
   XSETCONS (val, c);
   c->car = car;
   c->cdr = cdr;
@@ -1009,7 +1155,9 @@ noseeum_cons (Lisp_Object car, Lisp_Object cdr)
   struct Lisp_Cons *c;
 
   NOSEEUM_ALLOCATE_FIXED_TYPE (cons, struct Lisp_Cons, c);
-  set_lheader_implementation (&(c->lheader), &lrecord_cons);
+#ifdef LRECORD_CONS
+  set_lheader_implementation (&(c->lheader), lrecord_cons);
+#endif
   XSETCONS (val, c);
   XCAR (val) = car;
   XCDR (val) = cdr;
@@ -1025,7 +1173,7 @@ Any number of arguments, even zero arguments, are allowed.
   Lisp_Object val = Qnil;
   Lisp_Object *argp = args + nargs;
 
-  while (argp > args)
+  while (nargs-- > 0)
     val = Fcons (*--argp, val);
   return val;
 }
@@ -1105,9 +1253,9 @@ Return a new list of length LENGTH, with each element being INIT.
 }
 
 \f
-/************************************************************************/
-/*                       Float allocation                              */
-/************************************************************************/
+/**********************************************************************/
+/*                        Float allocation                            */
+/**********************************************************************/
 
 #ifdef LISP_FLOAT_TYPE
 
@@ -1121,7 +1269,7 @@ make_float (double float_value)
   struct Lisp_Float *f;
 
   ALLOCATE_FIXED_TYPE (float, struct Lisp_Float, f);
-  set_lheader_implementation (&(f->lheader), &lrecord_float);
+  set_lheader_implementation (&(f->lheader), lrecord_float);
   float_data (f) = float_value;
   XSETFLOAT (val, f);
   return val;
@@ -1130,43 +1278,45 @@ make_float (double float_value)
 #endif /* LISP_FLOAT_TYPE */
 
 \f
-/************************************************************************/
-/*                        Vector allocation                            */
-/************************************************************************/
+/**********************************************************************/
+/*                         Vector allocation                          */
+/**********************************************************************/
 
+#ifdef LRECORD_VECTOR
 static Lisp_Object
 mark_vector (Lisp_Object obj, void (*markobj) (Lisp_Object))
 {
-  Lisp_Vector *ptr = XVECTOR (obj);
+  struct Lisp_Vector *ptr = XVECTOR (obj);
   int len = vector_length (ptr);
   int i;
 
   for (i = 0; i < len - 1; i++)
-    markobj (ptr->contents[i]);
+    (markobj) (ptr->contents[i]);
   return (len > 0) ? ptr->contents[len - 1] : Qnil;
 }
 
 static size_t
 size_vector (CONST void *lheader)
 {
-  return STRETCHY_STRUCT_SIZEOF (Lisp_Vector, contents,
-                                ((Lisp_Vector *) lheader)->size);
+  /* * -1 because struct Lisp_Vector includes 1 slot */
+  return sizeof (struct Lisp_Vector) +
+    ((((struct Lisp_Vector *) lheader)->size - 1) * sizeof (Lisp_Object));
 }
 
 static int
-vector_equal (Lisp_Object obj1, Lisp_Object obj2, int depth)
+vector_equal (Lisp_Object o1, Lisp_Object o2, int depth)
 {
-  int len = XVECTOR_LENGTH (obj1);
-  if (len != XVECTOR_LENGTH (obj2))
+  int indice;
+  int len = XVECTOR_LENGTH (o1);
+  if (len != XVECTOR_LENGTH (o2))
     return 0;
-
-  {
-    Lisp_Object *ptr1 = XVECTOR_DATA (obj1);
-    Lisp_Object *ptr2 = XVECTOR_DATA (obj2);
-    while (len--)
-      if (!internal_equal (*ptr1++, *ptr2++, depth + 1))
+  for (indice = 0; indice < len; indice++)
+    {
+      if (!internal_equal (XVECTOR_DATA (o1) [indice],
+                          XVECTOR_DATA (o2) [indice],
+                          depth + 1))
        return 0;
-  }
+    }
   return 1;
 }
 
@@ -1179,34 +1329,77 @@ DEFINE_LRECORD_SEQUENCE_IMPLEMENTATION("vector", vector,
                                        * knows how to handle vectors.
                                        */
                                       0,
-                                      size_vector, Lisp_Vector);
+                                      size_vector, struct Lisp_Vector);
+
+/* #### should allocate `small' vectors from a frob-block */
+static struct Lisp_Vector *
+make_vector_internal (size_t sizei)
+{
+  size_t sizem = (sizeof (struct Lisp_Vector)
+                 /* -1 because struct Lisp_Vector includes 1 slot */
+                 + (sizei - 1) * sizeof (Lisp_Object));
+  struct Lisp_Vector *p =
+    (struct Lisp_Vector *) alloc_lcrecord (sizem, lrecord_vector);
+
+  p->size = sizei;
+  return p;
+}
+
+#else /* ! LRECORD_VECTOR */
+
+static Lisp_Object all_vectors;
 
 /* #### should allocate `small' vectors from a frob-block */
-static Lisp_Vector *
+static struct Lisp_Vector *
 make_vector_internal (size_t sizei)
 {
-  /* no vector_next */
-  size_t sizem = STRETCHY_STRUCT_SIZEOF (Lisp_Vector, contents, sizei);
-  Lisp_Vector *p = (Lisp_Vector *) alloc_lcrecord (sizem, &lrecord_vector);
+  size_t sizem = (sizeof (struct Lisp_Vector)
+                 /* -1 because struct Lisp_Vector includes 1 slot,
+                  * +1 to account for vector_next */
+                 + (sizei - 1 + 1) * sizeof (Lisp_Object));
+  struct Lisp_Vector *p = (struct Lisp_Vector *) allocate_lisp_storage (sizem);
+
+  INCREMENT_CONS_COUNTER (sizem, "vector");
 
   p->size = sizei;
+  vector_next (p) = all_vectors;
+  XSETVECTOR (all_vectors, p);
   return p;
 }
 
+#endif /* ! LRECORD_VECTOR */
+
 Lisp_Object
-make_vector (size_t length, Lisp_Object init)
+make_vector (EMACS_INT length, Lisp_Object init)
 {
-  Lisp_Vector *vecp = make_vector_internal (length);
-  Lisp_Object *p = vector_data (vecp);
+  int elt;
+  Lisp_Object vector;
+  struct Lisp_Vector *p;
+
+  if (length < 0)
+    length = XINT (wrong_type_argument (Qnatnump, make_int (length)));
 
-  while (length--)
-    *p++ = init;
+  p = make_vector_internal (length);
+  XSETVECTOR (vector, p);
 
+#if 0
+  /* Initialize big arrays full of 0's quickly, for what that's worth */
   {
-    Lisp_Object vector;
-    XSETVECTOR (vector, vecp);
+    char *travesty = (char *) &init;
+    for (i = 1; i < sizeof (Lisp_Object); i++)
+    {
+      if (travesty[i] != travesty[0])
+        goto fill;
+    }
+    memset (vector_data (p), travesty[0], length * sizeof (Lisp_Object));
     return vector;
   }
+ fill:
+#endif
+  for (elt = 0; elt < length; elt++)
+    vector_data(p)[elt] = init;
+
+  return vector;
 }
 
 DEFUN ("make-vector", Fmake_vector, 2, 2, 0, /*
@@ -1215,7 +1408,7 @@ See also the function `vector'.
 */
        (length, init))
 {
-  CONCHECK_NATNUM (length);
+  CHECK_NATNUM (length);
   return make_vector (XINT (length), init);
 }
 
@@ -1225,17 +1418,15 @@ Any number of arguments, even zero arguments, are allowed.
 */
        (int nargs, Lisp_Object *args))
 {
-  Lisp_Vector *vecp = make_vector_internal (nargs);
-  Lisp_Object *p = vector_data (vecp);
+  Lisp_Object vector;
+  int elt;
+  struct Lisp_Vector *p = make_vector_internal (nargs);
 
-  while (nargs--)
-    *p++ = *args++;
+  for (elt = 0; elt < nargs; elt++)
+    vector_data(p)[elt] = args[elt];
 
-  {
-    Lisp_Object vector;
-    XSETVECTOR (vector, vecp);
-    return vector;
-  }
+  XSETVECTOR (vector, p);
+  return vector;
 }
 
 Lisp_Object
@@ -1338,9 +1529,9 @@ vector8 (Lisp_Object obj0, Lisp_Object obj1, Lisp_Object obj2,
 }
 #endif /* unused */
 
-/************************************************************************/
-/*                      Bit Vector allocation                          */
-/************************************************************************/
+/**********************************************************************/
+/*                       Bit Vector allocation                        */
+/**********************************************************************/
 
 static Lisp_Object all_bit_vectors;
 
@@ -1348,63 +1539,69 @@ static Lisp_Object all_bit_vectors;
 static struct Lisp_Bit_Vector *
 make_bit_vector_internal (size_t sizei)
 {
-  size_t num_longs = BIT_VECTOR_LONG_STORAGE (sizei);
-  size_t sizem = STRETCHY_STRUCT_SIZEOF (Lisp_Bit_Vector, bits, num_longs);
-  Lisp_Bit_Vector *p = (Lisp_Bit_Vector *) allocate_lisp_storage (sizem);
-  set_lheader_implementation (&(p->lheader), &lrecord_bit_vector);
+  size_t sizem = sizeof (struct Lisp_Bit_Vector) +
+    /* -1 because struct Lisp_Bit_Vector includes 1 slot */
+    sizeof (long) * (BIT_VECTOR_LONG_STORAGE (sizei) - 1);
+  struct Lisp_Bit_Vector *p =
+    (struct Lisp_Bit_Vector *) allocate_lisp_storage (sizem);
+  set_lheader_implementation (&(p->lheader), lrecord_bit_vector);
 
   INCREMENT_CONS_COUNTER (sizem, "bit-vector");
 
   bit_vector_length (p) = sizei;
-  bit_vector_next   (p) = all_bit_vectors;
+  bit_vector_next (p) = all_bit_vectors;
   /* make sure the extra bits in the last long are 0; the calling
      functions might not set them. */
-  p->bits[num_longs - 1] = 0;
+  p->bits[BIT_VECTOR_LONG_STORAGE (sizei) - 1] = 0;
   XSETBIT_VECTOR (all_bit_vectors, p);
   return p;
 }
 
 Lisp_Object
-make_bit_vector (size_t length, Lisp_Object init)
+make_bit_vector (EMACS_INT length, Lisp_Object init)
 {
-  struct Lisp_Bit_Vector *p = make_bit_vector_internal (length);
-  size_t num_longs = BIT_VECTOR_LONG_STORAGE (length);
+  Lisp_Object bit_vector;
+  struct Lisp_Bit_Vector *p;
+  EMACS_INT num_longs;
 
   CHECK_BIT (init);
 
+  num_longs = BIT_VECTOR_LONG_STORAGE (length);
+  p = make_bit_vector_internal (length);
+  XSETBIT_VECTOR (bit_vector, p);
+
   if (ZEROP (init))
     memset (p->bits, 0, num_longs * sizeof (long));
   else
     {
-      size_t bits_in_last = length & (LONGBITS_POWER_OF_2 - 1);
+      EMACS_INT bits_in_last = length & (LONGBITS_POWER_OF_2 - 1);
       memset (p->bits, ~0, num_longs * sizeof (long));
       /* But we have to make sure that the unused bits in the
-        last long are 0, so that equal/hash is easy. */
+        last integer are 0, so that equal/hash is easy. */
       if (bits_in_last)
        p->bits[num_longs - 1] &= (1 << bits_in_last) - 1;
     }
 
-  {
-    Lisp_Object bit_vector;
-    XSETBIT_VECTOR (bit_vector, p);
-    return bit_vector;
-  }
+  return bit_vector;
 }
 
 Lisp_Object
-make_bit_vector_from_byte_vector (unsigned char *bytevec, size_t length)
+make_bit_vector_from_byte_vector (unsigned char *bytevec, EMACS_INT length)
 {
+  Lisp_Object bit_vector;
+  struct Lisp_Bit_Vector *p;
   int i;
-  Lisp_Bit_Vector *p = make_bit_vector_internal (length);
+
+  if (length < 0)
+    length = XINT (wrong_type_argument (Qnatnump, make_int (length)));
+
+  p = make_bit_vector_internal (length);
+  XSETBIT_VECTOR (bit_vector, p);
 
   for (i = 0; i < length; i++)
     set_bit_vector_bit (p, i, bytevec[i]);
 
-  {
-    Lisp_Object bit_vector;
-    XSETBIT_VECTOR (bit_vector, p);
-    return bit_vector;
-  }
+  return bit_vector;
 }
 
 DEFUN ("make-bit-vector", Fmake_bit_vector, 2, 2, 0, /*
@@ -1424,168 +1621,240 @@ Any number of arguments, even zero arguments, are allowed.
 */
        (int nargs, Lisp_Object *args))
 {
-  int i;
-  Lisp_Bit_Vector *p = make_bit_vector_internal (nargs);
+  Lisp_Object bit_vector;
+  int elt;
+  struct Lisp_Bit_Vector *p;
 
-  for (i = 0; i < nargs; i++)
-    {
-      CHECK_BIT (args[i]);
-      set_bit_vector_bit (p, i, !ZEROP (args[i]));
-    }
+  for (elt = 0; elt < nargs; elt++)
+    CHECK_BIT (args[elt]);
 
-  {
-    Lisp_Object bit_vector;
-    XSETBIT_VECTOR (bit_vector, p);
-    return bit_vector;
-  }
+  p = make_bit_vector_internal (nargs);
+
+  for (elt = 0; elt < nargs; elt++)
+    set_bit_vector_bit (p, elt, !ZEROP (args[elt]));
+
+  XSETBIT_VECTOR (bit_vector, p);
+  return bit_vector;
 }
 
 \f
-/************************************************************************/
-/*                  Compiled-function allocation                       */
-/************************************************************************/
+/**********************************************************************/
+/*                   Compiled-function allocation                     */
+/**********************************************************************/
 
-DECLARE_FIXED_TYPE_ALLOC (compiled_function, Lisp_Compiled_Function);
+DECLARE_FIXED_TYPE_ALLOC (compiled_function, struct Lisp_Compiled_Function);
 #define MINIMUM_ALLOWED_FIXED_TYPE_CELLS_compiled_function 1000
 
 static Lisp_Object
-make_compiled_function (void)
-{
-  Lisp_Compiled_Function *f;
-  Lisp_Object fun;
-
-  ALLOCATE_FIXED_TYPE (compiled_function, Lisp_Compiled_Function, f);
-  set_lheader_implementation (&(f->lheader), &lrecord_compiled_function);
-
-  f->stack_depth = 0;
-  f->specpdl_depth = 0;
-  f->flags.documentationp = 0;
-  f->flags.interactivep = 0;
-  f->flags.domainp = 0; /* I18N3 */
-  f->instructions = Qzero;
-  f->constants = Qzero;
-  f->arglist = Qnil;
-  f->doc_and_interactive = Qnil;
+make_compiled_function (int make_pure)
+{
+  struct Lisp_Compiled_Function *b;
+  Lisp_Object new;
+  size_t size = sizeof (struct Lisp_Compiled_Function);
+
+  if (make_pure && check_purespace (size))
+    {
+      b = (struct Lisp_Compiled_Function *) (PUREBEG + pure_bytes_used);
+      set_lheader_implementation (&(b->lheader), lrecord_compiled_function);
+#ifdef USE_INDEXED_LRECORD_IMPLEMENTATION
+      b->lheader.pure = 1;
+#endif
+      pure_bytes_used += size;
+      bump_purestat (&purestat_bytecode, size);
+    }
+  else
+    {
+      ALLOCATE_FIXED_TYPE (compiled_function, struct Lisp_Compiled_Function,
+                          b);
+      set_lheader_implementation (&(b->lheader), lrecord_compiled_function);
+    }
+  b->maxdepth = 0;
+  b->flags.documentationp = 0;
+  b->flags.interactivep = 0;
+  b->flags.domainp = 0; /* I18N3 */
+  b->bytecodes = Qzero;
+  b->constants = Qzero;
+  b->arglist = Qnil;
+  b->doc_and_interactive = Qnil;
 #ifdef COMPILED_FUNCTION_ANNOTATION_HACK
-  f->annotated = Qnil;
+  b->annotated = Qnil;
 #endif
-  XSETCOMPILED_FUNCTION (fun, f);
-  return fun;
+  XSETCOMPILED_FUNCTION (new, b);
+  return new;
 }
 
 DEFUN ("make-byte-code", Fmake_byte_code, 4, MANY, 0, /*
 Return a new compiled-function object.
-Usage: (arglist instructions constants stack-depth
-       &optional doc-string interactive)
+Usage: (arglist instructions constants stack-size
+       &optional doc-string interactive-spec)
 Note that, unlike all other emacs-lisp functions, calling this with five
 arguments is NOT the same as calling it with six arguments, the last of
 which is nil.  If the INTERACTIVE arg is specified as nil, then that means
 that this function was defined with `(interactive)'.  If the arg is not
 specified, then that means the function is not interactive.
 This is terrible behavior which is retained for compatibility with old
-`.elc' files which expect these semantics.
+`.elc' files which expected these semantics.
 */
        (int nargs, Lisp_Object *args))
 {
-/* In a non-insane world this function would have this arglist...
-   (arglist instructions constants stack_depth &optional doc_string interactive)
+/*   In a non-insane world this function would have this arglist...
+     (arglist, instructions, constants, stack_size, doc_string, interactive)
+     Lisp_Object arglist, instructions, constants, stack_size, doc_string,
+       interactive;
  */
-  Lisp_Object fun = make_compiled_function ();
-  Lisp_Compiled_Function *f = XCOMPILED_FUNCTION (fun);
-
   Lisp_Object arglist      = args[0];
   Lisp_Object instructions = args[1];
   Lisp_Object constants    = args[2];
-  Lisp_Object stack_depth  = args[3];
+  Lisp_Object stack_size   = args[3];
   Lisp_Object doc_string   = (nargs > 4) ? args[4] : Qnil;
   Lisp_Object interactive  = (nargs > 5) ? args[5] : Qunbound;
-
-  if (nargs < 4 || nargs > 6)
+  /* Don't purecopy the doc references in instructions because it's
+     wasteful; they will get fixed up later.
+
+     #### If something goes wrong and they don't get fixed up,
+     we're screwed, because pure stuff isn't marked and thus the
+     cons references won't be marked and will get reused.
+
+     Note: there will be a window after the byte code is created and
+     before the doc references are fixed up in which there will be
+     impure objects inside a pure object, which apparently won't
+     get marked, leading the trouble.  But during that entire window,
+     the objects are sitting on Vload_force_doc_string_list, which
+     is staticpro'd, so we're OK. */
+  int purecopy_instructions = 1;
+
+  if (nargs > 6)
     return Fsignal (Qwrong_number_of_arguments,
                    list2 (intern ("make-byte-code"), make_int (nargs)));
 
-  /* Check for valid formal parameter list now, to allow us to use
-     SPECBIND_FAST_UNSAFE() later in funcall_compiled_function(). */
-  {
-    Lisp_Object symbol, tail;
-    EXTERNAL_LIST_LOOP_3 (symbol, arglist, tail)
-      {
-       CHECK_SYMBOL (symbol);
-       if (EQ (symbol, Qt)   ||
-           EQ (symbol, Qnil) ||
-           SYMBOL_IS_KEYWORD (symbol))
-         signal_simple_error_2
-           ("Invalid constant symbol in formal parameter list",
-            symbol, arglist);
-      }
-  }
-  f->arglist = arglist;
-
-  /* `instructions' is a string or a cons (string . int) for a
+  CHECK_LIST (arglist);
+  /* instructions is a string or a cons (string . int) for a
      lazy-loaded function. */
   if (CONSP (instructions))
     {
       CHECK_STRING (XCAR (instructions));
       CHECK_INT (XCDR (instructions));
+      if (!NILP (constants))
+       CHECK_VECTOR (constants);
+      purecopy_instructions = 0;
     }
   else
     {
       CHECK_STRING (instructions);
+      CHECK_VECTOR (constants);
     }
-  f->instructions = instructions;
+  CHECK_NATNUM (stack_size);
+  /* doc_string may be nil, string, int, or a cons (string . int). */
 
-  if (!NILP (constants))
-    CHECK_VECTOR (constants);
-  f->constants = constants;
+  /* interactive may be list or string (or unbound). */
 
-  CHECK_NATNUM (stack_depth);
-  f->stack_depth  = XINT (stack_depth);
-
-#ifdef COMPILED_FUNCTION_ANNOTATION_HACK
-  if (!NILP (Vcurrent_compiled_function_annotation))
-    f->annotated = Fcopy (Vcurrent_compiled_function_annotation);
-  else if (!NILP (Vload_file_name_internal_the_purecopy))
-    f->annotated = Vload_file_name_internal_the_purecopy;
-  else if (!NILP (Vload_file_name_internal))
+  if (purify_flag)
     {
-      struct gcpro gcpro1;
-      GCPRO1 (fun);            /* don't let fun get reaped */
-      Vload_file_name_internal_the_purecopy =
-       Fpurecopy (Ffile_name_nondirectory (Vload_file_name_internal));
-      f->annotated = Vload_file_name_internal_the_purecopy;
-      UNGCPRO;
+      if (!purified (arglist))
+       arglist = Fpurecopy (arglist);
+      if (purecopy_instructions && !purified (instructions))
+       instructions = Fpurecopy (instructions);
+      if (!purified (doc_string))
+       doc_string = Fpurecopy (doc_string);
+      if (!purified (interactive) && !UNBOUNDP (interactive))
+       interactive = Fpurecopy (interactive);
+
+      /* Statistics are kept differently for the constants */
+      if (!purified (constants))
+#ifdef PURESTAT
+       {
+         int old = purecopying_for_bytecode;
+         purecopying_for_bytecode = 1;
+         constants = Fpurecopy (constants);
+         purecopying_for_bytecode = old;
+       }
+#else
+        constants = Fpurecopy (constants);
+#endif /* PURESTAT */
+
+#ifdef PURESTAT
+      if (STRINGP (instructions))
+       bump_purestat (&purestat_string_bytecodes, pure_sizeof (instructions));
+      if (VECTORP (constants))
+       bump_purestat (&purestat_vector_bytecode_constants,
+                      pure_sizeof (constants));
+      if (STRINGP (doc_string))
+       /* These should be have been snagged by make-docfile... */
+       bump_purestat (&purestat_string_documentation,
+                      pure_sizeof (doc_string));
+      if (STRINGP (interactive))
+       bump_purestat (&purestat_string_interactive,
+                      pure_sizeof (interactive));
+#endif /* PURESTAT */
     }
+
+  {
+    int docp = !NILP (doc_string);
+    int intp = !UNBOUNDP (interactive);
+#ifdef I18N3
+    int domp = !NILP (Vfile_domain);
+#endif
+    Lisp_Object val = make_compiled_function (purify_flag);
+    struct Lisp_Compiled_Function *b = XCOMPILED_FUNCTION (val);
+    b->flags.documentationp = docp;
+    b->flags.interactivep   = intp;
+#ifdef I18N3
+    b->flags.domainp        = domp;
+#endif
+    b->maxdepth  = XINT (stack_size);
+    b->bytecodes = instructions;
+    b->constants = constants;
+    b->arglist   = arglist;
+#ifdef COMPILED_FUNCTION_ANNOTATION_HACK
+    if (!NILP (Vcurrent_compiled_function_annotation))
+      b->annotated = Fpurecopy (Vcurrent_compiled_function_annotation);
+    else if (!NILP (Vload_file_name_internal_the_purecopy))
+      b->annotated = Vload_file_name_internal_the_purecopy;
+    else if (!NILP (Vload_file_name_internal))
+      {
+       struct gcpro gcpro1;
+       GCPRO1(val);            /* don't let val or b get reaped */
+       Vload_file_name_internal_the_purecopy =
+         Fpurecopy (Ffile_name_nondirectory (Vload_file_name_internal));
+       b->annotated = Vload_file_name_internal_the_purecopy;
+       UNGCPRO;
+      }
 #endif /* COMPILED_FUNCTION_ANNOTATION_HACK */
 
-  /* doc_string may be nil, string, int, or a cons (string . int).
-     interactive may be list or string (or unbound). */
-  f->doc_and_interactive = Qunbound;
 #ifdef I18N3
-  if ((f->flags.domainp = !NILP (Vfile_domain)) != 0)
-    f->doc_and_interactive = Vfile_domain;
+    if (docp && intp && domp)
+      b->doc_and_interactive = (((purify_flag) ? pure_cons : Fcons)
+                               (doc_string,
+                                (((purify_flag) ? pure_cons : Fcons)
+                                 (interactive, Vfile_domain))));
+    else if (docp && domp)
+      b->doc_and_interactive = (((purify_flag) ? pure_cons : Fcons)
+                               (doc_string, Vfile_domain));
+    else if (intp && domp)
+      b->doc_and_interactive = (((purify_flag) ? pure_cons : Fcons)
+                               (interactive, Vfile_domain));
+    else
 #endif
-  if ((f->flags.interactivep = !UNBOUNDP (interactive)) != 0)
-    {
-      f->doc_and_interactive
-       = (UNBOUNDP (f->doc_and_interactive) ? interactive :
-          Fcons (interactive, f->doc_and_interactive));
-    }
-  if ((f->flags.documentationp = !NILP (doc_string)) != 0)
-    {
-      f->doc_and_interactive
-       = (UNBOUNDP (f->doc_and_interactive) ? doc_string :
-          Fcons (doc_string, f->doc_and_interactive));
-    }
-  if (UNBOUNDP (f->doc_and_interactive))
-    f->doc_and_interactive = Qnil;
+    if (docp && intp)
+      b->doc_and_interactive = (((purify_flag) ? pure_cons : Fcons)
+                               (doc_string, interactive));
+    else if (intp)
+      b->doc_and_interactive = interactive;
+#ifdef I18N3
+    else if (domp)
+      b->doc_and_interactive = Vfile_domain;
+#endif
+    else
+      b->doc_and_interactive = doc_string;
 
-  return fun;
+    return val;
+  }
 }
 
 \f
-/************************************************************************/
-/*                         Symbol allocation                           */
-/************************************************************************/
+/**********************************************************************/
+/*                          Symbol allocation                         */
+/**********************************************************************/
 
 DECLARE_FIXED_TYPE_ALLOC (symbol, struct Lisp_Symbol);
 #define MINIMUM_ALLOWED_FIXED_TYPE_CELLS_symbol 1000
@@ -1594,28 +1863,31 @@ DEFUN ("make-symbol", Fmake_symbol, 1, 1, 0, /*
 Return a newly allocated uninterned symbol whose name is NAME.
 Its value and function definition are void, and its property list is nil.
 */
-       (name))
+       (str))
 {
   Lisp_Object val;
   struct Lisp_Symbol *p;
 
-  CHECK_STRING (name);
+  CHECK_STRING (str);
 
   ALLOCATE_FIXED_TYPE (symbol, struct Lisp_Symbol, p);
-  set_lheader_implementation (&(p->lheader), &lrecord_symbol);
-  p->name     = XSTRING (name);
-  p->plist    = Qnil;
-  p->value    = Qunbound;
+#ifdef LRECORD_SYMBOL
+  set_lheader_implementation (&(p->lheader), lrecord_symbol);
+#endif
+  p->name = XSTRING (str);
+  p->plist = Qnil;
+  p->value = Qunbound;
   p->function = Qunbound;
+  p->obarray = Qnil;
   symbol_next (p) = 0;
   XSETSYMBOL (val, p);
   return val;
 }
 
 \f
-/************************************************************************/
-/*                        Extent allocation                            */
-/************************************************************************/
+/**********************************************************************/
+/*                         Extent allocation                          */
+/**********************************************************************/
 
 DECLARE_FIXED_TYPE_ALLOC (extent, struct extent);
 #define MINIMUM_ALLOWED_FIXED_TYPE_CELLS_extent 1000
@@ -1626,7 +1898,8 @@ allocate_extent (void)
   struct extent *e;
 
   ALLOCATE_FIXED_TYPE (extent, struct extent, e);
-  set_lheader_implementation (&(e->lheader), &lrecord_extent);
+  /* xzero (*e); */
+  set_lheader_implementation (&(e->lheader), lrecord_extent);
   extent_object (e) = Qnil;
   set_extent_start (e, -1);
   set_extent_end (e, -1);
@@ -1642,9 +1915,9 @@ allocate_extent (void)
 }
 
 \f
-/************************************************************************/
-/*                        Event allocation                             */
-/************************************************************************/
+/**********************************************************************/
+/*                         Event allocation                           */
+/**********************************************************************/
 
 DECLARE_FIXED_TYPE_ALLOC (event, struct Lisp_Event);
 #define MINIMUM_ALLOWED_FIXED_TYPE_CELLS_event 1000
@@ -1656,16 +1929,16 @@ allocate_event (void)
   struct Lisp_Event *e;
 
   ALLOCATE_FIXED_TYPE (event, struct Lisp_Event, e);
-  set_lheader_implementation (&(e->lheader), &lrecord_event);
+  set_lheader_implementation (&(e->lheader), lrecord_event);
 
   XSETEVENT (val, e);
   return val;
 }
 
 \f
-/************************************************************************/
-/*                      Marker allocation                              */
-/************************************************************************/
+/**********************************************************************/
+/*                       Marker allocation                            */
+/**********************************************************************/
 
 DECLARE_FIXED_TYPE_ALLOC (marker, struct Lisp_Marker);
 #define MINIMUM_ALLOWED_FIXED_TYPE_CELLS_marker 1000
@@ -1679,7 +1952,7 @@ Return a new marker which does not point at any place.
   struct Lisp_Marker *p;
 
   ALLOCATE_FIXED_TYPE (marker, struct Lisp_Marker, p);
-  set_lheader_implementation (&(p->lheader), &lrecord_marker);
+  set_lheader_implementation (&(p->lheader), lrecord_marker);
   p->buffer = 0;
   p->memind = 0;
   marker_next (p) = 0;
@@ -1696,7 +1969,7 @@ noseeum_make_marker (void)
   struct Lisp_Marker *p;
 
   NOSEEUM_ALLOCATE_FIXED_TYPE (marker, struct Lisp_Marker, p);
-  set_lheader_implementation (&(p->lheader), &lrecord_marker);
+  set_lheader_implementation (&(p->lheader), lrecord_marker);
   p->buffer = 0;
   p->memind = 0;
   marker_next (p) = 0;
@@ -1707,9 +1980,9 @@ noseeum_make_marker (void)
 }
 
 \f
-/************************************************************************/
-/*                       String allocation                             */
-/************************************************************************/
+/**********************************************************************/
+/*                        String allocation                           */
+/**********************************************************************/
 
 /* The data for "short" strings generally resides inside of structs of type
    string_chars_block. The Lisp_String structure is allocated just like any
@@ -1729,6 +2002,7 @@ DECLARE_FIXED_TYPE_ALLOC (string, struct Lisp_String);
 /* #define MINIMUM_ALLOWED_FIXED_TYPE_CELLS_string 10000 */
 #define MINIMUM_ALLOWED_FIXED_TYPE_CELLS_string 1000
 
+#ifdef LRECORD_STRING
 static Lisp_Object
 mark_string (Lisp_Object obj, void (*markobj) (Lisp_Object))
 {
@@ -1740,11 +2014,11 @@ mark_string (Lisp_Object obj, void (*markobj) (Lisp_Object))
 }
 
 static int
-string_equal (Lisp_Object obj1, Lisp_Object obj2, int depth)
+string_equal (Lisp_Object o1, Lisp_Object o2, int depth)
 {
   Bytecount len;
-  return (((len = XSTRING_LENGTH (obj1)) == XSTRING_LENGTH (obj2)) &&
-         !memcmp (XSTRING_DATA (obj1), XSTRING_DATA (obj2), len));
+  return (((len = XSTRING_LENGTH (o1)) == XSTRING_LENGTH (o2)) &&
+         !memcmp (XSTRING_DATA (o1), XSTRING_DATA (o2), len));
 }
 
 DEFINE_BASIC_LRECORD_IMPLEMENTATION ("string", string,
@@ -1761,6 +2035,7 @@ DEFINE_BASIC_LRECORD_IMPLEMENTATION ("string", string,
                                      */
                                     0, string_equal, 0,
                                     struct Lisp_String);
+#endif /* LRECORD_STRING */
 
 /* String blocks contain this many useful bytes. */
 #define STRING_CHARS_BLOCK_SIZE                                        \
@@ -1843,13 +2118,13 @@ allocate_string_chars_struct (struct Lisp_String *string_it_goes_with,
   else
     {
       /* Make a new current string chars block */
-      struct string_chars_block *new_scb = xnew (struct string_chars_block);
+      struct string_chars_block *new = xnew (struct string_chars_block);
 
-      current_string_chars_block->next = new_scb;
-      new_scb->prev = current_string_chars_block;
-      new_scb->next = 0;
-      current_string_chars_block = new_scb;
-      new_scb->pos = fullsize;
+      current_string_chars_block->next = new;
+      new->prev = current_string_chars_block;
+      new->next = 0;
+      current_string_chars_block = new;
+      new->pos = fullsize;
       s_chars = (struct string_chars *)
        current_string_chars_block->string_chars;
     }
@@ -1874,7 +2149,9 @@ make_uninit_string (Bytecount length)
 
   /* Allocate the string header */
   ALLOCATE_FIXED_TYPE (string, struct Lisp_String, s);
-  set_lheader_implementation (&(s->lheader), &lrecord_string);
+#ifdef LRECORD_STRING
+  set_lheader_implementation (&(s->lheader), lrecord_string);
+#endif
 
   s_chars = allocate_string_chars_struct (s, fullsize);
 
@@ -2035,10 +2312,12 @@ resize_string (struct Lisp_String *s, Bytecount pos, Bytecount delta)
 void
 set_string_char (struct Lisp_String *s, Charcount i, Emchar c)
 {
+  Bytecount oldlen, newlen;
   Bufbyte newstr[MAX_EMCHAR_LEN];
   Bytecount bytoff = charcount_to_bytecount (string_data (s), i);
-  Bytecount oldlen = charcount_to_bytecount (string_data (s) + bytoff, 1);
-  Bytecount newlen = set_charptr_emchar (newstr, c);
+
+  oldlen = charcount_to_bytecount (string_data (s) + bytoff, 1);
+  newlen = set_charptr_emchar (newstr, c);
 
   if (oldlen != newlen)
     resize_string (s, bytoff, newlen - oldlen);
@@ -2054,35 +2333,30 @@ LENGTH must be an integer and INIT must be a character.
 */
        (length, init))
 {
+  Lisp_Object val;
+
   CHECK_NATNUM (length);
   CHECK_CHAR_COERCE_INT (init);
   {
-    Bufbyte init_str[MAX_EMCHAR_LEN];
-    int len = set_charptr_emchar (init_str, XCHAR (init));
-    Lisp_Object val = make_uninit_string (len * XINT (length));
+    Bufbyte str[MAX_EMCHAR_LEN];
+    int len = set_charptr_emchar (str, XCHAR (init));
 
+    val = make_uninit_string (len * XINT (length));
     if (len == 1)
       /* Optimize the single-byte case */
       memset (XSTRING_DATA (val), XCHAR (init), XSTRING_LENGTH (val));
     else
       {
-       int i;
+       int i, j, k;
        Bufbyte *ptr = XSTRING_DATA (val);
 
-       for (i = XINT (length); i; i--)
-         {
-           Bufbyte *init_ptr = init_str;
-           switch (len)
-             {
-             case 4: *ptr++ = *init_ptr++;
-             case 3: *ptr++ = *init_ptr++;
-             case 2: *ptr++ = *init_ptr++;
-             case 1: *ptr++ = *init_ptr++;
-             }
-         }
+       k = 0;
+       for (i = 0; i < XINT (length); i++)
+         for (j = 0; j < len; j++)
+           ptr[k++] = str[j];
       }
-    return val;
   }
+  return val;
 }
 
 DEFUN ("string", Fstring, 0, MANY, 0, /*
@@ -2102,7 +2376,6 @@ Concatenate all the argument characters and make the result a string.
   return make_string (storage, p - storage);
 }
 
-
 /* Take some raw memory, which MUST already be in internal format,
    and package it up into a Lisp string. */
 Lisp_Object
@@ -2153,29 +2426,6 @@ build_translated_string (CONST char *str)
   return build_string (GETTEXT (str));
 }
 
-Lisp_Object
-make_string_nocopy (CONST Bufbyte *contents, Bytecount length)
-{
-  struct Lisp_String *s;
-  Lisp_Object val;
-
-  /* Make sure we find out about bad make_string_nocopy's when they happen */
-#if defined (ERROR_CHECK_BUFPOS) && defined (MULE)
-  bytecount_to_charcount (contents, length); /* Just for the assertions */
-#endif
-
-  /* Allocate the string header */
-  ALLOCATE_FIXED_TYPE (string, struct Lisp_String, s);
-  set_lheader_implementation (&(s->lheader), &lrecord_string);
-  SET_C_READONLY_RECORD_HEADER (&s->lheader);
-  s->plist = Qnil;
-  set_string_data (s, (Bufbyte *)contents);
-  set_string_length (s, length);
-
-  XSETSTRING (val, s);
-  return val;
-}
-
 \f
 /************************************************************************/
 /*                           lcrecord lists                             */
@@ -2253,7 +2503,7 @@ make_lcrecord_list (size_t size,
                    CONST struct lrecord_implementation *implementation)
 {
   struct lcrecord_list *p = alloc_lcrecord_type (struct lcrecord_list,
-                                                &lrecord_lcrecord_list);
+                                                lrecord_lcrecord_list);
   Lisp_Object val;
 
   p->implementation = implementation;
@@ -2320,44 +2570,528 @@ free_managed_lcrecord (Lisp_Object lcrecord_list, Lisp_Object lcrecord)
   /* Make sure the size is correct.  This will catch, for example,
      putting a window configuration on the wrong free list. */
   if (implementation->size_in_bytes_method)
-    assert (implementation->size_in_bytes_method (lheader) == list->size);
+    assert (((implementation->size_in_bytes_method) (lheader))
+           == list->size);
   else
     assert (implementation->static_size == list->size);
 #endif /* ERROR_CHECK_GC */
 
   if (implementation->finalizer)
-    implementation->finalizer (lheader, 0);
+    ((implementation->finalizer) (lheader, 0));
   free_header->chain = list->free;
   free_header->lcheader.free = 1;
   list->free = lcrecord;
 }
 
 \f
+/**********************************************************************/
+/*                 Purity of essence, peace on earth                  */
+/**********************************************************************/
 
-\f
-DEFUN ("purecopy", Fpurecopy, 1, 1, 0, /*
-Kept for compatibility, returns its argument.
-Old:
-Make a copy of OBJECT in pure storage.
-Recursively copies contents of vectors and cons cells.
-Does not copy symbols.
-*/
-       (obj))
-{
-  return obj;
-}
+static int symbols_initialized;
 
+Lisp_Object
+make_pure_string (CONST Bufbyte *data, Bytecount length,
+                 Lisp_Object plist, int no_need_to_copy_data)
+{
+  Lisp_Object new;
+  struct Lisp_String *s;
+  size_t size = sizeof (struct Lisp_String) +
+    (no_need_to_copy_data ? 0 : (length + 1)); /* + 1 for terminating 0 */
+  size = ALIGN_SIZE (size, ALIGNOF (Lisp_Object));
 
-\f
-/************************************************************************/
-/*                        Garbage Collection                           */
-/************************************************************************/
+  if (symbols_initialized && !pure_lossage)
+    {
+      /* Try to share some names.  Saves a few kbytes. */
+      Lisp_Object tem = oblookup (Vobarray, data, length);
+      if (SYMBOLP (tem))
+       {
+         s = XSYMBOL (tem)->name;
+         if (!PURIFIED (s)) abort ();
+         XSETSTRING (new, s);
+         return new;
+       }
+    }
 
-/* This will be used more extensively In The Future */
-static int last_lrecord_type_index_assigned;
+  if (!check_purespace (size))
+    return make_string (data, length);
 
-CONST struct lrecord_implementation *lrecord_implementations_table[128];
-#define max_lrecord_type (countof (lrecord_implementations_table) - 1)
+  s = (struct Lisp_String *) (PUREBEG + pure_bytes_used);
+#ifdef LRECORD_STRING
+  set_lheader_implementation (&(s->lheader), lrecord_string);
+#ifdef USE_INDEXED_LRECORD_IMPLEMENTATION
+  s->lheader.pure = 1;
+#endif
+#endif
+  set_string_length (s, length);
+  if (no_need_to_copy_data)
+    {
+      set_string_data (s, (Bufbyte *) data);
+    }
+  else
+    {
+      set_string_data (s, (Bufbyte *) s + sizeof (struct Lisp_String));
+      memcpy (string_data (s), data, length);
+      set_string_byte (s, length, 0);
+    }
+  s->plist = Qnil;
+  pure_bytes_used += size;
+
+#ifdef PURESTAT
+  bump_purestat (&purestat_string_all, size);
+  if (purecopying_for_bytecode)
+    bump_purestat (&purestat_string_other_function, size);
+#endif /* PURESTAT */
+
+  /* Do this after the official "completion" of the purecopying. */
+  s->plist = Fpurecopy (plist);
+
+  XSETSTRING (new, s);
+  return new;
+}
+
+
+Lisp_Object
+make_pure_pname (CONST Bufbyte *data, Bytecount length,
+                int no_need_to_copy_data)
+{
+  Lisp_Object name = make_pure_string (data, length, Qnil,
+                                      no_need_to_copy_data);
+  bump_purestat (&purestat_string_pname, pure_sizeof (name));
+
+  /* We've made (at least) Qnil now, and Vobarray will soon be set up. */
+  symbols_initialized = 1;
+
+  return name;
+}
+
+
+Lisp_Object
+pure_cons (Lisp_Object car, Lisp_Object cdr)
+{
+  Lisp_Object new;
+  struct Lisp_Cons *c;
+
+  if (!check_purespace (sizeof (struct Lisp_Cons)))
+    return Fcons (Fpurecopy (car), Fpurecopy (cdr));
+
+  c = (struct Lisp_Cons *) (PUREBEG + pure_bytes_used);
+#ifdef LRECORD_CONS
+  set_lheader_implementation (&(c->lheader), lrecord_cons);
+#ifdef USE_INDEXED_LRECORD_IMPLEMENTATION
+  c->lheader.pure = 1;
+#endif
+#endif
+  pure_bytes_used += sizeof (struct Lisp_Cons);
+  bump_purestat (&purestat_cons, sizeof (struct Lisp_Cons));
+
+  c->car = Fpurecopy (car);
+  c->cdr = Fpurecopy (cdr);
+  XSETCONS (new, c);
+  return new;
+}
+
+Lisp_Object
+pure_list (int nargs, Lisp_Object *args)
+{
+  Lisp_Object val = Qnil;
+
+  for (--nargs; nargs >= 0; nargs--)
+    val = pure_cons (args[nargs], val);
+
+  return val;
+}
+
+#ifdef LISP_FLOAT_TYPE
+
+static Lisp_Object
+make_pure_float (double num)
+{
+  struct Lisp_Float *f;
+  Lisp_Object val;
+
+  /* Make sure that PUREBEG + pure_bytes_used is aligned on at least a sizeof
+     (double) boundary.  Some architectures (like the sparc) require
+     this, and I suspect that floats are rare enough that it's no
+     tragedy for those that don't. */
+  {
+#if defined (__GNUC__) && (__GNUC__ >= 2)
+    /* In gcc, we can directly ask what the alignment constraints of a
+       structure are, but in general, that's not possible...  Arrgh!!
+     */
+    int alignment = __alignof (struct Lisp_Float);
+#else /* !GNUC */
+    /* Best guess is to make the `double' slot be aligned to the size
+       of double (which is probably 8 bytes).  This assumes that it's
+       ok to align the beginning of the structure to the same boundary
+       that the `double' slot in it is supposed to be aligned to; this
+       should be ok because presumably there is padding in the layout
+       of the struct to account for this.
+     */
+    int alignment = sizeof (float_data (f));
+#endif /* !GNUC */
+    char *p = ((char *) PUREBEG + pure_bytes_used);
+
+    p = (char *) (((EMACS_UINT) p + alignment - 1) & - alignment);
+    pure_bytes_used = p - (char *) PUREBEG;
+  }
+
+  if (!check_purespace (sizeof (struct Lisp_Float)))
+    return make_float (num);
+
+  f = (struct Lisp_Float *) (PUREBEG + pure_bytes_used);
+  set_lheader_implementation (&(f->lheader), lrecord_float);
+#ifdef USE_INDEXED_LRECORD_IMPLEMENTATION
+  f->lheader.pure = 1;
+#endif
+  pure_bytes_used += sizeof (struct Lisp_Float);
+  bump_purestat (&purestat_float, sizeof (struct Lisp_Float));
+
+  float_data (f) = num;
+  XSETFLOAT (val, f);
+  return val;
+}
+
+#endif /* LISP_FLOAT_TYPE */
+
+Lisp_Object
+make_pure_vector (size_t len, Lisp_Object init)
+{
+  Lisp_Object new;
+  struct Lisp_Vector *v;
+  size_t size = (sizeof (struct Lisp_Vector)
+                + (len - 1) * sizeof (Lisp_Object));
+
+  init = Fpurecopy (init);
+
+  if (!check_purespace (size))
+    return make_vector (len, init);
+
+  v = (struct Lisp_Vector *) (PUREBEG + pure_bytes_used);
+#ifdef LRECORD_VECTOR
+  set_lheader_implementation (&(v->header.lheader), lrecord_vector);
+#ifdef USE_INDEXED_LRECORD_IMPLEMENTATION
+  v->header.lheader.pure = 1;
+#endif
+#endif
+  pure_bytes_used += size;
+  bump_purestat (&purestat_vector_all, size);
+
+  v->size = len;
+
+  for (size = 0; size < len; size++)
+    v->contents[size] = init;
+
+  XSETVECTOR (new, v);
+  return new;
+}
+
+#if 0
+/* Presently unused */
+void *
+alloc_pure_lrecord (int size, struct lrecord_implementation *implementation)
+{
+  struct lrecord_header *header = (void *) (PUREBEG + pure_bytes_used);
+
+  if (pure_bytes_used + size > get_PURESIZE())
+    pure_storage_exhausted ();
+
+  set_lheader_implementation (header, implementation);
+  header->next = 0;
+  return header;
+}
+#endif /* unused */
+
+
+\f
+DEFUN ("purecopy", Fpurecopy, 1, 1, 0, /*
+Make a copy of OBJECT in pure storage.
+Recursively copies contents of vectors and cons cells.
+Does not copy symbols.
+*/
+       (obj))
+{
+  int i;
+  if (!purify_flag)
+    return obj;
+
+  if (!POINTER_TYPE_P (XTYPE (obj))
+      || PURIFIED (XPNTR (obj))
+      /* happens when bootstrapping Qnil */
+      || EQ (obj, Qnull_pointer))
+    return obj;
+
+  switch (XTYPE (obj))
+    {
+#ifndef LRECORD_CONS
+    case Lisp_Type_Cons:
+      return pure_cons (XCAR (obj), XCDR (obj));
+#endif
+
+#ifndef LRECORD_STRING
+    case Lisp_Type_String:
+      return make_pure_string (XSTRING_DATA (obj),
+                              XSTRING_LENGTH (obj),
+                              XSTRING (obj)->plist,
+                               0);
+#endif /* ! LRECORD_STRING */
+
+#ifndef LRECORD_VECTOR
+    case Lisp_Type_Vector:
+      {
+        struct Lisp_Vector *o = XVECTOR (obj);
+        Lisp_Object new = make_pure_vector (vector_length (o), Qnil);
+        for (i = 0; i < vector_length (o); i++)
+         XVECTOR_DATA (new)[i] = Fpurecopy (o->contents[i]);
+        return new;
+      }
+#endif /* !LRECORD_VECTOR */
+
+    default:
+      {
+        if (COMPILED_FUNCTIONP (obj))
+          {
+            struct Lisp_Compiled_Function *o = XCOMPILED_FUNCTION (obj);
+            Lisp_Object new = make_compiled_function (1);
+           /* How on earth could this code have worked before?  -sb */
+            struct Lisp_Compiled_Function *n = XCOMPILED_FUNCTION (new);
+            n->flags = o->flags;
+            n->bytecodes = Fpurecopy (o->bytecodes);
+            n->constants = Fpurecopy (o->constants);
+            n->arglist = Fpurecopy (o->arglist);
+            n->doc_and_interactive = Fpurecopy (o->doc_and_interactive);
+           n->maxdepth = o->maxdepth;
+            return new;
+          }
+#ifdef LRECORD_CONS
+      else if (CONSP (obj))
+       return pure_cons (XCAR (obj), XCDR (obj));
+#endif /* LRECORD_CONS */
+#ifdef LRECORD_VECTOR
+      else if (VECTORP (obj))
+       {
+         struct Lisp_Vector *o = XVECTOR (obj);
+         Lisp_Object new = make_pure_vector (vector_length (o), Qnil);
+         for (i = 0; i < vector_length (o); i++)
+           XVECTOR_DATA (new)[i] = Fpurecopy (o->contents[i]);
+         return new;
+       }
+#endif /* LRECORD_VECTOR */
+#ifdef LRECORD_STRING
+      else if (STRINGP (obj))
+       {
+         return make_pure_string (XSTRING_DATA (obj),
+                                  XSTRING_LENGTH (obj),
+                                  XSTRING (obj)->plist,
+                                  0);
+       }
+#endif /* LRECORD_STRING */
+#ifdef LISP_FLOAT_TYPE
+        else if (FLOATP (obj))
+          return make_pure_float (float_data (XFLOAT (obj)));
+#endif /* LISP_FLOAT_TYPE */
+       else if (SYMBOLP (obj))
+         {
+           /*
+            * Symbols can't be made pure (and thus read-only),
+            * because assigning to their function, value or plist
+            * slots would produced a SEGV in the dumped XEmacs.  So
+            * we previously would just return the symbol unchanged.
+            *
+            * But purified aggregate objects like lists and vectors
+            * can contain uninterned symbols.  If there are no
+            * other non-pure references to the symbol, then the
+            * symbol is not protected from garbage collection
+            * because the collector does not mark the contents of
+            * purified objects.  So to protect the symbols, an impure
+            * reference has to be kept for each uninterned symbol
+            * that is referenced by a pure object.  All such
+            * symbols are stored in the hashtable pointed to by
+            * Vpure_uninterned_symbol_table, which is itself
+            * staticpro'd.
+            */
+           if (!NILP (XSYMBOL (obj)->obarray))
+             return obj;
+           Fputhash (obj, Qnil, Vpure_uninterned_symbol_table);
+           return obj;
+         }
+       else
+          signal_simple_error ("Can't purecopy %S", obj);
+      }
+    }
+  return obj;
+}
+
+
+\f
+static void
+puresize_adjust_h (size_t puresize)
+{
+  FILE *stream = fopen ("puresize-adjust.h", "w");
+
+  if (stream == NULL)
+    report_file_error ("Opening puresize adjustment file",
+                      Fcons (build_string ("puresize-adjust.h"), Qnil));
+
+  fprintf (stream,
+          "/*\tDo not edit this file!\n"
+          "\tAutomatically generated by XEmacs */\n"
+          "# define PURESIZE_ADJUSTMENT (%ld)\n",
+          (long) (puresize - RAW_PURESIZE));
+  fclose (stream);
+}
+
+void
+report_pure_usage (int report_impurities,
+                   int die_if_pure_storage_exceeded)
+{
+  int rc = 0;
+
+  if (pure_lossage)
+    {
+      message ("\n****\tPure Lisp storage exhausted!\n"
+              "\tPurespace usage: %ld of %ld\n"
+              "****",
+               (long) get_PURESIZE() + pure_lossage,
+              (long) get_PURESIZE());
+      if (die_if_pure_storage_exceeded)
+       {
+         puresize_adjust_h (get_PURESIZE() + pure_lossage);
+#ifdef HEAP_IN_DATA
+         sheap_adjust_h();
+#endif
+         rc = -1;
+       }
+    }
+  else
+    {
+      size_t lost = (get_PURESIZE() - pure_bytes_used) / 1024;
+      char buf[200];
+      /* extern Lisp_Object Vemacs_beta_version; */
+      /* This used to be NILP(Vemacs_beta_version) ? 512 : 4; */
+#ifndef PURESIZE_SLOP
+#define PURESIZE_SLOP 0
+#endif
+      size_t slop = PURESIZE_SLOP;
+
+      sprintf (buf, "Purespace usage: %ld of %ld (%d%%",
+               (long) pure_bytes_used,
+              (long) get_PURESIZE(),
+               (int) (pure_bytes_used / (get_PURESIZE() / 100.0) + 0.5));
+      if (lost > ((slop ? slop : 1) / 1024)) {
+        sprintf (buf + strlen (buf), " -- %ldk wasted", (long)lost);
+       if (die_if_pure_storage_exceeded) {
+         puresize_adjust_h (pure_bytes_used + slop);
+#ifdef HEAP_IN_DATA
+         sheap_adjust_h();
+#endif
+         rc = -1;
+       }
+      }
+
+      strcat (buf, ").");
+      message ("%s", buf);
+    }
+
+#ifdef PURESTAT
+
+  purestat_vector_other.nbytes =
+    purestat_vector_all.nbytes -
+    purestat_vector_bytecode_constants.nbytes;
+  purestat_vector_other.nobjects =
+    purestat_vector_all.nobjects -
+    purestat_vector_bytecode_constants.nobjects;
+
+  purestat_string_other.nbytes =
+    purestat_string_all.nbytes -
+    (purestat_string_pname.nbytes +
+     purestat_string_bytecodes.nbytes +
+     purestat_string_interactive.nbytes +
+     purestat_string_documentation.nbytes +
+#ifdef I18N3
+     purestat_string_domain.nbytes +
+#endif
+     purestat_string_other_function.nbytes);
+
+  purestat_string_other.nobjects =
+    purestat_string_all.nobjects -
+    (purestat_string_pname.nobjects +
+     purestat_string_bytecodes.nobjects +
+     purestat_string_interactive.nobjects +
+     purestat_string_documentation.nobjects +
+#ifdef I18N3
+     purestat_string_domain.nobjects +
+#endif
+     purestat_string_other_function.nobjects);
+
+  message ("   %-26s Total    Bytes", "");
+
+  {
+    int j;
+
+    for (j = 0; j < countof (purestats); j++)
+      if (!purestats[j])
+        clear_message ();
+      else
+       {
+         char buf [100];
+         sprintf(buf, "%s:", purestats[j]->name);
+         message ("   %-26s %5d  %7d  %2d%%",
+                  buf,
+                  purestats[j]->nobjects,
+                  purestats[j]->nbytes,
+                  (int) (purestats[j]->nbytes / (pure_bytes_used / 100.0) + 0.5));
+       }
+  }
+#endif /* PURESTAT */
+
+
+  if (report_impurities)
+    {
+      Lisp_Object tem = Felt (Fgarbage_collect (), make_int (5));
+      struct gcpro gcpro1;
+      GCPRO1 (tem);
+      message ("\nImpurities:");
+      while (!NILP (tem))
+       {
+         if (CONSP (tem) && SYMBOLP (Fcar (tem)) && CONSP (Fcdr (tem)))
+           {
+             int total = XINT (Fcar (Fcdr (tem)));
+             if (total > 0)
+               {
+                 char buf [100];
+                 char *s = buf;
+                 memcpy (buf, string_data (XSYMBOL (Fcar (tem))->name),
+                         string_length (XSYMBOL (Fcar (tem))->name) + 1);
+                 while (*s++) if (*s == '-') *s = ' ';
+                 s--; *s++ = ':'; *s = 0;
+                 message ("   %-33s %6d", buf, total);
+               }
+             tem = Fcdr (Fcdr (tem));
+           }
+         else                  /* WTF?! */
+           {
+             Fprin1 (tem, Qexternal_debugging_output);
+             tem = Qnil;
+           }
+       }
+      UNGCPRO;
+      garbage_collect_1 ();         /* GC garbage_collect's garbage */
+    }
+  clear_message ();
+
+  if (rc < 0) {
+    unlink("SATISFIED");
+    fatal ("Pure size adjusted, Don't Panic!  I will restart the `make'");
+  } else if (pure_lossage && die_if_pure_storage_exceeded) {
+    fatal ("Pure storage exhausted");
+  }
+}
+
+\f
+/**********************************************************************/
+/*                            staticpro                               */
+/**********************************************************************/
 
 struct gcpro *gcprolist;
 
@@ -2395,39 +3129,132 @@ mark_object (Lisp_Object obj)
 {
  tail_recurse:
 
-#ifdef ERROR_CHECK_GC
-  assert (! (GC_EQ (obj, Qnull_pointer)));
-#endif
-  /* Checks we used to perform */
-  /* if (EQ (obj, Qnull_pointer)) return; */
-  /* if (!POINTER_TYPE_P (XGCTYPE (obj))) return; */
-  /* if (PURIFIED (XPNTR (obj))) return; */
-
-  if (XGCTYPE (obj) == Lisp_Type_Record)
+  if (EQ (obj, Qnull_pointer))
+    return;
+  if (!POINTER_TYPE_P (XGCTYPE (obj)))
+    return;
+  if (PURIFIED (XPNTR (obj)))
+    return;
+  switch (XGCTYPE (obj))
     {
-      struct lrecord_header *lheader = XRECORD_LHEADER (obj);
-#if defined (ERROR_CHECK_GC)
-      assert (lheader->type <= last_lrecord_type_index_assigned);
+#ifndef LRECORD_CONS
+    case Lisp_Type_Cons:
+      {
+       struct Lisp_Cons *ptr = XCONS (obj);
+       if (CONS_MARKED_P (ptr))
+         break;
+       MARK_CONS (ptr);
+       /* If the cdr is nil, tail-recurse on the car.  */
+       if (NILP (ptr->cdr))
+         {
+           obj = ptr->car;
+         }
+       else
+         {
+           mark_object (ptr->car);
+           obj = ptr->cdr;
+         }
+       goto tail_recurse;
+      }
 #endif
-      if (C_READONLY_RECORD_HEADER_P (lheader))
-       return;
 
-      if (! MARKED_RECORD_HEADER_P (lheader) &&
-         ! UNMARKABLE_RECORD_HEADER_P (lheader))
-       {
-         CONST struct lrecord_implementation *implementation =
-           LHEADER_IMPLEMENTATION (lheader);
-         MARK_RECORD_HEADER (lheader);
+    case Lisp_Type_Record:
+    /* case Lisp_Symbol_Value_Magic: */
+      {
+       struct lrecord_header *lheader = XRECORD_LHEADER (obj);
+       CONST struct lrecord_implementation *implementation
+         = LHEADER_IMPLEMENTATION (lheader);
+
+       if (! MARKED_RECORD_HEADER_P (lheader) &&
+           ! UNMARKABLE_RECORD_HEADER_P (lheader))
+         {
+           MARK_RECORD_HEADER (lheader);
 #ifdef ERROR_CHECK_GC
-         if (!implementation->basic_p)
-           assert (! ((struct lcrecord_header *) lheader)->free);
+           if (!implementation->basic_p)
+             assert (! ((struct lcrecord_header *) lheader)->free);
 #endif
-         if (implementation->marker)
+           if (implementation->marker != 0)
+             {
+               obj = ((implementation->marker) (obj, mark_object));
+               if (!NILP (obj)) goto tail_recurse;
+             }
+         }
+      }
+      break;
+
+#ifndef LRECORD_STRING
+    case Lisp_Type_String:
+      {
+       struct Lisp_String *ptr = XSTRING (obj);
+
+       if (!XMARKBIT (ptr->plist))
+         {
+           if (CONSP (ptr->plist) &&
+               EXTENT_INFOP (XCAR (ptr->plist)))
+             flush_cached_extent_info (XCAR (ptr->plist));
+           XMARK (ptr->plist);
+           obj = ptr->plist;
+           goto tail_recurse;
+         }
+      }
+      break;
+#endif /* ! LRECORD_STRING */
+
+#ifndef LRECORD_VECTOR
+    case Lisp_Type_Vector:
+      {
+       struct Lisp_Vector *ptr = XVECTOR (obj);
+       int len = vector_length (ptr);
+       int i;
+
+       if (len < 0)
+         break;                /* Already marked */
+       ptr->size = -1 - len;   /* Else mark it */
+       for (i = 0; i < len - 1; i++) /* and then mark its elements */
+         mark_object (ptr->contents[i]);
+        if (len > 0)
+        {
+          obj = ptr->contents[len - 1];
+          goto tail_recurse;
+        }
+      }
+      break;
+#endif /* !LRECORD_VECTOR */
+
+#ifndef LRECORD_SYMBOL
+    case Lisp_Type_Symbol:
+      {
+       struct Lisp_Symbol *sym = XSYMBOL (obj);
+
+       while (!XMARKBIT (sym->plist))
+         {
+           XMARK (sym->plist);
+           mark_object (sym->value);
+           mark_object (sym->function);
            {
-             obj = implementation->marker (obj, mark_object);
-             if (!GC_NILP (obj)) goto tail_recurse;
+             /*
+              * symbol->name is a struct Lisp_String *, not a
+              * Lisp_Object.  Fix it up and pass to mark_object.
+              */
+             Lisp_Object symname;
+             XSETSTRING(symname, sym->name);
+             mark_object(symname);
            }
-       }
+           if (!symbol_next (sym))
+             {
+               obj = sym->plist;
+               goto tail_recurse;
+             }
+           mark_object (sym->plist);
+           /* Mark the rest of the symbols in the hash-chain */
+           sym = symbol_next (sym);
+         }
+      }
+      break;
+#endif /* !LRECORD_SYMBOL */
+
+    default:
+      abort ();
     }
 }
 
@@ -2453,8 +3280,164 @@ mark_conses_in_list (Lisp_Object obj)
 }
 
 \f
+#ifdef PURESTAT
+/* Simpler than mark-object, because pure structure can't
+   have any circularities */
+
+#if 0 /* unused */
+static int idiot_c_doesnt_have_closures;
+static void
+idiot_c (Lisp_Object obj)
+{
+  idiot_c_doesnt_have_closures += pure_sizeof (obj, 1);
+}
+#endif /* unused */
+
+static size_t
+pure_string_sizeof (Lisp_Object obj)
+{
+  struct Lisp_String *ptr = XSTRING (obj);
+
+  if (string_data (ptr) != (Bufbyte *) ptr + sizeof (*ptr))
+    {
+      /* string-data not allocated contiguously.
+        Probably (better be!!) a pointer constant "C" data. */
+      return sizeof (*ptr);
+    }
+  else
+    {
+      size_t size = sizeof (*ptr) + string_length (ptr) + 1;
+      size = ALIGN_SIZE (size, sizeof (Lisp_Object));
+      return size;
+    }
+}
+
+/* recurse arg isn't actually used */
+static size_t
+pure_sizeof (Lisp_Object obj /*, int recurse */)
+{
+  size_t total = 0;
+
+  /*tail_recurse: */
+  if (!POINTER_TYPE_P (XTYPE (obj))
+      || !PURIFIED (XPNTR (obj)))
+    return total;
+
+  /* symbol's sizes are accounted for separately */
+  if (SYMBOLP (obj))
+    return total;
+
+  switch (XTYPE (obj))
+    {
+
+#ifndef LRECORD_STRING
+    case Lisp_Type_String:
+      total += pure_string_sizeof (obj);
+      break;
+#endif /* ! LRECORD_STRING */
+
+#ifndef LRECORD_VECTOR
+    case Lisp_Type_Vector:
+      {
+        struct Lisp_Vector *ptr = XVECTOR (obj);
+        int len = vector_length (ptr);
+
+        total += (sizeof (struct Lisp_Vector)
+                  + (len - 1) * sizeof (Lisp_Object));
+#if 0 /* unused */
+        if (!recurse)
+          break;
+        {
+          int i;
+         for (i = 0; i < len - 1; i++)
+           total += pure_sizeof (ptr->contents[i], 1);
+       }
+        if (len > 0)
+         {
+           obj = ptr->contents[len - 1];
+           goto tail_recurse;
+         }
+#endif /* unused */
+      }
+      break;
+#endif /* !LRECORD_VECTOR */
+
+    case Lisp_Type_Record:
+      {
+       struct lrecord_header *lheader = XRECORD_LHEADER (obj);
+       CONST struct lrecord_implementation *implementation
+         = LHEADER_IMPLEMENTATION (lheader);
+
+#ifdef LRECORD_STRING
+       if (STRINGP (obj))
+         total += pure_string_sizeof (obj);
+       else
+#endif
+        if (implementation->size_in_bytes_method)
+          total += ((implementation->size_in_bytes_method) (lheader));
+       else
+          total += implementation->static_size;
+
+#if 0 /* unused */
+        if (!recurse)
+          break;
+
+       if (implementation->marker != 0)
+         {
+           int old = idiot_c_doesnt_have_closures;
+
+           idiot_c_doesnt_have_closures = 0;
+           obj = ((implementation->marker) (obj, idiot_c));
+           total += idiot_c_doesnt_have_closures;
+           idiot_c_doesnt_have_closures = old;
+
+           if (!NILP (obj)) goto tail_recurse;
+         }
+#endif /* unused */
+      }
+      break;
+
+#ifndef LRECORD_CONS
+    case Lisp_Type_Cons:
+      {
+        struct Lisp_Cons *ptr = XCONS (obj);
+        total += sizeof (*ptr);
+#if 0 /* unused */
+        if (!recurse)
+          break;
+       /* If the cdr is nil, tail-recurse on the car.  */
+       if (NILP (ptr->cdr))
+         {
+           obj = ptr->car;
+         }
+       else
+         {
+           total += pure_sizeof (ptr->car, 1);
+           obj = ptr->cdr;
+         }
+       goto tail_recurse;
+#endif /* unused */
+      }
+      break;
+#endif
+
+      /* Others can't be purified */
+    default:
+      abort ();
+    }
+  return total;
+}
+#endif /* PURESTAT */
+
+
+
+\f
 /* Find all structures not marked, and free them. */
 
+#ifndef LRECORD_VECTOR
+static int gc_count_num_vector_used, gc_count_vector_total_size;
+static int gc_count_vector_storage;
+#endif
 static int gc_count_num_bit_vector_used, gc_count_bit_vector_total_size;
 static int gc_count_bit_vector_storage;
 static int gc_count_num_short_string_in_use;
@@ -2464,6 +3447,12 @@ static int gc_count_short_string_total_size;
 /* static int gc_count_total_records_used, gc_count_records_total_size; */
 
 \f
+/* This will be used more extensively In The Future */
+static int last_lrecord_type_index_assigned;
+
+CONST struct lrecord_implementation *lrecord_implementations_table[128];
+#define max_lrecord_type (countof (lrecord_implementations_table) - 1)
+
 int
 lrecord_type_index (CONST struct lrecord_implementation *implementation)
 {
@@ -2474,7 +3463,8 @@ lrecord_type_index (CONST struct lrecord_implementation *implementation)
   if (type_index < 0 || type_index > max_lrecord_type
       || lrecord_implementations_table[type_index] != implementation)
     {
-      assert (last_lrecord_type_index_assigned < max_lrecord_type);
+      if (last_lrecord_type_index_assigned == max_lrecord_type)
+        abort ();
       type_index = ++last_lrecord_type_index_assigned;
       lrecord_implementations_table[type_index] = implementation;
       *(implementation->lrecord_type_index) = type_index;
@@ -2493,6 +3483,21 @@ static struct
   int instances_on_free_list;
 } lcrecord_stats [countof (lrecord_implementations_table)];
 
+
+static void
+reset_lcrecord_stats (void)
+{
+  int i;
+  for (i = 0; i < countof (lcrecord_stats); i++)
+    {
+      lcrecord_stats[i].instances_in_use = 0;
+      lcrecord_stats[i].bytes_in_use = 0;
+      lcrecord_stats[i].instances_freed = 0;
+      lcrecord_stats[i].bytes_freed = 0;
+      lcrecord_stats[i].instances_on_free_list = 0;
+    }
+}
+
 static void
 tick_lcrecord_stats (CONST struct lrecord_header *h, int free_p)
 {
@@ -2508,7 +3513,7 @@ tick_lcrecord_stats (CONST struct lrecord_header *h, int free_p)
   else
     {
       size_t sz = (implementation->size_in_bytes_method
-                  ? implementation->size_in_bytes_method (h)
+                  ? ((implementation->size_in_bytes_method) (h))
                   : implementation->static_size);
 
       if (free_p)
@@ -2532,8 +3537,7 @@ sweep_lcrecords_1 (struct lcrecord_header **prev, int *used)
   struct lcrecord_header *header;
   int num_used = 0;
   /* int total_size = 0; */
-
-  xzero (lcrecord_stats); /* Reset all statistics to 0. */
+  reset_lcrecord_stats ();
 
   /* First go through and call all the finalize methods.
      Then go through and free the objects.  There used to
@@ -2548,25 +3552,21 @@ sweep_lcrecords_1 (struct lcrecord_header **prev, int *used)
   for (header = *prev; header; header = header->next)
     {
       struct lrecord_header *h = &(header->lheader);
-      if (!C_READONLY_RECORD_HEADER_P(h)
-         && !MARKED_RECORD_HEADER_P (h)
-         && ! (header->free))
+      if (!MARKED_RECORD_HEADER_P (h) && ! (header->free))
        {
          if (LHEADER_IMPLEMENTATION (h)->finalizer)
-           LHEADER_IMPLEMENTATION (h)->finalizer (h, 0);
+           ((LHEADER_IMPLEMENTATION (h)->finalizer) (h, 0));
        }
     }
 
   for (header = *prev; header; )
     {
       struct lrecord_header *h = &(header->lheader);
-      if (C_READONLY_RECORD_HEADER_P(h) || MARKED_RECORD_HEADER_P (h))
+      if (MARKED_RECORD_HEADER_P (h))
        {
-         if (MARKED_RECORD_HEADER_P (h))
-           UNMARK_RECORD_HEADER (h);
+         UNMARK_RECORD_HEADER (h);
          num_used++;
-         /* total_size += n->implementation->size_in_bytes (h);*/
-         /* ### May modify header->next on a C_READONLY lcrecord */
+         /* total_size += ((n->implementation->size_in_bytes) (h));*/
          prev = &(header->next);
          header = *prev;
          tick_lcrecord_stats (h, 0);
@@ -2585,6 +3585,47 @@ sweep_lcrecords_1 (struct lcrecord_header **prev, int *used)
   /* *total = total_size; */
 }
 
+#ifndef LRECORD_VECTOR
+
+static void
+sweep_vectors_1 (Lisp_Object *prev,
+                 int *used, int *total, int *storage)
+{
+  Lisp_Object vector;
+  int num_used = 0;
+  int total_size = 0;
+  int total_storage = 0;
+
+  for (vector = *prev; VECTORP (vector); )
+    {
+      struct Lisp_Vector *v = XVECTOR (vector);
+      int len = v->size;
+      if (len < 0)     /* marked */
+       {
+          len = - (len + 1);
+         v->size = len;
+         total_size += len;
+          total_storage += (MALLOC_OVERHEAD
+                            + sizeof (struct Lisp_Vector)
+                            + (len - 1 + 1) * sizeof (Lisp_Object));
+         num_used++;
+         prev = &(vector_next (v));
+         vector = *prev;
+       }
+      else
+       {
+          Lisp_Object next = vector_next (v);
+          *prev = next;
+         xfree (v);
+         vector = next;
+       }
+    }
+  *used = num_used;
+  *total = total_size;
+  *storage = total_storage;
+}
+
+#endif /* ! LRECORD_VECTOR */
 
 static void
 sweep_bit_vectors_1 (Lisp_Object *prev,
@@ -2599,19 +3640,17 @@ sweep_bit_vectors_1 (Lisp_Object *prev,
      their implementation */
   for (bit_vector = *prev; !EQ (bit_vector, Qzero); )
     {
-      Lisp_Bit_Vector *v = XBIT_VECTOR (bit_vector);
+      struct Lisp_Bit_Vector *v = XBIT_VECTOR (bit_vector);
       int len = v->size;
-      if (C_READONLY_RECORD_HEADER_P(&(v->lheader)) || MARKED_RECORD_P (bit_vector))
+      if (MARKED_RECORD_P (bit_vector))
        {
-         if (MARKED_RECORD_P (bit_vector))
-           UNMARK_RECORD_HEADER (&(v->lheader));
+         UNMARK_RECORD_HEADER (&(v->lheader));
          total_size += len;
-          total_storage +=
-           MALLOC_OVERHEAD +
-           STRETCHY_STRUCT_SIZEOF (Lisp_Bit_Vector, bits,
-                                   BIT_VECTOR_LONG_STORAGE (len));
+          total_storage += (MALLOC_OVERHEAD
+                            + sizeof (struct Lisp_Bit_Vector)
+                            + (BIT_VECTOR_LONG_STORAGE (len) - 1)
+                           * sizeof (long));
          num_used++;
-         /* ### May modify next on a C_READONLY bitvector */
          prev = &(bit_vector_next (v));
          bit_vector = *prev;
        }
@@ -2635,45 +3674,41 @@ sweep_bit_vectors_1 (Lisp_Object *prev,
 
 #define SWEEP_FIXED_TYPE_BLOCK(typename, obj_type)                     \
 do {                                                                   \
-  struct typename##_block *SFTB_current;                               \
-  struct typename##_block **SFTB_prev;                                 \
-  int SFTB_limit;                                                      \
+  struct typename##_block *_frob_current;                              \
+  struct typename##_block **_frob_prev;                                        \
+  int _frob_limit;                                                     \
   int num_free = 0, num_used = 0;                                      \
                                                                        \
-  for (SFTB_prev = &current_##typename##_block,                                \
-       SFTB_current = current_##typename##_block,                      \
-       SFTB_limit = current_##typename##_block_index;                  \
-       SFTB_current;                                                   \
+  for (_frob_prev = &current_##typename##_block,                       \
+       _frob_current = current_##typename##_block,                     \
+       _frob_limit = current_##typename##_block_index;                 \
+       _frob_current;                                                  \
        )                                                               \
     {                                                                  \
-      int SFTB_iii;                                                    \
+      int _frob_iii;                                                   \
                                                                        \
-      for (SFTB_iii = 0; SFTB_iii < SFTB_limit; SFTB_iii++)            \
+      for (_frob_iii = 0; _frob_iii < _frob_limit; _frob_iii++)                \
        {                                                               \
-         obj_type *SFTB_victim = &(SFTB_current->block[SFTB_iii]);     \
+         obj_type *_frob_victim = &(_frob_current->block[_frob_iii]);  \
                                                                        \
-         if (FREE_STRUCT_P (SFTB_victim))                              \
+         if (FREE_STRUCT_P (_frob_victim))                             \
            {                                                           \
              num_free++;                                               \
            }                                                           \
-         else if (C_READONLY_RECORD_HEADER_P (&SFTB_victim->lheader))  \
-           {                                                           \
-             num_used++;                                               \
-           }                                                           \
-         else if (!MARKED_RECORD_HEADER_P (&SFTB_victim->lheader))     \
+         else if (!MARKED_##typename##_P (_frob_victim))               \
            {                                                           \
              num_free++;                                               \
-             FREE_FIXED_TYPE (typename, obj_type, SFTB_victim);        \
+             FREE_FIXED_TYPE (typename, obj_type, _frob_victim);       \
            }                                                           \
          else                                                          \
            {                                                           \
              num_used++;                                               \
-             UNMARK_##typename (SFTB_victim);                          \
+             UNMARK_##typename (_frob_victim);                         \
            }                                                           \
        }                                                               \
-      SFTB_prev = &(SFTB_current->prev);                               \
-      SFTB_current = SFTB_current->prev;                               \
-      SFTB_limit = countof (current_##typename##_block->block);                \
+      _frob_prev = &(_frob_current->prev);                             \
+      _frob_current = _frob_current->prev;                             \
+      _frob_limit = countof (current_##typename##_block->block);       \
     }                                                                  \
                                                                        \
   gc_count_num_##typename##_in_use = num_used;                         \
@@ -2682,82 +3717,77 @@ do {                                                                    \
 
 #else /* !ERROR_CHECK_GC */
 
-#define SWEEP_FIXED_TYPE_BLOCK(typename, obj_type)                             \
-do {                                                                           \
-  struct typename##_block *SFTB_current;                                       \
-  struct typename##_block **SFTB_prev;                                         \
-  int SFTB_limit;                                                              \
-  int num_free = 0, num_used = 0;                                              \
-                                                                               \
-  typename##_free_list = 0;                                                    \
-                                                                               \
-  for (SFTB_prev = &current_##typename##_block,                                        \
-       SFTB_current = current_##typename##_block,                              \
-       SFTB_limit = current_##typename##_block_index;                          \
-       SFTB_current;                                                           \
-       )                                                                       \
-    {                                                                          \
-      int SFTB_iii;                                                            \
-      int SFTB_empty = 1;                                                      \
-      obj_type *SFTB_old_free_list = typename##_free_list;                     \
-                                                                               \
-      for (SFTB_iii = 0; SFTB_iii < SFTB_limit; SFTB_iii++)                    \
-       {                                                                       \
-         obj_type *SFTB_victim = &(SFTB_current->block[SFTB_iii]);             \
-                                                                               \
-         if (FREE_STRUCT_P (SFTB_victim))                                      \
-           {                                                                   \
-             num_free++;                                                       \
-             PUT_FIXED_TYPE_ON_FREE_LIST (typename, obj_type, SFTB_victim);    \
-           }                                                                   \
-         else if (C_READONLY_RECORD_HEADER_P (&SFTB_victim->lheader))          \
-           {                                                                   \
-             SFTB_empty = 0;                                                   \
-             num_used++;                                                       \
-           }                                                                   \
-         else if (!MARKED_RECORD_HEADER_P (&SFTB_victim->lheader))             \
-           {                                                                   \
-             num_free++;                                                       \
-             FREE_FIXED_TYPE (typename, obj_type, SFTB_victim);                \
-           }                                                                   \
-         else                                                                  \
-           {                                                                   \
-             SFTB_empty = 0;                                                   \
-             num_used++;                                                       \
-             UNMARK_##typename (SFTB_victim);                                  \
-           }                                                                   \
-       }                                                                       \
-      if (!SFTB_empty)                                                         \
-       {                                                                       \
-         SFTB_prev = &(SFTB_current->prev);                                    \
-         SFTB_current = SFTB_current->prev;                                    \
-       }                                                                       \
-      else if (SFTB_current == current_##typename##_block                      \
-              && !SFTB_current->prev)                                          \
-       {                                                                       \
-         /* No real point in freeing sole allocation block */                  \
-         break;                                                                \
-       }                                                                       \
-      else                                                                     \
-       {                                                                       \
-         struct typename##_block *SFTB_victim_block = SFTB_current;            \
-         if (SFTB_victim_block == current_##typename##_block)                  \
-           current_##typename##_block_index                                    \
-             = countof (current_##typename##_block->block);                    \
-         SFTB_current = SFTB_current->prev;                                    \
-         {                                                                     \
-           *SFTB_prev = SFTB_current;                                          \
-           xfree (SFTB_victim_block);                                          \
-           /* Restore free list to what it was before victim was swept */      \
-           typename##_free_list = SFTB_old_free_list;                          \
-           num_free -= SFTB_limit;                                             \
-         }                                                                     \
-       }                                                                       \
-      SFTB_limit = countof (current_##typename##_block->block);                        \
-    }                                                                          \
-                                                                               \
-  gc_count_num_##typename##_in_use = num_used;                                 \
-  gc_count_num_##typename##_freelist = num_free;                               \
+#define SWEEP_FIXED_TYPE_BLOCK(typename, obj_type)                           \
+do {                                                                         \
+  struct typename##_block *_frob_current;                                    \
+  struct typename##_block **_frob_prev;                                              \
+  int _frob_limit;                                                           \
+  int num_free = 0, num_used = 0;                                            \
+                                                                             \
+  typename##_free_list = 0;                                                  \
+                                                                             \
+  for (_frob_prev = &current_##typename##_block,                             \
+       _frob_current = current_##typename##_block,                           \
+       _frob_limit = current_##typename##_block_index;                       \
+       _frob_current;                                                        \
+       )                                                                     \
+    {                                                                        \
+      int _frob_iii;                                                         \
+      int _frob_empty = 1;                                                   \
+      obj_type *_frob_old_free_list = typename##_free_list;                  \
+                                                                             \
+      for (_frob_iii = 0; _frob_iii < _frob_limit; _frob_iii++)                      \
+       {                                                                     \
+         obj_type *_frob_victim = &(_frob_current->block[_frob_iii]);        \
+                                                                             \
+         if (FREE_STRUCT_P (_frob_victim))                                   \
+           {                                                                 \
+             num_free++;                                                     \
+             PUT_FIXED_TYPE_ON_FREE_LIST (typename, obj_type, _frob_victim); \
+           }                                                                 \
+         else if (!MARKED_##typename##_P (_frob_victim))                     \
+           {                                                                 \
+             num_free++;                                                     \
+             FREE_FIXED_TYPE (typename, obj_type, _frob_victim);             \
+           }                                                                 \
+         else                                                                \
+           {                                                                 \
+             _frob_empty = 0;                                                \
+             num_used++;                                                     \
+             UNMARK_##typename (_frob_victim);                               \
+           }                                                                 \
+       }                                                                     \
+      if (!_frob_empty)                                                              \
+       {                                                                     \
+         _frob_prev = &(_frob_current->prev);                                \
+         _frob_current = _frob_current->prev;                                \
+       }                                                                     \
+      else if (_frob_current == current_##typename##_block                   \
+              && !_frob_current->prev)                                       \
+       {                                                                     \
+         /* No real point in freeing sole allocation block */                \
+         break;                                                              \
+       }                                                                     \
+      else                                                                   \
+       {                                                                     \
+         struct typename##_block *_frob_victim_block = _frob_current;        \
+         if (_frob_victim_block == current_##typename##_block)               \
+           current_##typename##_block_index                                  \
+             = countof (current_##typename##_block->block);                  \
+         _frob_current = _frob_current->prev;                                \
+         {                                                                   \
+           *_frob_prev = _frob_current;                                      \
+           xfree (_frob_victim_block);                                       \
+           /* Restore free list to what it was before victim was swept */    \
+           typename##_free_list = _frob_old_free_list;                       \
+           num_free -= _frob_limit;                                          \
+         }                                                                   \
+       }                                                                     \
+      _frob_limit = countof (current_##typename##_block->block);             \
+    }                                                                        \
+                                                                             \
+  gc_count_num_##typename##_in_use = num_used;                               \
+  gc_count_num_##typename##_freelist = num_free;                             \
 } while (0)
 
 #endif /* !ERROR_CHECK_GC */
@@ -2768,7 +3798,13 @@ do {                                                                             \
 static void
 sweep_conses (void)
 {
-#define UNMARK_cons(ptr) UNMARK_RECORD_HEADER (&((ptr)->lheader))
+#ifndef LRECORD_CONS
+# define MARKED_cons_P(ptr) XMARKBIT ((ptr)->car)
+# define UNMARK_cons(ptr) do { XUNMARK ((ptr)->car); } while (0)
+#else /* LRECORD_CONS */
+# define MARKED_cons_P(ptr) MARKED_RECORD_HEADER_P (&((ptr)->lheader))
+# define UNMARK_cons(ptr) UNMARK_RECORD_HEADER (&((ptr)->lheader))
+#endif /* LRECORD_CONS */
 #define ADDITIONAL_FREE_cons(ptr)
 
   SWEEP_FIXED_TYPE_BLOCK (cons, struct Lisp_Cons);
@@ -2832,10 +3868,12 @@ free_alist (Lisp_Object alist)
 static void
 sweep_compiled_functions (void)
 {
+#define MARKED_compiled_function_P(ptr) \
+  MARKED_RECORD_HEADER_P (&((ptr)->lheader))
 #define UNMARK_compiled_function(ptr) UNMARK_RECORD_HEADER (&((ptr)->lheader))
 #define ADDITIONAL_FREE_compiled_function(ptr)
 
-  SWEEP_FIXED_TYPE_BLOCK (compiled_function, Lisp_Compiled_Function);
+  SWEEP_FIXED_TYPE_BLOCK (compiled_function, struct Lisp_Compiled_Function);
 }
 
 
@@ -2843,6 +3881,7 @@ sweep_compiled_functions (void)
 static void
 sweep_floats (void)
 {
+#define MARKED_float_P(ptr) MARKED_RECORD_HEADER_P (&((ptr)->lheader))
 #define UNMARK_float(ptr) UNMARK_RECORD_HEADER (&((ptr)->lheader))
 #define ADDITIONAL_FREE_float(ptr)
 
@@ -2853,7 +3892,13 @@ sweep_floats (void)
 static void
 sweep_symbols (void)
 {
-#define UNMARK_symbol(ptr) UNMARK_RECORD_HEADER (&((ptr)->lheader))
+#ifndef LRECORD_SYMBOL
+# define MARKED_symbol_P(ptr) XMARKBIT ((ptr)->plist)
+# define UNMARK_symbol(ptr) do { XUNMARK ((ptr)->plist); } while (0)
+#else
+# define MARKED_symbol_P(ptr) MARKED_RECORD_HEADER_P (&((ptr)->lheader))
+# define UNMARK_symbol(ptr) UNMARK_RECORD_HEADER (&((ptr)->lheader))
+#endif /* !LRECORD_SYMBOL */
 #define ADDITIONAL_FREE_symbol(ptr)
 
   SWEEP_FIXED_TYPE_BLOCK (symbol, struct Lisp_Symbol);
@@ -2862,6 +3907,7 @@ sweep_symbols (void)
 static void
 sweep_extents (void)
 {
+#define MARKED_extent_P(ptr) MARKED_RECORD_HEADER_P (&((ptr)->lheader))
 #define UNMARK_extent(ptr) UNMARK_RECORD_HEADER (&((ptr)->lheader))
 #define ADDITIONAL_FREE_extent(ptr)
 
@@ -2871,6 +3917,7 @@ sweep_extents (void)
 static void
 sweep_events (void)
 {
+#define MARKED_event_P(ptr) MARKED_RECORD_HEADER_P (&((ptr)->lheader))
 #define UNMARK_event(ptr) UNMARK_RECORD_HEADER (&((ptr)->lheader))
 #define ADDITIONAL_FREE_event(ptr)
 
@@ -2880,6 +3927,7 @@ sweep_events (void)
 static void
 sweep_markers (void)
 {
+#define MARKED_marker_P(ptr) MARKED_RECORD_HEADER_P (&((ptr)->lheader))
 #define UNMARK_marker(ptr) UNMARK_RECORD_HEADER (&((ptr)->lheader))
 #define ADDITIONAL_FREE_marker(ptr)                                    \
   do { Lisp_Object tem;                                                        \
@@ -3004,7 +4052,11 @@ compact_string_chars (void)
             abort ();
 
           /* Just skip it if it isn't marked.  */
+#ifdef LRECORD_STRING
          if (! MARKED_RECORD_HEADER_P (&(string->lheader)))
+#else
+          if (!XMARKBIT (string->plist))
+#endif
             {
               from_pos += fullsize;
               continue;
@@ -3085,7 +4137,10 @@ sweep_strings (void)
   int num_small_used = 0, num_small_bytes = 0, num_bytes = 0;
   int debug = debug_string_purity;
 
-#define UNMARK_string(ptr)                             \
+#ifdef LRECORD_STRING
+
+# define MARKED_string_P(ptr) MARKED_RECORD_HEADER_P (&((ptr)->lheader))
+# define UNMARK_string(ptr)                            \
   do { struct Lisp_String *p = (ptr);                  \
        int size = string_length (p);                   \
        UNMARK_RECORD_HEADER (&(p->lheader));           \
@@ -3096,12 +4151,34 @@ sweep_strings (void)
         }                                              \
        if (debug) debug_string_purity_print (p);       \
      } while (0)
-#define ADDITIONAL_FREE_string(p)                              \
+# define ADDITIONAL_FREE_string(p)                             \
   do { int size = string_length (p);                           \
        if (BIG_STRING_SIZE_P (size))                           \
         xfree_1 (CHARS_TO_STRING_CHAR (string_data (p)));      \
      } while (0)
 
+#else
+
+# define MARKED_string_P(ptr) XMARKBIT ((ptr)->plist)
+# define UNMARK_string(ptr)                            \
+  do { struct Lisp_String *p = (ptr);                  \
+       int size = string_length (p);                   \
+       XUNMARK (p->plist);                             \
+       num_bytes += size;                              \
+       if (!BIG_STRING_SIZE_P (size))                  \
+        { num_small_bytes += size;                     \
+          num_small_used++;                            \
+        }                                              \
+       if (debug) debug_string_purity_print (p);       \
+     } while (0)
+# define ADDITIONAL_FREE_string(p)                             \
+  do { int size = string_length (p);                           \
+       if (BIG_STRING_SIZE_P (size))                           \
+        xfree_1 (CHARS_TO_STRING_CHAR (string_data (p)));      \
+     } while (0)
+
+#endif /* ! LRECORD_STRING */
+
   SWEEP_FIXED_TYPE_BLOCK (string, struct Lisp_String);
 
   gc_count_num_short_string_in_use = num_small_used;
@@ -3114,23 +4191,33 @@ sweep_strings (void)
 static int
 marked_p (Lisp_Object obj)
 {
-#ifdef ERROR_CHECK_GC
-  assert (! (GC_EQ (obj, Qnull_pointer)));
-#endif
-  /* Checks we used to perform. */
-  /* if (EQ (obj, Qnull_pointer)) return 1; */
-  /* if (!POINTER_TYPE_P (XGCTYPE (obj))) return 1; */
-  /* if (PURIFIED (XPNTR (obj))) return 1; */
-
-  if (XGCTYPE (obj) == Lisp_Type_Record)
+  if (EQ (obj, Qnull_pointer)) return 1;
+  if (!POINTER_TYPE_P (XGCTYPE (obj))) return 1;
+  if (PURIFIED (XPNTR (obj))) return 1;
+  switch (XGCTYPE (obj))
     {
-      struct lrecord_header *lheader = XRECORD_LHEADER (obj);
-#if defined (ERROR_CHECK_GC)
-      assert (lheader->type <= last_lrecord_type_index_assigned);
+#ifndef LRECORD_CONS
+    case Lisp_Type_Cons:
+      return XMARKBIT (XCAR (obj));
 #endif
-      return C_READONLY_RECORD_HEADER_P (lheader) || MARKED_RECORD_HEADER_P (lheader);
+    case Lisp_Type_Record:
+      return MARKED_RECORD_HEADER_P (XRECORD_LHEADER (obj));
+#ifndef LRECORD_STRING
+    case Lisp_Type_String:
+      return XMARKBIT (XSTRING (obj)->plist);
+#endif /* ! LRECORD_STRING */
+#ifndef LRECORD_VECTOR
+    case Lisp_Type_Vector:
+      return XVECTOR_LENGTH (obj) < 0;
+#endif /* !LRECORD_VECTOR */
+#ifndef LRECORD_SYMBOL
+    case Lisp_Type_Symbol:
+      return XMARKBIT (XSYMBOL (obj)->plist);
+#endif
+    default:
+      abort ();
     }
-  return 1;
+  return 0;    /* suppress compiler warning */
 }
 
 static void
@@ -3166,6 +4253,13 @@ gc_sweep (void)
   /* Put all unmarked conses on free list */
   sweep_conses ();
 
+#ifndef LRECORD_VECTOR
+  /* Free all unmarked vectors */
+  sweep_vectors_1 (&all_vectors,
+                   &gc_count_num_vector_used, &gc_count_vector_total_size,
+                   &gc_count_vector_storage);
+#endif
+
   /* Free all unmarked bit vectors */
   sweep_bit_vectors_1 (&all_bit_vectors,
                       &gc_count_num_bit_vector_used,
@@ -3201,7 +4295,7 @@ disksave_object_finalization (void)
 {
   /* It's important that certain information from the environment not get
      dumped with the executable (pathnames, environment variables, etc.).
-     To make it easier to tell when this has happened with strings(1) we
+     To make it easier to tell when this has happend with strings(1) we
      clear some known-to-be-garbage blocks of memory, so that leftover
      results of old evaluation don't look like potential problems.
      But first we set some notable variables to nil and do one more GC,
@@ -3218,8 +4312,6 @@ disksave_object_finalization (void)
   Vexec_path = Qnil;
   Vload_path = Qnil;
   /* Vdump_load_path = Qnil; */
-  /* Release hash tables for locate_file */
-  Flocate_file_clear_hashing (Qt);
   uncache_home_directory();
 
 #if defined(LOADHIST) && !(defined(LOADHIST_DUMPED) || \
@@ -3233,6 +4325,14 @@ disksave_object_finalization (void)
   /* Run the disksave finalization methods of all live objects. */
   disksave_object_finalization_1 ();
 
+#if 0 /* I don't see any point in this.  The purespace starts out all 0's */
+  /* Zero out the unused portion of purespace */
+  if (!pure_lossage)
+    memset (  (char *) (PUREBEG + pure_bytes_used), 0,
+           (((char *) (PUREBEG + get_PURESIZE())) -
+            ((char *) (PUREBEG + pure_bytes_used))));
+#endif
+
   /* Zero out the uninitialized (really, unused) part of the containers
      for the live strings. */
   {
@@ -3268,10 +4368,9 @@ static int gc_hooks_inhibited;
 void
 garbage_collect_1 (void)
 {
-#if MAX_SAVE_STACK > 0
   char stack_top_variable;
   extern char *stack_bottom;
-#endif
+  int i;
   struct frame *f;
   int speccount;
   int cursor_changed;
@@ -3284,24 +4383,13 @@ garbage_collect_1 (void)
       || preparing_for_armageddon)
     return;
 
-  /* We used to call selected_frame() here.
-
-     The following functions cannot be called inside GC
-     so we move to after the above tests. */
-  {
-    Lisp_Object frame;
-    Lisp_Object device = Fselected_device (Qnil);
-    if (NILP (device)) /* Could happen during startup, eg. if always_gc */
-      return;
-    frame = DEVICE_SELECTED_FRAME (XDEVICE (device));
-    if (NILP (frame))
-      signal_simple_error ("No frames exist on device", device);
-    f = XFRAME (frame);
-  }
-
   pre_gc_cursor = Qnil;
   cursor_changed = 0;
 
+  /* This function cannot be called inside GC so we move to after the */
+  /* above tests */
+  f = selected_frame ();
+
   GCPRO1 (pre_gc_cursor);
 
   /* Very important to prevent GC during any of the following
@@ -3388,45 +4476,42 @@ garbage_collect_1 (void)
   cleanup_specifiers ();
 
   /* Mark all the special slots that serve as the roots of accessibility. */
+  {
+    struct gcpro *tail;
+    struct catchtag *catch;
+    struct backtrace *backlist;
+    struct specbinding *bind;
 
-  { /* staticpro() */
-    int i;
     for (i = 0; i < staticidx; i++)
-      mark_object (*(staticvec[i]));
-  }
+      {
+#ifdef GDB_SUCKS
+       printf ("%d\n", i);
+       debug_print (*staticvec[i]);
+#endif
+        mark_object (*(staticvec[i]));
+      }
 
-  { /* GCPRO() */
-    struct gcpro *tail;
-    int i;
     for (tail = gcprolist; tail; tail = tail->next)
-      for (i = 0; i < tail->nvars; i++)
-       mark_object (tail->var[i]);
-  }
+      {
+       for (i = 0; i < tail->nvars; i++)
+         mark_object (tail->var[i]);
+      }
 
-  { /* specbind() */
-    struct specbinding *bind;
     for (bind = specpdl; bind != specpdl_ptr; bind++)
       {
        mark_object (bind->symbol);
        mark_object (bind->old_value);
       }
-  }
 
-  {
-    struct catchtag *catch;
     for (catch = catchlist; catch; catch = catch->next)
       {
        mark_object (catch->tag);
        mark_object (catch->val);
       }
-  }
 
-  {
-    struct backtrace *backlist;
     for (backlist = backtrace_list; backlist; backlist = backlist->next)
       {
        int nargs = backlist->nargs;
-       int i;
 
        mark_object (*backlist->function);
        if (nargs == UNEVALLED || nargs == MANY)
@@ -3435,27 +4520,35 @@ garbage_collect_1 (void)
          for (i = 0; i < nargs; i++)
            mark_object (backlist->args[i]);
       }
-  }
 
-  mark_redisplay (mark_object);
-  mark_profiling_info (mark_object);
+    mark_redisplay (mark_object);
+    mark_profiling_info (mark_object);
+  }
 
   /* OK, now do the after-mark stuff.  This is for things that
-     are only marked when something else is marked (e.g. weak hash tables).
+     are only marked when something else is marked (e.g. weak hashtables).
      There may be complex dependencies between such objects -- e.g.
-     a weak hash table might be unmarked, but after processing a later
-     weak hash table, the former one might get marked.  So we have to
+     a weak hashtable might be unmarked, but after processing a later
+     weak hashtable, the former one might get marked.  So we have to
      iterate until nothing more gets marked. */
-
-  while (finish_marking_weak_hash_tables (marked_p, mark_object) > 0 ||
-        finish_marking_weak_lists       (marked_p, mark_object) > 0)
-    ;
+  {
+    int did_mark;
+    /* Need to iterate until there's nothing more to mark, in case
+       of chains of mark dependencies. */
+    do
+      {
+        did_mark = 0;
+       did_mark += !!finish_marking_weak_hashtables (marked_p, mark_object);
+       did_mark += !!finish_marking_weak_lists (marked_p, mark_object);
+      }
+    while (did_mark);
+  }
 
   /* And prune (this needs to be called after everything else has been
      marked and before we do any sweeping). */
   /* #### this is somewhat ad-hoc and should probably be an object
      method */
-  prune_weak_hash_tables (marked_p);
+  prune_weak_hashtables (marked_p);
   prune_weak_lists (marked_p);
   prune_specifiers (marked_p);
   prune_syntax_tables (marked_p);
@@ -3515,6 +4608,15 @@ garbage_collect_1 (void)
   return;
 }
 
+#ifdef EMACS_BTL
+ /* This isn't actually called.  BTL recognizes the stack frame of the top
+    of the garbage collector by noting that PC is between &garbage_collect_1
+    and &BTL_after_garbage_collect_1_stub.  So this fn must be right here.
+    There's not any other way to know the address of the end of a function.
+  */
+void BTL_after_garbage_collect_1_stub () { abort (); }
+#endif /* EMACS_BTL */
+
 /* Debugging aids.  */
 
 static Lisp_Object
@@ -3526,12 +4628,13 @@ gc_plist_hack (CONST char *name, int value, Lisp_Object tail)
   return cons3 (intern (name), make_int (value), tail);
 }
 
-#define HACK_O_MATIC(type, name, pl) do {                              \
-  int s = 0;                                                           \
-  struct type##_block *x = current_##type##_block;                     \
-  while (x) { s += sizeof (*x) + MALLOC_OVERHEAD; x = x->prev; }       \
-  (pl) = gc_plist_hack ((name), s, (pl));                              \
-} while (0)
+#define HACK_O_MATIC(type, name, pl)                                   \
+  {                                                                    \
+    int s = 0;                                                         \
+    struct type##_block *x = current_##type##_block;                   \
+    while (x) { s += sizeof (*x) + MALLOC_OVERHEAD; x = x->prev; }     \
+    (pl) = gc_plist_hack ((name), s, (pl));                            \
+  }
 
 DEFUN ("garbage-collect", Fgarbage_collect, 0, 0, "", /*
 Reclaim storage for Lisp objects no longer needed.
@@ -3548,7 +4651,12 @@ Garbage collection happens automatically if you cons more than
 {
   Lisp_Object pl = Qnil;
   int i;
+#ifdef LRECORD_VECTOR
   int gc_count_vector_total_size = 0;
+#endif
+
+  if (purify_flag && pure_lossage)
+    return Qnil;
 
   garbage_collect_1 ();
 
@@ -3561,11 +4669,12 @@ Garbage collection happens automatically if you cons more than
           char buf [255];
           CONST char *name = lrecord_implementations_table[i]->name;
          int len = strlen (name);
+#ifdef LRECORD_VECTOR
          /* save this for the FSFmacs-compatible part of the summary */
-         if (i == *lrecord_vector.lrecord_type_index)
+         if (i == *lrecord_vector[0].lrecord_type_index)
            gc_count_vector_total_size =
              lcrecord_stats[i].bytes_in_use + lcrecord_stats[i].bytes_freed;
-
+#endif
           sprintf (buf, "%s-storage", name);
           pl = gc_plist_hack (buf, lcrecord_stats[i].bytes_in_use, pl);
          /* Okay, simple pluralization check for `symbol-value-varalias' */
@@ -3624,6 +4733,13 @@ Garbage collection happens automatically if you cons more than
   pl = gc_plist_hack ("compiled-functions-used",
                      gc_count_num_compiled_function_in_use, pl);
 
+#ifndef LRECORD_VECTOR
+  pl = gc_plist_hack ("vector-storage", gc_count_vector_storage, pl);
+  pl = gc_plist_hack ("vectors-total-length",
+                      gc_count_vector_total_size, pl);
+  pl = gc_plist_hack ("vectors-used", gc_count_num_vector_used, pl);
+#endif
+
   pl = gc_plist_hack ("bit-vector-storage", gc_count_bit_vector_storage, pl);
   pl = gc_plist_hack ("bit-vectors-total-length",
                       gc_count_bit_vector_total_size, pl);
@@ -3830,33 +4946,52 @@ init_alloc_once_early (void)
 {
   int iii;
 
+#ifdef PURESTAT
+  for (iii = 0; iii < countof (purestats); iii++)
+    {
+      if (! purestats[iii]) continue;
+      purestats[iii]->nobjects = 0;
+      purestats[iii]->nbytes = 0;
+    }
+  purecopying_for_bytecode = 0;
+#endif /* PURESTAT */
+
   last_lrecord_type_index_assigned = -1;
   for (iii = 0; iii < countof (lrecord_implementations_table); iii++)
     {
       lrecord_implementations_table[iii] = 0;
     }
 
+#ifdef USE_INDEXED_LRECORD_IMPLEMENTATION
   /*
-   * All the staticly
+   * If USE_INDEXED_LRECORD_IMPLEMENTATION is defined, all the staticly
    * defined subr lrecords were initialized with lheader->type == 0.
    * See subr_lheader_initializer in lisp.h.  Force type index 0 to be
    * assigned to lrecord_subr so that those predefined indexes match
    * reality.
    */
-  lrecord_type_index (&lrecord_subr);
-  assert (*(lrecord_subr.lrecord_type_index) == 0);
+  lrecord_type_index (lrecord_subr);
+  assert (*(lrecord_subr[0].lrecord_type_index) == 0);
   /*
    * The same is true for symbol_value_forward objects, except the
    * type is 1.
    */
-  lrecord_type_index (&lrecord_symbol_value_forward);
-  assert (*(lrecord_symbol_value_forward.lrecord_type_index) == 1);
+  lrecord_type_index (lrecord_symbol_value_forward);
+  assert (*(lrecord_symbol_value_forward[0].lrecord_type_index) == 1);
+#endif /* USE_INDEXED_LRECORD_IMPLEMENTATION */
+
+  symbols_initialized = 0;
 
   gc_generation_number[0] = 0;
   /* purify_flag 1 is correct even if CANNOT_DUMP.
    * loadup.el will set to nil at end. */
   purify_flag = 1;
+  pure_bytes_used = 0;
+  pure_lossage = 0;
   breathing_space = 0;
+#ifndef LRECORD_VECTOR
+  XSETINT (all_vectors, 0); /* Qzero may not be set yet. */
+#endif
   XSETINT (all_bit_vectors, 0); /* Qzero may not be set yet. */
   XSETINT (Vgc_message, 0);
   all_lcrecords = 0;
@@ -3910,8 +5045,6 @@ init_alloc_once_early (void)
 #endif /* ERROR_CHECK_TYPECHECK */
 }
 
-int pure_bytes_used = 0;
-
 void
 reinit_alloc (void)
 {
@@ -3991,7 +5124,7 @@ Length (in stack frames) of short backtrace printed out by `debug-allocation'.
 
   DEFVAR_BOOL ("purify-flag", &purify_flag /*
 Non-nil means loading Lisp code in order to dump an executable.
-This means that certain objects should be allocated in readonly space.
+This means that certain objects should be allocated in shared (pure) space.
 */ );
 
   DEFVAR_LISP ("pre-gc-hook", &Vpre_gc_hook /*
@@ -4017,8 +5150,9 @@ window system and `gc-pointer-glyph' specifies a value (i.e. a pointer
 image instance) in the domain of the selected frame, the mouse pointer
 will change instead of this message being printed.
 */ );
-  Vgc_message = make_string_nocopy ((CONST Bufbyte *) gc_default_message,
-                                   countof (gc_default_message) - 1);
+  Vgc_message = make_pure_string ((CONST Bufbyte *) gc_default_message,
+                                 countof (gc_default_message) - 1,
+                                 Qnil, 1);
 
   DEFVAR_LISP ("gc-pointer-glyph", &Vgc_pointer_glyph /*
 Pointer glyph used to indicate that a garbage collection is in progress.