OSDN Git Service

Imported version version 5.0alpha6.
[pf3gnuchains/gcc-fork.git] / boehm-gc / dyn_load.c
1 /*
2  * Copyright (c) 1991-1994 by Xerox Corporation.  All rights reserved.
3  * Copyright (c) 1997 by Silicon Graphics.  All rights reserved.
4  *
5  * THIS MATERIAL IS PROVIDED AS IS, WITH ABSOLUTELY NO WARRANTY EXPRESSED
6  * OR IMPLIED.  ANY USE IS AT YOUR OWN RISK.
7  *
8  * Permission is hereby granted to use or copy this program
9  * for any purpose,  provided the above notices are retained on all copies.
10  * Permission to modify the code and to distribute modified code is granted,
11  * provided the above notices are retained, and a notice that the code was
12  * modified is included with the above copyright notice.
13  *
14  * Original author: Bill Janssen
15  * Heavily modified by Hans Boehm and others
16  */
17
18 /*
19  * This is incredibly OS specific code for tracking down data sections in
20  * dynamic libraries.  There appears to be no way of doing this quickly
21  * without groveling through undocumented data structures.  We would argue
22  * that this is a bug in the design of the dlopen interface.  THIS CODE
23  * MAY BREAK IN FUTURE OS RELEASES.  If this matters to you, don't hesitate
24  * to let your vendor know ...
25  *
26  * None of this is safe with dlclose and incremental collection.
27  * But then not much of anything is safe in the presence of dlclose.
28  */
29 #ifndef MACOS
30 #  include <sys/types.h>
31 #endif
32 #include "gc_priv.h"
33
34 /* BTL: avoid circular redefinition of dlopen if SOLARIS_THREADS defined */
35 # if (defined(LINUX_THREADS) || defined(SOLARIS_THREADS) \
36       || defined(HPUX_THREADS) || defined(IRIX_THREADS)) && defined(dlopen) \
37      && !defined(USE_LD_WRAP)
38     /* To support threads in Solaris, gc.h interposes on dlopen by       */
39     /* defining "dlopen" to be "GC_dlopen", which is implemented below.  */
40     /* However, both GC_FirstDLOpenedLinkMap() and GC_dlopen() use the   */
41     /* real system dlopen() in their implementation. We first remove     */
42     /* gc.h's dlopen definition and restore it later, after GC_dlopen(). */
43 #   undef dlopen
44 #   define GC_must_restore_redefined_dlopen
45 # else
46 #   undef GC_must_restore_redefined_dlopen
47 # endif
48
49 #if (defined(DYNAMIC_LOADING) || defined(MSWIN32)) && !defined(PCR)
50 #if !defined(SUNOS4) && !defined(SUNOS5DL) && !defined(IRIX5) && \
51     !defined(MSWIN32) && !(defined(ALPHA) && defined(OSF1)) && \
52     !defined(HPUX) && !(defined(LINUX) && defined(__ELF__)) && \
53     !defined(RS6000) && !defined(SCO_ELF)
54  --> We only know how to find data segments of dynamic libraries for the
55  --> above.  Additional SVR4 variants might not be too
56  --> hard to add.
57 #endif
58
59 #include <stdio.h>
60 #ifdef SUNOS5DL
61 #   include <sys/elf.h>
62 #   include <dlfcn.h>
63 #   include <link.h>
64 #endif
65 #ifdef SUNOS4
66 #   include <dlfcn.h>
67 #   include <link.h>
68 #   include <a.out.h>
69   /* struct link_map field overrides */
70 #   define l_next       lm_next
71 #   define l_addr       lm_addr
72 #   define l_name       lm_name
73 #endif
74
75
76 #if defined(SUNOS5DL) && !defined(USE_PROC_FOR_LIBRARIES)
77
78 #ifdef LINT
79     Elf32_Dyn _DYNAMIC;
80 #endif
81
82 static struct link_map *
83 GC_FirstDLOpenedLinkMap()
84 {
85     extern Elf32_Dyn _DYNAMIC;
86     Elf32_Dyn *dp;
87     struct r_debug *r;
88     static struct link_map * cachedResult = 0;
89     static Elf32_Dyn *dynStructureAddr = 0;
90                         /* BTL: added to avoid Solaris 5.3 ld.so _DYNAMIC bug */
91
92 #   ifdef SUNOS53_SHARED_LIB
93         /* BTL: Avoid the Solaris 5.3 bug that _DYNAMIC isn't being set */
94         /* up properly in dynamically linked .so's. This means we have  */
95         /* to use its value in the set of original object files loaded  */
96         /* at program startup.                                          */
97         if( dynStructureAddr == 0 ) {
98           void* startupSyms = dlopen(0, RTLD_LAZY);
99           dynStructureAddr = (Elf32_Dyn*)dlsym(startupSyms, "_DYNAMIC");
100                 }
101 #   else
102         dynStructureAddr = &_DYNAMIC;
103 #   endif
104
105     if( dynStructureAddr == 0) {
106         return(0);
107     }
108     if( cachedResult == 0 ) {
109         int tag;
110         for( dp = ((Elf32_Dyn *)(&_DYNAMIC)); (tag = dp->d_tag) != 0; dp++ ) {
111             if( tag == DT_DEBUG ) {
112                 struct link_map *lm
113                         = ((struct r_debug *)(dp->d_un.d_ptr))->r_map;
114                 if( lm != 0 ) cachedResult = lm->l_next; /* might be NIL */
115                 break;
116             }
117         }
118     }
119     return cachedResult;
120 }
121
122 #endif /* SUNOS5DL ... */
123
124 #if defined(SUNOS4) && !defined(USE_PROC_FOR_LIBRARIES)
125
126 #ifdef LINT
127     struct link_dynamic _DYNAMIC;
128 #endif
129
130 static struct link_map *
131 GC_FirstDLOpenedLinkMap()
132 {
133     extern struct link_dynamic _DYNAMIC;
134
135     if( &_DYNAMIC == 0) {
136         return(0);
137     }
138     return(_DYNAMIC.ld_un.ld_1->ld_loaded);
139 }
140
141 /* Return the address of the ld.so allocated common symbol      */
142 /* with the least address, or 0 if none.                        */
143 static ptr_t GC_first_common()
144 {
145     ptr_t result = 0;
146     extern struct link_dynamic _DYNAMIC;
147     struct rtc_symb * curr_symbol;
148     
149     if( &_DYNAMIC == 0) {
150         return(0);
151     }
152     curr_symbol = _DYNAMIC.ldd -> ldd_cp;
153     for (; curr_symbol != 0; curr_symbol = curr_symbol -> rtc_next) {
154         if (result == 0
155             || (ptr_t)(curr_symbol -> rtc_sp -> n_value) < result) {
156             result = (ptr_t)(curr_symbol -> rtc_sp -> n_value);
157         }
158     }
159     return(result);
160 }
161
162 #endif  /* SUNOS4 ... */
163
164 # if defined(LINUX_THREADS) || defined(SOLARIS_THREADS) \
165      || defined(HPUX_THREADS) || defined(IRIX_THREADS)
166   /* Make sure we're not in the middle of a collection, and make        */
167   /* sure we don't start any.   Returns previous value of GC_dont_gc.   */
168   /* This is invoked prior to a dlopen call to avoid synchronization    */
169   /* issues.  We can't just acquire the allocation lock, since startup  */
170   /* code in dlopen may try to allocate.                                */
171   /* This solution risks heap growth in the presence of many dlopen     */
172   /* calls in either a multithreaded environment, or if the library     */
173   /* initialization code allocates substantial amounts of GC'ed memory. */
174   /* But I don't know of a better solution.                             */
175   /* This can still deadlock if the client explicitly starts a GC       */
176   /* during the dlopen.  He shouldn't do that.                          */
177   static GC_bool disable_gc_for_dlopen()
178   {
179     GC_bool result;
180     LOCK();
181     result = GC_dont_gc;
182     while (GC_incremental && GC_collection_in_progress()) {
183         GC_collect_a_little_inner(1000);
184     }
185     GC_dont_gc = TRUE;
186     UNLOCK();
187     return(result);
188   }
189
190   /* Redefine dlopen to guarantee mutual exclusion with */
191   /* GC_register_dynamic_libraries.                     */
192   /* Should probably happen for other operating systems, too. */
193
194 #include <dlfcn.h>
195
196 #ifdef USE_LD_WRAP
197   void * __wrap_dlopen(const char *path, int mode)
198 #else
199   void * GC_dlopen(path, mode)
200   GC_CONST char * path;
201   int mode;
202 #endif
203 {
204     void * result;
205     GC_bool dont_gc_save;
206     
207 #   ifndef USE_PROC_FOR_LIBRARIES
208       dont_gc_save = disable_gc_for_dlopen();
209 #   endif
210 #   ifdef USE_LD_WRAP
211       result = __real_dlopen(path, mode);
212 #   else
213       result = dlopen(path, mode);
214 #   endif
215 #   ifndef USE_PROC_FOR_LIBRARIES
216       GC_dont_gc = dont_gc_save;
217 #   endif
218     return(result);
219 }
220 # endif  /* SOLARIS_THREADS */
221
222 /* BTL: added to fix circular dlopen definition if SOLARIS_THREADS defined */
223 # if defined(GC_must_restore_redefined_dlopen)
224 #   define dlopen GC_dlopen
225 # endif
226
227 # if defined(SUNOS4) || defined(SUNOS5DL)
228 /* Add dynamic library data sections to the root set.           */
229 # if !defined(PCR) && !defined(SOLARIS_THREADS) && defined(THREADS)
230 #   ifndef SRC_M3
231         --> fix mutual exclusion with dlopen
232 #   endif  /* We assume M3 programs don't call dlopen for now */
233 # endif
234
235 # ifndef USE_PROC_FOR_LIBRARIES
236 void GC_register_dynamic_libraries()
237 {
238   struct link_map *lm = GC_FirstDLOpenedLinkMap();
239   
240
241   for (lm = GC_FirstDLOpenedLinkMap();
242        lm != (struct link_map *) 0;  lm = lm->l_next)
243     {
244 #     ifdef SUNOS4
245         struct exec *e;
246          
247         e = (struct exec *) lm->lm_addr;
248         GC_add_roots_inner(
249                     ((char *) (N_DATOFF(*e) + lm->lm_addr)),
250                     ((char *) (N_BSSADDR(*e) + e->a_bss + lm->lm_addr)),
251                     TRUE);
252 #     endif
253 #     ifdef SUNOS5DL
254         Elf32_Ehdr * e;
255         Elf32_Phdr * p;
256         unsigned long offset;
257         char * start;
258         register int i;
259         
260         e = (Elf32_Ehdr *) lm->l_addr;
261         p = ((Elf32_Phdr *)(((char *)(e)) + e->e_phoff));
262         offset = ((unsigned long)(lm->l_addr));
263         for( i = 0; i < (int)(e->e_phnum); ((i++),(p++)) ) {
264           switch( p->p_type ) {
265             case PT_LOAD:
266               {
267                 if( !(p->p_flags & PF_W) ) break;
268                 start = ((char *)(p->p_vaddr)) + offset;
269                 GC_add_roots_inner(
270                   start,
271                   start + p->p_memsz,
272                   TRUE
273                 );
274               }
275               break;
276             default:
277               break;
278           }
279         }
280 #     endif
281     }
282 #   ifdef SUNOS4
283       {
284         static ptr_t common_start = 0;
285         ptr_t common_end;
286         extern ptr_t GC_find_limit();
287         
288         if (common_start == 0) common_start = GC_first_common();
289         if (common_start != 0) {
290             common_end = GC_find_limit(common_start, TRUE);
291             GC_add_roots_inner((char *)common_start, (char *)common_end, TRUE);
292         }
293       }
294 #   endif
295 }
296
297 # endif /* !USE_PROC ... */
298 # endif /* SUNOS */
299
300 #if defined(LINUX) && defined(__ELF__) || defined(SCO_ELF)
301
302 /* Dynamic loading code for Linux running ELF. Somewhat tested on
303  * Linux/x86, untested but hopefully should work on Linux/Alpha. 
304  * This code was derived from the Solaris/ELF support. Thanks to
305  * whatever kind soul wrote that.  - Patrick Bridges */
306
307 #include <elf.h>
308 #include <link.h>
309
310 /* Newer versions of Linux/Alpha and Linux/x86 define this macro.  We
311  * define it for those older versions that don't.  */
312 #  ifndef ElfW
313 #    if !defined(ELF_CLASS) || ELF_CLASS == ELFCLASS32
314 #      define ElfW(type) Elf32_##type
315 #    else
316 #      define ElfW(type) Elf64_##type
317 #    endif
318 #  endif
319
320 static struct link_map *
321 GC_FirstDLOpenedLinkMap()
322 {
323 #   ifdef __GNUC__
324 #     pragma weak _DYNAMIC
325 #   endif
326     extern ElfW(Dyn) _DYNAMIC[];
327     ElfW(Dyn) *dp;
328     struct r_debug *r;
329     static struct link_map *cachedResult = 0;
330
331     if( _DYNAMIC == 0) {
332         return(0);
333     }
334     if( cachedResult == 0 ) {
335         int tag;
336         for( dp = _DYNAMIC; (tag = dp->d_tag) != 0; dp++ ) {
337             if( tag == DT_DEBUG ) {
338                 struct link_map *lm
339                         = ((struct r_debug *)(dp->d_un.d_ptr))->r_map;
340                 if( lm != 0 ) cachedResult = lm->l_next; /* might be NIL */
341                 break;
342             }
343         }
344     }
345     return cachedResult;
346 }
347
348
349 void GC_register_dynamic_libraries()
350 {
351   struct link_map *lm = GC_FirstDLOpenedLinkMap();
352   
353
354   for (lm = GC_FirstDLOpenedLinkMap();
355        lm != (struct link_map *) 0;  lm = lm->l_next)
356     {
357         ElfW(Ehdr) * e;
358         ElfW(Phdr) * p;
359         unsigned long offset;
360         char * start;
361         register int i;
362         
363         e = (ElfW(Ehdr) *) lm->l_addr;
364         p = ((ElfW(Phdr) *)(((char *)(e)) + e->e_phoff));
365         offset = ((unsigned long)(lm->l_addr));
366         for( i = 0; i < (int)(e->e_phnum); ((i++),(p++)) ) {
367           switch( p->p_type ) {
368             case PT_LOAD:
369               {
370                 if( !(p->p_flags & PF_W) ) break;
371                 start = ((char *)(p->p_vaddr)) + offset;
372                 GC_add_roots_inner(start, start + p->p_memsz, TRUE);
373               }
374               break;
375             default:
376               break;
377           }
378         }
379     }
380 }
381
382 #endif
383
384 #if defined(IRIX5) || defined(USE_PROC_FOR_LIBRARIES)
385
386 #include <sys/procfs.h>
387 #include <sys/stat.h>
388 #include <fcntl.h>
389 #include <elf.h>
390 #include <errno.h>
391
392 extern void * GC_roots_present();
393         /* The type is a lie, since the real type doesn't make sense here, */
394         /* and we only test for NULL.                                      */
395
396 extern ptr_t GC_scratch_last_end_ptr; /* End of GC_scratch_alloc arena  */
397
398 /* We use /proc to track down all parts of the address space that are   */
399 /* mapped by the process, and throw out regions we know we shouldn't    */
400 /* worry about.  This may also work under other SVR4 variants.          */
401 void GC_register_dynamic_libraries()
402 {
403     static int fd = -1;
404     char buf[30];
405     static prmap_t * addr_map = 0;
406     static int current_sz = 0;  /* Number of records currently in addr_map */
407     static int needed_sz;       /* Required size of addr_map            */
408     register int i;
409     register long flags;
410     register ptr_t start;
411     register ptr_t limit;
412     ptr_t heap_start = (ptr_t)HEAP_START;
413     ptr_t heap_end = heap_start;
414
415 #   ifdef SUNOS5DL
416 #     define MA_PHYS 0
417 #   endif /* SUNOS5DL */
418
419     if (fd < 0) {
420       sprintf(buf, "/proc/%d", getpid());
421         /* The above generates a lint complaint, since pid_t varies.    */
422         /* It's unclear how to improve this.                            */
423       fd = open(buf, O_RDONLY);
424       if (fd < 0) {
425         ABORT("/proc open failed");
426       }
427     }
428     if (ioctl(fd, PIOCNMAP, &needed_sz) < 0) {
429         GC_err_printf2("fd = %d, errno = %d\n", fd, errno);
430         ABORT("/proc PIOCNMAP ioctl failed");
431     }
432     if (needed_sz >= current_sz) {
433         current_sz = needed_sz * 2 + 1;
434                         /* Expansion, plus room for 0 record */
435         addr_map = (prmap_t *)GC_scratch_alloc((word)
436                                                 (current_sz * sizeof(prmap_t)));
437     }
438     if (ioctl(fd, PIOCMAP, addr_map) < 0) {
439         GC_err_printf4("fd = %d, errno = %d, needed_sz = %d, addr_map = 0x%X\n",
440                         fd, errno, needed_sz, addr_map);
441         ABORT("/proc PIOCMAP ioctl failed");
442     };
443     if (GC_n_heap_sects > 0) {
444         heap_end = GC_heap_sects[GC_n_heap_sects-1].hs_start
445                         + GC_heap_sects[GC_n_heap_sects-1].hs_bytes;
446         if (heap_end < GC_scratch_last_end_ptr) heap_end = GC_scratch_last_end_ptr; 
447     }
448     for (i = 0; i < needed_sz; i++) {
449         flags = addr_map[i].pr_mflags;
450         if ((flags & (MA_BREAK | MA_STACK | MA_PHYS)) != 0) goto irrelevant;
451         if ((flags & (MA_READ | MA_WRITE)) != (MA_READ | MA_WRITE))
452             goto irrelevant;
453           /* The latter test is empirically useless.  Other than the    */
454           /* main data and stack segments, everything appears to be     */
455           /* mapped readable, writable, executable, and shared(!!).     */
456           /* This makes no sense to me. - HB                            */
457         start = (ptr_t)(addr_map[i].pr_vaddr);
458         if (GC_roots_present(start)) goto irrelevant;
459         if (start < heap_end && start >= heap_start)
460                 goto irrelevant;
461 #       ifdef MMAP_STACKS
462           if (GC_is_thread_stack(start)) goto irrelevant;
463 #       endif /* MMAP_STACKS */
464
465         limit = start + addr_map[i].pr_size;
466         if (addr_map[i].pr_off == 0 && strncmp(start, ELFMAG, 4) == 0) {
467             /* Discard text segments, i.e. 0-offset mappings against    */
468             /* executable files which appear to have ELF headers.       */
469             caddr_t arg;
470             int obj;
471 #           define MAP_IRR_SZ 10
472             static ptr_t map_irr[MAP_IRR_SZ];
473                                         /* Known irrelevant map entries */
474             static int n_irr = 0;
475             struct stat buf;
476             register int i;
477             
478             for (i = 0; i < n_irr; i++) {
479                 if (map_irr[i] == start) goto irrelevant;
480             }
481             arg = (caddr_t)start;
482             obj = ioctl(fd, PIOCOPENM, &arg);
483             if (obj >= 0) {
484                 fstat(obj, &buf);
485                 close(obj);
486                 if ((buf.st_mode & 0111) != 0) {
487                     if (n_irr < MAP_IRR_SZ) {
488                         map_irr[n_irr++] = start;
489                     }
490                     goto irrelevant;
491                 }
492             }
493         }
494         GC_add_roots_inner(start, limit, TRUE);
495       irrelevant: ;
496     }
497     /* Dont keep cached descriptor, for now.  Some kernels don't like us */
498     /* to keep a /proc file descriptor around during kill -9.            */
499         if (close(fd) < 0) ABORT("Couldnt close /proc file");
500         fd = -1;
501 }
502
503 # endif /* USE_PROC || IRIX5 */
504
505 # ifdef MSWIN32
506
507 # define WIN32_LEAN_AND_MEAN
508 # define NOSERVICE
509 # include <windows.h>
510 # include <stdlib.h>
511
512   /* We traverse the entire address space and register all segments     */
513   /* that could possibly have been written to.                          */
514   DWORD GC_allocation_granularity;
515   
516   extern GC_bool GC_is_heap_base (ptr_t p);
517
518 # ifdef WIN32_THREADS
519     extern void GC_get_next_stack(char *start, char **lo, char **hi);
520 # endif
521   
522   void GC_cond_add_roots(char *base, char * limit)
523   {
524     char dummy;
525     char * stack_top
526            = (char *) ((word)(&dummy) & ~(GC_allocation_granularity-1));
527     if (base == limit) return;
528 #   ifdef WIN32_THREADS
529     {
530         char * curr_base = base;
531         char * next_stack_lo;
532         char * next_stack_hi;
533         
534         for(;;) {
535             GC_get_next_stack(curr_base, &next_stack_lo, &next_stack_hi);
536             if (next_stack_lo >= limit) break;
537             GC_add_roots_inner(curr_base, next_stack_lo, TRUE);
538             curr_base = next_stack_hi;
539         }
540         if (curr_base < limit) GC_add_roots_inner(curr_base, limit, TRUE);
541     }
542 #   else
543         if (limit > stack_top && base < GC_stackbottom) {
544             /* Part of the stack; ignore it. */
545             return;
546         }
547         GC_add_roots_inner(base, limit, TRUE);
548 #   endif
549   }
550   
551   extern GC_bool GC_win32s;
552   
553   void GC_register_dynamic_libraries()
554   {
555     MEMORY_BASIC_INFORMATION buf;
556     SYSTEM_INFO sysinfo;
557     DWORD result;
558     DWORD protect;
559     LPVOID p;
560     char * base;
561     char * limit, * new_limit;
562     
563     if (GC_win32s) return;
564     GetSystemInfo(&sysinfo);
565     base = limit = p = sysinfo.lpMinimumApplicationAddress;
566     GC_allocation_granularity = sysinfo.dwAllocationGranularity;
567     while (p < sysinfo.lpMaximumApplicationAddress) {
568         result = VirtualQuery(p, &buf, sizeof(buf));
569         if (result != sizeof(buf)) {
570             ABORT("Weird VirtualQuery result");
571         }
572         new_limit = (char *)p + buf.RegionSize;
573         protect = buf.Protect;
574         if (buf.State == MEM_COMMIT
575             && (protect == PAGE_EXECUTE_READWRITE
576                 || protect == PAGE_READWRITE)
577             && !GC_is_heap_base(buf.AllocationBase)) {
578             if ((char *)p == limit) {
579                 limit = new_limit;
580             } else {
581                 GC_cond_add_roots(base, limit);
582                 base = p;
583                 limit = new_limit;
584             }
585         }
586         if (p > (LPVOID)new_limit /* overflow */) break;
587         p = (LPVOID)new_limit;
588     }
589     GC_cond_add_roots(base, limit);
590   }
591
592 #endif /* MSWIN32 */
593
594 #if defined(ALPHA) && defined(OSF1)
595
596 #include <loader.h>
597
598 void GC_register_dynamic_libraries()
599 {
600   int status;
601   ldr_process_t mypid;
602
603   /* module */
604     ldr_module_t moduleid = LDR_NULL_MODULE;
605     ldr_module_info_t moduleinfo;
606     size_t moduleinfosize = sizeof(moduleinfo);
607     size_t modulereturnsize;    
608
609   /* region */
610     ldr_region_t region; 
611     ldr_region_info_t regioninfo;
612     size_t regioninfosize = sizeof(regioninfo);
613     size_t regionreturnsize;
614
615   /* Obtain id of this process */
616     mypid = ldr_my_process();
617   
618   /* For each module */
619     while (TRUE) {
620
621       /* Get the next (first) module */
622         status = ldr_next_module(mypid, &moduleid);
623
624       /* Any more modules? */
625         if (moduleid == LDR_NULL_MODULE)
626             break;    /* No more modules */
627
628       /* Check status AFTER checking moduleid because */
629       /* of a bug in the non-shared ldr_next_module stub */
630         if (status != 0 ) {
631             GC_printf1("dynamic_load: status = %ld\n", (long)status);
632             {
633                 extern char *sys_errlist[];
634                 extern int sys_nerr;
635                 extern int errno;
636                 if (errno <= sys_nerr) {
637                     GC_printf1("dynamic_load: %s\n", (long)sys_errlist[errno]);
638                } else {
639                     GC_printf1("dynamic_load: %d\n", (long)errno);
640                 }
641         }
642             ABORT("ldr_next_module failed");
643          }
644
645       /* Get the module information */
646         status = ldr_inq_module(mypid, moduleid, &moduleinfo,
647                                 moduleinfosize, &modulereturnsize); 
648         if (status != 0 )
649             ABORT("ldr_inq_module failed");
650
651       /* is module for the main program (i.e. nonshared portion)? */
652           if (moduleinfo.lmi_flags & LDR_MAIN)
653               continue;    /* skip the main module */
654
655 #     ifdef VERBOSE
656           GC_printf("---Module---\n");
657           GC_printf("Module ID            = %16ld\n", moduleinfo.lmi_modid);
658           GC_printf("Count of regions     = %16d\n", moduleinfo.lmi_nregion);
659           GC_printf("flags for module     = %16lx\n", moduleinfo.lmi_flags); 
660           GC_printf("pathname of module   = \"%s\"\n", moduleinfo.lmi_name);
661 #     endif
662
663       /* For each region in this module */
664         for (region = 0; region < moduleinfo.lmi_nregion; region++) {
665
666           /* Get the region information */
667             status = ldr_inq_region(mypid, moduleid, region, &regioninfo,
668                                     regioninfosize, &regionreturnsize);
669             if (status != 0 )
670                 ABORT("ldr_inq_region failed");
671
672           /* only process writable (data) regions */
673             if (! (regioninfo.lri_prot & LDR_W))
674                 continue;
675
676 #         ifdef VERBOSE
677               GC_printf("--- Region ---\n");
678               GC_printf("Region number    = %16ld\n",
679                         regioninfo.lri_region_no);
680               GC_printf("Protection flags = %016x\n",  regioninfo.lri_prot);
681               GC_printf("Virtual address  = %16p\n",   regioninfo.lri_vaddr);
682               GC_printf("Mapped address   = %16p\n",   regioninfo.lri_mapaddr);
683               GC_printf("Region size      = %16ld\n",  regioninfo.lri_size);
684               GC_printf("Region name      = \"%s\"\n", regioninfo.lri_name);
685 #         endif
686
687           /* register region as a garbage collection root */
688             GC_add_roots_inner (
689                 (char *)regioninfo.lri_mapaddr,
690                 (char *)regioninfo.lri_mapaddr + regioninfo.lri_size,
691                 TRUE);
692
693         }
694     }
695 }
696 #endif
697
698 #if defined(HPUX)
699
700 #include <errno.h>
701 #include <dl.h>
702
703 extern int errno;
704 extern char *sys_errlist[];
705 extern int sys_nerr;
706
707 void GC_register_dynamic_libraries()
708 {
709   int status;
710   int index = 1; /* Ordinal position in shared library search list */
711   struct shl_descriptor *shl_desc; /* Shared library info, see dl.h */
712
713   /* For each dynamic library loaded */
714     while (TRUE) {
715
716       /* Get info about next shared library */
717         status = shl_get(index, &shl_desc);
718
719       /* Check if this is the end of the list or if some error occured */
720         if (status != 0) {
721 #        ifdef HPUX_THREADS
722            /* I've seen errno values of 0.  The man page is not clear   */
723            /* as to whether errno should get set on a -1 return.        */
724            break;
725 #        else
726           if (errno == EINVAL) {
727               break; /* Moved past end of shared library list --> finished */
728           } else {
729               if (errno <= sys_nerr) {
730                     GC_printf1("dynamic_load: %s\n", (long) sys_errlist[errno]);
731               } else {
732                     GC_printf1("dynamic_load: %d\n", (long) errno);
733               }
734               ABORT("shl_get failed");
735           }
736 #        endif
737         }
738
739 #     ifdef VERBOSE
740           GC_printf0("---Shared library---\n");
741           GC_printf1("\tfilename        = \"%s\"\n", shl_desc->filename);
742           GC_printf1("\tindex           = %d\n", index);
743           GC_printf1("\thandle          = %08x\n",
744                                         (unsigned long) shl_desc->handle);
745           GC_printf1("\ttext seg. start = %08x\n", shl_desc->tstart);
746           GC_printf1("\ttext seg. end   = %08x\n", shl_desc->tend);
747           GC_printf1("\tdata seg. start = %08x\n", shl_desc->dstart);
748           GC_printf1("\tdata seg. end   = %08x\n", shl_desc->dend);
749           GC_printf1("\tref. count      = %lu\n", shl_desc->ref_count);
750 #     endif
751
752       /* register shared library's data segment as a garbage collection root */
753         GC_add_roots_inner((char *) shl_desc->dstart,
754                            (char *) shl_desc->dend, TRUE);
755
756         index++;
757     }
758 }
759 #endif /* HPUX */
760
761 #ifdef RS6000
762 #pragma alloca
763 #include <sys/ldr.h>
764 #include <sys/errno.h>
765 void GC_register_dynamic_libraries()
766 {
767         int len;
768         char *ldibuf;
769         int ldibuflen;
770         struct ld_info *ldi;
771
772         ldibuf = alloca(ldibuflen = 8192);
773
774         while ( (len = loadquery(L_GETINFO,ldibuf,ldibuflen)) < 0) {
775                 if (errno != ENOMEM) {
776                         ABORT("loadquery failed");
777                 }
778                 ldibuf = alloca(ldibuflen *= 2);
779         }
780
781         ldi = (struct ld_info *)ldibuf;
782         while (ldi) {
783                 len = ldi->ldinfo_next;
784                 GC_add_roots_inner(
785                                 ldi->ldinfo_dataorg,
786                                 (unsigned long)ldi->ldinfo_dataorg
787                                 + ldi->ldinfo_datasize,
788                                 TRUE);
789                 ldi = len ? (struct ld_info *)((char *)ldi + len) : 0;
790         }
791 }
792 #endif /* RS6000 */
793
794
795
796 #else /* !DYNAMIC_LOADING */
797
798 #ifdef PCR
799
800 #   include "il/PCR_IL.h"
801 #   include "th/PCR_ThCtl.h"
802 #   include "mm/PCR_MM.h"
803
804 void GC_register_dynamic_libraries()
805 {
806     /* Add new static data areas of dynamically loaded modules. */
807         {
808           PCR_IL_LoadedFile * p = PCR_IL_GetLastLoadedFile();
809           PCR_IL_LoadedSegment * q;
810           
811           /* Skip uncommited files */
812           while (p != NIL && !(p -> lf_commitPoint)) {
813               /* The loading of this file has not yet been committed    */
814               /* Hence its description could be inconsistent.           */
815               /* Furthermore, it hasn't yet been run.  Hence its data   */
816               /* segments can't possibly reference heap allocated       */
817               /* objects.                                               */
818               p = p -> lf_prev;
819           }
820           for (; p != NIL; p = p -> lf_prev) {
821             for (q = p -> lf_ls; q != NIL; q = q -> ls_next) {
822               if ((q -> ls_flags & PCR_IL_SegFlags_Traced_MASK)
823                   == PCR_IL_SegFlags_Traced_on) {
824                 GC_add_roots_inner
825                         ((char *)(q -> ls_addr), 
826                          (char *)(q -> ls_addr) + q -> ls_bytes,
827                          TRUE);
828               }
829             }
830           }
831         }
832 }
833
834
835 #else /* !PCR */
836
837 void GC_register_dynamic_libraries(){}
838
839 int GC_no_dynamic_loading;
840
841 #endif /* !PCR */
842 #endif /* !DYNAMIC_LOADING */