OSDN Git Service

Dump a diagnostic info when the insn-to-mem ratio is too small.
[pf3gnuchains/gcc-fork.git] / boehm-gc / ChangeLog
1 2010-05-06  Dave Korn  <dave.korn.cygwin@gmail.com>
2
3         PR target/42811
4         * tests/staticrootstest.c: New test source file.
5         * tests/staticrootslib.c: New test library source file.
6         * Makefile.am (test_ldadd): New variable.
7         (gctest_LDADD): Use it.
8         (TESTS): Add leaktest, middletest and staticrootstest.
9         (check_PROGRAMS): Likewise.
10         (leaktest_SOURCES): New libtool variable definition.
11         (leaktest_LDADD): Likewise.
12         (leaktest_LDFLAGS): Likewise.
13         (leaktest_LINK): Likewise.
14         (middletest_SOURCES): Likewise.
15         (middletest_LDADD): Likewise.
16         (middletest_LDFLAGS): Likewise.
17         (middletest_LINK): Likewise.
18         (staticrootstest_SOURCES): Likewise.
19         (staticrootstest_LDADD): Likewise.
20         (staticrootstest_LDFLAGS): Likewise.
21         (staticrootstest_LINK): Likewise.
22         (check_LTLIBRARIES): Likewise.
23         (libstaticrootslib_la_SOURCES): Likewise.
24         (libstaticrootslib_la_LIBADD): Likewise.
25         (libstaticrootslib_la_LDFLAGS): Likewise.
26         (libstaticrootslib_la_DEPENDENCIES): Likewise.
27         * Makefile.in: Regenerate.
28
29 2010-04-02  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
30
31         * Makefile.in: Regenerate.
32         * aclocal.m4: Regenerate.
33         * include/Makefile.in: Regenerate.
34
35 2010-03-21  Dave Korn  <dave.korn.cygwin@gmail.com>
36
37         PR target/42811 (prerequisite)
38         * include/private/gc_priv.h (struct roots) [CYGWIN32]: Don't
39         declare r_next member on Cygwin as on other windows hosts.
40         (LOG_RT_SIZE) [CYGWIN32]: Don't define likewise.
41         (RT_SIZE) [CYGWIN32]: Likewise.
42         (struct _GC_arrays) [CYGWIN32]: Do declare _heap_bases[] member
43         likewise.
44         (GC_heap_bases) [CYGWIN32]: Do define likewise.
45         (struct _SYSTEM_INFO) [CYGWIN32]: Do forward-declare likewise.
46         (GC_sysinfo) [CYGWIN32]: Do declare extern likewise.
47         (GC_n_heap_bases) [CYGWIN32]: Likewise.
48         (GC_is_tmp_root) [CYGWIN32]: Do prototype likewise.
49         * include/private/gcconfig.h (GC_win32_get_mem) [CYGWIN32]: Likewise.
50         (GET_MEM) [CYGWIN32]: Do define likewise.
51         * boehm-gc/ptr_chck.c (GC_is_visible) [CYGWIN32]: Do handle dynamic
52         registration likewise.
53         * boehm-gc/os_dep.c (GC_setpagesize) [CYGWIN32]: Do define likewise.
54         (GC_no_win32_dlls) [CYGWIN32]: Define as constant false, unlike
55         other windows hosts.
56         (GC_sysinfo) [CYGWIN32]: Define as on other windows hosts.
57         (GC_n_heap_bases) [CYGWIN32]: Likewise.
58         (GLOBAL_ALLOC_TEST) [CYGWIN32]: Likewise.
59         (GC_win32_get_mem) [CYGWIN32]: Likewise, but wrapping GC_unix_get_mem
60         rather than GlobalAlloc/VirtualAlloc.
61         (GC_win32_free_heap) [CYGWIN32]: Likewise, but wrapping free instead
62         of GlobalFree (even though the function body is optimised away).
63         * boehm-gc/mark_rts.c (add_roots_to_index) [CYGWIN32]: Define as on
64         other windows hosts.
65         (GC_add_roots_inner) [CYGWIN32]: Avoid overlapping or adjacent
66         intervals likewise.
67         (GC_clear_roots) [CYGWIN32]: Clear GC_root_index[] likewise.
68         (GC_rebuild_root_index) [CYGWIN32]: Define as on other windows hosts.
69         (GC_remove_tmp_roots) [CYGWIN32]: Call it likewise.
70         (GC_remove_roots) [CYGWIN32]: Don't define, as on other windows hosts.
71         (GC_is_tmp_root) [CYGWIN32]: Define, as on other windows hosts.
72         (GC_cond_register_dynamic_libraries) [CYGWIN32]: Handle temporary
73         roots and dynamic registration likewise.
74         * boehm-gc/dyn_load.c (GC_has_static_roots) [CYGWIN32]: Define as on
75         other windows hosts.
76         (GC_register_has_static_roots_callback) [CYGWIN32]: Likewise.
77         (GC_cond_add_roots) [CYGWIN32]: Likewise.
78         (GC_register_main_static_data) [CYGWIN32]: Define to always return
79         false, as on MSWINCE
80         (HAVE_REGISTER_MAIN_STATIC_DATA) [CYGWIN32]: Define as on other
81         windows hosts.
82         (GC_warn_fb) [CYGWIN32]: Likewise.
83         (GC_disallow_ignore_fb) [CYGWIN32]: Likewise.
84         (GC_ignore_fb_mb) [CYGWIN32]: Likewise.
85         (GC_ignore_fb) [CYGWIN32]: Likewise.
86         (is_frame_buffer) [CYGWIN32]: Likewise.
87         (GC_dump_meminfo) [CYGWIN32]: Likewise.
88         (GC_wnt) [CYGWIN32]: Define to constant true.
89         (GC_register_dynamic_libraries) [CYGWIN32]: Define as on other
90         windows hosts.
91
92 2009-12-09  Matthias Klose  <doko@ubuntu.com> 
93
94         * include/private/gc_locks.h: For __ARM_EABI__ define
95         GC_test_and_set  GC_clear to use the atomic builtins.
96
97 2009-12-05  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
98
99         * Makefile.in: Regenerate.
100         * configure: Regenerate.
101         * include/Makefile.in: Regenerate.
102
103 2009-11-30  Ben Elliston  <bje@au.ibm.com>
104
105         * mark_rts.c (GC_approx_sp): Use __builtin_frame_address when
106         compiling with GCC rather than taking the address of a local
107         variable.
108
109 2009-11-30  Ben Elliston  <bje@au.ibm.com>
110
111         * os_dep.c: Use the POSIX signal API in preference to the BSD API.
112         Generate a compilation error if neither the POSIX nor BSD APIs can
113         be detected.
114
115 2009-09-11  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
116
117         * Makefile.am (libgcjgc_la_LINK, gctest_LINK): New.
118         (gctest_LDADD): Depend on libgcjgc.la instead of ./libgcjgc.la,
119         so that library dependency resolution works with portable make.
120         * Makefile.in: Regenerate.
121
122 2009-09-08  Alexandre Oliva  <aoliva@redhat.com>
123
124         * configure: Rebuilt with modified libtool.m4.
125
126 2009-09-03  Loren J. Rittle  <ljrittle@acm.org>
127
128         * dyn_load.c (HAVE_DL_ITERATE_PHDR): Break definition from use.
129         Define for FreeBSD 7.0+.
130
131 2009-08-24  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
132
133         * configure.ac (AC_PREREQ): Bump to 2.64.
134
135 2009-08-22  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
136
137         * Makefile.am (install-html, install-pdf): Remove.
138         * Makefile.in: Regenerate.
139
140         * Makefile.in: Regenerate.
141         * aclocal.m4: Regenerate.
142         * configure: Regenerate.
143         * include/Makefile.in: Regenerate.
144         * include/gc_config.h.in: Regenerate.
145
146 2009-08-22  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
147
148         * Makefile.am (LTCOMPILE, LTLINK): Add $(AM_LIBTOOLFLAGS)
149         and $(LIBTOOLFLAGS).
150         * Makefile.in: Regenerate.
151
152 2009-07-30  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
153
154         * configure.ac (_AC_ARG_VAR_PRECIOUS): Use m4_rename_force.
155
156 2009-07-17  Michael Meissner  <meissner@linux.vnet.ibm.com>
157
158         PR boehm-gc/40785
159         * include/private/gc_locks.h (GC_test_and_set): If GCC 4.4, use
160         the __sync_lock_test_and _set and __sync_lock_release builtins on
161         the powerpc.  If not GCC 4.4, fix up the constraints so that it
162         builds without error.
163         (GC_clear): Ditto.
164
165 2009-07-17  Kai Tietz  <kai.tietz@onevision.com>
166
167         * configure.ac: Add rule for mingw targets to add -DGC_BUILD=1 to
168         cflags.
169         * configure: Regenerated.
170
171 2009-05-17  Dave Korn  <dave.korn.cygwin@gmail.com>
172
173         * win32_threads.c (GC_get_thread_stack_base):  Implement for Cygwin.
174
175 2009-03-01  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
176
177         * configure: Regenerate.
178
179 2009-02-09  Mark Mitchell  <mark@codesourcery.com>
180
181         * Makefile.am (LTLDFLAGS): New variable.
182         (LINK): Use it.
183         * Makefile.in: Regenerated.
184
185 2008-12-18  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
186
187         * configure: Regenerate.
188
189 2008-09-26  Peter O'Gorman  <pogma@thewrittenword.com>
190             Steve Ellcey  <sje@cup.hp.com>
191
192         * configure: Regenerate for new libtool.
193         * Makefile.in: Ditto.
194         * include/Makefile.in: Ditto.
195         * aclocal.m4: Ditto.
196
197 2008-07-18  Matthias Klose  <doko@ubuntu.com> 
198  
199         * configure.ac (AC_CONFIG_FILES): Add threads.mk. 
200         * threads.mk.in: New. 
201         * Makefile.in, configure: Regenerate. 
202
203 2008-06-17  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
204
205         * Makefile.in: Regenerate.
206         * configure: Regenerate.
207         * include/Makefile.in: Regenerate.
208         * include/gc_config.h.in: Regenerate.
209
210 2008-04-18  Paolo Bonzini  <bonzini@gnu.org>
211
212         PR bootstrap/35457
213         * aclocal.m4: Regenerate.
214         * configure: Regenerate.
215
216 2008-03-16  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
217
218         * aclocal.m4: Regenerate.
219         * configure: Likewise.
220         * Makefile.in: Likewise.
221         * include/Makefile.in: Likewise.
222
223 2007-02-19  Andreas Tobler  <a.tobler@schweiz.org>
224
225         * dyn_load.c (GC_dyld_image_add): Remove ifdef clause and use the macro
226         GC_GETSECTBYNAME instead.
227         * include/private/gc_priv.h: Define GC_GETSECTBYNAME according to the
228         architecture (Darwin).
229
230 2008-01-26  Richard Sandiford  <rsandifo@nildram.co.uk>
231
232         * include/private/gcconfig.h (HBLKSIZE): Define for MIPS.
233
234 2008-01-24  David Edelsohn  <edelsohn@gnu.org>
235
236         * configure: Regenerate.
237
238 2007-10-10  John David Anglin  <dave.anglin@nrc-cnrc.gc.ca>
239
240         PR boehm-gc/33442
241         * pthread_support.c (GC_PTR GC_get_thread_stack_base): If stack grows
242         up, return stack_addr instead of stack_addr - stack_size.
243
244 2007-08-14  David Daney  <ddaney@avtrex.com>
245
246         * include/private/gcconfig.h: Handle mips64-linux n64 ABI.
247
248 2007-07-05  H.J. Lu  <hongjiu.lu@intel.com>
249
250         * aclocal.m4: Regenerated.
251
252 2007-07-02  Rainer Orth  <ro@TechFak.Uni-Bielefeld.DE>
253
254         PR boehm-gc/21940
255         PR boehm-gc/21942
256         * configure.ac (GC_SOLARIS_THREADS): Don't define on *-*-solaris*.
257         Use alternate thread library in /usr/lib/lwp.
258         * configure: Regenerate.
259         * dyn_load.c: Use GC_SOLARIS_PTHREADS.
260         * include/gc_config_macros.h (GC_SOLARIS_THREADS): Don't define.
261         * include/private/gcconfig.h: Handle 64-bit Solaris 2/x86.
262         (GC_SOLARIS_THREADS): Don't define.
263         * include/private/solaris_threads.h: Remove.
264         * pthread_support.c (GC_thr_init) [GC_SOLARIS_PTHREADS]: Determine
265         GC_nprocs via sysconf().
266         * Makefile.am (libgcjgc_la_SOURCES): Remove solaris_pthreads.c and
267         solaris_threads.c.
268         (gctest_LDADD): Use THREADLIBS instead of THREADDLLIBS.
269         * Makefile.in: Regenerate.       
270         * solaris_pthreads.c: Remove.
271         * solaris_threads.c: Remove.
272
273 2007-06-22  Jakub Jelinek  <jakub@redhat.com>
274
275         * pthread_support.c (GC_get_thread_stack_base): Handle
276         pthread_getattr_np failures.
277
278 2007-06-02  Paolo Bonzini  <bonzini@gnu.org>
279
280         * configure: Regenerate.
281
282 2007-05-23  Steve Ellcey  <sje@cup.hp.com>
283
284         * Makefile.in: Regenerate.
285         * configure: Regenerate.
286         * aclocal.m4: Regenerate.
287         * include/Makefile.in: Regenerate.
288
289 2007-05-20  Andreas Tobler  <a.tobler@schweiz.org>
290
291         * configure.ac: Introduce extra_ldflags_libgc. Use it for Darwin.
292         * configure: Regenerate.
293         * Makefile.am (libgc_la_LDFLAGS): Use extra_ldflags_libgc.
294         * Makefile.in: Regenerate.
295         * include/Makefile.in: Regenerate.
296         * include/private/gcconfig.h: Enable MPROTECT_VDB for all Darwin
297         targets. Remove comments. Prepare ppc64 support for Darwin.
298
299 2007-04-23  Keith Seitz  <keiths@redhat.com>
300
301         * include/gc.h (GC_is_thread_suspended): Declare.
302         * pthread_stop_world.c (GC_is_thread_suspended): New function.
303
304 2007-04-03  Jakub Jelinek  <jakub@redhat.com>
305
306         * configure.ac (NO_EXECUTE_PERMISSION): Set by default.
307         * configure: Rebuilt.
308
309 2007-03-07  Alexandre Oliva  <aoliva@redhat.com>
310
311         * include/gc.h (GC_REGISTER_FINALIZER_UNREACHABLE): New.
312         (GC_register_finalizer_unreachable): Declare.
313         (GC_debug_register_finalizer_unreachable): Declare.
314         * finalize.c (GC_unreachable_finalize_mark_proc): New.
315         (GC_register_finalizer_unreachable): New.
316         (GC_finalize): Handle it.
317         * dbg_mlc.c (GC_debug_register_finalizer_unreachable): New.
318         (GC_debug_register_finalizer_no_order): Fix whitespace.
319
320 2007-03-01  Brooks Moses  <brooks.moses@codesourcery.com>
321
322         * Makefile.am: Add dummy install-pdf target.
323         * Makefile.in: Regenerate
324
325 2007-02-05  Roman Zippel <zippel@linux-m68k.org>
326
327         * boehm-gc/include/private/gcconfig.h: use LINUX_STACKBOTTOM so
328         it works with Linux 2.6, reactivate MPROTECT_VDB
329         * boehm-gc/pthread_stop_world.c: save all register
330         on signal entry
331
332 2007-01-24  Andreas Tobler  <a.tobler@schweiz.org>
333
334         * os_dep.c (defined(MPROTECT_VDB) && defined(DARWIN)): Moved recently
335         added defines to include/private/gc_priv.h
336         (catch_exception_raise): Added THREAD_FLD in exc_state for POWERPC too.
337         * darwin_stop_world.c: Removed the above defines.
338         * include/private/gc_priv.h: Moved definitions from darwin_stop_world.c
339         and os_dep.c to here. Fixed THREAD definition fixes for ppc64.
340
341 2007-01-17  David Daney  <ddaney@avtrex.com>
342
343         * configure.ac: Don't define NO_SIGSET and NO_DEBUGGING while
344         cross-compiling.
345         * configure: Regenerated.
346         * include/gc_config.h.in: Regenerated.
347
348 2007-01-17  Mike Stump  <mrs@apple.com>
349
350         * os_dep.c: Fix i686-apple-darwin9 builds.
351
352 2007-01-16  Jack Howarth  <howarth@bromo.med.uc.edu>
353
354         * aclocal.m4: Regenerate to use multi.m4.
355         * configure: Regenerate.
356         * Makefile.in: Regenerate.
357
358 2007-01-17  Andreas Tobler  <a.tobler@schweiz.org>
359
360         * include/gc_config.h.in: Regenerate.
361
362 2007-01-16  Petr Salinger  <Petr.Salinger@seznam.cz>
363
364         * include/private/gcconfig.h: Handle amd64/x86-64 cpu under
365          GNU/kFreeBSD.
366         * os_dep.c: Likewise.
367
368 2007-01-15  Andreas Tobler  <a.tobler@schweiz.org>
369
370         * os_dep.c (defined(MPROTECT_VDB) && defined(DARWIN)): Adjust mail
371         reference.
372         (catch_exception_raise): Fix typo in the I386 exc_state.
373
374 2007-01-11  Andreas Tobler  <a.tobler@schweiz.org>
375
376         * configure.ac: Replaced HAS_I386_THREAD_STATE_* with
377         HAS_X86_THREAD_STATE32_* and HAS_X86_THREAD_STATE64_* respectively.
378         * configure: Regenerated.
379         * include/private/gcconfig.h (DARWIN): Added X86_64 define for Darwin.
380         Added base definitions for the X86_64 Darwin port.
381         * include/private/gc_priv.h: Added definitions for Darwin MACH thread
382         operations. Moved existing THREAD_STATE info from darwin_stop_world.c.
383         * darwin_stop_world.c: Removed THREAD_STATE info. Added
384         HAS_X86_THREAD_STATE64___RAX. And replaced HAS_I386_THREAD_STATE___EAX
385         with HAS_X86_THREAD_STATE32___EAX.
386         (GC_push_all_stacks): Use GC_MACH_THREAD_STATE_COUNT. Add code for
387         X86_64 Darwin.
388         * dyn_load.c (GC_dyld_name_for_hdr): Use GC_MACH_HEADER.
389         (GC_dyld_image_add): Use GC_MACH_HEADER and GC_MACH_SECTION.
390         Distinguish between getsectbynamefromheader_64 and
391         getsectbynamefromheader.
392         (GC_dyld_image_remove): Likewise.
393         * os_dep.c (GC_dirty_init): Use GC_MACH_THREAD_STATE.
394         (catch_exception_raise): Introduce exception information for I386 and
395         X86_64 Darwin. Add X86_64 for exc_state.faultvaddr.
396
397 2006-12-08  Mike Stump  <mrs@apple.com>
398
399         * configure.ac: Fix x86 darwin builds.
400         * darwin_stop_world.c: Likewise.
401         * include/private/gcconfig.h: Likewise.
402         * connfigure: Regenerate.
403         
404 2006-09-26  Jack Howarth  <howarth@bromo.med.uc.edu>
405
406         PR target/29180
407         * darwin_stop_world.c: Make stack_start unsigned long.
408
409 2006-09-21  Sandro Tolaini  <tolaini@libero.it>
410
411         * os_dep.c: Port to Darwin/i386
412         * darwin_stop_world.c: Likewise
413         * include/private/gcconfig.h: Likewise
414         
415 2006-06-07  Petr Salinger  <Petr.Salinger@seznam.cz>
416
417         * configure.ac: add support for GNU/kFreeBSD, accepted by upstream
418         for gc 6.8.
419         * dyn_load.c: Likewise.
420         * include/gc.h: Likewise.
421         * private/gcconfig.h: Likewise.
422         * configure: Regenerate.
423         * include/gc_config.h.in: Regenerate.
424
425 2006-09-14  Tom Tromey  <tromey@redhat.com>
426
427         PR boehm-gc/29068.
428         * misc.c (GC_init_inner): Don't use GC_get_thread_stack_base on
429         Solaris.
430
431 2006-08-21  Bryce McKinlay  <mckinlay@redhat.com>
432         
433         PR libgcj/13212:
434         * configure.ac: Check for pthread_getattr_np(). Remove
435         GC_PTHREAD_SYM_VERSION detection.
436         * include/gc.h (GC_register_my_thread, GC_unregister_my_thread,
437         GC_get_thread_stack_base): New declarations.
438         * pthread_support.c (GC_register_my_thread, GC_unregister_my_thread,
439         GC_get_thread_stack_base): New functions.
440         (GC_delete_thread): Don't try to free the first_thread.
441         * misc.c (GC_init_inner): Use GC_get_thread_stack_base() if possible.
442         (pthread_create_, constr): Removed.
443         (pthread_create): Don't rename.
444         * include/gc_ext_config.h.in: Rebuilt.
445         * include/gc_pthread_redirects.h (pthread_create): Define 
446         unconditionally.
447         * include/gc_config.h.in: Rebuilt.
448         * configure: Rebuilt.
449
450 2006-06-21  Keith Seitz  <keiths@redhat.com>
451
452         * pthread_stop_world.c (GC_suspend_handler): Redirect to suspension
453         routine if signal is received and thread is flagged SUSPENDED.
454         (suspend_self): New function.
455         (GC_suspend_thread): New function.
456         (GC_resume_thread): New function.
457         * include/gc.h (GC_suspend_thread): Declare.
458         (GC_resumet_thread): Declare.
459         * include/private/pthread_support.h (SUSPENDED): New GC_thread
460         flag.
461
462 2006-06-20  Ranjit Mathew  <rmathew@gcc.gnu.org>
463         
464         Backport Windows 9x/ME VirtualQuery() fix from GC 6.7.
465         * os_dep.c (GC_wnt): Define.
466         (GC_init_win32): Set GC_wnt.
467         * dyn_load.c (GC_register_dynamic_libraries): Consider MEM_PRIVATE
468         sections also on Windows 9x/ME.
469
470 2006-06-02  Geoffrey Keating  <geoffk@apple.com>
471
472         * configure.ac: Define HAS_PPC_THREAD_STATE_R0,
473         HAS_PPC_THREAD_STATE___R0, HAS_PPC_THREAD_STATE64_R0,
474         HAS_PPC_THREAD_STATE64___R0, HAS_I386_THREAD_STATE_EAX,
475         HAS_I386_THREAD_STATE___EAX.
476         * configure: Regenerate.
477         * include/gc_config.h.in: Regenerate.
478         * darwin_stop_world.c (PPC_RED_ZONE_SIZE): Use standard Darwin
479         macro names to determine value.
480         (THREAD_STATE): New.
481         (THREAD_FLD): New.
482         (GC_push_all_stacks): Use THREAD_STATE and THREAD_FLD in both versions.
483
484 2006-05-24  Carlos O'Donell  <carlos@codesourcery.com>
485
486         * Makefile.am: Add install-html target. 
487         * Makefile.in: Regenerate.
488         * aclocal.m4: Regenerate.
489         * include/Makefile.in: Regenerate.
490
491 2006-03-07  Andrew Haley  <aph@redhat.com>
492
493         * dyn_load.c (GC_has_static_roots): Declare.
494         (GC_register_dynlib_callback): Call GC_has_static_roots.
495
496 2006-04-11  Bryce McKinlay  <mckinlay@redhat.com>
497
498         * darwin_stop_world.c (GC_push_all_stacks, GC_stop_world,
499         GC_start_world): Call vm_deallocate to free act_list. Fix from
500         Bruce Mitchener.
501
502 2006-03-24  Andreas Tobler  <a.tobler@schweiz.ch>
503         John David Anglin  <dave.anglin@nrc-cnrc.gc.ca>
504
505         * configure.ac (THREADS): Add REENTRANT for *-*-hpux11*.
506         Warn about POSIX threads not being supported for *-*-hpux10*.
507         * configure: Regenerate.
508
509 2006-02-09  Tom Tromey  <tromey@redhat.com>
510
511         * pthread_support.c: Conditionally include dlfcn.h.
512
513 2006-02-06  Jakub Jelinek  <jakub@redhat.com>
514             Anthony Green  <green@redhat.com>
515             Tom Tromey  <tromey@redhat.com>
516
517         * include/gc_ext_config.h.in: Added GC_PTHREAD_SYM_VERSION.
518         * include/gc_config.h.in: Rebuilt.
519         * include/gc_pthread_redirects.h (pthread_create): Conditionally
520         define.
521         * pthread_support.c (pthread_create_): New global.
522         (constr): New function.
523         (pthread_create): Conditionally renamed.
524         * configure: Rebuilt.
525         * configure.ac (GC_PTHREAD_SYM_VERSION): Define.
526
527 2006-02-04  Alan Modra  <amodra@bigpond.net.au>
528
529         * include/private/gc_locks.h (GC_test_and_set <POWERPC>): Don't
530         use broken 64-bit version.
531
532 2006-01-25  Andreas Tobler  <a.tobler@schweiz.ch>
533
534         * darwin_stop_world.c: Change inline asm instruction to ld as ldz
535         is wrong.
536
537         * Makefile.am (asm_libgcjgc_sources): Rename to asm_libgcjgc_sources.
538         * Makefile.in: Regenerate.
539
540 2006-01-25  Bryce McKinlay  <mckinlay@redhat.com>
541
542         * include/private/gcconfig.h: Revert to GC 6.6 version, removing
543         all local changes.
544
545 2006-01-24  Bryce McKinlay  <mckinlay@redhat.com>
546
547         Import Boehm GC version 6.6.
548
549 2006-01-24  David Ayers  <d.ayers@inode.at>
550
551         PR libobjc/13946
552         * include/gc.h: Fix prototype declarations for bootstrap.
553
554 2005-11-01  Bryce McKinlay  <mckinlay@redhat.com>
555
556         * include/private/gc_priv.h: Increase MAX_ROOT_SETS to 1024.
557
558 2005-09-15  Kazu Hirata  <kazu@codesourcery.com>
559
560         * include/private/gc_locks.h (GC_test_and_set): Change the
561         constraint of the first operand to '0'.
562
563 2005-09-06  Tom Tromey  <tromey@redhat.com>
564
565         PR libgcj/23662:
566         * include/private/gcconfig.h (LINUX_STACKBOTTOM): Use instead of
567         HEURISTIC1 on ARM.
568
569 2005-07-17  SUGIOKA Toshinobu  <sugioka@itonet.co.jp>
570
571         * include/private/gcconfig.h (sh-linux): Use LINUX_STACKBOTTOM.
572
573 2005-06-15  Andreas Tobler  <a.tobler@schweiz.ch>
574
575         * os_dep.c: Add FreeBSD/PowerPC bits.
576         (GC_SysVGetDataStart): Likewise.
577         * include/private/gcconfig.h: Likewise.
578
579 2005-05-25  Andrew Haley  <aph@redhat.com>
580
581         * include/private/gcconfig.h (HBLKSIZE): Define to 4096 on
582         powerpc64-linux.
583
584 2005-05-09  Mike Stump  <mrs@apple.com>
585
586         * configure: Regenerate.
587
588 2005-04-19  Hans-Peter Nilsson  <hp@axis.com>
589
590         * os_dep.c, include/private/gc_locks.h: Import CRIS port by
591         Simon Posnjak from gc6.4.
592         * include/private/gcconfig.h: Ditto.  Add M32R note from gc6.4.
593
594 2005-04-17  David S. Miller  <davem@davemloft.net>
595
596         * include/private/gcconfig.h (sparc-linux): Use LINUX_STACKBOTTOM.
597         * os_dep.c (GC_linux_stack_base): Check for bug present in some
598         Sparc glibc variants where __libc_stack_end is erroneously set
599         to "1".  Fallback to procfs code in that case.
600
601 2005-04-12  Mike Stump  <mrs@apple.com>
602
603         * configure: Regenerate.
604
605 2005-04-12  Richard Henderson  <rth@redhat.com>
606
607         * include/private/gcconfig.h (alpha-linux): Use LINUX_STACKBOTTOM.
608
609 2005-03-23  Mike Stump  <mrs@apple.com>
610
611         * darwin_stop_world.c: Update for -m64 multilib.
612         * include/private/gcconfig.h: Likewise.
613         * powerpc_darwin_mach_dep.s: Likewise.
614
615 2005-03-01  Kelley Cook  <kcook@gcc.gnu.org>
616
617         * Makefile.in, include/Makefile.in: Regenerate.
618
619 2005-02-26  Richard Earnshaw  <rearnsha@arm.com>
620
621         * dyn_load.c: On NetBSD, include machine/elf_machdep.h and define
622         ELFSIZE in terms of ARCH_ELFSIZE (back-ported from gc7.0alpha1).
623
624 2005-02-15  Bryce McKinlay  <mckinlay@redhat.com>
625
626         PR libgcj/19823
627         * configure.host: Set gc_use_mmap on *-linux*.
628         * configure.ac: Define USE_MMAP if gc_use_mmap is set.
629         * include/private/gc_priv.h: Include gc_config.h.
630         * configure, include/gc_config.h.in: Rebuilt.
631
632 2005-02-07  Hans Boehm  <Hans.Boehm@hp.com>
633
634         * allchblk.c (GC_allochblk_nth): Dont overlook available space if
635           GC disabled, correctly convert GC_finalizer_mem_freed to byte,
636           total_size to words.
637         * dyn_load.c (win32 GC_register_dynamic_libraries): Consider only
638           MEM_IMAGE regions.
639         * mach_dep.c (GC_with_callee_saves_pushed): separate into new function,
640           and indent appropriately.
641         * mark_rts.c (GC_approx_sp): Access stack.
642         * pthread_stop_world.c: (GC_suspend_handler): Explicitly push
643           callee-saves registers when appropriate.
644           (GC_stop_world): Handle EINTR from sem_wait (sync with Mono GC).
645
646 2005-01-01  Bryce McKinlay  <mckinlay@redhat.com>
647
648         * configure.ac (AC_CONFIG_HEADERS): Build both include/gc_config.h 
649         and include/gc_ext_config.h.
650         * include/gc_ext_config.h: New file. Define only THREAD_LOCAL_ALLOC.
651         * include/gc.h: Undef PACKAGE_* before including gc_config.h.
652
653 2004-12-13  Kelley Cook  <kcook@gcc.gnu.org>
654
655         * configure: Regenerate.
656
657 2004-11-29  Bryce McKinlay  <mckinlay@redhat.com>
658
659         PR libgcj/18699
660         Revert patches of 2004-11-26 and 2004-11-27.
661
662 2004-11-29  Kelley Cook  <kcook@gcc.gnu.org>
663
664         * configure: Regenerate for libtool change.
665
666 2004-11-27  Bryce McKinlay  <mckinlay@redhat.com>
667
668         * include/gc_config.h.in: Add comment. Define only THREAD_LOCAL_ALLOC.
669
670 2004-11-26  Bryce McKinlay  <mckinlay@redhat.com>
671
672         Fix "PACKAGE_NAME redefined" errors.
673         * configure.ac (AC_CONFIG_HEADERS): Build both include/config.h 
674         and include/gc_config.h.
675         * configure: Regenerated.
676         * include/gc_config.h.in: No longer auto-generated. Define only the
677         macros needed by libjava.
678         * include/config.h.in: Generated by autoheader.
679         * include/gc.h: Include config.h, not gc_config.h.
680
681 2004-11-25  Kelley Cook  <kcook@gcc.gnu.org>
682
683         * configure: Regenerate for libtool reversion.
684
685 2004-11-24  Kelley Cook  <kcook@gcc.gnu.org>
686
687         * configure: Regenerate for libtool change.
688
689 2004-11-22  Eric Botcazou  <ebotcazou@libertysurf.fr>
690
691         * configure.ac (machdep): Use sparc_mach_dep.lo on
692         sparc64-sun-solaris2.* too.
693         (Solaris gcc optimization fix): Disable on sparc*-sun-solaris2.*.
694         * configure: Regenerate.
695
696 2004-11-22  Eric Botcazou  <ebotcazou@libertysurf.fr>
697
698         PR target/18444
699         * configure.ac (threading): Accept 'posix95'.
700         * configure: Regenerate.
701
702 2004-11-04  Kelley Cook  <kcook@gcc.gnu.org>
703
704         * Makefile.am: Define ACLOCAL_AMFLAGS.
705         * configure.ac: Remove redundant sinclude.
706         * acinclude.m4: Delete file.
707         * aclocal.m4: Regenerate.
708         * Makefile.in, include/Makefile.in: Regenerate.
709         * configure: Regenerate.
710
711 2004-10-19  Ulrich Weigand  <uweigand@de.ibm.com>
712
713         * include/private/gc_priv.h (GC_generic_malloc_words_small_inner):
714         Add prototype.
715
716 2004-10-13  Kazuhiro Inaoka <inaoka.kazuhiro@renesas.com>
717
718         * include/private/gcconfig.h: Add m32r-linux target.
719
720 2004-09-27  Kelley Cook  <kcook@gcc.gnu.org>
721
722         * configure.ac: Update all AC_DEFINEs to newer style.
723         * configure: Regenerate.
724         * include/gc_config.h.in: Regenerate.
725
726 2004-08-27  Hans Boehm  <Hans.Boehm@hp.com>
727
728         * backgraph.c, gc_priv.h (GC_traverse_back_graph,
729         GC_print_back_graph_stats): split GC_traverse_back_graph.
730         * backgraph.c: Dynamically grow in_progress_space.
731         * finalize.c (GC_notify_or_invoke_finalizers): also call
732         GC_print_back_graph_stats.
733         * alloc.c, finalize.c, gc_priv.h (GC_generate_random_backtrace_no_gc,
734         GC_print_back_height): Move delarations to header file.
735         * configure.ac: rename --enable-full-debug to --enable-gc-debug.
736         * configure: Regenerate.
737         
738 2004-08-23  Hans Boehm  <Hans.Boehm@hp.com>
739
740         * aix_irix_threads.c: Move _THREADS checks after gc_priv.h include.
741         * backgraph.c, include/private/gc_pmark.h: Always include gc.h.
742
743 2004-08-23  Bryce McKinlay  <mckinlay@redhat.com>
744
745         * win32_threads.c: Move GC_WIN32_THREADS check after gc_priv.h include.
746         Reported by Danny Smith.
747
748 2004-08-21  Danny Smith  <dannysmith@users.sourceforge.net>
749
750         * misc.c (GC_init): Replace lhs cast with rhs cast.
751
752 2004-08-16  Bryce McKinlay  <mckinlay@redhat.com>
753
754         * specific.c: Check GC_LINUX_THREADS before including 
755         private/specific.h. From Richard Earnshaw.
756
757 2004-08-16  Nathanael Nerode  <neroden@gcc.gnu.org>
758
759         * aclocal.m4: Remove obsolete construct for old automake.
760         * acinclude.m4: Regenerate with aclocal 1.9.1.
761         * configure.ac:  Remove duplicate AC_WITH calls.  Replace
762         AC_CANONICAL_SYSTEM with AC_CANONICAL_HOST, AC_CANONICAL_TARGET.
763         Replace _GCC_TOPLEV_NONCANONICAL calls with ACX_NONCANONICAL_TARGET.
764         Remove now-redundant subst of target_noncanonical.  Remove
765         now-gratuitous m4 quoting around $.  Replace AM_PROG_LIBTOOL with
766         AC_PROG_LIBTOOL and remove second, redundant AC_PROG_LIBTOOL.
767         Use slightly more modern form of AC_INIT.
768         * configure: Rebuild with autoconf 2.59.
769         * Makefile.in, include/Makefile.in: Rebuild with automake 1.9.1.
770
771 2004-08-16  Andreas Tobler  <a.tobler@schweiz.ch>
772
773         * solaris_threads.c: Remove ifdef around #include "private/gc_priv.h"
774         since they're not known at this time.
775         * solaris_pthreads.c: Likewise.
776
777 2004-08-15  Andreas Tobler  <a.tobler@schweiz.ch>
778
779         PR target/14931
780         * powerpc_darwin_mach_dep.s (_GC_push_regs): Change to new stub style.
781
782 2004-08-13  Bryce McKinlay  <mckinlay@redhat.com>
783
784         * configure.ac (gc_cflags): Add -Iinclude.
785         (AC_CONFIG_HEADERS): New. Configure gc_config.h header.
786         Don't write DEFS to boehm-cflags file.
787         * configure: Rebuilt.
788         * gcj_mlc.c: Check #ifdef GC_GCJ_SUPPORT after including headers.
789         * specific.c: Check #ifdef GC_LINUX_THREADS after including headers.
790         * include/gc_config_macros.h: Remove backward-compatibility 
791         redefinitions of GC_ names.
792         * include/gc.h: Include <gc_config.h>.
793
794 2004-08-13  Bryce McKinlay  <mckinlay@redhat.com>
795
796         Import Boehm GC version 6.3.
797
798 2004-08-12  Kelley Cook  <kcook@gcc.gnu.org>
799
800         * include/Makefile.in: Regenerate
801
802 2004-07-06  Andrew Pinski  <apinski@apple.com>
803
804         * os-dep.c (GC_task_self): Declare as static
805         and remove the second declaration.
806
807 2004-06-20  Andreas Tobler  <a.tobler@schweiz.ch>
808
809         * Makefile.am: Add rule for .S files to fix bootstrap on
810         solaris and alpha.
811         * Makefile.in: Regenerate.
812
813 2004-06-16  Paolo Bonzini  <bonzini@gnu.org>
814
815         * boehm-gc/configure.ac: New name of configure.in.
816         Remove useless multilib stuff.  Change uses of
817         INCLUDES and CXXINCLUDES to AM_CPPFLAGS.
818         * boehm-gc/configure.in: New name of configure.in.
819         * boehm-gc/Makefile.am: Update for automake 1.8.5.
820         * boehm-gc/acinclude.m4: Include ../config/acx.m4.
821         * boehm-gc/aclocal.m4: Regenerate.
822         * boehm-gc/configure: Regenerate.
823         * boehm-gc/Makefile.in: Regenerate.
824
825 2004-06-15  Paolo Bonzini  <bonzini@gnu.org>
826
827         * .cvsignore: New file.
828
829 2004-04-25  Andreas Jaeger  <aj@suse.de>
830
831         * mark.c (GC_mark_from): Use pointer as prefetch argument.
832
833 2004-04-06  H.J. Lu  <hongjiu.lu@intel.com>
834
835         * include/private/gcconfig.h (PREFETCH): Use __builtin_prefetch
836         for gcc >= 3.0.
837         (PREFETCH_FOR_WRITE): Likewise.
838
839 2004-03-10  Kelley Cook  <kcook@gcc.gnu.org>
840
841         * configure.ac: Bump AC_PREREQ to 2.59.
842         * configure: Regenerate.
843         * config.in: Regenerate.
844
845 2004-02-26  Nathanael Nerode  <neroden@gcc.gnu.org>
846
847         * ltconfig, ltmain.sh: Remove unused files.
848         * configure.in: Remove bogus extra early invocation of
849         AC_CONFIG_AUX_DIR.
850         * configure: Regenerate.
851         * mkinstalldirs, install-sh, config.sub, config.guess:
852         Remove (now) unused files.
853         * Makefile.in: Regenerate (losing references to vanished
854         files).
855
856         * configure.in: Add CCAS, CCASFLAGS for future automakes.
857         * configure, Makefile.in, include/Makefile.in: Regenerate.
858
859         * Makefile.am: Remove bogus duplicate setting of AM_CFLAGS.
860         * Makefile.in: Regenerate.
861
862         * configure.in: Remove bogus duplicate invocation of
863         AM_MAINTAINER_MODE.  Remove obsolete comment.
864         * configure: Regenerate.
865
866         * acinclude.m4: Remove GC_CONFIGURE macro; move contents
867         to configure.in.
868         * aclocal.m4: Regenerate.
869         * configure.in: Receive contents of GC_CONFIGURE macro.
870         * configure: Regenerate.
871
872         * configure.in: Remove more obsolete, bogus code.
873         * configure: Regenerate.
874
875         * acinclude.m4: Remove obsolete and bogus constructs.
876         * aclocal.m4: Regenerate.
877         * configure: Regnerate.
878
879 2004-02-23  Nathanael Nerode  <neroden@gcc.gnu.org>
880
881         * acinclude.m4: De-precious CC and CXX so that the right flags
882         are passed down to multilibs.
883         * aclocal.m4: Regenerate.
884         * configure: Regenerate.
885
886 2004-02-22  Zack Weinberg <zack@codesourcery.com>
887             Nathanael Nerode <neroden@twcny.rr.com>
888             Alexandre Oliva <aoliva@redhat.com>
889
890         * config.sub, config.guess: Replace with forwarding scripts
891         which invoke the master copies in the top level.
892
893 2004-02-23  Nathanael Nerode  <neroden@gcc.gnu.org>
894
895         * acinclude.m4: Remove old no-executables workaround;
896         add new no-executables workaround.
897         * aclocal.m4: Regenerate.
898         * configure.in: Change prereqs to autoconf 2.57.
899         * configure: Regenerate with autoconf 2.57.
900
901         * configure.in: Use NCN_TARGET_NONCANONICAL and friends.
902         * configure: Regenerate.
903         * Makefile.am: Use target_noncanonical variable from configure.
904         * Makefile.in: Regenerate.
905         * include/Makefile.in: Regenerate.
906
907 2004-02-20  Andrew Cagney  <cagney@redhat.com>
908
909         * config.guess: Update from version 2002-01-10 to 2004-02-16.
910         * config.sub: Update from version 2002-01-02 to 2004-02-16.
911
912 2004-02-19  Nathanael Nerode  <neroden@gcc.gnu.org>
913
914         * acinclude.m4: Remove bogus duplicate call to AC_CANONICAL_BUILD.
915         * aclocal.m4: Rebuild.
916         * configure: Regenerate.
917
918         * acinclude.m4: Move certain code to configure.in.
919         * configure.in: Receive code from acinclude.m4.
920         * aclocal.m4: Rebuild.
921         * configure: Regenerate.
922
923         * Makefile.direct, alloc.c: Resync to upstream 6.3 alpha 1.
924
925 2004-01-20  Andrew Haley  <aph@redhat.com>
926
927         * include/private/gcconfig.h (USE_MMAP): Define for all Linux.
928
929         * configure.in: Comment change.
930
931 2004-01-16  Andrew Haley  <aph@redhat.com>
932
933         * configure.in (NO_EXECUTE_PERMISSION): Remove global declaration;
934         add for ia64; remove for MIPS.
935         * configure: Regnerated.
936
937 2004-01-14  Kelley Cook  <kcook@gcc.gnu.org>
938
939         * configure.in: Add in AC_PREREQ(2.13)
940
941 2004-01-07  Dave Jones <davej@redhat.com>
942
943         * malloc.c (GC_generic_malloc): Correct initialization typo.
944         * mallocx.c (GC_generic_malloc_ignore_off_page): Ditto.
945
946 2003-10-31  Richard Earnshaw  <rearnsha@arm.com>
947
948         * include/private/gcconfig.h: Re-install change of 2003-04-16.
949
950 2003-10-20  Rainer Orth  <ro@TechFak.Uni-Bielefeld.DE>
951
952         * mips_sgi_mach_dep.s: Use _ABIO32 instead of external
953         _MIPS_SIM_ABI32.
954
955 2003-10-18  Alan Modra  <amodra@bigpond.net.au>
956
957         * include/private/gcconfig.h (ALIGNMENT <powerpc linux>): Remove
958         unsure comment.
959
960 2003-10-03  Jeff Sturm  <jsturm@one-point.com>
961
962         * configure: Rebuild.
963
964 2003-10-03  Hans Boehm  <Hans.Boehm@hp.com>
965
966         * configure.in: Remove NO_GETENV definition for win32.
967         * mach_dep.c (GC_generic_push_regs): Prevent tail call optimization.
968         * misc.c (GC_init_inner): Call GC_thr_init for win32.
969           (GC_set_warn_proc): Add assertion.
970         * win32_threads.c: Import 6.3alpha2 version.
971         * include/private/gc_priv.h: Add support for EMPTY_GETENV_RESULTS.
972
973 2003-09-29  Rainer Orth  <ro@TechFak.Uni-Bielefeld.DE>
974
975         * configure.in: Remove wildcard from Solaris 8-9/Intel and Solaris
976         2.3/SPARC, there are no micro versions.
977         Treat Solaris 10 and up alike.
978         * configure: Regenerate.
979
980 2003-09-22  Anthony Green  <green@redhat.com>
981
982         * os_dep.c: Fix GC_get_stack_base build problem for vanilla elf
983         "NOSYS" targets.
984
985 2003-09-20    <green@redhat.com>
986
987         * include/private/gcconfig.h: Don't check for __XSCALE__.  Instead
988         check for __arm__ or __thumb__.
989
990 2003-09-09  Alan Modra  <amodra@bigpond.net.au>
991
992         * configure: Regenerate.
993
994 2003-08-07  Rainer Orth  <ro@TechFak.Uni-Bielefeld.DE>
995             Roger Sayle <roger@eyesopen.com>
996
997         * configure.in: Set INCLUDES to absolute path.
998         Save $INCLUDES in boehm-cflags, too.
999         Set INCLUDES so it's available to config.status.
1000         * configure: Regenerate.
1001
1002 2003-07-31  Danny Smith  <dannysmith@users.sourceforge.net>
1003
1004         * include/gc.h (GC_CreateThread): Declare with WINAPI
1005         attribute.
1006         * win32_threads.c (GC_CreateThread): Make definitions consistent
1007         with declaration.  Cast &thread_table[i].handle to PHANDLE
1008         in call to DuplicateHandle
1009         (thread_start): Declare as static.
1010
1011 2003-07-30  Andreas Tobler  <a.tobler@schweiz.ch>
1012
1013         * dyn_load.c: Define __private_extern__ to match Apple's system
1014         header.
1015
1016 2003-07-28  Loren J. Rittle  <ljrittle@acm.org>
1017
1018         * os_dep.c: Remove redundancy introduced in last merge.
1019
1020 2003-07-28  Jeff Sturm  <jsturm@one-point.com>
1021
1022         Import GC 6.3alpha1.
1023         * BCC_MAKEFILE: Merge with GC 6.3alpha1 release.
1024         * ChangeLog: Likewise.
1025         * Makefile.am: Likewise.
1026         * Makefile.direct: Likewise.
1027         * Makefile.dj: Likewise.
1028         * allchblk.c: Likewise.
1029         * alloc.c: Likewise.
1030         * backgraph.c: Likewise.
1031         * configure.host: Likewise.
1032         * configure.in: Likewise.
1033         * dbg_mlc.c: Likewise.
1034         * dyn_load.c: Likewise.
1035         * finalize.c: Likewise.
1036         * gc_cpp.cc: Likewise.
1037         * gc_dlopen.c: Likewise.
1038         * gcj_mlc.c: Likewise.
1039         * if_mach.c: Likewise.
1040         * mach_dep.c: Likewise.
1041         * malloc.c: Likewise.
1042         * mallocx.c: Likewise.
1043         * mark.c: Likewise.
1044         * mark_rts.c: Likewise.
1045         * misc.c: Likewise.
1046         * os_dep.c: Likewise.
1047         * ptr_chck.c: Likewise.
1048         * reclaim.c: Likewise.
1049         * solaris_pthreads.c: Likewise.
1050         * solaris_threads.c: Likewise.
1051         * sparc_mach_dep.S: Likewise.
1052         * threadlibs.c: Likewise.
1053         * typd_mlc.c: Likewise.
1054         * version.h: Likewise.
1055         * win32_threads.c: Likewise.
1056         * Mac_files/MacOS_Test_config.h: Likewise.
1057         * Mac_files/MacOS_config.h: Likewise.
1058         * cord/cordbscs.c: Likewise.
1059         * cord/cordprnt.c: Likewise.
1060         * cord/de_win.c: Likewise.
1061         * doc/README: Likewise.
1062         * doc/README.MacOSX: Likewise.
1063         * doc/README.changes: Likewise.
1064         * doc/README.environment: Likewise.
1065         * doc/README.ews4800: Likewise.
1066         * doc/README.linux: Likewise.
1067         * doc/README.macros: Likewise.
1068         * doc/README.win32: Likewise.
1069         * doc/debugging.html: Likewise.
1070         * doc/gcdescr.html: Likewise.
1071         * doc/tree.html: Likewise.
1072         * include/Makefile.in: Likewise.
1073         * include/gc.h: Likewise.
1074         * include/gc_cpp.h: Likewise.
1075         * include/gc_local_alloc.h: Likewise.
1076         * include/gc_mark.h: Likewise.
1077         * include/gc_pthread_redirects.h: Likewise.
1078         * include/gc_typed.h: Likewise.
1079         * include/new_gc_alloc.h: Likewise.
1080         * include/private/dbg_mlc.h: Likewise.
1081         * include/private/gc_hdrs.h: Likewise.
1082         * include/private/gc_locks.h: Likewise.
1083         * include/private/gc_pmark.h: Likewise.
1084         * include/private/gc_priv.h: Likewise.
1085         * include/private/gcconfig.h: Likewise.
1086         * include/private/solaris_threads.h: Likewise.
1087         * include/private/specific.h: Likewise.
1088         * tests/test.c: Likewise.
1089         * tests/test_cpp.cc: Likewise.
1090
1091         * configure: Rebuild.
1092         * Makefile.in: Rebuild.
1093
1094         * mips_sgi_mach_dep.s: Add.
1095
1096         * alpha_mach_dep.s: Remove.
1097         * irix_threads.c: Remove.
1098         * linux_threads.c: Remove.
1099         * mips_sgi_mach_dep.S: Remove.
1100         * missing: Remove.
1101         * powerpc_macosx_mach_dep.s: Remove.
1102         * doc/Makefile.am: Remove.
1103         * doc/Makefile.in: Remove.
1104
1105 2003-07-25  Roger Sayle  <roger@eyesopen.com>
1106
1107         * configure.host: Only use +ESdbgasm when using the HPUX native
1108         compiler on PA-Risc.  It isn't recognized by GCC and is silently
1109         ignored by HP's compilers on ia64.
1110
1111 2003-04-28  Mohan Embar  <gnustuff@thisiscool.com>
1112
1113         * configure.in: define GC_DLL under mingw if --enable-shared
1114         * configure: rebuilt
1115         * win32_threads.c: add #ifdef GC_DLL around DllMain
1116
1117 2003-04-16  Richard Earnshaw  <rearnsha@arm.com>
1118
1119         * include/private/gcconfig.h: Add support for arm-netbsdelf.
1120
1121 2003-04-09  Tom Tromey  <tromey@redhat.com>
1122
1123         * include/private/gcconfig.h (LINUX_STACKBOTTOM): Define for
1124         POWERPC.
1125         (STACK_GRAN, HEURISTIC1): Don't define for POWERPC.
1126
1127 2003-03-22  Richard Henderson  <rth@redhat.com>
1128
1129         * include/private/gc_locks.h [IA64]: Include ia64intrin.h.
1130         (GC_test_and_set): Use __sync_lock_test_and_set.
1131         (GC_clear): Use volatile assignment.
1132         (GC_compare_and_exchange): Use __sync_bool_compare_and_swap.
1133         (GC_memory_write_barrier): Use __sync_synchronize.
1134
1135 2003-03-12  Andreas Schwab  <schwab@suse.de>
1136
1137         * configure.in: Avoid trailing /. in toolexeclibdir.
1138         * configure: Rebuilt.
1139
1140 2003-03-04  Hans Boehm <Hans.Boehm@hp.com>
1141         * include/private/gcconfig.h (GC_data_start): declare when needed.
1142         * include/private/gc_priv.h: Include gcconfig.h after ptr_t
1143         declaration.
1144         * dyn_load.c (GC_register_dynamic_libraries_dl_iterate_phdr,
1145         GC_register_dynlib_callback): Register main data for static
1146         executable if dl_iterate_phdr() didn't.
1147         * misc.c (GC_init_inner): Call GC_init_linux_data_start() even
1148         if we don't expect to register main static data.
1149
1150 2003-03-03  Hans Boehm  <Hans.Boehm@hp.com>
1151         * mark_rts.c (GC_cond_register_dynamic_libraries): add.
1152         (GC_push_roots): explicitly mark free list headers, register
1153         dynamic libraries only if !REGISTER_LIBRARIES_EARLY.
1154         * alloc.c (GC_stopped_mark): Conditionally call
1155         GC_cond_register_dynamic_libraries().
1156         (GC_collect_a_little_inner, GC_try_to_collect_inner): Check GC_dont_gc.
1157         * dyn_load.c (GC_register_main_static_data): define.
1158         (GC_register_dyn_libraries (Linux /proc, Linux ELF versions)):
1159         no longer skip main data.
1160         * misc.c (GC_REGISTER_MAIN_STATIC_DATA): define.
1161         (GC_init_inner): Make main data registration conditional.
1162         * include/private/gc_priv.h (GC_register_main_static_data): declare.
1163         * include/private/gcconfig.h (REGISTER_LIBRARIES_EARLY): define
1164         for LINUX.
1165
1166 2003-02-20  Alexandre Oliva  <aoliva@redhat.com>
1167
1168         * configure.in: Propagate ORIGINAL_LD_FOR_MULTILIBS to
1169         config.status.
1170         * configure: Rebuilt.
1171
1172 2003-02-11  Andreas Tobler  <a.tobler@schweiz.ch>
1173
1174         * include/private/gcconfig.h: undefine MPROTECT_VDB for MACOSX
1175
1176 2003-01-27  Alexandre Oliva  <aoliva@redhat.com>
1177
1178         * configure.in (toolexecdir, toolexeclibdir): Set and AC_SUBST.
1179         Remove USE_LIBDIR conditional.
1180         * Makefile.am (toolexecdir, toolexeclibdir): Don't override.
1181         * Makefile.in, configure: Rebuilt.
1182
1183 2002-12-31  Tom Tromey  <tromey@redhat.com>
1184
1185         For PR libgcj/8933:
1186         * include/Makefile.in: Rebuilt.
1187         * include/Makefile.am (noinst_HEADERS): Renamed from
1188         include_HEADERS.
1189
1190 2002-11-19  Rainer Orth  <ro@TechFak.Uni-Bielefeld.DE>
1191
1192         * ltconfig (osf[345]): Append $major to soname_spec.
1193         Reflect this in library_names_spec.
1194         * ltmain.sh (osf): Prefix $major with . for use as extension.
1195
1196 2002-10-02  Andreas Jaeger  <aj@suse.de>
1197
1198         * include/private/gcconfig.h (HBLKSIZE): Define for x86-64.
1199
1200 2002-09-28  Richard Earnshaw  <rearnsha@arm.com>
1201
1202         * include/private/gcconfig.h: Don't check for __XSCALE__.  Instead
1203         check for __arm__ or __thumb__.
1204
1205 2002-09-27  Ulrich Weigand  <uweigand@de.ibm.com>
1206
1207         * include/private/gcconfig: Add machine type S390.  Add s390x support.
1208         * include/private/gc_locks.h (GC_test_and_set): Implement for s390.
1209         (GC_compare_and_exchange): Likewise.
1210
1211 2002-09-24  Jason Thorpe  <thorpej@wasabisystems.com>
1212
1213         * include/private/gcconfig.h: Fix NetBSD/mips parameters.
1214
1215 2002-08-23  Adam Megacz <adam@xwt.org>
1216
1217         * win32_threads.cc: Removed extraneous ABORT()
1218
1219 2002-09-22  Kaveh R. Ghazi  <ghazi@caip.rutgers.edu>
1220
1221         * Makefile.am (all-multi): Fix multilib parallel build.
1222
1223 2002-07-18  Bo Thorsen  <bo@suse.de>
1224
1225         * include/private/gcconfig.h: Add x86-64 definitions.
1226         * os_dep.c: Add x86-64 support.
1227         * configure.in: Likewise.
1228         * configure: Regenerate.
1229
1230 2002-07-18  H.J. Lu <hjl@gnu.org>
1231
1232         * mach_dep.c (GC_push_regs): Remove the unused Linux/mips code.
1233
1234 2002-07-18  H.J. Lu  (hjl@gnu.org)
1235
1236         * configure.in (machdep): Don't add mips_sgi_mach_dep.lo for
1237         Linux/mips.
1238
1239 2002-06-28  Hans Boehm <Hans_Boehm@hp.com>
1240             Jonathan Clark
1241
1242         * win32_threads.c (GC_push_all_stacks): Tolerate bad sp.
1243
1244 2002-06-09  H.J. Lu  (hjl@gnu.org)
1245
1246         * include/private/gc_locks.h (GC_test_and_set): Support
1247         Linux/mips.
1248         (GC_TEST_AND_SET_DEFINED): Likewise.
1249
1250         * include/private/gcconfig.h (DYNAMIC_LOADING): Defined for
1251         Linux/mips.
1252         (DATAEND): Likewise.
1253         (LINUX_STACKBOTTOM): Likewise.
1254         (STACKBOTTOM): Removed for Linux/mips.
1255
1256 Sun May 19 11:32:03 2002  Mark P Mitchell  <mark@codesourcery.com>
1257
1258         * irix_threads.cc (GC_pthread_detach): Do not use REAL_FUNC.
1259         (GC_pthread_create): Fix typo.
1260         (GC_TRY_LOCK): Likewise.
1261         * include/private/gc_locks.h (GC_test_and_set): Only take one
1262         one argument.
1263         (LOCK): Adjust appropriately.
1264         * include/private/gc_priv.h (SIG_SUSPEND): Use SIGRTMIN if
1265         _SIGRTMIN is unavailable.
1266
1267 2002-05-16  Rainer Orth  <ro@TechFak.Uni-Bielefeld.DE>
1268
1269         * acinclude.m4: Allow for PWDCMD to override hardcoded pwd.
1270         * aclocal.m4: Regenerate.
1271         * configure: Regenerate.
1272
1273 2002-05-08  Alexandre Oliva  <aoliva@redhat.com>
1274
1275         * configure.in (ORIGINAL_LD_FOR_MULTILIBS): Preserve LD at
1276         script entry, and set LD to it when configuring multilibs.
1277         * configure: Rebuilt.
1278
1279 2002-04-22  Jeff Sturm  <jsturm@one-point.com>
1280
1281         * Makefile.am (toolexeclib_LTLIBRARIES): Remove.
1282         (noinst_LTLIBRARIES): Add libgcjgc.la.
1283
1284         * Makefile.in: Rebuild.
1285
1286 2002-04-22  David S. Miller  <davem@redhat.com>
1287
1288         * include/private/gcconfig.h: Hard-code STACKBOTTOM on
1289         64-bit SPARC Linux, the __libc_stack_end technique does
1290         not work in this case.
1291
1292 2002-04-22  Jeff Sturm  <jsturm@one-point.com>
1293
1294         * gcconfig.h: Enable DYNAMIC_LOADING for all sparc-solaris ABIs.
1295
1296 2002-04-17  Hans Boehm  <Hans_Boehm@hp.com>
1297
1298         * include/private/gcconfig.h: Use LINUX_STACKBOTTOM for
1299         SPARC Linux.
1300
1301 2002-04-09  Loren J. Rittle  <ljrittle@acm.org>
1302
1303         * include/private/gcconfig.h (DATAEND): Update comment example
1304         to match reality.
1305
1306 2002-04-08  Loren J. Rittle  <ljrittle@acm.org>
1307
1308         * include/private/gcconfig.h (DATAEND): Clarify comment.
1309
1310 2002-04-08  Hans Boehm  <Hans_Boehm@hp.com>
1311
1312         * include/private/gc_priv.h (WARN macro): Add "GC warning:" prefix.
1313         (GC_large_alloc_warn_interval, GC_large_alloc_warn_suppressed):
1314         declare.
1315         * allchblk.c (GC_allchblk_nth): Change text and support reduced
1316         frequency for blacklist warning message.
1317         * misc.c (GC_large_alloc_warn_interval,
1318         GC_large_alloc_warn_suppressed): define.
1319         (GC_init_inner): Check GC_NO_BLACKLIST_WARNING and
1320         GC_LARGE_ALLOC_WARN_INTERVAL environment variables.
1321         * doc/README.environment (GC_NO_BLACKLIST_WARNING): Deprecate.
1322         (GC_LARGE_ALLOC_WARN_INTERVAL): Add documentation.
1323
1324         * dyn_load.c (_DYNAMIC): Move declaration to file scope.
1325
1326 2002-04-04  Loren J. Rittle  <ljrittle@acm.org>
1327
1328         * include/private/gcconfig.h: Add support for an unmapped
1329         memory hole between the end of the initialized data segment
1330         and the start of the BSS on FreeBSD/i386.
1331
1332 2002-03-30  Krister Walfridsson  <cato@df.lth.se>
1333
1334         * include/private/gcconfig.h: define DYNAMIC_LOADING for ELF
1335         NetBSD/i386.
1336
1337 2002-03-29  Hans Boehm  <Hans_Boehm@hp.com>
1338
1339         * linux_threads.c (return_free_lists): Clear fl[i] unconditionally.
1340         (GC_local_gcj_malloc): Add assertion.
1341         (start_mark_threads): Fix abort message.
1342         * mark.c (GC_mark_from): Generalize assertion.
1343         * reclaim.c (GC_clear_fl_links): New function.
1344         (GC_start_reclaim): Must clear some freelist links.
1345         * include/private/specific.h, specific.c: Add assertions.
1346         Safer definition for INVALID_QTID, quick_thread_id.  Fix/add comments.
1347         Rearrange tse fields.
1348
1349 2002-03-27  Richard Henderson  <rth@redhat.com>
1350
1351         * os_dep.c (GC_init_linux_data_start): Fix references to
1352         __data_start and _end.
1353
1354 2002-03-25  Loren J. Rittle  <ljrittle@acm.org>
1355
1356         * include/private/gcconfig.h: Change all likely references
1357         to linker script synthesized symbols to use this idiom:
1358         extern int etext[]; etext
1359
1360 2002-03-25  Jeff Sturm  <jsturm@one-point.com>
1361
1362         * linux_threads.c (GC_get_nprocs): Close file descriptor.
1363
1364 2002-03-21  Loren J. Rittle  <ljrittle@acm.org>
1365
1366         * include/private/gcconfig.h: Add unified test for FreeBSD.
1367         Support FreeBSD/alpha.
1368         * os_dep.c: Do not include <machine/trap.h> unless available.
1369         (GC_freebsd_stack_base): Fix types.
1370
1371 2002-03-17  Bryce McKinlay  <bryce@waitaki.otago.ac.nz>
1372
1373         * Makefile.am: Make a convenience library.
1374         * Makefile.in: Rebuilt.
1375
1376 2002-03-15  Anthony Green  <green@redhat.com>
1377
1378         * misc.c (GC_init_inner): Initialize GC_write_cs before use.
1379         * configure.in: Disable use of getenv for win32 targets (some of
1380         which have broken implementations).
1381         * configure: Rebuilt.
1382
1383 2002-03-12  Adam Megacz  <adam@xwt.org>
1384
1385         * dyn_load.c: Renamed GC_win32s to GC_no_win32_dlls.
1386         * misc.c: Renamed GC_is_win32s() to GC_no_win32_dlls
1387         * os_dep.c: Renamed GC_win32s to GC_no_win32_dlls and
1388         statically initialized it to TRUE if compiling with GCC.
1389         * win32_threads.c (thread_start): We no longer use SEH if
1390         compiling with GCC.
1391         * mark.c (GC_mark_some): We no longer use SEH if
1392         compiling with GCC.
1393
1394 2002-03-09  Bryce McKinlay  <bryce@waitaki.otago.ac.nz>
1395
1396         * include/gc_priv.h: Define ALIGN_DOUBLE on 32 bit targets if GCJ
1397         support is enabled, for hash synchronization.
1398
1399 2002-02-24  Adam Megacz  <adam@xwt.org>
1400
1401         * Makefile.am: Added win32_threads.c to sources list.
1402         * win32_threads.c: Added two */'s which I had neglected.
1403
1404 2002-02-20  Bryce McKinlay  <bryce@waitaki.otago.ac.nz>
1405
1406         * Makefile.am: Re-add SUBDIRS parameter which was lost in merge.
1407         * Makefile.in: Rebuilt.
1408
1409 2002-02-13  Bryce McKinlay  <bryce@waitaki.otago.ac.nz>
1410
1411         * dbg_mlc.c (GC_debug_generic_malloc): Removed.
1412
1413         * sparc_mach_dep.S: Rename from sparc_mach_dep.s as it is a
1414         preprocessor file.
1415         * mips_sgi_mach_dep.S: Likewise.
1416         * Makefile.am: Update for above changes.
1417         * Makefile.in: Rebuilt.
1418
1419 2002-02-12  Richard Henderson  <rth@redhat.com>
1420
1421         * configure.in: Re-apply 2001-06-26 configure change.
1422         * configure: Rebuild.
1423
1424 2002-02-12  Bryce McKinlay  <bryce@waitaki.otago.ac.nz>
1425
1426         Imported GC 6.1 Alpha 3.
1427
1428         * sparc_mach_dep.S: Delete incorrectly named file.
1429
1430 2001-02-11  Adam Megacz <adam@xwt.org
1431
1432         * configure.in: support for win32, saner
1433         cross-compile options
1434
1435 2001-02-08  Anthony Green  <green@redhat.com>
1436
1437         * include/private/gcconfig.h: Add XSCALE NOSYS support for bare
1438           board embedded targets.
1439         * os_dep.c: Avoid signal handling code for NOSYS/ECOS targets.
1440           Use GC_get_stack_base for NOSYS/ECOS targets.  Clean up some
1441           redundant uses of ECOS.
1442         * misc.c: Use NOSYS where ECOS is being used.
1443           Don't define GC_write twice for ECOS systems.
1444           (GC_write): New function for NOSYS targets.
1445
1446 2002-02-06  Adam Megacz <adam@xwt.org>
1447
1448         * boehm-gc/include/gc.h: (GC_CreateThread) This function is
1449         now exposed on all Win32 platforms.
1450         * boehm-gc/win32_threads.c: (GC_CreateThread) This now
1451         compiles on Win32; it invokes CreateThread() if GC is built
1452         as a DLL; otherwise it registers the thread.
1453         * boehm-gc/misc.c (GC_init): Initialize GC_allocate_ml in case
1454         libgcjgc was not built as a DLL.
1455
1456 2002-02-01  Adam Megacz <adam@xwt.org>
1457
1458         * boehm-gc on win32 now automatically detects if it is being built
1459         as a DLL; see http://gcc.gnu.org/ml/java/2001-12/msg00240.html
1460
1461 2002-01-25  David Edelsohn  <edelsohn@gnu.org>
1462
1463         * include/gc.h (GC_INIT): Add DATASTART and DATAEND roots on AIX.
1464         * include/private/gcconfig.h (RS6000): Add 64-bit AIX support.
1465         Define USE_GENERIC_PUSH_REGS.  Use AIX _data and _end symbols for
1466         DATASTART and DATAEND roots.
1467         * rs6000_mach_dep.s: Add function descriptor and traceback table.
1468
1469 2001-12-16  Jeff Sturm  <jsturm@one-point.com>
1470
1471         * dyn_load.c: Define ElfW (if needed) for all targets,
1472         not just GNU/Linux.
1473         (GC_FirstDLOpenedLinkMap): Use it.
1474         (GC_register_dynamic_libraries_dl): Use it.
1475         * include/private/gcconfig.h: Define CPP_WORDSZ, ELF_CLASS
1476         for sparcv9.
1477
1478 2001-12-16  Craig Rodrigues  <rodrigc@gcc.gnu.org>
1479
1480         PR other/3725
1481         * configure.in: Add AC_SUBST(target_alias).
1482         * configure: Regenerated.
1483
1484 2001-11-26  Loren J. Rittle  <ljrittle@acm.org>
1485
1486         * linux_threads.c (WRAP_FUNC(pthread_join)): Remove special
1487         case for GC_FREEBSD_THREADS.
1488         * configure.in (*-*-freebsd*): Clarify warning.
1489         * configure: Rebuilt.
1490
1491 2001-10-23  Loren J. Rittle  <ljrittle@acm.org>
1492             Andreas Tobler <toa@pop.agri.ch>
1493
1494         * include/private/solaris_threads.h: Update to use GC_SOLARIS_THREADS.
1495
1496 2001-10-22  Bryce McKinlay  <bryce@waitaki.otago.ac.nz>
1497
1498         * linux_threads.c (GC_init_parallel): Do not declare as a static
1499         constructor.
1500         * include/gc.h (GC_init): Declare here. Add description.
1501         * include/private/gc_priv.h (GC_init): Remove declaration.
1502
1503 2001-10-16  Loren J. Rittle  <ljrittle@acm.org>
1504
1505         * include/gc_pthread_redirects.h: Generalize test to use GC_PTHREADS.
1506         * linux_threads.c (WRAP_FUNC(pthread_join)): Conditionalized on
1507         GC_FREEBSD_THREADS, handle strange interaction between system
1508         pthread implementation and boehm-gc signal-handler architecture.
1509         * tests/test.c (main): Conditionalized on GC_FREEBSD_THREADS,
1510         set stack.
1511         * include/private/gcconfig.h (configuration keyed off FREEBSD):
1512         Define SIG_SUSPEND, SIG_THR_RESTART.  Do not define
1513         MPROTECT_VDB when GC_FREEBSD_THREADS is defined.
1514
1515 2001-10-16  Loren J. Rittle  <ljrittle@acm.org>
1516
1517         * Makefile.am (test.o): Find tests/test.c in $(srcdir).
1518         * Makefile.in: Rebuilt.
1519
1520 2001-10-16  Bryce McKinlay  <bryce@waitaki.otago.ac.nz>
1521
1522         * Makefile.am, acinclude.m4, configure.in: Imported GC 6.1 Alpha 1 and
1523         merged local changes.
1524
1525 2001-09-26  Rainer Orth  <ro@TechFak.Uni-Bielefeld.DE>
1526
1527         * solaris_threads.c (MAX_ORIG_STACK_SIZE) [I386]: Provide special
1528         Solaris 2/Intel definition.
1529
1530         * configure.in (i?86-*-solaris2.[89]*): Define
1531         SOLARIS25_PROC_VDB_BUG_FIXED.
1532         * include/private/gcconfig.h [I386 && SUNOS5]: Use it.
1533         * configure: Regenerate.
1534
1535         * include/private/gcconfig.h [I386 && SUNOS5] (DATASTART): Use _etext.
1536         (DATAEND): Define using _end.
1537
1538 2001-09-11  Per Bothner  <per@bothner.com>
1539
1540         * include/Makefile.am:  New file.  It defines include_HEADERS.
1541         * Makefile.am (SUBDIRS):  New macro, set to include.
1542         * configure.in (AC_OUTPUT):  Add include/Makefile.
1543
1544 2001-08-20  Tom Tromey  <tromey@redhat.com>
1545
1546         * configure: Rebuilt.
1547         * configure.in: Always ask gcc for threads package.
1548
1549 2001-08-17  Tom Tromey  <tromey@redhat.com>
1550
1551         * Makefile.am, acinclude.m4, configure.in: Imported GC 6.0 and
1552         merged local changes.
1553
1554 2001-08-02  David Billinghurst <David.Billinghurst>
1555
1556         * configure: Rebuilt.
1557         * configure.in:  POSIX threads on cygwin does not link with
1558         -lpthreads.
1559
1560 2001-07-03  Tom Tromey  <tromey@redhat.com>
1561
1562         Fix for PR bootstrap/3281:
1563         * aclocal.m4, configure, Makefile.in: Rebuilt.
1564         * acinclude.m4: Set mkinstalldirs for in-tree build.
1565
1566 2001-06-26  Richard Henderson  <rth@redhat.com>
1567
1568         * alpha_mach_dep.s: Mark call-saved FP registers.
1569         * include/private/gcconfig.h (ALPHA): Remove USE_GENERIC_PUSH_REGS.
1570         * configure.in (alpha*): Re-enable alpha_mach_dep.s
1571         * configure: Rebuild.
1572
1573 2001-06-12  Tom Tromey  <tromey@redhat.com>
1574
1575         * aclocal.m4, configure: Rebuilt.
1576         * acinclude.m4: Find configure.host in srcdir.
1577
1578 2001-06-09  Alexandre Oliva  <aoliva@redhat.com>, Stephen L Moshier  <moshier@mediaone.net>
1579
1580         * configure.in (AC_EXEEXT): Work around in case it expands to
1581         nothing, as in autoconf 2.50.
1582         * acinclude.m4: Likewise.
1583         * aclocal.m4, configure: Rebuilt.
1584
1585 2001-06-07  Tom Tromey  <tromey@redhat.com>
1586
1587         For PR bootstrap/3075:
1588         * configure, aclocal.m4, Makefile.in: Rebuilt.
1589         * configure.in: Don't call AC_CONFIG_AUX_DIR or
1590         AC_CANONICAL_SYSTEM.
1591         * acinclude.m4 (BOEHM_CONFIGURE): Call AC_CONFIG_AUX_DIR and
1592         AC_CANONICAL_SYSTEM here.
1593         * Makefile.am (CONFIG_STATUS_DEPENDENCIES): Use srcdir, not
1594         boehm_gc_basedir.
1595
1596 2001-05-24  Bryce McKinlay  <bryce@waitaki.otago.ac.nz>
1597
1598         * Makefile.am: Override gctest_OBJECTS so tests/test.c can be built.
1599         (libgcjgc_la_SOURCES): Remove typo.
1600         * tests/test.c: Fix struct names and includes for GC_GCJ_SUPPORT case.
1601         * Makefile.in: Rebuilt.
1602
1603 2001-05-21  Bryce McKinlay  <bryce@waitaki.otago.ac.nz>
1604
1605         Imported version version 6.0alpha7.
1606
1607         * README, README.Mac, README.OS2, README.QUICK, README.alpha,
1608         README.amiga, README.debugging, README.dj, README.hp, README.linux,
1609         README.rs6000, README.sgi, README.solaris2, README.uts,
1610         README.win32, SCoptions.amiga, backptr.h, barrett_diagram,
1611         dbg_mlc.h, gc.h, gc.man, gc_alloc.h, gc_cpp.h, gc_hdrs.h, gc_mark.h,
1612         gc_priv.h, gc_private.h, gc_typed.h, gcconfig.h,
1613         hpux_irix_threads.c, makefile.depend, nursery.c,
1614         solaris_threads.h, test.c, test_cpp.cc, weakpointer.h, cord/README,
1615         cord/SCOPTIONS.amiga, cord/SMakefile.amiga, cord/cord.h,
1616         cord/ec.h, cord/gc.h, cord/private/cord_pos.h, include/backptr.h,
1617         include/gc_copy_descr.h, include/gc_nursery.h: Remove obsolete/moved
1618         files.
1619
1620 2001-05-19  Hans Boehm  <hans_boehm@hp.com>
1621
1622         * configure.host: Build with -fexceptions.
1623         * linux_threads.c: Remember which thread stopped world for
1624
1625 2001-05-04  Loren J. Rittle  <ljrittle@acm.org>
1626             with final tuning by Bryce McKinlay
1627
1628         * configure.in: Add support for --enable-threads=posix on FreeBSD.
1629         * configure: Rebuilt.
1630
1631 2001-05-01  Jeffrey Oldham  <oldham@codesourcery.com>
1632
1633         * gc_priv.h (UNLOCK): Change type of GC_noop1 argument.
1634         (GC_noop1): Change declaration to take one argument.
1635
1636 2001-04-26  Alexandre Oliva  <aoliva@redhat.com>
1637
1638         * configure.in: Obtain THREADS with `gcc -v'.
1639         * configure: Rebuilt.
1640
1641 2001-04-05  Hans Boehm  <hans_boehm@hp.com>
1642
1643         * misc.c: Back out buggy changes to stack clearing code.
1644         Reduce CLEAR_SIZE to 1/4 of original value to reduce time
1645         spent clearing memory.
1646
1647 2001-04-04  Hans Boehm  <hans_boehm@hp.com>
1648
1649         * finalize.c:
1650         - Accomodate finalization requests for static objects.
1651           (Will be required by hash synchronization.  May be needed
1652           in some configurations now.)
1653
1654         * gc_priv.h:
1655         - Define MIN_WORDS.  All allocation requests are rounded
1656           up to at least this size.  Removes a subtle assumption that
1657           Java objects have a 2 word header.
1658
1659         * gcconfig.h:
1660         - Adjust Linux/IA64 configuration for non-ancient kernels.
1661           (Necessary fix for IA64.)
1662
1663         * linux_threads.c:
1664         - Fix syntax error in currently unused code.  Will be needed
1665           for Linux/PA-RISC.
1666
1667         * malloc.c:
1668         - Handle MIN_WORDS.
1669
1670         * misc.c:
1671         - Handle MIN_WORDS.
1672         - Change stack cleaning code to typically clear about one tenth
1673           the memory it used to in the threads configuration.  Occasionally
1674           still clear more.  (This is really a fix for a long-standing
1675           and fairly significant performance bug with threads.)
1676
1677         * os_dep.c:
1678         - Fix the code for finding the beginning of the data segment under
1679           Linux.  I believe this is necessary for some IA64 Linux
1680           distributions.  It will also helo other platforms, though those
1681           may additionally require a gcconfig.h adjustment.  (This basically
1682           works around the absence of a data_start or __data_start
1683           definition in glibc.)
1684
1685         * test.c:
1686         - Handle rounding due to MIN_WORDS.
1687
1688 2001-03-22  Tom Tromey  <tromey@redhat.com>
1689
1690         * Makefile.am (gctest_LDFLAGS): Use -shared-libgcc.
1691
1692 2001-03-19  Tom Tromey  <tromey@redhat.com>
1693
1694         * Makefile.in: Rebuilt.
1695         * Makefile.am (gctest_LDFLAGS): new macro.
1696
1697 2001-03-16  Tom Tromey  <tromey@redhat.com>
1698
1699         * Makefile.in: Rebuilt.
1700         * Makefile.am (TESTS_ENVIRONMENT): New macro.
1701
1702 2001-01-23  Rod Stewart <stewart@lab43.org>
1703
1704         * gcconfig.h: Check for `__arm__', not `arm'.
1705
1706 2000-12-30  Bryce McKinlay  <bryce@albatross.co.nz>
1707
1708         * configure.in: Rename THREADLIB to THREADLIBS.
1709         * Makefile.am (LINK): Add $(THREADLIBS) to libtool command line. This
1710         ensures that we link the correct version of the linuxthreads semaphore
1711         functions.
1712         * Makefile.in: Rebuilt.
1713         * configure: Rebuilt.
1714
1715         * linux_thread.c (GC_thr_init, GC_suspend_handler): Add SIGABRT to the
1716         list of signals which are not blocked during suspend in the NO_SIGNALS
1717         case.
1718
1719 2000-12-23  Hans Boehm  <Hans_Boehm@hp.com>
1720
1721         * gcj_mlc.c (GC_gcj_malloc): Don't release allocation lock twice.
1722
1723 2000-12-15  Bryce McKinlay  <bryce@albatross.co.nz>
1724
1725         * Makefile.dist: Renamed from Makefile.orig.
1726
1727 2000-12-11  Alexandre Petit-Bianco  <apbianco@cygnus.com>
1728
1729         * Makefile.am (gctest_LDADD): Added EXTRA_TEST_LIBS.
1730         * configure.in (EXTRA_TEST_LIBS): Check for `dlopen' in -ldl and
1731         set accordingly.
1732         * Makefile.in: Rebuilt.
1733         * configure: Likewise.
1734
1735 2000-12-10  Geoffrey Keating  <geoffk@redhat.com>
1736
1737         * gcconfig.h: Add new case for powerpc EABI.
1738         [PPC]: Handle embedded OS for powerpc simulator.
1739
1740 2000-09-30  Bryce McKinlay  <bryce@albatross.co.nz>
1741
1742         * configure.in: Define GC_GCJ_SUPPORT. Define NO_DEBUGGING in
1743         cross-compile configuration only.
1744         * Makefile.am: Build gcj_mlc.c.
1745         * configure, Makefile.in: Rebuilt.
1746
1747 2000-09-10  Alexandre Oliva  <aoliva@redhat.com>
1748
1749         * acinclude.m4: Include libtool macros from the top level.
1750         * aclocal.m4, configure: Rebuilt.
1751
1752 2000-09-04  Anthony Green  <green@redhat.com>
1753
1754         Fix for PR libgcj/230:
1755         * mark.c (GC_mark_from_mark_stack): Remove call to
1756         GC_debug_object_start.
1757         * gc_priv.h (GC_debug_object_start): Remove prototype.
1758
1759 2000-08-16  Alexandre Oliva  <aoliva@redhat.com>
1760
1761         * gcconfig.h [OSF1] (_end): Declare as `int'.
1762
1763 2000-08-02  Tom Tromey  <tromey@cygnus.com>
1764
1765         * gc_priv.h (GC_generic_malloc_inner): Prototype.
1766         (GC_generic_malloc): Likewise.
1767         (GC_add_to_black_list_normal): Likewise.
1768         (GC_find_header): Likewise.
1769         (GC_ADD_TO_BLACK_LIST_NORMAL): Cast bits argument to word.
1770         * gc_mark.h (GC_find_start): Prototype.
1771         (GC_signal_mark_stack_overflow): Likewise.
1772
1773 2000-07-24  Alexandre Oliva  <aoliva@redhat.com>
1774
1775         * configure.in (THREADS): Don't --enable-threads on IRIX <= 5.*.
1776         * configure: Rebuilt.
1777
1778         * dyn_load.c (GC_scratch_last_end_ptr): Don't declare a #define.
1779
1780 2000-06-20  Bryce McKinlay  <bryce@albatross.co.nz>
1781
1782         Imported version 5.1.
1783         * acinclude.m4: Push version to 5.1.
1784
1785 2000-06-19  Andrew Haley  <aph@cygnus.com>
1786
1787         * os_dep.c (read): Pass two dummy args to syscall().
1788
1789 2000-05-11  Bryce McKinlay  <bryce@albatross.co.nz>
1790
1791         Imported 5.0 release version.
1792         * acinclude.m4: Increment version to 5.0.
1793
1794 2000-05-07  Bryce McKinlay  <bryce@albatross.co.nz>
1795
1796         Imported version 5.0alpha7.
1797         * acinclude.m4: Update version to 5.0a7.
1798
1799 2000-04-26  Jakub Jelinek  <jakub@redhat.com>
1800
1801         * gcconfig.h (SPARC): Define ALIGNMENT to 8 for 64bit SPARC.
1802         (SPARC/LINUX): Use GC_SysVGetDataStart instead of LINUX_DATA_START
1803         - sparc glibc does not provide it.
1804         (SAVE_CALL_CHAIN, ASM_CLEAR_CODE): Define on sparc*-linux*.
1805         Make STACKBOTTOM depend on the wordsize.
1806         * os_dep.c (GC_SysVGetDataStart): Compile in on sparc*-linux*.
1807         (struct frame): Declare on sparc*-linux*.
1808         (GC_save_callers): Bias the frame pointers if needed (sparc64).
1809         * mach_dep.c (GC_save_regs_in_stack): Optimize on sparc32.
1810         Implement on sparc64.
1811         (GC_clear_stack_inner): Implement on sparc64.
1812         * gc_priv.h (GC_test_and_set): Implement for sparc.
1813         * linux_threads.c (GC_suspend_handler, GC_push_all_stacks): Use
1814         GC_save_regs_in_stack on sparc.
1815
1816 2000-04-23  Tom Tromey  <tromey@cygnus.com>
1817
1818         * gcconfig.h (DYNAMIC_LOADING): Define for PPC Linux.
1819
1820 2000-04-19  Bryce McKinlay  <bryce@albatross.co.nz>
1821
1822         Imported version version 5.0alpha6.
1823         * acinclude.m4: Bump version to 5.0a6.
1824         * configure.in: Don't use alpha_mach_dep.s.
1825         * include/private/config.h, irix_threads.c gc_watcom.asm: Delete
1826         obsolete files.
1827         * Makefile.am, Makefile.in: irix_threads.c is now
1828         hpux_irix_threads.c.
1829         * Makefile.orig: Updated from gc distribution Makefile.
1830
1831 2000-03-26  Anthony Green  <green@redhat.com>
1832
1833         * misc.c (GC_enable): Always define GC_enable and GC_disable.
1834
1835 2000-02-14  Tom Tromey  <tromey@cygnus.com>
1836
1837         * gc.h (dlopen): Define as GC_dlopen on Linux.
1838         (GC_dlopen): Declare on Linux.
1839         * dyn_load.c (GC_dlopen): Define for Linux.
1840
1841 Fri Jan 28 17:13:20 2000  Anthony Green  <green@cygnus.com>
1842
1843         * gcconfig.h (DATASTART): Add missing extern declaration
1844         for data_start on powerpc.
1845
1846 1999-12-22  Bryce McKinlay  <bryce@albatross.co.nz>
1847
1848         * linux_threads.c: Don't block SIGINT, SIGQUIT, SIGTERM in the
1849         NO_SIGNALS case.
1850
1851 1999-12-19  Jeff Sturm  <jsturm@sigma6.com>
1852
1853         * gcconfig.h: Define DATASTART for Alpha Linux.
1854
1855 1999-12-19  Anthony Green  <green@cygnus.com>
1856
1857         * gcconfig.h: Use libgcj hack for Alpha Linux.
1858         Undefine MPROTEXT_VDB (from Jeff Sturm).
1859         * os_dep.c: Remove Alpha Linux hacks.
1860         * misc.c: Ditto.
1861
1862 1999-12-13  Tom Tromey  <tromey@cygnus.com>
1863
1864         * aclocal.m4, configure: Rebuilt.
1865         * acinclude.m4: Changed version to 5.0a4.
1866         * Makefile.in: Rebuilt.
1867         * Makefile.am (libgcjgc_la_LDFLAGS): Changed version to 1:1:0.
1868
1869 1999-12-12  Anthony Green  <green@cygnus.com>
1870
1871         * gcconfig.h (DATASTART): Define as (&data_start) for PowerPC
1872         Linux.
1873         (DYNAMIC_LOADING): Define for PowerPC Linux.
1874         * os_dep.c: Remove some special cases for PowerPC Linux.
1875         * misc.c (GC_init_inner): Don't call GC_init_linux_data_start
1876         for PowerPC Linux.
1877
1878 1999-11-04  Tom Tromey  <tromey@cygnus.com>
1879
1880         * Makefile.in: Rebuilt.
1881         * Makefile.am (libgcjgc_la_SOURCES): Removed quick_threads.c.
1882
1883         * misc.c (GC_init_inner): Don't call GC_init_linuxppc().
1884         (GC_thr_init): Don't declare.
1885
1886         * configure: Rebuilt.
1887         * configure.in: Removed qt threads case.
1888         * dyn_load.c: Don't mention QUICK_THREADS.
1889         * os_dep.c: Don't mention QUICK_THREADS.
1890         * misc.c: Don't mention QUICK_THREADS.
1891         * gcconfig.h: Don't mention QUICK_THREADS.
1892         * gc_priv.h: Removed QUICK_THREADS code.
1893         * quick_threads.c: Removed.
1894
1895 1999-11-03  Tom Tromey  <tromey@cygnus.com>
1896
1897         * gcconfig.h: Merged in local changes from old config.h.
1898
1899 1999-11-02  Bryce McKinlay  <bryce@albatross.co.nz>
1900
1901         * gcconfig.h: Don't define MPROTECT_VDB on Linux/i386.
1902
1903 1999-11-02  Tom Tromey  <tromey@cygnus.com>
1904
1905         * quick_threads.c: Include gcconfig.h, not boehm-config.h.
1906
1907         * configure: Rebuilt.
1908         * configure.in: Don't create boehm-config.h.
1909         * Makefile.in: Rebuilt.
1910         * Makefile.am (libgcjgc_la_SOURCES): Reference gcconfig.h, not
1911         config.h.
1912         ($(all_objs)): Depend on gcconfig.h.
1913         * gc_priv.h: Reference GCCONFIG_H, not CONFIG_H.
1914         * gcconfig.h: Define GCCONFIG_H, not CONFIG_H.
1915         * config.h: Removed.
1916
1917 1999-11-01  Tom Tromey  <tromey@cygnus.com>
1918
1919         * Makefile.in: Rebuilt.
1920         * Makefile.am (gctest_LDADD): Added THREADLIB.
1921         (TESTS): New macro.
1922         * configure: Rebuilt.
1923         * configure.in (INCLUDES): New subst.
1924
1925 1999-09-29  Steve Chamberlain  <sac@pobox.com>
1926
1927         * config.h: Added picoJava target.
1928         * mach_dep.h (GC_push_regs):  New code for picoJava.
1929
1930 1999-09-28  Tom Tromey  <tromey@cygnus.com>
1931
1932         * aclocal.m4, configure: Rebuilt.
1933         * acinclude.m4 (LIB_AC_PROG_CC, LIB_AC_PROG_CXX): Provide
1934         appropriate AC_PROG_ symbol.
1935
1936 Tue Aug 10 00:08:29 1999  Rainer Orth  <ro@TechFak.Uni-Bielefeld.DE>
1937
1938         * gc_priv.h:  IRIX thread changes from
1939         include/private/gc_priv.h.
1940
1941 Mon Aug  9 18:33:38 1999  Rainer Orth  <ro@TechFak.Uni-Bielefeld.DE>
1942
1943         * Makefile.in: Rebuilt.
1944         * Makefile.am (toolexeclibdir): Add $(MULTISUBDIR) even for native
1945         builds.
1946
1947         * configure: Rebuilt.
1948         * configure.in: Properly align --help output, fix capitalization
1949         and punctuation.
1950         * acinclude.m4: Likewise.
1951
1952 1999-08-04  Tom Tromey  <tromey@cygnus.com>
1953
1954         * configure.in: Added missing `;;'.  From Anthony Green.
1955
1956 Mon Aug  2 23:09:41 1999  Rainer Orth  <ro@TechFak.Uni-Bielefeld.DE>
1957
1958         * configure.in (machdep): Use mips_ultrix_mach_dep.s on Ultrix V4.
1959
1960 1999-08-03  Tom Tromey  <tromey@cygnus.com>
1961
1962         * gc_priv.h (GC_test_and_set): Implementation for Linux PPC from
1963         Franz Sirl <Franz.Sirl-kernel@lauterbach.com>.
1964
1965 1999-08-02  Tom Tromey  <tromey@cygnus.com>
1966
1967         * aclocal.m4, configure: Rebuilt for new libtool.
1968
1969 1999-07-31  Alexandre Oliva  <oliva@dcc.unicamp.br>
1970
1971         * mips_sgi_mach_dep.s: Enable PIC option.
1972
1973 1999-07-19  Tom Tromey  <tromey@cygnus.com>
1974
1975         * config.h (MPROTECT_VDB): Don't define on Linux.
1976
1977 1999-07-19  Alexandre Oliva  <oliva@dcc.unicamp.br>
1978
1979         * Makefile.am (.s.lo): Avoid `#line' directives.
1980         * Makefile.in: Rebuilt.
1981
1982 1999-07-19  Alexandre Oliva  <oliva@dcc.unicamp.br>
1983
1984         * Makefile.am (*-recursive, *-am, *-multi): Automake does not
1985         generate *-recursive for this Makefile, use *-am instead.
1986         * Makefile.in: Rebuilt.
1987
1988 1999-06-30  Alexandre Oliva  <oliva@dcc.unicamp.br>
1989
1990         * Makefile.am (.s.lo): Renamed from `.s.o'.
1991         * Makefile.in: Rebuilt.
1992
1993 1999-06-21  Tom Tromey  <tromey@cygnus.com>
1994
1995         Alpha patch from Jeff Sturm:
1996         * os_dep.c (GC_init_linuxalpha): New function.
1997         * misc.c: Initialize for alpha linux.
1998         * gc_priv.h (GC_test_and_set): Define for alpha.
1999         * config.h: Don't assume __data_start on alpha.
2000
2001         * Makefile.in: Rebuilt.
2002         * Makefile.am (libgcjgc_la_LDFLAGS): Use -version-info, not
2003         -release.
2004
2005         * Makefile.in: Rebuilt.
2006         * Makefile.am (toolexeclibdir): Define as libdir when
2007         appropriate.
2008         * configure: Rebuilt.
2009         * configure.in (USE_LIBDIR): New conditional.
2010
2011         * configure: Rebuilt.
2012         * configure.in: Recognize all forms of alpha.
2013
2014 1999-06-17  Anthony Green  <green@cygnus.com>
2015
2016         * mach_dep.c (GC_push_regs): FreeBSD-elf support (from
2017         Carlo Dapor <carlo@vis.ethz.ch>).
2018
2019 1999-05-05  Gilles Zunino  <Gilles.Zunino@hei.fr>
2020
2021         * configure.in: Switch from irix threads to posix threads
2022         Defined IRIX_THREADS. Put mips_sgi_mach_dep.lo into machdep
2023         for mips architecture.
2024         * configure: Regenerate.
2025
2026 1999-04-30  Tom Tromey  <tromey@cygnus.com>
2027
2028         * linux_threads.c: Don't reference __pthread_initial_thread_bos.
2029
2030 1999-04-26  Tom Tromey  <tromey@cygnus.com>
2031
2032         * dyn_load.c (GC_FirstDLOpenedLinkMap): Declare _DYNAMIC as
2033         `weak'.
2034
2035 1999-04-23  Tom Tromey  <tromey@cygnus.com>
2036
2037         * Makefile.in, configure: Rebuilt.
2038         * Makefile.am (EXTRA_LIBRARIES): Mention libgcjgc.la.
2039         (libgcjgc_la_SOURCES): Renamed.
2040         (libgcjgc_la_LIBADD): Likewise.
2041         (libgcjgc_la_DEPENDENCIES): Likewise.
2042         (EXTRA_libgcjgc_la_SOURCES): Likewise.
2043         (gctest_LDADD): Use libgcjgc.la.
2044         (all_objs): Mention libgcj_la_OBJECTS.
2045         (EXTRA_LTLIBRARIES): Renamed.
2046         (toollib_LTLIBRARIES): Likewise.
2047         (libgcjgc_la_LDFLAGS): New macro
2048         (toolexecdir): Renamed.
2049         (toolexeclibdir): Likewise.
2050         (toolexeclib_LTLIBRARIES): Likewise.
2051         (LTCOMPILE): Renamed; added libtool invocation.
2052         (LINK): Added libtool invocation.
2053         (.s.o): use LTCOMPILE.
2054         * configure.in: Call AM_PROG_LIBTOOL.
2055         (target_all): Set to libgcjgc.la.
2056         Mention `.lo' forms of object files.
2057
2058 1999-04-21  Tom Tromey  <tromey@cygnus.com>
2059
2060         * misc.c (GC_init_inner): If QUICK_THREADS defined, compute
2061         GC_stackbottom.
2062
2063         * os_dep.c: glibc 2.1 requires asm/sigcontext.h, not
2064         sigcontext.h.  From Matthias Klose <doko@itso.de>.
2065
2066 1999-04-16  Tom Tromey  <tromey@cygnus.com>
2067
2068         * config.h (__start): Declare as `int' in alpha/OSF1 case.  From
2069         David Pettersson <dapet@mai.liu.se>
2070
2071 1999-04-14  Tom Tromey  <tromey@cygnus.com>
2072
2073         * configure: Rebuilt.
2074         * configure.in: Don't use sparc_mach_dep.o for Solaris.  Reverts
2075         incorrect patch of 199-04-09.
2076
2077         * configure: Rebuilt.
2078         * configure.in: Added support for alpha.
2079         From David Pettersson <dapet@mai.liu.se>.
2080
2081 1999-04-13  Tom Tromey  <tromey@cygnus.com>
2082
2083         * Makefile.in: Rebuilt.
2084         * Makefile.am (libgcjgc_a_SOURCES): Added solaris-threads.c and
2085         solaris-threads.h.
2086
2087 1999-04-09  Tom Tromey  <tromey@cygnus.com>
2088
2089         * configure: Rebuilt.
2090         * configure.in: Use sparc_mach_dep.s when building on Solaris.
2091
2092 1999-02-23  Tom Tromey  <tromey@cygnus.com>
2093
2094         * configure: Rebuilt.
2095         * configure.in: For Linux, define _REENTRANT.  For Solaris, define
2096         SOLARIS_THREADS and _SOLARIS_PTHREADS.
2097
2098 1999-02-18  Tom Tromey  <tromey@cygnus.com>
2099
2100         * quick_threads.c (GC_push_all_stacks): Change order of arguments
2101         to GC_push_all_stacks depending on STACK_GROWS_DOWN define.  Check
2102         for case where LO is NULL.
2103
2104 1999-02-10  Tom Tromey  <tromey@cygnus.com>
2105
2106         * aclocal.m4, configure, Makefile.in: Rebuilt.
2107         * acinclude.m4: Updated to be used with automake 1.4.
2108         * configure.in: Renamed libgc to libgcjgc.  Updated to be used
2109         with automake 1.4.
2110         * Makefile.am (EXTRA_LIBRARIES): Renamed libgc to libgcjgc.
2111         (libgcjgc_a_SOURCES): Likewise.
2112         (libgcjgc_a_LIBADD): Likewise.
2113         (libgcjgc_a_DEPENDENCIES): Likewise.
2114         (EXTRA_libgcjgc_a_SOURCES): Likewise.
2115         (gctest_LDADD): Likewise.
2116         (all_objs): Likewise.
2117
2118 1999-01-08  Tom Tromey  <tromey@cygnus.com>
2119
2120         * configure: Rebuilt.
2121         * configure.in: Define LINUX_THREADS if using POSIX threads on
2122         Linux.
2123
2124         * gc_priv.h (GC_test_and_set): Put return type into definition.
2125
2126 1998-11-24  Andrew Haley  <aph@viagra.cygnus.co.uk>
2127
2128         * Makefile.am: add support for eCos.  In particular, add C++
2129         support for compiling the file ecos.cc.
2130         * ecos.cc: new file.
2131         * acinclude.m4: add C++ support.
2132         * aclocal.m4: likewise
2133         * config.h: add eCos support.
2134         * configure: likewise
2135         * configure.in: likewise
2136         * misc.c (GC_write): add eCos support.
2137         * os_dep.c (tiny_sbrk): add eCos support.
2138
2139 Thu Dec 10 18:24:34 1998  Warren Levy  <warrenl@cygnus.com>
2140
2141         * misc.c (GC_init_inner): Moved STACKBASE code to os_dep.c.
2142         * os_dep.c (GC_get_stack_base): Moved STACKBASE code from misc.c.
2143
2144 1998-11-23  Tom Tromey  <tromey@cygnus.com>
2145
2146         * configure.host (boehm_gc_cflags): Don't add `-O2'.
2147
2148 1998-11-20  Andrew Haley  <aph@viagra.cygnus.co.uk>
2149
2150         * Makefile.am, Makefile.in, configure.host: tx39 build option
2151         "-G 0" added.
2152
2153 1998-11-17  Tom Tromey  <tromey@cygnus.com>
2154
2155         * configure: Rebuilt.
2156         * configure.in: Switch on host, not target.
2157
2158 1998-11-16  Tom Tromey  <tromey@cygnus.com>
2159
2160         * gc_priv.h (GC_debug_object_start): Declare.
2161         * mark.c (GC_mark_from_mark_stack): Call GC_debug_object_start.
2162         * gc.h (GC_debug_register_finalizer_no_order,
2163         GC_register_finalizer_no_order): Declare.
2164         (GC_REGISTER_FINALIZER_NO_ORDER): New macro.
2165         * dbg_mlc.c (GC_debug_register_finalizer_no_order): New function.
2166         (GC_debug_generic_malloc): Likewise.
2167         (GC_debug_object_start): new function.
2168
2169 1998-11-11  Tom Tromey  <tromey@cygnus.com>
2170
2171         * configure: Rebuilt.
2172         * configure.in: Recognize --enable-java-gc, not --enable-gc.
2173
2174 Tue Nov  3 18:01:12 1998  Tom Tromey  <tromey@sanguine.cygnus.com>
2175
2176         * dyn_load.c: Handle QUICK_THREADS case.
2177
2178 1998-10-21  Tom Tromey  <tromey@cygnus.com>
2179
2180         * configure: Rebuilt.
2181         * configure.in: Put cpp defines here, not in config.h.  Recognize
2182         --enable-threads.  Set INCLUDES.  Create boehm-cflags file.  Don't
2183         define PACKAGE or VERSION.
2184         * config.h (SILENT, NO_SIGNALS, NO_DEBUGGING, JAVA_FINALIZATION):
2185         Don't define.
2186
2187         * os_dep.c (GC_default_push_other_roots): Define when
2188         QUICK_THREADS defined.
2189         * misc.c: Added QUICK_THREADS case.
2190         * gc_priv.h: Added QUICK_THREADS case to define LOCK and UNLOCK.
2191         * config.h (THREADS): Define if QUICK_THREADS defined.
2192         * Makefile.in: Rebuilt.
2193         * Makefile.am (libgc_a_SOURCES): Added linux_threads.c,
2194         quick_threads.c.
2195         * quick_threads.c: New file.
2196
2197 1998-10-20  Tom Tromey  <tromey@cygnus.com>
2198
2199         * aclocal.m4, configure: Rebuilt.
2200         * acinclude.m4: Don't subst machine_dir or sys_dir.
2201         * configure.host: Removed unused code.
2202
2203 Sun Oct 11 08:18:02 1998  Anthony Green  <green@cygnus.com>
2204
2205         * configure: Rebuilt.
2206         * configure.in: Fix typo in previous patch.
2207
2208 Sun Oct 11 08:06:11 1998  Anthony Green  <green@cygnus.com>
2209
2210         * Makefile.in, aclocal.m4, configure: Rebuilt.
2211         * Makefile.am, acinclude.m4, configure.in: Add multilib support.
2212         * configure.host: Created.
2213
2214 Tue Sep  1 10:58:15 1998  Tom Tromey  <tromey@cygnus.com>
2215
2216         * Makefile.in: Rebuilt.
2217         * Makefile.am (lib_LIBRARIES): Use target_all.
2218         (EXTRA_LIBRARIES): New macro.
2219         * configure: Rebuilt.
2220         * configure.in: Recognize --enable-gc.
2221
2222 Thu Aug 13 10:52:45 1998  Tom Tromey  <tromey@cygnus.com>
2223
2224         * Makefile.in: Rebuilt.
2225         * Makefile.am (COMPILE): Define.
2226         (LINK): Likewise.
2227         (.s.o): Use MY_CFLAGS.
2228         * configure: Rebuilt.
2229         * configure.in (MY_CFLAGS): Define and subst.
2230
2231 Wed Aug 12 11:41:43 1998  Tom Tromey  <tromey@cygnus.com>
2232
2233         * configure: Rebuilt.
2234         * configure.in: Added --with-cross-host argument.  Use
2235         $with_cross_host to determine when cross-compiling.
2236
2237         * config.h (SMALL_CONFIG): Don't define.
2238         * configure: Rebuilt.
2239         * configure.in: Define SMALL_CONFIG when cross-compiling.
2240
2241 Tue Aug 11 11:41:25 1998  Tom Tromey  <tromey@cygnus.com>
2242
2243         * solaris_pthreads.c, misc.c, gc_priv.h, config.h, alloc.c,
2244         allchblk.c: Merged with 4.13a2 while preserving local changes.
2245
2246         * Makefile.orig: Updated from Makefile in 4.13a2.
2247
2248         * configure: Rebuilt.
2249         * configure.in: Updated version number to 4.13a2.  On Solaris,
2250         don't build with -O when using gcc.
2251
2252         Merged in version 4.13alpha2:
2253         * config.h (USE_MMAP): Re-enable on Solaris.
2254         * solaris_pthreads.c: Removed RCS Id line.
2255         * alpha_mach_dep.s: Removed RCS Id line.
2256
2257 Wed Jul 22 15:38:12 1998  Tom Tromey  <tromey@cygnus.com>
2258
2259         * config.h (USE_MMAP): Don't define for Solaris.
2260
2261 Wed Jun 10 12:51:41 1998  Tom Tromey  <tromey@cygnus.com>
2262
2263         * Makefile.in: Rebuilt.
2264         * Makefile.am (libgc_a_SOURCES): Removed setjmp_t.c.
2265
2266         * Makefile.in: Rebuilt.
2267         * Makefile.am (libgc_a_SOURCES): Removed add_gc_prefix.c.
2268
2269 Thu May 14 15:32:58 1998  Tom Tromey  <tromey@cygnus.com>
2270
2271         * Makefile.in: Rebuilt.
2272         * Makefile.am ($(all_objs)): Depend on config.h.
2273
2274         * config.h: [MIPS] If DATASTART_IS_ETEXT defined then define
2275         DATASTART as &_etext.
2276         * misc.c (GC_init_inner): If STACKBASE defined, then use it.
2277         * configure: Rebuilt.
2278         * configure.in: Define STACKBASE and DATASTART_IS_ETEXT for the
2279         tx39.
2280
2281 Tue May 12 13:15:45 1998  Tom Tromey  <tromey@cygnus.com>
2282
2283         * alloc.c: Don't call GET_TIME if NO_CLOCK defined.
2284         (GC_maybe_gc): Likewise.
2285         * os_dep.c: If NO_SIGSET defined, then have empty
2286         GC_disable_signals and GC_enable_signals.
2287         * configure: Rebuilt.
2288         * configure.in: Added --with-target-subdir option.  If
2289         cross-compiling, define NO_SIGSET and NO_CLOCK.
2290
2291 Wed May  6 16:40:28 1998  Tom Tromey  <tromey@cygnus.com>
2292
2293         * Makefile.in: Rebuilt.
2294         * Makefile.am (.s.o): Directly use CC -x assembler-with-cpp.
2295         (AS): Removed.
2296         * aclocal.m4, configure: Rebuilt.
2297         * acinclude.m4: New file.
2298         * configure.in: Don't run AM_EXEEXT.  Use LIB_AC_PROG_CC.
2299
2300 Thu Apr 30 14:51:12 1998  Tom Tromey  <tromey@cygnus.com>
2301
2302         * configure: Rebuilt.
2303         * configure.in: Link boehm-config.h to config.h.
2304         * Makefile.in: Rebuilt.
2305         * Makefile.am (INCLUDES): Removed.
2306         * config.h (SILENT, SMALL_CONFIG, NO_SIGNALS, NO_DEBUGGING,
2307         JAVA_FINALIZATION): Define
2308
2309 Wed Apr 29 11:03:14 1998  Tom Tromey  <tromey@cygnus.com>
2310
2311         * Many files: Use GC_bool, not bool.
2312         * gc_priv.h: Define GC_bool, not bool.
2313
2314         * misc.c (GC_dont_gc): Define as int.
2315         (GC_quiet): Likewise.
2316         * gc_priv.h (GC_never_stop_func): Declare as returning bool.
2317         * alloc.c (GC_dont_expand): Define as int.
2318         * gc_priv.h: For gcc, define bool as char.
2319
2320 Tue Apr 28 22:44:16 1998  Tom Tromey  <tromey@cygnus.com>
2321
2322         * Makefile.in: Rebuilt.
2323         * Makefile.am (check_PROGRAMS): New macro.
2324         (gctest_SOURCES): Likewise.
2325         (gctest_LDADD): Likewise.
2326
2327 Mon Apr 27 23:53:24 1998  Tom Tromey  <tromey@cygnus.com>
2328
2329         * Makefile.in: Rebuilt.
2330         * Makefile.am (libgc_a_SOURCES): Added dyn_load.c.
2331         * configure: Rebuilt.
2332         * configure.in: Define SUNOS53_SHARED_LIB on Solaris 2.3.
2333
2334 Wed Apr 15 11:40:56 1998  Tom Tromey  <tromey@sanguine.cygnus.com>
2335
2336         * Makefile.am, Makefile.in, configure.in, configure, aclocal.m4:
2337         New files.
2338         * Makefile.orig: Renamed from Makefile.