* tree.h (CASE_LOW_SEEN, CASE_HIGH_SEEN): New macros for manipulating
[official-gcc.git] / boehm-gc / ChangeLog
blob70dcfb0d9d4737aa631963fb08ff9ad1cbef6b81
1 2006-08-21  Bryce McKinlay  <mckinlay@redhat.com>
2         
3         PR libgcj/13212:
4         * configure.ac: Check for pthread_getattr_np(). Remove
5         GC_PTHREAD_SYM_VERSION detection.
6         * include/gc.h (GC_register_my_thread, GC_unregister_my_thread,
7         GC_get_thread_stack_base): New declarations.
8         * pthread_support.c (GC_register_my_thread, GC_unregister_my_thread,
9         GC_get_thread_stack_base): New functions.
10         (GC_delete_thread): Don't try to free the first_thread.
11         * misc.c (GC_init_inner): Use GC_get_thread_stack_base() if possible.
12         (pthread_create_, constr): Removed.
13         (pthread_create): Don't rename.
14         * include/gc_ext_config.h.in: Rebuilt.
15         * include/gc_pthread_redirects.h (pthread_create): Define 
16         unconditionally.
17         * include/gc_config.h.in: Rebuilt.
18         * configure: Rebuilt.
20 2006-06-21  Keith Seitz  <keiths@redhat.com>
22         * pthread_stop_world.c (GC_suspend_handler): Redirect to suspension
23         routine if signal is received and thread is flagged SUSPENDED.
24         (suspend_self): New function.
25         (GC_suspend_thread): New function.
26         (GC_resume_thread): New function.
27         * include/gc.h (GC_suspend_thread): Declare.
28         (GC_resumet_thread): Declare.
29         * include/private/pthread_support.h (SUSPENDED): New GC_thread
30         flag.
32 2006-06-20  Ranjit Mathew  <rmathew@gcc.gnu.org>
33         
34         Backport Windows 9x/ME VirtualQuery() fix from GC 6.7.
35         * os_dep.c (GC_wnt): Define.
36         (GC_init_win32): Set GC_wnt.
37         * dyn_load.c (GC_register_dynamic_libraries): Consider MEM_PRIVATE
38         sections also on Windows 9x/ME.
40 2006-06-02  Geoffrey Keating  <geoffk@apple.com>
42         * configure.ac: Define HAS_PPC_THREAD_STATE_R0,
43         HAS_PPC_THREAD_STATE___R0, HAS_PPC_THREAD_STATE64_R0,
44         HAS_PPC_THREAD_STATE64___R0, HAS_I386_THREAD_STATE_EAX,
45         HAS_I386_THREAD_STATE___EAX.
46         * configure: Regenerate.
47         * include/gc_config.h.in: Regenerate.
48         * darwin_stop_world.c (PPC_RED_ZONE_SIZE): Use standard Darwin
49         macro names to determine value.
50         (THREAD_STATE): New.
51         (THREAD_FLD): New.
52         (GC_push_all_stacks): Use THREAD_STATE and THREAD_FLD in both versions.
54 2006-05-24  Carlos O'Donell  <carlos@codesourcery.com>
56         * Makefile.am: Add install-html target. 
57         * Makefile.in: Regenerate.
58         * aclocal.m4: Regenerate.
59         * include/Makefile.in: Regenerate.
61 2006-03-07  Andrew Haley  <aph@redhat.com>
63         * dyn_load.c (GC_has_static_roots): Declare.
64         (GC_register_dynlib_callback): Call GC_has_static_roots.
66 2006-04-11  Bryce McKinlay  <mckinlay@redhat.com>
68         * darwin_stop_world.c (GC_push_all_stacks, GC_stop_world,
69         GC_start_world): Call vm_deallocate to free act_list. Fix from
70         Bruce Mitchener.
72 2006-03-24  Andreas Tobler  <a.tobler@schweiz.ch>
73         John David Anglin  <dave.anglin@nrc-cnrc.gc.ca>
75         * configure.ac (THREADS): Add REENTRANT for *-*-hpux11*.
76         Warn about POSIX threads not being supported for *-*-hpux10*.
77         * configure: Regenerate.
79 2006-02-09  Tom Tromey  <tromey@redhat.com>
81         * pthread_support.c: Conditionally include dlfcn.h.
83 2006-02-06  Jakub Jelinek  <jakub@redhat.com>
84             Anthony Green  <green@redhat.com>
85             Tom Tromey  <tromey@redhat.com>
87         * include/gc_ext_config.h.in: Added GC_PTHREAD_SYM_VERSION.
88         * include/gc_config.h.in: Rebuilt.
89         * include/gc_pthread_redirects.h (pthread_create): Conditionally
90         define.
91         * pthread_support.c (pthread_create_): New global.
92         (constr): New function.
93         (pthread_create): Conditionally renamed.
94         * configure: Rebuilt.
95         * configure.ac (GC_PTHREAD_SYM_VERSION): Define.
97 2006-02-04  Alan Modra  <amodra@bigpond.net.au>
99         * include/private/gc_locks.h (GC_test_and_set <POWERPC>): Don't
100         use broken 64-bit version.
102 2006-01-25  Andreas Tobler  <a.tobler@schweiz.ch>
104         * darwin_stop_world.c: Change inline asm instruction to ld as ldz
105         is wrong.
107         * Makefile.am (asm_libgcjgc_sources): Rename to asm_libgcjgc_sources.
108         * Makefile.in: Regenerate.
110 2006-01-25  Bryce McKinlay  <mckinlay@redhat.com>
112         * include/private/gcconfig.h: Revert to GC 6.6 version, removing
113         all local changes.
115 2006-01-24  Bryce McKinlay  <mckinlay@redhat.com>
117         Import Boehm GC version 6.6.
119 2006-01-24  David Ayers  <d.ayers@inode.at>
121         PR libobjc/13946
122         * include/gc.h: Fix prototype declarations for bootstrap.
124 2005-11-01  Bryce McKinlay  <mckinlay@redhat.com>
126         * include/private/gc_priv.h: Increase MAX_ROOT_SETS to 1024.
128 2005-09-15  Kazu Hirata  <kazu@codesourcery.com>
130         * include/private/gc_locks.h (GC_test_and_set): Change the
131         constraint of the first operand to '0'.
133 2005-09-06  Tom Tromey  <tromey@redhat.com>
135         PR libgcj/23662:
136         * include/private/gcconfig.h (LINUX_STACKBOTTOM): Use instead of
137         HEURISTIC1 on ARM.
139 2005-07-17  SUGIOKA Toshinobu  <sugioka@itonet.co.jp>
141         * include/private/gcconfig.h (sh-linux): Use LINUX_STACKBOTTOM.
143 2005-06-15  Andreas Tobler  <a.tobler@schweiz.ch>
145         * os_dep.c: Add FreeBSD/PowerPC bits.
146         (GC_SysVGetDataStart): Likewise.
147         * include/private/gcconfig.h: Likewise.
149 2005-05-25  Andrew Haley  <aph@redhat.com>
151         * include/private/gcconfig.h (HBLKSIZE): Define to 4096 on
152         powerpc64-linux.
154 2005-05-09  Mike Stump  <mrs@apple.com>
156         * configure: Regenerate.
158 2005-04-19  Hans-Peter Nilsson  <hp@axis.com>
160         * os_dep.c, include/private/gc_locks.h: Import CRIS port by
161         Simon Posnjak from gc6.4.
162         * include/private/gcconfig.h: Ditto.  Add M32R note from gc6.4.
164 2005-04-17  David S. Miller  <davem@davemloft.net>
166         * include/private/gcconfig.h (sparc-linux): Use LINUX_STACKBOTTOM.
167         * os_dep.c (GC_linux_stack_base): Check for bug present in some
168         Sparc glibc variants where __libc_stack_end is erroneously set
169         to "1".  Fallback to procfs code in that case.
171 2005-04-12  Mike Stump  <mrs@apple.com>
173         * configure: Regenerate.
175 2005-04-12  Richard Henderson  <rth@redhat.com>
177         * include/private/gcconfig.h (alpha-linux): Use LINUX_STACKBOTTOM.
179 2005-03-23  Mike Stump  <mrs@apple.com>
181         * darwin_stop_world.c: Update for -m64 multilib.
182         * include/private/gcconfig.h: Likewise.
183         * powerpc_darwin_mach_dep.s: Likewise.
185 2005-03-01  Kelley Cook  <kcook@gcc.gnu.org>
187         * Makefile.in, include/Makefile.in: Regenerate.
189 2005-02-26  Richard Earnshaw  <rearnsha@arm.com>
191         * dyn_load.c: On NetBSD, include machine/elf_machdep.h and define
192         ELFSIZE in terms of ARCH_ELFSIZE (back-ported from gc7.0alpha1).
194 2005-02-15  Bryce McKinlay  <mckinlay@redhat.com>
196         PR libgcj/19823
197         * configure.host: Set gc_use_mmap on *-linux*.
198         * configure.ac: Define USE_MMAP if gc_use_mmap is set.
199         * include/private/gc_priv.h: Include gc_config.h.
200         * configure, include/gc_config.h.in: Rebuilt.
202 2005-02-07  Hans Boehm  <Hans.Boehm@hp.com>
204         * allchblk.c (GC_allochblk_nth): Dont overlook available space if
205           GC disabled, correctly convert GC_finalizer_mem_freed to byte,
206           total_size to words.
207         * dyn_load.c (win32 GC_register_dynamic_libraries): Consider only
208           MEM_IMAGE regions.
209         * mach_dep.c (GC_with_callee_saves_pushed): separate into new function,
210           and indent appropriately.
211         * mark_rts.c (GC_approx_sp): Access stack.
212         * pthread_stop_world.c: (GC_suspend_handler): Explicitly push
213           callee-saves registers when appropriate.
214           (GC_stop_world): Handle EINTR from sem_wait (sync with Mono GC).
216 2005-01-01  Bryce McKinlay  <mckinlay@redhat.com>
218         * configure.ac (AC_CONFIG_HEADERS): Build both include/gc_config.h 
219         and include/gc_ext_config.h.
220         * include/gc_ext_config.h: New file. Define only THREAD_LOCAL_ALLOC.
221         * include/gc.h: Undef PACKAGE_* before including gc_config.h.
223 2004-12-13  Kelley Cook  <kcook@gcc.gnu.org>
225         * configure: Regenerate.
227 2004-11-29  Bryce McKinlay  <mckinlay@redhat.com>
229         PR libgcj/18699
230         Revert patches of 2004-11-26 and 2004-11-27.
232 2004-11-29  Kelley Cook  <kcook@gcc.gnu.org>
234         * configure: Regenerate for libtool change.
236 2004-11-27  Bryce McKinlay  <mckinlay@redhat.com>
238         * include/gc_config.h.in: Add comment. Define only THREAD_LOCAL_ALLOC.
240 2004-11-26  Bryce McKinlay  <mckinlay@redhat.com>
242         Fix "PACKAGE_NAME redefined" errors.
243         * configure.ac (AC_CONFIG_HEADERS): Build both include/config.h 
244         and include/gc_config.h.
245         * configure: Regenerated.
246         * include/gc_config.h.in: No longer auto-generated. Define only the
247         macros needed by libjava.
248         * include/config.h.in: Generated by autoheader.
249         * include/gc.h: Include config.h, not gc_config.h.
251 2004-11-25  Kelley Cook  <kcook@gcc.gnu.org>
253         * configure: Regenerate for libtool reversion.
255 2004-11-24  Kelley Cook  <kcook@gcc.gnu.org>
257         * configure: Regenerate for libtool change.
259 2004-11-22  Eric Botcazou  <ebotcazou@libertysurf.fr>
261         * configure.ac (machdep): Use sparc_mach_dep.lo on
262         sparc64-sun-solaris2.* too.
263         (Solaris gcc optimization fix): Disable on sparc*-sun-solaris2.*.
264         * configure: Regenerate.
266 2004-11-22  Eric Botcazou  <ebotcazou@libertysurf.fr>
268         PR target/18444
269         * configure.ac (threading): Accept 'posix95'.
270         * configure: Regenerate.
272 2004-11-04  Kelley Cook  <kcook@gcc.gnu.org>
274         * Makefile.am: Define ACLOCAL_AMFLAGS.
275         * configure.ac: Remove redundant sinclude.
276         * acinclude.m4: Delete file.
277         * aclocal.m4: Regenerate.
278         * Makefile.in, include/Makefile.in: Regenerate.
279         * configure: Regenerate.
281 2004-10-19  Ulrich Weigand  <uweigand@de.ibm.com>
283         * include/private/gc_priv.h (GC_generic_malloc_words_small_inner):
284         Add prototype.
286 2004-10-13  Kazuhiro Inaoka <inaoka.kazuhiro@renesas.com>
288         * include/private/gcconfig.h: Add m32r-linux target.
290 2004-09-27  Kelley Cook  <kcook@gcc.gnu.org>
292         * configure.ac: Update all AC_DEFINEs to newer style.
293         * configure: Regenerate.
294         * include/gc_config.h.in: Regenerate.
296 2004-08-27  Hans Boehm  <Hans.Boehm@hp.com>
298         * backgraph.c, gc_priv.h (GC_traverse_back_graph,
299         GC_print_back_graph_stats): split GC_traverse_back_graph.
300         * backgraph.c: Dynamically grow in_progress_space.
301         * finalize.c (GC_notify_or_invoke_finalizers): also call
302         GC_print_back_graph_stats.
303         * alloc.c, finalize.c, gc_priv.h (GC_generate_random_backtrace_no_gc,
304         GC_print_back_height): Move delarations to header file.
305         * configure.ac: rename --enable-full-debug to --enable-gc-debug.
306         * configure: Regenerate.
307         
308 2004-08-23  Hans Boehm  <Hans.Boehm@hp.com>
310         * aix_irix_threads.c: Move _THREADS checks after gc_priv.h include.
311         * backgraph.c, include/private/gc_pmark.h: Always include gc.h.
313 2004-08-23  Bryce McKinlay  <mckinlay@redhat.com>
315         * win32_threads.c: Move GC_WIN32_THREADS check after gc_priv.h include.
316         Reported by Danny Smith.
318 2004-08-21  Danny Smith  <dannysmith@users.sourceforge.net>
320         * misc.c (GC_init): Replace lhs cast with rhs cast.
322 2004-08-16  Bryce McKinlay  <mckinlay@redhat.com>
324         * specific.c: Check GC_LINUX_THREADS before including 
325         private/specific.h. From Richard Earnshaw.
327 2004-08-16  Nathanael Nerode  <neroden@gcc.gnu.org>
329         * aclocal.m4: Remove obsolete construct for old automake.
330         * acinclude.m4: Regenerate with aclocal 1.9.1.
331         * configure.ac:  Remove duplicate AC_WITH calls.  Replace
332         AC_CANONICAL_SYSTEM with AC_CANONICAL_HOST, AC_CANONICAL_TARGET.
333         Replace _GCC_TOPLEV_NONCANONICAL calls with ACX_NONCANONICAL_TARGET.
334         Remove now-redundant subst of target_noncanonical.  Remove
335         now-gratuitous m4 quoting around $.  Replace AM_PROG_LIBTOOL with
336         AC_PROG_LIBTOOL and remove second, redundant AC_PROG_LIBTOOL.
337         Use slightly more modern form of AC_INIT.
338         * configure: Rebuild with autoconf 2.59.
339         * Makefile.in, include/Makefile.in: Rebuild with automake 1.9.1.
341 2004-08-16  Andreas Tobler  <a.tobler@schweiz.ch>
343         * solaris_threads.c: Remove ifdef around #include "private/gc_priv.h"
344         since they're not known at this time.
345         * solaris_pthreads.c: Likewise.
347 2004-08-15  Andreas Tobler  <a.tobler@schweiz.ch>
349         PR target/14931
350         * powerpc_darwin_mach_dep.s (_GC_push_regs): Change to new stub style.
352 2004-08-13  Bryce McKinlay  <mckinlay@redhat.com>
354         * configure.ac (gc_cflags): Add -Iinclude.
355         (AC_CONFIG_HEADERS): New. Configure gc_config.h header.
356         Don't write DEFS to boehm-cflags file.
357         * configure: Rebuilt.
358         * gcj_mlc.c: Check #ifdef GC_GCJ_SUPPORT after including headers.
359         * specific.c: Check #ifdef GC_LINUX_THREADS after including headers.
360         * include/gc_config_macros.h: Remove backward-compatibility 
361         redefinitions of GC_ names.
362         * include/gc.h: Include <gc_config.h>.
364 2004-08-13  Bryce McKinlay  <mckinlay@redhat.com>
366         Import Boehm GC version 6.3.
368 2004-08-12  Kelley Cook  <kcook@gcc.gnu.org>
370         * include/Makefile.in: Regenerate
372 2004-07-06  Andrew Pinski  <apinski@apple.com>
374         * os-dep.c (GC_task_self): Declare as static
375         and remove the second declaration.
377 2004-06-20  Andreas Tobler  <a.tobler@schweiz.ch>
379         * Makefile.am: Add rule for .S files to fix bootstrap on
380         solaris and alpha.
381         * Makefile.in: Regenerate.
383 2004-06-16  Paolo Bonzini  <bonzini@gnu.org>
385         * boehm-gc/configure.ac: New name of configure.in.
386         Remove useless multilib stuff.  Change uses of
387         INCLUDES and CXXINCLUDES to AM_CPPFLAGS.
388         * boehm-gc/configure.in: New name of configure.in.
389         * boehm-gc/Makefile.am: Update for automake 1.8.5.
390         * boehm-gc/acinclude.m4: Include ../config/acx.m4.
391         * boehm-gc/aclocal.m4: Regenerate.
392         * boehm-gc/configure: Regenerate.
393         * boehm-gc/Makefile.in: Regenerate.
395 2004-06-15  Paolo Bonzini  <bonzini@gnu.org>
397         * .cvsignore: New file.
399 2004-04-25  Andreas Jaeger  <aj@suse.de>
401         * mark.c (GC_mark_from): Use pointer as prefetch argument.
403 2004-04-06  H.J. Lu  <hongjiu.lu@intel.com>
405         * include/private/gcconfig.h (PREFETCH): Use __builtin_prefetch
406         for gcc >= 3.0.
407         (PREFETCH_FOR_WRITE): Likewise.
409 2004-03-10  Kelley Cook  <kcook@gcc.gnu.org>
411         * configure.ac: Bump AC_PREREQ to 2.59.
412         * configure: Regenerate.
413         * config.in: Regenerate.
415 2004-02-26  Nathanael Nerode  <neroden@gcc.gnu.org>
417         * ltconfig, ltmain.sh: Remove unused files.
418         * configure.in: Remove bogus extra early invocation of
419         AC_CONFIG_AUX_DIR.
420         * configure: Regenerate.
421         * mkinstalldirs, install-sh, config.sub, config.guess:
422         Remove (now) unused files.
423         * Makefile.in: Regenerate (losing references to vanished
424         files).
426         * configure.in: Add CCAS, CCASFLAGS for future automakes.
427         * configure, Makefile.in, include/Makefile.in: Regenerate.
429         * Makefile.am: Remove bogus duplicate setting of AM_CFLAGS.
430         * Makefile.in: Regenerate.
432         * configure.in: Remove bogus duplicate invocation of
433         AM_MAINTAINER_MODE.  Remove obsolete comment.
434         * configure: Regenerate.
436         * acinclude.m4: Remove GC_CONFIGURE macro; move contents
437         to configure.in.
438         * aclocal.m4: Regenerate.
439         * configure.in: Receive contents of GC_CONFIGURE macro.
440         * configure: Regenerate.
442         * configure.in: Remove more obsolete, bogus code.
443         * configure: Regenerate.
445         * acinclude.m4: Remove obsolete and bogus constructs.
446         * aclocal.m4: Regenerate.
447         * configure: Regnerate.
449 2004-02-23  Nathanael Nerode  <neroden@gcc.gnu.org>
451         * acinclude.m4: De-precious CC and CXX so that the right flags
452         are passed down to multilibs.
453         * aclocal.m4: Regenerate.
454         * configure: Regenerate.
456 2004-02-22  Zack Weinberg <zack@codesourcery.com>
457             Nathanael Nerode <neroden@twcny.rr.com>
458             Alexandre Oliva <aoliva@redhat.com>
460         * config.sub, config.guess: Replace with forwarding scripts
461         which invoke the master copies in the top level.
463 2004-02-23  Nathanael Nerode  <neroden@gcc.gnu.org>
465         * acinclude.m4: Remove old no-executables workaround;
466         add new no-executables workaround.
467         * aclocal.m4: Regenerate.
468         * configure.in: Change prereqs to autoconf 2.57.
469         * configure: Regenerate with autoconf 2.57.
471         * configure.in: Use NCN_TARGET_NONCANONICAL and friends.
472         * configure: Regenerate.
473         * Makefile.am: Use target_noncanonical variable from configure.
474         * Makefile.in: Regenerate.
475         * include/Makefile.in: Regenerate.
477 2004-02-20  Andrew Cagney  <cagney@redhat.com>
479         * config.guess: Update from version 2002-01-10 to 2004-02-16.
480         * config.sub: Update from version 2002-01-02 to 2004-02-16.
482 2004-02-19  Nathanael Nerode  <neroden@gcc.gnu.org>
484         * acinclude.m4: Remove bogus duplicate call to AC_CANONICAL_BUILD.
485         * aclocal.m4: Rebuild.
486         * configure: Regenerate.
488         * acinclude.m4: Move certain code to configure.in.
489         * configure.in: Receive code from acinclude.m4.
490         * aclocal.m4: Rebuild.
491         * configure: Regenerate.
493         * Makefile.direct, alloc.c: Resync to upstream 6.3 alpha 1.
495 2004-01-20  Andrew Haley  <aph@redhat.com>
497         * include/private/gcconfig.h (USE_MMAP): Define for all Linux.
499         * configure.in: Comment change.
501 2004-01-16  Andrew Haley  <aph@redhat.com>
503         * configure.in (NO_EXECUTE_PERMISSION): Remove global declaration;
504         add for ia64; remove for MIPS.
505         * configure: Regnerated.
507 2004-01-14  Kelley Cook  <kcook@gcc.gnu.org>
509         * configure.in: Add in AC_PREREQ(2.13)
511 2004-01-07  Dave Jones <davej@redhat.com>
513         * malloc.c (GC_generic_malloc): Correct initialization typo.
514         * mallocx.c (GC_generic_malloc_ignore_off_page): Ditto.
516 2003-10-31  Richard Earnshaw  <rearnsha@arm.com>
518         * include/private/gcconfig.h: Re-install change of 2003-04-16.
520 2003-10-20  Rainer Orth  <ro@TechFak.Uni-Bielefeld.DE>
522         * mips_sgi_mach_dep.s: Use _ABIO32 instead of external
523         _MIPS_SIM_ABI32.
525 2003-10-18  Alan Modra  <amodra@bigpond.net.au>
527         * include/private/gcconfig.h (ALIGNMENT <powerpc linux>): Remove
528         unsure comment.
530 2003-10-03  Jeff Sturm  <jsturm@one-point.com>
532         * configure: Rebuild.
534 2003-10-03  Hans Boehm  <Hans.Boehm@hp.com>
536         * configure.in: Remove NO_GETENV definition for win32.
537         * mach_dep.c (GC_generic_push_regs): Prevent tail call optimization.
538         * misc.c (GC_init_inner): Call GC_thr_init for win32.
539           (GC_set_warn_proc): Add assertion.
540         * win32_threads.c: Import 6.3alpha2 version.
541         * include/private/gc_priv.h: Add support for EMPTY_GETENV_RESULTS.
543 2003-09-29  Rainer Orth  <ro@TechFak.Uni-Bielefeld.DE>
545         * configure.in: Remove wildcard from Solaris 8-9/Intel and Solaris
546         2.3/SPARC, there are no micro versions.
547         Treat Solaris 10 and up alike.
548         * configure: Regenerate.
550 2003-09-22  Anthony Green  <green@redhat.com>
552         * os_dep.c: Fix GC_get_stack_base build problem for vanilla elf
553         "NOSYS" targets.
555 2003-09-20    <green@redhat.com>
557         * include/private/gcconfig.h: Don't check for __XSCALE__.  Instead
558         check for __arm__ or __thumb__.
560 2003-09-09  Alan Modra  <amodra@bigpond.net.au>
562         * configure: Regenerate.
564 2003-08-07  Rainer Orth  <ro@TechFak.Uni-Bielefeld.DE>
565             Roger Sayle <roger@eyesopen.com>
567         * configure.in: Set INCLUDES to absolute path.
568         Save $INCLUDES in boehm-cflags, too.
569         Set INCLUDES so it's available to config.status.
570         * configure: Regenerate.
572 2003-07-31  Danny Smith  <dannysmith@users.sourceforge.net>
574         * include/gc.h (GC_CreateThread): Declare with WINAPI
575         attribute.
576         * win32_threads.c (GC_CreateThread): Make definitions consistent
577         with declaration.  Cast &thread_table[i].handle to PHANDLE
578         in call to DuplicateHandle
579         (thread_start): Declare as static.
581 2003-07-30  Andreas Tobler  <a.tobler@schweiz.ch>
583         * dyn_load.c: Define __private_extern__ to match Apple's system
584         header.
586 2003-07-28  Loren J. Rittle  <ljrittle@acm.org>
588         * os_dep.c: Remove redundancy introduced in last merge.
590 2003-07-28  Jeff Sturm  <jsturm@one-point.com>
592         Import GC 6.3alpha1.
593         * BCC_MAKEFILE: Merge with GC 6.3alpha1 release.
594         * ChangeLog: Likewise.
595         * Makefile.am: Likewise.
596         * Makefile.direct: Likewise.
597         * Makefile.dj: Likewise.
598         * allchblk.c: Likewise.
599         * alloc.c: Likewise.
600         * backgraph.c: Likewise.
601         * configure.host: Likewise.
602         * configure.in: Likewise.
603         * dbg_mlc.c: Likewise.
604         * dyn_load.c: Likewise.
605         * finalize.c: Likewise.
606         * gc_cpp.cc: Likewise.
607         * gc_dlopen.c: Likewise.
608         * gcj_mlc.c: Likewise.
609         * if_mach.c: Likewise.
610         * mach_dep.c: Likewise.
611         * malloc.c: Likewise.
612         * mallocx.c: Likewise.
613         * mark.c: Likewise.
614         * mark_rts.c: Likewise.
615         * misc.c: Likewise.
616         * os_dep.c: Likewise.
617         * ptr_chck.c: Likewise.
618         * reclaim.c: Likewise.
619         * solaris_pthreads.c: Likewise.
620         * solaris_threads.c: Likewise.
621         * sparc_mach_dep.S: Likewise.
622         * threadlibs.c: Likewise.
623         * typd_mlc.c: Likewise.
624         * version.h: Likewise.
625         * win32_threads.c: Likewise.
626         * Mac_files/MacOS_Test_config.h: Likewise.
627         * Mac_files/MacOS_config.h: Likewise.
628         * cord/cordbscs.c: Likewise.
629         * cord/cordprnt.c: Likewise.
630         * cord/de_win.c: Likewise.
631         * doc/README: Likewise.
632         * doc/README.MacOSX: Likewise.
633         * doc/README.changes: Likewise.
634         * doc/README.environment: Likewise.
635         * doc/README.ews4800: Likewise.
636         * doc/README.linux: Likewise.
637         * doc/README.macros: Likewise.
638         * doc/README.win32: Likewise.
639         * doc/debugging.html: Likewise.
640         * doc/gcdescr.html: Likewise.
641         * doc/tree.html: Likewise.
642         * include/Makefile.in: Likewise.
643         * include/gc.h: Likewise.
644         * include/gc_cpp.h: Likewise.
645         * include/gc_local_alloc.h: Likewise.
646         * include/gc_mark.h: Likewise.
647         * include/gc_pthread_redirects.h: Likewise.
648         * include/gc_typed.h: Likewise.
649         * include/new_gc_alloc.h: Likewise.
650         * include/private/dbg_mlc.h: Likewise.
651         * include/private/gc_hdrs.h: Likewise.
652         * include/private/gc_locks.h: Likewise.
653         * include/private/gc_pmark.h: Likewise.
654         * include/private/gc_priv.h: Likewise.
655         * include/private/gcconfig.h: Likewise.
656         * include/private/solaris_threads.h: Likewise.
657         * include/private/specific.h: Likewise.
658         * tests/test.c: Likewise.
659         * tests/test_cpp.cc: Likewise.
661         * configure: Rebuild.
662         * Makefile.in: Rebuild.
664         * mips_sgi_mach_dep.s: Add.
666         * alpha_mach_dep.s: Remove.
667         * irix_threads.c: Remove.
668         * linux_threads.c: Remove.
669         * mips_sgi_mach_dep.S: Remove.
670         * missing: Remove.
671         * powerpc_macosx_mach_dep.s: Remove.
672         * doc/Makefile.am: Remove.
673         * doc/Makefile.in: Remove.
675 2003-07-25  Roger Sayle  <roger@eyesopen.com>
677         * configure.host: Only use +ESdbgasm when using the HPUX native
678         compiler on PA-Risc.  It isn't recognized by GCC and is silently
679         ignored by HP's compilers on ia64.
681 2003-04-28  Mohan Embar  <gnustuff@thisiscool.com>
683         * configure.in: define GC_DLL under mingw if --enable-shared
684         * configure: rebuilt
685         * win32_threads.c: add #ifdef GC_DLL around DllMain
687 2003-04-16  Richard Earnshaw  <rearnsha@arm.com>
689         * include/private/gcconfig.h: Add support for arm-netbsdelf.
691 2003-04-09  Tom Tromey  <tromey@redhat.com>
693         * include/private/gcconfig.h (LINUX_STACKBOTTOM): Define for
694         POWERPC.
695         (STACK_GRAN, HEURISTIC1): Don't define for POWERPC.
697 2003-03-22  Richard Henderson  <rth@redhat.com>
699         * include/private/gc_locks.h [IA64]: Include ia64intrin.h.
700         (GC_test_and_set): Use __sync_lock_test_and_set.
701         (GC_clear): Use volatile assignment.
702         (GC_compare_and_exchange): Use __sync_bool_compare_and_swap.
703         (GC_memory_write_barrier): Use __sync_synchronize.
705 2003-03-12  Andreas Schwab  <schwab@suse.de>
707         * configure.in: Avoid trailing /. in toolexeclibdir.
708         * configure: Rebuilt.
710 2003-03-04  Hans Boehm <Hans.Boehm@hp.com>
711         * include/private/gcconfig.h (GC_data_start): declare when needed.
712         * include/private/gc_priv.h: Include gcconfig.h after ptr_t
713         declaration.
714         * dyn_load.c (GC_register_dynamic_libraries_dl_iterate_phdr,
715         GC_register_dynlib_callback): Register main data for static
716         executable if dl_iterate_phdr() didn't.
717         * misc.c (GC_init_inner): Call GC_init_linux_data_start() even
718         if we don't expect to register main static data.
720 2003-03-03  Hans Boehm  <Hans.Boehm@hp.com>
721         * mark_rts.c (GC_cond_register_dynamic_libraries): add.
722         (GC_push_roots): explicitly mark free list headers, register
723         dynamic libraries only if !REGISTER_LIBRARIES_EARLY.
724         * alloc.c (GC_stopped_mark): Conditionally call
725         GC_cond_register_dynamic_libraries().
726         (GC_collect_a_little_inner, GC_try_to_collect_inner): Check GC_dont_gc.
727         * dyn_load.c (GC_register_main_static_data): define.
728         (GC_register_dyn_libraries (Linux /proc, Linux ELF versions)):
729         no longer skip main data.
730         * misc.c (GC_REGISTER_MAIN_STATIC_DATA): define.
731         (GC_init_inner): Make main data registration conditional.
732         * include/private/gc_priv.h (GC_register_main_static_data): declare.
733         * include/private/gcconfig.h (REGISTER_LIBRARIES_EARLY): define
734         for LINUX.
736 2003-02-20  Alexandre Oliva  <aoliva@redhat.com>
738         * configure.in: Propagate ORIGINAL_LD_FOR_MULTILIBS to
739         config.status.
740         * configure: Rebuilt.
742 2003-02-11  Andreas Tobler  <a.tobler@schweiz.ch>
744         * include/private/gcconfig.h: undefine MPROTECT_VDB for MACOSX
746 2003-01-27  Alexandre Oliva  <aoliva@redhat.com>
748         * configure.in (toolexecdir, toolexeclibdir): Set and AC_SUBST.
749         Remove USE_LIBDIR conditional.
750         * Makefile.am (toolexecdir, toolexeclibdir): Don't override.
751         * Makefile.in, configure: Rebuilt.
753 2002-12-31  Tom Tromey  <tromey@redhat.com>
755         For PR libgcj/8933:
756         * include/Makefile.in: Rebuilt.
757         * include/Makefile.am (noinst_HEADERS): Renamed from
758         include_HEADERS.
760 2002-11-19  Rainer Orth  <ro@TechFak.Uni-Bielefeld.DE>
762         * ltconfig (osf[345]): Append $major to soname_spec.
763         Reflect this in library_names_spec.
764         * ltmain.sh (osf): Prefix $major with . for use as extension.
766 2002-10-02  Andreas Jaeger  <aj@suse.de>
768         * include/private/gcconfig.h (HBLKSIZE): Define for x86-64.
770 2002-09-28  Richard Earnshaw  <rearnsha@arm.com>
772         * include/private/gcconfig.h: Don't check for __XSCALE__.  Instead
773         check for __arm__ or __thumb__.
775 2002-09-27  Ulrich Weigand  <uweigand@de.ibm.com>
777         * include/private/gcconfig: Add machine type S390.  Add s390x support.
778         * include/private/gc_locks.h (GC_test_and_set): Implement for s390.
779         (GC_compare_and_exchange): Likewise.
781 2002-09-24  Jason Thorpe  <thorpej@wasabisystems.com>
783         * include/private/gcconfig.h: Fix NetBSD/mips parameters.
785 2002-08-23  Adam Megacz <adam@xwt.org>
787         * win32_threads.cc: Removed extraneous ABORT()
789 2002-09-22  Kaveh R. Ghazi  <ghazi@caip.rutgers.edu>
791         * Makefile.am (all-multi): Fix multilib parallel build.
793 2002-07-18  Bo Thorsen  <bo@suse.de>
795         * include/private/gcconfig.h: Add x86-64 definitions.
796         * os_dep.c: Add x86-64 support.
797         * configure.in: Likewise.
798         * configure: Regenerate.
800 2002-07-18  H.J. Lu <hjl@gnu.org>
802         * mach_dep.c (GC_push_regs): Remove the unused Linux/mips code.
804 2002-07-18  H.J. Lu  (hjl@gnu.org)
806         * configure.in (machdep): Don't add mips_sgi_mach_dep.lo for
807         Linux/mips.
809 2002-06-28  Hans Boehm <Hans_Boehm@hp.com>
810             Jonathan Clark
812         * win32_threads.c (GC_push_all_stacks): Tolerate bad sp.
814 2002-06-09  H.J. Lu  (hjl@gnu.org)
816         * include/private/gc_locks.h (GC_test_and_set): Support
817         Linux/mips.
818         (GC_TEST_AND_SET_DEFINED): Likewise.
820         * include/private/gcconfig.h (DYNAMIC_LOADING): Defined for
821         Linux/mips.
822         (DATAEND): Likewise.
823         (LINUX_STACKBOTTOM): Likewise.
824         (STACKBOTTOM): Removed for Linux/mips.
826 Sun May 19 11:32:03 2002  Mark P Mitchell  <mark@codesourcery.com>
828         * irix_threads.cc (GC_pthread_detach): Do not use REAL_FUNC.
829         (GC_pthread_create): Fix typo.
830         (GC_TRY_LOCK): Likewise.
831         * include/private/gc_locks.h (GC_test_and_set): Only take one
832         one argument.
833         (LOCK): Adjust appropriately.
834         * include/private/gc_priv.h (SIG_SUSPEND): Use SIGRTMIN if
835         _SIGRTMIN is unavailable.
837 2002-05-16  Rainer Orth  <ro@TechFak.Uni-Bielefeld.DE>
839         * acinclude.m4: Allow for PWDCMD to override hardcoded pwd.
840         * aclocal.m4: Regenerate.
841         * configure: Regenerate.
843 2002-05-08  Alexandre Oliva  <aoliva@redhat.com>
845         * configure.in (ORIGINAL_LD_FOR_MULTILIBS): Preserve LD at
846         script entry, and set LD to it when configuring multilibs.
847         * configure: Rebuilt.
849 2002-04-22  Jeff Sturm  <jsturm@one-point.com>
851         * Makefile.am (toolexeclib_LTLIBRARIES): Remove.
852         (noinst_LTLIBRARIES): Add libgcjgc.la.
854         * Makefile.in: Rebuild.
856 2002-04-22  David S. Miller  <davem@redhat.com>
858         * include/private/gcconfig.h: Hard-code STACKBOTTOM on
859         64-bit SPARC Linux, the __libc_stack_end technique does
860         not work in this case.
862 2002-04-22  Jeff Sturm  <jsturm@one-point.com>
864         * gcconfig.h: Enable DYNAMIC_LOADING for all sparc-solaris ABIs.
866 2002-04-17  Hans Boehm  <Hans_Boehm@hp.com>
868         * include/private/gcconfig.h: Use LINUX_STACKBOTTOM for
869         SPARC Linux.
871 2002-04-09  Loren J. Rittle  <ljrittle@acm.org>
873         * include/private/gcconfig.h (DATAEND): Update comment example
874         to match reality.
876 2002-04-08  Loren J. Rittle  <ljrittle@acm.org>
878         * include/private/gcconfig.h (DATAEND): Clarify comment.
880 2002-04-08  Hans Boehm  <Hans_Boehm@hp.com>
882         * include/private/gc_priv.h (WARN macro): Add "GC warning:" prefix.
883         (GC_large_alloc_warn_interval, GC_large_alloc_warn_suppressed):
884         declare.
885         * allchblk.c (GC_allchblk_nth): Change text and support reduced
886         frequency for blacklist warning message.
887         * misc.c (GC_large_alloc_warn_interval,
888         GC_large_alloc_warn_suppressed): define.
889         (GC_init_inner): Check GC_NO_BLACKLIST_WARNING and
890         GC_LARGE_ALLOC_WARN_INTERVAL environment variables.
891         * doc/README.environment (GC_NO_BLACKLIST_WARNING): Deprecate.
892         (GC_LARGE_ALLOC_WARN_INTERVAL): Add documentation.
894         * dyn_load.c (_DYNAMIC): Move declaration to file scope.
896 2002-04-04  Loren J. Rittle  <ljrittle@acm.org>
898         * include/private/gcconfig.h: Add support for an unmapped
899         memory hole between the end of the initialized data segment
900         and the start of the BSS on FreeBSD/i386.
902 2002-03-30  Krister Walfridsson  <cato@df.lth.se>
904         * include/private/gcconfig.h: define DYNAMIC_LOADING for ELF
905         NetBSD/i386.
907 2002-03-29  Hans Boehm  <Hans_Boehm@hp.com>
909         * linux_threads.c (return_free_lists): Clear fl[i] unconditionally.
910         (GC_local_gcj_malloc): Add assertion.
911         (start_mark_threads): Fix abort message.
912         * mark.c (GC_mark_from): Generalize assertion.
913         * reclaim.c (GC_clear_fl_links): New function.
914         (GC_start_reclaim): Must clear some freelist links.
915         * include/private/specific.h, specific.c: Add assertions.
916         Safer definition for INVALID_QTID, quick_thread_id.  Fix/add comments.
917         Rearrange tse fields.
919 2002-03-27  Richard Henderson  <rth@redhat.com>
921         * os_dep.c (GC_init_linux_data_start): Fix references to
922         __data_start and _end.
924 2002-03-25  Loren J. Rittle  <ljrittle@acm.org>
926         * include/private/gcconfig.h: Change all likely references
927         to linker script synthesized symbols to use this idiom:
928         extern int etext[]; etext
930 2002-03-25  Jeff Sturm  <jsturm@one-point.com>
932         * linux_threads.c (GC_get_nprocs): Close file descriptor.
934 2002-03-21  Loren J. Rittle  <ljrittle@acm.org>
936         * include/private/gcconfig.h: Add unified test for FreeBSD.
937         Support FreeBSD/alpha.
938         * os_dep.c: Do not include <machine/trap.h> unless available.
939         (GC_freebsd_stack_base): Fix types.
941 2002-03-17  Bryce McKinlay  <bryce@waitaki.otago.ac.nz>
943         * Makefile.am: Make a convenience library.
944         * Makefile.in: Rebuilt.
946 2002-03-15  Anthony Green  <green@redhat.com>
948         * misc.c (GC_init_inner): Initialize GC_write_cs before use.
949         * configure.in: Disable use of getenv for win32 targets (some of
950         which have broken implementations).
951         * configure: Rebuilt.
953 2002-03-12  Adam Megacz  <adam@xwt.org>
955         * dyn_load.c: Renamed GC_win32s to GC_no_win32_dlls.
956         * misc.c: Renamed GC_is_win32s() to GC_no_win32_dlls
957         * os_dep.c: Renamed GC_win32s to GC_no_win32_dlls and
958         statically initialized it to TRUE if compiling with GCC.
959         * win32_threads.c (thread_start): We no longer use SEH if
960         compiling with GCC.
961         * mark.c (GC_mark_some): We no longer use SEH if
962         compiling with GCC.
964 2002-03-09  Bryce McKinlay  <bryce@waitaki.otago.ac.nz>
966         * include/gc_priv.h: Define ALIGN_DOUBLE on 32 bit targets if GCJ
967         support is enabled, for hash synchronization.
969 2002-02-24  Adam Megacz  <adam@xwt.org>
971         * Makefile.am: Added win32_threads.c to sources list.
972         * win32_threads.c: Added two */'s which I had neglected.
974 2002-02-20  Bryce McKinlay  <bryce@waitaki.otago.ac.nz>
976         * Makefile.am: Re-add SUBDIRS parameter which was lost in merge.
977         * Makefile.in: Rebuilt.
979 2002-02-13  Bryce McKinlay  <bryce@waitaki.otago.ac.nz>
981         * dbg_mlc.c (GC_debug_generic_malloc): Removed.
983         * sparc_mach_dep.S: Rename from sparc_mach_dep.s as it is a
984         preprocessor file.
985         * mips_sgi_mach_dep.S: Likewise.
986         * Makefile.am: Update for above changes.
987         * Makefile.in: Rebuilt.
989 2002-02-12  Richard Henderson  <rth@redhat.com>
991         * configure.in: Re-apply 2001-06-26 configure change.
992         * configure: Rebuild.
994 2002-02-12  Bryce McKinlay  <bryce@waitaki.otago.ac.nz>
996         Imported GC 6.1 Alpha 3.
998         * sparc_mach_dep.S: Delete incorrectly named file.
1000 2001-02-11  Adam Megacz <adam@xwt.org
1002         * configure.in: support for win32, saner
1003         cross-compile options
1005 2001-02-08  Anthony Green  <green@redhat.com>
1007         * include/private/gcconfig.h: Add XSCALE NOSYS support for bare
1008           board embedded targets.
1009         * os_dep.c: Avoid signal handling code for NOSYS/ECOS targets.
1010           Use GC_get_stack_base for NOSYS/ECOS targets.  Clean up some
1011           redundant uses of ECOS.
1012         * misc.c: Use NOSYS where ECOS is being used.
1013           Don't define GC_write twice for ECOS systems.
1014           (GC_write): New function for NOSYS targets.
1016 2002-02-06  Adam Megacz <adam@xwt.org>
1018         * boehm-gc/include/gc.h: (GC_CreateThread) This function is
1019         now exposed on all Win32 platforms.
1020         * boehm-gc/win32_threads.c: (GC_CreateThread) This now
1021         compiles on Win32; it invokes CreateThread() if GC is built
1022         as a DLL; otherwise it registers the thread.
1023         * boehm-gc/misc.c (GC_init): Initialize GC_allocate_ml in case
1024         libgcjgc was not built as a DLL.
1026 2002-02-01  Adam Megacz <adam@xwt.org>
1028         * boehm-gc on win32 now automatically detects if it is being built
1029         as a DLL; see http://gcc.gnu.org/ml/java/2001-12/msg00240.html
1031 2002-01-25  David Edelsohn  <edelsohn@gnu.org>
1033         * include/gc.h (GC_INIT): Add DATASTART and DATAEND roots on AIX.
1034         * include/private/gcconfig.h (RS6000): Add 64-bit AIX support.
1035         Define USE_GENERIC_PUSH_REGS.  Use AIX _data and _end symbols for
1036         DATASTART and DATAEND roots.
1037         * rs6000_mach_dep.s: Add function descriptor and traceback table.
1039 2001-12-16  Jeff Sturm  <jsturm@one-point.com>
1041         * dyn_load.c: Define ElfW (if needed) for all targets,
1042         not just GNU/Linux.
1043         (GC_FirstDLOpenedLinkMap): Use it.
1044         (GC_register_dynamic_libraries_dl): Use it.
1045         * include/private/gcconfig.h: Define CPP_WORDSZ, ELF_CLASS
1046         for sparcv9.
1048 2001-12-16  Craig Rodrigues  <rodrigc@gcc.gnu.org>
1050         PR other/3725
1051         * configure.in: Add AC_SUBST(target_alias).
1052         * configure: Regenerated.
1054 2001-11-26  Loren J. Rittle  <ljrittle@acm.org>
1056         * linux_threads.c (WRAP_FUNC(pthread_join)): Remove special
1057         case for GC_FREEBSD_THREADS.
1058         * configure.in (*-*-freebsd*): Clarify warning.
1059         * configure: Rebuilt.
1061 2001-10-23  Loren J. Rittle  <ljrittle@acm.org>
1062             Andreas Tobler <toa@pop.agri.ch>
1064         * include/private/solaris_threads.h: Update to use GC_SOLARIS_THREADS.
1066 2001-10-22  Bryce McKinlay  <bryce@waitaki.otago.ac.nz>
1068         * linux_threads.c (GC_init_parallel): Do not declare as a static
1069         constructor.
1070         * include/gc.h (GC_init): Declare here. Add description.
1071         * include/private/gc_priv.h (GC_init): Remove declaration.
1073 2001-10-16  Loren J. Rittle  <ljrittle@acm.org>
1075         * include/gc_pthread_redirects.h: Generalize test to use GC_PTHREADS.
1076         * linux_threads.c (WRAP_FUNC(pthread_join)): Conditionalized on
1077         GC_FREEBSD_THREADS, handle strange interaction between system
1078         pthread implementation and boehm-gc signal-handler architecture.
1079         * tests/test.c (main): Conditionalized on GC_FREEBSD_THREADS,
1080         set stack.
1081         * include/private/gcconfig.h (configuration keyed off FREEBSD):
1082         Define SIG_SUSPEND, SIG_THR_RESTART.  Do not define
1083         MPROTECT_VDB when GC_FREEBSD_THREADS is defined.
1085 2001-10-16  Loren J. Rittle  <ljrittle@acm.org>
1087         * Makefile.am (test.o): Find tests/test.c in $(srcdir).
1088         * Makefile.in: Rebuilt.
1090 2001-10-16  Bryce McKinlay  <bryce@waitaki.otago.ac.nz>
1092         * Makefile.am, acinclude.m4, configure.in: Imported GC 6.1 Alpha 1 and
1093         merged local changes.
1095 2001-09-26  Rainer Orth  <ro@TechFak.Uni-Bielefeld.DE>
1097         * solaris_threads.c (MAX_ORIG_STACK_SIZE) [I386]: Provide special
1098         Solaris 2/Intel definition.
1100         * configure.in (i?86-*-solaris2.[89]*): Define
1101         SOLARIS25_PROC_VDB_BUG_FIXED.
1102         * include/private/gcconfig.h [I386 && SUNOS5]: Use it.
1103         * configure: Regenerate.
1105         * include/private/gcconfig.h [I386 && SUNOS5] (DATASTART): Use _etext.
1106         (DATAEND): Define using _end.
1108 2001-09-11  Per Bothner  <per@bothner.com>
1110         * include/Makefile.am:  New file.  It defines include_HEADERS.
1111         * Makefile.am (SUBDIRS):  New macro, set to include.
1112         * configure.in (AC_OUTPUT):  Add include/Makefile.
1114 2001-08-20  Tom Tromey  <tromey@redhat.com>
1116         * configure: Rebuilt.
1117         * configure.in: Always ask gcc for threads package.
1119 2001-08-17  Tom Tromey  <tromey@redhat.com>
1121         * Makefile.am, acinclude.m4, configure.in: Imported GC 6.0 and
1122         merged local changes.
1124 2001-08-02  David Billinghurst <David.Billinghurst>
1126         * configure: Rebuilt.
1127         * configure.in:  POSIX threads on cygwin does not link with
1128         -lpthreads.
1130 2001-07-03  Tom Tromey  <tromey@redhat.com>
1132         Fix for PR bootstrap/3281:
1133         * aclocal.m4, configure, Makefile.in: Rebuilt.
1134         * acinclude.m4: Set mkinstalldirs for in-tree build.
1136 2001-06-26  Richard Henderson  <rth@redhat.com>
1138         * alpha_mach_dep.s: Mark call-saved FP registers.
1139         * include/private/gcconfig.h (ALPHA): Remove USE_GENERIC_PUSH_REGS.
1140         * configure.in (alpha*): Re-enable alpha_mach_dep.s
1141         * configure: Rebuild.
1143 2001-06-12  Tom Tromey  <tromey@redhat.com>
1145         * aclocal.m4, configure: Rebuilt.
1146         * acinclude.m4: Find configure.host in srcdir.
1148 2001-06-09  Alexandre Oliva  <aoliva@redhat.com>, Stephen L Moshier  <moshier@mediaone.net>
1150         * configure.in (AC_EXEEXT): Work around in case it expands to
1151         nothing, as in autoconf 2.50.
1152         * acinclude.m4: Likewise.
1153         * aclocal.m4, configure: Rebuilt.
1155 2001-06-07  Tom Tromey  <tromey@redhat.com>
1157         For PR bootstrap/3075:
1158         * configure, aclocal.m4, Makefile.in: Rebuilt.
1159         * configure.in: Don't call AC_CONFIG_AUX_DIR or
1160         AC_CANONICAL_SYSTEM.
1161         * acinclude.m4 (BOEHM_CONFIGURE): Call AC_CONFIG_AUX_DIR and
1162         AC_CANONICAL_SYSTEM here.
1163         * Makefile.am (CONFIG_STATUS_DEPENDENCIES): Use srcdir, not
1164         boehm_gc_basedir.
1166 2001-05-24  Bryce McKinlay  <bryce@waitaki.otago.ac.nz>
1168         * Makefile.am: Override gctest_OBJECTS so tests/test.c can be built.
1169         (libgcjgc_la_SOURCES): Remove typo.
1170         * tests/test.c: Fix struct names and includes for GC_GCJ_SUPPORT case.
1171         * Makefile.in: Rebuilt.
1173 2001-05-21  Bryce McKinlay  <bryce@waitaki.otago.ac.nz>
1175         Imported version version 6.0alpha7.
1177         * README, README.Mac, README.OS2, README.QUICK, README.alpha,
1178         README.amiga, README.debugging, README.dj, README.hp, README.linux,
1179         README.rs6000, README.sgi, README.solaris2, README.uts,
1180         README.win32, SCoptions.amiga, backptr.h, barrett_diagram,
1181         dbg_mlc.h, gc.h, gc.man, gc_alloc.h, gc_cpp.h, gc_hdrs.h, gc_mark.h,
1182         gc_priv.h, gc_private.h, gc_typed.h, gcconfig.h,
1183         hpux_irix_threads.c, makefile.depend, nursery.c,
1184         solaris_threads.h, test.c, test_cpp.cc, weakpointer.h, cord/README,
1185         cord/SCOPTIONS.amiga, cord/SMakefile.amiga, cord/cord.h,
1186         cord/ec.h, cord/gc.h, cord/private/cord_pos.h, include/backptr.h,
1187         include/gc_copy_descr.h, include/gc_nursery.h: Remove obsolete/moved
1188         files.
1190 2001-05-19  Hans Boehm  <hans_boehm@hp.com>
1192         * configure.host: Build with -fexceptions.
1193         * linux_threads.c: Remember which thread stopped world for
1195 2001-05-04  Loren J. Rittle  <ljrittle@acm.org>
1196             with final tuning by Bryce McKinlay
1198         * configure.in: Add support for --enable-threads=posix on FreeBSD.
1199         * configure: Rebuilt.
1201 2001-05-01  Jeffrey Oldham  <oldham@codesourcery.com>
1203         * gc_priv.h (UNLOCK): Change type of GC_noop1 argument.
1204         (GC_noop1): Change declaration to take one argument.
1206 2001-04-26  Alexandre Oliva  <aoliva@redhat.com>
1208         * configure.in: Obtain THREADS with `gcc -v'.
1209         * configure: Rebuilt.
1211 2001-04-05  Hans Boehm  <hans_boehm@hp.com>
1213         * misc.c: Back out buggy changes to stack clearing code.
1214         Reduce CLEAR_SIZE to 1/4 of original value to reduce time
1215         spent clearing memory.
1217 2001-04-04  Hans Boehm  <hans_boehm@hp.com>
1219         * finalize.c:
1220         - Accomodate finalization requests for static objects.
1221           (Will be required by hash synchronization.  May be needed
1222           in some configurations now.)
1224         * gc_priv.h:
1225         - Define MIN_WORDS.  All allocation requests are rounded
1226           up to at least this size.  Removes a subtle assumption that
1227           Java objects have a 2 word header.
1229         * gcconfig.h:
1230         - Adjust Linux/IA64 configuration for non-ancient kernels.
1231           (Necessary fix for IA64.)
1233         * linux_threads.c:
1234         - Fix syntax error in currently unused code.  Will be needed
1235           for Linux/PA-RISC.
1237         * malloc.c:
1238         - Handle MIN_WORDS.
1240         * misc.c:
1241         - Handle MIN_WORDS.
1242         - Change stack cleaning code to typically clear about one tenth
1243           the memory it used to in the threads configuration.  Occasionally
1244           still clear more.  (This is really a fix for a long-standing
1245           and fairly significant performance bug with threads.)
1247         * os_dep.c:
1248         - Fix the code for finding the beginning of the data segment under
1249           Linux.  I believe this is necessary for some IA64 Linux
1250           distributions.  It will also helo other platforms, though those
1251           may additionally require a gcconfig.h adjustment.  (This basically
1252           works around the absence of a data_start or __data_start
1253           definition in glibc.)
1255         * test.c:
1256         - Handle rounding due to MIN_WORDS.
1258 2001-03-22  Tom Tromey  <tromey@redhat.com>
1260         * Makefile.am (gctest_LDFLAGS): Use -shared-libgcc.
1262 2001-03-19  Tom Tromey  <tromey@redhat.com>
1264         * Makefile.in: Rebuilt.
1265         * Makefile.am (gctest_LDFLAGS): new macro.
1267 2001-03-16  Tom Tromey  <tromey@redhat.com>
1269         * Makefile.in: Rebuilt.
1270         * Makefile.am (TESTS_ENVIRONMENT): New macro.
1272 2001-01-23  Rod Stewart <stewart@lab43.org>
1274         * gcconfig.h: Check for `__arm__', not `arm'.
1276 2000-12-30  Bryce McKinlay  <bryce@albatross.co.nz>
1278         * configure.in: Rename THREADLIB to THREADLIBS.
1279         * Makefile.am (LINK): Add $(THREADLIBS) to libtool command line. This
1280         ensures that we link the correct version of the linuxthreads semaphore
1281         functions.
1282         * Makefile.in: Rebuilt.
1283         * configure: Rebuilt.
1285         * linux_thread.c (GC_thr_init, GC_suspend_handler): Add SIGABRT to the
1286         list of signals which are not blocked during suspend in the NO_SIGNALS
1287         case.
1289 2000-12-23  Hans Boehm  <Hans_Boehm@hp.com>
1291         * gcj_mlc.c (GC_gcj_malloc): Don't release allocation lock twice.
1293 2000-12-15  Bryce McKinlay  <bryce@albatross.co.nz>
1295         * Makefile.dist: Renamed from Makefile.orig.
1297 2000-12-11  Alexandre Petit-Bianco  <apbianco@cygnus.com>
1299         * Makefile.am (gctest_LDADD): Added EXTRA_TEST_LIBS.
1300         * configure.in (EXTRA_TEST_LIBS): Check for `dlopen' in -ldl and
1301         set accordingly.
1302         * Makefile.in: Rebuilt.
1303         * configure: Likewise.
1305 2000-12-10  Geoffrey Keating  <geoffk@redhat.com>
1307         * gcconfig.h: Add new case for powerpc EABI.
1308         [PPC]: Handle embedded OS for powerpc simulator.
1310 2000-09-30  Bryce McKinlay  <bryce@albatross.co.nz>
1312         * configure.in: Define GC_GCJ_SUPPORT. Define NO_DEBUGGING in
1313         cross-compile configuration only.
1314         * Makefile.am: Build gcj_mlc.c.
1315         * configure, Makefile.in: Rebuilt.
1317 2000-09-10  Alexandre Oliva  <aoliva@redhat.com>
1319         * acinclude.m4: Include libtool macros from the top level.
1320         * aclocal.m4, configure: Rebuilt.
1322 2000-09-04  Anthony Green  <green@redhat.com>
1324         Fix for PR libgcj/230:
1325         * mark.c (GC_mark_from_mark_stack): Remove call to
1326         GC_debug_object_start.
1327         * gc_priv.h (GC_debug_object_start): Remove prototype.
1329 2000-08-16  Alexandre Oliva  <aoliva@redhat.com>
1331         * gcconfig.h [OSF1] (_end): Declare as `int'.
1333 2000-08-02  Tom Tromey  <tromey@cygnus.com>
1335         * gc_priv.h (GC_generic_malloc_inner): Prototype.
1336         (GC_generic_malloc): Likewise.
1337         (GC_add_to_black_list_normal): Likewise.
1338         (GC_find_header): Likewise.
1339         (GC_ADD_TO_BLACK_LIST_NORMAL): Cast bits argument to word.
1340         * gc_mark.h (GC_find_start): Prototype.
1341         (GC_signal_mark_stack_overflow): Likewise.
1343 2000-07-24  Alexandre Oliva  <aoliva@redhat.com>
1345         * configure.in (THREADS): Don't --enable-threads on IRIX <= 5.*.
1346         * configure: Rebuilt.
1348         * dyn_load.c (GC_scratch_last_end_ptr): Don't declare a #define.
1350 2000-06-20  Bryce McKinlay  <bryce@albatross.co.nz>
1352         Imported version 5.1.
1353         * acinclude.m4: Push version to 5.1.
1355 2000-06-19  Andrew Haley  <aph@cygnus.com>
1357         * os_dep.c (read): Pass two dummy args to syscall().
1359 2000-05-11  Bryce McKinlay  <bryce@albatross.co.nz>
1361         Imported 5.0 release version.
1362         * acinclude.m4: Increment version to 5.0.
1364 2000-05-07  Bryce McKinlay  <bryce@albatross.co.nz>
1366         Imported version 5.0alpha7.
1367         * acinclude.m4: Update version to 5.0a7.
1369 2000-04-26  Jakub Jelinek  <jakub@redhat.com>
1371         * gcconfig.h (SPARC): Define ALIGNMENT to 8 for 64bit SPARC.
1372         (SPARC/LINUX): Use GC_SysVGetDataStart instead of LINUX_DATA_START
1373         - sparc glibc does not provide it.
1374         (SAVE_CALL_CHAIN, ASM_CLEAR_CODE): Define on sparc*-linux*.
1375         Make STACKBOTTOM depend on the wordsize.
1376         * os_dep.c (GC_SysVGetDataStart): Compile in on sparc*-linux*.
1377         (struct frame): Declare on sparc*-linux*.
1378         (GC_save_callers): Bias the frame pointers if needed (sparc64).
1379         * mach_dep.c (GC_save_regs_in_stack): Optimize on sparc32.
1380         Implement on sparc64.
1381         (GC_clear_stack_inner): Implement on sparc64.
1382         * gc_priv.h (GC_test_and_set): Implement for sparc.
1383         * linux_threads.c (GC_suspend_handler, GC_push_all_stacks): Use
1384         GC_save_regs_in_stack on sparc.
1386 2000-04-23  Tom Tromey  <tromey@cygnus.com>
1388         * gcconfig.h (DYNAMIC_LOADING): Define for PPC Linux.
1390 2000-04-19  Bryce McKinlay  <bryce@albatross.co.nz>
1392         Imported version version 5.0alpha6.
1393         * acinclude.m4: Bump version to 5.0a6.
1394         * configure.in: Don't use alpha_mach_dep.s.
1395         * include/private/config.h, irix_threads.c gc_watcom.asm: Delete
1396         obsolete files.
1397         * Makefile.am, Makefile.in: irix_threads.c is now
1398         hpux_irix_threads.c.
1399         * Makefile.orig: Updated from gc distribution Makefile.
1401 2000-03-26  Anthony Green  <green@redhat.com>
1403         * misc.c (GC_enable): Always define GC_enable and GC_disable.
1405 2000-02-14  Tom Tromey  <tromey@cygnus.com>
1407         * gc.h (dlopen): Define as GC_dlopen on Linux.
1408         (GC_dlopen): Declare on Linux.
1409         * dyn_load.c (GC_dlopen): Define for Linux.
1411 Fri Jan 28 17:13:20 2000  Anthony Green  <green@cygnus.com>
1413         * gcconfig.h (DATASTART): Add missing extern declaration
1414         for data_start on powerpc.
1416 1999-12-22  Bryce McKinlay  <bryce@albatross.co.nz>
1418         * linux_threads.c: Don't block SIGINT, SIGQUIT, SIGTERM in the
1419         NO_SIGNALS case.
1421 1999-12-19  Jeff Sturm  <jsturm@sigma6.com>
1423         * gcconfig.h: Define DATASTART for Alpha Linux.
1425 1999-12-19  Anthony Green  <green@cygnus.com>
1427         * gcconfig.h: Use libgcj hack for Alpha Linux.
1428         Undefine MPROTEXT_VDB (from Jeff Sturm).
1429         * os_dep.c: Remove Alpha Linux hacks.
1430         * misc.c: Ditto.
1432 1999-12-13  Tom Tromey  <tromey@cygnus.com>
1434         * aclocal.m4, configure: Rebuilt.
1435         * acinclude.m4: Changed version to 5.0a4.
1436         * Makefile.in: Rebuilt.
1437         * Makefile.am (libgcjgc_la_LDFLAGS): Changed version to 1:1:0.
1439 1999-12-12  Anthony Green  <green@cygnus.com>
1441         * gcconfig.h (DATASTART): Define as (&data_start) for PowerPC
1442         Linux.
1443         (DYNAMIC_LOADING): Define for PowerPC Linux.
1444         * os_dep.c: Remove some special cases for PowerPC Linux.
1445         * misc.c (GC_init_inner): Don't call GC_init_linux_data_start
1446         for PowerPC Linux.
1448 1999-11-04  Tom Tromey  <tromey@cygnus.com>
1450         * Makefile.in: Rebuilt.
1451         * Makefile.am (libgcjgc_la_SOURCES): Removed quick_threads.c.
1453         * misc.c (GC_init_inner): Don't call GC_init_linuxppc().
1454         (GC_thr_init): Don't declare.
1456         * configure: Rebuilt.
1457         * configure.in: Removed qt threads case.
1458         * dyn_load.c: Don't mention QUICK_THREADS.
1459         * os_dep.c: Don't mention QUICK_THREADS.
1460         * misc.c: Don't mention QUICK_THREADS.
1461         * gcconfig.h: Don't mention QUICK_THREADS.
1462         * gc_priv.h: Removed QUICK_THREADS code.
1463         * quick_threads.c: Removed.
1465 1999-11-03  Tom Tromey  <tromey@cygnus.com>
1467         * gcconfig.h: Merged in local changes from old config.h.
1469 1999-11-02  Bryce McKinlay  <bryce@albatross.co.nz>
1471         * gcconfig.h: Don't define MPROTECT_VDB on Linux/i386.
1473 1999-11-02  Tom Tromey  <tromey@cygnus.com>
1475         * quick_threads.c: Include gcconfig.h, not boehm-config.h.
1477         * configure: Rebuilt.
1478         * configure.in: Don't create boehm-config.h.
1479         * Makefile.in: Rebuilt.
1480         * Makefile.am (libgcjgc_la_SOURCES): Reference gcconfig.h, not
1481         config.h.
1482         ($(all_objs)): Depend on gcconfig.h.
1483         * gc_priv.h: Reference GCCONFIG_H, not CONFIG_H.
1484         * gcconfig.h: Define GCCONFIG_H, not CONFIG_H.
1485         * config.h: Removed.
1487 1999-11-01  Tom Tromey  <tromey@cygnus.com>
1489         * Makefile.in: Rebuilt.
1490         * Makefile.am (gctest_LDADD): Added THREADLIB.
1491         (TESTS): New macro.
1492         * configure: Rebuilt.
1493         * configure.in (INCLUDES): New subst.
1495 1999-09-29  Steve Chamberlain  <sac@pobox.com>
1497         * config.h: Added picoJava target.
1498         * mach_dep.h (GC_push_regs):  New code for picoJava.
1500 1999-09-28  Tom Tromey  <tromey@cygnus.com>
1502         * aclocal.m4, configure: Rebuilt.
1503         * acinclude.m4 (LIB_AC_PROG_CC, LIB_AC_PROG_CXX): Provide
1504         appropriate AC_PROG_ symbol.
1506 Tue Aug 10 00:08:29 1999  Rainer Orth  <ro@TechFak.Uni-Bielefeld.DE>
1508         * gc_priv.h:  IRIX thread changes from
1509         include/private/gc_priv.h.
1511 Mon Aug  9 18:33:38 1999  Rainer Orth  <ro@TechFak.Uni-Bielefeld.DE>
1513         * Makefile.in: Rebuilt.
1514         * Makefile.am (toolexeclibdir): Add $(MULTISUBDIR) even for native
1515         builds.
1517         * configure: Rebuilt.
1518         * configure.in: Properly align --help output, fix capitalization
1519         and punctuation.
1520         * acinclude.m4: Likewise.
1522 1999-08-04  Tom Tromey  <tromey@cygnus.com>
1524         * configure.in: Added missing `;;'.  From Anthony Green.
1526 Mon Aug  2 23:09:41 1999  Rainer Orth  <ro@TechFak.Uni-Bielefeld.DE>
1528         * configure.in (machdep): Use mips_ultrix_mach_dep.s on Ultrix V4.
1530 1999-08-03  Tom Tromey  <tromey@cygnus.com>
1532         * gc_priv.h (GC_test_and_set): Implementation for Linux PPC from
1533         Franz Sirl <Franz.Sirl-kernel@lauterbach.com>.
1535 1999-08-02  Tom Tromey  <tromey@cygnus.com>
1537         * aclocal.m4, configure: Rebuilt for new libtool.
1539 1999-07-31  Alexandre Oliva  <oliva@dcc.unicamp.br>
1541         * mips_sgi_mach_dep.s: Enable PIC option.
1543 1999-07-19  Tom Tromey  <tromey@cygnus.com>
1545         * config.h (MPROTECT_VDB): Don't define on Linux.
1547 1999-07-19  Alexandre Oliva  <oliva@dcc.unicamp.br>
1549         * Makefile.am (.s.lo): Avoid `#line' directives.
1550         * Makefile.in: Rebuilt.
1552 1999-07-19  Alexandre Oliva  <oliva@dcc.unicamp.br>
1554         * Makefile.am (*-recursive, *-am, *-multi): Automake does not
1555         generate *-recursive for this Makefile, use *-am instead.
1556         * Makefile.in: Rebuilt.
1558 1999-06-30  Alexandre Oliva  <oliva@dcc.unicamp.br>
1560         * Makefile.am (.s.lo): Renamed from `.s.o'.
1561         * Makefile.in: Rebuilt.
1563 1999-06-21  Tom Tromey  <tromey@cygnus.com>
1565         Alpha patch from Jeff Sturm:
1566         * os_dep.c (GC_init_linuxalpha): New function.
1567         * misc.c: Initialize for alpha linux.
1568         * gc_priv.h (GC_test_and_set): Define for alpha.
1569         * config.h: Don't assume __data_start on alpha.
1571         * Makefile.in: Rebuilt.
1572         * Makefile.am (libgcjgc_la_LDFLAGS): Use -version-info, not
1573         -release.
1575         * Makefile.in: Rebuilt.
1576         * Makefile.am (toolexeclibdir): Define as libdir when
1577         appropriate.
1578         * configure: Rebuilt.
1579         * configure.in (USE_LIBDIR): New conditional.
1581         * configure: Rebuilt.
1582         * configure.in: Recognize all forms of alpha.
1584 1999-06-17  Anthony Green  <green@cygnus.com>
1586         * mach_dep.c (GC_push_regs): FreeBSD-elf support (from
1587         Carlo Dapor <carlo@vis.ethz.ch>).
1589 1999-05-05  Gilles Zunino  <Gilles.Zunino@hei.fr>
1591         * configure.in: Switch from irix threads to posix threads
1592         Defined IRIX_THREADS. Put mips_sgi_mach_dep.lo into machdep
1593         for mips architecture.
1594         * configure: Regenerate.
1596 1999-04-30  Tom Tromey  <tromey@cygnus.com>
1598         * linux_threads.c: Don't reference __pthread_initial_thread_bos.
1600 1999-04-26  Tom Tromey  <tromey@cygnus.com>
1602         * dyn_load.c (GC_FirstDLOpenedLinkMap): Declare _DYNAMIC as
1603         `weak'.
1605 1999-04-23  Tom Tromey  <tromey@cygnus.com>
1607         * Makefile.in, configure: Rebuilt.
1608         * Makefile.am (EXTRA_LIBRARIES): Mention libgcjgc.la.
1609         (libgcjgc_la_SOURCES): Renamed.
1610         (libgcjgc_la_LIBADD): Likewise.
1611         (libgcjgc_la_DEPENDENCIES): Likewise.
1612         (EXTRA_libgcjgc_la_SOURCES): Likewise.
1613         (gctest_LDADD): Use libgcjgc.la.
1614         (all_objs): Mention libgcj_la_OBJECTS.
1615         (EXTRA_LTLIBRARIES): Renamed.
1616         (toollib_LTLIBRARIES): Likewise.
1617         (libgcjgc_la_LDFLAGS): New macro
1618         (toolexecdir): Renamed.
1619         (toolexeclibdir): Likewise.
1620         (toolexeclib_LTLIBRARIES): Likewise.
1621         (LTCOMPILE): Renamed; added libtool invocation.
1622         (LINK): Added libtool invocation.
1623         (.s.o): use LTCOMPILE.
1624         * configure.in: Call AM_PROG_LIBTOOL.
1625         (target_all): Set to libgcjgc.la.
1626         Mention `.lo' forms of object files.
1628 1999-04-21  Tom Tromey  <tromey@cygnus.com>
1630         * misc.c (GC_init_inner): If QUICK_THREADS defined, compute
1631         GC_stackbottom.
1633         * os_dep.c: glibc 2.1 requires asm/sigcontext.h, not
1634         sigcontext.h.  From Matthias Klose <doko@itso.de>.
1636 1999-04-16  Tom Tromey  <tromey@cygnus.com>
1638         * config.h (__start): Declare as `int' in alpha/OSF1 case.  From
1639         David Pettersson <dapet@mai.liu.se>
1641 1999-04-14  Tom Tromey  <tromey@cygnus.com>
1643         * configure: Rebuilt.
1644         * configure.in: Don't use sparc_mach_dep.o for Solaris.  Reverts
1645         incorrect patch of 199-04-09.
1647         * configure: Rebuilt.
1648         * configure.in: Added support for alpha.
1649         From David Pettersson <dapet@mai.liu.se>.
1651 1999-04-13  Tom Tromey  <tromey@cygnus.com>
1653         * Makefile.in: Rebuilt.
1654         * Makefile.am (libgcjgc_a_SOURCES): Added solaris-threads.c and
1655         solaris-threads.h.
1657 1999-04-09  Tom Tromey  <tromey@cygnus.com>
1659         * configure: Rebuilt.
1660         * configure.in: Use sparc_mach_dep.s when building on Solaris.
1662 1999-02-23  Tom Tromey  <tromey@cygnus.com>
1664         * configure: Rebuilt.
1665         * configure.in: For Linux, define _REENTRANT.  For Solaris, define
1666         SOLARIS_THREADS and _SOLARIS_PTHREADS.
1668 1999-02-18  Tom Tromey  <tromey@cygnus.com>
1670         * quick_threads.c (GC_push_all_stacks): Change order of arguments
1671         to GC_push_all_stacks depending on STACK_GROWS_DOWN define.  Check
1672         for case where LO is NULL.
1674 1999-02-10  Tom Tromey  <tromey@cygnus.com>
1676         * aclocal.m4, configure, Makefile.in: Rebuilt.
1677         * acinclude.m4: Updated to be used with automake 1.4.
1678         * configure.in: Renamed libgc to libgcjgc.  Updated to be used
1679         with automake 1.4.
1680         * Makefile.am (EXTRA_LIBRARIES): Renamed libgc to libgcjgc.
1681         (libgcjgc_a_SOURCES): Likewise.
1682         (libgcjgc_a_LIBADD): Likewise.
1683         (libgcjgc_a_DEPENDENCIES): Likewise.
1684         (EXTRA_libgcjgc_a_SOURCES): Likewise.
1685         (gctest_LDADD): Likewise.
1686         (all_objs): Likewise.
1688 1999-01-08  Tom Tromey  <tromey@cygnus.com>
1690         * configure: Rebuilt.
1691         * configure.in: Define LINUX_THREADS if using POSIX threads on
1692         Linux.
1694         * gc_priv.h (GC_test_and_set): Put return type into definition.
1696 1998-11-24  Andrew Haley  <aph@viagra.cygnus.co.uk>
1698         * Makefile.am: add support for eCos.  In particular, add C++
1699         support for compiling the file ecos.cc.
1700         * ecos.cc: new file.
1701         * acinclude.m4: add C++ support.
1702         * aclocal.m4: likewise
1703         * config.h: add eCos support.
1704         * configure: likewise
1705         * configure.in: likewise
1706         * misc.c (GC_write): add eCos support.
1707         * os_dep.c (tiny_sbrk): add eCos support.
1709 Thu Dec 10 18:24:34 1998  Warren Levy  <warrenl@cygnus.com>
1711         * misc.c (GC_init_inner): Moved STACKBASE code to os_dep.c.
1712         * os_dep.c (GC_get_stack_base): Moved STACKBASE code from misc.c.
1714 1998-11-23  Tom Tromey  <tromey@cygnus.com>
1716         * configure.host (boehm_gc_cflags): Don't add `-O2'.
1718 1998-11-20  Andrew Haley  <aph@viagra.cygnus.co.uk>
1720         * Makefile.am, Makefile.in, configure.host: tx39 build option
1721         "-G 0" added.
1723 1998-11-17  Tom Tromey  <tromey@cygnus.com>
1725         * configure: Rebuilt.
1726         * configure.in: Switch on host, not target.
1728 1998-11-16  Tom Tromey  <tromey@cygnus.com>
1730         * gc_priv.h (GC_debug_object_start): Declare.
1731         * mark.c (GC_mark_from_mark_stack): Call GC_debug_object_start.
1732         * gc.h (GC_debug_register_finalizer_no_order,
1733         GC_register_finalizer_no_order): Declare.
1734         (GC_REGISTER_FINALIZER_NO_ORDER): New macro.
1735         * dbg_mlc.c (GC_debug_register_finalizer_no_order): New function.
1736         (GC_debug_generic_malloc): Likewise.
1737         (GC_debug_object_start): new function.
1739 1998-11-11  Tom Tromey  <tromey@cygnus.com>
1741         * configure: Rebuilt.
1742         * configure.in: Recognize --enable-java-gc, not --enable-gc.
1744 Tue Nov  3 18:01:12 1998  Tom Tromey  <tromey@sanguine.cygnus.com>
1746         * dyn_load.c: Handle QUICK_THREADS case.
1748 1998-10-21  Tom Tromey  <tromey@cygnus.com>
1750         * configure: Rebuilt.
1751         * configure.in: Put cpp defines here, not in config.h.  Recognize
1752         --enable-threads.  Set INCLUDES.  Create boehm-cflags file.  Don't
1753         define PACKAGE or VERSION.
1754         * config.h (SILENT, NO_SIGNALS, NO_DEBUGGING, JAVA_FINALIZATION):
1755         Don't define.
1757         * os_dep.c (GC_default_push_other_roots): Define when
1758         QUICK_THREADS defined.
1759         * misc.c: Added QUICK_THREADS case.
1760         * gc_priv.h: Added QUICK_THREADS case to define LOCK and UNLOCK.
1761         * config.h (THREADS): Define if QUICK_THREADS defined.
1762         * Makefile.in: Rebuilt.
1763         * Makefile.am (libgc_a_SOURCES): Added linux_threads.c,
1764         quick_threads.c.
1765         * quick_threads.c: New file.
1767 1998-10-20  Tom Tromey  <tromey@cygnus.com>
1769         * aclocal.m4, configure: Rebuilt.
1770         * acinclude.m4: Don't subst machine_dir or sys_dir.
1771         * configure.host: Removed unused code.
1773 Sun Oct 11 08:18:02 1998  Anthony Green  <green@cygnus.com>
1775         * configure: Rebuilt.
1776         * configure.in: Fix typo in previous patch.
1778 Sun Oct 11 08:06:11 1998  Anthony Green  <green@cygnus.com>
1780         * Makefile.in, aclocal.m4, configure: Rebuilt.
1781         * Makefile.am, acinclude.m4, configure.in: Add multilib support.
1782         * configure.host: Created.
1784 Tue Sep  1 10:58:15 1998  Tom Tromey  <tromey@cygnus.com>
1786         * Makefile.in: Rebuilt.
1787         * Makefile.am (lib_LIBRARIES): Use target_all.
1788         (EXTRA_LIBRARIES): New macro.
1789         * configure: Rebuilt.
1790         * configure.in: Recognize --enable-gc.
1792 Thu Aug 13 10:52:45 1998  Tom Tromey  <tromey@cygnus.com>
1794         * Makefile.in: Rebuilt.
1795         * Makefile.am (COMPILE): Define.
1796         (LINK): Likewise.
1797         (.s.o): Use MY_CFLAGS.
1798         * configure: Rebuilt.
1799         * configure.in (MY_CFLAGS): Define and subst.
1801 Wed Aug 12 11:41:43 1998  Tom Tromey  <tromey@cygnus.com>
1803         * configure: Rebuilt.
1804         * configure.in: Added --with-cross-host argument.  Use
1805         $with_cross_host to determine when cross-compiling.
1807         * config.h (SMALL_CONFIG): Don't define.
1808         * configure: Rebuilt.
1809         * configure.in: Define SMALL_CONFIG when cross-compiling.
1811 Tue Aug 11 11:41:25 1998  Tom Tromey  <tromey@cygnus.com>
1813         * solaris_pthreads.c, misc.c, gc_priv.h, config.h, alloc.c,
1814         allchblk.c: Merged with 4.13a2 while preserving local changes.
1816         * Makefile.orig: Updated from Makefile in 4.13a2.
1818         * configure: Rebuilt.
1819         * configure.in: Updated version number to 4.13a2.  On Solaris,
1820         don't build with -O when using gcc.
1822         Merged in version 4.13alpha2:
1823         * config.h (USE_MMAP): Re-enable on Solaris.
1824         * solaris_pthreads.c: Removed RCS Id line.
1825         * alpha_mach_dep.s: Removed RCS Id line.
1827 Wed Jul 22 15:38:12 1998  Tom Tromey  <tromey@cygnus.com>
1829         * config.h (USE_MMAP): Don't define for Solaris.
1831 Wed Jun 10 12:51:41 1998  Tom Tromey  <tromey@cygnus.com>
1833         * Makefile.in: Rebuilt.
1834         * Makefile.am (libgc_a_SOURCES): Removed setjmp_t.c.
1836         * Makefile.in: Rebuilt.
1837         * Makefile.am (libgc_a_SOURCES): Removed add_gc_prefix.c.
1839 Thu May 14 15:32:58 1998  Tom Tromey  <tromey@cygnus.com>
1841         * Makefile.in: Rebuilt.
1842         * Makefile.am ($(all_objs)): Depend on config.h.
1844         * config.h: [MIPS] If DATASTART_IS_ETEXT defined then define
1845         DATASTART as &_etext.
1846         * misc.c (GC_init_inner): If STACKBASE defined, then use it.
1847         * configure: Rebuilt.
1848         * configure.in: Define STACKBASE and DATASTART_IS_ETEXT for the
1849         tx39.
1851 Tue May 12 13:15:45 1998  Tom Tromey  <tromey@cygnus.com>
1853         * alloc.c: Don't call GET_TIME if NO_CLOCK defined.
1854         (GC_maybe_gc): Likewise.
1855         * os_dep.c: If NO_SIGSET defined, then have empty
1856         GC_disable_signals and GC_enable_signals.
1857         * configure: Rebuilt.
1858         * configure.in: Added --with-target-subdir option.  If
1859         cross-compiling, define NO_SIGSET and NO_CLOCK.
1861 Wed May  6 16:40:28 1998  Tom Tromey  <tromey@cygnus.com>
1863         * Makefile.in: Rebuilt.
1864         * Makefile.am (.s.o): Directly use CC -x assembler-with-cpp.
1865         (AS): Removed.
1866         * aclocal.m4, configure: Rebuilt.
1867         * acinclude.m4: New file.
1868         * configure.in: Don't run AM_EXEEXT.  Use LIB_AC_PROG_CC.
1870 Thu Apr 30 14:51:12 1998  Tom Tromey  <tromey@cygnus.com>
1872         * configure: Rebuilt.
1873         * configure.in: Link boehm-config.h to config.h.
1874         * Makefile.in: Rebuilt.
1875         * Makefile.am (INCLUDES): Removed.
1876         * config.h (SILENT, SMALL_CONFIG, NO_SIGNALS, NO_DEBUGGING,
1877         JAVA_FINALIZATION): Define
1879 Wed Apr 29 11:03:14 1998  Tom Tromey  <tromey@cygnus.com>
1881         * Many files: Use GC_bool, not bool.
1882         * gc_priv.h: Define GC_bool, not bool.
1884         * misc.c (GC_dont_gc): Define as int.
1885         (GC_quiet): Likewise.
1886         * gc_priv.h (GC_never_stop_func): Declare as returning bool.
1887         * alloc.c (GC_dont_expand): Define as int.
1888         * gc_priv.h: For gcc, define bool as char.
1890 Tue Apr 28 22:44:16 1998  Tom Tromey  <tromey@cygnus.com>
1892         * Makefile.in: Rebuilt.
1893         * Makefile.am (check_PROGRAMS): New macro.
1894         (gctest_SOURCES): Likewise.
1895         (gctest_LDADD): Likewise.
1897 Mon Apr 27 23:53:24 1998  Tom Tromey  <tromey@cygnus.com>
1899         * Makefile.in: Rebuilt.
1900         * Makefile.am (libgc_a_SOURCES): Added dyn_load.c.
1901         * configure: Rebuilt.
1902         * configure.in: Define SUNOS53_SHARED_LIB on Solaris 2.3.
1904 Wed Apr 15 11:40:56 1998  Tom Tromey  <tromey@sanguine.cygnus.com>
1906         * Makefile.am, Makefile.in, configure.in, configure, aclocal.m4:
1907         New files.
1908         * Makefile.orig: Renamed from Makefile.