1 2010-12-10 Iain Sandoe <iains@gcc.gnu.org>
3 * powerpc_darwin_mach_dep.s: Update for m64. Add eh frames.
4 Do not build or use the picsymbol stub for Darwin >= 9.
5 * tests/test.c (reverse_test): Modify count for ppc64-darwin.
6 * pthread_support.c (GC_get_thread_stack_base): Correct a debug
9 2010-11-29 Iain Sandoe <iains@gcc.gnu.org>
10 Mike Stump <mrs@gcc.gnu.org>
15 * dyn_load.c (GC_register_dynamic_libraries/DARWIN): Add new writable
17 (GC_dyld_name_for_hdr): Adjust layout.
18 (GC_dyld_image_add): Adjust layout, add new Darwin sections, adjust
19 debug to name the sections.
20 (GC_dyld_image_remove): Adjust layout, remove new Darwin sections,
21 adjust debug to name the sections.
22 (GC_register_dynamic_libraries): Adjust layout.
23 (GC_init_dyld): Likewise.
24 (GC_register_main_static_data): Likewise.
26 2010-10-29 Paolo Bonzini <bonzini@gnu.org>
28 * configure: Regenerate.
30 2010-10-28 Paolo Bonzini <bonzini@gnu.org>
32 * configure.ac: Rewrite DGUX check to use GC_CFLAGS, and -O0 check
33 to remove the need for MY_CFLAGS.
34 * Makefile.am: Do not use @...@ substitutions. Use AM_CXXFLAGS,
35 AM_CFLAGS and AM_LDFLAGS instead of redefining LTCOMPILE and LINK.
36 Use "override" to disable -O2 when required.
37 * configure: Regenerate.
38 * Makefile.in: Regenerate.
39 * include/Makefile.in: Regenerate.
41 2010-10-11 Rainer Orth <ro@CeBiTec.Uni-Bielefeld.DE>
43 * dyn_load.c: Fix typo.
44 * pthread_support.c (GC_get_thread_stack_base) [DEBUG_THREADS]:
47 2010-06-15 Rainer Orth <ro@CeBiTec.Uni-Bielefeld.DE>
49 * configure.ac (*-*-solaris2.8*): Only usr alternate thread
51 (*-*-solaris2*): Use regular thread library otherwise.
52 * configure: Regenerate.
54 2010-05-13 Uros Bizjak <ubizjak@gmail.com>
56 * tests/leak_test.c (main): Declare as int. Return 0.
57 * tests/thread_leak_test.c (main): Ditto.
58 * tests/trace_test.c (main): Ditto.
60 2010-05-06 Dave Korn <dave.korn.cygwin@gmail.com>
63 * tests/staticrootstest.c: New test source file.
64 * tests/staticrootslib.c: New test library source file.
65 * Makefile.am (test_ldadd): New variable.
66 (gctest_LDADD): Use it.
67 (TESTS): Add leaktest, middletest and staticrootstest.
68 (check_PROGRAMS): Likewise.
69 (leaktest_SOURCES): New libtool variable definition.
70 (leaktest_LDADD): Likewise.
71 (leaktest_LDFLAGS): Likewise.
72 (leaktest_LINK): Likewise.
73 (middletest_SOURCES): Likewise.
74 (middletest_LDADD): Likewise.
75 (middletest_LDFLAGS): Likewise.
76 (middletest_LINK): Likewise.
77 (staticrootstest_SOURCES): Likewise.
78 (staticrootstest_LDADD): Likewise.
79 (staticrootstest_LDFLAGS): Likewise.
80 (staticrootstest_LINK): Likewise.
81 (check_LTLIBRARIES): Likewise.
82 (libstaticrootslib_la_SOURCES): Likewise.
83 (libstaticrootslib_la_LIBADD): Likewise.
84 (libstaticrootslib_la_LDFLAGS): Likewise.
85 (libstaticrootslib_la_DEPENDENCIES): Likewise.
86 * Makefile.in: Regenerate.
88 2010-04-02 Ralf Wildenhues <Ralf.Wildenhues@gmx.de>
90 * Makefile.in: Regenerate.
91 * aclocal.m4: Regenerate.
92 * include/Makefile.in: Regenerate.
94 2010-03-21 Dave Korn <dave.korn.cygwin@gmail.com>
96 PR target/42811 (prerequisite)
97 * include/private/gc_priv.h (struct roots) [CYGWIN32]: Don't
98 declare r_next member on Cygwin as on other windows hosts.
99 (LOG_RT_SIZE) [CYGWIN32]: Don't define likewise.
100 (RT_SIZE) [CYGWIN32]: Likewise.
101 (struct _GC_arrays) [CYGWIN32]: Do declare _heap_bases[] member
103 (GC_heap_bases) [CYGWIN32]: Do define likewise.
104 (struct _SYSTEM_INFO) [CYGWIN32]: Do forward-declare likewise.
105 (GC_sysinfo) [CYGWIN32]: Do declare extern likewise.
106 (GC_n_heap_bases) [CYGWIN32]: Likewise.
107 (GC_is_tmp_root) [CYGWIN32]: Do prototype likewise.
108 * include/private/gcconfig.h (GC_win32_get_mem) [CYGWIN32]: Likewise.
109 (GET_MEM) [CYGWIN32]: Do define likewise.
110 * boehm-gc/ptr_chck.c (GC_is_visible) [CYGWIN32]: Do handle dynamic
111 registration likewise.
112 * boehm-gc/os_dep.c (GC_setpagesize) [CYGWIN32]: Do define likewise.
113 (GC_no_win32_dlls) [CYGWIN32]: Define as constant false, unlike
115 (GC_sysinfo) [CYGWIN32]: Define as on other windows hosts.
116 (GC_n_heap_bases) [CYGWIN32]: Likewise.
117 (GLOBAL_ALLOC_TEST) [CYGWIN32]: Likewise.
118 (GC_win32_get_mem) [CYGWIN32]: Likewise, but wrapping GC_unix_get_mem
119 rather than GlobalAlloc/VirtualAlloc.
120 (GC_win32_free_heap) [CYGWIN32]: Likewise, but wrapping free instead
121 of GlobalFree (even though the function body is optimised away).
122 * boehm-gc/mark_rts.c (add_roots_to_index) [CYGWIN32]: Define as on
124 (GC_add_roots_inner) [CYGWIN32]: Avoid overlapping or adjacent
126 (GC_clear_roots) [CYGWIN32]: Clear GC_root_index[] likewise.
127 (GC_rebuild_root_index) [CYGWIN32]: Define as on other windows hosts.
128 (GC_remove_tmp_roots) [CYGWIN32]: Call it likewise.
129 (GC_remove_roots) [CYGWIN32]: Don't define, as on other windows hosts.
130 (GC_is_tmp_root) [CYGWIN32]: Define, as on other windows hosts.
131 (GC_cond_register_dynamic_libraries) [CYGWIN32]: Handle temporary
132 roots and dynamic registration likewise.
133 * boehm-gc/dyn_load.c (GC_has_static_roots) [CYGWIN32]: Define as on
135 (GC_register_has_static_roots_callback) [CYGWIN32]: Likewise.
136 (GC_cond_add_roots) [CYGWIN32]: Likewise.
137 (GC_register_main_static_data) [CYGWIN32]: Define to always return
139 (HAVE_REGISTER_MAIN_STATIC_DATA) [CYGWIN32]: Define as on other
141 (GC_warn_fb) [CYGWIN32]: Likewise.
142 (GC_disallow_ignore_fb) [CYGWIN32]: Likewise.
143 (GC_ignore_fb_mb) [CYGWIN32]: Likewise.
144 (GC_ignore_fb) [CYGWIN32]: Likewise.
145 (is_frame_buffer) [CYGWIN32]: Likewise.
146 (GC_dump_meminfo) [CYGWIN32]: Likewise.
147 (GC_wnt) [CYGWIN32]: Define to constant true.
148 (GC_register_dynamic_libraries) [CYGWIN32]: Define as on other
151 2009-12-09 Matthias Klose <doko@ubuntu.com>
153 * include/private/gc_locks.h: For __ARM_EABI__ define
154 GC_test_and_set GC_clear to use the atomic builtins.
156 2009-12-05 Ralf Wildenhues <Ralf.Wildenhues@gmx.de>
158 * Makefile.in: Regenerate.
159 * configure: Regenerate.
160 * include/Makefile.in: Regenerate.
162 2009-11-30 Ben Elliston <bje@au.ibm.com>
164 * mark_rts.c (GC_approx_sp): Use __builtin_frame_address when
165 compiling with GCC rather than taking the address of a local
168 2009-11-30 Ben Elliston <bje@au.ibm.com>
170 * os_dep.c: Use the POSIX signal API in preference to the BSD API.
171 Generate a compilation error if neither the POSIX nor BSD APIs can
174 2009-09-11 Ralf Wildenhues <Ralf.Wildenhues@gmx.de>
176 * Makefile.am (libgcjgc_la_LINK, gctest_LINK): New.
177 (gctest_LDADD): Depend on libgcjgc.la instead of ./libgcjgc.la,
178 so that library dependency resolution works with portable make.
179 * Makefile.in: Regenerate.
181 2009-09-08 Alexandre Oliva <aoliva@redhat.com>
183 * configure: Rebuilt with modified libtool.m4.
185 2009-09-03 Loren J. Rittle <ljrittle@acm.org>
187 * dyn_load.c (HAVE_DL_ITERATE_PHDR): Break definition from use.
188 Define for FreeBSD 7.0+.
190 2009-08-24 Ralf Wildenhues <Ralf.Wildenhues@gmx.de>
192 * configure.ac (AC_PREREQ): Bump to 2.64.
194 2009-08-22 Ralf Wildenhues <Ralf.Wildenhues@gmx.de>
196 * Makefile.am (install-html, install-pdf): Remove.
197 * Makefile.in: Regenerate.
199 * Makefile.in: Regenerate.
200 * aclocal.m4: Regenerate.
201 * configure: Regenerate.
202 * include/Makefile.in: Regenerate.
203 * include/gc_config.h.in: Regenerate.
205 2009-08-22 Ralf Wildenhues <Ralf.Wildenhues@gmx.de>
207 * Makefile.am (LTCOMPILE, LTLINK): Add $(AM_LIBTOOLFLAGS)
209 * Makefile.in: Regenerate.
211 2009-07-30 Ralf Wildenhues <Ralf.Wildenhues@gmx.de>
213 * configure.ac (_AC_ARG_VAR_PRECIOUS): Use m4_rename_force.
215 2009-07-17 Michael Meissner <meissner@linux.vnet.ibm.com>
218 * include/private/gc_locks.h (GC_test_and_set): If GCC 4.4, use
219 the __sync_lock_test_and _set and __sync_lock_release builtins on
220 the powerpc. If not GCC 4.4, fix up the constraints so that it
221 builds without error.
224 2009-07-17 Kai Tietz <kai.tietz@onevision.com>
226 * configure.ac: Add rule for mingw targets to add -DGC_BUILD=1 to
228 * configure: Regenerated.
230 2009-05-17 Dave Korn <dave.korn.cygwin@gmail.com>
232 * win32_threads.c (GC_get_thread_stack_base): Implement for Cygwin.
234 2009-03-01 Ralf Wildenhues <Ralf.Wildenhues@gmx.de>
236 * configure: Regenerate.
238 2009-02-09 Mark Mitchell <mark@codesourcery.com>
240 * Makefile.am (LTLDFLAGS): New variable.
242 * Makefile.in: Regenerated.
244 2008-12-18 Ralf Wildenhues <Ralf.Wildenhues@gmx.de>
246 * configure: Regenerate.
248 2008-09-26 Peter O'Gorman <pogma@thewrittenword.com>
249 Steve Ellcey <sje@cup.hp.com>
251 * configure: Regenerate for new libtool.
252 * Makefile.in: Ditto.
253 * include/Makefile.in: Ditto.
256 2008-07-18 Matthias Klose <doko@ubuntu.com>
258 * configure.ac (AC_CONFIG_FILES): Add threads.mk.
259 * threads.mk.in: New.
260 * Makefile.in, configure: Regenerate.
262 2008-06-17 Ralf Wildenhues <Ralf.Wildenhues@gmx.de>
264 * Makefile.in: Regenerate.
265 * configure: Regenerate.
266 * include/Makefile.in: Regenerate.
267 * include/gc_config.h.in: Regenerate.
269 2008-04-18 Paolo Bonzini <bonzini@gnu.org>
272 * aclocal.m4: Regenerate.
273 * configure: Regenerate.
275 2008-03-16 Ralf Wildenhues <Ralf.Wildenhues@gmx.de>
277 * aclocal.m4: Regenerate.
278 * configure: Likewise.
279 * Makefile.in: Likewise.
280 * include/Makefile.in: Likewise.
282 2007-02-19 Andreas Tobler <a.tobler@schweiz.org>
284 * dyn_load.c (GC_dyld_image_add): Remove ifdef clause and use the macro
285 GC_GETSECTBYNAME instead.
286 * include/private/gc_priv.h: Define GC_GETSECTBYNAME according to the
287 architecture (Darwin).
289 2008-01-26 Richard Sandiford <rsandifo@nildram.co.uk>
291 * include/private/gcconfig.h (HBLKSIZE): Define for MIPS.
293 2008-01-24 David Edelsohn <edelsohn@gnu.org>
295 * configure: Regenerate.
297 2007-10-10 John David Anglin <dave.anglin@nrc-cnrc.gc.ca>
300 * pthread_support.c (GC_PTR GC_get_thread_stack_base): If stack grows
301 up, return stack_addr instead of stack_addr - stack_size.
303 2007-08-14 David Daney <ddaney@avtrex.com>
305 * include/private/gcconfig.h: Handle mips64-linux n64 ABI.
307 2007-07-05 H.J. Lu <hongjiu.lu@intel.com>
309 * aclocal.m4: Regenerated.
311 2007-07-02 Rainer Orth <ro@TechFak.Uni-Bielefeld.DE>
315 * configure.ac (GC_SOLARIS_THREADS): Don't define on *-*-solaris*.
316 Use alternate thread library in /usr/lib/lwp.
317 * configure: Regenerate.
318 * dyn_load.c: Use GC_SOLARIS_PTHREADS.
319 * include/gc_config_macros.h (GC_SOLARIS_THREADS): Don't define.
320 * include/private/gcconfig.h: Handle 64-bit Solaris 2/x86.
321 (GC_SOLARIS_THREADS): Don't define.
322 * include/private/solaris_threads.h: Remove.
323 * pthread_support.c (GC_thr_init) [GC_SOLARIS_PTHREADS]: Determine
324 GC_nprocs via sysconf().
325 * Makefile.am (libgcjgc_la_SOURCES): Remove solaris_pthreads.c and
327 (gctest_LDADD): Use THREADLIBS instead of THREADDLLIBS.
328 * Makefile.in: Regenerate.
329 * solaris_pthreads.c: Remove.
330 * solaris_threads.c: Remove.
332 2007-06-22 Jakub Jelinek <jakub@redhat.com>
334 * pthread_support.c (GC_get_thread_stack_base): Handle
335 pthread_getattr_np failures.
337 2007-06-02 Paolo Bonzini <bonzini@gnu.org>
339 * configure: Regenerate.
341 2007-05-23 Steve Ellcey <sje@cup.hp.com>
343 * Makefile.in: Regenerate.
344 * configure: Regenerate.
345 * aclocal.m4: Regenerate.
346 * include/Makefile.in: Regenerate.
348 2007-05-20 Andreas Tobler <a.tobler@schweiz.org>
350 * configure.ac: Introduce extra_ldflags_libgc. Use it for Darwin.
351 * configure: Regenerate.
352 * Makefile.am (libgc_la_LDFLAGS): Use extra_ldflags_libgc.
353 * Makefile.in: Regenerate.
354 * include/Makefile.in: Regenerate.
355 * include/private/gcconfig.h: Enable MPROTECT_VDB for all Darwin
356 targets. Remove comments. Prepare ppc64 support for Darwin.
358 2007-04-23 Keith Seitz <keiths@redhat.com>
360 * include/gc.h (GC_is_thread_suspended): Declare.
361 * pthread_stop_world.c (GC_is_thread_suspended): New function.
363 2007-04-03 Jakub Jelinek <jakub@redhat.com>
365 * configure.ac (NO_EXECUTE_PERMISSION): Set by default.
366 * configure: Rebuilt.
368 2007-03-07 Alexandre Oliva <aoliva@redhat.com>
370 * include/gc.h (GC_REGISTER_FINALIZER_UNREACHABLE): New.
371 (GC_register_finalizer_unreachable): Declare.
372 (GC_debug_register_finalizer_unreachable): Declare.
373 * finalize.c (GC_unreachable_finalize_mark_proc): New.
374 (GC_register_finalizer_unreachable): New.
375 (GC_finalize): Handle it.
376 * dbg_mlc.c (GC_debug_register_finalizer_unreachable): New.
377 (GC_debug_register_finalizer_no_order): Fix whitespace.
379 2007-03-01 Brooks Moses <brooks.moses@codesourcery.com>
381 * Makefile.am: Add dummy install-pdf target.
382 * Makefile.in: Regenerate
384 2007-02-05 Roman Zippel <zippel@linux-m68k.org>
386 * boehm-gc/include/private/gcconfig.h: use LINUX_STACKBOTTOM so
387 it works with Linux 2.6, reactivate MPROTECT_VDB
388 * boehm-gc/pthread_stop_world.c: save all register
391 2007-01-24 Andreas Tobler <a.tobler@schweiz.org>
393 * os_dep.c (defined(MPROTECT_VDB) && defined(DARWIN)): Moved recently
394 added defines to include/private/gc_priv.h
395 (catch_exception_raise): Added THREAD_FLD in exc_state for POWERPC too.
396 * darwin_stop_world.c: Removed the above defines.
397 * include/private/gc_priv.h: Moved definitions from darwin_stop_world.c
398 and os_dep.c to here. Fixed THREAD definition fixes for ppc64.
400 2007-01-17 David Daney <ddaney@avtrex.com>
402 * configure.ac: Don't define NO_SIGSET and NO_DEBUGGING while
404 * configure: Regenerated.
405 * include/gc_config.h.in: Regenerated.
407 2007-01-17 Mike Stump <mrs@apple.com>
409 * os_dep.c: Fix i686-apple-darwin9 builds.
411 2007-01-16 Jack Howarth <howarth@bromo.med.uc.edu>
413 * aclocal.m4: Regenerate to use multi.m4.
414 * configure: Regenerate.
415 * Makefile.in: Regenerate.
417 2007-01-17 Andreas Tobler <a.tobler@schweiz.org>
419 * include/gc_config.h.in: Regenerate.
421 2007-01-16 Petr Salinger <Petr.Salinger@seznam.cz>
423 * include/private/gcconfig.h: Handle amd64/x86-64 cpu under
425 * os_dep.c: Likewise.
427 2007-01-15 Andreas Tobler <a.tobler@schweiz.org>
429 * os_dep.c (defined(MPROTECT_VDB) && defined(DARWIN)): Adjust mail
431 (catch_exception_raise): Fix typo in the I386 exc_state.
433 2007-01-11 Andreas Tobler <a.tobler@schweiz.org>
435 * configure.ac: Replaced HAS_I386_THREAD_STATE_* with
436 HAS_X86_THREAD_STATE32_* and HAS_X86_THREAD_STATE64_* respectively.
437 * configure: Regenerated.
438 * include/private/gcconfig.h (DARWIN): Added X86_64 define for Darwin.
439 Added base definitions for the X86_64 Darwin port.
440 * include/private/gc_priv.h: Added definitions for Darwin MACH thread
441 operations. Moved existing THREAD_STATE info from darwin_stop_world.c.
442 * darwin_stop_world.c: Removed THREAD_STATE info. Added
443 HAS_X86_THREAD_STATE64___RAX. And replaced HAS_I386_THREAD_STATE___EAX
444 with HAS_X86_THREAD_STATE32___EAX.
445 (GC_push_all_stacks): Use GC_MACH_THREAD_STATE_COUNT. Add code for
447 * dyn_load.c (GC_dyld_name_for_hdr): Use GC_MACH_HEADER.
448 (GC_dyld_image_add): Use GC_MACH_HEADER and GC_MACH_SECTION.
449 Distinguish between getsectbynamefromheader_64 and
450 getsectbynamefromheader.
451 (GC_dyld_image_remove): Likewise.
452 * os_dep.c (GC_dirty_init): Use GC_MACH_THREAD_STATE.
453 (catch_exception_raise): Introduce exception information for I386 and
454 X86_64 Darwin. Add X86_64 for exc_state.faultvaddr.
456 2006-12-08 Mike Stump <mrs@apple.com>
458 * configure.ac: Fix x86 darwin builds.
459 * darwin_stop_world.c: Likewise.
460 * include/private/gcconfig.h: Likewise.
461 * connfigure: Regenerate.
463 2006-09-26 Jack Howarth <howarth@bromo.med.uc.edu>
466 * darwin_stop_world.c: Make stack_start unsigned long.
468 2006-09-21 Sandro Tolaini <tolaini@libero.it>
470 * os_dep.c: Port to Darwin/i386
471 * darwin_stop_world.c: Likewise
472 * include/private/gcconfig.h: Likewise
474 2006-06-07 Petr Salinger <Petr.Salinger@seznam.cz>
476 * configure.ac: add support for GNU/kFreeBSD, accepted by upstream
478 * dyn_load.c: Likewise.
479 * include/gc.h: Likewise.
480 * private/gcconfig.h: Likewise.
481 * configure: Regenerate.
482 * include/gc_config.h.in: Regenerate.
484 2006-09-14 Tom Tromey <tromey@redhat.com>
487 * misc.c (GC_init_inner): Don't use GC_get_thread_stack_base on
490 2006-08-21 Bryce McKinlay <mckinlay@redhat.com>
493 * configure.ac: Check for pthread_getattr_np(). Remove
494 GC_PTHREAD_SYM_VERSION detection.
495 * include/gc.h (GC_register_my_thread, GC_unregister_my_thread,
496 GC_get_thread_stack_base): New declarations.
497 * pthread_support.c (GC_register_my_thread, GC_unregister_my_thread,
498 GC_get_thread_stack_base): New functions.
499 (GC_delete_thread): Don't try to free the first_thread.
500 * misc.c (GC_init_inner): Use GC_get_thread_stack_base() if possible.
501 (pthread_create_, constr): Removed.
502 (pthread_create): Don't rename.
503 * include/gc_ext_config.h.in: Rebuilt.
504 * include/gc_pthread_redirects.h (pthread_create): Define
506 * include/gc_config.h.in: Rebuilt.
507 * configure: Rebuilt.
509 2006-06-21 Keith Seitz <keiths@redhat.com>
511 * pthread_stop_world.c (GC_suspend_handler): Redirect to suspension
512 routine if signal is received and thread is flagged SUSPENDED.
513 (suspend_self): New function.
514 (GC_suspend_thread): New function.
515 (GC_resume_thread): New function.
516 * include/gc.h (GC_suspend_thread): Declare.
517 (GC_resumet_thread): Declare.
518 * include/private/pthread_support.h (SUSPENDED): New GC_thread
521 2006-06-20 Ranjit Mathew <rmathew@gcc.gnu.org>
523 Backport Windows 9x/ME VirtualQuery() fix from GC 6.7.
524 * os_dep.c (GC_wnt): Define.
525 (GC_init_win32): Set GC_wnt.
526 * dyn_load.c (GC_register_dynamic_libraries): Consider MEM_PRIVATE
527 sections also on Windows 9x/ME.
529 2006-06-02 Geoffrey Keating <geoffk@apple.com>
531 * configure.ac: Define HAS_PPC_THREAD_STATE_R0,
532 HAS_PPC_THREAD_STATE___R0, HAS_PPC_THREAD_STATE64_R0,
533 HAS_PPC_THREAD_STATE64___R0, HAS_I386_THREAD_STATE_EAX,
534 HAS_I386_THREAD_STATE___EAX.
535 * configure: Regenerate.
536 * include/gc_config.h.in: Regenerate.
537 * darwin_stop_world.c (PPC_RED_ZONE_SIZE): Use standard Darwin
538 macro names to determine value.
541 (GC_push_all_stacks): Use THREAD_STATE and THREAD_FLD in both versions.
543 2006-05-24 Carlos O'Donell <carlos@codesourcery.com>
545 * Makefile.am: Add install-html target.
546 * Makefile.in: Regenerate.
547 * aclocal.m4: Regenerate.
548 * include/Makefile.in: Regenerate.
550 2006-03-07 Andrew Haley <aph@redhat.com>
552 * dyn_load.c (GC_has_static_roots): Declare.
553 (GC_register_dynlib_callback): Call GC_has_static_roots.
555 2006-04-11 Bryce McKinlay <mckinlay@redhat.com>
557 * darwin_stop_world.c (GC_push_all_stacks, GC_stop_world,
558 GC_start_world): Call vm_deallocate to free act_list. Fix from
561 2006-03-24 Andreas Tobler <a.tobler@schweiz.ch>
562 John David Anglin <dave.anglin@nrc-cnrc.gc.ca>
564 * configure.ac (THREADS): Add REENTRANT for *-*-hpux11*.
565 Warn about POSIX threads not being supported for *-*-hpux10*.
566 * configure: Regenerate.
568 2006-02-09 Tom Tromey <tromey@redhat.com>
570 * pthread_support.c: Conditionally include dlfcn.h.
572 2006-02-06 Jakub Jelinek <jakub@redhat.com>
573 Anthony Green <green@redhat.com>
574 Tom Tromey <tromey@redhat.com>
576 * include/gc_ext_config.h.in: Added GC_PTHREAD_SYM_VERSION.
577 * include/gc_config.h.in: Rebuilt.
578 * include/gc_pthread_redirects.h (pthread_create): Conditionally
580 * pthread_support.c (pthread_create_): New global.
581 (constr): New function.
582 (pthread_create): Conditionally renamed.
583 * configure: Rebuilt.
584 * configure.ac (GC_PTHREAD_SYM_VERSION): Define.
586 2006-02-04 Alan Modra <amodra@bigpond.net.au>
588 * include/private/gc_locks.h (GC_test_and_set <POWERPC>): Don't
589 use broken 64-bit version.
591 2006-01-25 Andreas Tobler <a.tobler@schweiz.ch>
593 * darwin_stop_world.c: Change inline asm instruction to ld as ldz
596 * Makefile.am (asm_libgcjgc_sources): Rename to asm_libgcjgc_sources.
597 * Makefile.in: Regenerate.
599 2006-01-25 Bryce McKinlay <mckinlay@redhat.com>
601 * include/private/gcconfig.h: Revert to GC 6.6 version, removing
604 2006-01-24 Bryce McKinlay <mckinlay@redhat.com>
606 Import Boehm GC version 6.6.
608 2006-01-24 David Ayers <d.ayers@inode.at>
611 * include/gc.h: Fix prototype declarations for bootstrap.
613 2005-11-01 Bryce McKinlay <mckinlay@redhat.com>
615 * include/private/gc_priv.h: Increase MAX_ROOT_SETS to 1024.
617 2005-09-15 Kazu Hirata <kazu@codesourcery.com>
619 * include/private/gc_locks.h (GC_test_and_set): Change the
620 constraint of the first operand to '0'.
622 2005-09-06 Tom Tromey <tromey@redhat.com>
625 * include/private/gcconfig.h (LINUX_STACKBOTTOM): Use instead of
628 2005-07-17 SUGIOKA Toshinobu <sugioka@itonet.co.jp>
630 * include/private/gcconfig.h (sh-linux): Use LINUX_STACKBOTTOM.
632 2005-06-15 Andreas Tobler <a.tobler@schweiz.ch>
634 * os_dep.c: Add FreeBSD/PowerPC bits.
635 (GC_SysVGetDataStart): Likewise.
636 * include/private/gcconfig.h: Likewise.
638 2005-05-25 Andrew Haley <aph@redhat.com>
640 * include/private/gcconfig.h (HBLKSIZE): Define to 4096 on
643 2005-05-09 Mike Stump <mrs@apple.com>
645 * configure: Regenerate.
647 2005-04-19 Hans-Peter Nilsson <hp@axis.com>
649 * os_dep.c, include/private/gc_locks.h: Import CRIS port by
650 Simon Posnjak from gc6.4.
651 * include/private/gcconfig.h: Ditto. Add M32R note from gc6.4.
653 2005-04-17 David S. Miller <davem@davemloft.net>
655 * include/private/gcconfig.h (sparc-linux): Use LINUX_STACKBOTTOM.
656 * os_dep.c (GC_linux_stack_base): Check for bug present in some
657 Sparc glibc variants where __libc_stack_end is erroneously set
658 to "1". Fallback to procfs code in that case.
660 2005-04-12 Mike Stump <mrs@apple.com>
662 * configure: Regenerate.
664 2005-04-12 Richard Henderson <rth@redhat.com>
666 * include/private/gcconfig.h (alpha-linux): Use LINUX_STACKBOTTOM.
668 2005-03-23 Mike Stump <mrs@apple.com>
670 * darwin_stop_world.c: Update for -m64 multilib.
671 * include/private/gcconfig.h: Likewise.
672 * powerpc_darwin_mach_dep.s: Likewise.
674 2005-03-01 Kelley Cook <kcook@gcc.gnu.org>
676 * Makefile.in, include/Makefile.in: Regenerate.
678 2005-02-26 Richard Earnshaw <rearnsha@arm.com>
680 * dyn_load.c: On NetBSD, include machine/elf_machdep.h and define
681 ELFSIZE in terms of ARCH_ELFSIZE (back-ported from gc7.0alpha1).
683 2005-02-15 Bryce McKinlay <mckinlay@redhat.com>
686 * configure.host: Set gc_use_mmap on *-linux*.
687 * configure.ac: Define USE_MMAP if gc_use_mmap is set.
688 * include/private/gc_priv.h: Include gc_config.h.
689 * configure, include/gc_config.h.in: Rebuilt.
691 2005-02-07 Hans Boehm <Hans.Boehm@hp.com>
693 * allchblk.c (GC_allochblk_nth): Dont overlook available space if
694 GC disabled, correctly convert GC_finalizer_mem_freed to byte,
696 * dyn_load.c (win32 GC_register_dynamic_libraries): Consider only
698 * mach_dep.c (GC_with_callee_saves_pushed): separate into new function,
699 and indent appropriately.
700 * mark_rts.c (GC_approx_sp): Access stack.
701 * pthread_stop_world.c: (GC_suspend_handler): Explicitly push
702 callee-saves registers when appropriate.
703 (GC_stop_world): Handle EINTR from sem_wait (sync with Mono GC).
705 2005-01-01 Bryce McKinlay <mckinlay@redhat.com>
707 * configure.ac (AC_CONFIG_HEADERS): Build both include/gc_config.h
708 and include/gc_ext_config.h.
709 * include/gc_ext_config.h: New file. Define only THREAD_LOCAL_ALLOC.
710 * include/gc.h: Undef PACKAGE_* before including gc_config.h.
712 2004-12-13 Kelley Cook <kcook@gcc.gnu.org>
714 * configure: Regenerate.
716 2004-11-29 Bryce McKinlay <mckinlay@redhat.com>
719 Revert patches of 2004-11-26 and 2004-11-27.
721 2004-11-29 Kelley Cook <kcook@gcc.gnu.org>
723 * configure: Regenerate for libtool change.
725 2004-11-27 Bryce McKinlay <mckinlay@redhat.com>
727 * include/gc_config.h.in: Add comment. Define only THREAD_LOCAL_ALLOC.
729 2004-11-26 Bryce McKinlay <mckinlay@redhat.com>
731 Fix "PACKAGE_NAME redefined" errors.
732 * configure.ac (AC_CONFIG_HEADERS): Build both include/config.h
733 and include/gc_config.h.
734 * configure: Regenerated.
735 * include/gc_config.h.in: No longer auto-generated. Define only the
736 macros needed by libjava.
737 * include/config.h.in: Generated by autoheader.
738 * include/gc.h: Include config.h, not gc_config.h.
740 2004-11-25 Kelley Cook <kcook@gcc.gnu.org>
742 * configure: Regenerate for libtool reversion.
744 2004-11-24 Kelley Cook <kcook@gcc.gnu.org>
746 * configure: Regenerate for libtool change.
748 2004-11-22 Eric Botcazou <ebotcazou@libertysurf.fr>
750 * configure.ac (machdep): Use sparc_mach_dep.lo on
751 sparc64-sun-solaris2.* too.
752 (Solaris gcc optimization fix): Disable on sparc*-sun-solaris2.*.
753 * configure: Regenerate.
755 2004-11-22 Eric Botcazou <ebotcazou@libertysurf.fr>
758 * configure.ac (threading): Accept 'posix95'.
759 * configure: Regenerate.
761 2004-11-04 Kelley Cook <kcook@gcc.gnu.org>
763 * Makefile.am: Define ACLOCAL_AMFLAGS.
764 * configure.ac: Remove redundant sinclude.
765 * acinclude.m4: Delete file.
766 * aclocal.m4: Regenerate.
767 * Makefile.in, include/Makefile.in: Regenerate.
768 * configure: Regenerate.
770 2004-10-19 Ulrich Weigand <uweigand@de.ibm.com>
772 * include/private/gc_priv.h (GC_generic_malloc_words_small_inner):
775 2004-10-13 Kazuhiro Inaoka <inaoka.kazuhiro@renesas.com>
777 * include/private/gcconfig.h: Add m32r-linux target.
779 2004-09-27 Kelley Cook <kcook@gcc.gnu.org>
781 * configure.ac: Update all AC_DEFINEs to newer style.
782 * configure: Regenerate.
783 * include/gc_config.h.in: Regenerate.
785 2004-08-27 Hans Boehm <Hans.Boehm@hp.com>
787 * backgraph.c, gc_priv.h (GC_traverse_back_graph,
788 GC_print_back_graph_stats): split GC_traverse_back_graph.
789 * backgraph.c: Dynamically grow in_progress_space.
790 * finalize.c (GC_notify_or_invoke_finalizers): also call
791 GC_print_back_graph_stats.
792 * alloc.c, finalize.c, gc_priv.h (GC_generate_random_backtrace_no_gc,
793 GC_print_back_height): Move delarations to header file.
794 * configure.ac: rename --enable-full-debug to --enable-gc-debug.
795 * configure: Regenerate.
797 2004-08-23 Hans Boehm <Hans.Boehm@hp.com>
799 * aix_irix_threads.c: Move _THREADS checks after gc_priv.h include.
800 * backgraph.c, include/private/gc_pmark.h: Always include gc.h.
802 2004-08-23 Bryce McKinlay <mckinlay@redhat.com>
804 * win32_threads.c: Move GC_WIN32_THREADS check after gc_priv.h include.
805 Reported by Danny Smith.
807 2004-08-21 Danny Smith <dannysmith@users.sourceforge.net>
809 * misc.c (GC_init): Replace lhs cast with rhs cast.
811 2004-08-16 Bryce McKinlay <mckinlay@redhat.com>
813 * specific.c: Check GC_LINUX_THREADS before including
814 private/specific.h. From Richard Earnshaw.
816 2004-08-16 Nathanael Nerode <neroden@gcc.gnu.org>
818 * aclocal.m4: Remove obsolete construct for old automake.
819 * acinclude.m4: Regenerate with aclocal 1.9.1.
820 * configure.ac: Remove duplicate AC_WITH calls. Replace
821 AC_CANONICAL_SYSTEM with AC_CANONICAL_HOST, AC_CANONICAL_TARGET.
822 Replace _GCC_TOPLEV_NONCANONICAL calls with ACX_NONCANONICAL_TARGET.
823 Remove now-redundant subst of target_noncanonical. Remove
824 now-gratuitous m4 quoting around $. Replace AM_PROG_LIBTOOL with
825 AC_PROG_LIBTOOL and remove second, redundant AC_PROG_LIBTOOL.
826 Use slightly more modern form of AC_INIT.
827 * configure: Rebuild with autoconf 2.59.
828 * Makefile.in, include/Makefile.in: Rebuild with automake 1.9.1.
830 2004-08-16 Andreas Tobler <a.tobler@schweiz.ch>
832 * solaris_threads.c: Remove ifdef around #include "private/gc_priv.h"
833 since they're not known at this time.
834 * solaris_pthreads.c: Likewise.
836 2004-08-15 Andreas Tobler <a.tobler@schweiz.ch>
839 * powerpc_darwin_mach_dep.s (_GC_push_regs): Change to new stub style.
841 2004-08-13 Bryce McKinlay <mckinlay@redhat.com>
843 * configure.ac (gc_cflags): Add -Iinclude.
844 (AC_CONFIG_HEADERS): New. Configure gc_config.h header.
845 Don't write DEFS to boehm-cflags file.
846 * configure: Rebuilt.
847 * gcj_mlc.c: Check #ifdef GC_GCJ_SUPPORT after including headers.
848 * specific.c: Check #ifdef GC_LINUX_THREADS after including headers.
849 * include/gc_config_macros.h: Remove backward-compatibility
850 redefinitions of GC_ names.
851 * include/gc.h: Include <gc_config.h>.
853 2004-08-13 Bryce McKinlay <mckinlay@redhat.com>
855 Import Boehm GC version 6.3.
857 2004-08-12 Kelley Cook <kcook@gcc.gnu.org>
859 * include/Makefile.in: Regenerate
861 2004-07-06 Andrew Pinski <apinski@apple.com>
863 * os-dep.c (GC_task_self): Declare as static
864 and remove the second declaration.
866 2004-06-20 Andreas Tobler <a.tobler@schweiz.ch>
868 * Makefile.am: Add rule for .S files to fix bootstrap on
870 * Makefile.in: Regenerate.
872 2004-06-16 Paolo Bonzini <bonzini@gnu.org>
874 * boehm-gc/configure.ac: New name of configure.in.
875 Remove useless multilib stuff. Change uses of
876 INCLUDES and CXXINCLUDES to AM_CPPFLAGS.
877 * boehm-gc/configure.in: New name of configure.in.
878 * boehm-gc/Makefile.am: Update for automake 1.8.5.
879 * boehm-gc/acinclude.m4: Include ../config/acx.m4.
880 * boehm-gc/aclocal.m4: Regenerate.
881 * boehm-gc/configure: Regenerate.
882 * boehm-gc/Makefile.in: Regenerate.
884 2004-06-15 Paolo Bonzini <bonzini@gnu.org>
886 * .cvsignore: New file.
888 2004-04-25 Andreas Jaeger <aj@suse.de>
890 * mark.c (GC_mark_from): Use pointer as prefetch argument.
892 2004-04-06 H.J. Lu <hongjiu.lu@intel.com>
894 * include/private/gcconfig.h (PREFETCH): Use __builtin_prefetch
896 (PREFETCH_FOR_WRITE): Likewise.
898 2004-03-10 Kelley Cook <kcook@gcc.gnu.org>
900 * configure.ac: Bump AC_PREREQ to 2.59.
901 * configure: Regenerate.
902 * config.in: Regenerate.
904 2004-02-26 Nathanael Nerode <neroden@gcc.gnu.org>
906 * ltconfig, ltmain.sh: Remove unused files.
907 * configure.in: Remove bogus extra early invocation of
909 * configure: Regenerate.
910 * mkinstalldirs, install-sh, config.sub, config.guess:
911 Remove (now) unused files.
912 * Makefile.in: Regenerate (losing references to vanished
915 * configure.in: Add CCAS, CCASFLAGS for future automakes.
916 * configure, Makefile.in, include/Makefile.in: Regenerate.
918 * Makefile.am: Remove bogus duplicate setting of AM_CFLAGS.
919 * Makefile.in: Regenerate.
921 * configure.in: Remove bogus duplicate invocation of
922 AM_MAINTAINER_MODE. Remove obsolete comment.
923 * configure: Regenerate.
925 * acinclude.m4: Remove GC_CONFIGURE macro; move contents
927 * aclocal.m4: Regenerate.
928 * configure.in: Receive contents of GC_CONFIGURE macro.
929 * configure: Regenerate.
931 * configure.in: Remove more obsolete, bogus code.
932 * configure: Regenerate.
934 * acinclude.m4: Remove obsolete and bogus constructs.
935 * aclocal.m4: Regenerate.
936 * configure: Regnerate.
938 2004-02-23 Nathanael Nerode <neroden@gcc.gnu.org>
940 * acinclude.m4: De-precious CC and CXX so that the right flags
941 are passed down to multilibs.
942 * aclocal.m4: Regenerate.
943 * configure: Regenerate.
945 2004-02-22 Zack Weinberg <zack@codesourcery.com>
946 Nathanael Nerode <neroden@twcny.rr.com>
947 Alexandre Oliva <aoliva@redhat.com>
949 * config.sub, config.guess: Replace with forwarding scripts
950 which invoke the master copies in the top level.
952 2004-02-23 Nathanael Nerode <neroden@gcc.gnu.org>
954 * acinclude.m4: Remove old no-executables workaround;
955 add new no-executables workaround.
956 * aclocal.m4: Regenerate.
957 * configure.in: Change prereqs to autoconf 2.57.
958 * configure: Regenerate with autoconf 2.57.
960 * configure.in: Use NCN_TARGET_NONCANONICAL and friends.
961 * configure: Regenerate.
962 * Makefile.am: Use target_noncanonical variable from configure.
963 * Makefile.in: Regenerate.
964 * include/Makefile.in: Regenerate.
966 2004-02-20 Andrew Cagney <cagney@redhat.com>
968 * config.guess: Update from version 2002-01-10 to 2004-02-16.
969 * config.sub: Update from version 2002-01-02 to 2004-02-16.
971 2004-02-19 Nathanael Nerode <neroden@gcc.gnu.org>
973 * acinclude.m4: Remove bogus duplicate call to AC_CANONICAL_BUILD.
974 * aclocal.m4: Rebuild.
975 * configure: Regenerate.
977 * acinclude.m4: Move certain code to configure.in.
978 * configure.in: Receive code from acinclude.m4.
979 * aclocal.m4: Rebuild.
980 * configure: Regenerate.
982 * Makefile.direct, alloc.c: Resync to upstream 6.3 alpha 1.
984 2004-01-20 Andrew Haley <aph@redhat.com>
986 * include/private/gcconfig.h (USE_MMAP): Define for all Linux.
988 * configure.in: Comment change.
990 2004-01-16 Andrew Haley <aph@redhat.com>
992 * configure.in (NO_EXECUTE_PERMISSION): Remove global declaration;
993 add for ia64; remove for MIPS.
994 * configure: Regnerated.
996 2004-01-14 Kelley Cook <kcook@gcc.gnu.org>
998 * configure.in: Add in AC_PREREQ(2.13)
1000 2004-01-07 Dave Jones <davej@redhat.com>
1002 * malloc.c (GC_generic_malloc): Correct initialization typo.
1003 * mallocx.c (GC_generic_malloc_ignore_off_page): Ditto.
1005 2003-10-31 Richard Earnshaw <rearnsha@arm.com>
1007 * include/private/gcconfig.h: Re-install change of 2003-04-16.
1009 2003-10-20 Rainer Orth <ro@TechFak.Uni-Bielefeld.DE>
1011 * mips_sgi_mach_dep.s: Use _ABIO32 instead of external
1014 2003-10-18 Alan Modra <amodra@bigpond.net.au>
1016 * include/private/gcconfig.h (ALIGNMENT <powerpc linux>): Remove
1019 2003-10-03 Jeff Sturm <jsturm@one-point.com>
1021 * configure: Rebuild.
1023 2003-10-03 Hans Boehm <Hans.Boehm@hp.com>
1025 * configure.in: Remove NO_GETENV definition for win32.
1026 * mach_dep.c (GC_generic_push_regs): Prevent tail call optimization.
1027 * misc.c (GC_init_inner): Call GC_thr_init for win32.
1028 (GC_set_warn_proc): Add assertion.
1029 * win32_threads.c: Import 6.3alpha2 version.
1030 * include/private/gc_priv.h: Add support for EMPTY_GETENV_RESULTS.
1032 2003-09-29 Rainer Orth <ro@TechFak.Uni-Bielefeld.DE>
1034 * configure.in: Remove wildcard from Solaris 8-9/Intel and Solaris
1035 2.3/SPARC, there are no micro versions.
1036 Treat Solaris 10 and up alike.
1037 * configure: Regenerate.
1039 2003-09-22 Anthony Green <green@redhat.com>
1041 * os_dep.c: Fix GC_get_stack_base build problem for vanilla elf
1044 2003-09-20 <green@redhat.com>
1046 * include/private/gcconfig.h: Don't check for __XSCALE__. Instead
1047 check for __arm__ or __thumb__.
1049 2003-09-09 Alan Modra <amodra@bigpond.net.au>
1051 * configure: Regenerate.
1053 2003-08-07 Rainer Orth <ro@TechFak.Uni-Bielefeld.DE>
1054 Roger Sayle <roger@eyesopen.com>
1056 * configure.in: Set INCLUDES to absolute path.
1057 Save $INCLUDES in boehm-cflags, too.
1058 Set INCLUDES so it's available to config.status.
1059 * configure: Regenerate.
1061 2003-07-31 Danny Smith <dannysmith@users.sourceforge.net>
1063 * include/gc.h (GC_CreateThread): Declare with WINAPI
1065 * win32_threads.c (GC_CreateThread): Make definitions consistent
1066 with declaration. Cast &thread_table[i].handle to PHANDLE
1067 in call to DuplicateHandle
1068 (thread_start): Declare as static.
1070 2003-07-30 Andreas Tobler <a.tobler@schweiz.ch>
1072 * dyn_load.c: Define __private_extern__ to match Apple's system
1075 2003-07-28 Loren J. Rittle <ljrittle@acm.org>
1077 * os_dep.c: Remove redundancy introduced in last merge.
1079 2003-07-28 Jeff Sturm <jsturm@one-point.com>
1081 Import GC 6.3alpha1.
1082 * BCC_MAKEFILE: Merge with GC 6.3alpha1 release.
1083 * ChangeLog: Likewise.
1084 * Makefile.am: Likewise.
1085 * Makefile.direct: Likewise.
1086 * Makefile.dj: Likewise.
1087 * allchblk.c: Likewise.
1088 * alloc.c: Likewise.
1089 * backgraph.c: Likewise.
1090 * configure.host: Likewise.
1091 * configure.in: Likewise.
1092 * dbg_mlc.c: Likewise.
1093 * dyn_load.c: Likewise.
1094 * finalize.c: Likewise.
1095 * gc_cpp.cc: Likewise.
1096 * gc_dlopen.c: Likewise.
1097 * gcj_mlc.c: Likewise.
1098 * if_mach.c: Likewise.
1099 * mach_dep.c: Likewise.
1100 * malloc.c: Likewise.
1101 * mallocx.c: Likewise.
1103 * mark_rts.c: Likewise.
1105 * os_dep.c: Likewise.
1106 * ptr_chck.c: Likewise.
1107 * reclaim.c: Likewise.
1108 * solaris_pthreads.c: Likewise.
1109 * solaris_threads.c: Likewise.
1110 * sparc_mach_dep.S: Likewise.
1111 * threadlibs.c: Likewise.
1112 * typd_mlc.c: Likewise.
1113 * version.h: Likewise.
1114 * win32_threads.c: Likewise.
1115 * Mac_files/MacOS_Test_config.h: Likewise.
1116 * Mac_files/MacOS_config.h: Likewise.
1117 * cord/cordbscs.c: Likewise.
1118 * cord/cordprnt.c: Likewise.
1119 * cord/de_win.c: Likewise.
1120 * doc/README: Likewise.
1121 * doc/README.MacOSX: Likewise.
1122 * doc/README.changes: Likewise.
1123 * doc/README.environment: Likewise.
1124 * doc/README.ews4800: Likewise.
1125 * doc/README.linux: Likewise.
1126 * doc/README.macros: Likewise.
1127 * doc/README.win32: Likewise.
1128 * doc/debugging.html: Likewise.
1129 * doc/gcdescr.html: Likewise.
1130 * doc/tree.html: Likewise.
1131 * include/Makefile.in: Likewise.
1132 * include/gc.h: Likewise.
1133 * include/gc_cpp.h: Likewise.
1134 * include/gc_local_alloc.h: Likewise.
1135 * include/gc_mark.h: Likewise.
1136 * include/gc_pthread_redirects.h: Likewise.
1137 * include/gc_typed.h: Likewise.
1138 * include/new_gc_alloc.h: Likewise.
1139 * include/private/dbg_mlc.h: Likewise.
1140 * include/private/gc_hdrs.h: Likewise.
1141 * include/private/gc_locks.h: Likewise.
1142 * include/private/gc_pmark.h: Likewise.
1143 * include/private/gc_priv.h: Likewise.
1144 * include/private/gcconfig.h: Likewise.
1145 * include/private/solaris_threads.h: Likewise.
1146 * include/private/specific.h: Likewise.
1147 * tests/test.c: Likewise.
1148 * tests/test_cpp.cc: Likewise.
1150 * configure: Rebuild.
1151 * Makefile.in: Rebuild.
1153 * mips_sgi_mach_dep.s: Add.
1155 * alpha_mach_dep.s: Remove.
1156 * irix_threads.c: Remove.
1157 * linux_threads.c: Remove.
1158 * mips_sgi_mach_dep.S: Remove.
1160 * powerpc_macosx_mach_dep.s: Remove.
1161 * doc/Makefile.am: Remove.
1162 * doc/Makefile.in: Remove.
1164 2003-07-25 Roger Sayle <roger@eyesopen.com>
1166 * configure.host: Only use +ESdbgasm when using the HPUX native
1167 compiler on PA-Risc. It isn't recognized by GCC and is silently
1168 ignored by HP's compilers on ia64.
1170 2003-04-28 Mohan Embar <gnustuff@thisiscool.com>
1172 * configure.in: define GC_DLL under mingw if --enable-shared
1173 * configure: rebuilt
1174 * win32_threads.c: add #ifdef GC_DLL around DllMain
1176 2003-04-16 Richard Earnshaw <rearnsha@arm.com>
1178 * include/private/gcconfig.h: Add support for arm-netbsdelf.
1180 2003-04-09 Tom Tromey <tromey@redhat.com>
1182 * include/private/gcconfig.h (LINUX_STACKBOTTOM): Define for
1184 (STACK_GRAN, HEURISTIC1): Don't define for POWERPC.
1186 2003-03-22 Richard Henderson <rth@redhat.com>
1188 * include/private/gc_locks.h [IA64]: Include ia64intrin.h.
1189 (GC_test_and_set): Use __sync_lock_test_and_set.
1190 (GC_clear): Use volatile assignment.
1191 (GC_compare_and_exchange): Use __sync_bool_compare_and_swap.
1192 (GC_memory_write_barrier): Use __sync_synchronize.
1194 2003-03-12 Andreas Schwab <schwab@suse.de>
1196 * configure.in: Avoid trailing /. in toolexeclibdir.
1197 * configure: Rebuilt.
1199 2003-03-04 Hans Boehm <Hans.Boehm@hp.com>
1200 * include/private/gcconfig.h (GC_data_start): declare when needed.
1201 * include/private/gc_priv.h: Include gcconfig.h after ptr_t
1203 * dyn_load.c (GC_register_dynamic_libraries_dl_iterate_phdr,
1204 GC_register_dynlib_callback): Register main data for static
1205 executable if dl_iterate_phdr() didn't.
1206 * misc.c (GC_init_inner): Call GC_init_linux_data_start() even
1207 if we don't expect to register main static data.
1209 2003-03-03 Hans Boehm <Hans.Boehm@hp.com>
1210 * mark_rts.c (GC_cond_register_dynamic_libraries): add.
1211 (GC_push_roots): explicitly mark free list headers, register
1212 dynamic libraries only if !REGISTER_LIBRARIES_EARLY.
1213 * alloc.c (GC_stopped_mark): Conditionally call
1214 GC_cond_register_dynamic_libraries().
1215 (GC_collect_a_little_inner, GC_try_to_collect_inner): Check GC_dont_gc.
1216 * dyn_load.c (GC_register_main_static_data): define.
1217 (GC_register_dyn_libraries (Linux /proc, Linux ELF versions)):
1218 no longer skip main data.
1219 * misc.c (GC_REGISTER_MAIN_STATIC_DATA): define.
1220 (GC_init_inner): Make main data registration conditional.
1221 * include/private/gc_priv.h (GC_register_main_static_data): declare.
1222 * include/private/gcconfig.h (REGISTER_LIBRARIES_EARLY): define
1225 2003-02-20 Alexandre Oliva <aoliva@redhat.com>
1227 * configure.in: Propagate ORIGINAL_LD_FOR_MULTILIBS to
1229 * configure: Rebuilt.
1231 2003-02-11 Andreas Tobler <a.tobler@schweiz.ch>
1233 * include/private/gcconfig.h: undefine MPROTECT_VDB for MACOSX
1235 2003-01-27 Alexandre Oliva <aoliva@redhat.com>
1237 * configure.in (toolexecdir, toolexeclibdir): Set and AC_SUBST.
1238 Remove USE_LIBDIR conditional.
1239 * Makefile.am (toolexecdir, toolexeclibdir): Don't override.
1240 * Makefile.in, configure: Rebuilt.
1242 2002-12-31 Tom Tromey <tromey@redhat.com>
1245 * include/Makefile.in: Rebuilt.
1246 * include/Makefile.am (noinst_HEADERS): Renamed from
1249 2002-11-19 Rainer Orth <ro@TechFak.Uni-Bielefeld.DE>
1251 * ltconfig (osf[345]): Append $major to soname_spec.
1252 Reflect this in library_names_spec.
1253 * ltmain.sh (osf): Prefix $major with . for use as extension.
1255 2002-10-02 Andreas Jaeger <aj@suse.de>
1257 * include/private/gcconfig.h (HBLKSIZE): Define for x86-64.
1259 2002-09-28 Richard Earnshaw <rearnsha@arm.com>
1261 * include/private/gcconfig.h: Don't check for __XSCALE__. Instead
1262 check for __arm__ or __thumb__.
1264 2002-09-27 Ulrich Weigand <uweigand@de.ibm.com>
1266 * include/private/gcconfig: Add machine type S390. Add s390x support.
1267 * include/private/gc_locks.h (GC_test_and_set): Implement for s390.
1268 (GC_compare_and_exchange): Likewise.
1270 2002-09-24 Jason Thorpe <thorpej@wasabisystems.com>
1272 * include/private/gcconfig.h: Fix NetBSD/mips parameters.
1274 2002-08-23 Adam Megacz <adam@xwt.org>
1276 * win32_threads.cc: Removed extraneous ABORT()
1278 2002-09-22 Kaveh R. Ghazi <ghazi@caip.rutgers.edu>
1280 * Makefile.am (all-multi): Fix multilib parallel build.
1282 2002-07-18 Bo Thorsen <bo@suse.de>
1284 * include/private/gcconfig.h: Add x86-64 definitions.
1285 * os_dep.c: Add x86-64 support.
1286 * configure.in: Likewise.
1287 * configure: Regenerate.
1289 2002-07-18 H.J. Lu <hjl@gnu.org>
1291 * mach_dep.c (GC_push_regs): Remove the unused Linux/mips code.
1293 2002-07-18 H.J. Lu (hjl@gnu.org)
1295 * configure.in (machdep): Don't add mips_sgi_mach_dep.lo for
1298 2002-06-28 Hans Boehm <Hans_Boehm@hp.com>
1301 * win32_threads.c (GC_push_all_stacks): Tolerate bad sp.
1303 2002-06-09 H.J. Lu (hjl@gnu.org)
1305 * include/private/gc_locks.h (GC_test_and_set): Support
1307 (GC_TEST_AND_SET_DEFINED): Likewise.
1309 * include/private/gcconfig.h (DYNAMIC_LOADING): Defined for
1311 (DATAEND): Likewise.
1312 (LINUX_STACKBOTTOM): Likewise.
1313 (STACKBOTTOM): Removed for Linux/mips.
1315 Sun May 19 11:32:03 2002 Mark P Mitchell <mark@codesourcery.com>
1317 * irix_threads.cc (GC_pthread_detach): Do not use REAL_FUNC.
1318 (GC_pthread_create): Fix typo.
1319 (GC_TRY_LOCK): Likewise.
1320 * include/private/gc_locks.h (GC_test_and_set): Only take one
1322 (LOCK): Adjust appropriately.
1323 * include/private/gc_priv.h (SIG_SUSPEND): Use SIGRTMIN if
1324 _SIGRTMIN is unavailable.
1326 2002-05-16 Rainer Orth <ro@TechFak.Uni-Bielefeld.DE>
1328 * acinclude.m4: Allow for PWDCMD to override hardcoded pwd.
1329 * aclocal.m4: Regenerate.
1330 * configure: Regenerate.
1332 2002-05-08 Alexandre Oliva <aoliva@redhat.com>
1334 * configure.in (ORIGINAL_LD_FOR_MULTILIBS): Preserve LD at
1335 script entry, and set LD to it when configuring multilibs.
1336 * configure: Rebuilt.
1338 2002-04-22 Jeff Sturm <jsturm@one-point.com>
1340 * Makefile.am (toolexeclib_LTLIBRARIES): Remove.
1341 (noinst_LTLIBRARIES): Add libgcjgc.la.
1343 * Makefile.in: Rebuild.
1345 2002-04-22 David S. Miller <davem@redhat.com>
1347 * include/private/gcconfig.h: Hard-code STACKBOTTOM on
1348 64-bit SPARC Linux, the __libc_stack_end technique does
1349 not work in this case.
1351 2002-04-22 Jeff Sturm <jsturm@one-point.com>
1353 * gcconfig.h: Enable DYNAMIC_LOADING for all sparc-solaris ABIs.
1355 2002-04-17 Hans Boehm <Hans_Boehm@hp.com>
1357 * include/private/gcconfig.h: Use LINUX_STACKBOTTOM for
1360 2002-04-09 Loren J. Rittle <ljrittle@acm.org>
1362 * include/private/gcconfig.h (DATAEND): Update comment example
1365 2002-04-08 Loren J. Rittle <ljrittle@acm.org>
1367 * include/private/gcconfig.h (DATAEND): Clarify comment.
1369 2002-04-08 Hans Boehm <Hans_Boehm@hp.com>
1371 * include/private/gc_priv.h (WARN macro): Add "GC warning:" prefix.
1372 (GC_large_alloc_warn_interval, GC_large_alloc_warn_suppressed):
1374 * allchblk.c (GC_allchblk_nth): Change text and support reduced
1375 frequency for blacklist warning message.
1376 * misc.c (GC_large_alloc_warn_interval,
1377 GC_large_alloc_warn_suppressed): define.
1378 (GC_init_inner): Check GC_NO_BLACKLIST_WARNING and
1379 GC_LARGE_ALLOC_WARN_INTERVAL environment variables.
1380 * doc/README.environment (GC_NO_BLACKLIST_WARNING): Deprecate.
1381 (GC_LARGE_ALLOC_WARN_INTERVAL): Add documentation.
1383 * dyn_load.c (_DYNAMIC): Move declaration to file scope.
1385 2002-04-04 Loren J. Rittle <ljrittle@acm.org>
1387 * include/private/gcconfig.h: Add support for an unmapped
1388 memory hole between the end of the initialized data segment
1389 and the start of the BSS on FreeBSD/i386.
1391 2002-03-30 Krister Walfridsson <cato@df.lth.se>
1393 * include/private/gcconfig.h: define DYNAMIC_LOADING for ELF
1396 2002-03-29 Hans Boehm <Hans_Boehm@hp.com>
1398 * linux_threads.c (return_free_lists): Clear fl[i] unconditionally.
1399 (GC_local_gcj_malloc): Add assertion.
1400 (start_mark_threads): Fix abort message.
1401 * mark.c (GC_mark_from): Generalize assertion.
1402 * reclaim.c (GC_clear_fl_links): New function.
1403 (GC_start_reclaim): Must clear some freelist links.
1404 * include/private/specific.h, specific.c: Add assertions.
1405 Safer definition for INVALID_QTID, quick_thread_id. Fix/add comments.
1406 Rearrange tse fields.
1408 2002-03-27 Richard Henderson <rth@redhat.com>
1410 * os_dep.c (GC_init_linux_data_start): Fix references to
1411 __data_start and _end.
1413 2002-03-25 Loren J. Rittle <ljrittle@acm.org>
1415 * include/private/gcconfig.h: Change all likely references
1416 to linker script synthesized symbols to use this idiom:
1417 extern int etext[]; etext
1419 2002-03-25 Jeff Sturm <jsturm@one-point.com>
1421 * linux_threads.c (GC_get_nprocs): Close file descriptor.
1423 2002-03-21 Loren J. Rittle <ljrittle@acm.org>
1425 * include/private/gcconfig.h: Add unified test for FreeBSD.
1426 Support FreeBSD/alpha.
1427 * os_dep.c: Do not include <machine/trap.h> unless available.
1428 (GC_freebsd_stack_base): Fix types.
1430 2002-03-17 Bryce McKinlay <bryce@waitaki.otago.ac.nz>
1432 * Makefile.am: Make a convenience library.
1433 * Makefile.in: Rebuilt.
1435 2002-03-15 Anthony Green <green@redhat.com>
1437 * misc.c (GC_init_inner): Initialize GC_write_cs before use.
1438 * configure.in: Disable use of getenv for win32 targets (some of
1439 which have broken implementations).
1440 * configure: Rebuilt.
1442 2002-03-12 Adam Megacz <adam@xwt.org>
1444 * dyn_load.c: Renamed GC_win32s to GC_no_win32_dlls.
1445 * misc.c: Renamed GC_is_win32s() to GC_no_win32_dlls
1446 * os_dep.c: Renamed GC_win32s to GC_no_win32_dlls and
1447 statically initialized it to TRUE if compiling with GCC.
1448 * win32_threads.c (thread_start): We no longer use SEH if
1450 * mark.c (GC_mark_some): We no longer use SEH if
1453 2002-03-09 Bryce McKinlay <bryce@waitaki.otago.ac.nz>
1455 * include/gc_priv.h: Define ALIGN_DOUBLE on 32 bit targets if GCJ
1456 support is enabled, for hash synchronization.
1458 2002-02-24 Adam Megacz <adam@xwt.org>
1460 * Makefile.am: Added win32_threads.c to sources list.
1461 * win32_threads.c: Added two */'s which I had neglected.
1463 2002-02-20 Bryce McKinlay <bryce@waitaki.otago.ac.nz>
1465 * Makefile.am: Re-add SUBDIRS parameter which was lost in merge.
1466 * Makefile.in: Rebuilt.
1468 2002-02-13 Bryce McKinlay <bryce@waitaki.otago.ac.nz>
1470 * dbg_mlc.c (GC_debug_generic_malloc): Removed.
1472 * sparc_mach_dep.S: Rename from sparc_mach_dep.s as it is a
1474 * mips_sgi_mach_dep.S: Likewise.
1475 * Makefile.am: Update for above changes.
1476 * Makefile.in: Rebuilt.
1478 2002-02-12 Richard Henderson <rth@redhat.com>
1480 * configure.in: Re-apply 2001-06-26 configure change.
1481 * configure: Rebuild.
1483 2002-02-12 Bryce McKinlay <bryce@waitaki.otago.ac.nz>
1485 Imported GC 6.1 Alpha 3.
1487 * sparc_mach_dep.S: Delete incorrectly named file.
1489 2001-02-11 Adam Megacz <adam@xwt.org
1491 * configure.in: support for win32, saner
1492 cross-compile options
1494 2001-02-08 Anthony Green <green@redhat.com>
1496 * include/private/gcconfig.h: Add XSCALE NOSYS support for bare
1497 board embedded targets.
1498 * os_dep.c: Avoid signal handling code for NOSYS/ECOS targets.
1499 Use GC_get_stack_base for NOSYS/ECOS targets. Clean up some
1500 redundant uses of ECOS.
1501 * misc.c: Use NOSYS where ECOS is being used.
1502 Don't define GC_write twice for ECOS systems.
1503 (GC_write): New function for NOSYS targets.
1505 2002-02-06 Adam Megacz <adam@xwt.org>
1507 * boehm-gc/include/gc.h: (GC_CreateThread) This function is
1508 now exposed on all Win32 platforms.
1509 * boehm-gc/win32_threads.c: (GC_CreateThread) This now
1510 compiles on Win32; it invokes CreateThread() if GC is built
1511 as a DLL; otherwise it registers the thread.
1512 * boehm-gc/misc.c (GC_init): Initialize GC_allocate_ml in case
1513 libgcjgc was not built as a DLL.
1515 2002-02-01 Adam Megacz <adam@xwt.org>
1517 * boehm-gc on win32 now automatically detects if it is being built
1518 as a DLL; see http://gcc.gnu.org/ml/java/2001-12/msg00240.html
1520 2002-01-25 David Edelsohn <edelsohn@gnu.org>
1522 * include/gc.h (GC_INIT): Add DATASTART and DATAEND roots on AIX.
1523 * include/private/gcconfig.h (RS6000): Add 64-bit AIX support.
1524 Define USE_GENERIC_PUSH_REGS. Use AIX _data and _end symbols for
1525 DATASTART and DATAEND roots.
1526 * rs6000_mach_dep.s: Add function descriptor and traceback table.
1528 2001-12-16 Jeff Sturm <jsturm@one-point.com>
1530 * dyn_load.c: Define ElfW (if needed) for all targets,
1532 (GC_FirstDLOpenedLinkMap): Use it.
1533 (GC_register_dynamic_libraries_dl): Use it.
1534 * include/private/gcconfig.h: Define CPP_WORDSZ, ELF_CLASS
1537 2001-12-16 Craig Rodrigues <rodrigc@gcc.gnu.org>
1540 * configure.in: Add AC_SUBST(target_alias).
1541 * configure: Regenerated.
1543 2001-11-26 Loren J. Rittle <ljrittle@acm.org>
1545 * linux_threads.c (WRAP_FUNC(pthread_join)): Remove special
1546 case for GC_FREEBSD_THREADS.
1547 * configure.in (*-*-freebsd*): Clarify warning.
1548 * configure: Rebuilt.
1550 2001-10-23 Loren J. Rittle <ljrittle@acm.org>
1551 Andreas Tobler <toa@pop.agri.ch>
1553 * include/private/solaris_threads.h: Update to use GC_SOLARIS_THREADS.
1555 2001-10-22 Bryce McKinlay <bryce@waitaki.otago.ac.nz>
1557 * linux_threads.c (GC_init_parallel): Do not declare as a static
1559 * include/gc.h (GC_init): Declare here. Add description.
1560 * include/private/gc_priv.h (GC_init): Remove declaration.
1562 2001-10-16 Loren J. Rittle <ljrittle@acm.org>
1564 * include/gc_pthread_redirects.h: Generalize test to use GC_PTHREADS.
1565 * linux_threads.c (WRAP_FUNC(pthread_join)): Conditionalized on
1566 GC_FREEBSD_THREADS, handle strange interaction between system
1567 pthread implementation and boehm-gc signal-handler architecture.
1568 * tests/test.c (main): Conditionalized on GC_FREEBSD_THREADS,
1570 * include/private/gcconfig.h (configuration keyed off FREEBSD):
1571 Define SIG_SUSPEND, SIG_THR_RESTART. Do not define
1572 MPROTECT_VDB when GC_FREEBSD_THREADS is defined.
1574 2001-10-16 Loren J. Rittle <ljrittle@acm.org>
1576 * Makefile.am (test.o): Find tests/test.c in $(srcdir).
1577 * Makefile.in: Rebuilt.
1579 2001-10-16 Bryce McKinlay <bryce@waitaki.otago.ac.nz>
1581 * Makefile.am, acinclude.m4, configure.in: Imported GC 6.1 Alpha 1 and
1582 merged local changes.
1584 2001-09-26 Rainer Orth <ro@TechFak.Uni-Bielefeld.DE>
1586 * solaris_threads.c (MAX_ORIG_STACK_SIZE) [I386]: Provide special
1587 Solaris 2/Intel definition.
1589 * configure.in (i?86-*-solaris2.[89]*): Define
1590 SOLARIS25_PROC_VDB_BUG_FIXED.
1591 * include/private/gcconfig.h [I386 && SUNOS5]: Use it.
1592 * configure: Regenerate.
1594 * include/private/gcconfig.h [I386 && SUNOS5] (DATASTART): Use _etext.
1595 (DATAEND): Define using _end.
1597 2001-09-11 Per Bothner <per@bothner.com>
1599 * include/Makefile.am: New file. It defines include_HEADERS.
1600 * Makefile.am (SUBDIRS): New macro, set to include.
1601 * configure.in (AC_OUTPUT): Add include/Makefile.
1603 2001-08-20 Tom Tromey <tromey@redhat.com>
1605 * configure: Rebuilt.
1606 * configure.in: Always ask gcc for threads package.
1608 2001-08-17 Tom Tromey <tromey@redhat.com>
1610 * Makefile.am, acinclude.m4, configure.in: Imported GC 6.0 and
1611 merged local changes.
1613 2001-08-02 David Billinghurst <David.Billinghurst>
1615 * configure: Rebuilt.
1616 * configure.in: POSIX threads on cygwin does not link with
1619 2001-07-03 Tom Tromey <tromey@redhat.com>
1621 Fix for PR bootstrap/3281:
1622 * aclocal.m4, configure, Makefile.in: Rebuilt.
1623 * acinclude.m4: Set mkinstalldirs for in-tree build.
1625 2001-06-26 Richard Henderson <rth@redhat.com>
1627 * alpha_mach_dep.s: Mark call-saved FP registers.
1628 * include/private/gcconfig.h (ALPHA): Remove USE_GENERIC_PUSH_REGS.
1629 * configure.in (alpha*): Re-enable alpha_mach_dep.s
1630 * configure: Rebuild.
1632 2001-06-12 Tom Tromey <tromey@redhat.com>
1634 * aclocal.m4, configure: Rebuilt.
1635 * acinclude.m4: Find configure.host in srcdir.
1637 2001-06-09 Alexandre Oliva <aoliva@redhat.com>, Stephen L Moshier <moshier@mediaone.net>
1639 * configure.in (AC_EXEEXT): Work around in case it expands to
1640 nothing, as in autoconf 2.50.
1641 * acinclude.m4: Likewise.
1642 * aclocal.m4, configure: Rebuilt.
1644 2001-06-07 Tom Tromey <tromey@redhat.com>
1646 For PR bootstrap/3075:
1647 * configure, aclocal.m4, Makefile.in: Rebuilt.
1648 * configure.in: Don't call AC_CONFIG_AUX_DIR or
1649 AC_CANONICAL_SYSTEM.
1650 * acinclude.m4 (BOEHM_CONFIGURE): Call AC_CONFIG_AUX_DIR and
1651 AC_CANONICAL_SYSTEM here.
1652 * Makefile.am (CONFIG_STATUS_DEPENDENCIES): Use srcdir, not
1655 2001-05-24 Bryce McKinlay <bryce@waitaki.otago.ac.nz>
1657 * Makefile.am: Override gctest_OBJECTS so tests/test.c can be built.
1658 (libgcjgc_la_SOURCES): Remove typo.
1659 * tests/test.c: Fix struct names and includes for GC_GCJ_SUPPORT case.
1660 * Makefile.in: Rebuilt.
1662 2001-05-21 Bryce McKinlay <bryce@waitaki.otago.ac.nz>
1664 Imported version version 6.0alpha7.
1666 * README, README.Mac, README.OS2, README.QUICK, README.alpha,
1667 README.amiga, README.debugging, README.dj, README.hp, README.linux,
1668 README.rs6000, README.sgi, README.solaris2, README.uts,
1669 README.win32, SCoptions.amiga, backptr.h, barrett_diagram,
1670 dbg_mlc.h, gc.h, gc.man, gc_alloc.h, gc_cpp.h, gc_hdrs.h, gc_mark.h,
1671 gc_priv.h, gc_private.h, gc_typed.h, gcconfig.h,
1672 hpux_irix_threads.c, makefile.depend, nursery.c,
1673 solaris_threads.h, test.c, test_cpp.cc, weakpointer.h, cord/README,
1674 cord/SCOPTIONS.amiga, cord/SMakefile.amiga, cord/cord.h,
1675 cord/ec.h, cord/gc.h, cord/private/cord_pos.h, include/backptr.h,
1676 include/gc_copy_descr.h, include/gc_nursery.h: Remove obsolete/moved
1679 2001-05-19 Hans Boehm <hans_boehm@hp.com>
1681 * configure.host: Build with -fexceptions.
1682 * linux_threads.c: Remember which thread stopped world for
1684 2001-05-04 Loren J. Rittle <ljrittle@acm.org>
1685 with final tuning by Bryce McKinlay
1687 * configure.in: Add support for --enable-threads=posix on FreeBSD.
1688 * configure: Rebuilt.
1690 2001-05-01 Jeffrey Oldham <oldham@codesourcery.com>
1692 * gc_priv.h (UNLOCK): Change type of GC_noop1 argument.
1693 (GC_noop1): Change declaration to take one argument.
1695 2001-04-26 Alexandre Oliva <aoliva@redhat.com>
1697 * configure.in: Obtain THREADS with `gcc -v'.
1698 * configure: Rebuilt.
1700 2001-04-05 Hans Boehm <hans_boehm@hp.com>
1702 * misc.c: Back out buggy changes to stack clearing code.
1703 Reduce CLEAR_SIZE to 1/4 of original value to reduce time
1704 spent clearing memory.
1706 2001-04-04 Hans Boehm <hans_boehm@hp.com>
1709 - Accomodate finalization requests for static objects.
1710 (Will be required by hash synchronization. May be needed
1711 in some configurations now.)
1714 - Define MIN_WORDS. All allocation requests are rounded
1715 up to at least this size. Removes a subtle assumption that
1716 Java objects have a 2 word header.
1719 - Adjust Linux/IA64 configuration for non-ancient kernels.
1720 (Necessary fix for IA64.)
1723 - Fix syntax error in currently unused code. Will be needed
1731 - Change stack cleaning code to typically clear about one tenth
1732 the memory it used to in the threads configuration. Occasionally
1733 still clear more. (This is really a fix for a long-standing
1734 and fairly significant performance bug with threads.)
1737 - Fix the code for finding the beginning of the data segment under
1738 Linux. I believe this is necessary for some IA64 Linux
1739 distributions. It will also helo other platforms, though those
1740 may additionally require a gcconfig.h adjustment. (This basically
1741 works around the absence of a data_start or __data_start
1742 definition in glibc.)
1745 - Handle rounding due to MIN_WORDS.
1747 2001-03-22 Tom Tromey <tromey@redhat.com>
1749 * Makefile.am (gctest_LDFLAGS): Use -shared-libgcc.
1751 2001-03-19 Tom Tromey <tromey@redhat.com>
1753 * Makefile.in: Rebuilt.
1754 * Makefile.am (gctest_LDFLAGS): new macro.
1756 2001-03-16 Tom Tromey <tromey@redhat.com>
1758 * Makefile.in: Rebuilt.
1759 * Makefile.am (TESTS_ENVIRONMENT): New macro.
1761 2001-01-23 Rod Stewart <stewart@lab43.org>
1763 * gcconfig.h: Check for `__arm__', not `arm'.
1765 2000-12-30 Bryce McKinlay <bryce@albatross.co.nz>
1767 * configure.in: Rename THREADLIB to THREADLIBS.
1768 * Makefile.am (LINK): Add $(THREADLIBS) to libtool command line. This
1769 ensures that we link the correct version of the linuxthreads semaphore
1771 * Makefile.in: Rebuilt.
1772 * configure: Rebuilt.
1774 * linux_thread.c (GC_thr_init, GC_suspend_handler): Add SIGABRT to the
1775 list of signals which are not blocked during suspend in the NO_SIGNALS
1778 2000-12-23 Hans Boehm <Hans_Boehm@hp.com>
1780 * gcj_mlc.c (GC_gcj_malloc): Don't release allocation lock twice.
1782 2000-12-15 Bryce McKinlay <bryce@albatross.co.nz>
1784 * Makefile.dist: Renamed from Makefile.orig.
1786 2000-12-11 Alexandre Petit-Bianco <apbianco@cygnus.com>
1788 * Makefile.am (gctest_LDADD): Added EXTRA_TEST_LIBS.
1789 * configure.in (EXTRA_TEST_LIBS): Check for `dlopen' in -ldl and
1791 * Makefile.in: Rebuilt.
1792 * configure: Likewise.
1794 2000-12-10 Geoffrey Keating <geoffk@redhat.com>
1796 * gcconfig.h: Add new case for powerpc EABI.
1797 [PPC]: Handle embedded OS for powerpc simulator.
1799 2000-09-30 Bryce McKinlay <bryce@albatross.co.nz>
1801 * configure.in: Define GC_GCJ_SUPPORT. Define NO_DEBUGGING in
1802 cross-compile configuration only.
1803 * Makefile.am: Build gcj_mlc.c.
1804 * configure, Makefile.in: Rebuilt.
1806 2000-09-10 Alexandre Oliva <aoliva@redhat.com>
1808 * acinclude.m4: Include libtool macros from the top level.
1809 * aclocal.m4, configure: Rebuilt.
1811 2000-09-04 Anthony Green <green@redhat.com>
1813 Fix for PR libgcj/230:
1814 * mark.c (GC_mark_from_mark_stack): Remove call to
1815 GC_debug_object_start.
1816 * gc_priv.h (GC_debug_object_start): Remove prototype.
1818 2000-08-16 Alexandre Oliva <aoliva@redhat.com>
1820 * gcconfig.h [OSF1] (_end): Declare as `int'.
1822 2000-08-02 Tom Tromey <tromey@cygnus.com>
1824 * gc_priv.h (GC_generic_malloc_inner): Prototype.
1825 (GC_generic_malloc): Likewise.
1826 (GC_add_to_black_list_normal): Likewise.
1827 (GC_find_header): Likewise.
1828 (GC_ADD_TO_BLACK_LIST_NORMAL): Cast bits argument to word.
1829 * gc_mark.h (GC_find_start): Prototype.
1830 (GC_signal_mark_stack_overflow): Likewise.
1832 2000-07-24 Alexandre Oliva <aoliva@redhat.com>
1834 * configure.in (THREADS): Don't --enable-threads on IRIX <= 5.*.
1835 * configure: Rebuilt.
1837 * dyn_load.c (GC_scratch_last_end_ptr): Don't declare a #define.
1839 2000-06-20 Bryce McKinlay <bryce@albatross.co.nz>
1841 Imported version 5.1.
1842 * acinclude.m4: Push version to 5.1.
1844 2000-06-19 Andrew Haley <aph@cygnus.com>
1846 * os_dep.c (read): Pass two dummy args to syscall().
1848 2000-05-11 Bryce McKinlay <bryce@albatross.co.nz>
1850 Imported 5.0 release version.
1851 * acinclude.m4: Increment version to 5.0.
1853 2000-05-07 Bryce McKinlay <bryce@albatross.co.nz>
1855 Imported version 5.0alpha7.
1856 * acinclude.m4: Update version to 5.0a7.
1858 2000-04-26 Jakub Jelinek <jakub@redhat.com>
1860 * gcconfig.h (SPARC): Define ALIGNMENT to 8 for 64bit SPARC.
1861 (SPARC/LINUX): Use GC_SysVGetDataStart instead of LINUX_DATA_START
1862 - sparc glibc does not provide it.
1863 (SAVE_CALL_CHAIN, ASM_CLEAR_CODE): Define on sparc*-linux*.
1864 Make STACKBOTTOM depend on the wordsize.
1865 * os_dep.c (GC_SysVGetDataStart): Compile in on sparc*-linux*.
1866 (struct frame): Declare on sparc*-linux*.
1867 (GC_save_callers): Bias the frame pointers if needed (sparc64).
1868 * mach_dep.c (GC_save_regs_in_stack): Optimize on sparc32.
1869 Implement on sparc64.
1870 (GC_clear_stack_inner): Implement on sparc64.
1871 * gc_priv.h (GC_test_and_set): Implement for sparc.
1872 * linux_threads.c (GC_suspend_handler, GC_push_all_stacks): Use
1873 GC_save_regs_in_stack on sparc.
1875 2000-04-23 Tom Tromey <tromey@cygnus.com>
1877 * gcconfig.h (DYNAMIC_LOADING): Define for PPC Linux.
1879 2000-04-19 Bryce McKinlay <bryce@albatross.co.nz>
1881 Imported version version 5.0alpha6.
1882 * acinclude.m4: Bump version to 5.0a6.
1883 * configure.in: Don't use alpha_mach_dep.s.
1884 * include/private/config.h, irix_threads.c gc_watcom.asm: Delete
1886 * Makefile.am, Makefile.in: irix_threads.c is now
1887 hpux_irix_threads.c.
1888 * Makefile.orig: Updated from gc distribution Makefile.
1890 2000-03-26 Anthony Green <green@redhat.com>
1892 * misc.c (GC_enable): Always define GC_enable and GC_disable.
1894 2000-02-14 Tom Tromey <tromey@cygnus.com>
1896 * gc.h (dlopen): Define as GC_dlopen on Linux.
1897 (GC_dlopen): Declare on Linux.
1898 * dyn_load.c (GC_dlopen): Define for Linux.
1900 Fri Jan 28 17:13:20 2000 Anthony Green <green@cygnus.com>
1902 * gcconfig.h (DATASTART): Add missing extern declaration
1903 for data_start on powerpc.
1905 1999-12-22 Bryce McKinlay <bryce@albatross.co.nz>
1907 * linux_threads.c: Don't block SIGINT, SIGQUIT, SIGTERM in the
1910 1999-12-19 Jeff Sturm <jsturm@sigma6.com>
1912 * gcconfig.h: Define DATASTART for Alpha Linux.
1914 1999-12-19 Anthony Green <green@cygnus.com>
1916 * gcconfig.h: Use libgcj hack for Alpha Linux.
1917 Undefine MPROTEXT_VDB (from Jeff Sturm).
1918 * os_dep.c: Remove Alpha Linux hacks.
1921 1999-12-13 Tom Tromey <tromey@cygnus.com>
1923 * aclocal.m4, configure: Rebuilt.
1924 * acinclude.m4: Changed version to 5.0a4.
1925 * Makefile.in: Rebuilt.
1926 * Makefile.am (libgcjgc_la_LDFLAGS): Changed version to 1:1:0.
1928 1999-12-12 Anthony Green <green@cygnus.com>
1930 * gcconfig.h (DATASTART): Define as (&data_start) for PowerPC
1932 (DYNAMIC_LOADING): Define for PowerPC Linux.
1933 * os_dep.c: Remove some special cases for PowerPC Linux.
1934 * misc.c (GC_init_inner): Don't call GC_init_linux_data_start
1937 1999-11-04 Tom Tromey <tromey@cygnus.com>
1939 * Makefile.in: Rebuilt.
1940 * Makefile.am (libgcjgc_la_SOURCES): Removed quick_threads.c.
1942 * misc.c (GC_init_inner): Don't call GC_init_linuxppc().
1943 (GC_thr_init): Don't declare.
1945 * configure: Rebuilt.
1946 * configure.in: Removed qt threads case.
1947 * dyn_load.c: Don't mention QUICK_THREADS.
1948 * os_dep.c: Don't mention QUICK_THREADS.
1949 * misc.c: Don't mention QUICK_THREADS.
1950 * gcconfig.h: Don't mention QUICK_THREADS.
1951 * gc_priv.h: Removed QUICK_THREADS code.
1952 * quick_threads.c: Removed.
1954 1999-11-03 Tom Tromey <tromey@cygnus.com>
1956 * gcconfig.h: Merged in local changes from old config.h.
1958 1999-11-02 Bryce McKinlay <bryce@albatross.co.nz>
1960 * gcconfig.h: Don't define MPROTECT_VDB on Linux/i386.
1962 1999-11-02 Tom Tromey <tromey@cygnus.com>
1964 * quick_threads.c: Include gcconfig.h, not boehm-config.h.
1966 * configure: Rebuilt.
1967 * configure.in: Don't create boehm-config.h.
1968 * Makefile.in: Rebuilt.
1969 * Makefile.am (libgcjgc_la_SOURCES): Reference gcconfig.h, not
1971 ($(all_objs)): Depend on gcconfig.h.
1972 * gc_priv.h: Reference GCCONFIG_H, not CONFIG_H.
1973 * gcconfig.h: Define GCCONFIG_H, not CONFIG_H.
1974 * config.h: Removed.
1976 1999-11-01 Tom Tromey <tromey@cygnus.com>
1978 * Makefile.in: Rebuilt.
1979 * Makefile.am (gctest_LDADD): Added THREADLIB.
1981 * configure: Rebuilt.
1982 * configure.in (INCLUDES): New subst.
1984 1999-09-29 Steve Chamberlain <sac@pobox.com>
1986 * config.h: Added picoJava target.
1987 * mach_dep.h (GC_push_regs): New code for picoJava.
1989 1999-09-28 Tom Tromey <tromey@cygnus.com>
1991 * aclocal.m4, configure: Rebuilt.
1992 * acinclude.m4 (LIB_AC_PROG_CC, LIB_AC_PROG_CXX): Provide
1993 appropriate AC_PROG_ symbol.
1995 Tue Aug 10 00:08:29 1999 Rainer Orth <ro@TechFak.Uni-Bielefeld.DE>
1997 * gc_priv.h: IRIX thread changes from
1998 include/private/gc_priv.h.
2000 Mon Aug 9 18:33:38 1999 Rainer Orth <ro@TechFak.Uni-Bielefeld.DE>
2002 * Makefile.in: Rebuilt.
2003 * Makefile.am (toolexeclibdir): Add $(MULTISUBDIR) even for native
2006 * configure: Rebuilt.
2007 * configure.in: Properly align --help output, fix capitalization
2009 * acinclude.m4: Likewise.
2011 1999-08-04 Tom Tromey <tromey@cygnus.com>
2013 * configure.in: Added missing `;;'. From Anthony Green.
2015 Mon Aug 2 23:09:41 1999 Rainer Orth <ro@TechFak.Uni-Bielefeld.DE>
2017 * configure.in (machdep): Use mips_ultrix_mach_dep.s on Ultrix V4.
2019 1999-08-03 Tom Tromey <tromey@cygnus.com>
2021 * gc_priv.h (GC_test_and_set): Implementation for Linux PPC from
2022 Franz Sirl <Franz.Sirl-kernel@lauterbach.com>.
2024 1999-08-02 Tom Tromey <tromey@cygnus.com>
2026 * aclocal.m4, configure: Rebuilt for new libtool.
2028 1999-07-31 Alexandre Oliva <oliva@dcc.unicamp.br>
2030 * mips_sgi_mach_dep.s: Enable PIC option.
2032 1999-07-19 Tom Tromey <tromey@cygnus.com>
2034 * config.h (MPROTECT_VDB): Don't define on Linux.
2036 1999-07-19 Alexandre Oliva <oliva@dcc.unicamp.br>
2038 * Makefile.am (.s.lo): Avoid `#line' directives.
2039 * Makefile.in: Rebuilt.
2041 1999-07-19 Alexandre Oliva <oliva@dcc.unicamp.br>
2043 * Makefile.am (*-recursive, *-am, *-multi): Automake does not
2044 generate *-recursive for this Makefile, use *-am instead.
2045 * Makefile.in: Rebuilt.
2047 1999-06-30 Alexandre Oliva <oliva@dcc.unicamp.br>
2049 * Makefile.am (.s.lo): Renamed from `.s.o'.
2050 * Makefile.in: Rebuilt.
2052 1999-06-21 Tom Tromey <tromey@cygnus.com>
2054 Alpha patch from Jeff Sturm:
2055 * os_dep.c (GC_init_linuxalpha): New function.
2056 * misc.c: Initialize for alpha linux.
2057 * gc_priv.h (GC_test_and_set): Define for alpha.
2058 * config.h: Don't assume __data_start on alpha.
2060 * Makefile.in: Rebuilt.
2061 * Makefile.am (libgcjgc_la_LDFLAGS): Use -version-info, not
2064 * Makefile.in: Rebuilt.
2065 * Makefile.am (toolexeclibdir): Define as libdir when
2067 * configure: Rebuilt.
2068 * configure.in (USE_LIBDIR): New conditional.
2070 * configure: Rebuilt.
2071 * configure.in: Recognize all forms of alpha.
2073 1999-06-17 Anthony Green <green@cygnus.com>
2075 * mach_dep.c (GC_push_regs): FreeBSD-elf support (from
2076 Carlo Dapor <carlo@vis.ethz.ch>).
2078 1999-05-05 Gilles Zunino <Gilles.Zunino@hei.fr>
2080 * configure.in: Switch from irix threads to posix threads
2081 Defined IRIX_THREADS. Put mips_sgi_mach_dep.lo into machdep
2082 for mips architecture.
2083 * configure: Regenerate.
2085 1999-04-30 Tom Tromey <tromey@cygnus.com>
2087 * linux_threads.c: Don't reference __pthread_initial_thread_bos.
2089 1999-04-26 Tom Tromey <tromey@cygnus.com>
2091 * dyn_load.c (GC_FirstDLOpenedLinkMap): Declare _DYNAMIC as
2094 1999-04-23 Tom Tromey <tromey@cygnus.com>
2096 * Makefile.in, configure: Rebuilt.
2097 * Makefile.am (EXTRA_LIBRARIES): Mention libgcjgc.la.
2098 (libgcjgc_la_SOURCES): Renamed.
2099 (libgcjgc_la_LIBADD): Likewise.
2100 (libgcjgc_la_DEPENDENCIES): Likewise.
2101 (EXTRA_libgcjgc_la_SOURCES): Likewise.
2102 (gctest_LDADD): Use libgcjgc.la.
2103 (all_objs): Mention libgcj_la_OBJECTS.
2104 (EXTRA_LTLIBRARIES): Renamed.
2105 (toollib_LTLIBRARIES): Likewise.
2106 (libgcjgc_la_LDFLAGS): New macro
2107 (toolexecdir): Renamed.
2108 (toolexeclibdir): Likewise.
2109 (toolexeclib_LTLIBRARIES): Likewise.
2110 (LTCOMPILE): Renamed; added libtool invocation.
2111 (LINK): Added libtool invocation.
2112 (.s.o): use LTCOMPILE.
2113 * configure.in: Call AM_PROG_LIBTOOL.
2114 (target_all): Set to libgcjgc.la.
2115 Mention `.lo' forms of object files.
2117 1999-04-21 Tom Tromey <tromey@cygnus.com>
2119 * misc.c (GC_init_inner): If QUICK_THREADS defined, compute
2122 * os_dep.c: glibc 2.1 requires asm/sigcontext.h, not
2123 sigcontext.h. From Matthias Klose <doko@itso.de>.
2125 1999-04-16 Tom Tromey <tromey@cygnus.com>
2127 * config.h (__start): Declare as `int' in alpha/OSF1 case. From
2128 David Pettersson <dapet@mai.liu.se>
2130 1999-04-14 Tom Tromey <tromey@cygnus.com>
2132 * configure: Rebuilt.
2133 * configure.in: Don't use sparc_mach_dep.o for Solaris. Reverts
2134 incorrect patch of 199-04-09.
2136 * configure: Rebuilt.
2137 * configure.in: Added support for alpha.
2138 From David Pettersson <dapet@mai.liu.se>.
2140 1999-04-13 Tom Tromey <tromey@cygnus.com>
2142 * Makefile.in: Rebuilt.
2143 * Makefile.am (libgcjgc_a_SOURCES): Added solaris-threads.c and
2146 1999-04-09 Tom Tromey <tromey@cygnus.com>
2148 * configure: Rebuilt.
2149 * configure.in: Use sparc_mach_dep.s when building on Solaris.
2151 1999-02-23 Tom Tromey <tromey@cygnus.com>
2153 * configure: Rebuilt.
2154 * configure.in: For Linux, define _REENTRANT. For Solaris, define
2155 SOLARIS_THREADS and _SOLARIS_PTHREADS.
2157 1999-02-18 Tom Tromey <tromey@cygnus.com>
2159 * quick_threads.c (GC_push_all_stacks): Change order of arguments
2160 to GC_push_all_stacks depending on STACK_GROWS_DOWN define. Check
2161 for case where LO is NULL.
2163 1999-02-10 Tom Tromey <tromey@cygnus.com>
2165 * aclocal.m4, configure, Makefile.in: Rebuilt.
2166 * acinclude.m4: Updated to be used with automake 1.4.
2167 * configure.in: Renamed libgc to libgcjgc. Updated to be used
2169 * Makefile.am (EXTRA_LIBRARIES): Renamed libgc to libgcjgc.
2170 (libgcjgc_a_SOURCES): Likewise.
2171 (libgcjgc_a_LIBADD): Likewise.
2172 (libgcjgc_a_DEPENDENCIES): Likewise.
2173 (EXTRA_libgcjgc_a_SOURCES): Likewise.
2174 (gctest_LDADD): Likewise.
2175 (all_objs): Likewise.
2177 1999-01-08 Tom Tromey <tromey@cygnus.com>
2179 * configure: Rebuilt.
2180 * configure.in: Define LINUX_THREADS if using POSIX threads on
2183 * gc_priv.h (GC_test_and_set): Put return type into definition.
2185 1998-11-24 Andrew Haley <aph@viagra.cygnus.co.uk>
2187 * Makefile.am: add support for eCos. In particular, add C++
2188 support for compiling the file ecos.cc.
2189 * ecos.cc: new file.
2190 * acinclude.m4: add C++ support.
2191 * aclocal.m4: likewise
2192 * config.h: add eCos support.
2193 * configure: likewise
2194 * configure.in: likewise
2195 * misc.c (GC_write): add eCos support.
2196 * os_dep.c (tiny_sbrk): add eCos support.
2198 Thu Dec 10 18:24:34 1998 Warren Levy <warrenl@cygnus.com>
2200 * misc.c (GC_init_inner): Moved STACKBASE code to os_dep.c.
2201 * os_dep.c (GC_get_stack_base): Moved STACKBASE code from misc.c.
2203 1998-11-23 Tom Tromey <tromey@cygnus.com>
2205 * configure.host (boehm_gc_cflags): Don't add `-O2'.
2207 1998-11-20 Andrew Haley <aph@viagra.cygnus.co.uk>
2209 * Makefile.am, Makefile.in, configure.host: tx39 build option
2212 1998-11-17 Tom Tromey <tromey@cygnus.com>
2214 * configure: Rebuilt.
2215 * configure.in: Switch on host, not target.
2217 1998-11-16 Tom Tromey <tromey@cygnus.com>
2219 * gc_priv.h (GC_debug_object_start): Declare.
2220 * mark.c (GC_mark_from_mark_stack): Call GC_debug_object_start.
2221 * gc.h (GC_debug_register_finalizer_no_order,
2222 GC_register_finalizer_no_order): Declare.
2223 (GC_REGISTER_FINALIZER_NO_ORDER): New macro.
2224 * dbg_mlc.c (GC_debug_register_finalizer_no_order): New function.
2225 (GC_debug_generic_malloc): Likewise.
2226 (GC_debug_object_start): new function.
2228 1998-11-11 Tom Tromey <tromey@cygnus.com>
2230 * configure: Rebuilt.
2231 * configure.in: Recognize --enable-java-gc, not --enable-gc.
2233 Tue Nov 3 18:01:12 1998 Tom Tromey <tromey@sanguine.cygnus.com>
2235 * dyn_load.c: Handle QUICK_THREADS case.
2237 1998-10-21 Tom Tromey <tromey@cygnus.com>
2239 * configure: Rebuilt.
2240 * configure.in: Put cpp defines here, not in config.h. Recognize
2241 --enable-threads. Set INCLUDES. Create boehm-cflags file. Don't
2242 define PACKAGE or VERSION.
2243 * config.h (SILENT, NO_SIGNALS, NO_DEBUGGING, JAVA_FINALIZATION):
2246 * os_dep.c (GC_default_push_other_roots): Define when
2247 QUICK_THREADS defined.
2248 * misc.c: Added QUICK_THREADS case.
2249 * gc_priv.h: Added QUICK_THREADS case to define LOCK and UNLOCK.
2250 * config.h (THREADS): Define if QUICK_THREADS defined.
2251 * Makefile.in: Rebuilt.
2252 * Makefile.am (libgc_a_SOURCES): Added linux_threads.c,
2254 * quick_threads.c: New file.
2256 1998-10-20 Tom Tromey <tromey@cygnus.com>
2258 * aclocal.m4, configure: Rebuilt.
2259 * acinclude.m4: Don't subst machine_dir or sys_dir.
2260 * configure.host: Removed unused code.
2262 Sun Oct 11 08:18:02 1998 Anthony Green <green@cygnus.com>
2264 * configure: Rebuilt.
2265 * configure.in: Fix typo in previous patch.
2267 Sun Oct 11 08:06:11 1998 Anthony Green <green@cygnus.com>
2269 * Makefile.in, aclocal.m4, configure: Rebuilt.
2270 * Makefile.am, acinclude.m4, configure.in: Add multilib support.
2271 * configure.host: Created.
2273 Tue Sep 1 10:58:15 1998 Tom Tromey <tromey@cygnus.com>
2275 * Makefile.in: Rebuilt.
2276 * Makefile.am (lib_LIBRARIES): Use target_all.
2277 (EXTRA_LIBRARIES): New macro.
2278 * configure: Rebuilt.
2279 * configure.in: Recognize --enable-gc.
2281 Thu Aug 13 10:52:45 1998 Tom Tromey <tromey@cygnus.com>
2283 * Makefile.in: Rebuilt.
2284 * Makefile.am (COMPILE): Define.
2286 (.s.o): Use MY_CFLAGS.
2287 * configure: Rebuilt.
2288 * configure.in (MY_CFLAGS): Define and subst.
2290 Wed Aug 12 11:41:43 1998 Tom Tromey <tromey@cygnus.com>
2292 * configure: Rebuilt.
2293 * configure.in: Added --with-cross-host argument. Use
2294 $with_cross_host to determine when cross-compiling.
2296 * config.h (SMALL_CONFIG): Don't define.
2297 * configure: Rebuilt.
2298 * configure.in: Define SMALL_CONFIG when cross-compiling.
2300 Tue Aug 11 11:41:25 1998 Tom Tromey <tromey@cygnus.com>
2302 * solaris_pthreads.c, misc.c, gc_priv.h, config.h, alloc.c,
2303 allchblk.c: Merged with 4.13a2 while preserving local changes.
2305 * Makefile.orig: Updated from Makefile in 4.13a2.
2307 * configure: Rebuilt.
2308 * configure.in: Updated version number to 4.13a2. On Solaris,
2309 don't build with -O when using gcc.
2311 Merged in version 4.13alpha2:
2312 * config.h (USE_MMAP): Re-enable on Solaris.
2313 * solaris_pthreads.c: Removed RCS Id line.
2314 * alpha_mach_dep.s: Removed RCS Id line.
2316 Wed Jul 22 15:38:12 1998 Tom Tromey <tromey@cygnus.com>
2318 * config.h (USE_MMAP): Don't define for Solaris.
2320 Wed Jun 10 12:51:41 1998 Tom Tromey <tromey@cygnus.com>
2322 * Makefile.in: Rebuilt.
2323 * Makefile.am (libgc_a_SOURCES): Removed setjmp_t.c.
2325 * Makefile.in: Rebuilt.
2326 * Makefile.am (libgc_a_SOURCES): Removed add_gc_prefix.c.
2328 Thu May 14 15:32:58 1998 Tom Tromey <tromey@cygnus.com>
2330 * Makefile.in: Rebuilt.
2331 * Makefile.am ($(all_objs)): Depend on config.h.
2333 * config.h: [MIPS] If DATASTART_IS_ETEXT defined then define
2334 DATASTART as &_etext.
2335 * misc.c (GC_init_inner): If STACKBASE defined, then use it.
2336 * configure: Rebuilt.
2337 * configure.in: Define STACKBASE and DATASTART_IS_ETEXT for the
2340 Tue May 12 13:15:45 1998 Tom Tromey <tromey@cygnus.com>
2342 * alloc.c: Don't call GET_TIME if NO_CLOCK defined.
2343 (GC_maybe_gc): Likewise.
2344 * os_dep.c: If NO_SIGSET defined, then have empty
2345 GC_disable_signals and GC_enable_signals.
2346 * configure: Rebuilt.
2347 * configure.in: Added --with-target-subdir option. If
2348 cross-compiling, define NO_SIGSET and NO_CLOCK.
2350 Wed May 6 16:40:28 1998 Tom Tromey <tromey@cygnus.com>
2352 * Makefile.in: Rebuilt.
2353 * Makefile.am (.s.o): Directly use CC -x assembler-with-cpp.
2355 * aclocal.m4, configure: Rebuilt.
2356 * acinclude.m4: New file.
2357 * configure.in: Don't run AM_EXEEXT. Use LIB_AC_PROG_CC.
2359 Thu Apr 30 14:51:12 1998 Tom Tromey <tromey@cygnus.com>
2361 * configure: Rebuilt.
2362 * configure.in: Link boehm-config.h to config.h.
2363 * Makefile.in: Rebuilt.
2364 * Makefile.am (INCLUDES): Removed.
2365 * config.h (SILENT, SMALL_CONFIG, NO_SIGNALS, NO_DEBUGGING,
2366 JAVA_FINALIZATION): Define
2368 Wed Apr 29 11:03:14 1998 Tom Tromey <tromey@cygnus.com>
2370 * Many files: Use GC_bool, not bool.
2371 * gc_priv.h: Define GC_bool, not bool.
2373 * misc.c (GC_dont_gc): Define as int.
2374 (GC_quiet): Likewise.
2375 * gc_priv.h (GC_never_stop_func): Declare as returning bool.
2376 * alloc.c (GC_dont_expand): Define as int.
2377 * gc_priv.h: For gcc, define bool as char.
2379 Tue Apr 28 22:44:16 1998 Tom Tromey <tromey@cygnus.com>
2381 * Makefile.in: Rebuilt.
2382 * Makefile.am (check_PROGRAMS): New macro.
2383 (gctest_SOURCES): Likewise.
2384 (gctest_LDADD): Likewise.
2386 Mon Apr 27 23:53:24 1998 Tom Tromey <tromey@cygnus.com>
2388 * Makefile.in: Rebuilt.
2389 * Makefile.am (libgc_a_SOURCES): Added dyn_load.c.
2390 * configure: Rebuilt.
2391 * configure.in: Define SUNOS53_SHARED_LIB on Solaris 2.3.
2393 Wed Apr 15 11:40:56 1998 Tom Tromey <tromey@sanguine.cygnus.com>
2395 * Makefile.am, Makefile.in, configure.in, configure, aclocal.m4:
2397 * Makefile.orig: Renamed from Makefile.