OSDN Git Service

Remove dead endif so x86-64 compilation works.
[pf3gnuchains/gcc-fork.git] / boehm-gc / include / private / gcconfig.h
index cf1b8eb..8fd2041 100644 (file)
 #    define NETBSD
 # endif
 
+/* And one for OpenBSD: */
+# if defined(__OpenBSD__)
+#    define OPENBSD
+# endif
+
+/* And one for FreeBSD: */
+# if defined(__FreeBSD__)
+#    define FREEBSD
+# endif
+
 /* Determine the machine type: */
+# if defined(__XSCALE__)
+#    define ARM32
+#    if !defined(LINUX)
+#      define NOSYS
+#      define mach_type_known
+#    endif
+# endif
 # if defined(sun) && defined(mc68000)
 #    define M68K
 #    define SUNOS4
 #    define HP
 #    define mach_type_known
 # endif
-# if defined(__OpenBSD__) && defined(m68k)
+# if defined(OPENBSD) && defined(m68k)
 #    define M68K
-#    define OPENBSD
 #    define mach_type_known
 # endif
-# if defined(__OpenBSD__) && defined(__sparc__)
+# if defined(OPENBSD) && defined(__sparc__)
 #    define SPARC
-#    define OPENBSD
 #    define mach_type_known
 # endif
-# if defined(__NetBSD__) && defined(m68k)
+# if defined(NETBSD) && defined(m68k)
 #    define M68K
 #    define mach_type_known
 # endif
-# if defined(__NetBSD__) && defined(__powerpc__)
+# if defined(NETBSD) && defined(__powerpc__)
 #    define POWERPC
 #    define mach_type_known
 # endif
-# if defined(__NetBSD__) && defined(__arm32__)
+# if defined(NETBSD) && defined(__arm32__)
 #    define ARM32
 #    define mach_type_known
 # endif
 #    endif
 #    define mach_type_known
 # endif
-# if defined(mips) || defined(__mips)
+# if defined(mips) || defined(__mips) || defined(_mips)
 #    define MIPS
-#    if !defined(LINUX)
+#    if defined(nec_ews) || defined(_nec_ews)
+#      define EWS4800
+#    endif
+#    if !defined(LINUX) && !defined(EWS4800)
 #      if defined(ultrix) || defined(__ultrix) || defined(__NetBSD__)
 #       define ULTRIX
 #      else
 #   endif
 #   define mach_type_known
 # endif
+# if defined(__ia64) && defined(_HPUX_SOURCE)
+#   define IA64
+#   define HPUX
+#   define mach_type_known
+# endif
 # if defined(__BEOS__) && defined(_X86_)
 #    define I386
 #    define BEOS
 #    define I386
 #    define mach_type_known
 # endif
+# if defined(LINUX) && defined(__x86_64__)
+#    define X86_64
+#    define mach_type_known
+# endif
 # if defined(LINUX) && (defined(__ia64__) || defined(__ia64))
 #    define IA64
 #    define mach_type_known
 # endif
-# if defined(LINUX) && defined(powerpc)
+# if defined(LINUX) && (defined(powerpc) || defined(__powerpc__))
 #    define POWERPC
 #    define mach_type_known
 # endif
 # endif
 # if defined(__alpha) || defined(__alpha__)
 #   define ALPHA
-#   if !defined(LINUX) && !defined(NETBSD)
+#   if !defined(LINUX) && !defined(NETBSD) && !defined(OPENBSD) && !defined(FREEBSD)
 #     define OSF1      /* a.k.a Digital Unix */
 #   endif
 #   define mach_type_known
 #   define OPENBSD
 #   define mach_type_known
 # endif
-# if defined(__FreeBSD__) && (defined(i386) || defined(__i386__))
+# if defined(FREEBSD) && (defined(i386) || defined(__i386__))
 #   define I386
-#   define FREEBSD
 #   define mach_type_known
 # endif
 # if defined(__NetBSD__) && (defined(i386) || defined(__i386__))
 #    define S370
 #    define mach_type_known
 # endif
+# if defined(__GNU__)
+#   if defined(__i386__)
+/* The Debian Hurd running on generic PC */  
+#     define  HURD
+#     define  I386
+#     define  mach_type_known
+#    endif 
+# endif
 
 /* Feel free to add more clauses here */
 
                     /*            RS6000     ==> IBM RS/6000 AIX3.X    */
                     /*            RT         ==> IBM PC/RT             */
                     /*            HP_PA      ==> HP9000/700 & /800     */
-                    /*                           HP/UX, LINUX                  */
+                    /*                           HP/UX, LINUX          */
                    /*             SPARC      ==> SPARC v7/v8/v9        */
                    /*                  (SUNOS4, SUNOS5, LINUX,         */
                    /*                   DRSNX variants)                */
                    /*                  running Amdahl UTS4             */
                    /*                  or a 390 running LINUX          */
                    /*             ARM32      ==> Intel StrongARM       */
-                   /*             IA64       ==> Intel IA64            */
+                   /*             IA64       ==> Intel IPF             */
                    /*                            (e.g. Itanium)        */
+                   /*                  (LINUX and HPUX)                */
+                   /*             IA64_32    ==> IA64 w/32 bit ABI     */
+                   /*                  (HPUX)                          */
                    /*             SH         ==> Hitachi SuperH        */
                    /*                  (LINUX & MSWINCE)               */
+                   /*             X86_64     ==> AMD x86-64            */
 
 
 /*
  * On UNIX systems, the collector will scan the area between DATASTART
  * and DATAEND for root pointers.
  *
- * DATAEND, if not &end.
+ * DATAEND, if not `end' where `end' is defined as ``extern int end[];''.
+ * RTH suggests gaining access to linker script synth'd values with
+ * this idiom instead of `&end' where `end' is defined as ``extern int end;'' .
+ * Otherwise, ``GCC will assume these are in .sdata/.sbss'' and it will, e.g.,
+ * cause failures on alpha*-*-* with ``-msmall-data or -fpic'' or mips-*-*
+ * without any special options.
  *
  * ALIGN_DOUBLE of GC_malloc should return blocks aligned to twice
  * the pointer size.
  * word stores of 0 are used instead.
  */
 
+/* If we are using a recent version of gcc, we can use __builtin_unwind_init()
+ * to push the relevant registers onto the stack.  This generally makes
+ * USE_GENERIC_PUSH_REGS the preferred approach for marking from registers.
+ */
+# if defined(__GNUC__) && ((__GNUC__ >= 3) || \
+                          (__GNUC__ == 2 && __GNUC_MINOR__ >= 8))
+#   define HAVE_BUILTIN_UNWIND_INIT
+# endif
 
 # define STACK_GRAN 0x1000000
 # ifdef M68K
 #   ifdef OPENBSD
 #      define OS_TYPE "OPENBSD"
 #      define HEURISTIC2
