OSDN Git Service

* Makefile.in (local-distclean): Remove leftover built files.
[pf3gnuchains/gcc-fork.git] / boehm-gc / os_dep.c
1 /*
2  * Copyright 1988, 1989 Hans-J. Boehm, Alan J. Demers
3  * Copyright (c) 1991-1995 by Xerox Corporation.  All rights reserved.
4  * Copyright (c) 1996-1999 by Silicon Graphics.  All rights reserved.
5  * Copyright (c) 1999 by Hewlett-Packard Company.  All rights reserved.
6  *
7  * THIS MATERIAL IS PROVIDED AS IS, WITH ABSOLUTELY NO WARRANTY EXPRESSED
8  * OR IMPLIED.  ANY USE IS AT YOUR OWN RISK.
9  *
10  * Permission is hereby granted to use or copy this program
11  * for any purpose,  provided the above notices are retained on all copies.
12  * Permission to modify the code and to distribute modified code is granted,
13  * provided the above notices are retained, and a notice that the code was
14  * modified is included with the above copyright notice.
15  */
16
17 # include "gc_priv.h"
18
19 # if defined(LINUX) && !defined(POWERPC)
20 #   include <linux/version.h>
21 #   if (LINUX_VERSION_CODE <= 0x10400)
22       /* Ugly hack to get struct sigcontext_struct definition.  Required      */
23       /* for some early 1.3.X releases.  Will hopefully go away soon. */
24       /* in some later Linux releases, asm/sigcontext.h may have to   */
25       /* be included instead.                                         */
26 #     define __KERNEL__
27 #     include <asm/signal.h>
28 #     undef __KERNEL__
29 #   else
30       /* Kernels prior to 2.1.1 defined struct sigcontext_struct instead of */
31       /* struct sigcontext.  libc6 (glibc2) uses "struct sigcontext" in     */
32       /* prototypes, so we have to include the top-level sigcontext.h to    */
33       /* make sure the former gets defined to be the latter if appropriate. */
34 #     include <features.h>
35 #     if 2 <= __GLIBC__
36 #       if 2 == __GLIBC__ && 0 == __GLIBC_MINOR__
37           /* glibc 2.1 no longer has sigcontext.h.  But signal.h        */
38           /* has the right declaration for glibc 2.1.                   */
39 #         include <sigcontext.h>
40 #       endif /* 0 == __GLIBC_MINOR__ */
41 #     else /* not 2 <= __GLIBC__ */
42         /* libc5 doesn't have <sigcontext.h>: go directly with the kernel   */
43         /* one.  Check LINUX_VERSION_CODE to see which we should reference. */
44 #       include <asm/sigcontext.h>
45 #     endif /* 2 <= __GLIBC__ */
46 #   endif
47 # endif
48 # if !defined(OS2) && !defined(PCR) && !defined(AMIGA) && !defined(MACOS)
49 #   include <sys/types.h>
50 #   if !defined(MSWIN32) && !defined(SUNOS4)
51 #       include <unistd.h>
52 #   endif
53 # endif
54
55 # include <stdio.h>
56 # include <signal.h>
57
58 /* Blatantly OS dependent routines, except for those that are related   */
59 /* to dynamic loading.                                                  */
60
61 # if !defined(THREADS) && !defined(STACKBOTTOM) && defined(HEURISTIC2)
62 #   define NEED_FIND_LIMIT
63 # endif
64
65 # if defined(IRIX_THREADS) || defined(HPUX_THREADS)
66 #   define NEED_FIND_LIMIT
67 # endif
68
69 # if (defined(SUNOS4) && defined(DYNAMIC_LOADING)) && !defined(PCR)
70 #   define NEED_FIND_LIMIT
71 # endif
72
73 # if (defined(SVR4) || defined(AUX) || defined(DGUX)) && !defined(PCR)
74 #   define NEED_FIND_LIMIT
75 # endif
76
77 # if defined(LINUX) && \
78      (defined(POWERPC) || defined(SPARC) || defined(ALPHA) || defined(IA64) \
79       || defined(MIPS))
80 #   define NEED_FIND_LIMIT
81 # endif
82
83 #ifdef NEED_FIND_LIMIT
84 #   include <setjmp.h>
85 #endif
86
87 #ifdef FREEBSD
88 #  include <machine/trap.h>
89 #endif
90
91 #ifdef AMIGA
92 # include <proto/exec.h>
93 # include <proto/dos.h>
94 # include <dos/dosextens.h>
95 # include <workbench/startup.h>
96 #endif
97
98 #ifdef MSWIN32
99 # define WIN32_LEAN_AND_MEAN
100 # define NOSERVICE
101 # include <windows.h>
102 #endif
103
104 #ifdef MACOS
105 # include <Processes.h>
106 #endif
107
108 #ifdef IRIX5
109 # include <sys/uio.h>
110 # include <malloc.h>   /* for locking */
111 #endif
112 #ifdef USE_MMAP
113 # include <sys/types.h>
114 # include <sys/mman.h>
115 # include <sys/stat.h>
116 # include <fcntl.h>
117 #endif
118
119 #ifdef SUNOS5SIGS
120 # include <sys/siginfo.h>
121 # undef setjmp
122 # undef longjmp
123 # define setjmp(env) sigsetjmp(env, 1)
124 # define longjmp(env, val) siglongjmp(env, val)
125 # define jmp_buf sigjmp_buf
126 #endif
127
128 #ifdef DJGPP
129   /* Apparently necessary for djgpp 2.01.  May casuse problems with     */
130   /* other versions.                                                    */
131   typedef long unsigned int caddr_t;
132 #endif
133
134 #ifdef PCR
135 # include "il/PCR_IL.h"
136 # include "th/PCR_ThCtl.h"
137 # include "mm/PCR_MM.h"
138 #endif
139
140 #if !defined(NO_EXECUTE_PERMISSION)
141 # define OPT_PROT_EXEC PROT_EXEC
142 #else
143 # define OPT_PROT_EXEC 0
144 #endif
145
146 #if defined(SEARCH_FOR_DATA_START)
147   /* The following doesn't work if the GC is in a dynamic library.      */
148   /* The I386 case can be handled without a search.  The Alpha case     */
149   /* used to be handled differently as well, but the rules changed      */
150   /* for recent Linux versions.  This seems to be the easiest way to    */
151   /* cover all versions.                                                */
152   ptr_t GC_data_start;
153
154   extern char * GC_copyright[];  /* Any data symbol would do. */
155
156   void GC_init_linux_data_start()
157   {
158     extern ptr_t GC_find_limit();
159
160     GC_data_start = GC_find_limit((ptr_t)GC_copyright, FALSE);
161   }
162 #endif
163
164 # ifdef ECOS
165
166 # ifndef ECOS_GC_MEMORY_SIZE
167 # define ECOS_GC_MEMORY_SIZE (448 * 1024)
168 # endif /* ECOS_GC_MEMORY_SIZE */
169
170 // setjmp() function, as described in ANSI para 7.6.1.1
171 #define setjmp( __env__ )  hal_setjmp( __env__ )
172
173 // FIXME: This is a simple way of allocating memory which is
174 // compatible with ECOS early releases.  Later releases use a more
175 // sophisticated means of allocating memory than this simple static
176 // allocator, but this method is at least bound to work.
177 static char memory[ECOS_GC_MEMORY_SIZE];
178 static char *brk = memory;
179
180 static void *tiny_sbrk(ptrdiff_t increment)
181 {
182   void *p = brk;
183
184   brk += increment;
185
186   if (brk >  memory + sizeof memory)
187     {
188       brk -= increment;
189       return NULL;
190     }
191
192   return p;
193 }
194 #define sbrk tiny_sbrk
195 # endif /* ECOS */
196
197 # ifdef OS2
198
199 # include <stddef.h>
200
201 # if !defined(__IBMC__) && !defined(__WATCOMC__) /* e.g. EMX */
202
203 struct exe_hdr {
204     unsigned short      magic_number;
205     unsigned short      padding[29];
206     long                new_exe_offset;
207 };
208
209 #define E_MAGIC(x)      (x).magic_number
210 #define EMAGIC          0x5A4D  
211 #define E_LFANEW(x)     (x).new_exe_offset
212
213 struct e32_exe {
214     unsigned char       magic_number[2]; 
215     unsigned char       byte_order; 
216     unsigned char       word_order; 
217     unsigned long       exe_format_level;
218     unsigned short      cpu;       
219     unsigned short      os;
220     unsigned long       padding1[13];
221     unsigned long       object_table_offset;
222     unsigned long       object_count;    
223     unsigned long       padding2[31];
224 };
225
226 #define E32_MAGIC1(x)   (x).magic_number[0]
227 #define E32MAGIC1       'L'
228 #define E32_MAGIC2(x)   (x).magic_number[1]
229 #define E32MAGIC2       'X'
230 #define E32_BORDER(x)   (x).byte_order
231 #define E32LEBO         0
232 #define E32_WORDER(x)   (x).word_order
233 #define E32LEWO         0
234 #define E32_CPU(x)      (x).cpu
235 #define E32CPU286       1
236 #define E32_OBJTAB(x)   (x).object_table_offset
237 #define E32_OBJCNT(x)   (x).object_count
238
239 struct o32_obj {
240     unsigned long       size;  
241     unsigned long       base;
242     unsigned long       flags;  
243     unsigned long       pagemap;
244     unsigned long       mapsize; 
245     unsigned long       reserved;
246 };
247
248 #define O32_FLAGS(x)    (x).flags
249 #define OBJREAD         0x0001L
250 #define OBJWRITE        0x0002L
251 #define OBJINVALID      0x0080L
252 #define O32_SIZE(x)     (x).size
253 #define O32_BASE(x)     (x).base
254
255 # else  /* IBM's compiler */
256
257 /* A kludge to get around what appears to be a header file bug */
258 # ifndef WORD
259 #   define WORD unsigned short
260 # endif
261 # ifndef DWORD
262 #   define DWORD unsigned long
263 # endif
264
265 # define EXE386 1
266 # include <newexe.h>
267 # include <exe386.h>
268
269 # endif  /* __IBMC__ */
270
271 # define INCL_DOSEXCEPTIONS
272 # define INCL_DOSPROCESS
273 # define INCL_DOSERRORS
274 # define INCL_DOSMODULEMGR
275 # define INCL_DOSMEMMGR
276 # include <os2.h>
277
278
279 /* Disable and enable signals during nontrivial allocations     */
280
281 void GC_disable_signals(void)
282 {
283     ULONG nest;
284     
285     DosEnterMustComplete(&nest);
286     if (nest != 1) ABORT("nested GC_disable_signals");
287 }
288
289 void GC_enable_signals(void)
290 {
291     ULONG nest;
292     
293     DosExitMustComplete(&nest);
294     if (nest != 0) ABORT("GC_enable_signals");
295 }
296
297
298 # else
299
300 #  if !defined(PCR) && !defined(AMIGA) && !defined(MSWIN32) \
301       && !defined(MACOS) && !defined(DJGPP) && !defined(DOS4GW) \
302       && !defined(NO_SIGSET)
303
304 #   if defined(sigmask) && !defined(UTS4)
305         /* Use the traditional BSD interface */
306 #       define SIGSET_T int
307 #       define SIG_DEL(set, signal) (set) &= ~(sigmask(signal))
308 #       define SIG_FILL(set)  (set) = 0x7fffffff
309           /* Setting the leading bit appears to provoke a bug in some   */
310           /* longjmp implementations.  Most systems appear not to have  */
311           /* a signal 32.                                               */
312 #       define SIGSETMASK(old, new) (old) = sigsetmask(new)
313 #   else
314         /* Use POSIX/SYSV interface     */
315 #       define SIGSET_T sigset_t
316 #       define SIG_DEL(set, signal) sigdelset(&(set), (signal))
317 #       define SIG_FILL(set) sigfillset(&set)
318 #       define SIGSETMASK(old, new) sigprocmask(SIG_SETMASK, &(new), &(old))
319 #   endif
320
321 static GC_bool mask_initialized = FALSE;
322
323 static SIGSET_T new_mask;
324
325 static SIGSET_T old_mask;
326
327 static SIGSET_T dummy;
328
329 #if defined(PRINTSTATS) && !defined(THREADS)
330 # define CHECK_SIGNALS
331   int GC_sig_disabled = 0;
332 #endif
333
334 void GC_disable_signals()
335 {
336     if (!mask_initialized) {
337         SIG_FILL(new_mask);
338
339         SIG_DEL(new_mask, SIGSEGV);
340         SIG_DEL(new_mask, SIGILL);
341         SIG_DEL(new_mask, SIGQUIT);
342 #       ifdef SIGBUS
343             SIG_DEL(new_mask, SIGBUS);
344 #       endif
345 #       ifdef SIGIOT
346             SIG_DEL(new_mask, SIGIOT);
347 #       endif
348 #       ifdef SIGEMT
349             SIG_DEL(new_mask, SIGEMT);
350 #       endif
351 #       ifdef SIGTRAP
352             SIG_DEL(new_mask, SIGTRAP);
353 #       endif 
354         mask_initialized = TRUE;
355     }
356 #   ifdef CHECK_SIGNALS
357         if (GC_sig_disabled != 0) ABORT("Nested disables");
358         GC_sig_disabled++;
359 #   endif
360     SIGSETMASK(old_mask,new_mask);
361 }
362
363 void GC_enable_signals()
364 {
365 #   ifdef CHECK_SIGNALS
366         if (GC_sig_disabled != 1) ABORT("Unmatched enable");
367         GC_sig_disabled--;
368 #   endif
369     SIGSETMASK(dummy,old_mask);
370 }
371
372 #  endif  /* !PCR */
373
374 # endif /*!OS/2 */
375
376 /* Ivan Demakov: simplest way (to me) */
377 #if defined (DOS4GW) || defined (NO_SIGSET)
378   void GC_disable_signals() { }
379   void GC_enable_signals() { }
380 #endif
381
382 /* Find the page size */
383 word GC_page_size;
384
385 # ifdef MSWIN32
386   void GC_setpagesize()
387   {
388     SYSTEM_INFO sysinfo;
389     
390     GetSystemInfo(&sysinfo);
391     GC_page_size = sysinfo.dwPageSize;
392   }
393
394 # else
395 #   if defined(MPROTECT_VDB) || defined(PROC_VDB) || defined(USE_MMAP) \
396        || defined(USE_MUNMAP)
397         void GC_setpagesize()
398         {
399             GC_page_size = GETPAGESIZE();
400         }
401 #   else
402         /* It's acceptable to fake it. */
403         void GC_setpagesize()
404         {
405             GC_page_size = HBLKSIZE;
406         }
407 #   endif
408 # endif
409
410 /* 
411  * Find the base of the stack. 
412  * Used only in single-threaded environment.
413  * With threads, GC_mark_roots needs to know how to do this.
414  * Called with allocator lock held.
415  */
416 # ifdef MSWIN32 
417 # define is_writable(prot) ((prot) == PAGE_READWRITE \
418                             || (prot) == PAGE_WRITECOPY \
419                             || (prot) == PAGE_EXECUTE_READWRITE \
420                             || (prot) == PAGE_EXECUTE_WRITECOPY)
421 /* Return the number of bytes that are writable starting at p.  */
422 /* The pointer p is assumed to be page aligned.                 */
423 /* If base is not 0, *base becomes the beginning of the         */
424 /* allocation region containing p.                              */
425 word GC_get_writable_length(ptr_t p, ptr_t *base)
426 {
427     MEMORY_BASIC_INFORMATION buf;
428     word result;
429     word protect;
430     
431     result = VirtualQuery(p, &buf, sizeof(buf));
432     if (result != sizeof(buf)) ABORT("Weird VirtualQuery result");
433     if (base != 0) *base = (ptr_t)(buf.AllocationBase);
434     protect = (buf.Protect & ~(PAGE_GUARD | PAGE_NOCACHE));
435     if (!is_writable(protect)) {
436         return(0);
437     }
438     if (buf.State != MEM_COMMIT) return(0);
439     return(buf.RegionSize);
440 }
441
442 ptr_t GC_get_stack_base()
443 {
444     int dummy;
445     ptr_t sp = (ptr_t)(&dummy);
446     ptr_t trunc_sp = (ptr_t)((word)sp & ~(GC_page_size - 1));
447     word size = GC_get_writable_length(trunc_sp, 0);
448    
449     return(trunc_sp + size);
450 }
451
452
453 # else
454
455 # ifdef OS2
456
457 ptr_t GC_get_stack_base()
458 {
459     PTIB ptib;
460     PPIB ppib;
461     
462     if (DosGetInfoBlocks(&ptib, &ppib) != NO_ERROR) {
463         GC_err_printf0("DosGetInfoBlocks failed\n");
464         ABORT("DosGetInfoBlocks failed\n");
465     }
466     return((ptr_t)(ptib -> tib_pstacklimit));
467 }
468
469 # else
470
471 # ifdef AMIGA
472
473 ptr_t GC_get_stack_base()
474 {
475     struct Process *proc = (struct Process*)SysBase->ThisTask;
476  
477     /* Reference: Amiga Guru Book Pages: 42,567,574 */
478     if (proc->pr_Task.tc_Node.ln_Type==NT_PROCESS
479         && proc->pr_CLI != NULL) {
480         /* first ULONG is StackSize */
481         /*longPtr = proc->pr_ReturnAddr;
482         size = longPtr[0];*/
483
484         return (char *)proc->pr_ReturnAddr + sizeof(ULONG);
485     } else {
486         return (char *)proc->pr_Task.tc_SPUpper;
487     }
488 }
489
490 #if 0 /* old version */
491 ptr_t GC_get_stack_base()
492 {
493     extern struct WBStartup *_WBenchMsg;
494     extern long __base;
495     extern long __stack;
496     struct Task *task;
497     struct Process *proc;
498     struct CommandLineInterface *cli;
499     long size;
500
501     if ((task = FindTask(0)) == 0) {
502         GC_err_puts("Cannot find own task structure\n");
503         ABORT("task missing");
504     }
505     proc = (struct Process *)task;
506     cli = BADDR(proc->pr_CLI);
507
508     if (_WBenchMsg != 0 || cli == 0) {
509         size = (char *)task->tc_SPUpper - (char *)task->tc_SPLower;
510     } else {
511         size = cli->cli_DefaultStack * 4;
512     }
513     return (ptr_t)(__base + GC_max(size, __stack));
514 }
515 #endif /* 0 */
516
517 # else /* !AMIGA, !OS2, ... */
518
519 # ifdef NEED_FIND_LIMIT
520   /* Some tools to implement HEURISTIC2 */
521 #   define MIN_PAGE_SIZE 256    /* Smallest conceivable page size, bytes */
522     /* static */ jmp_buf GC_jmp_buf;
523     
524     /*ARGSUSED*/
525     void GC_fault_handler(sig)
526     int sig;
527     {
528         longjmp(GC_jmp_buf, 1);
529     }
530
531 #   ifdef __STDC__
532         typedef void (*handler)(int);
533 #   else
534         typedef void (*handler)();
535 #   endif
536
537 #   if defined(SUNOS5SIGS) || defined(IRIX5) || defined(OSF1)
538         static struct sigaction old_segv_act;
539 #       if defined(_sigargs) || defined(HPUX) /* !Irix6.x */
540             static struct sigaction old_bus_act;
541 #       endif
542 #   else
543         static handler old_segv_handler, old_bus_handler;
544 #   endif
545     
546     void GC_setup_temporary_fault_handler()
547     {
548 # ifndef ECOS
549 #       if defined(SUNOS5SIGS) || defined(IRIX5) || defined(OSF1)
550           struct sigaction      act;
551
552           act.sa_handler        = GC_fault_handler;
553           act.sa_flags          = SA_RESTART | SA_NODEFER;
554           /* The presence of SA_NODEFER represents yet another gross    */
555           /* hack.  Under Solaris 2.3, siglongjmp doesn't appear to     */
556           /* interact correctly with -lthread.  We hide the confusion   */
557           /* by making sure that signal handling doesn't affect the     */
558           /* signal mask.                                               */
559
560           (void) sigemptyset(&act.sa_mask);
561 #         ifdef IRIX_THREADS
562                 /* Older versions have a bug related to retrieving and  */
563                 /* and setting a handler at the same time.              */
564                 (void) sigaction(SIGSEGV, 0, &old_segv_act);
565                 (void) sigaction(SIGSEGV, &act, 0);
566 #         else
567                 (void) sigaction(SIGSEGV, &act, &old_segv_act);
568 #               if defined(IRIX5) && defined(_sigargs) /* Irix 5.x, not 6.x */ \
569                    || defined(HPUX)
570                     /* Under Irix 5.x or HP/UX, we may get SIGBUS.      */
571                     /* Pthreads doesn't exist under Irix 5.x, so we     */
572                     /* don't have to worry in the threads case.         */
573                     (void) sigaction(SIGBUS, &act, &old_bus_act);
574 #               endif
575 #         endif /* IRIX_THREADS */
576 #       else
577           old_segv_handler = signal(SIGSEGV, GC_fault_handler);
578 #         ifdef SIGBUS
579             old_bus_handler = signal(SIGBUS, GC_fault_handler);
580 #         endif
581 #       endif
582 # endif /* ECOS */
583     }
584     
585     void GC_reset_fault_handler()
586     {
587 # ifndef ECOS
588 #       if defined(SUNOS5SIGS) || defined(IRIX5) || defined(OSF1)
589           (void) sigaction(SIGSEGV, &old_segv_act, 0);
590 #         if defined(IRIX5) && defined(_sigargs) /* Irix 5.x, not 6.x */ \
591              || defined(HPUX)
592               (void) sigaction(SIGBUS, &old_bus_act, 0);
593 #         endif
594 #       else
595           (void) signal(SIGSEGV, old_segv_handler);
596 #         ifdef SIGBUS
597             (void) signal(SIGBUS, old_bus_handler);
598 #         endif
599 #       endif
600 # endif /* ECOS */
601     }
602
603     /* Return the first nonaddressible location > p (up) or     */
604     /* the smallest location q s.t. [q,p] is addressible (!up). */
605     ptr_t GC_find_limit(p, up)
606     ptr_t p;
607     GC_bool up;
608     {
609 # ifndef ECOS
610         static VOLATILE ptr_t result;
611                 /* Needs to be static, since otherwise it may not be    */
612                 /* preserved across the longjmp.  Can safely be         */
613                 /* static since it's only called once, with the         */
614                 /* allocation lock held.                                */
615
616
617         GC_setup_temporary_fault_handler();
618         if (setjmp(GC_jmp_buf) == 0) {
619             result = (ptr_t)(((word)(p))
620                               & ~(MIN_PAGE_SIZE-1));
621             for (;;) {
622                 if (up) {
623                     result += MIN_PAGE_SIZE;
624                 } else {
625                     result -= MIN_PAGE_SIZE;
626                 }
627                 GC_noop1((word)(*result));
628             }
629         }
630         GC_reset_fault_handler();
631         if (!up) {
632             result += MIN_PAGE_SIZE;
633         }
634         return(result);
635 # else /* ECOS */
636         abort();
637 # endif /* ECOS */
638     }
639 # endif
640
641 # ifndef ECOS
642
643 #ifdef LINUX_STACKBOTTOM
644
645 #include <sys/types.h>
646 #include <sys/stat.h>
647 #include <fcntl.h>
648
649 # define STAT_SKIP 27   /* Number of fields preceding startstack        */
650                         /* field in /proc/self/stat                     */
651
652   ptr_t GC_linux_stack_base(void)
653   {
654     /* We read the stack base value from /proc/self/stat.  We do this   */
655     /* using direct I/O system calls in order to avoid calling malloc   */
656     /* in case REDIRECT_MALLOC is defined.                              */ 
657 #   define STAT_BUF_SIZE 4096
658 #   ifdef USE_LD_WRAP
659 #       define STAT_READ __real_read
660 #   else
661 #       define STAT_READ read
662 #   endif    
663     char stat_buf[STAT_BUF_SIZE];
664     int f;
665     char c;
666     word result = 0;
667     size_t i, buf_offset = 0;
668
669     f = open("/proc/self/stat", O_RDONLY);
670     if (f < 0 || STAT_READ(f, stat_buf, STAT_BUF_SIZE) < 2 * STAT_SKIP) {
671         ABORT("Couldn't read /proc/self/stat");
672     }
673     c = stat_buf[buf_offset++];
674     /* Skip the required number of fields.  This number is hopefully    */
675     /* constant across all Linux implementations.                       */
676       for (i = 0; i < STAT_SKIP; ++i) {
677         while (isspace(c)) c = stat_buf[buf_offset++];
678         while (!isspace(c)) c = stat_buf[buf_offset++];
679       }
680     while (isspace(c)) c = stat_buf[buf_offset++];
681     while (isdigit(c)) {
682       result *= 10;
683       result += c - '0';
684       c = stat_buf[buf_offset++];
685     }
686     close(f);
687     if (result < 0x10000000) ABORT("Absurd stack bottom value");
688     return (ptr_t)result;
689   }
690
691 #endif /* LINUX_STACKBOTTOM */
692
693 ptr_t GC_get_stack_base()
694 {
695     word dummy;
696     ptr_t result;
697
698 #   define STACKBOTTOM_ALIGNMENT_M1 ((word)STACK_GRAN - 1)
699
700 #  if defined(STACKBASE)
701     extern ptr_t STACKBASE;
702     return(STACKBASE);
703 #   else
704 #   ifdef STACKBOTTOM
705         return(STACKBOTTOM);
706 #   else
707 #       ifdef HEURISTIC1
708 #          ifdef STACK_GROWS_DOWN
709              result = (ptr_t)((((word)(&dummy))
710                                + STACKBOTTOM_ALIGNMENT_M1)
711                               & ~STACKBOTTOM_ALIGNMENT_M1);
712 #          else
713              result = (ptr_t)(((word)(&dummy))
714                               & ~STACKBOTTOM_ALIGNMENT_M1);
715 #          endif
716 #       endif /* HEURISTIC1 */
717 #       ifdef LINUX_STACKBOTTOM
718            result = GC_linux_stack_base();
719 #       endif
720 #       ifdef HEURISTIC2
721 #           ifdef STACK_GROWS_DOWN
722                 result = GC_find_limit((ptr_t)(&dummy), TRUE);
723 #               ifdef HEURISTIC2_LIMIT
724                     if (result > HEURISTIC2_LIMIT
725                         && (ptr_t)(&dummy) < HEURISTIC2_LIMIT) {
726                             result = HEURISTIC2_LIMIT;
727                     }
728 #               endif
729 #           else
730                 result = GC_find_limit((ptr_t)(&dummy), FALSE);
731 #               ifdef HEURISTIC2_LIMIT
732                     if (result < HEURISTIC2_LIMIT
733                         && (ptr_t)(&dummy) > HEURISTIC2_LIMIT) {
734                             result = HEURISTIC2_LIMIT;
735                     }
736 #               endif
737 #           endif
738
739 #       endif /* HEURISTIC2 */
740 #       ifdef STACK_GROWS_DOWN
741             if (result == 0) result = (ptr_t)(signed_word)(-sizeof(ptr_t));
742 #       endif
743         return(result);
744 #   endif /* STACKBOTTOM */
745 #   endif /* STACKBASE */
746 }
747 # endif /* ECOS */
748
749 # endif /* ! AMIGA */
750 # endif /* ! OS2 */
751 # endif /* ! MSWIN32 */
752
753 /*
754  * Register static data segment(s) as roots.
755  * If more data segments are added later then they need to be registered
756  * add that point (as we do with SunOS dynamic loading),
757  * or GC_mark_roots needs to check for them (as we do with PCR).
758  * Called with allocator lock held.
759  */
760
761 # ifdef OS2
762
763 void GC_register_data_segments()
764 {
765     PTIB ptib;
766     PPIB ppib;
767     HMODULE module_handle;
768 #   define PBUFSIZ 512
769     UCHAR path[PBUFSIZ];
770     FILE * myexefile;
771     struct exe_hdr hdrdos;      /* MSDOS header.        */
772     struct e32_exe hdr386;      /* Real header for my executable */
773     struct o32_obj seg; /* Currrent segment */
774     int nsegs;
775     
776     
777     if (DosGetInfoBlocks(&ptib, &ppib) != NO_ERROR) {
778         GC_err_printf0("DosGetInfoBlocks failed\n");
779         ABORT("DosGetInfoBlocks failed\n");
780     }
781     module_handle = ppib -> pib_hmte;
782     if (DosQueryModuleName(module_handle, PBUFSIZ, path) != NO_ERROR) {
783         GC_err_printf0("DosQueryModuleName failed\n");
784         ABORT("DosGetInfoBlocks failed\n");
785     }
786     myexefile = fopen(path, "rb");
787     if (myexefile == 0) {
788         GC_err_puts("Couldn't open executable ");
789         GC_err_puts(path); GC_err_puts("\n");
790         ABORT("Failed to open executable\n");
791     }
792     if (fread((char *)(&hdrdos), 1, sizeof hdrdos, myexefile) < sizeof hdrdos) {
793         GC_err_puts("Couldn't read MSDOS header from ");
794         GC_err_puts(path); GC_err_puts("\n");
795         ABORT("Couldn't read MSDOS header");
796     }
797     if (E_MAGIC(hdrdos) != EMAGIC) {
798         GC_err_puts("Executable has wrong DOS magic number: ");
799         GC_err_puts(path); GC_err_puts("\n");
800         ABORT("Bad DOS magic number");
801     }
802     if (fseek(myexefile, E_LFANEW(hdrdos), SEEK_SET) != 0) {
803         GC_err_puts("Seek to new header failed in ");
804         GC_err_puts(path); GC_err_puts("\n");
805         ABORT("Bad DOS magic number");
806     }
807     if (fread((char *)(&hdr386), 1, sizeof hdr386, myexefile) < sizeof hdr386) {
808         GC_err_puts("Couldn't read MSDOS header from ");
809         GC_err_puts(path); GC_err_puts("\n");
810         ABORT("Couldn't read OS/2 header");
811     }
812     if (E32_MAGIC1(hdr386) != E32MAGIC1 || E32_MAGIC2(hdr386) != E32MAGIC2) {
813         GC_err_puts("Executable has wrong OS/2 magic number:");
814         GC_err_puts(path); GC_err_puts("\n");
815         ABORT("Bad OS/2 magic number");
816     }
817     if ( E32_BORDER(hdr386) != E32LEBO || E32_WORDER(hdr386) != E32LEWO) {
818         GC_err_puts("Executable %s has wrong byte order: ");
819         GC_err_puts(path); GC_err_puts("\n");
820         ABORT("Bad byte order");
821     }
822     if ( E32_CPU(hdr386) == E32CPU286) {
823         GC_err_puts("GC can't handle 80286 executables: ");
824         GC_err_puts(path); GC_err_puts("\n");
825         EXIT();
826     }
827     if (fseek(myexefile, E_LFANEW(hdrdos) + E32_OBJTAB(hdr386),
828               SEEK_SET) != 0) {
829         GC_err_puts("Seek to object table failed: ");
830         GC_err_puts(path); GC_err_puts("\n");
831         ABORT("Seek to object table failed");
832     }
833     for (nsegs = E32_OBJCNT(hdr386); nsegs > 0; nsegs--) {
834       int flags;
835       if (fread((char *)(&seg), 1, sizeof seg, myexefile) < sizeof seg) {
836         GC_err_puts("Couldn't read obj table entry from ");
837         GC_err_puts(path); GC_err_puts("\n");
838         ABORT("Couldn't read obj table entry");
839       }
840       flags = O32_FLAGS(seg);
841       if (!(flags & OBJWRITE)) continue;
842       if (!(flags & OBJREAD)) continue;
843       if (flags & OBJINVALID) {
844           GC_err_printf0("Object with invalid pages?\n");
845           continue;
846       } 
847       GC_add_roots_inner(O32_BASE(seg), O32_BASE(seg)+O32_SIZE(seg), FALSE);
848     }
849 }
850
851 # else
852
853 # ifdef MSWIN32
854   /* Unfortunately, we have to handle win32s very differently from NT,  */
855   /* Since VirtualQuery has very different semantics.  In particular,   */
856   /* under win32s a VirtualQuery call on an unmapped page returns an    */
857   /* invalid result.  Under GC_register_data_segments is a noop and     */
858   /* all real work is done by GC_register_dynamic_libraries.  Under     */
859   /* win32s, we cannot find the data segments associated with dll's.    */
860   /* We rgister the main data segment here.                             */
861   GC_bool GC_win32s = FALSE;    /* We're running under win32s.  */
862   
863   GC_bool GC_is_win32s()
864   {
865       DWORD v = GetVersion();
866       
867       /* Check that this is not NT, and Windows major version <= 3      */
868       return ((v & 0x80000000) && (v & 0xff) <= 3);
869   }
870   
871   void GC_init_win32()
872   {
873       GC_win32s = GC_is_win32s();
874   }
875   
876   /* Return the smallest address a such that VirtualQuery               */
877   /* returns correct results for all addresses between a and start.     */
878   /* Assumes VirtualQuery returns correct information for start.        */
879   ptr_t GC_least_described_address(ptr_t start)
880   {  
881     MEMORY_BASIC_INFORMATION buf;
882     SYSTEM_INFO sysinfo;
883     DWORD result;
884     LPVOID limit;
885     ptr_t p;
886     LPVOID q;
887     
888     GetSystemInfo(&sysinfo);
889     limit = sysinfo.lpMinimumApplicationAddress;
890     p = (ptr_t)((word)start & ~(GC_page_size - 1));
891     for (;;) {
892         q = (LPVOID)(p - GC_page_size);
893         if ((ptr_t)q > (ptr_t)p /* underflow */ || q < limit) break;
894         result = VirtualQuery(q, &buf, sizeof(buf));
895         if (result != sizeof(buf) || buf.AllocationBase == 0) break;
896         p = (ptr_t)(buf.AllocationBase);
897     }
898     return(p);
899   }
900   
901   /* Is p the start of either the malloc heap, or of one of our */
902   /* heap sections?                                             */
903   GC_bool GC_is_heap_base (ptr_t p)
904   {
905      
906      register unsigned i;
907      
908 #    ifndef REDIRECT_MALLOC
909        static ptr_t malloc_heap_pointer = 0;
910      
911        if (0 == malloc_heap_pointer) {
912          MEMORY_BASIC_INFORMATION buf;
913          register DWORD result = VirtualQuery(malloc(1), &buf, sizeof(buf));
914          
915          if (result != sizeof(buf)) {
916              ABORT("Weird VirtualQuery result");
917          }
918          malloc_heap_pointer = (ptr_t)(buf.AllocationBase);
919        }
920        if (p == malloc_heap_pointer) return(TRUE);
921 #    endif
922      for (i = 0; i < GC_n_heap_bases; i++) {
923          if (GC_heap_bases[i] == p) return(TRUE);
924      }
925      return(FALSE);
926   }
927   
928   void GC_register_root_section(ptr_t static_root)
929   {
930       MEMORY_BASIC_INFORMATION buf;
931       SYSTEM_INFO sysinfo;
932       DWORD result;
933       DWORD protect;
934       LPVOID p;
935       char * base;
936       char * limit, * new_limit;
937     
938       if (!GC_win32s) return;
939       p = base = limit = GC_least_described_address(static_root);
940       GetSystemInfo(&sysinfo);
941       while (p < sysinfo.lpMaximumApplicationAddress) {
942         result = VirtualQuery(p, &buf, sizeof(buf));
943         if (result != sizeof(buf) || buf.AllocationBase == 0
944             || GC_is_heap_base(buf.AllocationBase)) break;
945         new_limit = (char *)p + buf.RegionSize;
946         protect = buf.Protect;
947         if (buf.State == MEM_COMMIT
948             && is_writable(protect)) {
949             if ((char *)p == limit) {
950                 limit = new_limit;
951             } else {
952                 if (base != limit) GC_add_roots_inner(base, limit, FALSE);
953                 base = p;
954                 limit = new_limit;
955             }
956         }
957         if (p > (LPVOID)new_limit /* overflow */) break;
958         p = (LPVOID)new_limit;
959       }
960       if (base != limit) GC_add_roots_inner(base, limit, FALSE);
961   }
962   
963   void GC_register_data_segments()
964   {
965       static char dummy;
966       
967       GC_register_root_section((ptr_t)(&dummy));
968   }
969 # else
970 # ifdef AMIGA
971
972    void GC_register_data_segments()
973    {
974      struct Process     *proc;
975      struct CommandLineInterface *cli;
976      BPTR myseglist;
977      ULONG *data;
978  
979      int        num;
980
981
982 #    ifdef __GNUC__
983         ULONG dataSegSize;
984         GC_bool found_segment = FALSE;
985         extern char __data_size[];
986
987         dataSegSize=__data_size+8;
988         /* Can`t find the Location of __data_size, because
989            it`s possible that is it, inside the segment. */
990
991 #     endif
992
993         proc= (struct Process*)SysBase->ThisTask;
994
995         /* Reference: Amiga Guru Book Pages: 538ff,565,573
996                      and XOper.asm */
997         if (proc->pr_Task.tc_Node.ln_Type==NT_PROCESS) {
998           if (proc->pr_CLI == NULL) {
999             myseglist = proc->pr_SegList;
1000           } else {
1001             /* ProcLoaded       'Loaded as a command: '*/
1002             cli = BADDR(proc->pr_CLI);
1003             myseglist = cli->cli_Module;
1004           }
1005         } else {
1006           ABORT("Not a Process.");
1007         }
1008
1009         if (myseglist == NULL) {
1010             ABORT("Arrrgh.. can't find segments, aborting");
1011         }
1012
1013         /* xoper hunks Shell Process */
1014
1015         num=0;
1016         for (data = (ULONG *)BADDR(myseglist); data != NULL;
1017              data = (ULONG *)BADDR(data[0])) {
1018           if (((ULONG) GC_register_data_segments < (ULONG) &data[1]) ||
1019               ((ULONG) GC_register_data_segments > (ULONG) &data[1] + data[-1])) {
1020 #             ifdef __GNUC__
1021                 if (dataSegSize == data[-1]) {
1022                   found_segment = TRUE;
1023                 }
1024 #             endif
1025               GC_add_roots_inner((char *)&data[1],
1026                                  ((char *)&data[1]) + data[-1], FALSE);
1027           }
1028           ++num;
1029         } /* for */
1030 #       ifdef __GNUC__
1031            if (!found_segment) {
1032              ABORT("Can`t find correct Segments.\nSolution: Use an newer version of ixemul.library");
1033            }
1034 #       endif
1035   }
1036
1037 #if 0 /* old version */
1038   void GC_register_data_segments()
1039   {
1040     extern struct WBStartup *_WBenchMsg;
1041     struct Process      *proc;
1042     struct CommandLineInterface *cli;
1043     BPTR myseglist;
1044     ULONG *data;
1045
1046     if ( _WBenchMsg != 0 ) {
1047         if ((myseglist = _WBenchMsg->sm_Segment) == 0) {
1048             GC_err_puts("No seglist from workbench\n");
1049             return;
1050         }
1051     } else {
1052         if ((proc = (struct Process *)FindTask(0)) == 0) {
1053             GC_err_puts("Cannot find process structure\n");
1054             return;
1055         }
1056         if ((cli = BADDR(proc->pr_CLI)) == 0) {
1057             GC_err_puts("No CLI\n");
1058             return;
1059         }
1060         if ((myseglist = cli->cli_Module) == 0) {
1061             GC_err_puts("No seglist from CLI\n");
1062             return;
1063         }
1064     }
1065
1066     for (data = (ULONG *)BADDR(myseglist); data != 0;
1067          data = (ULONG *)BADDR(data[0])) {
1068 #        ifdef AMIGA_SKIP_SEG
1069            if (((ULONG) GC_register_data_segments < (ULONG) &data[1]) ||
1070            ((ULONG) GC_register_data_segments > (ULONG) &data[1] + data[-1])) {
1071 #        else
1072            {
1073 #        endif /* AMIGA_SKIP_SEG */
1074           GC_add_roots_inner((char *)&data[1],
1075                              ((char *)&data[1]) + data[-1], FALSE);
1076          }
1077     }
1078   }
1079 #endif /* old version */
1080
1081
1082 # else
1083
1084 # if (defined(SVR4) || defined(AUX) || defined(DGUX) \
1085       || (defined(LINUX) && defined(SPARC))) && !defined(PCR)
1086 char * GC_SysVGetDataStart(max_page_size, etext_addr)
1087 int max_page_size;
1088 int * etext_addr;
1089 {
1090     word text_end = ((word)(etext_addr) + sizeof(word) - 1)
1091                     & ~(sizeof(word) - 1);
1092         /* etext rounded to word boundary       */
1093     word next_page = ((text_end + (word)max_page_size - 1)
1094                       & ~((word)max_page_size - 1));
1095     word page_offset = (text_end & ((word)max_page_size - 1));
1096     VOLATILE char * result = (char *)(next_page + page_offset);
1097     /* Note that this isnt equivalent to just adding            */
1098     /* max_page_size to &etext if &etext is at a page boundary  */
1099     
1100     GC_setup_temporary_fault_handler();
1101     if (setjmp(GC_jmp_buf) == 0) {
1102         /* Try writing to the address.  */
1103         *result = *result;
1104         GC_reset_fault_handler();
1105     } else {
1106         GC_reset_fault_handler();
1107         /* We got here via a longjmp.  The address is not readable.     */
1108         /* This is known to happen under Solaris 2.4 + gcc, which place */
1109         /* string constants in the text segment, but after etext.       */
1110         /* Use plan B.  Note that we now know there is a gap between    */
1111         /* text and data segments, so plan A bought us something.       */
1112         result = (char *)GC_find_limit((ptr_t)(DATAEND) - MIN_PAGE_SIZE, FALSE);
1113     }
1114     return((char *)result);
1115 }
1116 # endif
1117
1118
1119 void GC_register_data_segments()
1120 {
1121 #   if !defined(PCR) && !defined(SRC_M3) && !defined(NEXT) && !defined(MACOS) \
1122        && !defined(MACOSX)
1123 #     if defined(REDIRECT_MALLOC) && defined(SOLARIS_THREADS)
1124         /* As of Solaris 2.3, the Solaris threads implementation        */
1125         /* allocates the data structure for the initial thread with     */
1126         /* sbrk at process startup.  It needs to be scanned, so that    */
1127         /* we don't lose some malloc allocated data structures          */
1128         /* hanging from it.  We're on thin ice here ...                 */
1129         extern caddr_t sbrk();
1130
1131         GC_add_roots_inner(DATASTART, (char *)sbrk(0), FALSE);
1132 #     else
1133         GC_add_roots_inner(DATASTART, (char *)(DATAEND), FALSE);
1134 #     endif
1135 #   endif
1136 #   if !defined(PCR) && (defined(NEXT) || defined(MACOSX))
1137       GC_add_roots_inner(DATASTART, (char *) get_end(), FALSE);
1138 #   endif
1139 #   if defined(MACOS)
1140     {
1141 #   if defined(THINK_C)
1142         extern void* GC_MacGetDataStart(void);
1143         /* globals begin above stack and end at a5. */
1144         GC_add_roots_inner((ptr_t)GC_MacGetDataStart(),
1145                            (ptr_t)LMGetCurrentA5(), FALSE);
1146 #   else
1147 #     if defined(__MWERKS__)
1148 #       if !__POWERPC__
1149           extern void* GC_MacGetDataStart(void);
1150           /* MATTHEW: Function to handle Far Globals (CW Pro 3) */
1151 #         if __option(far_data)
1152           extern void* GC_MacGetDataEnd(void);
1153 #         endif
1154           /* globals begin above stack and end at a5. */
1155           GC_add_roots_inner((ptr_t)GC_MacGetDataStart(),
1156                              (ptr_t)LMGetCurrentA5(), FALSE);
1157           /* MATTHEW: Handle Far Globals */                          
1158 #         if __option(far_data)
1159       /* Far globals follow he QD globals: */
1160           GC_add_roots_inner((ptr_t)LMGetCurrentA5(),
1161                              (ptr_t)GC_MacGetDataEnd(), FALSE);
1162 #         endif
1163 #       else
1164           extern char __data_start__[], __data_end__[];
1165           GC_add_roots_inner((ptr_t)&__data_start__,
1166                              (ptr_t)&__data_end__, FALSE);
1167 #       endif /* __POWERPC__ */
1168 #     endif /* __MWERKS__ */
1169 #   endif /* !THINK_C */
1170     }
1171 #   endif /* MACOS */
1172
1173     /* Dynamic libraries are added at every collection, since they may  */
1174     /* change.                                                          */
1175 }
1176
1177 # endif  /* ! AMIGA */
1178 # endif  /* ! MSWIN32 */
1179 # endif  /* ! OS2 */
1180
1181 /*
1182  * Auxiliary routines for obtaining memory from OS.
1183  */
1184  
1185 # if !defined(OS2) && !defined(PCR) && !defined(AMIGA) \
1186         && !defined(MSWIN32) && !defined(MACOS) && !defined(DOS4GW)
1187
1188 # ifdef SUNOS4
1189     extern caddr_t sbrk();
1190 # endif
1191 # ifdef __STDC__
1192 #   define SBRK_ARG_T ptrdiff_t
1193 # else
1194 #   define SBRK_ARG_T int
1195 # endif
1196
1197 # ifdef RS6000
1198 /* The compiler seems to generate speculative reads one past the end of */
1199 /* an allocated object.  Hence we need to make sure that the page       */
1200 /* following the last heap page is also mapped.                         */
1201 ptr_t GC_unix_get_mem(bytes)
1202 word bytes;
1203 {
1204     caddr_t cur_brk = (caddr_t)sbrk(0);
1205     caddr_t result;
1206     SBRK_ARG_T lsbs = (word)cur_brk & (GC_page_size-1);
1207     static caddr_t my_brk_val = 0;
1208     
1209     if ((SBRK_ARG_T)bytes < 0) return(0); /* too big */
1210     if (lsbs != 0) {
1211         if((caddr_t)(sbrk(GC_page_size - lsbs)) == (caddr_t)(-1)) return(0);
1212     }
1213     if (cur_brk == my_brk_val) {
1214         /* Use the extra block we allocated last time. */
1215         result = (ptr_t)sbrk((SBRK_ARG_T)bytes);
1216         if (result == (caddr_t)(-1)) return(0);
1217         result -= GC_page_size;
1218     } else {
1219         result = (ptr_t)sbrk(GC_page_size + (SBRK_ARG_T)bytes);
1220         if (result == (caddr_t)(-1)) return(0);
1221     }
1222     my_brk_val = result + bytes + GC_page_size; /* Always page aligned */
1223     return((ptr_t)result);
1224 }
1225
1226 #else  /* Not RS6000 */
1227
1228 #if defined(USE_MMAP)
1229 /* Tested only under IRIX5 and Solaris 2 */
1230
1231 #ifdef USE_MMAP_FIXED
1232 #   define GC_MMAP_FLAGS MAP_FIXED | MAP_PRIVATE
1233         /* Seems to yield better performance on Solaris 2, but can      */
1234         /* be unreliable if something is already mapped at the address. */
1235 #else
1236 #   define GC_MMAP_FLAGS MAP_PRIVATE
1237 #endif
1238
1239 ptr_t GC_unix_get_mem(bytes)
1240 word bytes;
1241 {
1242     static GC_bool initialized = FALSE;
1243     static int fd;
1244     void *result;
1245     static ptr_t last_addr = HEAP_START;
1246
1247     if (!initialized) {
1248         fd = open("/dev/zero", O_RDONLY);
1249         initialized = TRUE;
1250     }
1251     if (bytes & (GC_page_size -1)) ABORT("Bad GET_MEM arg");
1252     result = mmap(last_addr, bytes, PROT_READ | PROT_WRITE | OPT_PROT_EXEC,
1253                   GC_MMAP_FLAGS, fd, 0/* offset */);
1254     if (result == MAP_FAILED) return(0);
1255     last_addr = (ptr_t)result + bytes + GC_page_size - 1;
1256     last_addr = (ptr_t)((word)last_addr & ~(GC_page_size - 1));
1257     return((ptr_t)result);
1258 }
1259
1260 #else /* Not RS6000, not USE_MMAP */
1261 ptr_t GC_unix_get_mem(bytes)
1262 word bytes;
1263 {
1264   ptr_t result;
1265 # ifdef IRIX5
1266     /* Bare sbrk isn't thread safe.  Play by malloc rules.      */
1267     /* The equivalent may be needed on other systems as well.   */
1268     __LOCK_MALLOC();
1269 # endif
1270   {
1271     ptr_t cur_brk = (ptr_t)sbrk(0);
1272     SBRK_ARG_T lsbs = (word)cur_brk & (GC_page_size-1);
1273     
1274     if ((SBRK_ARG_T)bytes < 0) return(0); /* too big */
1275     if (lsbs != 0) {
1276         if((ptr_t)sbrk(GC_page_size - lsbs) == (ptr_t)(-1)) return(0);
1277     }
1278     result = (ptr_t)sbrk((SBRK_ARG_T)bytes);
1279     if (result == (ptr_t)(-1)) result = 0;
1280   }
1281 # ifdef IRIX5
1282     __UNLOCK_MALLOC();
1283 # endif
1284   return(result);
1285 }
1286
1287 #endif /* Not USE_MMAP */
1288 #endif /* Not RS6000 */
1289
1290 # endif /* UN*X */
1291
1292 # ifdef OS2
1293
1294 void * os2_alloc(size_t bytes)
1295 {
1296     void * result;
1297
1298     if (DosAllocMem(&result, bytes, PAG_EXECUTE | PAG_READ |
1299                                     PAG_WRITE | PAG_COMMIT)
1300                     != NO_ERROR) {
1301         return(0);
1302     }
1303     if (result == 0) return(os2_alloc(bytes));
1304     return(result);
1305 }
1306
1307 # endif /* OS2 */
1308
1309
1310 # ifdef MSWIN32
1311 word GC_n_heap_bases = 0;
1312
1313 ptr_t GC_win32_get_mem(bytes)
1314 word bytes;
1315 {
1316     ptr_t result;
1317     
1318     if (GC_win32s) {
1319         /* VirtualAlloc doesn't like PAGE_EXECUTE_READWRITE.    */
1320         /* There are also unconfirmed rumors of other           */
1321         /* problems, so we dodge the issue.                     */
1322         result = (ptr_t) GlobalAlloc(0, bytes + HBLKSIZE);
1323         result = (ptr_t)(((word)result + HBLKSIZE) & ~(HBLKSIZE-1));
1324     } else {
1325         result = (ptr_t) VirtualAlloc(NULL, bytes,
1326                                       MEM_COMMIT | MEM_RESERVE,
1327                                       PAGE_EXECUTE_READWRITE);
1328     }
1329     if (HBLKDISPL(result) != 0) ABORT("Bad VirtualAlloc result");
1330         /* If I read the documentation correctly, this can      */
1331         /* only happen if HBLKSIZE > 64k or not a power of 2.   */
1332     if (GC_n_heap_bases >= MAX_HEAP_SECTS) ABORT("Too many heap sections");
1333     GC_heap_bases[GC_n_heap_bases++] = result;
1334     return(result);                       
1335 }
1336
1337 void GC_win32_free_heap ()
1338 {
1339     if (GC_win32s) {
1340         while (GC_n_heap_bases > 0) {
1341             GlobalFree (GC_heap_bases[--GC_n_heap_bases]);
1342             GC_heap_bases[GC_n_heap_bases] = 0;
1343         }
1344     }
1345 }
1346
1347
1348 # endif
1349
1350 #ifdef USE_MUNMAP
1351
1352 /* For now, this only works on some Unix-like systems.  If you  */
1353 /* have something else, don't define USE_MUNMAP.                */
1354 /* We assume ANSI C to support this feature.                    */
1355 #include <unistd.h>
1356 #include <sys/mman.h>
1357 #include <sys/stat.h>
1358 #include <sys/types.h>
1359 #include <fcntl.h>
1360
1361 /* Compute a page aligned starting address for the unmap        */
1362 /* operation on a block of size bytes starting at start.        */
1363 /* Return 0 if the block is too small to make this feasible.    */
1364 ptr_t GC_unmap_start(ptr_t start, word bytes)
1365 {
1366     ptr_t result = start;
1367     /* Round start to next page boundary.       */
1368         result += GC_page_size - 1;
1369         result = (ptr_t)((word)result & ~(GC_page_size - 1));
1370     if (result + GC_page_size > start + bytes) return 0;
1371     return result;
1372 }
1373
1374 /* Compute end address for an unmap operation on the indicated  */
1375 /* block.                                                       */
1376 ptr_t GC_unmap_end(ptr_t start, word bytes)
1377 {
1378     ptr_t end_addr = start + bytes;
1379     end_addr = (ptr_t)((word)end_addr & ~(GC_page_size - 1));
1380     return end_addr;
1381 }
1382
1383 /* We assume that GC_remap is called on exactly the same range  */
1384 /* as a previous call to GC_unmap.  It is safe to consistently  */
1385 /* round the endpoints in both places.                          */
1386 void GC_unmap(ptr_t start, word bytes)
1387 {
1388     ptr_t start_addr = GC_unmap_start(start, bytes);
1389     ptr_t end_addr = GC_unmap_end(start, bytes);
1390     word len = end_addr - start_addr;
1391     if (0 == start_addr) return;
1392     if (munmap(start_addr, len) != 0) ABORT("munmap failed");
1393     GC_unmapped_bytes += len;
1394 }
1395
1396
1397 void GC_remap(ptr_t start, word bytes)
1398 {
1399     static int zero_descr = -1;
1400     ptr_t start_addr = GC_unmap_start(start, bytes);
1401     ptr_t end_addr = GC_unmap_end(start, bytes);
1402     word len = end_addr - start_addr;
1403     ptr_t result;
1404
1405     if (-1 == zero_descr) zero_descr = open("/dev/zero", O_RDWR);
1406     if (0 == start_addr) return;
1407     result = mmap(start_addr, len, PROT_READ | PROT_WRITE | OPT_PROT_EXEC,
1408                   MAP_FIXED | MAP_PRIVATE, zero_descr, 0);
1409     if (result != start_addr) {
1410         ABORT("mmap remapping failed");
1411     }
1412     GC_unmapped_bytes -= len;
1413 }
1414
1415 /* Two adjacent blocks have already been unmapped and are about to      */
1416 /* be merged.  Unmap the whole block.  This typically requires          */
1417 /* that we unmap a small section in the middle that was not previously  */
1418 /* unmapped due to alignment constraints.                               */
1419 void GC_unmap_gap(ptr_t start1, word bytes1, ptr_t start2, word bytes2)
1420 {
1421     ptr_t start1_addr = GC_unmap_start(start1, bytes1);
1422     ptr_t end1_addr = GC_unmap_end(start1, bytes1);
1423     ptr_t start2_addr = GC_unmap_start(start2, bytes2);
1424     ptr_t end2_addr = GC_unmap_end(start2, bytes2);
1425     ptr_t start_addr = end1_addr;
1426     ptr_t end_addr = start2_addr;
1427     word len;
1428     GC_ASSERT(start1 + bytes1 == start2);
1429     if (0 == start1_addr) start_addr = GC_unmap_start(start1, bytes1 + bytes2);
1430     if (0 == start2_addr) end_addr = GC_unmap_end(start1, bytes1 + bytes2);
1431     if (0 == start_addr) return;
1432     len = end_addr - start_addr;
1433     if (len != 0 && munmap(start_addr, len) != 0) ABORT("munmap failed");
1434     GC_unmapped_bytes += len;
1435 }
1436
1437 #endif /* USE_MUNMAP */
1438
1439 /* Routine for pushing any additional roots.  In THREADS        */
1440 /* environment, this is also responsible for marking from       */
1441 /* thread stacks.  In the SRC_M3 case, it also handles          */
1442 /* global variables.                                            */
1443 #ifndef THREADS
1444 void (*GC_push_other_roots)() = 0;
1445 #else /* THREADS */
1446
1447 # ifdef PCR
1448 PCR_ERes GC_push_thread_stack(PCR_Th_T *t, PCR_Any dummy)
1449 {
1450     struct PCR_ThCtl_TInfoRep info;
1451     PCR_ERes result;
1452     
1453     info.ti_stkLow = info.ti_stkHi = 0;
1454     result = PCR_ThCtl_GetInfo(t, &info);
1455     GC_push_all_stack((ptr_t)(info.ti_stkLow), (ptr_t)(info.ti_stkHi));
1456     return(result);
1457 }
1458
1459 /* Push the contents of an old object. We treat this as stack   */
1460 /* data only becasue that makes it robust against mark stack    */
1461 /* overflow.                                                    */
1462 PCR_ERes GC_push_old_obj(void *p, size_t size, PCR_Any data)
1463 {
1464     GC_push_all_stack((ptr_t)p, (ptr_t)p + size);
1465     return(PCR_ERes_okay);
1466 }
1467
1468
1469 void GC_default_push_other_roots()
1470 {
1471     /* Traverse data allocated by previous memory managers.             */
1472         {
1473           extern struct PCR_MM_ProcsRep * GC_old_allocator;
1474           
1475           if ((*(GC_old_allocator->mmp_enumerate))(PCR_Bool_false,
1476                                                    GC_push_old_obj, 0)
1477               != PCR_ERes_okay) {
1478               ABORT("Old object enumeration failed");
1479           }
1480         }
1481     /* Traverse all thread stacks. */
1482         if (PCR_ERes_IsErr(
1483                 PCR_ThCtl_ApplyToAllOtherThreads(GC_push_thread_stack,0))
1484               || PCR_ERes_IsErr(GC_push_thread_stack(PCR_Th_CurrThread(), 0))) {
1485               ABORT("Thread stack marking failed\n");
1486         }
1487 }
1488
1489 # endif /* PCR */
1490
1491 # ifdef SRC_M3
1492
1493 # ifdef ALL_INTERIOR_POINTERS
1494     --> misconfigured
1495 # endif
1496
1497
1498 extern void ThreadF__ProcessStacks();
1499
1500 void GC_push_thread_stack(start, stop)
1501 word start, stop;
1502 {
1503    GC_push_all_stack((ptr_t)start, (ptr_t)stop + sizeof(word));
1504 }
1505
1506 /* Push routine with M3 specific calling convention. */
1507 GC_m3_push_root(dummy1, p, dummy2, dummy3)
1508 word *p;
1509 ptr_t dummy1, dummy2;
1510 int dummy3;
1511 {
1512     word q = *p;
1513     
1514     if ((ptr_t)(q) >= GC_least_plausible_heap_addr
1515          && (ptr_t)(q) < GC_greatest_plausible_heap_addr) {
1516          GC_push_one_checked(q,FALSE);
1517     }
1518 }
1519
1520 /* M3 set equivalent to RTHeap.TracedRefTypes */
1521 typedef struct { int elts[1]; }  RefTypeSet;
1522 RefTypeSet GC_TracedRefTypes = {{0x1}};
1523
1524 /* From finalize.c */
1525 extern void GC_push_finalizer_structures();
1526
1527 /* From stubborn.c: */
1528 # ifdef STUBBORN_ALLOC
1529     extern GC_PTR * GC_changing_list_start;
1530 # endif
1531
1532
1533 void GC_default_push_other_roots()
1534 {
1535     /* Use the M3 provided routine for finding static roots.    */
1536     /* This is a bit dubious, since it presumes no C roots.     */
1537     /* We handle the collector roots explicitly.                */
1538        {
1539 #        ifdef STUBBORN_ALLOC
1540            GC_push_one(GC_changing_list_start);
1541 #        endif
1542          GC_push_finalizer_structures();
1543          RTMain__GlobalMapProc(GC_m3_push_root, 0, GC_TracedRefTypes);
1544        }
1545         if (GC_words_allocd > 0) {
1546             ThreadF__ProcessStacks(GC_push_thread_stack);
1547         }
1548         /* Otherwise this isn't absolutely necessary, and we have       */
1549         /* startup ordering problems.                                   */
1550 }
1551
1552 # endif /* SRC_M3 */
1553
1554 # if defined(SOLARIS_THREADS) || defined(WIN32_THREADS) \
1555      || defined(IRIX_THREADS) || defined(LINUX_THREADS) \
1556      || defined(IRIX_JDK_THREADS) || defined(HPUX_THREADS)
1557
1558 extern void GC_push_all_stacks();
1559
1560 void GC_default_push_other_roots()
1561 {
1562     GC_push_all_stacks();
1563 }
1564
1565 # endif /* SOLARIS_THREADS || ... */
1566
1567 void (*GC_push_other_roots)() = GC_default_push_other_roots;
1568
1569 #endif
1570
1571 /*
1572  * Routines for accessing dirty  bits on virtual pages.
1573  * We plan to eventaually implement four strategies for doing so:
1574  * DEFAULT_VDB: A simple dummy implementation that treats every page
1575  *              as possibly dirty.  This makes incremental collection
1576  *              useless, but the implementation is still correct.
1577  * PCR_VDB:     Use PPCRs virtual dirty bit facility.
1578  * PROC_VDB:    Use the /proc facility for reading dirty bits.  Only
1579  *              works under some SVR4 variants.  Even then, it may be
1580  *              too slow to be entirely satisfactory.  Requires reading
1581  *              dirty bits for entire address space.  Implementations tend
1582  *              to assume that the client is a (slow) debugger.
1583  * MPROTECT_VDB:Protect pages and then catch the faults to keep track of
1584  *              dirtied pages.  The implementation (and implementability)
1585  *              is highly system dependent.  This usually fails when system
1586  *              calls write to a protected page.  We prevent the read system
1587  *              call from doing so.  It is the clients responsibility to
1588  *              make sure that other system calls are similarly protected
1589  *              or write only to the stack.
1590  */
1591  
1592 GC_bool GC_dirty_maintained = FALSE;
1593
1594 # ifdef DEFAULT_VDB
1595
1596 /* All of the following assume the allocation lock is held, and */
1597 /* signals are disabled.                                        */
1598
1599 /* The client asserts that unallocated pages in the heap are never      */
1600 /* written.                                                             */
1601
1602 /* Initialize virtual dirty bit implementation.                 */
1603 void GC_dirty_init()
1604 {
1605     GC_dirty_maintained = TRUE;
1606 }
1607
1608 /* Retrieve system dirty bits for heap to a local buffer.       */
1609 /* Restore the systems notion of which pages are dirty.         */
1610 void GC_read_dirty()
1611 {}
1612
1613 /* Is the HBLKSIZE sized page at h marked dirty in the local buffer?    */
1614 /* If the actual page size is different, this returns TRUE if any       */
1615 /* of the pages overlapping h are dirty.  This routine may err on the   */
1616 /* side of labelling pages as dirty (and this implementation does).     */
1617 /*ARGSUSED*/
1618 GC_bool GC_page_was_dirty(h)
1619 struct hblk *h;
1620 {
1621     return(TRUE);
1622 }
1623
1624 /*
1625  * The following two routines are typically less crucial.  They matter
1626  * most with large dynamic libraries, or if we can't accurately identify
1627  * stacks, e.g. under Solaris 2.X.  Otherwise the following default
1628  * versions are adequate.
1629  */
1630  
1631 /* Could any valid GC heap pointer ever have been written to this page? */
1632 /*ARGSUSED*/
1633 GC_bool GC_page_was_ever_dirty(h)
1634 struct hblk *h;
1635 {
1636     return(TRUE);
1637 }
1638
1639 /* Reset the n pages starting at h to "was never dirty" status. */
1640 void GC_is_fresh(h, n)
1641 struct hblk *h;
1642 word n;
1643 {
1644 }
1645
1646 /* A call hints that h is about to be written.  */
1647 /* May speed up some dirty bit implementations. */
1648 /*ARGSUSED*/
1649 void GC_write_hint(h)
1650 struct hblk *h;
1651 {
1652 }
1653
1654 # endif /* DEFAULT_VDB */
1655
1656
1657 # ifdef MPROTECT_VDB
1658
1659 /*
1660  * See DEFAULT_VDB for interface descriptions.
1661  */
1662
1663 /*
1664  * This implementation maintains dirty bits itself by catching write
1665  * faults and keeping track of them.  We assume nobody else catches
1666  * SIGBUS or SIGSEGV.  We assume no write faults occur in system calls
1667  * except as a result of a read system call.  This means clients must
1668  * either ensure that system calls do not touch the heap, or must
1669  * provide their own wrappers analogous to the one for read.
1670  * We assume the page size is a multiple of HBLKSIZE.
1671  * This implementation is currently SunOS 4.X and IRIX 5.X specific, though we
1672  * tried to use portable code where easily possible.  It is known
1673  * not to work under a number of other systems.
1674  */
1675
1676 # ifndef MSWIN32
1677
1678 #   include <sys/mman.h>
1679 #   include <signal.h>
1680 #   include <sys/syscall.h>
1681
1682 #   define PROTECT(addr, len) \
1683           if (mprotect((caddr_t)(addr), (size_t)(len), \
1684                        PROT_READ | OPT_PROT_EXEC) < 0) { \
1685             ABORT("mprotect failed"); \
1686           }
1687 #   define UNPROTECT(addr, len) \
1688           if (mprotect((caddr_t)(addr), (size_t)(len), \
1689                        PROT_WRITE | PROT_READ | OPT_PROT_EXEC ) < 0) { \
1690             ABORT("un-mprotect failed"); \
1691           }
1692           
1693 # else
1694
1695 #   include <signal.h>
1696
1697     static DWORD protect_junk;
1698 #   define PROTECT(addr, len) \
1699           if (!VirtualProtect((addr), (len), PAGE_EXECUTE_READ, \
1700                               &protect_junk)) { \
1701             DWORD last_error = GetLastError(); \
1702             GC_printf1("Last error code: %lx\n", last_error); \
1703             ABORT("VirtualProtect failed"); \
1704           }
1705 #   define UNPROTECT(addr, len) \
1706           if (!VirtualProtect((addr), (len), PAGE_EXECUTE_READWRITE, \
1707                               &protect_junk)) { \
1708             ABORT("un-VirtualProtect failed"); \
1709           }
1710           
1711 # endif
1712
1713 #if defined(SUNOS4) || defined(FREEBSD)
1714     typedef void (* SIG_PF)();
1715 #endif
1716 #if defined(SUNOS5SIGS) || defined(OSF1) || defined(LINUX)
1717 # ifdef __STDC__
1718     typedef void (* SIG_PF)(int);
1719 # else
1720     typedef void (* SIG_PF)();
1721 # endif
1722 #endif
1723 #if defined(MSWIN32)
1724     typedef LPTOP_LEVEL_EXCEPTION_FILTER SIG_PF;
1725 #   undef SIG_DFL
1726 #   define SIG_DFL (LPTOP_LEVEL_EXCEPTION_FILTER) (-1)
1727 #endif
1728
1729 #if defined(IRIX5) || defined(OSF1)
1730     typedef void (* REAL_SIG_PF)(int, int, struct sigcontext *);
1731 #endif
1732 #if defined(SUNOS5SIGS)
1733 # ifdef HPUX
1734 #   define SIGINFO __siginfo
1735 # else
1736 #   define SIGINFO siginfo
1737 # endif
1738 # ifdef __STDC__
1739     typedef void (* REAL_SIG_PF)(int, struct SIGINFO *, void *);
1740 # else
1741     typedef void (* REAL_SIG_PF)();
1742 # endif
1743 #endif
1744 #if defined(LINUX)
1745 #   include <linux/version.h>
1746 #   if (LINUX_VERSION_CODE >= 0x20100) && !defined(M68K) || defined(ALPHA) || defined(IA64)
1747       typedef struct sigcontext s_c;
1748 #   else
1749       typedef struct sigcontext_struct s_c;
1750 #   endif
1751 #   if defined(ALPHA) || defined(M68K)
1752       typedef void (* REAL_SIG_PF)(int, int, s_c *);
1753 #   else
1754 #     if defined(IA64)
1755         typedef void (* REAL_SIG_PF)(int, siginfo_t *, s_c *);
1756 #     else
1757         typedef void (* REAL_SIG_PF)(int, s_c);
1758 #     endif
1759 #   endif
1760 #   ifdef ALPHA
1761     /* Retrieve fault address from sigcontext structure by decoding     */
1762     /* instruction.                                                     */
1763     char * get_fault_addr(s_c *sc) {
1764         unsigned instr;
1765         word faultaddr;
1766
1767         instr = *((unsigned *)(sc->sc_pc));
1768         faultaddr = sc->sc_regs[(instr >> 16) & 0x1f];
1769         faultaddr += (word) (((int)instr << 16) >> 16);
1770         return (char *)faultaddr;
1771     }
1772 #   endif /* !ALPHA */
1773 # endif
1774
1775 SIG_PF GC_old_bus_handler;
1776 SIG_PF GC_old_segv_handler;     /* Also old MSWIN32 ACCESS_VIOLATION filter */
1777
1778 /*ARGSUSED*/
1779 # if defined (SUNOS4) || defined(FREEBSD)
1780     void GC_write_fault_handler(sig, code, scp, addr)
1781     int sig, code;
1782     struct sigcontext *scp;
1783     char * addr;
1784 #   ifdef SUNOS4
1785 #     define SIG_OK (sig == SIGSEGV || sig == SIGBUS)
1786 #     define CODE_OK (FC_CODE(code) == FC_PROT \
1787                     || (FC_CODE(code) == FC_OBJERR \
1788                        && FC_ERRNO(code) == FC_PROT))
1789 #   endif
1790 #   ifdef FREEBSD
1791 #     define SIG_OK (sig == SIGBUS)
1792 #     define CODE_OK (code == BUS_PAGE_FAULT)
1793 #   endif
1794 # endif
1795 # if defined(IRIX5) || defined(OSF1)
1796 #   include <errno.h>
1797     void GC_write_fault_handler(int sig, int code, struct sigcontext *scp)
1798 #   define SIG_OK (sig == SIGSEGV)
1799 #   ifdef OSF1
1800 #     define CODE_OK (code == 2 /* experimentally determined */)
1801 #   endif
1802 #   ifdef IRIX5
1803 #     define CODE_OK (code == EACCES)
1804 #   endif
1805 # endif
1806 # if defined(LINUX)
1807 #   if defined(ALPHA) || defined(M68K)
1808       void GC_write_fault_handler(int sig, int code, s_c * sc)
1809 #   else
1810 #     if defined(IA64)
1811         void GC_write_fault_handler(int sig, siginfo_t * si, s_c * scp)
1812 #     else
1813         void GC_write_fault_handler(int sig, s_c sc)
1814 #     endif
1815 #   endif
1816 #   define SIG_OK (sig == SIGSEGV)
1817 #   define CODE_OK TRUE
1818         /* Empirically c.trapno == 14, on IA32, but is that useful?     */
1819         /* Should probably consider alignment issues on other           */
1820         /* architectures.                                               */
1821 # endif
1822 # if defined(SUNOS5SIGS)
1823 #  ifdef __STDC__
1824     void GC_write_fault_handler(int sig, struct SIGINFO *scp, void * context)
1825 #  else
1826     void GC_write_fault_handler(sig, scp, context)
1827     int sig;
1828     struct SIGINFO *scp;
1829     void * context;
1830 #  endif
1831 #   ifdef HPUX
1832 #     define SIG_OK (sig == SIGSEGV || sig == SIGBUS)
1833 #     define CODE_OK (scp -> si_code == SEGV_ACCERR) \
1834                      || (scp -> si_code == BUS_ADRERR) \
1835                      || (scp -> si_code == BUS_UNKNOWN) \
1836                      || (scp -> si_code == SEGV_UNKNOWN) \
1837                      || (scp -> si_code == BUS_OBJERR)
1838 #   else
1839 #     define SIG_OK (sig == SIGSEGV)
1840 #     define CODE_OK (scp -> si_code == SEGV_ACCERR)
1841 #   endif
1842 # endif
1843 # if defined(MSWIN32)
1844     LONG WINAPI GC_write_fault_handler(struct _EXCEPTION_POINTERS *exc_info)
1845 #   define SIG_OK (exc_info -> ExceptionRecord -> ExceptionCode == \
1846                         EXCEPTION_ACCESS_VIOLATION)
1847 #   define CODE_OK (exc_info -> ExceptionRecord -> ExceptionInformation[0] == 1)
1848                         /* Write fault */
1849 # endif
1850 {
1851     register unsigned i;
1852 #   ifdef IRIX5
1853         char * addr = (char *) (size_t) (scp -> sc_badvaddr);
1854 #   endif
1855 #   if defined(OSF1) && defined(ALPHA)
1856         char * addr = (char *) (scp -> sc_traparg_a0);
1857 #   endif
1858 #   ifdef SUNOS5SIGS
1859         char * addr = (char *) (scp -> si_addr);
1860 #   endif
1861 #   ifdef LINUX
1862 #     ifdef I386
1863         char * addr = (char *) (sc.cr2);
1864 #     else
1865 #       if defined(M68K)
1866           char * addr = NULL;
1867
1868           struct sigcontext *scp = (struct sigcontext *)(&sc);
1869
1870           int format = (scp->sc_formatvec >> 12) & 0xf;
1871           unsigned long *framedata = (unsigned long *)(scp + 1); 
1872           unsigned long ea;
1873
1874           if (format == 0xa || format == 0xb) {
1875                 /* 68020/030 */
1876                 ea = framedata[2];
1877           } else if (format == 7) {
1878                 /* 68040 */
1879                 ea = framedata[3];
1880           } else if (format == 4) {
1881                 /* 68060 */
1882                 ea = framedata[0];
1883                 if (framedata[1] & 0x08000000) {
1884                         /* correct addr on misaligned access */
1885                         ea = (ea+4095)&(~4095);
1886                 }
1887           }     
1888           addr = (char *)ea;
1889 #       else
1890 #         ifdef ALPHA
1891             char * addr = get_fault_addr(sc);
1892 #         else
1893 #           ifdef IA64
1894               char * addr = si -> si_addr;
1895               /* I believe this is claimed to work on all platforms for */
1896               /* Linux 2.3.47 and later.  Hopefully we don't have to    */
1897               /* worry about earlier kernels on IA64.                   */
1898 #           else
1899 #             if defined(POWERPC)
1900                 char * addr = (char *) (sc.regs->dar);
1901 #             else
1902                 --> architecture not supported
1903 #             endif
1904 #           endif
1905 #         endif
1906 #       endif
1907 #     endif
1908 #   endif
1909 #   if defined(MSWIN32)
1910         char * addr = (char *) (exc_info -> ExceptionRecord
1911                                 -> ExceptionInformation[1]);
1912 #       define sig SIGSEGV
1913 #   endif
1914     
1915     if (SIG_OK && CODE_OK) {
1916         register struct hblk * h =
1917                         (struct hblk *)((word)addr & ~(GC_page_size-1));
1918         GC_bool in_allocd_block;
1919         
1920 #       ifdef SUNOS5SIGS
1921             /* Address is only within the correct physical page.        */
1922             in_allocd_block = FALSE;
1923             for (i = 0; i < divHBLKSZ(GC_page_size); i++) {
1924               if (HDR(h+i) != 0) {
1925                 in_allocd_block = TRUE;
1926               }
1927             }
1928 #       else
1929             in_allocd_block = (HDR(addr) != 0);
1930 #       endif
1931         if (!in_allocd_block) {
1932             /* Heap blocks now begin and end on page boundaries */
1933             SIG_PF old_handler;
1934             
1935             if (sig == SIGSEGV) {
1936                 old_handler = GC_old_segv_handler;
1937             } else {
1938                 old_handler = GC_old_bus_handler;
1939             }
1940             if (old_handler == SIG_DFL) {
1941 #               ifndef MSWIN32
1942                     GC_err_printf1("Segfault at 0x%lx\n", addr);
1943                     ABORT("Unexpected bus error or segmentation fault");
1944 #               else
1945                     return(EXCEPTION_CONTINUE_SEARCH);
1946 #               endif
1947             } else {
1948 #               if defined (SUNOS4) || defined(FREEBSD)
1949                     (*old_handler) (sig, code, scp, addr);
1950                     return;
1951 #               endif
1952 #               if defined (SUNOS5SIGS)
1953                     (*(REAL_SIG_PF)old_handler) (sig, scp, context);
1954                     return;
1955 #               endif
1956 #               if defined (LINUX)
1957 #                   if defined(ALPHA) || defined(M68K)
1958                         (*(REAL_SIG_PF)old_handler) (sig, code, sc);
1959 #                   else 
1960 #                     if defined(IA64)
1961                         (*(REAL_SIG_PF)old_handler) (sig, si, scp);
1962 #                     else
1963                         (*(REAL_SIG_PF)old_handler) (sig, sc);
1964 #                     endif
1965 #                   endif
1966                     return;
1967 #               endif
1968 #               if defined (IRIX5) || defined(OSF1)
1969                     (*(REAL_SIG_PF)old_handler) (sig, code, scp);
1970                     return;
1971 #               endif
1972 #               ifdef MSWIN32
1973                     return((*old_handler)(exc_info));
1974 #               endif
1975             }
1976         }
1977         for (i = 0; i < divHBLKSZ(GC_page_size); i++) {
1978             register int index = PHT_HASH(h+i);
1979             
1980             set_pht_entry_from_index(GC_dirty_pages, index);
1981         }
1982         UNPROTECT(h, GC_page_size);
1983 #       if defined(OSF1) || defined(LINUX)
1984             /* These reset the signal handler each time by default. */
1985             signal(SIGSEGV, (SIG_PF) GC_write_fault_handler);
1986 #       endif
1987         /* The write may not take place before dirty bits are read.     */
1988         /* But then we'll fault again ...                               */
1989 #       ifdef MSWIN32
1990             return(EXCEPTION_CONTINUE_EXECUTION);
1991 #       else
1992             return;
1993 #       endif
1994     }
1995 #ifdef MSWIN32
1996     return EXCEPTION_CONTINUE_SEARCH;
1997 #else
1998     GC_err_printf1("Segfault at 0x%lx\n", addr);
1999     ABORT("Unexpected bus error or segmentation fault");
2000 #endif
2001 }
2002
2003 /*
2004  * We hold the allocation lock.  We expect block h to be written
2005  * shortly.
2006  */
2007 void GC_write_hint(h)
2008 struct hblk *h;
2009 {
2010     register struct hblk * h_trunc;
2011     register unsigned i;
2012     register GC_bool found_clean;
2013     
2014     if (!GC_dirty_maintained) return;
2015     h_trunc = (struct hblk *)((word)h & ~(GC_page_size-1));
2016     found_clean = FALSE;
2017     for (i = 0; i < divHBLKSZ(GC_page_size); i++) {
2018         register int index = PHT_HASH(h_trunc+i);
2019             
2020         if (!get_pht_entry_from_index(GC_dirty_pages, index)) {
2021             found_clean = TRUE;
2022             set_pht_entry_from_index(GC_dirty_pages, index);
2023         }
2024     }
2025     if (found_clean) {
2026         UNPROTECT(h_trunc, GC_page_size);
2027     }
2028 }
2029
2030 void GC_dirty_init()
2031 {
2032 #if defined(SUNOS5SIGS) || defined(IRIX5) /* || defined(OSF1) */
2033     struct sigaction    act, oldact;
2034 #   ifdef IRIX5
2035         act.sa_flags    = SA_RESTART;
2036         act.sa_handler  = GC_write_fault_handler;
2037 #   else
2038         act.sa_flags    = SA_RESTART | SA_SIGINFO;
2039         act.sa_sigaction = GC_write_fault_handler;
2040 #   endif
2041     (void)sigemptyset(&act.sa_mask); 
2042 #endif
2043 #   ifdef PRINTSTATS
2044         GC_printf0("Inititalizing mprotect virtual dirty bit implementation\n");
2045 #   endif
2046     GC_dirty_maintained = TRUE;
2047     if (GC_page_size % HBLKSIZE != 0) {
2048         GC_err_printf0("Page size not multiple of HBLKSIZE\n");
2049         ABORT("Page size not multiple of HBLKSIZE");
2050     }
2051 #   if defined(SUNOS4) || defined(FREEBSD)
2052       GC_old_bus_handler = signal(SIGBUS, GC_write_fault_handler);
2053       if (GC_old_bus_handler == SIG_IGN) {
2054         GC_err_printf0("Previously ignored bus error!?");
2055         GC_old_bus_handler = SIG_DFL;
2056       }
2057       if (GC_old_bus_handler != SIG_DFL) {
2058 #       ifdef PRINTSTATS
2059           GC_err_printf0("Replaced other SIGBUS handler\n");
2060 #       endif
2061       }
2062 #   endif
2063 #   if defined(OSF1) || defined(SUNOS4) || defined(LINUX)
2064       GC_old_segv_handler = signal(SIGSEGV, (SIG_PF)GC_write_fault_handler);
2065       if (GC_old_segv_handler == SIG_IGN) {
2066         GC_err_printf0("Previously ignored segmentation violation!?");
2067         GC_old_segv_handler = SIG_DFL;
2068       }
2069       if (GC_old_segv_handler != SIG_DFL) {
2070 #       ifdef PRINTSTATS
2071           GC_err_printf0("Replaced other SIGSEGV handler\n");
2072 #       endif
2073       }
2074 #   endif
2075 #   if defined(SUNOS5SIGS) || defined(IRIX5)
2076 #     if defined(IRIX_THREADS) || defined(IRIX_JDK_THREADS)
2077         sigaction(SIGSEGV, 0, &oldact);
2078         sigaction(SIGSEGV, &act, 0);
2079 #     else
2080         sigaction(SIGSEGV, &act, &oldact);
2081 #     endif
2082 #     if defined(_sigargs)
2083         /* This is Irix 5.x, not 6.x.  Irix 5.x does not have   */
2084         /* sa_sigaction.                                        */
2085         GC_old_segv_handler = oldact.sa_handler;
2086 #     else /* Irix 6.x or SUNOS5SIGS */
2087         if (oldact.sa_flags & SA_SIGINFO) {
2088           GC_old_segv_handler = (SIG_PF)(oldact.sa_sigaction);
2089         } else {
2090           GC_old_segv_handler = oldact.sa_handler;
2091         }
2092 #     endif
2093       if (GC_old_segv_handler == SIG_IGN) {
2094              GC_err_printf0("Previously ignored segmentation violation!?");
2095              GC_old_segv_handler = SIG_DFL;
2096       }
2097       if (GC_old_segv_handler != SIG_DFL) {
2098 #       ifdef PRINTSTATS
2099           GC_err_printf0("Replaced other SIGSEGV handler\n");
2100 #       endif
2101       }
2102 #     ifdef HPUX
2103           sigaction(SIGBUS, &act, &oldact);
2104           GC_old_bus_handler = oldact.sa_handler;
2105           if (GC_old_segv_handler != SIG_DFL) {
2106 #           ifdef PRINTSTATS
2107               GC_err_printf0("Replaced other SIGBUS handler\n");
2108 #           endif
2109           }
2110 #     endif
2111 #    endif
2112 #   if defined(MSWIN32)
2113       GC_old_segv_handler = SetUnhandledExceptionFilter(GC_write_fault_handler);
2114       if (GC_old_segv_handler != NULL) {
2115 #       ifdef PRINTSTATS
2116           GC_err_printf0("Replaced other UnhandledExceptionFilter\n");
2117 #       endif
2118       } else {
2119           GC_old_segv_handler = SIG_DFL;
2120       }
2121 #   endif
2122 }
2123
2124
2125
2126 void GC_protect_heap()
2127 {
2128     ptr_t start;
2129     word len;
2130     unsigned i;
2131     
2132     for (i = 0; i < GC_n_heap_sects; i++) {
2133         start = GC_heap_sects[i].hs_start;
2134         len = GC_heap_sects[i].hs_bytes;
2135         PROTECT(start, len);
2136     }
2137 }
2138
2139 /* We assume that either the world is stopped or its OK to lose dirty   */
2140 /* bits while this is happenning (as in GC_enable_incremental).         */
2141 void GC_read_dirty()
2142 {
2143     BCOPY((word *)GC_dirty_pages, GC_grungy_pages,
2144           (sizeof GC_dirty_pages));
2145     BZERO((word *)GC_dirty_pages, (sizeof GC_dirty_pages));
2146     GC_protect_heap();
2147 }
2148
2149 GC_bool GC_page_was_dirty(h)
2150 struct hblk * h;
2151 {
2152     register word index = PHT_HASH(h);
2153     
2154     return(HDR(h) == 0 || get_pht_entry_from_index(GC_grungy_pages, index));
2155 }
2156
2157 /*
2158  * Acquiring the allocation lock here is dangerous, since this
2159  * can be called from within GC_call_with_alloc_lock, and the cord
2160  * package does so.  On systems that allow nested lock acquisition, this
2161  * happens to work.
2162  * On other systems, SET_LOCK_HOLDER and friends must be suitably defined.
2163  */
2164  
2165 void GC_begin_syscall()
2166 {
2167     if (!I_HOLD_LOCK()) LOCK();
2168 }
2169
2170 void GC_end_syscall()
2171 {
2172     if (!I_HOLD_LOCK()) UNLOCK();
2173 }
2174
2175 void GC_unprotect_range(addr, len)
2176 ptr_t addr;
2177 word len;
2178 {
2179     struct hblk * start_block;
2180     struct hblk * end_block;
2181     register struct hblk *h;
2182     ptr_t obj_start;
2183     
2184     if (!GC_incremental) return;
2185     obj_start = GC_base(addr);
2186     if (obj_start == 0) return;
2187     if (GC_base(addr + len - 1) != obj_start) {
2188         ABORT("GC_unprotect_range(range bigger than object)");
2189     }
2190     start_block = (struct hblk *)((word)addr & ~(GC_page_size - 1));
2191     end_block = (struct hblk *)((word)(addr + len - 1) & ~(GC_page_size - 1));
2192     end_block += GC_page_size/HBLKSIZE - 1;
2193     for (h = start_block; h <= end_block; h++) {
2194         register word index = PHT_HASH(h);
2195         
2196         set_pht_entry_from_index(GC_dirty_pages, index);
2197     }
2198     UNPROTECT(start_block,
2199               ((ptr_t)end_block - (ptr_t)start_block) + HBLKSIZE);
2200 }
2201
2202 #if !defined(MSWIN32) && !defined(LINUX_THREADS)
2203 /* Replacement for UNIX system call.     */
2204 /* Other calls that write to the heap    */
2205 /* should be handled similarly.          */
2206 # if defined(__STDC__) && !defined(SUNOS4)
2207 #   include <unistd.h>
2208 #   include <sys/uio.h>
2209     ssize_t read(int fd, void *buf, size_t nbyte)
2210 # else
2211 #   ifndef LINT
2212       int read(fd, buf, nbyte)
2213 #   else
2214       int GC_read(fd, buf, nbyte)
2215 #   endif
2216     int fd;
2217     char *buf;
2218     int nbyte;
2219 # endif
2220 {
2221     int result;
2222     
2223     GC_begin_syscall();
2224     GC_unprotect_range(buf, (word)nbyte);
2225 #   if defined(IRIX5) || defined(LINUX_THREADS)
2226         /* Indirect system call may not always be easily available.     */
2227         /* We could call _read, but that would interfere with the       */
2228         /* libpthread interception of read.                             */
2229         /* On Linux, we have to be careful with the linuxthreads        */
2230         /* read interception.                                           */
2231         {
2232             struct iovec iov;
2233
2234             iov.iov_base = buf;
2235             iov.iov_len = nbyte;
2236             result = readv(fd, &iov, 1);
2237         }
2238 #   else
2239         /* The two zero args at the end of this list are because one
2240            IA-64 syscall() implementation actually requires six args
2241            to be passed, even though they aren't always used. */
2242         result = syscall(SYS_read, fd, buf, nbyte, 0, 0);
2243 #   endif
2244     GC_end_syscall();
2245     return(result);
2246 }
2247 #endif /* !MSWIN32 && !LINUX */
2248
2249 #ifdef USE_LD_WRAP
2250     /* We use the GNU ld call wrapping facility.                        */
2251     /* This requires that the linker be invoked with "--wrap read".     */
2252     /* This can be done by passing -Wl,"--wrap read" to gcc.            */
2253     /* I'm not sure that this actually wraps whatever version of read   */
2254     /* is called by stdio.  That code also mentions __read.             */
2255 #   include <unistd.h>
2256     ssize_t __wrap_read(int fd, void *buf, size_t nbyte)
2257     {
2258         int result;
2259
2260         GC_begin_syscall();
2261         GC_unprotect_range(buf, (word)nbyte);
2262         result = __real_read(fd, buf, nbyte);
2263         GC_end_syscall();
2264         return(result);
2265     }
2266
2267     /* We should probably also do this for __read, or whatever stdio    */
2268     /* actually calls.                                                  */
2269 #endif
2270
2271 /*ARGSUSED*/
2272 GC_bool GC_page_was_ever_dirty(h)
2273 struct hblk *h;
2274 {
2275     return(TRUE);
2276 }
2277
2278 /* Reset the n pages starting at h to "was never dirty" status. */
2279 /*ARGSUSED*/
2280 void GC_is_fresh(h, n)
2281 struct hblk *h;
2282 word n;
2283 {
2284 }
2285
2286 # endif /* MPROTECT_VDB */
2287
2288 # ifdef PROC_VDB
2289
2290 /*
2291  * See DEFAULT_VDB for interface descriptions.
2292  */
2293  
2294 /*
2295  * This implementaion assumes a Solaris 2.X like /proc pseudo-file-system
2296  * from which we can read page modified bits.  This facility is far from
2297  * optimal (e.g. we would like to get the info for only some of the
2298  * address space), but it avoids intercepting system calls.
2299  */
2300
2301 #include <errno.h>
2302 #include <sys/types.h>
2303 #include <sys/signal.h>
2304 #include <sys/fault.h>
2305 #include <sys/syscall.h>
2306 #include <sys/procfs.h>
2307 #include <sys/stat.h>
2308 #include <fcntl.h>
2309
2310 #define INITIAL_BUF_SZ 4096
2311 word GC_proc_buf_size = INITIAL_BUF_SZ;
2312 char *GC_proc_buf;
2313
2314 #ifdef SOLARIS_THREADS
2315 /* We don't have exact sp values for threads.  So we count on   */
2316 /* occasionally declaring stack pages to be fresh.  Thus we     */
2317 /* need a real implementation of GC_is_fresh.  We can't clear   */
2318 /* entries in GC_written_pages, since that would declare all    */
2319 /* pages with the given hash address to be fresh.               */
2320 #   define MAX_FRESH_PAGES 8*1024       /* Must be power of 2 */
2321     struct hblk ** GC_fresh_pages;      /* A direct mapped cache.       */
2322                                         /* Collisions are dropped.      */
2323
2324 #   define FRESH_PAGE_SLOT(h) (divHBLKSZ((word)(h)) & (MAX_FRESH_PAGES-1))
2325 #   define ADD_FRESH_PAGE(h) \
2326         GC_fresh_pages[FRESH_PAGE_SLOT(h)] = (h)
2327 #   define PAGE_IS_FRESH(h) \
2328         (GC_fresh_pages[FRESH_PAGE_SLOT(h)] == (h) && (h) != 0)
2329 #endif
2330
2331 /* Add all pages in pht2 to pht1 */
2332 void GC_or_pages(pht1, pht2)
2333 page_hash_table pht1, pht2;
2334 {
2335     register int i;
2336     
2337     for (i = 0; i < PHT_SIZE; i++) pht1[i] |= pht2[i];
2338 }
2339
2340 int GC_proc_fd;
2341
2342 void GC_dirty_init()
2343 {
2344     int fd;
2345     char buf[30];
2346
2347     GC_dirty_maintained = TRUE;
2348     if (GC_words_allocd != 0 || GC_words_allocd_before_gc != 0) {
2349         register int i;
2350     
2351         for (i = 0; i < PHT_SIZE; i++) GC_written_pages[i] = (word)(-1);
2352 #       ifdef PRINTSTATS
2353             GC_printf1("Allocated words:%lu:all pages may have been written\n",
2354                        (unsigned long)
2355                                 (GC_words_allocd + GC_words_allocd_before_gc));
2356 #       endif       
2357     }
2358     sprintf(buf, "/proc/%d", getpid());
2359     fd = open(buf, O_RDONLY);
2360     if (fd < 0) {
2361         ABORT("/proc open failed");
2362     }
2363     GC_proc_fd = syscall(SYS_ioctl, fd, PIOCOPENPD, 0);
2364     close(fd);
2365     if (GC_proc_fd < 0) {
2366         ABORT("/proc ioctl failed");
2367     }
2368     GC_proc_buf = GC_scratch_alloc(GC_proc_buf_size);
2369 #   ifdef SOLARIS_THREADS
2370         GC_fresh_pages = (struct hblk **)
2371           GC_scratch_alloc(MAX_FRESH_PAGES * sizeof (struct hblk *));
2372         if (GC_fresh_pages == 0) {
2373             GC_err_printf0("No space for fresh pages\n");
2374             EXIT();
2375         }
2376         BZERO(GC_fresh_pages, MAX_FRESH_PAGES * sizeof (struct hblk *));
2377 #   endif
2378 }
2379
2380 /* Ignore write hints. They don't help us here. */
2381 /*ARGSUSED*/
2382 void GC_write_hint(h)
2383 struct hblk *h;
2384 {
2385 }
2386
2387 #ifdef SOLARIS_THREADS
2388 #   define READ(fd,buf,nbytes) syscall(SYS_read, fd, buf, nbytes)
2389 #else
2390 #   define READ(fd,buf,nbytes) read(fd, buf, nbytes)
2391 #endif
2392
2393 void GC_read_dirty()
2394 {
2395     unsigned long ps, np;
2396     int nmaps;
2397     ptr_t vaddr;
2398     struct prasmap * map;
2399     char * bufp;
2400     ptr_t current_addr, limit;
2401     int i;
2402 int dummy;
2403
2404     BZERO(GC_grungy_pages, (sizeof GC_grungy_pages));
2405     
2406     bufp = GC_proc_buf;
2407     if (READ(GC_proc_fd, bufp, GC_proc_buf_size) <= 0) {
2408 #       ifdef PRINTSTATS
2409             GC_printf1("/proc read failed: GC_proc_buf_size = %lu\n",
2410                        GC_proc_buf_size);
2411 #       endif       
2412         {
2413             /* Retry with larger buffer. */
2414             word new_size = 2 * GC_proc_buf_size;
2415             char * new_buf = GC_scratch_alloc(new_size);
2416             
2417             if (new_buf != 0) {
2418                 GC_proc_buf = bufp = new_buf;
2419                 GC_proc_buf_size = new_size;
2420             }
2421             if (syscall(SYS_read, GC_proc_fd, bufp, GC_proc_buf_size) <= 0) {
2422                 WARN("Insufficient space for /proc read\n", 0);
2423                 /* Punt:        */
2424                 memset(GC_grungy_pages, 0xff, sizeof (page_hash_table));
2425                 memset(GC_written_pages, 0xff, sizeof(page_hash_table));
2426 #               ifdef SOLARIS_THREADS
2427                     BZERO(GC_fresh_pages,
2428                           MAX_FRESH_PAGES * sizeof (struct hblk *)); 
2429 #               endif
2430                 return;
2431             }
2432         }
2433     }
2434     /* Copy dirty bits into GC_grungy_pages */
2435         nmaps = ((struct prpageheader *)bufp) -> pr_nmap;
2436         /* printf( "nmaps = %d, PG_REFERENCED = %d, PG_MODIFIED = %d\n",
2437                      nmaps, PG_REFERENCED, PG_MODIFIED); */
2438         bufp = bufp + sizeof(struct prpageheader);
2439         for (i = 0; i < nmaps; i++) {
2440             map = (struct prasmap *)bufp;
2441             vaddr = (ptr_t)(map -> pr_vaddr);
2442             ps = map -> pr_pagesize;
2443             np = map -> pr_npage;
2444             /* printf("vaddr = 0x%X, ps = 0x%X, np = 0x%X\n", vaddr, ps, np); */
2445             limit = vaddr + ps * np;
2446             bufp += sizeof (struct prasmap);
2447             for (current_addr = vaddr;
2448                  current_addr < limit; current_addr += ps){
2449                 if ((*bufp++) & PG_MODIFIED) {
2450                     register struct hblk * h = (struct hblk *) current_addr;
2451                     
2452                     while ((ptr_t)h < current_addr + ps) {
2453                         register word index = PHT_HASH(h);
2454                         
2455                         set_pht_entry_from_index(GC_grungy_pages, index);
2456 #                       ifdef SOLARIS_THREADS
2457                           {
2458                             register int slot = FRESH_PAGE_SLOT(h);
2459                             
2460                             if (GC_fresh_pages[slot] == h) {
2461                                 GC_fresh_pages[slot] = 0;
2462                             }
2463                           }
2464 #                       endif
2465                         h++;
2466                     }
2467                 }
2468             }
2469             bufp += sizeof(long) - 1;
2470             bufp = (char *)((unsigned long)bufp & ~(sizeof(long)-1));
2471         }
2472     /* Update GC_written_pages. */
2473         GC_or_pages(GC_written_pages, GC_grungy_pages);
2474 #   ifdef SOLARIS_THREADS
2475       /* Make sure that old stacks are considered completely clean      */
2476       /* unless written again.                                          */
2477         GC_old_stacks_are_fresh();
2478 #   endif
2479 }
2480
2481 #undef READ
2482
2483 GC_bool GC_page_was_dirty(h)
2484 struct hblk *h;
2485 {
2486     register word index = PHT_HASH(h);
2487     register GC_bool result;
2488     
2489     result = get_pht_entry_from_index(GC_grungy_pages, index);
2490 #   ifdef SOLARIS_THREADS
2491         if (result && PAGE_IS_FRESH(h)) result = FALSE;
2492         /* This happens only if page was declared fresh since   */
2493         /* the read_dirty call, e.g. because it's in an unused  */
2494         /* thread stack.  It's OK to treat it as clean, in      */
2495         /* that case.  And it's consistent with                 */
2496         /* GC_page_was_ever_dirty.                              */
2497 #   endif
2498     return(result);
2499 }
2500
2501 GC_bool GC_page_was_ever_dirty(h)
2502 struct hblk *h;
2503 {
2504     register word index = PHT_HASH(h);
2505     register GC_bool result;
2506     
2507     result = get_pht_entry_from_index(GC_written_pages, index);
2508 #   ifdef SOLARIS_THREADS
2509         if (result && PAGE_IS_FRESH(h)) result = FALSE;
2510 #   endif
2511     return(result);
2512 }
2513
2514 /* Caller holds allocation lock.        */
2515 void GC_is_fresh(h, n)
2516 struct hblk *h;
2517 word n;
2518 {
2519
2520     register word index;
2521     
2522 #   ifdef SOLARIS_THREADS
2523       register word i;
2524       
2525       if (GC_fresh_pages != 0) {
2526         for (i = 0; i < n; i++) {
2527           ADD_FRESH_PAGE(h + i);
2528         }
2529       }
2530 #   endif
2531 }
2532
2533 # endif /* PROC_VDB */
2534
2535
2536 # ifdef PCR_VDB
2537
2538 # include "vd/PCR_VD.h"
2539
2540 # define NPAGES (32*1024)       /* 128 MB */
2541
2542 PCR_VD_DB  GC_grungy_bits[NPAGES];
2543
2544 ptr_t GC_vd_base;       /* Address corresponding to GC_grungy_bits[0]   */
2545                         /* HBLKSIZE aligned.                            */
2546
2547 void GC_dirty_init()
2548 {
2549     GC_dirty_maintained = TRUE;
2550     /* For the time being, we assume the heap generally grows up */
2551     GC_vd_base = GC_heap_sects[0].hs_start;
2552     if (GC_vd_base == 0) {
2553         ABORT("Bad initial heap segment");
2554     }
2555     if (PCR_VD_Start(HBLKSIZE, GC_vd_base, NPAGES*HBLKSIZE)
2556         != PCR_ERes_okay) {
2557         ABORT("dirty bit initialization failed");
2558     }
2559 }
2560
2561 void GC_read_dirty()
2562 {
2563     /* lazily enable dirty bits on newly added heap sects */
2564     {
2565         static int onhs = 0;
2566         int nhs = GC_n_heap_sects;
2567         for( ; onhs < nhs; onhs++ ) {
2568             PCR_VD_WriteProtectEnable(
2569                     GC_heap_sects[onhs].hs_start,
2570                     GC_heap_sects[onhs].hs_bytes );
2571         }
2572     }
2573
2574
2575     if (PCR_VD_Clear(GC_vd_base, NPAGES*HBLKSIZE, GC_grungy_bits)
2576         != PCR_ERes_okay) {
2577         ABORT("dirty bit read failed");
2578     }
2579 }
2580
2581 GC_bool GC_page_was_dirty(h)
2582 struct hblk *h;
2583 {
2584     if((ptr_t)h < GC_vd_base || (ptr_t)h >= GC_vd_base + NPAGES*HBLKSIZE) {
2585         return(TRUE);
2586     }
2587     return(GC_grungy_bits[h - (struct hblk *)GC_vd_base] & PCR_VD_DB_dirtyBit);
2588 }
2589
2590 /*ARGSUSED*/
2591 void GC_write_hint(h)
2592 struct hblk *h;
2593 {
2594     PCR_VD_WriteProtectDisable(h, HBLKSIZE);
2595     PCR_VD_WriteProtectEnable(h, HBLKSIZE);
2596 }
2597
2598 # endif /* PCR_VDB */
2599
2600 /*
2601  * Call stack save code for debugging.
2602  * Should probably be in mach_dep.c, but that requires reorganization.
2603  */
2604 #if defined(SPARC)
2605 #  if defined(LINUX)
2606 struct frame {
2607         long    fr_local[8];
2608         long    fr_arg[6];
2609         struct frame *fr_savfp;
2610         long    fr_savpc;
2611 #    ifndef __arch64__
2612         char    *fr_stret;
2613 #    endif
2614         long    fr_argd[6];
2615         long    fr_argx[0];
2616 };
2617 #  else
2618 #    if defined(SUNOS4)
2619 #      include <machine/frame.h>
2620 #    else
2621 #      if defined (DRSNX)
2622 #        include <sys/sparc/frame.h>
2623 #      else
2624 #        if defined(OPENBSD)
2625 #          include <frame.h>
2626 #        else
2627 #          include <sys/frame.h>
2628 #        endif
2629 #      endif
2630 #    endif
2631 #  endif
2632 #  if NARGS > 6
2633         --> We only know how to to get the first 6 arguments
2634 #  endif
2635
2636 #ifdef SAVE_CALL_CHAIN
2637 /* Fill in the pc and argument information for up to NFRAMES of my      */
2638 /* callers.  Ignore my frame and my callers frame.                      */
2639
2640 #ifdef OPENBSD
2641 #  define FR_SAVFP fr_fp
2642 #  define FR_SAVPC fr_pc
2643 #else
2644 #  define FR_SAVFP fr_savfp
2645 #  define FR_SAVPC fr_savpc
2646 #endif
2647
2648 #if defined(SPARC) && (defined(__arch64__) || defined(__sparcv9))
2649 #define BIAS 2047
2650 #else
2651 #define BIAS 0
2652 #endif
2653
2654 void GC_save_callers (info) 
2655 struct callinfo info[NFRAMES];
2656 {
2657   struct frame *frame;
2658   struct frame *fp;
2659   int nframes = 0;
2660   word GC_save_regs_in_stack();
2661
2662   frame = (struct frame *) GC_save_regs_in_stack ();
2663   
2664   for (fp = (struct frame *)((long) frame -> FR_SAVFP + BIAS);
2665        fp != 0 && nframes < NFRAMES;
2666        fp = (struct frame *)((long) fp -> FR_SAVFP + BIAS), nframes++) {
2667       register int i;
2668       
2669       info[nframes].ci_pc = fp->FR_SAVPC;
2670       for (i = 0; i < NARGS; i++) {
2671         info[nframes].ci_arg[i] = ~(fp->fr_arg[i]);
2672       }
2673   }
2674   if (nframes < NFRAMES) info[nframes].ci_pc = 0;
2675 }
2676
2677 #endif /* SAVE_CALL_CHAIN */
2678 #endif /* SPARC */
2679
2680
2681