2 * Copyright 1988, 1989 Hans-J. Boehm, Alan J. Demers
3 * Copyright (c) 1991-1994 by Xerox Corporation. All rights reserved.
4 * Copyright (c) 1996 by Silicon Graphics. All rights reserved.
6 * THIS MATERIAL IS PROVIDED AS IS, WITH ABSOLUTELY NO WARRANTY EXPRESSED
7 * OR IMPLIED. ANY USE IS AT YOUR OWN RISK.
9 * Permission is hereby granted to use or copy this program
10 * for any purpose, provided the above notices are retained on all copies.
11 * Permission to modify the code and to distribute modified code is granted,
12 * provided the above notices are retained, and a notice that the code was
13 * modified is included with the above copyright notice.
20 /* Machine dependent parameters. Some tuning parameters can be found */
21 /* near the top of gc_private.h. */
23 /* Machine specific parts contributed by various people. See README file. */
25 /* Determine the machine type: */
26 # if defined(sun) && defined(mc68000)
29 # define mach_type_known
31 # if defined(hp9000s300)
34 # define mach_type_known
36 # if defined(__NetBSD__) && defined(m68k)
39 # define mach_type_known
48 # define mach_type_known
50 # if defined(mips) || defined(__mips)
52 # if defined(ultrix) || defined(__ultrix) || defined(__NetBSD__)
55 # if defined(_SYSTYPE_SVR4) || defined(SYSTYPE_SVR4) || defined(__SYSTYPE_SVR4__)
56 # define IRIX5 /* or IRIX 6.X */
58 # define RISCOS /* or IRIX 4.X */
61 # define mach_type_known
63 # if defined(sequent) && defined(i386)
66 # define mach_type_known
68 # if defined(sun) && defined(i386)
71 # define mach_type_known
73 # if (defined(__OS2__) || defined(__EMX__)) && defined(__32BIT__)
76 # define mach_type_known
80 # define mach_type_known
82 # if defined(sun) && (defined(sparc) || defined(__sparc))
84 /* Test for SunOS 5.x */
91 # define mach_type_known
93 # if defined(sparc) && defined(unix) && !defined(sun)
96 # define mach_type_known
100 # define mach_type_known
102 # if defined(_M_XENIX) && defined(_M_SYSV) && defined(_M_I386)
103 /* The above test may need refinement */
105 # if defined(_SCO_ELF)
110 # define mach_type_known
112 # if defined(_AUX_SOURCE)
115 # define mach_type_known
117 # if defined(_PA_RISC1_0) || defined(_PA_RISC1_1)
119 # define mach_type_known
121 # if defined(linux) && defined(i386)
124 # define mach_type_known
126 # if defined(linux) && defined(powerpc)
129 # define mach_type_known
131 # if defined(__alpha) || defined(__alpha__)
133 # if defined(linux) || defined(__linux__)
136 # define OSF1 /* a.k.a Digital Unix */
138 # define mach_type_known
143 # define mach_type_known
145 # if defined(THINK_C) || defined(__MWERKS__) && !defined(__powerc)
148 # define mach_type_known
150 # if defined(__MWERKS__) && defined(__powerc)
153 # define mach_type_known
155 # if defined(NeXT) && defined(mc68000)
158 # define mach_type_known
160 # if defined(NeXT) && defined(i386)
163 # define mach_type_known
165 # if defined(__FreeBSD__) && defined(i386)
168 # define mach_type_known
170 # if defined(__NetBSD__) && defined(i386)
173 # define mach_type_known
175 # if defined(bsdi) && defined(i386)
178 # define mach_type_known
180 # if !defined(mach_type_known) && defined(__386BSD__)
183 # define mach_type_known
185 # if defined(_CX_UX) && defined(_M88K)
188 # define mach_type_known
193 # define mach_type_known
195 # if (defined(_MSDOS) || defined(_MSC_VER)) && (_M_IX86 >= 300)
197 # define MSWIN32 /* or Win32s */
198 # define mach_type_known
200 # if defined(__DJGPP__)
203 # define DJGPP /* MSDOS running the DJGPP port of GCC */
205 # define mach_type_known
207 # if defined(__CYGWIN32__)
210 # define mach_type_known
212 # if defined(__BORLANDC__)
215 # define mach_type_known
217 # if defined(_UTS) && !defined(mach_type_known)
220 # define mach_type_known
223 # if defined(__WATCOMC__) && defined(__386__)
225 # if !defined(OS2) && !defined(MSWIN32) && !defined(DOS4GW)
226 # if defined(__OS2__)
229 # if defined(__WINDOWS_386__) || defined(__NT__)
236 # define mach_type_known
239 /* Feel free to add more clauses here */
241 /* Or manually define the machine type here. A machine type is */
242 /* characterized by the architecture. Some */
243 /* machine types are further subdivided by OS. */
244 /* the macros ULTRIX, RISCOS, and BSD to distinguish. */
245 /* Note that SGI IRIX is treated identically to RISCOS. */
246 /* SYSV on an M68K actually means A/UX. */
247 /* The distinction in these cases is usually the stack starting address */
248 # ifndef mach_type_known
249 --> unknown machine type
251 /* Mapping is: M68K ==> Motorola 680X0 */
252 /* (SUNOS4,HP,NEXT, and SYSV (A/UX), */
253 /* MACOS and AMIGA variants) */
254 /* I386 ==> Intel 386 */
255 /* (SEQUENT, OS2, SCO, LINUX, NETBSD, */
256 /* FREEBSD, THREE86BSD, MSWIN32, */
257 /* BSDI, SUNOS5, NEXT variants) */
258 /* NS32K ==> Encore Multimax */
259 /* MIPS ==> R2000 or R3000 */
260 /* (RISCOS, ULTRIX variants) */
261 /* VAX ==> DEC VAX */
262 /* (BSD, ULTRIX variants) */
263 /* RS6000 ==> IBM RS/6000 AIX3.X */
264 /* RT ==> IBM PC/RT */
265 /* HP_PA ==> HP9000/700 & /800 */
267 /* SPARC ==> SPARC under SunOS */
268 /* (SUNOS4, SUNOS5, */
269 /* DRSNX variants) */
270 /* ALPHA ==> DEC Alpha */
271 /* (OSF1 and LINUX variants) */
272 /* M88K ==> Motorola 88XX0 */
273 /* (CX_UX and DGUX) */
274 /* S370 ==> 370-like machine */
275 /* running Amdahl UTS4 */
279 * For each architecture and OS, the following need to be defined:
281 * CPP_WORD_SZ is a simple integer constant representing the word size.
282 * in bits. We assume byte addressibility, where a byte has 8 bits.
283 * We also assume CPP_WORD_SZ is either 32 or 64.
284 * (We care about the length of pointers, not hardware
285 * bus widths. Thus a 64 bit processor with a C compiler that uses
286 * 32 bit pointers should use CPP_WORD_SZ of 32, not 64. Default is 32.)
288 * MACH_TYPE is a string representation of the machine type.
289 * OS_TYPE is analogous for the OS.
291 * ALIGNMENT is the largest N, such that
292 * all pointer are guaranteed to be aligned on N byte boundaries.
293 * defining it to be 1 will always work, but perform poorly.
295 * DATASTART is the beginning of the data segment.
296 * On UNIX systems, the collector will scan the area between DATASTART
297 * and DATAEND for root pointers.
299 * DATAEND, if not &end.
301 * ALIGN_DOUBLE of GC_malloc should return blocks aligned to twice
304 * STACKBOTTOM is the cool end of the stack, which is usually the
305 * highest address in the stack.
306 * Under PCR or OS/2, we have other ways of finding thread stacks.
307 * For each machine, the following should:
308 * 1) define STACK_GROWS_UP if the stack grows toward higher addresses, and
309 * 2) define exactly one of
310 * STACKBOTTOM (should be defined to be an expression)
313 * If either of the last two macros are defined, then STACKBOTTOM is computed
314 * during collector startup using one of the following two heuristics:
315 * HEURISTIC1: Take an address inside GC_init's frame, and round it up to
316 * the next multiple of STACK_GRAN.
317 * HEURISTIC2: Take an address inside GC_init's frame, increment it repeatedly
318 * in small steps (decrement if STACK_GROWS_UP), and read the value
319 * at each location. Remember the value when the first
320 * Segmentation violation or Bus error is signalled. Round that
321 * to the nearest plausible page boundary, and use that instead
324 * If no expression for STACKBOTTOM can be found, and neither of the above
325 * heuristics are usable, the collector can still be used with all of the above
326 * undefined, provided one of the following is done:
327 * 1) GC_mark_roots can be changed to somehow mark from the correct stack(s)
328 * without reference to STACKBOTTOM. This is appropriate for use in
329 * conjunction with thread packages, since there will be multiple stacks.
330 * (Allocating thread stacks in the heap, and treating them as ordinary
331 * heap data objects is also possible as a last resort. However, this is
332 * likely to introduce significant amounts of excess storage retention
333 * unless the dead parts of the thread stacks are periodically cleared.)
334 * 2) Client code may set GC_stackbottom before calling any GC_ routines.
335 * If the author of the client code controls the main program, this is
336 * easily accomplished by introducing a new main program, setting
337 * GC_stackbottom to the address of a local variable, and then calling
338 * the original main program. The new main program would read something
341 * # include "gc_private.h"
343 * main(argc, argv, envp)
345 * char **argv, **envp;
349 * GC_stackbottom = (ptr_t)(&dummy);
350 * return(real_main(argc, argv, envp));
354 * Each architecture may also define the style of virtual dirty bit
355 * implementation to be used:
356 * MPROTECT_VDB: Write protect the heap and catch faults.
357 * PROC_VDB: Use the SVR4 /proc primitives to read dirty bits.
359 * An architecture may define DYNAMIC_LOADING if dynamic_load.c
360 * defined GC_register_dynamic_libraries() for the architecture.
364 # define STACK_GRAN 0x1000000
366 # define MACH_TYPE "M68K"
369 # define OS_TYPE "NETBSD"
372 # define DATASTART ((ptr_t)(&etext))
375 # define OS_TYPE "SUNOS4"
377 # define DATASTART ((ptr_t)((((word) (&etext)) + 0x1ffff) & ~0x1ffff))
378 # define HEURISTIC1 /* differs */
379 # define DYNAMIC_LOADING
382 # define OS_TYPE "HP"
384 # define DATASTART ((ptr_t)((((word) (&etext)) + 0xfff) & ~0xfff))
385 # define STACKBOTTOM ((ptr_t) 0xffeffffc)
386 /* empirically determined. seems to work. */
388 # define GETPAGESIZE() sysconf(_SC_PAGE_SIZE)
391 # define OS_TYPE "SYSV"
393 # define DATASTART ((ptr_t)((((word) (&etext)) + 0x3fffff) \
395 +((word)&etext & 0x1fff))
396 /* This only works for shared-text binaries with magic number 0413.
397 The other sorts of SysV binaries put the data at the end of the text,
398 in which case the default of &etext would work. Unfortunately,
399 handling both would require having the magic-number available.
402 # define STACKBOTTOM ((ptr_t)0xFFFFFFFE)
403 /* The stack starts at the top of memory, but */
404 /* 0x0 cannot be used as setjump_test complains */
405 /* that the stack direction is incorrect. Two */
406 /* bytes down from 0x0 should be safe enough. */
408 # include <sys/mmu.h>
409 # define GETPAGESIZE() PAGESIZE /* Is this still right? */
412 # define OS_TYPE "AMIGA"
413 /* STACKBOTTOM and DATASTART handled specially */
415 # define DATAEND /* not needed */
416 # define GETPAGESIZE() 4096
422 # define OS_TYPE "MACOS"
423 /* see os_dep.c for details of global data segments. */
424 # define STACKBOTTOM ((ptr_t) LMGetCurStackBase())
425 # define DATAEND /* not needed */
426 # define GETPAGESIZE() 4096
429 # define OS_TYPE "NEXT"
430 # define DATASTART ((ptr_t) get_etext())
431 # define STACKBOTTOM ((ptr_t) 0x4000000)
432 # define DATAEND /* not needed */
437 # define MACH_TYPE "POWERPC"
443 # define OS_TYPE "MACOS"
444 /* see os_dep.c for details of global data segments. */
445 # define STACKBOTTOM ((ptr_t) LMGetCurStackBase())
446 # define DATAEND /* not needed */
449 # define OS_TYPE "LINUX"
450 # define STACKBOTTOM ((ptr_t)0x80000000)
451 # define DATASTART GC_data_start
453 # define DATAEND (&_end)
458 # define MACH_TYPE "VAX"
459 # define ALIGNMENT 4 /* Pointers are longword aligned by 4.2 C compiler */
461 # define DATASTART ((ptr_t)(&etext))
463 # define OS_TYPE "BSD"
465 /* HEURISTIC2 may be OK, but it's hard to test. */
468 # define OS_TYPE "ULTRIX"
469 # define STACKBOTTOM ((ptr_t) 0x7fffc800)
474 # define MACH_TYPE "RT"
476 # define DATASTART ((ptr_t) 0x10000000)
477 # define STACKBOTTOM ((ptr_t) 0x1fffd800)
481 # define MACH_TYPE "SPARC"
482 # define ALIGNMENT 4 /* Required by hardware */
483 # define ALIGN_DOUBLE
486 # define OS_TYPE "SUNOS5"
489 extern char * GC_SysVGetDataStart();
490 # define DATASTART (ptr_t)GC_SysVGetDataStart(0x10000, &_etext)
491 # define DATAEND (&_end)
496 # define HEAP_START (ptr_t)0x40000000
498 # define HEAP_START DATAEND
503 # define GETPAGESIZE() sysconf(_SC_PAGESIZE)
504 /* getpagesize() appeared to be missing from at least one */
505 /* Solaris 5.4 installation. Weird. */
508 # define OS_TYPE "SUNOS4"
509 /* [If you have a weak stomach, don't read this.] */
510 /* We would like to use: */
511 /* # define DATASTART ((ptr_t)((((word) (&etext)) + 0x1fff) & ~0x1fff)) */
512 /* This fails occasionally, due to an ancient, but very */
513 /* persistent ld bug. &etext is set 32 bytes too high. */
514 /* We instead read the text segment size from the a.out */
515 /* header, which happens to be mapped into our address space */
516 /* at the start of the text segment. The detective work here */
517 /* was done by Robert Ehrlich, Manuel Serrano, and Bernard */
518 /* Serpette of INRIA. */
519 /* This assumes ZMAGIC, i.e. demand-loadable executables. */
520 # define TEXTSTART 0x2000
521 # define DATASTART ((ptr_t)(*(int *)(TEXTSTART+0x4)+TEXTSTART))
522 # define MPROTECT_VDB
526 # define CPP_WORDSZ 32
527 # define OS_TYPE "DRSNX"
528 extern char * GC_SysVGetDataStart();
530 # define DATASTART (ptr_t)GC_SysVGetDataStart(0x10000, &etext)
531 # define MPROTECT_VDB
532 # define STACKBOTTOM ((ptr_t) 0xdfff0000)
534 # define DYNAMIC_LOADING
538 # define MACH_TYPE "I386"
539 # define ALIGNMENT 4 /* Appears to hold for all "32 bit" compilers */
540 /* except Borland. The -a4 option fixes */
542 /* Ivan Demakov: For Watcom the option is -zp4. */
543 # ifndef SMALL_CONFIG
544 # define ALIGN_DOUBLE /* Not strictly necessary, but may give speed */
545 /* improvement on Pentiums. */
548 # define OS_TYPE "SEQUENT"
550 # define DATASTART ((ptr_t)((((word) (&etext)) + 0xfff) & ~0xfff))
551 # define STACKBOTTOM ((ptr_t) 0x3ffff000)
554 # define OS_TYPE "SUNOS5"
555 extern int etext
, _start
;
556 extern char * GC_SysVGetDataStart();
557 # define DATASTART GC_SysVGetDataStart(0x1000, &etext)
558 # define STACKBOTTOM ((ptr_t)(&_start))
559 /** At least in Solaris 2.5, PROC_VDB gives wrong values for dirty bits. */
560 /*# define PROC_VDB*/
561 # define DYNAMIC_LOADING
566 # define HEAP_START (ptr_t)0x40000000
568 # define HEAP_START DATAEND
572 # define OS_TYPE "SCO"
574 # define DATASTART ((ptr_t)((((word) (&etext)) + 0x3fffff) \
576 +((word)&etext & 0xfff))
577 # define STACKBOTTOM ((ptr_t) 0x7ffffffc)
580 # define OS_TYPE "SCO_ELF"
582 # define DATASTART ((ptr_t)(&etext))
583 # define STACKBOTTOM ((ptr_t) 0x08048000)
584 # define DYNAMIC_LOADING
585 # define ELF_CLASS ELFCLASS32
588 # define OS_TYPE "LINUX"
589 # define STACKBOTTOM ((ptr_t)0xc0000000)
590 /* Appears to be 0xe0000000 for at least one 2.1.91 kernel. */
591 /* Probably needs to be more flexible, but I don't yet */
592 /* fully understand how flexible. */
593 # define MPROTECT_VDB
595 # define DYNAMIC_LOADING
596 # ifdef UNDEFINED /* includes ro data */
598 # define DATASTART ((ptr_t)((((word) (&_etext)) + 0xfff) & ~0xfff))
600 # include <linux/version.h>
601 # include <features.h>
602 # if LINUX_VERSION_CODE >= 0x20000 && defined(__GLIBC__) && __GLIBC__ >= 2
603 extern int __data_start
;
604 # define DATASTART ((ptr_t)(&__data_start))
606 extern char **__environ
;
607 # define DATASTART ((ptr_t)(&__environ))
608 /* hideous kludge: __environ is the first */
609 /* word in crt0.o, and delimits the start */
610 /* of the data segment, no matter which */
611 /* ld options were passed through. */
612 /* We could use _etext instead, but that */
613 /* would include .rodata, which may */
614 /* contain large read-only data tables */
615 /* that we'd rather not scan. */
618 # define DATAEND (&_end)
621 # define DATASTART ((ptr_t)((((word) (&etext)) + 0xfff) & ~0xfff))
625 extern int _data_start__
;
626 extern int _data_end__
;
627 extern int _bss_start__
;
628 extern int _bss_end__
;
629 /* For binutils 2.9.1, we have */
630 /* DATASTART = _data_start__ */
631 /* DATAEND = _bss_end__ */
632 /* whereas for some earlier versions it was */
633 /* DATASTART = _bss_start__ */
634 /* DATAEND = _data_end__ */
635 /* To get it right for both, we take the */
636 /* minumum/maximum of the two. */
637 # define MAX(x,y) ((x) > (y) ? (x) : (y))
638 # define MIN(x,y) ((x) < (y) ? (x) : (y))
639 # define DATASTART ((ptr_t) MIN(_data_start__, _bss_start__))
640 # define DATAEND ((ptr_t) MAX(_data_end__, _bss_end__))
642 # define STACK_GRAN 0x10000
646 # define OS_TYPE "OS2"
647 /* STACKBOTTOM and DATASTART are handled specially in */
648 /* os_dep.c. OS2 actually has the right */
650 # define DATAEND /* not needed */
653 # define OS_TYPE "MSWIN32"
654 /* STACKBOTTOM and DATASTART are handled specially in */
657 # define MPROTECT_VDB
659 # define DATAEND /* not needed */
662 # define OS_TYPE "DJGPP"
663 # include "stubinfo.h"
666 # define DATASTART ((ptr_t)((((word) (&etext)) + 0x1ff) & ~0x1ff))
667 # define STACKBOTTOM ((ptr_t)((word) _stubinfo + _stubinfo->size \
669 /* This may not be right. */
672 # define OS_TYPE "FREEBSD"
673 # define MPROTECT_VDB
676 # define OS_TYPE "NETBSD"
679 # define OS_TYPE "THREE86BSD"
682 # define OS_TYPE "BSDI"
684 # if defined(FREEBSD) || defined(NETBSD) \
685 || defined(THREE86BSD) || defined(BSDI)
688 # define DATASTART ((ptr_t)(&etext))
691 # define OS_TYPE "NEXT"
692 # define DATASTART ((ptr_t) get_etext())
693 # define STACKBOTTOM ((ptr_t)0xc0000000)
694 # define DATAEND /* not needed */
697 # define OS_TYPE "DOS4GW"
698 /* Get_DATASTART, Get_DATAEND, Get_STACKBOTTOM
699 * Defined in gc-watcom.asm
701 extern char* Get_DATASTART (void);
702 extern char* Get_DATAEND (void);
703 extern char* Get_STACKBOTTOM (void);
704 # pragma aux Get_DATASTART "*" value [eax];
705 # pragma aux Get_DATAEND "*" value [eax];
706 # pragma aux Get_STACKBOTTOM "*" value [eax];
707 # define DATASTART ((ptr_t) Get_DATASTART())
708 # define STACKBOTTOM ((ptr_t) Get_STACKBOTTOM())
709 # define DATAEND ((ptr_t) Get_DATAEND())
714 # define MACH_TYPE "NS32K"
716 extern char **environ
;
717 # define DATASTART ((ptr_t)(&environ))
718 /* hideous kludge: environ is the first */
719 /* word in crt0.o, and delimits the start */
720 /* of the data segment, no matter which */
721 /* ld options were passed through. */
722 # define STACKBOTTOM ((ptr_t) 0xfffff000) /* for Encore */
727 # define MACH_TYPE "MIPS"
728 /* CYGNUS LOCAL: respect predefined DATASTART_IS_ETEXT. */
729 # ifdef DATASTART_IS_ETEXT
731 # define DATASTART ((ptr_t)(&_etext))
734 # define DATASTART (ptr_t)0x10000000
735 /* Could probably be slightly higher since */
736 /* startup code allocates lots of stuff. */
739 # define DATASTART ((ptr_t)(&_fdata))
741 # define HEAP_START (ptr_t)0x30000000
743 # define HEAP_START DATASTART
745 /* Lowest plausible heap address. */
746 /* In the MMAP case, we map there. */
747 /* In either case it is used to identify */
748 /* heap sections so they're not */
749 /* considered as roots. */
751 # endif /* DATASTART_IS_ETEXT */
753 /* # define STACKBOTTOM ((ptr_t)0x7fff8000) sometimes also works. */
755 # define OS_TYPE "ULTRIX"
759 # define OS_TYPE "RISCOS"
760 # define ALIGNMENT 4 /* Required by hardware */
763 # define OS_TYPE "IRIX5"
764 # define MPROTECT_VDB
766 # define CPP_WORDSZ _MIPS_SZPTR
767 # define ALIGNMENT (_MIPS_SZPTR/8)
768 # if CPP_WORDSZ != 64
769 # define ALIGN_DOUBLE
773 # define ALIGN_DOUBLE
775 # define DYNAMIC_LOADING
779 extern char __ram_data_start
;
780 extern char __ram_data_end
;
781 # define MACH_TYPE "MIPS"
782 # define DATASTART (ptr_t)(&__ram_data_start)
783 # define DATAEND (ptr_t)(&__ram_data_end)
787 # define ALIGN_DOUBLE
792 # define MACH_TYPE "RS6000"
794 # define DATASTART ((ptr_t)0x20000000)
796 # define STACKBOTTOM ((ptr_t)((ulong)&errno))
797 # define DYNAMIC_LOADING
798 /* For really old versions of AIX, this may have to be removed. */
802 # define MACH_TYPE "HP_PA"
804 # define ALIGN_DOUBLE
805 extern int __data_start
;
806 # define DATASTART ((ptr_t)(&__data_start))
808 /* The following appears to work for 7xx systems running HP/UX */
809 /* 9.xx Furthermore, it might result in much faster */
810 /* collections than HEURISTIC2, which may involve scanning */
811 /* segments that directly precede the stack. It is not the */
812 /* default, since it may not work on older machine/OS */
813 /* combinations. (Thanks to Raymond X.T. Nijssen for uncovering */
815 # define STACKBOTTOM ((ptr_t) 0x7b033000) /* from /etc/conf/h/param.h */
819 # define STACK_GROWS_UP
820 # define DYNAMIC_LOADING
822 # define GETPAGESIZE() sysconf(_SC_PAGE_SIZE)
823 /* They misspelled the Posix macro? */
827 # define MACH_TYPE "ALPHA"
830 # define OS_TYPE "OSF1"
831 # define DATASTART ((ptr_t) 0x140000000)
833 /* Normally HEURISTIC2 is too conervative, since */
834 /* the text segment immediately follows the stack. */
835 /* Hence we give an upper pound. */
837 # define HEURISTIC2_LIMIT ((ptr_t)((word)(&__start) & ~(getpagesize()-1)))
838 # define CPP_WORDSZ 64
839 # define MPROTECT_VDB
840 # define DYNAMIC_LOADING
843 # define OS_TYPE "LINUX"
844 # define CPP_WORDSZ 64
845 # define STACKBOTTOM ((ptr_t) 0x120000000)
847 extern int __data_start
;
848 # define DATASTART &__data_start
849 # define DYNAMIC_LOADING
851 # define DATASTART ((ptr_t) 0x140000000)
854 # define DATAEND (&_end)
855 /* As of 1.3.90, I couldn't find a way to retrieve the correct */
856 /* fault address from a signal handler. */
857 /* Hence MPROTECT_VDB is broken. */
862 # define MACH_TYPE "M88K"
864 # define ALIGN_DOUBLE
867 # define OS_TYPE "CX_UX"
868 # define DATASTART ((((word)&etext + 0x3fffff) & ~0x3fffff) + 0x10000)
871 # define OS_TYPE "DGUX"
872 extern char * GC_SysVGetDataStart();
873 # define DATASTART (ptr_t)GC_SysVGetDataStart(0x10000, &etext)
875 # define STACKBOTTOM ((char*)0xf0000000) /* determined empirically */
879 # define MACH_TYPE "S370"
880 # define OS_TYPE "UTS4"
881 # define ALIGNMENT 4 /* Required by hardware */
885 extern char * GC_SysVGetDataStart();
886 # define DATASTART (ptr_t)GC_SysVGetDataStart(0x10000, &_etext)
887 # define DATAEND (&_end)
891 # ifndef STACK_GROWS_UP
892 # define STACK_GROWS_DOWN
896 # define CPP_WORDSZ 32
905 # define DATAEND (&end)
908 # if defined(SVR4) && !defined(GETPAGESIZE)
910 # define GETPAGESIZE() sysconf(_SC_PAGESIZE)
914 # if defined(SUNOS5) || defined(IRIX5)
917 # define GETPAGESIZE() getpagesize()
920 # if defined(SUNOS5) || defined(DRSNX) || defined(UTS4)
921 /* OS has SVR4 generic features. Probably others also qualify. */
925 # if defined(SUNOS5) || defined(DRSNX)
926 /* OS has SUNOS5 style semi-undocumented interface to dynamic */
929 /* OS has SUNOS5 style signal handlers. */
933 # if CPP_WORDSZ != 32 && CPP_WORDSZ != 64
938 # undef DYNAMIC_LOADING
948 /* Postponed for now. */
954 /* Presumably not worth the space it takes. */
959 # if !defined(PCR_VDB) && !defined(PROC_VDB) && !defined(MPROTECT_VDB)
963 # if defined(IRIX_THREADS) && !defined(IRIX5)
964 --> inconsistent configuration
966 # if defined(LINUX_THREADS) && !defined(LINUX)
967 --> inconsistent configuration
969 # if defined(SOLARIS_THREADS) && !defined(SUNOS5)
970 --> inconsistent configuration
972 # if defined(PCR) || defined(SRC_M3) || \
973 defined(SOLARIS_THREADS) || defined(WIN32_THREADS) || \
974 defined(IRIX_THREADS) || defined(LINUX_THREADS) || \
975 defined(QUICK_THREADS)
980 # define SAVE_CALL_CHAIN
981 # define ASM_CLEAR_CODE /* Stack clearing is crucial, and we */
982 /* include assembly code to do it well. */