-       extern char etext;
-#      define DATASTART ((ptr_t)(&etext))
+       extern char etext[];
+#      define DATASTART ((ptr_t)(etext))
 #   endif
 #   ifdef NETBSD
 #      define OS_TYPE "NETBSD"
 #      define HEURISTIC2
-       extern char etext;
-#      define DATASTART ((ptr_t)(&etext))
+       extern char etext[];
+#      define DATASTART ((ptr_t)(etext))
 #   endif
 #   ifdef LINUX
 #       define OS_TYPE "LINUX"
 #       define STACKBOTTOM ((ptr_t)0xf0000000)
-#       define MPROTECT_VDB
+/* #       define MPROTECT_VDB - Reported to not work  9/17/01 */
 #       ifdef __ELF__
 #            define DYNAMIC_LOADING
 #           include <features.h>
                              /* contain large read-only data tables    */
                              /* that we'd rather not scan.             */
 #           endif /* !GLIBC2 */
-             extern int _end;
-#            define DATAEND (&_end)
+             extern int _end[];
+#            define DATAEND (_end)
 #       else
-             extern int etext;
-#            define DATASTART ((ptr_t)((((word) (&etext)) + 0xfff) & ~0xfff))
+             extern int etext[];
+#            define DATASTART ((ptr_t)((((word) (etext)) + 0xfff) & ~0xfff))
 #       endif
 #   endif
 #   ifdef SUNOS4
 #      define OS_TYPE "SUNOS4"
-       extern char etext;
-#      define DATASTART ((ptr_t)((((word) (&etext)) + 0x1ffff) & ~0x1ffff))
+       extern char etext[];
+#      define DATASTART ((ptr_t)((((word) (etext)) + 0x1ffff) & ~0x1ffff))
 #      define HEURISTIC1       /* differs      */
 #      define DYNAMIC_LOADING
 #   endif
 #   ifdef HP
 #      define OS_TYPE "HP"
-       extern char etext;
-#       define DATASTART ((ptr_t)((((word) (&etext)) + 0xfff) & ~0xfff))
+       extern char etext[];
+#       define DATASTART ((ptr_t)((((word) (etext)) + 0xfff) & ~0xfff))
 #       define STACKBOTTOM ((ptr_t) 0xffeffffc)
                              /* empirically determined.  seems to work. */
 #      include <unistd.h>
 #   endif
 #   ifdef SYSV
 #      define OS_TYPE "SYSV"
-       extern etext;
-#      define DATASTART ((ptr_t)((((word) (&etext)) + 0x3fffff) \
+       extern etext[];
+#      define DATASTART ((ptr_t)((((word) (etext)) + 0x3fffff) \
                                   & ~0x3fffff) \
-                                 +((word)&etext & 0x1fff))
+                                 +((word)etext & 0x1fff))
        /* This only works for shared-text binaries with magic number 0413.
           The other sorts of SysV binaries put the data at the end of the text,
-          in which case the default of &etext would work.  Unfortunately,
+          in which case the default of etext would work.  Unfortunately,
           handling both would require having the magic-number available.
                                -- Parag
           */
 #     define STACK_GRAN 0x10000000
        /* Stack usually starts at 0x80000000 */
 #     define LINUX_DATA_START
-      extern int _end;
-#     define DATAEND (&_end)
+      extern int _end[];
+#     define DATAEND (_end)
 #   endif
 #   ifdef MACOSX
       /* There are reasons to suspect this may not be reliable.        */
 #     define ALIGNMENT 4
 #     define OS_TYPE "NETBSD"
 #     define HEURISTIC2
-      extern char etext;
+      extern char etext[];
 #     define DATASTART GC_data_start
 #     define DYNAMIC_LOADING
 #   endif
 #   ifdef NOSYS
 #     define ALIGNMENT 4
 #     define OS_TYPE "NOSYS"
-      extern void __end, __dso_handle;
-#     define DATASTART (&__dso_handle)  /* OK, that's ugly.  */
-#     define DATAEND (&__end)
+      extern void __end[], __dso_handle[];
+#     define DATASTART (__dso_handle)  /* OK, that's ugly.  */
+#     define DATAEND (__end)
        /* Stack starts at 0xE0000000 for the simulator.  */
 #     undef STACK_GRAN
 #     define STACK_GRAN 0x10000000
 # ifdef VAX
 #   define MACH_TYPE "VAX"
 #   define ALIGNMENT 4 /* Pointers are longword aligned by 4.2 C compiler */
-    extern char etext;
-#   define DATASTART ((ptr_t)(&etext))
+    extern char etext[];
+#   define DATASTART ((ptr_t)(etext))
 #   ifdef BSD
 #      define OS_TYPE "BSD"
 #      define HEURISTIC1
 #   define MACH_TYPE "SPARC"
 #   if defined(__arch64__) || defined(__sparcv9)
 #     define ALIGNMENT 8
+#     define CPP_WORDSZ 64
+#     define ELF_CLASS ELFCLASS64
 #   else
 #     define ALIGNMENT 4       /* Required by hardware */
+#     define CPP_WORDSZ 32
 #   endif
 #   define ALIGN_DOUBLE
 #   ifdef SUNOS5
 #      define OS_TYPE "SUNOS5"
-       extern int _etext;
-       extern int _end;
+       extern int _etext[];
+       extern int _end[];
        extern char * GC_SysVGetDataStart();
-#       define DATASTART (ptr_t)GC_SysVGetDataStart(0x10000, &_etext)
-#      define DATAEND (&_end)
-#      ifndef USE_MMAP
+#       define DATASTART (ptr_t)GC_SysVGetDataStart(0x10000, _etext)
+#      define DATAEND (_end)
+#      if !defined(USE_MMAP) && defined(REDIRECT_MALLOC)
 #          define USE_MMAP
+           /* Otherwise we now use calloc.  Mmap may result in the     */
+           /* heap interleaved with thread stacks, which can result in */
+           /* excessive blacklisting.  Sbrk is unusable since it       */
+           /* doesn't interact correctly with the system malloc.       */
 #      endif
 #       ifdef USE_MMAP
 #         define HEAP_START (ptr_t)0x40000000
 #      define OS_TYPE "SUNOS4"
        /* [If you have a weak stomach, don't read this.]               */
        /* We would like to use:                                        */
-/* #       define DATASTART ((ptr_t)((((word) (&etext)) + 0x1fff) & ~0x1fff)) */
+/* #       define DATASTART ((ptr_t)((((word) (etext)) + 0x1fff) & ~0x1fff)) */
        /* This fails occasionally, due to an ancient, but very         */
-       /* persistent ld bug.  &etext is set 32 bytes too high.         */
+       /* persistent ld bug.  etext is set 32 bytes too high.          */
        /* We instead read the text segment size from the a.out         */
        /* header, which happens to be mapped into our address space    */
        /* at the start of the text segment.  The detective work here   */
 #      define DYNAMIC_LOADING
 #   endif
 #   ifdef DRSNX
-#       define CPP_WORDSZ 32
 #      define OS_TYPE "DRSNX"
        extern char * GC_SysVGetDataStart();
-       extern int etext;
-#       define DATASTART (ptr_t)GC_SysVGetDataStart(0x10000, &etext)
+       extern int etext[];
+#       define DATASTART (ptr_t)GC_SysVGetDataStart(0x10000, etext)
 #      define MPROTECT_VDB
 #       define STACKBOTTOM ((ptr_t) 0xdfff0000)
 #      define DYNAMIC_LOADING
 #     else
           Linux Sparc/a.out not supported
 #     endif
-      extern int _end;
-      extern int _etext;
-#     define DATAEND (&_end)
+      extern int _end[];
+      extern int _etext[];
+#     define DATAEND (_end)
 #     define SVR4
 #     ifdef __arch64__
-#       define STACKBOTTOM ((ptr_t) 0x80000000000ULL)
-#      define DATASTART (ptr_t)GC_SysVGetDataStart(0x100000, &_etext)
-#      define CPP_WORDSZ 64
+       /* libc_stack_end is not set reliably for sparc64 */
+#       define STACKBOTTOM ((ptr_t) 0x80000000000)
+#      define DATASTART (ptr_t)GC_SysVGetDataStart(0x100000, _etext)
 #     else
-#       define STACKBOTTOM ((ptr_t) 0xf0000000)
-#      define DATASTART (ptr_t)GC_SysVGetDataStart(0x10000, &_etext)
+#       define LINUX_STACKBOTTOM
+#      define DATASTART (ptr_t)GC_SysVGetDataStart(0x10000, _etext)
 #     endif
 #   endif
 #   ifdef OPENBSD
 #     define OS_TYPE "OPENBSD"
 #     define STACKBOTTOM ((ptr_t) 0xf8000000)
-      extern int etext;
-#     define DATASTART ((ptr_t)(&etext))
+      extern int etext[];
+#     define DATASTART ((ptr_t)(etext))
 #   endif
 #   ifdef NETBSD
 #     define OS_TYPE "NETBSD"
 #      define DATASTART GC_data_start
 #      define DYNAMIC_LOADING
 #     else
-       extern char etext;
-#      define DATASTART ((ptr_t)(&etext))
+       extern char etext[];
+#      define DATASTART ((ptr_t)(etext))
 #     endif
 #   endif
 # endif
 #     define ALIGN_DOUBLE /* Not strictly necessary, but may give speed   */
                          /* improvement on Pentiums.                     */
 #   endif
+#   ifdef HAVE_BUILTIN_UNWIND_INIT
+#      define USE_GENERIC_PUSH_REGS
+#   endif
 #   ifdef SEQUENT
 #      define OS_TYPE "SEQUENT"
-       extern int etext;
-#       define DATASTART ((ptr_t)((((word) (&etext)) + 0xfff) & ~0xfff))
+       extern int etext[];
+#       define DATASTART ((ptr_t)((((word) (etext)) + 0xfff) & ~0xfff))
 #       define STACKBOTTOM ((ptr_t) 0x3ffff000) 
 #   endif
 #   ifdef BEOS
 #     define OS_TYPE "BEOS"
 #     include <OS.h>
 #     define GETPAGESIZE() B_PAGE_SIZE
-      extern int etext;
-#     define DATASTART ((ptr_t)((((word) (&etext)) + 0xfff) & ~0xfff))
+      extern int etext[];
+#     define DATASTART ((ptr_t)((((word) (etext)) + 0xfff) & ~0xfff))
 #   endif
 #   ifdef SUNOS5
 #      define OS_TYPE "SUNOS5"
-       extern int etext, _start;
+        extern int _etext[], _end[];
        extern char * GC_SysVGetDataStart();
-#       define DATASTART GC_SysVGetDataStart(0x1000, &etext)
-/*     # define STACKBOTTOM ((ptr_t)(&_start)) worked through 2.7,     */
+#       define DATASTART GC_SysVGetDataStart(0x1000, _etext)
+#      define DATAEND (_end)
+/*     # define STACKBOTTOM ((ptr_t)(_start)) worked through 2.7,      */
 /*      but reportedly breaks under 2.8.  It appears that the stack    */
 /*     base is a property of the executable, so this should not break  */
 /*     old executables.                                                */
 /*     HEURISTIC2 probably works, but this appears to be preferable.   */
-#       include <sys/vmparam.h>
+#       include <sys/vm.h>
 #      define STACKBOTTOM USRSTACK
-/** At least in Solaris 2.5, PROC_VDB gives wrong values for dirty bits. */
-/*#    define PROC_VDB*/
+/* At least in Solaris 2.5, PROC_VDB gives wrong values for dirty bits. */
+/* It appears to be fixed in 2.8 and 2.9.                              */
+#      ifdef SOLARIS25_PROC_VDB_BUG_FIXED
+#        define PROC_VDB
+#      endif
 #      define DYNAMIC_LOADING
-#      ifndef USE_MMAP
+#      if !defined(USE_MMAP) && defined(REDIRECT_MALLOC)
 #          define USE_MMAP
+           /* Otherwise we now use calloc.  Mmap may result in the     */
+           /* heap interleaved with thread stacks, which can result in */
+           /* excessive blacklisting.  Sbrk is unusable since it       */
+           /* doesn't interact correctly with the system malloc.       */
 #      endif
 #       ifdef USE_MMAP
 #         define HEAP_START (ptr_t)0x40000000
 #   endif
 #   ifdef SCO
 #      define OS_TYPE "SCO"
-       extern int etext;
-#      define DATASTART ((ptr_t)((((word) (&etext)) + 0x3fffff) \
+       extern int etext[];
+#      define DATASTART ((ptr_t)((((word) (etext)) + 0x3fffff) \
                                  & ~0x3fffff) \
-                                +((word)&etext & 0xfff))
+                                +((word)etext & 0xfff))
 #      define STACKBOTTOM ((ptr_t) 0x7ffffffc)
 #   endif
 #   ifdef SCO_ELF
 #       define OS_TYPE "SCO_ELF"
-        extern int etext;
-#       define DATASTART ((ptr_t)(&etext))
+        extern int etext[];
+#       define DATASTART ((ptr_t)(etext))
 #       define STACKBOTTOM ((ptr_t) 0x08048000)
 #       define DYNAMIC_LOADING
 #      define ELF_CLASS ELFCLASS32
 #   endif
 #   ifdef LINUX
+#      ifndef __GNUC__
+         /* The Intel compiler doesn't like inline assembly */
+#        define USE_GENERIC_PUSH_REGS
+#      endif
 #      define OS_TYPE "LINUX"
 #       define LINUX_STACKBOTTOM
 #      if 0
          /* with 2GB physical memory will usually move the user        */
          /* address space limit, and hence initial SP to 0x80000000.   */
 #       endif
-#       if !defined(LINUX_THREADS) || !defined(REDIRECT_MALLOC)
+#       if !defined(GC_LINUX_THREADS) || !defined(REDIRECT_MALLOC)
 #          define MPROTECT_VDB
 #      else
            /* We seem to get random errors in incremental mode,        */
 #       ifdef __ELF__
 #            define DYNAMIC_LOADING
 #           ifdef UNDEFINED    /* includes ro data */
-              extern int _etext;
-#              define DATASTART ((ptr_t)((((word) (&_etext)) + 0xfff) & ~0xfff))
+              extern int _etext[];
+#              define DATASTART ((ptr_t)((((word) (_etext)) + 0xfff) & ~0xfff))
 #           endif
 #           include <features.h>
 #           if defined(__GLIBC__) && __GLIBC__ >= 2
                              /* contain large read-only data tables    */
                              /* that we'd rather not scan.             */
 #           endif
-            extern int _end;
-#           define DATAEND (&_end)
+            extern int _end[];
+#           define DATAEND (_end)
 #      else
-            extern int etext;
-#            define DATASTART ((ptr_t)((((word) (&etext)) + 0xfff) & ~0xfff))
+            extern int etext[];
+#            define DATASTART ((ptr_t)((((word) (etext)) + 0xfff) & ~0xfff))
 #       endif
 #      ifdef USE_I686_PREFETCH
 #        define PREFETCH(x) \
 #   endif
 #   ifdef CYGWIN32
 #       define OS_TYPE "CYGWIN32"
-          extern int _data_start__;
-          extern int _data_end__;
-          extern int _bss_start__;
-          extern int _bss_end__;
+          extern int _data_start__[];
+          extern int _data_end__[];
+          extern int _bss_start__[];
+          extern int _bss_end__[];
        /* For binutils 2.9.1, we have                  */
        /*      DATASTART   = _data_start__             */
        /*      DATAEND     = _bss_end__                */
        /* minumum/maximum of the two.                  */
 #      define MAX(x,y) ((x) > (y) ? (x) : (y))
 #      define MIN(x,y) ((x) < (y) ? (x) : (y))
-#       define DATASTART ((ptr_t) MIN(&_data_start__, &_bss_start__))
-#       define DATAEND  ((ptr_t) MAX(&_data_end__, &_bss_end__))
+#       define DATASTART ((ptr_t) MIN(_data_start__, _bss_start__))
+#       define DATAEND  ((ptr_t) MAX(_data_end__, _bss_end__))
 #      undef STACK_GRAN
 #       define STACK_GRAN 0x10000
 #       define HEURISTIC1
 #   ifdef DJGPP
 #       define OS_TYPE "DJGPP"
 #       include "stubinfo.h"
-        extern int etext;
+        extern int etext[];
         extern int _stklen;
         extern int __djgpp_stack_limit;
-#       define DATASTART ((ptr_t)((((word) (&etext)) + 0x1ff) & ~0x1ff))
+#       define DATASTART ((ptr_t)((((word) (etext)) + 0x1ff) & ~0x1ff))
 /* #       define STACKBOTTOM ((ptr_t)((word) _stubinfo + _stubinfo->size \
                                                      + _stklen)) */
 #       define STACKBOTTOM ((ptr_t)((word) __djgpp_stack_limit + _stklen))
 #   endif
 #   ifdef FREEBSD
 #      define OS_TYPE "FREEBSD"
-#      define MPROTECT_VDB
+#      ifndef GC_FREEBSD_THREADS
+#          define MPROTECT_VDB
+#      endif
+#      define SIG_SUSPEND SIGUSR1
+#      define SIG_THR_RESTART SIGUSR2
 #      define FREEBSD_STACKBOTTOM
+#      ifdef __ELF__
+#          define DYNAMIC_LOADING
+#      endif
+/* Handle unmapped hole i386*-*-freebsd[45]* may put between etext and edata. */
+       extern char etext[];
+       extern char edata[];
+       extern char end[];
+#      define NEED_FIND_LIMIT
+#      define DATASTART ((ptr_t)(etext))
+#      define MIN(x,y) ((x) < (y) ? (x) : (y))
+#      define DATAEND (MIN (GC_find_limit (DATASTART, TRUE), DATASTART2))
+#      define DATASTART2 ((ptr_t)(edata))
+#      define DATAEND2 ((ptr_t)(end))
 #   endif
 #   ifdef NETBSD
 #      define OS_TYPE "NETBSD"
+#      ifdef __ELF__
+#          define DYNAMIC_LOADING
+#      endif
 #   endif
 #   ifdef THREE86BSD
 #      define OS_TYPE "THREE86BSD"
 #   ifdef BSDI
 #      define OS_TYPE "BSDI"
 #   endif
-#   if defined(OPENBSD) || defined(NETBSD) || defined(FREEBSD) \
+#   if defined(OPENBSD) || defined(NETBSD) \
         || defined(THREE86BSD) || defined(BSDI)
 #      define HEURISTIC2
-       extern char etext;
-#      define DATASTART ((ptr_t)(&etext))
+       extern char etext[];
+#      define DATASTART ((ptr_t)(etext))
 #   endif
 #   ifdef NEXT
 #      define OS_TYPE "NEXT"
 #     define DATASTART ((ptr_t) &__nullarea)
 #     define DATAEND ((ptr_t) &_end)
 #   endif
+#   ifdef HURD
+#     define OS_TYPE "HURD"
+#     define STACK_GROWS_DOWN
+#     define HEURISTIC2
+      extern int  __data_start[];
+#     define DATASTART ( (ptr_t) (__data_start))
+      extern int   _end[];
+#     define DATAEND ( (ptr_t) (_end))
+/* #     define MPROTECT_VDB  Not quite working yet? */
+#     define DYNAMIC_LOADING
+#   endif
 # endif
 
 # ifdef NS32K
 
 # ifdef MIPS
 #   define MACH_TYPE "MIPS"
-/* #   define STACKBOTTOM ((ptr_t)0x7fff8000)  sometimes also works.  */
 #   ifdef LINUX
       /* This was developed for a linuxce style platform.  Probably    */
       /* needs to be tweaked for workstation class machines.           */
 #     define OS_TYPE "LINUX"
-      extern int __data_start;
-#     define DATASTART ((ptr_t)(&__data_start))
+#     define DYNAMIC_LOADING
+      extern int _end[];
+#     define DATAEND (_end)
+      extern int __data_start[];
+#     define DATASTART ((ptr_t)(__data_start))
 #     define ALIGNMENT 4
-#     define USE_GENERIC_PUSH_REGS 1
-#     define STACKBOTTOM 0x80000000
-       /* In many cases, this should probably use LINUX_STACKBOTTOM    */
-       /* instead. But some kernel versions seem to give the wrong     */
-       /* value from /proc.                                            */
+#     define USE_GENERIC_PUSH_REGS
+#     define LINUX_STACKBOTTOM
 #   endif /* Linux */
+#   ifdef EWS4800
+#      define HEURISTIC2
+#      if defined(_MIPS_SZPTR) && (_MIPS_SZPTR == 64)
+         extern int _fdata[], _end[];
+#        define DATASTART ((ptr_t)_fdata)
+#        define DATAEND ((ptr_t)_end)
+#        define CPP_WORDSZ _MIPS_SZPTR
+#        define ALIGNMENT (_MIPS_SZPTR/8)
+#      else
+         extern int etext[], edata[], end[];
+         extern int _DYNAMIC_LINKING[], _gp[];
+#        define DATASTART ((ptr_t)((((word)etext + 0x3ffff) & ~0x3ffff) \
+               + ((word)etext & 0xffff)))
+#        define DATAEND (edata)
+#        define DATASTART2 (_DYNAMIC_LINKING \
+               ? (ptr_t)(((word)_gp + 0x8000 + 0x3ffff) & ~0x3ffff) \
+               : (ptr_t)edata)
+#        define DATAEND2 (end)
+#        define ALIGNMENT 4
+#      endif
+#      define OS_TYPE "EWS4800"
+#      define USE_GENERIC_PUSH_REGS 1
+#   endif
 #   ifdef ULTRIX
 #      define HEURISTIC2
 #       define DATASTART (ptr_t)0x10000000
 #   endif
 #   ifdef IRIX5
 #      define HEURISTIC2
-        extern int _fdata;
-#       define DATASTART ((ptr_t)(&_fdata))
+        extern int _fdata[];
+#       define DATASTART ((ptr_t)(_fdata))
 #       ifdef USE_MMAP
 #         define HEAP_START (ptr_t)0x30000000
 #       else
 #     define ALIGNMENT 4
 #     define OS_TYPE "NETBSD"
 #     define HEURISTIC2
-#     define USE_GENERIC_PUSH_REGS 1
+#     define USE_GENERIC_PUSH_REGS
 #     ifdef __ELF__
-        extern int etext;
+        extern int etext[];
 #       define DATASTART GC_data_start
 #       define NEED_FIND_LIMIT
 #       define DYNAMIC_LOADING
 
 # ifdef RS6000
 #   define MACH_TYPE "RS6000"
-#   define ALIGNMENT 4
-#   define DATASTART ((ptr_t)0x20000000)
+#   ifdef __64BIT__
+#     define ALIGNMENT 8
+#     define CPP_WORDSZ 64
+#   else
+#     define ALIGNMENT 4
+#     define CPP_WORDSZ 32
+#   endif
+    extern int _data[], _end[];
+#   define DATASTART ((ptr_t)((ulong)_data))
+#   define DATAEND ((ptr_t)((ulong)_end))
     extern int errno;
 #   define STACKBOTTOM ((ptr_t)((ulong)&errno))
+#   define USE_GENERIC_PUSH_REGS
 #   define DYNAMIC_LOADING
        /* For really old versions of AIX, this may have to be removed. */
 # endif
 
 # ifdef HP_PA
 #   define MACH_TYPE "HP_PA"
-#   define OS_TYPE "HPUX"
 #   ifdef __LP64__
 #     define CPP_WORDSZ 64
 #     define ALIGNMENT 8
 #     define ALIGNMENT 4
 #     define ALIGN_DOUBLE
 #   endif
-#   if !defined(GC_HPUX_THREADS) && !defined(HPUX_THREADS) \
-       && !defined(GC_LINUX_THREADS) && !defined(LINUX_THREADS)
+#   if !defined(GC_HPUX_THREADS) && !defined(GC_LINUX_THREADS)
 #     ifndef LINUX /* For now. */
 #       define MPROTECT_VDB
 #     endif
 #   endif
 #   define STACK_GROWS_UP
 #   ifdef HPUX
-      extern int __data_start;
-#     define DATASTART ((ptr_t)(&__data_start))
+#     define OS_TYPE "HPUX"
+      extern int __data_start[];
+#     define DATASTART ((ptr_t)(__data_start))
 #     if 0
        /* The following appears to work for 7xx systems running HP/UX  */
        /* 9.xx Furthermore, it might result in much faster             */
 #     define LINUX_STACKBOTTOM
 #     define DYNAMIC_LOADING
 #     define LINUX_DATA_START
-      extern int _end;
-#     define DATAEND (&_end)
+      extern int _end[];
+#     define DATAEND (_end)
 #   endif /* LINUX */
 # endif /* HP_PA */
 
 # ifdef ALPHA
 #   define MACH_TYPE "ALPHA"
 #   define ALIGNMENT 8
-#   define USE_GENERIC_PUSH_REGS
-    /* Gcc and probably the DEC/Compaq compiler spill pointers to preserved */
-    /* fp registers in some cases when the target is a 21264.  The assembly */
-    /* code doesn't handle that yet, and version dependencies make that a   */
-    /* bit tricky.  Do the easy thing for now.                             */
 #   ifdef NETBSD
 #      define OS_TYPE "NETBSD"
 #      define HEURISTIC2
 #      define CPP_WORDSZ 64
 #       define DYNAMIC_LOADING
 #   endif
+#   ifdef OPENBSD
+#      define OS_TYPE "OPENBSD"
+#      define HEURISTIC2
+#      define CPP_WORDSZ 64
+#      ifdef __ELF__   /* since OpenBSD/Alpha 2.9 */
+#         define DATASTART GC_data_start
+#         define ELFCLASS32 32
+#         define ELFCLASS64 64
+#         define ELF_CLASS ELFCLASS64
+#       else           /* ECOFF, until OpenBSD/Alpha 2.7 */
+#         define DATASTART ((ptr_t) 0x140000000)
+#      endif
+#   endif
+#   ifdef FREEBSD
+#      define OS_TYPE "FREEBSD"
+/* MPROTECT_VDB is not yet supported at all on FreeBSD/alpha. */
+#      define SIG_SUSPEND SIGUSR1
+#      define SIG_THR_RESTART SIGUSR2
+#      define FREEBSD_STACKBOTTOM
+#      ifdef __ELF__
+#          define DYNAMIC_LOADING
+#      endif
+/* Handle unmapped hole alpha*-*-freebsd[45]* puts between etext and edata. */
+       extern char etext[];
+       extern char edata[];
+       extern char end[];
+#      define NEED_FIND_LIMIT
+#      define DATASTART ((ptr_t)(etext))
+#      define DATAEND (GC_find_limit (DATASTART, TRUE))
+#      define DATASTART2 ((ptr_t)(edata))
+#      define DATAEND2 ((ptr_t)(end))
+#      define CPP_WORDSZ 64
+#   endif
 #   ifdef OSF1
 #      define OS_TYPE "OSF1"
 #      define DATASTART ((ptr_t) 0x140000000)
-       extern int _end;
-#      define DATAEND ((ptr_t) &_end)
+       extern int _end[];
+#      define DATAEND ((ptr_t) _end)
        extern char ** environ;
        /* round up from the value of environ to the nearest page boundary */
        /* Probably breaks if putenv is called before collector            */
        /* the text segment immediately follows the stack.              */
        /* Hence we give an upper pound.                                */
        /* This is currently unused, since we disabled HEURISTIC2       */
-       extern int __start;
-#      define HEURISTIC2_LIMIT ((ptr_t)((word)(&__start) & ~(getpagesize()-1)))
+       extern int __start[];
+#      define HEURISTIC2_LIMIT ((ptr_t)((word)(__start) & ~(getpagesize()-1)))
 #      define CPP_WORDSZ 64
 #      define MPROTECT_VDB
 #      define DYNAMIC_LOADING
 #       else
 #           define DATASTART ((ptr_t) 0x140000000)
 #       endif
-       extern int _end;
-#      define DATAEND (&_end)
+       extern int _end[];
+#      define DATAEND (_end)
 #      define MPROTECT_VDB
                /* Has only been superficially tested.  May not */
                /* work on all versions.                        */
 
 # ifdef IA64
 #   define MACH_TYPE "IA64"
-#   define ALIGN_DOUBLE
-       /* Requires 16 byte alignment for malloc */
-#   define ALIGNMENT 8
 #   define USE_GENERIC_PUSH_REGS
        /* We need to get preserved registers in addition to register   */
        /* windows.   That's easiest to do with setjmp.                 */
            /* setting mark bits.                                       */
 #   endif
 #   ifdef HPUX
-       --> needs work
+#      ifdef _ILP32
+#        define CPP_WORDSZ 32
+#         define ALIGN_DOUBLE
+           /* Requires 8 byte alignment for malloc */
+#        define ALIGNMENT 4
+#       else
+#        ifndef _LP64
+               ---> unknown ABI
+#         endif
+#        define CPP_WORDSZ 64
+#        define ALIGN_DOUBLE
+           /* Requires 16 byte alignment for malloc */
+#         define ALIGNMENT 8
+#       endif
+#       define OS_TYPE "HPUX"  
+        extern int __data_start[];
+#       define DATASTART ((ptr_t)(__data_start))
+        /* Gustavo Rodriguez-Rivera suggested changing HEURISTIC2      */
+        /* to this.  Note that the GC must be initialized before the   */
+       /* first putenv call.                                           */
+       extern char ** environ;
+#       define STACKBOTTOM ((ptr_t)environ)
+#       define DYNAMIC_LOADING
+#       include <unistd.h>
+#       define GETPAGESIZE() sysconf(_SC_PAGE_SIZE)
+       /* The following was empirically determined, and is probably    */
+       /* not very robust.                                             */
+       /* Note that the backing store base seems to be at a nice       */
+       /* address minus one page.                                      */
+#      define BACKING_STORE_DISPLACEMENT 0x1000000
+#      define BACKING_STORE_ALIGNMENT 0x1000
+#       define BACKING_STORE_BASE \
+         (ptr_t)(((word)GC_stackbottom - BACKING_STORE_DISPLACEMENT - 1) \
+                       & ~(BACKING_STORE_ALIGNMENT - 1))
 #   endif
 #   ifdef LINUX
+#      define CPP_WORDSZ 64
+#      define ALIGN_DOUBLE
+         /* Requires 16 byte alignment for malloc */
+#      define ALIGNMENT 8
 #       define OS_TYPE "LINUX"
-#       define CPP_WORDSZ 64
        /* The following works on NUE and older kernels:        */
 /* #       define STACKBOTTOM ((ptr_t) 0xa000000000000000l)    */
        /* This does not work on NUE:                           */
 #      define BACKING_STORE_BASE ((ptr_t)GC_register_stackbottom)
 #      define SEARCH_FOR_DATA_START
 #      define DATASTART GC_data_start
-#       define DYNAMIC_LOADING
+#      ifdef __GNUC__
+#         define DYNAMIC_LOADING
+#      else
+         /* In the Intel compiler environment, we seem to end up with  */
+         /* statically linked executables and an undefined reference   */
+         /* to _DYNAMIC                                                */
+#      endif
 #      define MPROTECT_VDB
                /* Requires Linux 2.3.47 or later.      */
-       extern int _end;
-#      define DATAEND (&_end)
+       extern int _end[];
+#      define DATAEND (_end)
 #       ifdef __GNUC__
 #        define PREFETCH(x) \
            __asm__ ("  lfetch  [%0]": : "r"((void *)(x)))
 #   define MACH_TYPE "M88K"
 #   define ALIGNMENT 4
 #   define ALIGN_DOUBLE
-    extern int etext;
+    extern int etext[];
 #   ifdef CX_UX
 #      define OS_TYPE "CX_UX"
-#       define DATASTART ((((word)&etext + 0x3fffff) & ~0x3fffff) + 0x10000)
+#       define DATASTART ((((word)etext + 0x3fffff) & ~0x3fffff) + 0x10000)
 #   endif
 #   ifdef  DGUX
 #      define OS_TYPE "DGUX"
        extern char * GC_SysVGetDataStart();
-#       define DATASTART (ptr_t)GC_SysVGetDataStart(0x10000, &etext)
+#       define DATASTART (ptr_t)GC_SysVGetDataStart(0x10000, etext)
 #   endif
 #   define STACKBOTTOM ((char*)0xf0000000) /* determined empirically */
 # endif
 #   define USE_GENERIC_PUSH_REGS
 #   ifdef UTS4
 #       define OS_TYPE "UTS4"
-        extern int etext;
-       extern int _etext;
-       extern int _end;
+        extern int etext[];
+       extern int _etext[];
+       extern int _end[];
        extern char * GC_SysVGetDataStart();
-#       define DATASTART (ptr_t)GC_SysVGetDataStart(0x10000, &_etext)
-#      define DATAEND (&_end)
+#       define DATASTART (ptr_t)GC_SysVGetDataStart(0x10000, _etext)
+#      define DATAEND (_end)
 #      define HEURISTIC2
 #   endif
 #   ifdef LINUX
 #       define OS_TYPE "LINUX"
 #       define HEURISTIC1
 #       define DYNAMIC_LOADING
-        extern int __data_start;
-#       define DATASTART ((ptr_t)(&__data_start))
+        extern int __data_start[];
+#       define DATASTART ((ptr_t)(__data_start))
 #   endif
 # endif
 
 # if defined(PJ)
 #   define ALIGNMENT 4
-    extern int _etext;
-#   define DATASTART ((ptr_t)(&_etext))
+    extern int _etext[];
+#   define DATASTART ((ptr_t)(_etext))
 #   define HEURISTIC1
 # endif
 
 #   ifdef NETBSD
 #       define OS_TYPE "NETBSD"
 #       define HEURISTIC2
-        extern char etext;
-#       define DATASTART ((ptr_t)(&etext))
+        extern char etext[];
+#       define DATASTART ((ptr_t)(etext))
 #       define USE_GENERIC_PUSH_REGS
 #   endif
 #   ifdef LINUX
                              /* contain large read-only data tables    */
                              /* that we'd rather not scan.             */
 #           endif
-            extern int _end;
-#           define DATAEND (&_end)
+            extern int _end[];
+#           define DATAEND (_end)
 #      else
-            extern int etext;
-#            define DATASTART ((ptr_t)((((word) (&etext)) + 0xfff) & ~0xfff))
+            extern int etext[];
+#            define DATASTART ((ptr_t)((((word) (etext)) + 0xfff) & ~0xfff))
 #       endif
 #   endif
 #   ifdef MSWINCE
 #     define OS_TYPE "MSWINCE"
 #     define DATAEND /* not needed */
 #   endif
+#   ifdef NOSYS
+      /* __data_start is usually defined in the target linker script.  */
+      extern int __data_start[];
+#     define DATASTART (ptr_t)(__data_start)
+#     define USE_GENERIC_PUSH_REGS
+      /* __stack_base__ is set in newlib/libc/sys/arm/crt0.S  */
+      extern void *__stack_base__;
+#     define STACKBOTTOM ((ptr_t) (__stack_base__))
+#   endif
 #endif
 
 # ifdef SH
 #     define USE_GENERIC_PUSH_REGS
 #     define DYNAMIC_LOADING
 #     define LINUX_DATA_START
-      extern int _end;
-#     define DATAEND (&_end)
+      extern int _end[];
+#     define DATAEND (_end)
 #   endif
 # endif
  
 #   define DATAEND /* not needed */
 # endif
 
+# ifdef X86_64
+#   define MACH_TYPE "X86_64"
+#   define ALIGNMENT 8
+#   define CPP_WORDSZ 64
+#   define CACHE_LINE_SIZE 64
+#   define USE_GENERIC_PUSH_REGS
+#   ifdef LINUX
+#      define OS_TYPE "LINUX"
+#       define LINUX_STACKBOTTOM
+#       if !defined(GC_LINUX_THREADS) || !defined(REDIRECT_MALLOC)
+#          define MPROTECT_VDB
+#      else
+           /* We seem to get random errors in incremental mode,        */
+           /* possibly because Linux threads is itself a malloc client */
+           /* and can't deal with the signals.                         */
+#      endif
+#       ifdef __ELF__
+#            define DYNAMIC_LOADING
+#           ifdef UNDEFINED    /* includes ro data */
+              extern int _etext[];
+#              define DATASTART ((ptr_t)((((word) (_etext)) + 0xfff) & ~0xfff))
+#           endif
+#           include <features.h>
+#           define LINUX_DATA_START
+            extern int _end[];
+#           define DATAEND (_end)
+#      else
+            extern int etext[];
+#            define DATASTART ((ptr_t)((((word) (etext)) + 0xfff) & ~0xfff))
+#       endif
+#      define PREFETCH(x) \
+         __asm__ __volatile__ ("       prefetch        %0": : "m"(*(char *)(x)))
+#      define PREFETCH_FOR_WRITE(x) \
+         __asm__ __volatile__ ("       prefetchw       %0": : "m"(*(char *)(x)))
+#   endif
+# endif
+
 #ifdef LINUX_DATA_START
     /* Some Linux distributions arrange to define __data_start.  Some  */
     /* define data_start as a weak symbol.  The latter is technically  */
     /* case we lose.  Nonetheless, we try both, prefering __data_start.        */
     /* We assume gcc.  */
 #   pragma weak __data_start
-    extern int __data_start;
+    extern int __data_start[];
 #   pragma weak data_start
-    extern int data_start;
-#   define DATASTART ((ptr_t)(&__data_start != 0? &__data_start : &data_start))
+    extern int data_start[];
+#   define DATASTART ((ptr_t)(__data_start != 0? __data_start : data_start))
 #endif
 
 #if defined(LINUX) && defined(REDIRECT_MALLOC)
 # endif
 
 # ifndef DATAEND
-    extern int end;
-#   define DATAEND (&end)
+    extern int end[];
+#   define DATAEND (end)
 # endif
 
 # if defined(SVR4) && !defined(GETPAGESIZE)
 
 # if defined(SVR4) || defined(LINUX) || defined(IRIX) || defined(HPUX) \
     || defined(OPENBSD) || defined(NETBSD) || defined(FREEBSD) \
-    || defined(BSD) || defined(AIX) || defined(MACOSX) || defined(OSF1)
+    || defined(BSD) || defined(_AIX) || defined(MACOSX) || defined(OSF1)
 #   define UNIX_LIKE   /* Basic Unix-like system calls work.   */
 # endif
 
        ((word*)x)[1] = 0;
 # endif /* CLEAR_DOUBLE */
 
-/* Internally to the collector we test only the XXX_THREADS macros     */
-/* not the GC_XXX_THREADS versions.  Here we make sure the latter      */
-/* are treated as equivalent.                                          */
-#if defined(GC_SOLARIS_THREADS) && !defined(_SOLARIS_THREADS)
-#   define _SOLARIS_THREADS
-#endif
-#if defined(GC_SOLARIS_THREADS) && !defined(_SOLARIS_PTHREADS)
-#   define _SOLARIS_PTHREADS
-#endif
-#if defined(GC_IRIX_THREADS) && !defined(IRIX_THREADS)
-#   define IRIX_THREADS
-#endif
-#if defined(GC_LINUX_THREADS) && !defined(LINUX_THREADS)
-#   define LINUX_THREADS
-#endif
-#if defined(GC_WIN32_THREADS) && !defined(WIN32_THREADS)
-#   define WIN32_THREADS
-#endif
-#if defined(GC_HPUX_THREADS) && !defined(HPUX_THREADS)
-#   define HPUX_THREADS
-#endif
-#if defined(GC_OSF1_THREADS) && !defined(OSF1_THREADS)
-#   define OSF1_THREADS
-#endif
+/* Internally we use GC_SOLARIS_THREADS to test for either old or pthreads. */
+# if defined(GC_SOLARIS_PTHREADS) && !defined(GC_SOLARIS_THREADS)
+#   define GC_SOLARIS_THREADS
+# endif
 
-/* Internally we use SOLARIS_THREADS to test for either old or pthreads. */
-# if defined(_SOLARIS_PTHREADS) && !defined(SOLARIS_THREADS)
-#   define SOLARIS_THREADS
+# if defined(GC_IRIX_THREADS) && !defined(IRIX5)
+--> inconsistent configuration
 # endif
-# if defined(IRIX_THREADS) && !defined(IRIX5)
+# if defined(GC_LINUX_THREADS) && !defined(LINUX)
 --> inconsistent configuration
 # endif
-# if defined(LINUX_THREADS) && !defined(LINUX)
+# if defined(GC_SOLARIS_THREADS) && !defined(SUNOS5)
 --> inconsistent configuration
 # endif
-# if defined(SOLARIS_THREADS) && !defined(SUNOS5)
+# if defined(GC_HPUX_THREADS) && !defined(HPUX)
 --> inconsistent configuration
 # endif
-# if defined(HPUX_THREADS) && !defined(HPUX)
+# if defined(GC_WIN32_THREADS) && !defined(MSWIN32)
+    /* Ideally CYGWIN32 should work, in addition to MSWIN32.  I suspect        */
+    /* the necessary code is mostly there, but nobody has actually made */
+    /* sure the right combination of pieces is compiled in, etc.       */
 --> inconsistent configuration
 # endif
+
 # if defined(PCR) || defined(SRC_M3) || \
-       defined(SOLARIS_THREADS) || defined(WIN32_THREADS) || \
-       defined(IRIX_THREADS) || defined(LINUX_THREADS) || \
-       defined(HPUX_THREADS) || defined(OSF1_THREADS)
+       defined(GC_SOLARIS_THREADS) || defined(GC_WIN32_THREADS) || \
+       defined(GC_PTHREADS)
 #   define THREADS
 # endif
 
        /* descriptions.                                                */
 #      define USE_GENERIC_PUSH_REGS
 # endif
-# if defined(I386) && defined(LINUX)
+
+# if defined(SPARC)
+#   define ASM_CLEAR_CODE      /* Stack clearing is crucial, and we    */
+                               /* include assembly code to do it well. */
+# endif
+
+/* Can we save call chain in objects for debugging?                    */
+/* SET NFRAMES (# of saved frames) and NARGS (#of args for each frame) */
+/* to reasonable values for the platform.                              */
+/* Set SAVE_CALL_CHAIN if we can.  SAVE_CALL_COUNT can be specified at */
+/* build time, though we feel free to adjust it slightly.              */
+/* Define NEED_CALLINFO if we either save the call stack or            */
+/* GC_ADD_CALLER is defined.                                           */
+#ifdef LINUX
+# include <features.h>
+# if __GLIBC__ == 2 && __GLIBC_MINOR__ >= 1 || __GLIBC__ > 2
+#   define HAVE_BUILTIN_BACKTRACE
+# endif
+#endif
+
+#if defined(SPARC)
+# define CAN_SAVE_CALL_STACKS
+# define CAN_SAVE_CALL_ARGS
+#endif
+#if (defined(I386) || defined(X86_64)) && defined(LINUX)
     /* SAVE_CALL_CHAIN is supported if the code is compiled to save    */
     /* frame pointers by default, i.e. no -fomit-frame-pointer flag.   */
-# ifdef SAVE_CALL_COUNT
+# define CAN_SAVE_CALL_STACKS
+# define CAN_SAVE_CALL_ARGS
+#endif
+#if defined(HAVE_BUILTIN_BACKTRACE) && !defined(CAN_SAVE_CALL_STACKS)
+# define CAN_SAVE_CALL_STACKS
+#endif
+
+# if defined(SAVE_CALL_COUNT) && !defined(GC_ADD_CALLER) \
+     && defined(CAN_SAVE_CALL_STACKS)
 #   define SAVE_CALL_CHAIN 
 # endif
+# ifdef SAVE_CALL_CHAIN
+#   if defined(SAVE_CALL_NARGS) && defined(CAN_SAVE_CALL_ARGS)
+#     define NARGS SAVE_CALL_NARGS
+#   else
+#     define NARGS 0   /* Number of arguments to save for each call.   */
+#   endif
+# endif
+# ifdef SAVE_CALL_CHAIN
+#   ifndef SAVE_CALL_COUNT
+#     define NFRAMES 6 /* Number of frames to save. Even for           */
+                       /* alignment reasons.                           */
+#   else
+#     define NFRAMES ((SAVE_CALL_COUNT + 1) & ~1)
+#   endif
+#   define NEED_CALLINFO
+# endif /* SAVE_CALL_CHAIN */
+# ifdef GC_ADD_CALLER
+#   define NFRAMES 1
+#   define NARGS 0
+#   define NEED_CALLINFO
 # endif
-# if defined(SPARC)
-#   define SAVE_CALL_CHAIN
-#   define ASM_CLEAR_CODE      /* Stack clearing is crucial, and we    */
-                               /* include assembly code to do it well. */
+
+# if defined(MAKE_BACK_GRAPH) && !defined(DBG_HDRS_ALL)
+#   define DBG_HDRS_ALL
 # endif
 
 # endif /* GCCONFIG_H */