* pa.h (ASM_COMMENT_START): Define.
[official-gcc.git] / libstdc++-v3 / ChangeLog
blobdd2dc9b2cca8bf0b76789dba87ac6b3c1c749849
1 2003-10-29  Paolo Carlini  <pcarlini@suse.de>
3         * include/bits/locale_facets.tcc (time_get::do_get_year):
4         Absolutely avoid dereferencing end iterators.
5         (time_put::put): Minor clean up.
7         * include/bits/locale_facets.tcc: Cosmetic reformattings.
9 2003-10-29  Paolo Carlini  <pcarlini@suse.de>
11         * include/bits/locale_facets.tcc (num_get::_M_extract_float):
12         Revert the last commit, is not correct, sorry.
13         
14 2003-10-29  Paolo Carlini  <pcarlini@suse.de>
16         * config/locale/generic/c_locale.cc: Add back <cmath> and
17         <cstdlib>.
19         * include/bits/locale_facets.tcc (num_get::_M_extract_float):
20         Clean up.
22 2003-10-29  Paolo Carlini  <pcarlini@suse.de>
24         * include/bits/locale_facets.tcc (time_put::put): Absolutely
25         avoid dereferencing end iterators; clean up.
27         * include/bits/locale_facets.tcc (num_get::_M_extract_float,
28         num_get::_M_extract_int): Minor tweak.
30 2003-10-29  Paolo Carlini  <pcarlini@suse.de>
32         * include/bits/locale_facets.tcc: Remove some unnecessary
33         includes.
34         * config/locale/generic/c_locale.cc: Include <cerrno> here.
35         * config/locale/gnu/c_locale.cc: Likewise.
37 2003-10-28  Paolo Carlini  <pcarlini@suse.de>
39         * include/bits/locale_facets.tcc
40         (money_get<>::do_get(..., string_type&)): Absolutely avoid
41         dereferencing end iterators; general clean up.
43 2003-10-28  Paolo Carlini  <pcarlini@suse.de>
45         * include/bits/locale_facets.tcc (time_get::_M_extract_num):
46         Absolutely avoid dereferencing end iterators.
47         (time_get::_M_extract_name): Likewise.
49         * include/bits/locale_facets.tcc
50         (time_get::_M_extract_via_format, case 'e'): Don't try to
51         be smart wrt returning the right __beg in case of parse
52         error, time_get::_M_extract_num must be fixed instead.
54 2003-10-27  Paolo Carlini  <pcarlini@suse.de>
56         PR libstdc++/12778
57         * acinclude.m4 (GLIBCXX_CHECK_LFS): Use the C++ compiler.
58         * aclocal.m4: Regenerate.
59         * configure: Regenerate.
61 2003-10-27  Benjamin Kosnik  <bkoz@redhat.com>
62         
63         * docs/html/17_intro/TODO: Add links.
64         * testsuite/27_io/basic_istream/extractors_character/char/9555-ic.cc:
65         Uncomment.
66         
67 2003-10-27  Paolo Carlini  <pcarlini@suse.de>
69         PR libstdc++/12750
70         * include/bits/locale_facets.tcc
71         (time_get::_M_extract_via_format): Deal with code 'e'.
72         * testsuite/22_locale/time_get/get_date/char/12750.cc: New.
73         * testsuite/22_locale/time_get/get_date/wchar_t/12750.cc: Ditto.
75         * include/bits/locale_facets.tcc
76         (time_get::_M_extract_via_format): Tweak to absolutely avoid
77         dereferencing end iterators.
79         * include/bits/locale_facets.h (__verify_grouping):
80         Const-ify second parameter.
81         * include/bits/locale_facets.tcc (__verify_grouping): Ditto.
82         * src/locale-inst.cc (__verify_grouping): Ditto.
84 2003-10-27  Paolo Carlini  <pcarlini@suse.de>
86         * include/bits/locale_facets.tcc (num_get::_M_extract_float):
87         Various things: 1- Avoid absolutely end iterator dereferences;
88         2- Improve performance-wise the code skipping leading zeros;
89         3- Fix two bugs wrt early bail out in case of parsing errors
90         (see testcases); 4- General clean up.
91         (num_get::_M_extract_int): Likewise, except 3-. Additionally,
92         use __builtin_expect to favor base 10 inputs.
93         * testsuite/22_locale/num_get/get/char/7.cc: New.
94         * testsuite/22_locale/num_get/get/wchar_t/7.cc: Ditto.
96 2003-10-26  Paolo Carlini  <pcarlini@suse.de>
98         * testsuite/22_locale/money_put/put/char/1.cc: Clean up.
99         * testsuite/22_locale/money_put/put/wchar_t/1.cc: Ditto.
101 2003-10-25  Paolo Carlini  <pcarlini@suse.de>
103         * include/bits/locale_facets.tcc (num_get::_M_extract_int):
104         __pos in only incremented, never used its value, remove it.
106 2003-10-24  Robert Millan  <robertmh@gnu.org>
108         * acinclude.m4 (GLIBCXX_ENABLE_CLOCALE): Add kfreebsd*-gnu
109         and knetbsd*-gnu.
110         * aclocal.m4:  Regenerated.
111         * configure:  Regenerated.
113 2003-10-24  Paolo Carlini  <pcarlini@suse.de>
115         * include/bits/locale_facets.tcc (money_get::do_get(...,
116         long double&): Properly size the temporary buffer.
117         * testsuite/22_locale/money_get/get/char/11.cc: New.
118         * testsuite/22_locale/money_get/get/wchar_t/11.cc: Ditto.
120         * include/bits/locale_facets.tcc (num_put::_M_group_int,
121         num_put::_M_group_float, money_put::do_put(..., const
122         string_type&), collate::do_compare, collate::do_transform):
123         Prefer basic_string::data() to c_str() when the '\0'
124         terminator is not really needed.
126 2003-10-24  Paolo Carlini  <pcarlini@suse.de>
128         * include/bits/locale_facets.tcc (__verify_grouping):
129         Prefer '=' to an unnecessary '&='.
131 2003-10-24  Paolo Carlini  <pcarlini@suse.de>
133         * include/bits/basic_ios.tcc (copyfmt(const basic_ios&)):
134         Tweak my fix for libstdc++/12657.
136 2003-10-24  Paolo Carlini  <pcarlini@suse.de>
138         * include/bits/locale_facets.tcc (money_get::do_get(...,
139         string_type&): Minor tweak to the previous commit.
141 2003-10-24  Paolo Carlini  <pcarlini@suse.de>
143         * include/bits/locale_facets.tcc (money_get::do_get(...,
144         string_type&): Disregard the previous commit: doesn't hurt but
145         doesn't accomplish anything useful either. This is the right
146         one, speeding up greatly the function in case of early fail.
148 2003-10-24  Paolo Carlini  <pcarlini@suse.de>
150         * include/bits/locale_facets.tcc (money_get::do_get(...,
151         string_type&): Move an if block, thus minimizing the amount
152         of code processed anyway when __tmp_units.size() == 0.
154 2003-10-24  Paolo Carlini  <pcarlini@suse.de>
156         * include/bits/locale_facets.tcc
157         (time_get<>::_M_extract_via_format): Deal with case 'C' too,
158         equivalent to 'y'.
160 2003-10-23  Benjamin Kosnik  <bkoz@redhat.com>
162         * docs/html/documentation.html: Add a pointer to the doxygen style
163         guide.
164         * docs/html/17_intro/TODO: Update.
165         * docs/html/test.html: Add instructions for running a subset of
166         tests, update.
168 2003-10-23  Paolo Carlini  <pcarlini@suse.de>
170         * include/bits/locale_facets.tcc (money_get<>::do_get(...,
171         string_type&)): Use find_first_not_of to strip leading
172         zeros; if __tmp_units == "0" never prefix it with '-';
173         always fail if __tmp_units is empty.
174         * testsuite/22_locale/money_get/get/char/10.cc: New.
175         * testsuite/22_locale/money_get/get/wchar_t/10.cc: Ditto.
177 2003-10-23  Phil Edwards  <phil@codesourcery.com>
179         * config/os/vxworks/ctype_noninline.h:  Adjust ctor to match
180         2003-10-21 change.
182 2003-10-22  Paolo Carlini  <pcarlini@suse.de>
184         * include/bits/locale_facets.tcc (__int_to_char): Remove
185         the const int parameter.
186         (_M_insert_int): Update caller.
187         * src/locale-inst.cc (__int_to_char): Update instantiations.    
189 2003-10-22  Benjamin Kosnik  <bkoz@redhat.com>
191         * include/bits/locale_facets.h: Correct byname facets for "C"
192         locale.
193         * config/locale/generic/ctype_members.cc: Same.
194         * config/locale/generic/messages_members.h: Same.
195         * config/locale/gnu/ctype_members.cc: Same.
196         * config/locale/gnu/messages_members.h: Same.
197         * include/bits/codecvt.h: Same.
198         * src/ctype.cc: Same.
199         * testsuite/22_locale/codecvt_byname/1.cc: New.
200         * testsuite/22_locale/collate/1.cc: Edit.
201         * testsuite/22_locale/collate_byname/1.cc: Derivation tests, move to...
202         * testsuite/22_locale/collate_byname/named_equivalence.cc: ...here.
203         * testsuite/22_locale/ctype/1.cc: Derivation tests.
204         * testsuite/22_locale/ctype/11844.cc: Move...
205         * testsuite/22_locale/ctype_base/11844.cc: ...here.
206         * testsuite/22_locale/ctype_base/1.cc: Move mask bits here.
207         * testsuite/22_locale/ctype_byname/1.cc: Name.
208         * testsuite/22_locale/messages_byname/1.cc: New.
209         * testsuite/22_locale/messages_byname/named_equivalence.cc: New.
210         * testsuite/22_locale/moneypunct_byname/1.cc: Derivation test.
211         * testsuite/22_locale/moneypunct_byname/named_equivalence.cc: New.
212         * testsuite/22_locale/numpunct/1.cc: Edit.
213         * testsuite/22_locale/numpunct_byname/2.cc: Move...
214         * testsuite/22_locale/numpunct/members/char/3.cc: ...here.
215         * testsuite/22_locale/numpunct_byname/1.cc: Derivation tests.
216         * testsuite/22_locale/numpunct_byname/named_equivalence.cc: New.
218 2003-10-22  Paolo Carlini  <pcarlini@suse.de>
220         PR libstdc++/8610
221         * acinclude.m4 (GLIBCXX_CHECK_INT64_T): New macro,
222         checking for the availability of int64_t.
223         (GLIBCXX_CHECK_LFS): New macro, checking for LFS support.
224         * configure.ac: Call here.
225         * acconfig.h: Add undef for the corresponding symbols.
226         * config/io/basic_file_stdio.cc (__basic_file<char>::open):
227         Depending on _GLIBCXX_USE_LFS, call fopen64 or fopen.
228         (__basic_file<char>::seekoff): Likewise, call lseek64 when
229         available, otherwise lseek, checking the __off parameter.
230         * include/bits/postypes.h: Typedef __streamoff_base_type
231         to int64_t if available, otherwise long long.
232         * aclocal.m4: Regenerate.
233         * config.h.in: Likewise.
234         * configure: Likewise.
236         * acinclude.m4 (GLIBCXX_CHECK_POLL, GLIBCXX_CHECK_WRITEV):
237         Use AC_TRY_LINK instead of AC_TRY_COMPILE.
238         
239 2003-10-22  Paolo Carlini  <pcarlini@suse.de>
241         PR libstdc++/12657
242         * include/bits/basic_ios.tcc (copyfmt(const basic_ios&)):
243         Implement resolution of DR 292 (WP).
244         * docs/html/ext/howto.html: Add entry for DR 292.
246 2003-10-21  Benjamin Kosnik  <bkoz@redhat.com>
248         * include/ext/mt_allocator.h: Change include to gthr.h.
249         * include/ext/rope: Same. Add _Refcount_base definitions.
250         * include/ext/pool_allocator.h: Adjust namespaces.
251         * include/bits/stl_threads.h (_Refcount_base): Move.
252         Put remaining into namespace __gnu_cxx.
253         
254 2003-10-21  Benjamin Kosnik  <bkoz@redhat.com>
256         PR libstdc++/9858
257         * include/bits/locale_facets.h (ctype<char>): Remove
258         __ctype_abstract_base.
259         (ctype<char>::do_is): Remove.
260         (ctype<char>::do_scan_is): Remove.
261         * src/ctype.cc: Same. Inline the rest.
262         * testsuite/22_locale/ctype/is/char/9858.cc: New.
263         * config/os/aix/ctype_noninline.h: Adjust ctor.
264         * config/os/bsd/freebsd/ctype_noninline.h: Same.
265         * config/os/bsd/netbsd/ctype_noninline.h: Same.
266         * config/os/djgpp/ctype_noninline.h: Same.
267         * config/os/generic/ctype_noninline.h: Same.
268         * config/os/gnu-linux/ctype_noninline.h: Same.
269         * config/os/hpux/ctype_noninline.h: Same.
270         * config/os/irix/irix5.2/ctype_noninline.h: Same.
271         * config/os/irix/irix6.5/ctype_noninline.h: Same.
272         * config/os/mingw32/ctype_noninline.h: Same.
273         * config/os/newlib/ctype_noninline.h: Same.
274         * config/os/qnx/qnx6.1/ctype_noninline.h: Same.
275         * config/os/solaris/solaris2.5/ctype_noninline.h: Same.
276         * config/os/solaris/solaris2.6/ctype_noninline.h: Same.
277         * config/os/solaris/solaris2.7/ctype_noninline.h: Same.
278         * config/os/windiss/ctype_noninline.h: Same.
280 2003-10-21  Paolo Carlini  <pcarlini@suse.de>
282         * src/locale.cc: Tweak a comment.
283         * src/localename.cc: Move a comment.
285 2003-10-20  Benjamin Kosnik  <bkoz@redhat.com>
287         PR libstdc++/10081
288         * testsuite_hooks.h: Add pod_type, ctype and numpunct specializations.
289         * testsuite_hooks.cc: Same.
290         * 22_locale/numpunct/members/pod/1.cc: Edit.
291         * 22_locale/numpunct/members/pod/2.cc: Same.
292         * 27_io/basic_istream/sentry/char/3983-fstream.cc: Move ...
293         * 27_io/basic_istream/sentry/char/3983-sstream.cc: Move ...
294         * 27_io/basic_istream/extractors_arithmetic/pod/3983-1.cc: Here.
295         * 27_io/basic_istream/extractors_character/pod/3983-2.cc: Here.
296         * 27_io/basic_istream/extractors_other/pod/3983-3.cc: Here.
297         * 27_io/basic_ostream/sentry/char/3983-fstream.cc: Remove.
298         * 27_io/basic_ostream/sentry/char/3983-sstream.cc: Remove.
299         * 27_io/basic_istream/sentry/pod/1.cc: New.
300         * 27_io/basic_ostream/sentry/pod/1.cc: New.
301         * 21_strings/basic_string/inserters_extractors/pod/10081-in.cc: New.
302         * 21_strings/basic_string/inserters_extractors/pod/10081-out.cc: New.
304 2003-10-20  Rainer Orth  <ro@TechFak.Uni-Bielefeld.DE>
306         * config/cpu/mips/atomicity.h (__atomic_add): Use _ABIO32 instead
307         of external _MIPS_SIM_ABI32.
309 2003-10-20  Phil Edwards  <phil@codesourcery.com>
311         * configure.ac:  Fix comment typo.
312         * configure.host:  Add vxworks to host_os switch.
313         * crossconfig.m4:  Remove old commented os_include_dir variables
314         left over from autotools transition.
315         (*-vxworks):  New stanza.
316         (*-windiss):  Add missing symbols.
317         * configure:  Regenerate.
318         * config/os/vxworks/ctype_base.h, config/os/vxworks/ctype_inline.h,
319         config/os/vxworks/ctype_noninline.h, config/os/vxworks/os_defines.h:
320         New files.
321         * config/os/windiss/os_defines.h:  Define __C9X__.
323 2003-10-19  David Edelsohn  <edelsohn@gnu.org>
325         PR other/12506
326         * configure.host (aix4,aix*): Define os_include_dir to os/generic.
328 2003-10-18  Andreas Tobler  <a.tobler@schweiz.ch>
330         * src/locale.cc (locale::_S_initialize): Re-apply workaround a
331         confusion of the use of the gthr API when __gthread_active_p()
332         returns true.
334 2003-10-17  Benjamin Kosnik  <bkoz@redhat.com>
336         * src/Makefile.am: Add new files.
337         * src/Makefile.in: Regenerate.
338         * src/globals.cc: Split into..
339         * src/globals_io.cc: New.
340         * src/globals_locale.cc: New.
341         * src/ios.cc: Split into...
342         * src/ios_init.cc: New.
343         * src/ios_locale.cc: New.
344         * src/locale-inst.cc: Split into..
345         * src/wlocale-inst.cc: New.
346         * src/locale-misc-inst.cc: New.
347         * src/locale.cc, src/localename: Split into...
348         * src/locale_facets.cc: New.
349         * src/locale_init.cc: New.
350         * src/wstring-inst.cc: Add copyright info.
352 2003-10-16  Petur Runolfsson  <peturr02@ru.is>
354         PR libstdc++/11450
355         PR libstdc++/11543
356         PR libstdc++/12065
357         * config/io/basic_file_stdio.cc (__basic_file::seekoff):
358         Change return value from streampos to streamoff.
359         (__basic_file::seekpos): Delete.
360         * config/io/basic_file_stdio.h: Same.
361         * config/io/c_io_stdio.h: Remove streamoff and wstreamsize typedefs.
362         * include/Makefile.am (bits_headers): Add bits/postypes.h.
363         * include/bits/char_traits.h: Include bits/postypes.h instead of
364         bits/fpos.h.
365         * include/bits/fstream.tcc (basic_filebuf::open,
366         basic_filebuf::pbackfail): Don't use < or >= to compare pos_type
367         values, use == and != instead.
368         (basic_filebuf::_M_seek): Use explicit conversion from streamoff
369         to pos_type.
370         (basic_filebuf::imbue):  Don't use ! on pos_type values, use
371         == instead. Don't use __check_facet(_M_codecvt) unless is_open().
372         * include/bits/postypes.h: New file.
373         Add __streamoff_base_type typedef, streamsize.
374         (streamoff, streampos, wstreampos): Define typedefs, with
375         streamoff defined as...
376         (streamoff): New class. Document implementation defined
377         aspects.
378         (fpos): New implementation. Document implementation defined
379         aspects.
380         * include/bits/sstream.tcc (basic_stringbuf::seekpos): Use
381         explicit conversion from pos_type to off_type.
382         * include/std/std_iosfwd.h: Include bits/postypes.h instead
383         of bits/fpos.h.
384         * testsuite/27_io/basic_filebuf/seekoff/char/11543.cc: New test.
385         * testsuite/27_io/basic_filebuf/seekoff/wchar_t/11543.cc: New test.
386         * testsuite/27_io/fpos/11450.cc: New test.
387         * testsuite/27_io/fpos/mbstate_t/12065.cc: New test.
388         * testsuite/27_io/fpos/mbstate_t/4_neg.cc: New test.
389         * testsuite/27_io/types/3.cc: New test.
391 2003-10-16  Benjamin Kosnik  <bkoz@redhat.com>
393         * configure.host: Remove fpos_include_dir.
394         * configure.ac: Remove FPOS_INC_SRCDIR.
395         * configure: Regenerate.
396         * acinclude.m4 (GLIBCXX_ENABLE_CSTDIO): Remove FPOS_H.
397         * aclocal.m4: Regenerate.
398         * include/Makefile.am (host_headers): Remove fpos.h.
399         (bits_headers): Add postypes.h.
400         * include/Makefile.in: Regenerate.
401         * config/os/gnu-linux/fposh: Remove.
402         * config/os/generic/fpos.h: Remove.
404         * testsuite/27_io/basic_filebuf/seekoff/char/1-in.cc: Fixup.
405         * testsuite/27_io/basic_filebuf/seekoff/char/1-io.cc: Same.
406         * testsuite/27_io/basic_filebuf/seekoff/char/1-out.cc: Same.
407         * testsuite/27_io/basic_filebuf/seekoff/char/2-in.cc: Same.
408         * testsuite/27_io/basic_filebuf/seekoff/char/2-io.cc: Same.
409         * testsuite/27_io/basic_filebuf/seekoff/char/2-out.cc: Same.
410         * testsuite/27_io/basic_filebuf/seekpos/char/1-in.cc: Same.
411         * testsuite/27_io/basic_filebuf/seekpos/char/1-io.cc: Same.
412         * testsuite/27_io/basic_filebuf/seekpos/char/1-out.cc: Same.
413         * testsuite/27_io/basic_filebuf/seekpos/char/2-in.cc: Same.
414         * testsuite/27_io/basic_filebuf/seekpos/char/2-io.cc: Same.
415         * testsuite/27_io/basic_filebuf/seekpos/char/2-out.cc: Same.
416         * testsuite/27_io/basic_istream/seekg/char/2.cc: Same.
417         * testsuite/27_io/basic_stringbuf/seekoff/char/1.cc: Same.
418         * testsuite/27_io/basic_stringbuf/seekpos/char/1.cc: Same.
419         * testsuite/27_io/fpos/mbstate_t/3.cc: Same.
420         * testsuite/27_io/objects/char/10.cc: Same.
422 2003-10-16  Paolo Carlini  <pcarlini@suse.de>
424         * src/locale.cc (locale::locale(const char*)): ... one
425         more comparison missed in the previous commit.
427 2003-10-16  Benjamin Kosnik  <bkoz@redhat.com>
429         * acconfig.h: Add HAVE_DRAND48.
430         * crossconfig.m4: Remove ISATTY.
431         * aclocal.m4: Regenerated.
432         * config.h.in: Regenerated.
433         * configure: Regenerated.
434         
435 2003-10-16  Bernardo Innocenti  <bernie@develer.com>
437         * config/cpu/m68k/atomicity.h (__exchange_and_add): Use TAS on
438         __mcf5400__. Don't rely on __mc68000__ to detect a bare 68000.
439         Document SMP safeness of asm macros.
441 2003-10-16  Paolo Carlini  <pcarlini@suse.de>
443         * src/locale.cc (locale::locale(const char*)): Tweak
444         a couple of comparisons to use basic_string operators.
446 2003-10-16  Paolo Carlini  <pcarlini@suse.de>
448         PR libstdc++/12540
449         * config/locale/gnu/monetary_members.cc
450         (moneypunct<wchar_t, true/false>::_M_initialize_moneypunct):
451         Don't leak memory if new throws.
452         * src/locale.cc (locale::locale(const char*)): In order not
453         to leak memory in case new throws, use a basic_string type
454         for __res too and avoid strdup.
456 2003-10-14  Jeff Bailey  <jbailey@nisa.net>
457         
458         PR libstdc++/12562
459         * crossconfig.m4: Share the config between *-linux* and *-gnu*.
460         * configure: Regenerate.
462 2003-10-14  Carlo Wood  <carlo@alinoe.com>
464         PR libstdc++/12600
465         * include/bits/demangle.h (session<Allocator>::
466           decode_unqualified_name(string_type& output)): Fail on a
467           <operator-name> when decoding <template-argument>.
468         * testsuite/demangle/regression/cw-15.cc: New.
470 2003-10-14  Paolo Carlini  <pcarlini@unitus.it>
472         PR libstdc++/11480
473         * include/bits/stl_algo.h (unique): Fix.
474         * testsuite/25_algorithms/unique.cc: Move to unique/1.cc.
475         * testsuite/25_algorithms/unique/11480.cc: New, from the PR.
476         * testsuite/25_algorithms/unique/2.cc: New.
478 2003-10-14  Paolo Carlini  <pcarlini@unitus.it>
480         * src/localename.cc (_M_replace_categories, M_replace_facet):
481         Const-ify a couple of variables.
483 2003-10-14  Petur Runolfsson  <peturr02@ru.is>
484             Andreas Tobler  <a.tobler@schweiz.ch>
486         * src/locale.cc (locale::_S_initialize): Workaround a confusion
487         of the use of the gthr API when __gthread_active_p() returns true.
489 2003-10-12  Petur Runolfsson  <peturr02@ru.is>
490             Paolo Carlini  <pcarlini@unitus.it>
492         PR libstdc++/11460
493         * src/strstream.cc (pbackfail): Fix to use to_int_type.
494         * testsuite/backward/11460.cc: New, from the PR.
496 2003-10-12  Paolo Carlini  <pcarlini@unitus.it>
498         * config/locale/ieee_1003.1-2001/codecvt_specializations.h:
499         Change #ifdef _GLIBCXX_RESOLVE_LIB_DEFECTS to a comment.
500         * include/bits/basic_string.tcc: Likewise.
501         * include/bits/ios_base.h: Likewise.
502         * include/bits/istream.tcc: Likewise.
503         * include/bits/locale_facets.tcc: Likewise.
504         * include/bits/ostream.tcc: Likewise.
505         * include/bits/stl_function.h: Likewise.
506         * include/bits/stl_multiset.h: Likewise.
507         * include/bits/stl_pair.h: Likewise.
508         * include/bits/stl_set.h: Likewise.
509         * include/bits/streambuf_iterator.h
510         * include/std/std_iosfwd.h: Likewise.
511         * include/std/std_istream.h: Likewise.
512         * include/std/std_sstream.h: Likewise.
513         * include/std/std_streambuf.h: Likewise.
514         * src/ios.cc: Likewise.
515         * include/bits/c++config:
516         Comment out #define _GLIBCXX_RESOLVE_LIB_DEFECTS 1.
517         * testsuite/27_io/ios_base/cons/assign_neg.cc: Tweak a
518         dg-error directive due to removal of a blank line.
519         * testsuite/27_io/ios_base/cons/copy_neg.cc: Likewise.
521 2003-10-12  Andreas Tobler  <a.tobler@schweiz.ch>
522             Paolo Carlini  <pcarlini@unitus.it>
524         PR libstdc++/11844/11740 (cont)
525         * config/os/generic/ctype_inline.h (ctype<char>::is):
526         Generically, use a bitmasksize of 15 (instead of 10);
527         Fix the logic to actually return (M & m) != 0 as per
528         22.2.1.1.2.
530 2003-10-11  Bernardo Innocenti  <bernie@develer.com>
532         * crossconfig.m4 (*-uclinux*): New target.
533         * configure: Regenerate.
535 2003-10-10  Paolo Carlini  <pcarlini@unitus.it>
537         * include/bits/ostream.tcc (operator<<(basic_ostream&, _CharT))
538         Avoid unnecessarily calling __builtin_alloca and dealing
539         explicitly with width() smaller than zero.
540         (operator<<(basic_ostream&, char), operator<<(basic_ostream&,
541         const _CharT*), operator<<(basic_ostream<_CharT, _Traits>&,
542         const char*), operator<<(basic_ostream<char, _Traits>&,
543         const char*), operator<<(basic_ostream, const basic_string&)):
544         Likewise.
546 2003-10-09  Benjamin Kosnik  <bkoz@redhat.com>
548         * config/linker-map.gnu: Make more *_type_info bits visible.
549         Move new/delete bits back into GLIBCXX space.
551         * include/bits/locale_classes.h: Move _M_id out of line, so that
552         locale::id::_S_highwater can be removed from the export list.
553         * src/locale.cc (locale::id::_M_id): Define.
554         
555 2003-10-09  Andreas Tobler  <a.tobler@schweiz.ch>
557         * testsuite/lib/libstdc++.exp: Set LD_LIBRARY_PATH_64 for
558         SPARC64.
560 2003-10-09  Paolo Carlini  <pcarlini@unitus.it>
562         PR libstdc++/11844
563         * config/os/aix/ctype_base.h: Fix 'alnum' and 'graph'
564         to conform to the requirements of 22.2.1.
565         * config/os/bsd/freebsd/ctype_base.h: Likewise.
566         * config/os/djgpp/ctype_base.h: Likewise.
567         * config/os/generic/ctype_base.h: Likewise.
568         * config/os/gnu-linux/ctype_base.h: Likewise.
569         * config/os/hpux/ctype_base.h: Likewise.
570         * config/os/irix/irix6.5/ctype_base.h: Likewise.
571         * config/os/solaris/solaris2.6/ctype_base.h: Likewise.
572         * config/os/solaris/solaris2.7/ctype_base.h: Likewise.
573         * testsuite/22_locale/ctype/11844.cc: New.
575         * config/locale/generic/ctype_members.cc (do_is):
576         Generically, use a bitmasksize of 15 (instead of 10), since
577         we don't know the numerical encoding of the various categories
578         in the underlying /usr/include/ctype.h.
580 2003-10-09  Benjamin Kosnik  <bkoz@redhat.com>
582         * src/string-inst.cc: Prune.
583         * testsuite/27_io/ios_base/cons/assign_neg.cc: Adjust line numbers.
584         * testsuite/27_io/ios_base/cons/copy_neg.cc: Same.
585         
586 2003-10-09  Petur Runolfsson  <peturr02@ru.is>
588         * src/io-inst.cc: Don't include iostream.
589         * include/bits/ios_base.h (ios_base::failure): Use string.
590         * src/Makefile.am: Add ios_failure.cc.
591         * src/Makefile.in: Regenerate.
592         * src/ios.cc: Move ios_base::failure definitions to...
593         * src/ios_failure.cc: ...here. New.
595 2003-10-09  Petur Runolfsson  <peturr02@ru.is>
597         PR libstdc++/9874
598         * include/bits/fstream.tcc (basic_filebuf::seekoff):
599         Move code needed for both seekoff and seekpos...
600         (basic_filebuf::_M_seek): ...here. New function.
601         (basic_filebuf::seekpos): Don't call seekoff, call _M_seek.
602         * include/std/std_fstream.h (basic_filebuf::_M_seek): Declare it.
603         * testsuite/27_io/basic_filebuf/seekpos/wchar_t/9874.cc: New test.
605         * testsuite/22_locale/locale/cons/12438.cc: Increase memory limit.
607 2003-10-08  Paolo Carlini  <pcarlini@unitus.it>
609         * include/bits/locale_facets.tcc: More minor cosmetic
610         changes and const-ifications of some variables.
612 2003-10-07  Paolo Carlini  <pcarlini@unitus.it>
614         * include/bits/locale_facets.tcc: Minor cosmetic changes
615         and const-ifications of some variables.
617         * include/bits/locale_facets.tcc
618         (money_get::do_get(..., string_type&)): Simplify an if-else.
620 2003-10-06  Paolo Carlini  <pcarlini@unitus.it>
622         PR libstdc++/11740
623         * config/locale/gnu/ctype_members.cc (ctype<wchar_t>::do_is):
624         Fix to actually return (M & m) != 0 as per 22.2.1.1.2.
625         * config/locale/generic/ctype_members.cc: Same.
626         * testsuite/22_locale/ctype/is/wchar_t/11740.cc: New.
628 2003-10-06  Paolo Carlini  <pcarlini@unitus.it>
630         * include/bits/locale_facets.tcc (__pad<>::_S_pad):
631         Improve performance-wise: avoid one traits::copy, avoid
632         the __builtin_alloca, streamline.
634 2003-10-05  Paolo Carlini  <pcarlini@unitus.it>
636         * include/bits/locale_facets.tcc
637         (num_put::do_put(..., bool)): Prefer ?: to if-else.
638         (time_get::_M_extract_name): Qualify min with std::.
639         (__pad<>::_S_pad): Constify two variables; simplify an
640         if-else statement factoring out some code.
642         * include/bits/locale_facets.tcc: Minor cosmetic changes.
644 2003-10-04  Paolo Carlini  <pcarlini@unitus.it>
646         * include/bits/locale_facets.tcc (num_get::_M_extract_float):
647         Constify a couple of variables.
648         (num_get::do_get(..., bool&)): Constify __c; prefer *__beg,
649         ++__beg to *__beg++.
651 2003-10-04  Paolo Carlini  <pcarlini@unitus.it>
652             Petur Runolfsson  <peturr02@ru.is>
654         * include/ext/stdio_sync_filebuf.h: Don't include the whole
655         <fstream>, only <streambuf> and <cstdio>.
657 2003-10-04  Paolo Carlini  <pcarlini@unitus.it>
659         PR libstdc++/12206
660         * include/bits/fstream.tcc (imbue): In case a codecvt facet
661         is not available, set _M_codecvt = 0.
662         * testsuite/27_io/basic_filebuf/imbue/12206.cc: New.
664 2003-10-02  Harald Boehme  <boehme@informatik.hu-berlin.de>
666         PR libstdc++/12451
667         * libsupc++/cxxabi.h: Move forward declaration of __class_type_info.
668         
669 2003-10-02  Benjamin Kosnik  <bkoz@redhat.com>
671         * include/bits/locale_classes.h (locale::facet::_S_get_c_name): Add.
672         * src/locale.cc: Define.
673         * src/localename.cc: Use it.
674         * config/locale/generic/time_members.h: Same.
675         * config/locale/gnu/messages_members.h: Same.
676         * config/locale/gnu/time_members.h: Same.
678 2003-10-02  Paolo Carlini  <pcarlini@unitus.it>
680         PR libstdc++/12232
681         * include/bits/fstream.tcc (seekoff): Ignore the openmode
682         argument; simplify.
683         * config/io/basic_file_stdio.h (__basic_file<char>::seekoff,
684         seekpos): Remove the openmode argument.
685         * config/io/basic_file_stdio.cc (__basic_file<char>::seekoff,
686         seekpos): Remove redundant placeholder for the openmode argument.
687         * testsuite/27_io/basic_filebuf/seekoff/char/12232.cc: New.
688         * testsuite/27_io/basic_filebuf/seekoff/char/3-in.cc: Tweak.
689         * testsuite/27_io/basic_filebuf/seekoff/char/3-out.cc: Likewise.
690         * testsuite/27_io/basic_filebuf/seekpos/char/3-in.cc: Likewise.
691         * testsuite/27_io/basic_filebuf/seekpos/char/3-out.cc: Likewise.
693 2003-10-02  Benjamin Kosnik  <bkoz@redhat.com>
695         * src/locale.cc (locale::_S_initialize): Use __gthread_active_p.
696         (locale::facet::_S_get_c_locale): Same.
697         
698 2003-10-02  Benjamin Kosnik  <bkoz@redhat.com>
700         * config/linker-map.gnu: Export _S_get_c_locale instead of
701         _S_c_locale object.
703 2003-10-02  Petur Runolfsson  <peturr02@ru.is>
705         * config/locale/generic/c_locale.cc
706         (category_names, locale::_S_categories): Const qualify.
707         * config/locale/gnu/c_locale.cc: Same.
708         * config/locale/generic/time_members.h (__timepunct::__timepunct):
709         Copy string contents before assigning to _M_name_timepunct,
710         qualify strcpy and strlen with std::.
711         * config/locale/gnu/time_members.h: Same.
712         * config/locale/gnu/messages_members.h (messages::messages):
713         Copy string contents before assigning to _M_name_messages,
714         qualify strcpy and strlen with std::.
715         * config/os/gnu-linux/ctype_noninline.h
716         (ctype<char>::classic_table()): Don't call locale::classic().
717         * include/bits/locale_classes.h
718         (locale::_S_categories): Const qualify. 
719         (locale::_S_once, locale::_S_initialize_once,
720         locale::facet::_S_once, locale::facet::_S_initialize_once,
721         locale::facet::_S_get_c_locale): Declare.
722         (locale::_S_initialize): Don't define.
723         (locale::facet::_S_c_locale): Make private.
724         (locale::facet::_S_c_name): Same, const qualify.
725         (locale::_Impl::_Impl(facet**, size_t, bool)): Drop unused
726         parameters, add throw() specifier.
727         * include/bits/locale_facets.h (__timepunct::_M_name_timepunct,
728         messages::_M_name_messages): Const qualify.
729         * src/locale.cc
730         (locale::_S_once, locale::facet::_S_once): Define.
731         (locale::classic): Move initialization code...
732         (locale::_S_initialize_once): ...here.  
733         (locale::_S_initialize): Call _S_initialize_once through
734         __gthread_once.
735         (locale::facet::_S_initialize_once): Initialize _S_c_locale.
736         (locale::facet::_S_get_c_locale): Call _S_initialize_once through
737         __gthread_once before returning _S_c_locale.
738         * src/localename.cc (locale::_Impl::_Impl(facet**, size_t, bool)):
739         Drop unused parameters, add throw() specifier, don't initialize
740         locale::facet::_S_c_locale and _S_c_name.
741         
742         * config/locale/generic/messages_members.h:
743         Replace _S_c_locale with _S_get_c_locale().
744         * config/locale/gnu/c_locale.cc: Same.
745         * config/locale/gnu/messages_members.h: Same.
746         * config/locale/gnu/numeric_members.cc: Same.
747         * config/locale/gnu/time_members.cc: Same.
748         * config/os/gnu-linux/ctype_noninline.h: Same.
749         * include/bits/locale_facets.h: Same.
750         * include/bits/locale_facets.tcc: Same.
751         * src/codecvt.cc: Same.
752         * src/ctype.cc: Same.
754 2003-10-02  Carlo Wood  <carlo@alinoe.com>
756         * include/bits/demangle.h (demangle<Allocator>::symbol(char const*)):
757         Decode symbols that start with _GLOBAL_[ID]_ differently: the
758         trailing part ends with a terminating zero and is not necessarily an
759         encoding.
760         * src/demangle.cc (): Same.
761         * testsuite/demangle/regression/cw-13.cc: Adjust for new output.
763 2003-10-02  Paolo Carlini  <pcarlini@unitus.it>
765         * testsuite/22_locale/locale/cons/12438.cc: Use
766         __gnu_test::try_named_locale("").
768 2003-10-01  Rainer Orth  <ro@TechFak.Uni-Bielefeld.DE>
770         * linkage.m4 (GLIBCXX_CHECK_STDLIB_DECL_AND_LINKAGE_0): Define.
771         (GLIBCXX_CHECK_STDLIB_SUPPORT): Use it to test for lrand48
772         instead of drand48.
773         * acconfig.h (HAVE_DRAND48): Renamed to HAVE_LRAND48.
774         * crossconfig.m4 (*-freebsd*): Define HAVE_LRAND48 instead of
775         HAVE_DRAND48.
776         * config.h.in, configure: Regenerate.
777         * include/bits/stl_algo.h: Use _GLIBCXX_HAVE_LRAND48 to guard
778         lrand48 use.
780 2003-10-01  Nathan Myers  <ncm@cantrip.org>
782         * include/bits/locale_facets.tcc (time_put::put): Avoid
783         expensive *__s++, in favor of *__s, ++__s.
785 2003-10-01  Paolo Carlini  <pcarlini@unitus.it>
787         * include/bits/locale_facets.tcc (time_put::put): Minor
788         tweak to the previous commit.
790 2003-10-01  Paolo Carlini  <pcarlini@unitus.it>
792         PR libstdc++/12439
793         * include/bits/locale_facets.tcc (time_put::put): Deal
794         with the three issues pointed out by the PR.
795         * testsuite/22_locale/time_put/put/char/12439_1.cc: New.
796         * testsuite/22_locale/time_put/put/char/12439_3.cc: New.
797         * testsuite/22_locale/time_put/put/wchar_t/12439_1.cc: New.
798         * testsuite/22_locale/time_put/put/wchar_t/12439_2.cc: New.
799         * testsuite/22_locale/time_put/put/wchar_t/12439_3.cc: New.
801 2003-09-30  Paolo Carlini  <pcarlini@unitus.it>
803         * include/bits/stl_algo.h: Minor cosmetic reformattings.
805 2003-09-30  Paolo Carlini  <pcarlini@unitus.it>
807         * include/bits/stl_algo.h (search_n): Tweak, to spare the
808         first --__n.
810 2003-09-30  Paolo Carlini  <pcarlini@unitus.it>
812         * testsuite/22_locale/locale/cons/12352.cc: Explicitly
813         qualify exception name.
815 2003-09-30  Paolo Carlini  <pcarlini@unitus.it>
817         PR libstdc++/12438
818         * include/bits/locale_facets.tcc (locale::combine): Don't
819         leak memory if _M_replace_facet throws.
820         * testsuite/22_locale/locale/cons/12438.cc: New, from the PR.
822         * include/bits/locale_classes.h (locale::locale(const locale&,
823         _Facet*)): Tweak, use consistently _M_remove_reference.
825 2003-09-30  Paolo Carlini  <pcarlini@unitus.it>
827         PR libstdc++/12352 (cont)
828         * src/localename.cc (locale::_Impl::_Impl(const char*, size_t)):
829         Don't leak __cloc; don't leak if any of the _M_init_facet(...)
830         calls fail.
831         (locale::_Impl::_Impl(const _Impl&, size_t)): Tweak.
832         (locale::_Impl::~_Impl): Don't do anything if !_M_facets,
833         !_M_caches, !_M_names.
835 2003-09-29  Rainer Orth  <ro@TechFak.Uni-Bielefeld.DE>
837         * configure.host: Handle Solaris 2.5 micro releases explicitly.
838         Remove wildcards from Solaris 2.6, 7-9: there were no
839         micro releases.
840         Treat Solaris 10 and up like 7-9.
842 2003-09-29  Paolo Carlini  <pcarlini@unitus.it>
844         * include/bits/stl_algo.h (search_n): Improve the previous
845         fix as suggested by Martin.
847 2003-09-29  Paolo Carlini  <pcarlini@unitus.it>
849         PR libstdc++/12296
850         * include/bits/istream.tcc (peek): Set eofbit if sgetc
851         returns eof.
852         * testsuite/27_io/basic_istream/peek/char/12296.cc:
853         New, from the PR.
855 2003-09-29  Nathan Myers  <ncm@cantrip.org>
856             Paolo Carlini  <pcarlini@unitus.it>
858         PR libstdc++/11400
859         * include/bits/stl_algo.h (search_n):
860         Use iterator_traits<>::difference_type for __n.
861         * testsuite/25_algorithms/search_n/11400.cc: New, from the PR.
863 2003-09-29  Paolo Carlini  <pcarlini@unitus.it>
865         * testsuite/22_locale/locale/cons/12352.cc:
866         Use __attribute__((unused)) for test.
868 2003-09-26  Ulrich Weigand  <uweigand@de.ibm.com>
870         * testsuite/22_locale/time_put/put/char/2.cc (test_02): Allow either 
871         "Son" or "So" as abbreviated name for Sunday in de_DE locale.
872         * testsuite/22_locale/time_put/put/wchar_t/2.cc (test_02): Likewise.
874 2003-09-26  Brad Spencer  <spencer@infointeractive.com>
876         * testsuite/27_io/basic_filebuf/cons/wchar_t/10132-1.cc:
877         Explicitly qualify exceptions.
878         * testsuite/27_io/basic_istream/sentry/char/3983-fstream.cc: Same.
879         * testsuite/27_io/basic_istream/sentry/char/3983-sstream.cc: Same.
880         * testsuite/27_io/basic_ostream/sentry/char/3983-fstream.cc: Same.
881         * testsuite/27_io/basic_ostream/sentry/char/3983-sstream.cc: Same.
882         
883 2003-09-25  Paolo Carlini  <pcarlini@unitus.it>
885         PR libstdc++/12352
886         * src/localename.cc (locale::_Impl::_Impl(const _Impl&,
887         size_t)): Don't leak if memory allocations for _M_facets,
888         _M_caches, and _M_names fail.
889         (locale::_Impl::_Impl(const char*, size_t)): Ditto.
890         (locale::_Impl::_M_replace_categories(const _Impl*,
891         category)): Ditto.
892         (locale::_Impl::_M_install_facet(const locale::id*,
893         const facet*)): Ditto.
894         * include/bits/locale_classes.h (locale::locale(const locale&,
895         _Facet*)): Don't leak memory.
896         * testsuite/22_locale/locale/cons/12352.cc: New, from the PR.
898         * src/localename.cc (locale::_Impl::_Impl(facet**, size_t,
899         bool)): Qualify with std:: strcpy, tweak.
900         * include/bits/locale_classes.h
901         (locale::_Impl::_M_check_same_name): Qualify strcmp.
903 2003-09-25  Brad Spencer  <spencer@infointeractive.com>
905         PR libstdc++/6072
906         * acinclude.m4: Split out checks for vfwscanf, vswscanf, vwscanf,
907         wcstof, iswblank.       
908         * aclocal.m4: Regenerate.
909         * config.h.in: Regenerate.
910         * configure: Regenerate.
911         * crossconfig.m4: Add in wchar_t bits for solaris crosses.
912         * config/io/basic_file_stdio.cc: Guard unistd.h.
913         * include/c_compatibility/wchar.h: Guard extra wchar_t functionality.
914         * include/c_std/std_cwchar.h: Same.
915         * include/c_std/std_cwctype.h: Same.
916         
917 2003-09-25  Benjamin Kosnik  <bkoz@redhat.com>
919         PR libstdc++/11065
920         * config/locale/gnu/ctype_members.cc (ctype<wchar_t>::do_is): Fix.
921         * config/locale/generic/ctype_members.cc: Same.
922         * testsuite/22_locale/ctype/is/char/1.cc: Initialize mask.
923         * testsuite/22_locale/ctype/is/wchar_t/1.cc: Same.
925         * config/os/generic/ctype_inline.h: Update.
926         
927 2003-09-25  Ulrich Weigand  <uweigand@de.ibm.com>
929         * src/Makefile.am (version_dep): New variable.
930         (libstdc___la_DEPENDENCIES): Use it to add dependency on
931         libstdc++-symbol.ver only when using symbol versioning.
932         * src/Makefile.in: Regenerate.
934 2003-09-23  Benjamin Kosnik  <bkoz@redhat.com>
936         * include/bits/locale_facets.tcc: Tweak to avoid warnings.
937         * testsuite/testsuite_hooks.h: Same.
938         * testsuite/*/*.cc: Same.
940 2003-09-22  Petur Runolfsson  <peturr02@ru.is>
942         * include/bits/istream.tcc (basic_istream::read,
943         basic_istream::readsome, basic_istream::putback,
944         basic_istream::unget, operator>>(basic_istream, CharT)):
945         Avoid redundant setstate(failbit) calls when sentry::operator bool()
946         returns false.
948 2003-09-22  Carlo Wood  <carlo@alinoe.com>
950         PR libstdc++/12365
951         * include/bits/demangle.h (qualifier(int, cv_qualifier_nt,
952         char const*, int, int)):  Remove unused identifier
953         cv_qualifier for overloaded constructor.
955 2003-09-18  Benjamin Kosnik  <bkoz@redhat.com>
957         PR libstdc++/11504
958         * acinclude.m4 (GLIBCXX_EXPORT_FLAGS): Add -Wcast-qual to
959         WARN_FLAGS, remove -Wno-format.
960         * aclocal.m4: Regenerate.
961         * configure: Regenerate.
963 2003-09-18  Petur Runolfsson  <peturr02@ru.is>
965         * config/io/basic_file_stdio.cc (sys_getc, sys_ungetc): Delete.
966         * config/io/basic_file_stdio.h: Same.
967         * include/std/std_fstream.h (__ctype_type): Delete.
968         * include/std/std_streambuf.h (__ctype_type, __state_type): Delete.
969         
970 2003-09-17  Benjamin Kosnik  <bkoz@redhat.com>
972         PR libstdc++/12239
973         * configure.host (abi_baseline_pair): Error out on solaris2
974         configurations without a minor version number.
976 2003-09-13  Phil Edwards  <phil@codesourcery.com>
978         * docs/doxygen/run_doxygen:  Clear GENERATE_TAGFILE entirely
979         if man pages are on.
980         * docs/doxygen/user.cfg.in:  And here.
982 2003-09-10  Daniel Jacobowitz  <drow@mvista.com>
983             Andreas Jaeger <aj@suse.de>
985         PR libstdc++/12189
986         * acinclude.m4 (GLIBCXX_CONFIGURE_TESTSUITE): Don't build
987         abi_check if cross compiling.
988         * aclocal.m4: Regenerated.
989         * configure: Regenerated.
991 2003-09-10  Jeffrey D. Oldham  <oldham@codesourcery.com>
993         * libsupc++/vec.cc (__cxa_vec_new2): If the allocator returns
994         NULL, return NULL.  This reflects a C++ ABI change 2003 Sep 05.
995         (__cxa_vec_new3): Likewise.
997 2003-09-10  Petur Runolfsson  <peturr02@ru.is>
999         * include/bits/fstream.tcc (basic_filebuf::seekoff):
1000         Use codecvt::length to handle variable-width stateless encodings
1001         correctly.
1002         * testsuite/27_io/basic_filebuf/seekoff/wchar_t/1.cc: New test.
1003         * testsuite/27_io/basic_filebuf/seekoff/wchar_t/2.cc: New test.
1005 2003-09-10  Alan Modra  <amodra@bigpond.net.au>
1007         * config/io/basic_file_stdio.cc (_M_open_mode): Assign __p_mode
1008         rather than or'ing.
1010 2003-09-09  Alan Modra  <amodra@bigpond.net.au>
1012         * configure: Regenerate.
1014 2003-09-09  David Edelsohn  <edelsohn@gnu.org>
1016         * src/ios.cc (ios_base::Init::Init): Remove unnecessary
1017         qualifier from _S_synced_with_stdio.
1019 2003-09-09  Bernardo Innocenti  <bernie@develer.com>
1021         * include/c_std/std_cstdlib.h: Avoid using missing C library symbols.
1023 2003-09-04  Petur Runolfsson  <peturr02@ru.is>
1025         PR libstdc++/9028
1026         * include/bits/fstream.tcc
1027         (basic_filebuf::_M_destroy_internal_buffer): Destroy _M_ext_buf.
1028         (basic_filebuf::basic_filebuf): Initialize _M_ext_buf,
1029         _M_ext_buf_size, _M_ext_next and _M_ext_end.
1030         (basic_filebuf::underflow): Handle variable-width stateless
1031         encodings (codecvt::encoding() == 0), including UTF-8.
1032         * include/std/std_fstream.h (basic_filebuf):
1033         Declare _M_ext_buf, _M_ext_buf_size, _M_ext_next, _M_ext_end.
1034         * testsuite/27_io/basic_filebuf/underflow/wchar_t/1.cc: New test.
1035         * testsuite/27_io/basic_filebuf/underflow/wchar_t/2.cc: New test.
1036         * testsuite/27_io/basic_filebuf/underflow/wchar_t/3.cc: New test.
1037         * testsuite/27_io/basic_filebuf/underflow/wchar_t/4.cc: New test.
1038         * testsuite/27_io/basic_filebuf/underflow/wchar_t/5.cc: New test.
1039         * testsuite/27_io/objects/wchar_t/12.cc: New test.
1040         * testsuite/27_io/objects/wchar_t/13.cc: New test.
1042 2003-09-04  Jonathan Wakely  <redi@gcc.gnu.org>
1044         * docs/html/faq/index.html: Note that a namespace alias can't be
1045         used when specialising templates in extension namespace.
1046         * docs/html/faq/index.txt: Regenerate.
1048 2003-09-03  Petur Runolfsson  <peturr02@ru.is>
1050         PR libstdc++/12048
1051         * include/ext/stdio_sync_filebuf.h
1052         (stdio_sync_filebuf::_M_unget_buf): Declare it.
1053         (stdio_sync_filebuf::stdio_sync_filebuf): Initialize _M_unget_buf.
1054         (stdio_sync_filebuf::uflow): Store the returned character in
1055         _M_unget_buf.
1056         (stdio_sync_filebuf::pbackfail): If argument is eof(), pass
1057         _M_unget_buf to syncungetc(). Set _M_unget_buf to eof().
1058         (stdio_sync_filebuf<char>::xsgetn): Store last read character in
1059         _M_unget_buf, if any, else eof().
1060         (stdio_sync_filebuf<wchar_t>::xsgetn: Store last read character in
1061         _M_unget_buf, if any, else eof().
1062         * testsuite/27_io/objects/char/12048.cc: Rename to...
1063         * testsuite/27_io/objects/char/12048-1.cc: ...this.
1064         * testsuite/27_io/objects/char/12048-2.cc: New test.
1065         * testsuite/27_io/objects/char/12048-3.cc: New test.
1066         * testsuite/27_io/objects/char/12048-4.cc: New test.
1067         * testsuite/27_io/objects/char/12048-5.cc: New test. XFAIL.
1068         * testsuite/27_io/objects/wchar_t/12048-1.cc: New test.
1069         * testsuite/27_io/objects/wchar_t/12048-2.cc: New test.
1070         * testsuite/27_io/objects/wchar_t/12048-3.cc: New test.
1071         * testsuite/27_io/objects/wchar_t/12048-4.cc: New test.
1072         * testsuite/27_io/objects/wchar_t/12048-5.cc: New test. XFAIL.
1073         * testsuite/ext/stdio_sync_filebuf_char.cc
1074         (test02, test03, test04, test05): New tests.
1075         * testsuite/ext/stdio_sync_filebuf_wchar_t.cc
1076         (test02, test03, test04, test05): New tests.
1078 2003-09-03  Petur Runolfsson  <peturr02@ru.is>
1080         * docs/html/27_io/howto.html: setbuf(0, 0) has no effect on
1081         stringbuf or strstreambuf. Fix typos.
1083 2003-09-02  Phil Edwards  <phil@codesourcery.com>
1085         * acinclude.m4 (GLIBCXX_ENABLE_HOSTED):  #define _GLIBCXX_HOSTED
1086         appropriately.
1087         * config.h.in:  Add _GLIBCXX_HOSTED.
1088         * libsupc++/eh_term_handler.cc:  Test it here; initialize
1089         __terminate_handler to std::abort if freestanding.
1090         * aclocal.m4, configure:  Regenerated.
1091         * docs/html/configopts.html:  Document --disable-hosted-libstdcxx.
1093 2003-08-29  Nathan Myers  <ncm@cantrip.org>
1094         
1095         PR libstdc++/11990      
1096         * include/bits/locale_facets.tcc (__pad): delete dead code.
1098 2003-08-28  Alan Modra  <amodra@bigpond.net.au>
1100         * configure.ac: Test $with_cross_host against $build_alias, not $build.
1101         * configure: Regenerate.
1103 2003-08-27  Petur Runolfsson  <peturr02@ru.is>
1105         * testsuite/27_io/objects/wchar_t/10.cc: Move wcout stuff...
1106         * testsuite/27_io/objects/wchar_t/11.cc: ...here. New file.
1108 2003-08-27  Phil Edwards  <pme@gcc.gnu.org>
1110         * Makefile.am:  Remove trailing whitespace.  Remove needless
1111         "foo = @foo@" assignments.  Replace direct uses of @foo@ with $(foo).
1112         * include/Makefile.am:  Likewise.
1113         * libmath/Makefile.am:  Likewise.
1114         * libsupc++/Makefile.am:  Likewise.
1115         * po/Makefile.am:  Likewise.
1116         * src/Makefile.am:  Likewise.
1117         * testsuite/Makefile.am:  Likewise.
1119         * Makefile.in, include/Makefile.in, libmath/Makefile.in,
1120         libsupc++/Makefile.in, po/Makefile.in, src/Makefile.in,
1121         testsuite/Makefile.in:  Regenerated.
1123 2003-08-27  Phil Edwards  <pme@gcc.gnu.org>
1125         * acinclude.m4 (GLIBCXX_EXPORT_INCLUDES):  Change quoting of
1126         includedir.
1127         * aclocal.m4, configure:  Regenerate.
1129 2003-08-27  Daniel Jacobowitz  <drow@mvista.com>
1131         * acinclude.m4: Include no-executables.m4.
1132         * configure.ac: Uncomment GCC_NO_EXECUTABLES.
1133         * aclocal.m4: Regenerated.
1134         * configure: Regenerated.
1136 2003-08-27  Daniel Jacobowitz  <drow@mvista.com>
1138         * acinclude.m4: Don't call AC_ISC_POSIX.
1139         * aclocal.m4: Regenerated.
1140         * configure: Regenerated.
1142 2003-08-27  Phil Edwards  <pme@gcc.gnu.org>
1144         * acinclude.m4 (GLIBCXX_CONDITIONAL):  New macro.  Wrap
1145         AM_CONDITIONAL.  Replace all calls to AM_CONDITIONAL with this one.
1146         (GLIBCXX_ENABLE_HOSTED):  New macro, sets new variable is_hosted,
1147         used elsewhere in this file.
1148         (GLIBCXX_EVALUATE_CONDITIONALS):  New macro...
1149         * configure.ac:  ...called here to expand all conditionals.
1150         * Makefile.am:  Conditionalize SUBDIRS on GLIBCXX_HOSTED.
1151         * include/Makefile.am:  Remove redundant gxx_include_dir assignment.
1152         (install-freestanding-headers):  New target, a subset of
1153         install-headers.  Conditionalize install-data-local on GLIBCXX_HOSTED.
1155         * aclocal.m4, configure, Makefile.in, include/Makefile.in,
1156         libmath/Makefile.in, libsupc++/Makefile.in, po/Makefile.in,
1157         src/Makefile.in, testsuite/Makefile.in:  Regenerated.
1159 2003-08-26  Phil Edwards  <pme@gcc.gnu.org>
1161         * docs/doxygen/run_doxygen:  Shell fixes.  Remove hardcoded local
1162         pathnames from generated tag file.
1164 2003-08-26  Phil Edwards  <pme@gcc.gnu.org>
1166         * Makefile.am:  Add comment.
1167         * acinclude.m4 (GLIBCXX_CONFIGURE):  Set new glibcxx_SUBDIRS and
1168         SUBDIRS variables.
1169         * configure.ac:  Use them both here, instead of hardcoded lists.
1171         * fragment.am:  Add STAMP varaible.
1172         * include/Makefile.am:  Cosmetic whitespace cleanup.  Use $(LN_S)
1173         instead of @LN_S@.
1174         (stamp-*):  Move file creation rule outside of 'if' branches to
1175         ensure the stamp-* files are actually updated.  Use $(STAMP).
1176         * src/Makefile.am:  Remove now-nonexistant variable.
1177         * libsupc++/Makefile.am:  Likewise.  Snap the assignment chain
1178         for -prefer-pic.
1179         * po/Makefile.am:  Include same fragment as all the others.
1181         * aclocal.m4, configure, Makefile.in, include/Makefile.in,
1182         libsupc++/Makefile.in, po/Makefile.in, src/Makefile.in:  Regenerated.
1184 2003-08-26  Loren J. Rittle  <ljrittle@acm.org>
1186         * testsuite/data/cin_unget-1.txt: New.
1187         * testsuite/27_io/objects/char/12048.cc: New.
1189 2003-08-25  Zack Weinberg  <zack@codesourcery.com>
1191         * config/os/hpux/os_defines.h: Unconditionally define
1192         _GLIBCXX_GTHREAD_USE_WEAK to 0.
1194 2003-08-19  Geoffrey Keating  <geoffk@apple.com>
1196         * crossconfig.m4 (*-darwin*): Add a large and boring stanza for
1197         crosses to Darwin targets.
1198         * configure: Regenerate.
1200 2003-08-19  Petur Runolfsson  <peturr02@ru.is>
1202         * include/ext/ropeimpl.h: #include <ostream> instead of <iostream>
1204 2003-08-17  Phil Edwards  <pme@gcc.gnu.org>
1206         * configure.ac:  GCC_NO_EXECUTABLES was supposed to be commented
1207         in the patch from 3 minutes ago.  Boy, is my face red.
1208         * configure:  At least I remembered to regenerate this.
1210 2003-08-17  Phil Edwards  <pme@gcc.gnu.org>
1212         * acinclude.m4 (GLIBCXX_EXPORT_INCLUDES):  Remove LIBMATH_INCLUDES
1213         and LIBSUPCXX_INCLUDES.  Re-purpose TOPLEVEL_INCLUDES to refer to
1214         things from the top level.
1215         * configure.ac (GLIBCXX_IS_NATIVE):  Determine earlier and re-order.
1216         Comment out the conditionals for CANADIAN and GLIBCXX_BUILD_LIBMATH
1217         (currently unused).  Strip the fake-VPATH shell fragment from
1218         automake-generated rules, if present.
1219         * linkage.m4:  Add comment.
1221         * fragment.am:  New file, containing factored-out common settings.
1222         (AM_CPPFLAGS):  Absorb the deprecated INCLUDES variable contents.
1223         * Makefile.am:  Include fragment.am.  Remove common variables.
1224         * include/Makefile.am:  Likewise.
1225         * libmath/Makefile.am:  Likewise.
1226         * libsupc++/Makefile.am:  Likewise.
1227         * po/Makefile.am:  Likewise.  Print rules during check.
1228         * src/Makefile.am:  Likewise.
1229         * testsuite/Makefile.am:  Likewise.
1231         * aclocal.m4, configure, Makefile.in, include/Makefile.in,
1232         libmath/Makefile.in, libsupc++/Makefile.in, po/Makefile.in,
1233         src/Makefile.in, testsuite/Makefile.in:  Regenerate.
1235 2003-08-11  John Levon  <levon@movementarian.org>
1237         * docs/html/ext/howto/guide.html (GLIBCXX_FORCE_NEW): Update
1238         remaining places for the name change from GLIBCPP_FORCE_NEW
1239         to GLIBCXX_FORCE_NEW
1241 2003-08-11  Benjamin Kosnik  <bkoz@redhat.com>
1243         * include/bits/basic_ios.h: Remove *_iter typedefs, change num*
1244         typedefs to num_*.
1245         * include/bits/basic_ios.tcc: Same.
1246         * include/bits/istream.tcc: Same.
1247         * include/bits/locale_facets.h: Same.
1248         * include/bits/ostream.tcc: Same.
1249         * include/std/std_istream.h: Same.
1250         * include/std/std_ostream.h: Same.
1251         * testsuite/26_numerics/complex_inserters_extractors.cc: Fix.
1253         * include/ext/rope: Remove build warning.
1255 2003-08-11  Andreas Jaeger  <aj@suse.de>
1257         * include/Makefile.am (stamp-c_base): Add dependency on stamp-bits
1258         to make SMP-safe.
1259         * include/Makefile.in: Regenerated.
1261 2003-08-11  Phil Edwards  <pme@gcc.gnu.org>
1263         * acinclude.m4 (GLIBCXX_CONFIGURE):  Unprecious CC and CFLAGS
1264         when calling AC_PROG_CC.
1265         * aclocal.m4, configure:  Regenerate.
1267 2003-08-11  Phil Edwards  <pme@gcc.gnu.org>
1269         * acinclude.m4:  Properly quote variable which will be expanded
1270         inside makefiles.  Use CXX instead of CC to extract compiler info.
1271         * configure.ac (AC_INIT):  Use the new 4-arg form to finally get the
1272         correct form in PACKAGE.
1273         * aclocal.m4, configure:  Regenerate.
1275 2003-08-08  Benjamin Kosnik  <bkoz@redhat.com>
1277         * testsuite/Makefile.am (check-abi): Change libstdc++-v3 to libstdc++.
1278         (check-abi-verbose): Same.
1279         * testsuite/testsuite_performance.h (report_performance): Same.
1281 2003-08-08  Loren J. Rittle  <ljrittle@acm.org>
1283         * testsuite/testsuite_performance.h (__FreeBSD__): Add fake mallinfo.
1285 2003-08-07  Doug Gregor  <dgregor@apple.com>
1287         * include/bits/char_traits.h (char_traits::not_eof): Match operand
1288         types in ? :.
1290 2003-08-07  Bernardo Innocenti  <bernie@develer.com>
1292         PR libstdc++/11784
1293         * libstdc++-v3/config/cpu/m68k/atomicity.h (__exchange_and_add):
1294         Replace variants with new BSET-based version.
1296 2003-08-07  Carlo Wood  <carlo@alinoe.com>
1298         * include/bits/demangle.h: Do not use cctype functions that depend
1299         on locale.
1301 2003-08-05  Phil Edwards  <pme@gcc.gnu.org>
1303         * configure.in:  Rename...
1304         * configure.ac:  ...to this.
1305         * docs/html/17_intro/porting.texi:  Update name.
1307         * docs/html/17_intro/porting.html:  Regenerate.
1308         * config.h.in, Makefile.in, include/Makefile.in, libmath/Makefile.in,
1309         libsupc++/Makefile.in, po/Makefile.in, src/Makefile.in,
1310         testsuite/Makefile.in:  Regenerate (picks up new dependancy).
1312 2003-08-05  Phil Edwards  <pme@gcc.gnu.org>
1314         * acinclude.m4 (GLIBCXX_ENABLE_SJLJ_EXCEPTIONS):  Put down the crack
1315         pipe, open the window to let out the fumes, redo the option-handling
1316         logic to properly execute the detection test.
1317         * aclocal.m4, configure:  Regenerate.
1319 2003-08-04  Phil Edwards  <pme@gcc.gnu.org>
1321         Convert to new autotools.
1322         * acconfig.h:  Update with correct names.
1323         * configure.host (ATOMICITYH):  Rename to atomicity_include_dir.
1324         (qnx6.[12]*):  'q' comes before 's', not after 'w'.
1325         * configure.in:  Update.  Split hardcoded cross-configury settings
1326         out to...
1327         * crossconfig.m4:  ...here.  New file.  Contents untouched.
1328         * acinclude.m4:  Reorganize and rewrite as needed.  Split large
1329         chunks out to...
1330         * linkage.m4:  ...here.  New file.  Math and stdlib linkage tests.
1331         Contents untouched.
1332         * scripts/testsuite_flags.in:  Update.
1334         * Makefile.am:  Remove unneeded AUTOMAKE_OPTIONS settings and other
1335         variables (already generated by automake).
1336         * include/Makefile.am:  Ditto.
1337         * libmath/Makefile.am:  Ditto.
1338         * libsupc++/Makefile.am:  Ditto.
1339         * po/Makefile.am:  Ditto.
1340         * src/Makefile.am:  Ditto.
1342         * aclocal.m4:  Regenerate using new versions.
1343         * config.h.in:  Ditto.
1344         * configure:  Ditto.
1345         * Makefile.in:  Ditto.
1346         * include/Makefile.in:  Ditto.
1347         * libmath/Makefile.in:  Ditto.
1348         * libsupc++/Makefile.in:  Ditto.
1349         * po/Makefile.in:  Ditto.
1350         * src/Makefile.in:  Ditto.
1351         * testsuite/Makefile.in:  Ditto.
1353 2003-08-04  Phil Edwards  <pme@gcc.gnu.org>
1355         * po/libstdc++.pot:  Re-extract/regenerate.
1357 2003-08-04  Phil Edwards  <pme@gcc.gnu.org>
1359         * testsuite/Makefile.am (DEJATOOL,EXPECT,RUNTEST,RUNTESTFLAGS):
1360         Remove unneeded variable assignments.  Leave them for automake.
1361         * testsuite/lib/libstdc++-v3.exp:  Rename...
1362         * testsuite/lib/libstdc++.exp:  ...to this.  Adjust function names
1363         accordingly.
1364         * testsuite/libstdc++-v3.dg/dg.exp:  Rename...
1365         * testsuite/libstdc++-dg/normal.exp:  ...to this.  Adjust function
1366         names accordingly.
1368 2003-08-04  Phil Edwards  <pme@gcc.gnu.org>
1370         * docs/doxygen/guide.html:  run_doxygen uses bash.
1371         * docs/doxygen/mainpage.html:  We'll be shipping tag files.
1372         * docs/doxygen/run_doxygen:  Tweaks and improvements.
1373         * docs/doxygen/user.cfg.in:  Set GENERATE_TAGFILE.
1374         * docs/html/install.html:  Update autoconf/automake requirements.
1375         * docs/html/test.html:  Add section describing DejaGNU support.
1376         * docs/html/17_intro/confdeps.dot:  New file, generates...
1377         * docs/html/17_intro/confdeps.png:  ...this new file.
1378         * docs/html/Makefile:  Generated here.
1379         * docs/html/17_intro/configury.html:  New file.
1381 2003-07-31  Phil Edwards  <pme@gcc.gnu.org>
1383         * testsuite/lib/libstdc++-v3-dg.exp:  Rename...
1384         * testsuite/lib/libstdc++-v3.exp:  ...to this.
1385         * testsuite/libstdc++-v3.dg/dg.exp:  No special case needed now.
1387 2003-07-31  Doug Gregor  <dgregor@apple.com>
1389         Add user specialization tests.
1390         * testsuite/23_containers/deque/1.cc: New.
1391         * testsuite/23_containers/list/1.cc: New.
1392         * testsuite/23_containers/map/1.cc: New.
1393         * testsuite/23_containers/multimap/1.cc: New.
1394         * testsuite/23_containers/multiset/1.cc: New.
1395         * testsuite/23_containers/set/1.cc: New.
1396         * testsuite/23_containers/vector/1.cc: New.
1398 2003-07-31  Benjamin Kosnik  <bkoz@redhat.com>
1400         Reshuffle 23_containers testsuite.
1401         * 23_containers/adaptors.cc, bitset_ctor.cc,bitset_members.cc,
1402         bitset_shift.cc, deque_ctor.cc, deque_operators.cc,
1403         list_capacity.cc, list_ctor.cc, list_modifiers.cc, list_operators.cc,
1404         map_insert.cc, map_operators.cc, map_operators_neg.cc, multiset.cc,
1405         set_operators_neg.cc, vector_bool.cc, vector_capacity.cc,
1406         vector_ctor.cc, vector_element_access.cc, vector_modifiers.cc,
1407         vector_resize.cc: Split into...
1408         * 23_containers/bitset/cons/1.cc: New.
1409         * 23_containers/bitset/cons/6282.cc: New.
1410         * 23_containers/bitset/count/6124.cc: New.
1411         * 23_containers/bitset/operations/1.cc: New.
1412         * 23_containers/bitset/operations/2.cc: New.
1413         * 23_containers/bitset/test/1.cc: New.
1414         * 23_containers/bitset/to_ulong/1.cc: New.
1415         * 23_containers/deque/cons/1.cc: New.
1416         * 23_containers/deque/cons/2.cc: New.
1417         * 23_containers/deque/operators/1.cc: New.
1418         * 23_containers/list/capacity/1.cc: New.
1419         * 23_containers/list/cons/1.cc: New.
1420         * 23_containers/list/cons/2.cc: New.
1421         * 23_containers/list/cons/3.cc: New.
1422         * 23_containers/list/cons/4.cc: New.
1423         * 23_containers/list/cons/5.cc: New.
1424         * 23_containers/list/cons/6.cc: New.
1425         * 23_containers/list/cons/7.cc: New.
1426         * 23_containers/list/cons/8.cc: New.
1427         * 23_containers/list/cons/9.cc: New.
1428         * 23_containers/list/modifiers/1.cc: New.
1429         * 23_containers/list/modifiers/2.cc: New.
1430         * 23_containers/list/modifiers/3.cc: New.
1431         * 23_containers/list/operators/1.cc: New.
1432         * 23_containers/list/operators/2.cc: New.
1433         * 23_containers/list/operators/3.cc: New.
1434         * 23_containers/list/operators/4.cc: New.
1435         * 23_containers/map/insert/1.cc: New.
1436         * 23_containers/map/operators/1.cc: New.
1437         * 23_containers/map/operators/1_neg.cc: New.
1438         * 23_containers/multiset/insert/1.cc: New.
1439         * 23_containers/priority_queue/members/7161.cc: New.
1440         * 23_containers/queue/members/7157.cc: New.
1441         * 23_containers/set/operators/1_neg.cc: New.
1442         * 23_containers/stack/members/7158.cc: New.
1443         * 23_containers/vector/bool/1.cc: New.
1444         * 23_containers/vector/bool/6886.cc: New.
1445         * 23_containers/vector/capacity/1.cc: New.
1446         * 23_containers/vector/capacity/2.cc: New.
1447         * 23_containers/vector/capacity/8230.cc: New.
1448         * 23_containers/vector/cons/1.cc: New.
1449         * 23_containers/vector/cons/2.cc: New.
1450         * 23_containers/vector/cons/3.cc: New.
1451         * 23_containers/vector/cons/4.cc: New.
1452         * 23_containers/vector/cons/6513.cc: New.
1453         * 23_containers/vector/element_access/1.cc: New.
1454         * 23_containers/vector/modifiers/1.cc: New.
1455         * 23_containers/vector/modifiers/2.cc: New.
1456         * 23_containers/vector/resize/1.cc: New.
1458 2003-07-31  Rainer Orth  <ro@TechFak.Uni-Bielefeld.DE>
1460         * testsuite/thread/pthread1.cc: Add alpha*-*-osf* to dg-do run,
1461         dg-options.
1462         * testsuite/thread/pthread2.cc: Likewise.
1463         * testsuite/thread/pthread3.cc: Likewise.
1464         * testsuite/thread/pthread4.cc: Likewise.
1465         * testsuite/thread/pthread5.cc: Likewise.
1466         * testsuite/thread/pthread6.cc: Likewise.
1467         * testsuite/thread/pthread7-rope.cc: Likewise.
1469 2003-07-30  Phil Edwards  <pme@gcc.gnu.org>
1471         * include/bits/c++config:  Partial reversion (comment placement) of
1472         previous patch.
1474 2003-07-30  Benjamin Kosnik  <bkoz@redhat.com>
1476         * include/bits/c++config (_GLIBCXX_FULLY_COMPLIANT_HEADERS): Remove.
1477         (_GLIBCXX_NO_TEMPLATE_EXPORT): To _GLIBCXX_EXPORT_TEMPLATE.
1478         (_GLIBCXX_AT_AT): Remove.
1479         (__USE_MALLOC): Remove.
1480         * include/std/std_fstream.h: Modify.
1481         * include/bits/basic_ios.h: Same.
1482         * include/bits/valarray_array.h: Same.
1483         * include/c_std/std_cmath.h: Same.
1484         * include/c_std/cmath.tcc: Same.
1485         * include/std/std_vector.h: Same.
1486         * include/std/std_string.h: Same.
1487         * include/std/std_stack.h: Same.
1488         * include/std/std_queue.h: Same.
1489         * include/std/std_list.h: Same.
1490         * include/std/std_deque.h: Same.
1491         * include/std/std_streambuf.h: Same.
1492         * include/std/std_sstream.h: Same.
1493         * include/std/std_ostream.h: Same.
1494         * include/std/std_istream.h: Same.
1495         * include/bits/valarray_array.tcc: Same, format.
1497         * include/c/std_cctype.h: Fix include guards.
1498         * include/c/std_cerrno.h: Same.
1499         * include/c/std_cfloat.h: Same.
1500         * include/c/std_climits.h: Same.
1501         * include/c/std_clocale.h: Same.
1502         * include/c/std_cmath.h: Same.
1503         * include/c/std_csetjmp.h: Same.
1504         * include/c/std_csignal.h: Same.
1505         * include/c/std_cstdarg.h: Same.
1506         * include/c/std_cstddef.h: Same.
1507         * include/c/std_cstdio.h: Same.
1508         * include/c/std_cstdlib.h: Same.
1509         * include/c/std_cstring.h: Same.
1510         * include/c/std_ctime.h: Same.
1511         * include/c/std_cwchar.h: Same.
1512         * include/c/std_cwctype.h: Same.
1513         * include/c_std/cmath.tcc: Same.
1514         * include/c_std/std_cmath.h: Same.
1516 2003-07-30  Gawain Bolton  <gp.bolton@computer.org>
1518         PR libstdc++/11504.
1519         * include/bits/stl_tree.h: Replace C-style casts with C++-style
1520         casts.  Changes to avoid casting away constness.  Eliminate
1521         _Rb_tree_base_iterator class.  Change _Rb_tree_iterator to use
1522         initialization lists.  Move out implementation of __black_count()
1523         to...
1524         * src/stl_tree.cc: ...here and rename _Rb_tree_black_count().
1525         Rename_Rb_tree_base_iterator::_M_increment() to
1526         _Rb_tree_increment and _Rb_tree_base_iterator::_M_decrement() to
1527         _Rb_tree_decrement.
1528         * config/linker-map.gnu: Add and change symbols here.
1530 2003-07-30  Jonathan Wakely  <redi@gcc.gnu.org>
1532         * docs/html/22_locale/howto.html: Use locale::classic() instead
1533         of locale("C").
1535 2003-07-28  Benjamin Kosnik  <bkoz@redhat.com>
1537         * testsuite/testsuite_hooks.h: Remove list include.
1538         (func_callback): Define as unique type, not std::list.
1539         Change DEBUG_ASSERT to _GLIBCXX_ASSERT.
1540         * testsuite/libstdc++-v3.dg/dg.exp: Same.
1541         * testsuite/lib/libstdc++-v3-dg.exp (libstdc++-v3-init): Same.
1542         * testsuite/23_containers/bitset_ctor.cc:
1543         * testsuite/17_intro/header_ciso646.cc: Remove DEBUG_ASSERT.
1544         * testsuite/18_support/numeric_limits.cc: Same.
1545         * testsuite/21_strings/basic_string/append/char/1.cc: Same.
1546         * testsuite/21_strings/basic_string/append/wchar_t/1.cc: Same.
1547         * testsuite/21_strings/basic_string/compare/char/1.cc: Same.
1548         * testsuite/21_strings/basic_string/compare/wchar_t/1.cc: Same.
1549         * testsuite/21_strings/basic_string/element_access/char/1.cc: Same.
1550         * testsuite/21_strings/basic_string/element_access/char/2.cc: Same.
1551         * testsuite/21_strings/basic_string/element_access/char/3.cc: Same.
1552         * testsuite/21_strings/basic_string/element_access/wchar_t/1.cc: Same.
1553         * testsuite/21_strings/basic_string/element_access/wchar_t/2.cc: Same.
1554         * testsuite/21_strings/basic_string/element_access/wchar_t/3.cc: Same.
1555         * testsuite/21_strings/basic_string/find/char/1.cc: Same.
1556         * testsuite/21_strings/basic_string/find/char/2.cc: Same.
1557         * testsuite/21_strings/basic_string/find/char/3.cc: Same.
1558         * testsuite/21_strings/basic_string/find/wchar_t/1.cc: Same.
1559         * testsuite/21_strings/basic_string/find/wchar_t/2.cc: Same.
1560         * testsuite/21_strings/basic_string/find/wchar_t/3.cc: Same.
1561         * testsuite/21_strings/basic_string/insert/char/1.cc: Same.
1562         * testsuite/21_strings/basic_string/insert/char/2.cc: Same.
1563         * testsuite/21_strings/basic_string/insert/wchar_t/1.cc: Same.
1564         * testsuite/21_strings/basic_string/insert/wchar_t/2.cc: Same.
1565         * testsuite/21_strings/basic_string/inserters_extractors/char/1.cc:
1566         * testsuite/21_strings/basic_string/inserters_extractors/char/4.cc:
1567         * testsuite/21_strings/basic_string/inserters_extractors/char/5.cc:
1568         * testsuite/21_strings/basic_string/inserters_extractors/char/6.cc:
1569         * testsuite/21_strings/basic_string/inserters_extractors/char/7.cc:
1570         * testsuite/21_strings/basic_string/inserters_extractors/wchar_t/1.cc:
1571         * testsuite/21_strings/basic_string/inserters_extractors/wchar_t/4.cc:
1572         * testsuite/21_strings/basic_string/inserters_extractors/wchar_t/5.cc:
1573         * testsuite/21_strings/basic_string/inserters_extractors/wchar_t/6.cc:
1574         * testsuite/21_strings/basic_string/inserters_extractors/wchar_t/7.cc:
1575         * testsuite/21_strings/basic_string/operators/char/1.cc: Same.
1576         * testsuite/21_strings/basic_string/operators/char/2.cc: Same.
1577         * testsuite/21_strings/basic_string/operators/wchar_t/1.cc: Same.
1578         * testsuite/21_strings/basic_string/operators/wchar_t/2.cc: Same.
1579         * testsuite/21_strings/basic_string/replace/char/1.cc: Same.
1580         * testsuite/21_strings/basic_string/replace/wchar_t/1.cc: Same.
1581         * testsuite/21_strings/basic_string/rfind/char/1.cc: Same.
1582         * testsuite/21_strings/basic_string/rfind/char/2.cc: Same.
1583         * testsuite/21_strings/basic_string/rfind/char/3.cc: Same.
1584         * testsuite/21_strings/basic_string/rfind/wchar_t/1.cc: Same.
1585         * testsuite/21_strings/basic_string/rfind/wchar_t/2.cc: Same.
1586         * testsuite/21_strings/basic_string/rfind/wchar_t/3.cc: Same.
1587         * testsuite/21_strings/basic_string/substr/char/1.cc: Same.
1588         * testsuite/21_strings/basic_string/substr/wchar_t/1.cc: Same.
1589         * testsuite/23_containers/bitset_ctor.cc: Same.
1590         * testsuite/23_containers/bitset_shift.cc: Same.
1591         * testsuite/23_containers/vector_ctor.cc: Same.
1592         * testsuite/23_containers/vector_element_access.cc: Same.
1593         * testsuite/24_iterators/istreambuf_iterator.cc: Same.
1594         * testsuite/24_iterators/iterator.cc: Same.
1595         * testsuite/24_iterators/ostreambuf_iterator.cc: Same.
1596         * testsuite/25_algorithms/lower_bound.cc: Same.
1597         * testsuite/26_numerics/complex_inserters_extractors.cc: Same.
1598         * testsuite/27_io/basic_istream/extractors_arithmetic/char/01.cc: Same.
1599         * testsuite/27_io/basic_istream/extractors_arithmetic/char/02.cc: Same.
1600         * testsuite/27_io/basic_istream/extractors_arithmetic/char/03.cc: Same.
1601         * testsuite/27_io/basic_istream/extractors_arithmetic/char/06.cc: Same.
1602         * testsuite/27_io/basic_istream/extractors_arithmetic/char/07.cc: Same.
1603         * testsuite/27_io/basic_istream/extractors_arithmetic/char/08.cc: Same.
1604         * testsuite/27_io/basic_istream/extractors_arithmetic/char/09.cc: Same.
1605         * testsuite/27_io/basic_istream/extractors_arithmetic/char/10.cc: Same.
1606         * testsuite/27_io/basic_ostream/inserters_arithmetic/char/1.cc: Same.
1607         * testsuite/27_io/basic_ostream/inserters_arithmetic/wchar_t/1.cc:
1608         Same.
1610 2003-07-28  Phil Edwards  <pme@gcc.gnu.org>
1612         * docs/doxygen/user.cfg.in, docs/html/abi.txt, docs/html/debug.html,
1613         docs/html/test.html, docs/html/17_intro/headers_cc.txt,
1614         docs/html/17_intro/howto.html, docs/html/ext/howto.html:  Change
1615         GLIBCPP to GLIBCXX (and explain as needed).
1617 2003-07-28  Phil Edwards  <pme@gcc.gnu.org>
1619         * README:  Update.
1621 2003-07-28  Phil Edwards  <pme@gcc.gnu.org>
1623         * testsuite/22_locale/messages/members/char/1.cc,
1624         testsuite/22_locale/messages/members/char/2.cc,
1625         testsuite/22_locale/messages/members/char/3.cc,
1626         testsuite/22_locale/messages_byname/1.cc:  Update comment regarding
1627         the origin of LOCALEDIR.
1628         * testsuite/lib/libstdc++-v3.exp:  New file.
1630 2003-07-25  Benjamin Kosnik  <bkoz@redhat.com>
1632         * include/bits/char_traits.h: Update copyright, tweak.
1633         * testsuite/ext/pod_char_traits.cc: Explicitly qualify namespace
1634         std types.
1636 2003-07-24  Matt Austern  <austern@apple.com>
1638         * /include/bits/char_traits.h (class char_traits): Put all the
1639         real work into the new class template __gnu_cxx::char_traits.
1640         Gave generic definitions for member functions.  Types are taken
1641         from the new class template __gnu_cxx::_Char_types.
1642         * testsuite/21_strings/char_traits/requirements/short/1.cc: New
1643         file.  Test of std::char_traits<short>, which serves as a test of
1644         the char_traits primary template.
1646 2003-07-24  Benjamin Kosnik  <bkoz@redhat.com>
1648         * testsuite/*: Change __gnu_cxx_test to __gnu_test.
1650 2003-07-24  Nathan Myers  <ncm-nospam@cantrip.org>
1652         * testsuite/23_containers/map_operators.cc: Conform to
1653         container requirement as value must be Assignable.
1655 2003-07-23  Alexandre Oliva  <aoliva@redhat.com>
1657         * acinclude.m4 (GLIBCXX_ENABLE_PCH): Rework test such that it
1658         tests not only generation of pch files, but also their use.
1659         * aclocal.m4, configure: Rebuilt.
1661 2003-07-23  Steve Ellcey  <sje@cup.hp.com>
1663         * config/cpu/hppa/atomicity.h: Change
1664         _GLIBCXX_INST_GLIBCXX_ATOMICITY_LOCK to _GLIBCXX_INST_ATOMICITY_LOCK
1665         to match misc-inst.cc
1667 2003-07-23  Steve Ellcey  <sje@cup.hp.com>
1669         * include/c_std/cmath.tcc: Use _GLIBCXX_ prefix on file guard.
1670         * include/c_std/std_cctype.h: Ditto.
1671         * include/c_std/std_cerrno.h: Ditto.
1672         * include/c_std/std_cfloat.h: Ditto.
1673         * include/c_std/std_climits.h: Ditto.
1674         * include/c_std/std_clocale.h: Ditto.
1675         * include/c_std/std_cmath.h: Ditto.
1676         * include/c_std/std_csetjmp.h: Ditto.
1677         * include/c_std/std_csignal.h: Ditto.
1678         * include/c_std/std_cstdarg.h: Ditto.
1679         * include/c_std/std_cstddef.h: Ditto.
1680         * include/c_std/std_cstdio.h: Ditto.
1681         * include/c_std/std_cstdlib.h: Ditto.
1682         * include/c_std/std_cstring.h: Ditto.
1683         * include/c_std/std_ctime.h: Ditto.
1684         * include/c_std/std_cwchar.h: Ditto.
1685         * include/c_std/std_cwctype.h: Ditto.
1686         * include/std/std_algorithm.h: Ditto.
1687         * include/std/std_bitset.h: Ditto.
1688         * include/std/std_complex.h: Ditto.
1689         * include/std/std_deque.h: Ditto.
1690         * include/std/std_fstream.h: Ditto.
1691         * include/std/std_functional.h: Ditto.
1692         * include/std/std_iomanip.h: Ditto.
1693         * include/std/std_ios.h: Ditto.
1694         * include/std/std_iosfwd.h: Ditto.
1695         * include/std/std_iostream.h: Ditto.
1696         * include/std/std_istream.h: Ditto.
1697         * include/std/std_iterator.h: Ditto.
1698         * include/std/std_limits.h: Ditto.
1699         * include/std/std_list.h: Ditto.
1700         * include/std/std_locale.h: Ditto.
1701         * include/std/std_map.h: Ditto.
1702         * include/std/std_memory.h: Ditto.
1703         * include/std/std_numeric.h: Ditto.
1704         * include/std/std_ostream.h: Ditto.
1705         * include/std/std_queue.h: Ditto.
1706         * include/std/std_set.h: Ditto.
1707         * include/std/std_sstream.h: Ditto.
1708         * include/std/std_stack.h: Ditto.
1709         * include/std/std_stdexcept.h: Ditto.
1710         * include/std/std_streambuf.h: Ditto.
1711         * include/std/std_string.h: Ditto.
1712         * include/std/std_utility.h: Ditto.
1713         * include/std/std_valarray.h: Ditto.
1714         * include/std/std_vector.h: Ditto.
1716 2003-07-22  Doug Gregor  <dgregor@apple.com>
1718         * include/bits/basic_string.h (basic_string::insert): Deprecate
1719         GNU extension.
1721 2003-07-21  Benjamin Kosnik  <bkoz@redhat.com>
1723         * scripts/testsuite_flags.in (--build-includes): Remove extraneous
1724         paths for libio.
1725         * testsuite/27_io/basic_istream/sentry/char/3983-fstream.cc
1726         (test03): Include typeinfo for bad_cast.
1727         * testsuite/27_io/basic_ostream/sentry/char/3983-sstream.cc: Same.
1728         * testsuite/27_io/basic_ostream/sentry/char/3983-fstream.cc: Same.
1729         * testsuite/27_io/basic_istream/sentry/char/3983-sstream.cc: Same.
1731 2003-07-21  Doug Gregor  <dgregor@apple.com>
1733         * include/bits/boost_concept_check.h:
1734         (_EqualityComparableConcept::__constraints): Remove != from the
1735         list of constraints; it is not listed in Table 28 of the C++98
1736         standard.
1738 2003-07-18  Andreas Jaeger  <aj@suse.de>
1740         * config/abi/sparc-linux-gnu/baseline_symbols.txt: New file.
1741         * config/abi/mips-linux-gnu/baseline_symbols.txt: New file.
1742         * config/abi/hppa-linux-gnu/baseline_symbols.txt: New file.
1743         * config/abi/x86_64-linux-gnu/baseline_symbols.txt: Regenerated.
1745 2003-07-17  Benjamin Kosnik  <bkoz@redhat.com>
1747         * config/linker-map.gnu: Add __moneypunct_cache, __timepunct_cache.
1748         * config/locale/generic/messages_members.h: Tweaks.
1749         * config/locale/generic/monetary_members.cc
1750         (moneypunct::_M_initialize_moneypunct): Use cache.
1751         (moneypunct::~moneypunct): Delete cache.
1752         * config/locale/generic/time_members.cc:
1753         (__timepunct::_M_initialize_timepunct): Use cache.
1754         * config/locale/generic/time_members.h:
1755         (__timepunct::~__timepunct): Delete cache.
1756         (__timepunct::__timepunct): Set cache.
1757         * config/locale/gnu/messages_members.h: Tweaks.
1758         * config/locale/gnu/monetary_members.cc:
1759         (moneypunct::_M_initialize_moneypunct): Use cache.
1760         (moneypunct::~moneypunct): Delete cache.
1761         * config/locale/gnu/time_members.cc:
1762         (__timepunct::_M_initialize_timepunct): Use cache.
1763         * config/locale/gnu/time_members.h:
1764         (__timepunct::~__timepunct): Delete cache.
1765         (__timepunct::__timepunct): Set cache.
1766         * include/bits/locale_facets.h (__timepunct_cache): New.
1767         (__moneypunct_cache): New.
1768         * include/bits/locale_facets.tcc: Tweak.
1769         * src/locale.cc (__timepunct::_S_timezones): Adjust for cache.
1770         * src/locale-inst.cc: Instantiate caches.
1771         * src/globals.cc: Add "C" caches.
1772         * src/localename.cc: Use external "C" caches.
1774 2003-07-17  Phil Edwards  <pme@gcc.gnu.org>
1776         * docs/doxygen/guide.html:  Fix typo.
1778 2003-07-16  Benjamin Kosnik  <bkoz@redhat.com>
1780         * include/ext/pod_char_traits.h: Add state template argument.
1782 2003-07-16  Benjamin Kosnik  <bkoz@redhat.com>
1784         * include/bits/locale_facets.h (__num_base::_S_atoms_in): Add -+xX.
1785         (num_get::_M_convert_int): To _M_insert_int.
1786         (num_get::_M_convert_float): To _M_insert_float.
1787         * include/bits/locale_facets.tcc (num_get::_M_extract_float):
1788         Use caches for ctype, num_get.
1789         (num_get::_M_extract_int): Same.
1790         (num_get::get(bool)): Same.
1791         (__verify_grouping): Use size_t.
1792         * src/locale-inst.cc: Update.
1793         * src/locale.cc: Adjust _S_atoms_in.
1795 2003-07-16  Phil Edwards  <pme@gcc.gnu.org>
1797         * docs/doxygen/mainpage.html:  Move building/writing instructions...
1798         * docs/doxygen/guide.html:  ...to here.  New file.
1800 2003-07-16  Jonathan Wakely  <redi@gcc.gnu.org>
1802         * docs/html/ext/howto.html: Update URL for SGI STL docs.
1803         * docs/html/faq/index.html: Same.
1804         * docs/html/faq/index.txt: Regenerate.
1806 2003-07-16  Paolo Carlini  <pcarlini@unitus.it>
1808         PR libstdc++/11528
1809         * include/bits/locale_facets.tcc (money_get::do_get):
1810         Strip only _leading_ zeros.
1811         * testsuite/22_locale/money_get/get/char/11528.cc: Add.
1812         * testsuite/22_locale/money_get/get/wchar_t/11528.cc: Add.
1814 2003-07-16  Gerald Pfeifer  <pfeifer@dbai.tuwien.ac.at>
1816         * include/ext/hash_map (class hash_multimap): Remove extra
1817         semicolons from __glibcxx_class_requires3 entries.
1818         * include/ext/hash_set (class hash_set): Ditto.
1819         (class hash_multiset): Ditto.
1821 2003-07-15  Petur Runolfsson  <peturr02@ru.is>
1823         * include/bits/char_traits.h (char_traits<wchar_t>::move):
1824         Change last parameter from int_type to size_t.
1826 2003-07-15  Jerry Quinn  <jlquinn@optonline.net>
1828         * include/bits/stl_algo.h (includes, set_union, set_intersection,
1829         set_difference, set_symmetric_difference, max_element, min_element,
1830         next_permutation, prev_permutation, find_first_of, find_end):
1831         Document.
1832         * include/bits/stl_algobase.h (copy,copy_backward):  Clarify overlap
1833         restrictions in docs.
1834         * include/bits/stl_heap.h (push_heap, pop_heap, make_heap, sort_heap):
1835         Document.
1836         * docs/doxygen/doxygroups.cc (setoperations):  New group.
1838 2003-07-15  Jerry Quinn  <jlquinn@optonline.net>
1840         * include/bits/basic_string.h:  Document public functions.
1841         * docs/doxygen/TODO:  Update c21 todo.
1843 2003-07-15  Jerry Quinn  <jlquinn@optonline.net>
1845         * include/bits/stl_list.h:  Document more functions.
1846         * docs/doxygen/TODO:  Update c23 todo.
1848 2003-07-14  Paolo Carlini  <pcarlini@unitus.it>
1850         * config/locale/gnu/c_locale.h (__convert_from_v): One more
1851         qualification.
1853 2003-07-14  Paolo Carlini  <pcarlini@unitus.it>
1855         * include/bits/stl_tempbuf.h: Qualify free with std::.
1856         * src/locale.cc: Include <cstdlib>, qualify getenv.
1858 2003-07-14  Paolo Carlini  <pcarlini@unitus.it>
1860         * config/locale/gnu/c_locale.h (__convert_from_v): Include
1861         <cstdio>. Qualify names.
1862         * config/locale/generic/c_locale.h (__convert_from_v): Ditto.
1864 2003-07-14  Paolo Carlini  <pcarlini@unitus.it>
1865             Nathan C. Myers  <ncm-nospam@cantrip.org>
1867         PR libstdc++/11378
1868         * include/std/std_fstream.h (xsputn): Declare only.
1869         * include/bits/fstream.tcc (xsputn): Define, optimize for the
1870         always_noconv() case: when __n is sufficiently large flush
1871         the buffer and issue a direct write, if possible combining the
1872         two with writev in __basic_file<>::xsputn_2.
1873         * config/io/basic_file_stdio.h (__basic_file<>::xsputn_2):
1874         New, declare.
1875         * config/io/basic_file_stdio.cc (__basic_file<>::xsputn_2):
1876         Define.
1877         * acinclude.m4 (GLIBCXX_CHECK_WRITE): New macro, checking for
1878         the availability of writev in <sys/uio.h>.
1879         * configure.in: Call here.
1880         * acconfig.h: Add undef for the corresponding symbol.
1881         * aclocal.m4: Regenerate.
1882         * configure: Regenerate.
1883         * config.h.in: Regenerate.
1884         * testsuite/27_io/basic_filebuf/setbuf/char/3.cc: Tweak.
1886         * include/std/std_fstream.h (sync): Constify a variable.
1888 2003-07-14  Benjamin Kosnik  <bkoz@redhat.com>
1890         * testsuite/27_io/ios_base/cons/assign_neg.cc: Fix line numbers.
1891         * testsuite/27_io/ios_base/cons/copy_neg.cc: Same.
1893 2003-07-14  Gabriel Dos Reis  <gcc@integrable-solutions.net>
1895         * config/locale/gnu/c_locale.h (__convert_from_v): Include
1896         <cstring> and <cstdlib>. Qualify names.
1898 2003-07-13  Mark Mitchell  <mark@codesourcery.com>
1900         * config/locale/generic/c_locale.h: Include <cstdlib> and
1901         <cstring>.
1902         * include/bits/boost_concept_check.h: Add this-> to unqualified
1903         method calls.
1904         * include/bits/deque.tcc: Likewise.
1905         * include/bits/locale_facets.h : Likewise.
1906         * include/bits/ostream.tcc: Likewise.
1907         * include/bits/stl_algo.h: Likewise.
1908         * include/bits/stl_bvector.h: Likewise.
1909         * include/bits/stl_deque.h: Likewise.
1910         * include/bits/stl_list.h: Likewise.
1911         * include/bits/stl_tree.h: Likewise.
1912         * include/bits/stl_vector.h: Likewise.
1913         * include/bits/vector.tcc: Likewise.
1914         * include/ext/rope: Likewise.
1915         * include/ext/ropeimpl.h: Likewise.
1916         * include/ext/stdio_filebuf.h: Likewise.
1918 2003-07-11  Jerry Quinn  <jlquinn@optonline.net>
1920         * include/bits/basic_ios.h (copyfmt): Document.
1921         * include/bits/ios_base.h (event, event_callback, register_callback,
1922         xalloc, iword, pword):  Document.
1923         (imbue, ~ios_base): Update docs on callbacks.
1925 2003-07-11  Phil Edwards  <pme@gcc.gnu.org>
1927         * acinclude.m4 (GLIBCC_ENABLE_SYMVERS):  Tweak comments.  Add
1928         warning messages if the environment cannot support symbol versioning.
1929         (port_specific_symbol_file):  It's plural, add an 's' on the end.
1930         * configure.host:  Likewise.
1931         * src/Makefile.am:  Likewise.
1932         * config/linker-map.gnu:  Remove one semicolon, heh.
1933         * scripts/extract_symvers:  Don't assume useful 'export' syntax.
1934         Set LANG as well as LC_ALL for possibly-broken sort(1)s.
1935         * aclocal.m4, configure, src/Makefile.in:  Regenerated.
1937 2003-07-09  Benjamin Kosnik  <bkoz@redhat.com>
1939         * include/bits/locale_facets.tcc: Use function object for
1940         __use_cache instead of template function. Partially specialize for
1941         __numpunct<_CharT>.
1942         * include/bits/locale_classes.h: Update friend declaration for
1943         __use_cache.
1944         (_M_install_cache): No throw exception specs.
1945         * src/locale.cc: Remove __use_cache specializations.
1946         * include/ext/pod_char_traits.h (length): Tweak.
1947         * include/bits/locale_facets.h (__numpunct_cache): Remove
1948         char_type typedef.
1949         * testsuite/testsuite_hooks.h (pod_unsigned_int): Remove.
1950         (pod_long): Remove.
1951         * testsuite/22_locale/numpunct/members/char/cache_1.cc: New.
1952         * testsuite/22_locale/numpunct/members/char/cache_2.cc: New.
1953         * testsuite/22_locale/numpunct/members/wchar_t/cache_1.cc: New.
1954         * testsuite/22_locale/numpunct/members/wchar_t/cache_2.cc: New.
1955         * testsuite/22_locale/numpunct/members/pod/1.cc: New.
1956         * testsuite/22_locale/numpunct/members/pod/2.cc: New.
1958 2003-07-09  Jerry Quinn  <jlquinn@optonline.net>
1960         * src/ios.cc (_M_grow_words):  Fix spelling.
1962 2003-07-09  Gawain Bolton  <gp.bolton@computer.org>
1964         * include/bits/stl_tree.h: Move larger member functions in
1965         _Rb_tree_base_iterator and _Rb_tree_node to...
1966         * src/stl_tree.cc: Here.
1967         * src/Makefile.in: Add stl_tree.cc.
1968         * src/Makefile.in: Regenerated.
1969         * config/linker-map.gnu: Add symbols here.
1971 2003-07-08  Benjamin Kosnik  <bkoz@redhat.com>
1973         * testsuite/ext/pod_char_traits.cc: New.
1974         * include/ext/pod_char_traits.h: New.
1975         * include/Makefile.am (ext_headers): Add pod_char_traits.h.
1976         * include/Makefile.in: Regenerate.
1977         * docs/html/21_strings/howto.html: Update.
1979 2003-07-08  Gawain Bolton  <gp.bolton@computer.org>
1981         * testsuite/performance/list_create_fill_sort.cc: New.
1983 2003-07-08  Benjamin Kosnik  <bkoz@redhat.com>
1985         * config/locale/generic/numeric_members.cc: Correct type info.
1986         * config/locale/gnu/numeric_members.cc: Same.
1987         * include/bits/locale_facets.h: Same.
1989         * include/bits/char_traits.h: Correct spacing.
1991         * src/locale.cc: Wrap to 80 col.
1993 2003-07-07  Paolo Carlini  <pcarlini@unitus.it>
1995         * include/std/std_complex.h: Partially revert last
1996         changes: cmath functions must not be qualified.
1998 2003-07-06  Phil Edwards  <pme@gcc.gnu.org>
2000         * acinclude.m4 (GLIBCXX_ENABLE_SYMVERS):  Do not test for binutils
2001         2.11 with globbing backport fix.
2002         * aclocal.m4, configure:  Regenerated.
2004 2003-07-06  Paolo Carlini  <pcarlini@unitus.it>
2006         * include/std/std_fstream.h (xsputn): Don't call _M_destroy_pback:
2007         if output is at all possible (!_M_reading), cannot be active.
2009         * include/std/std_fstream.h: Tweak comments to doxygen style.
2011 2003-07-06  Paolo Carlini  <pcarlini@unitus.it>
2013         * include/bits/locale_classes.h: Fully qualify standard
2014         functions with std::, thus avoiding Koenig lookup.
2015         * include/bits/locale_facets.tcc: Likewise.
2016         * src/locale.cc: Likewise.
2017         * src/localename.cc: Likewise.
2019 2003-07-06  Phil Edwards  <pme@gcc.gnu.org>
2021         * include/bits/allocator_traits.h:  Fix doxygen markup.
2022         * include/ext/mt_allocator.h:  Likewise.
2024 2003-07-06  Phil Edwards  <pme@gcc.gnu.org>
2026         * testsuite/testsuite_hooks.h:  Guard against a missing unlink().
2028 2003-07-05  Phil Edwards  <pme@gcc.gnu.org>
2030         * acinclude.m4 (GLIBCXX_ENABLE_SYMVERS):  Bump minimal version
2031         requirement.  Add port_specific_symbol_file variable.
2032         * configure.host:  Add docs for port_specific_symbol_file.
2033         Clean up try_cpu block for x86.
2034         * config/linker-map.gnu:  No more "last symbol can't have a
2035         semicolon" kaka.  Add hook for port-specific symbols.
2036         * src/Makefile.am:  Remove trailing whitespace.
2037         (libstdc++-symbol.ver):  Detect the presence of port-specific
2038         symbols, and add them accordingly.
2040         * docs/html/17_intro/porting.texi:  Bring up to date.
2042         * src/Makefile.in, aclocal.m4, configure,
2043         docs/html/17_intro/porting.html:  Regenerated.
2045 2003-07-05  Phil Edwards  <pme@gcc.gnu.org>
2047         * scripts/create_testsuite_files:  New file.
2048         * testsuite/Makefile.am (all-local, check-performance):  Use it.
2049         * testsuite/lib/libstdc++-v3-dg.exp (v3-computer-tests):  Remove.
2050         * testsuite/Makefile.in:  Regenerated.
2052         * testsuite/performance/filebuf_sputc.cc:  Remove the temporary
2053         files at the end.
2054         * testsuite/performance/fstream_seek_write.cc:  Likewise.
2055         * testsuite/performance/ofstream_insert_float.cc:  Likewise.
2056         * testsuite/performance/ofstream_insert_int.cc:  Likewise.
2057         * testsuite/abi_check.cc (main):  Nicer spacing in usage output.
2059 2003-07-05  Gawain Bolton  <gp.bolton@computer.org>
2061         * include/bits/stl_list.h: Performance and memory usage
2062         improvements. In particular, the behaviour of the constructor and
2063         destructor as the list header node is no longer dynamically
2064         allocated/de-allocated.
2065         * include/bits/list.tcc: Likewise.
2067 2003-07-05  Paolo Carlini  <pcarlini@unitus.it>
2069         * include/std/std_complex.h: Fully qualify standard
2070         functions with std::, thus avoiding Koenig lookup.
2071         * include/std/std_memory.h: Likewise.
2072         * include/std/std_valarray.h: Likewise.
2074 2003-07-05  Gawain Bolton  <gp.bolton@computer.org>
2076         * include/bits/stl_tree.h: _Rb_tree_rebalance():  Add local
2077           variable for grandparent and use const
2079 2003-07-05  David Billinghurst <David.Billinghurst@riotinto.com>
2081         * testsuite/27_io/basic_filebuf/close/char/4879.cc: xfail on cygwin
2082         * testsuite/27_io/basic_filebuf/close/char/9964.cc: Ditto
2083         * testsuite/27_io/basic_filebuf/open/char/9507.cc: Ditto
2084         * testsuite/27_io/basic_filebuf/showmanyc/char/9533-1.cc: Ditto
2085         * testsuite/27_io/basic_filebuf/underflow/char/10097.cc: Ditto
2086         * testsuite/27_io/objects/char/7.cc: Ditto
2087         * testsuite/27_io/objects/char/9661-1.cc: Ditto
2089 2003-07-05  Paolo Carlini  <pcarlini@unitus.it>
2091         * include/std/std_bitset.h: Fully qualify standard
2092         functions with std::, thus avoiding Koenig lookup.
2094         * include/std/std_fstream.h: Change comment to doxygen style.
2096 2003-07-05  Phil Edwards  <pme@gcc.gnu.org>
2098         * include/std/std_limits.h:  More CPP->CXX changes.
2099         * scripts/check_survey.in:  Likewise.
2101 2003-07-04  Benjamin Kosnik  <bkoz@redhat.com>
2103         Move from CPP to CXX.
2104         * include/bits/c++config: Move to GLIBCXX from GLIBCPP.
2105         * testsuite/Makefile.am: Same.
2106         * testsuite/Makefile.in: Regenerate.
2107         * po/Makefile.am: Same.
2108         * po/Makefile.in: Regenerate.
2109         * libsupc++/Makefile.am: Same.
2110         * libsupc++/Makefile.in: Regenerate.
2111         * libmath/Makefile.am: Same.
2112         * libmath/Makefile.in: Regenerate.
2113         * include/Makefile.am: Same.
2114         * include/Makefile.in: Regenerate.
2115         * src/Makefile.am: Same.
2116         * src/Makefile.in: Regenerate.
2117         * acconfig.h: Same.
2118         * configure.host: Same.
2119         * configure.in: Same.
2120         * configure: Regenerate.
2121         * acinclude.m4: Same.
2122         * aclocal.m4: Same.
2123         * src: Change all files in this directory.
2124         * testsuite: Same.
2125         * include: Same, standardize include guards.
2126         * config: Same.
2127         * libsupc++: Same.
2129 2003-07-04  Zack Weinberg  <zack@codesourcery.com>
2131         * testsuite/22_locale/collate/compare/wchar_t/2.cc
2132         * testsuite/22_locale/collate/compare/wchar_t/wrapped_env.cc
2133         * testsuite/22_locale/collate/compare/wchar_t/wrapped_locale.cc
2134         * testsuite/22_locale/collate/hash/wchar_t/2.cc
2135         * testsuite/22_locale/collate/hash/wchar_t/wrapped_env.cc
2136         * testsuite/22_locale/collate/hash/wchar_t/wrapped_locale.cc
2137         * testsuite/22_locale/collate/transform/wchar_t/2.cc
2138         * testsuite/22_locale/collate/transform/wchar_t/wrapped_env.cc
2139         * testsuite/22_locale/collate/transform/wchar_t/wrapped_locale.cc:
2140         XFAIL on all targets.
2142 2003-07-04  Benjamin Kosnik  <bkoz@redhat.com>
2144         * acinclude.m4 (GLIBCPP_ENABLE_PCH): Fix missed variable.
2145         * aclocal.m4: Regenerate.
2146         * configure: Regenerate.
2148 2003-07-04  Jerry Quinn  <jlquinn@optonline.net>
2150         * include/bits/locale_facets.tcc (__int_to_char): Move common case
2151         to the top.
2153 2003-07-04  Benjamin Kosnik  <bkoz@redhat.com>
2154             Petur Runolfsson  <peturr02@ru.is>
2156         * config/io/basic_file_stdio.cc: Revert.
2158 2003-07-04  Paolo Carlini  <pcarlini@unitus.it>
2160         * include/bits/deque.tcc: Fully qualify standard
2161         functions with std::, thus avoiding Koenig lookup.
2162         * include/bits/gslice_array.h: Likewise.
2163         * include/bits/indirect_array.h: Likewise.
2164         * include/bits/list.tcc: Likewise.
2165         * include/bits/mask_array.h: Likewise.
2166         * include/bits/slice_array.h: Likewise.
2168 2003-07-04  Gawain Bolton  <gbolton@free.fr>
2170         * include/bits/stl_tree.h: Performance and memory usage
2171         improvements.
2173 2003-07-04  H.J. Lu <hongjiu.lu@intel.com>
2175         * Makefile.am: Replace PWD with PWD_COMMAND.
2176         * Makefile.in: Regenerated.
2177         * docs/html/Makefile: Likewise.
2179 2003-07-04  Paolo Carlini  <pcarlini@unitus.it>
2181         * include/bits/valarray_array.h: Fully qualify standard
2182         functions with std::, thus avoiding Koenig lookup.
2183         * include/bits/vector.tcc: Likewise.
2185 2003-07-04  Benjamin Kosnik  <bkoz@redhat.com>
2187         * include/Makefile.am: Update target_ to host_.
2188         * include/Makefile.in: Regenerate.
2189         * src/Makefile.am: Same.
2190         * src/Makefile.in: Regenerate.
2192         * config/os/gnu-linux/os_defines.h: Remove glibc-2.0 support.
2194 2003-07-04  Benjamin Kosnik  <bkoz@redhat.com>
2196         * acinclude.m4 (GLIBCPP_ENABLE_DEBUG_FLAGS): To
2197         --enable-libstdcxx-debug-flags.
2198         (GLIBCPP_ENABLE_DEBUG_FLAGS): To --enable-libstdcxx-debug.
2199         (GLIBCPP_ENABLE_PCH): To --enable-libstdcxx-pch.
2200         * aclocal.m4: Regenerate.
2201         * configure: Same.
2202         * docs/html/configopts.html: Update.
2204 2003-07-04  Paolo Carlini  <pcarlini@unitus.it>
2206         Revert the fix for libstdc++/11378.
2208 2003-07-04  Paolo Carlini  <pcarlini@unitus.it>
2210         PR libstdc++/11378
2211         * include/std/std_fstream.h (xsputn): In the unbuffered case,
2212         provided always_noconv(), issue directly _M_file.xsputn.
2213         * testsuite/performance/filebuf_unbuf_sputn.cc: New.
2215 2003-07-04  Paolo Carlini  <pcarlini@unitus.it>
2217         * include/bits/stl_list.h: Fully qualify standard
2218         functions with std::, thus avoiding Koenig lookup.
2219         * include/bits/stl_queue.h: Likewise.
2220         * include/bits/stl_raw_storage_iter.h: Likewise.
2221         * include/bits/stl_tempbuf.h: Likewise.
2222         * include/bits/stl_tree.h: Likewise.
2223         * include/bits/stl_uninitialized.h: Likewise.
2224         * include/bits/stl_vector.h: Likewise.
2225         * include/ext/rope: Change includes order.
2227 2003-07-04  Benjamin Kosnik  <bkoz@redhat.com>
2229         * configure.host (fpos_include_dir): Fix.
2231 2003-07-04  Paolo Carlini  <pcarlini@unitus.it>
2233         * include/bits/stl_heap.h: Fully qualify standard
2234         functions with std::, thus avoiding Koenig lookup.
2235         * include/bits/stl_iterator_base_funcs.h: Likewise.
2237         * include/bits/stl_algo.h: Qualify __iterator_category too.
2238         * include/bits/stl_algobase.h: Likewise.
2239         * include/bits/stl_bvector.h: Likewise.
2241         * include/bits/stl_algo.h: Don't qualify the pair type.
2243 2003-07-03  Benjamin Kosnik  <bkoz@redhat.com>
2245         * include/Makefile.am (target_headers): Add fpos.h
2246         (bits_headers): Remove.
2247         * include/Makefile.in: Regenerate.
2248         * configure.in: Add FPOS_INC_SRCDIR, substitute it.
2249         * configure: Regenerate.
2250         * configure.host: Add fpos_include_dir.
2251         * config/os/gnu-linux/fpos.h: New.
2252         * config/os/generic/fpos.h: Add.
2253         * include/bits/fpos.h: Remove.
2255         * config/io/c_io_stdio.h: Remove fpos_t typedef.
2257         * include/bits/fstream.tcc: Tweaks.
2258         * include/std/std_fstream.h: Same.
2260         * testsuite/27_io/fpos/1.cc (test01): Uncomment. Move to...
2261         * testsuite/27_io/fpos/mbstate_t/1.cc: ...here.
2262         * testsuite/27_io/fpos/mbstate_t/2.cc: Same.
2263         * testsuite/27_io/fpos/mbstate_t/3.cc: Same.
2264         * testsuite/27_io/fpos/1.cc: New.
2266 2003-07-03  Benjamin Kosnik  <bkoz@redhat.com>
2267             Petur Runolfsson  <peturr02@ru.is>
2269         * include/std/std_streambuf.h: Remove _M_pos.
2270         * config/io/basic_file_stdio.h: Use seekpos instead of seekoff.
2271         * config/io/basic_file_stdio.cc: Same, use fseek instead of lseek,
2272         use fread/fwrite instead of read/write.
2273         * testsuite/27_io/basic_filebuf/showmanyc/char/9533-2.cc: Fix.
2274         * testsuite/27_io/basic_filebuf/sputn/char/9339.cc: Close filebufs
2275         before reading again.
2276         * testsuite/27_io/objects/char/6.cc: Tweak.
2278 2003-07-03  David Edelsohn  <edelsohn@gnu.org>
2280         * testsuite/22_locale/num_put/put/char/7.cc: Guard with
2281         _GLIBCPP_USE_WCHAR_T.
2283 2003-07-02  Paolo Carlini  <pcarlini@unitus.it>
2285         * include/bits/basic_string.tcc (_M_replace_aux): Constify
2286         __n1 and __off1.
2288 2003-07-02  Paolo Carlini  <pcarlini@unitus.it>
2290         * include/bits/stl_bvector.h: Fully qualify standard
2291         functions with std::, thus avoiding Koenig lookup.
2292         * include/bits/stl_construct.h: Likewise.
2293         * include/bits/stl_deque.h: Likewise.
2295 2003-07-02  Paolo Carlini  <pcarlini@unitus.it>
2297         * testsuite/22_locale/num_put/put/char/7.cc: Include
2298         <testsuite_hooks.h>, tweak.
2299         * testsuite/22_locale/num_put/put/wchar_t/7.cc: Likewise.
2301 2003-07-01  Phil Edwards  <pme@gcc.gnu.org>
2303         * testsuite/Makefile.am (AM_MAKEFLAGS):  Set to -j1 (affects
2304         check* targets, but not libs/programs).
2305         * testsuite/Makefile.in:  Regenerate.
2307 2003-07-01  Roger Sayle  <roger@eyesopen.com>
2309         * acinclude.m4 (GLIBCPP_CHECK_STDLIB_SUPPORT): Fix typo in CXXFLAGS.
2310         (GLIBCPP_CHECK_MATH_SUPPORT): Likewise.
2311         * aclocal.m4: Regenerate.
2312         * configure: Regenerate.
2314 2003-07-01  Benjamin Kosnik  <bkoz@redhat.com>
2316         * acinclude.m4 (GLIBCPP_ENABLE_PCH): Fix obvious error.
2317         * aclocal.m4: Regenerated.
2318         * configure: Regenerated.
2320 2003-07-01  Paolo Carlini  <pcarlini@unitus.it>
2322         PR libstdc++/11389
2323         * include/bits/fstream.tcc (underflow): For encoding() == 0
2324         don't read more than __buflen chars.
2325         * testsuite/27_io/basic_filebuf/underflow/wchar_t/11389-1.cc: New.
2326         * testsuite/27_io/basic_filebuf/underflow/wchar_t/11389-2.cc: New.
2327         * testsuite/27_io/basic_filebuf/underflow/wchar_t/11389-3.cc: New.
2328         * testsuite/27_io/basic_filebuf/underflow/wchar_t/11389-4.cc: New.
2330 2003-07-01  Jerry Quinn  <jlquinn@optonline.net>
2332         * 22_locale/num_put/put/char/7.cc: New.
2333         * 22_locale/num_put/put/wchar_t/7.cc: New.
2335 2003-06-30  Jerry Quinn  <jlquinn@optonline.net>
2337         * src/locale.cc (__use_cache<numpunct>): Revert previous relocation.
2338         * include/bits/locale_facets.tcc (__use_cache<numpunct>): Ditto.
2340 2003-06-30  Benjamin Kosnik  <bkoz@redhat.com>
2342         * 27_io/basic_filebuf/seekoff/char/1-in.cc: New.
2343         * 27_io/basic_filebuf/seekoff/char/1-io.cc: New.
2344         * 27_io/basic_filebuf/seekoff/char/1-out.cc: New.
2345         * 27_io/basic_filebuf/seekoff/char/2-in.cc: New.
2346         * 27_io/basic_filebuf/seekoff/char/2-io.cc: New.
2347         * 27_io/basic_filebuf/seekoff/char/2-out.cc: New.
2348         * 27_io/basic_filebuf/seekoff/char/2.cc: Remove.
2349         * 27_io/basic_filebuf/seekoff/char/3-in.cc: New.
2350         * 27_io/basic_filebuf/seekoff/char/3-io.cc: Change.
2351         * 27_io/basic_filebuf/seekoff/char/3-out.cc: New.
2352         * 27_io/basic_filebuf/seekoff/char/4-io.cc: Remove.
2353         * 27_io/basic_filebuf/seekpos/char/1-in.cc: New.
2354         * 27_io/basic_filebuf/seekpos/char/1-io.cc: New.
2355         * 27_io/basic_filebuf/seekpos/char/1-out.cc: New.
2356         * 27_io/basic_filebuf/seekpos/char/2-in.cc: New.
2357         * 27_io/basic_filebuf/seekpos/char/2-io.cc: New.
2358         * 27_io/basic_filebuf/seekpos/char/2-out.cc: New.
2359         * 27_io/basic_filebuf/seekpos/char/2.cc: Change.
2360         * 27_io/basic_filebuf/seekpos/char/3-in.cc: New.
2361         * 27_io/basic_filebuf/seekpos/char/3-io.cc: Remove.
2362         * 27_io/basic_filebuf/seekpos/char/3-out.cc: New.
2363         * 27_io/basic_filebuf/seekpos/char/4-io.cc: Remove.
2364         * data/seekoff-1.tst: Remove.
2365         * data/seekoff-1io.tst: New.
2366         * data/seekoff-1out.tst: New.
2367         * data/seekoff-2.tst: Remove.
2368         * data/seekoff-2io.tst: New.
2369         * data/seekoff-2out.tst: New.
2370         * data/seekoff.txt
2371         * data/seekpos-1.tst: Remove.
2372         * data/seekpos-1io.tst: New.
2373         * data/seekpos-1out.tst: New.
2374         * data/seekpos-2.tst: Remove.
2375         * data/seekpos-2io.tst: New.
2376         * data/seekpos-2out.tst: New.
2377         * data/seekpos.txt: New.
2379 2003-06-30  Jerry Quinn  <jlquinn@optonline.net>
2381         * src/locale.cc (__use_cache<numpunct>): Move from here ...
2382         * include/bits/locale_facets.tcc (__use_cache<numpunct>): To
2383         here.
2385 2003-06-30  Paolo Carlini  <pcarlini@unitus.it>
2387         * include/bits/stl_algobase.h: Fully qualify standard
2388         functions with std::, thus avoiding Koenig lookup.
2390 2003-06-30  Doug Gregor <dgregor@apple.com>
2392         * include/bits/locale_facets.tcc (money_get::do_get): Avoid
2393         subscripting empty string.
2395 2003-06-30  Phil Edwards  <pme@gcc.gnu.org>
2397         * testsuite/Makefile.am (check-am):  Do not override.
2398         (baseline_symbols):  Declare as PHONY, so no need to 'touch' it.
2399         * testsuite/Makefile.in:  Regenerate.
2401 2003-06-30  Doug Gregor <dgregor@apple.com>
2403         * testsuite/24_iterators/insert_iterator.cc (test01, test02):
2404         Don't initialize an insert_iterator with a singular iterator.
2406 2003-06-30  Benjamin Kosnik  <bkoz@redhat.com>
2408         * acinclude.m4 (GLIBCPP_ENABLE_PCH): Add bits for --enable-pch.
2409         * aclocal.m4: Regenerate.
2410         * configure.in (GLIBCPP_CHECK_PCH): Move, change to
2411         GLIBCPP_ENABLE_PCH, default to yes.
2412         * configure: Regenerate.
2413         * docs/html/configopts.html: Add --enable-pch.
2415 2003-06-30  Phil Edwards  <pme@gcc.gnu.org>
2417         * testsuite/lib/libstdc++-v3-dg.exp:  Add comments.
2418         (libstdc++-v3-init):  Also set LD_RUN_PATH.
2420 2003-06-30  Paolo Carlini  <pcarlini@unitus.it>
2422         * include/std/std_streambuf.h (_M_mode): Unused by streambuf, move
2423         from here to filebuf and stringbuf.
2424         (~basic_streambuf()): Don't set _M_mode.
2425         (basic_streambuf()): Don't set _M_mode.
2426         * include/std/std_fstream.h (_M_mode): Move here, from streambuf.
2427         (~basic_filebuf()): Clean up.
2428         * include/bits/fstream.tcc (basic_filebuf()): Set _M_mode.
2429         * include/std/std_sstream.h (_M_mode): Move here, from streambuf.
2430         * testsuite/27_io/basic_streambuf/cons/char/1.cc: Don't set _M_mode.
2431         * testsuite/27_io/basic_streambuf/overflow/char/1.cc: Likewise.
2432         * testsuite/27_io/basic_streambuf/sgetc/char/1.cc: Likewise.
2433         * testsuite/27_io/basic_streambuf/sgetn/char/1.cc: Likewise.
2434         * testsuite/27_io/basic_streambuf/sputn/char/1.cc: Likewise.
2436 2003-06-30  Paolo Carlini  <pcarlini@unitus.it>
2438         * include/std/std_fstream.h (_M_underflow): Remove.
2439         (uflow): Remove, inherited from streambuf.
2440         (underflow): Only declare.
2441         * include/bits/fstream.tcc (_M_underflow): Rename to
2442         underflow, to which is equivalent for __bump == false,
2443         simplify.
2444         * include/std/std_sstream.h (_M_underflow): Remove.
2445         (uflow): Remove, inherited from streambuf.
2446         (underflow): Only declare.
2447         * include/bits/sstream.tcc (_M_underflow): Rename to
2448         underflow, to which is equivalent for __bump == false,
2449         simplify.
2451 2003-06-29  Paolo Carlini  <pcarlini@unitus.it>
2453         * include/bits/stl_algo.h: Fully qualify standard functions
2454         with std::, thus avoiding Koenig lookup.
2456 2003-06-29  Paolo Carlini  <pcarlini@unitus.it>
2458         * testsuite/27_io/basic_filebuf/overflow/wchar_t/11305-1.cc:
2459         Improve type correctness-wise.
2460         * testsuite/27_io/basic_filebuf/overflow/wchar_t/11305-2.cc:
2461         Likewise.
2462         * testsuite/27_io/basic_filebuf/overflow/wchar_t/11305-3.cc:
2463         Likewise.
2464         * testsuite/27_io/basic_filebuf/overflow/wchar_t/11305-4.cc:
2465         Likewise.
2467 2003-06-29  Paolo Carlini  <pcarlini@unitus.it>
2469         * include/std/std_streambuf.h (uflow): According to
2470         27.5.2.4.3,p16, don't check gptr() < egptr().
2472 2003-06-28  Paolo Carlini  <pcarlini@unitus.it>
2474         PR libstdc++/9875
2475         * include/bits/fstream.tcc (seekoff): Fix for encoding() > 0.
2476         (seekpos): Likewise.
2477         * testsuite/27_io/basic_filebuf/seekoff/wchar_t/9875_seekoff.cc:
2478         New test.
2479         * testsuite/27_io/basic_filebuf/seekpos/wchar_t/9875_seekpos.cc:
2480         New test.
2482 2003-06-27  Benjamin Kosnik  <bkoz@redhat.com>
2484         * testsuite/testsuite_performance.h (__gnu_cxx_test): Change
2485         output name to libstdc++-v3-performance.sum.
2486         * testsuite/Makefile.am (CLEANFILES): Remove .performance.
2487         * testsuite/Makefile.in: Regenerate.
2489 2003-06-27  Matthias Klose  <doko@debian.org>
2491         * testsuite/Makefile.am (check-abi, check-abi-verbose): Save
2492         output of abi-check in libstdc++-v3-abi.sum.
2493         * testsuite/Makefile.in: Regenerate.
2495 2003-06-27  Krister Walfridsson  <cato@df.lth.se>
2497         * config/os/bsd/netbsd/ctype_noninline.h
2498         (_C_ctype_): Declare.
2499         (ctype<char>::classic_table): Return _C_ctype_ + 1.
2500         (ctype<char>::ctype): Use classic_table.
2502 2003-06-27  Paolo Carlini  <pcarlini@unitus.it>
2503             Nathan C. Myers  <ncm-nospam@cantrip.org>
2505         PR libstdc++/9178
2506         * include/bits/fstream.tcc (_M_underflow): Properly estimate
2507         the worst-case number of external bytes for a given get area.
2508         * testsuite/27_io/basic_filebuf/underflow/wchar_t/9178.cc: New.
2510 2003-06-27  Paolo Carlini  <pcarlini@unitus.it>
2511             Petur Runolfsson  <peturr02@ru.is>
2513         PR libstdc++/11305
2514         * include/bits/fstream.tcc (overflow): Properly estimate the
2515         worst-case number of external bytes for a given put area
2516         (by using codecvt::max_length()).
2517         * testsuite/27_io/basic_filebuf/overflow/wchar_t/11305-1: New.
2518         * testsuite/27_io/basic_filebuf/overflow/wchar_t/11305-2: New.
2519         * testsuite/27_io/basic_filebuf/overflow/wchar_t/11305-3: New.
2520         * testsuite/27_io/basic_filebuf/overflow/wchar_t/11305-4: New.
2522 2003-06-27  Nathan Sidwell  <nathan@codesourcery.com>
2524         * config/linker-map.gnu: Remove ; after __numpunct_cache.
2526 2003-06-26  Benjamin Kosnik  <bkoz@redhat.com>
2528         * include/bits/ios_base.h (ios_base::_M_getloc): Return reference
2529         to the imbued locale.
2530         * include/bits/locale_facets.tcc (num_put::_M_convert_int): Use
2531         _M_getloc.
2532         (num_put::_M_convert_float): Use.
2534 2003-06-26  Benjamin Kosnik  <bkoz@redhat.com>
2535             Jerry Quinn  <jlquinn@optonline.net>
2537         * config/linker-map.gnu: Add __numpunct_cache.
2538         * config/locale/gnu/numeric_members.cc
2539         (numpunct::_M_initialize_numpunct): Account for _M_data, fill in
2540         all elements for "C" locale.
2541         (numpunct::~numpunct): Delete _M_data.
2542         * config/locale/generic/numeric_members.cc: Same.
2543         * include/bits/basic_ios.tcc
2544         (basic_ios::init): Remove __locale_cache bits.
2545         (basic_ios::_M_cache_locale): Same.
2546         * include/bits/ios_base.h: Same. Tweaks.
2547         * include/bits/locale_classes.h: Tweaks. Reorder classes.
2548         (__use_cache): Make friends with _Impl, locale.
2549         (_Impl::_M_caches): Add.
2550         (_Impl::_M_install_cache): Add.
2551         * include/bits/locale_facets.h (__numpunct_cache): New.
2552         (numpunct): Encapsulate data members in __numpunct_cache member,
2553         _M_data. Adjust virtuals.
2554         (numpunct::numpunct): New ctor for the same.
2555         (__locale_cache_base): Remove.
2556         (__locale_cache): Remove.
2557         * include/bits/locale_facets.tcc (__use_cache): New function,
2558         specializations.
2559         (num_put::_M_convert_int, _M_convert_float, do_put): Use it.
2560         * src/globals.cc: Add cache_vec, numpunct_cache_c, numpunct_cache_w.
2561         * src/ios.cc (ios_base::ios_base): Remove __locale_cache.
2562         * src/locale-inst.cc: Same. Add __numpunct_cache.
2563         * src/locale.cc: Tweak inlines.
2564         (__use_cache): Define specializations.
2565         * src/localename.cc: Use global bits.
2566         (_Impl::~Impl): Deal with __numpunct_cache destruction.
2567         (_Impl::_Impl): Same. Pre-cache standard numpunct facets.
2568         (_Impl::_M_init_facet): Take into account __numpunct_cache.
2569         * testsuite/27_io/ios_base/cons/assign_neg.cc: Update line numbers.
2570         * testsuite/27_io/ios_base/cons/copy_neg.cc: Same.
2572 2003-06-26  Nathan C. Myers  <ncm-nospam@cantrip.org>
2573             Paolo Carlini  <pcarlini@unitus.it>
2575         * testsuite/performance/filebuf_copy.cc: New, testing char
2576         by char file copy.
2578 2003-06-26  Paolo Carlini  <pcarlini@unitus.it>
2579             Nathan C. Myers  <ncm-nospam@cantrip.org>
2581         * include/bits/fstream.tcc (_M_underflow): When the actual
2582         end of file is reached, set 'uncommitted' mode to allow a
2583         next write without an intervening seek (see C++98 27.8.1.1,2
2584         and C89 7.9.5.3).
2585         * testsuite/27_io/basic_filebuf/underflow/char/2.cc: New.
2587 2003-06-25  Nathan C. Myers  <ncm-nospam@cantrip.org>
2589         * include/bits/streambuf.tcc (sbumpc, sputbackc, sungetc,
2590         sputc): Move inline, from here...
2591         * include/std/std_streambuf.h: ... to here.
2593         * include/std/std_streambuf.h (snextc, sbumpc, sgetc,
2594         sputbackc, sungetc, sputc): Use __builtin_expect.
2596 2003-06-24  Phil Edwards  <pme@gcc.gnu.org>
2598         * docs/doxygen/mainpage.html:  Use a useful title.
2600 2003-06-24  Benjamin Kosnik  <bkoz@redhat.com>
2602         * docs/html/documentation.html: Remove assignment info.
2603         * docs/html/17_intro/contribute.html: Edits.
2604         * docs/html/17_intro/libstdc++-assign.tx: Remove.
2606         * docs/html/test.html: Update.
2608         * README: Update.
2610 2003-06-24  Benjamin Kosnik  <bkoz@redhat.com>
2611             Ulrich Drepper  <drepper@redhat.com>
2613         * testsuite/testsuite_performance.h: Tweak mallinfo.
2615 2003-06-24  Paolo Carlini  <pcarlini@unitus.it>
2616             Nathan C. Myers  <ncm-nospam@cantrip.org>
2618         * include/std/std_fstream.h (_M_filepos): Remove.
2619         (_M_reading, _M_writing): New, encode the various I/O modes:
2620         'read', 'write' and 'uncommitted'.
2621         (sync): If there is something to flush, do it, then go to
2622         'uncommitted' mode.
2623         * include/bits/fstream.tcc (_M_set_buffer): Overhaul to deal
2624         with three different cases: __off > 0 (upon underflow),
2625         __off == 0 (upon overflow), __off == -1 (upon open, setbuf,
2626         seekoff/pos).
2627         (_M_underflow): Don't call overflow, set _M_reading to true
2628         on success, tweak.
2629         (pbackfail): Set _M_reading to true on pback creation, tweak.
2630         (overflow): Don't seek, deal with overflow in 'uncommitted' mode,
2631         set _M_writing to true on success, tweak.
2632         (seekoff): Simplify, set _M_reading, _M_writing to false, call
2633         _M_set_buffer(-1) ('uncommitted').
2634         (open, close, setbuf): Set _M_reading, _M_writing to false and
2635         call _M_set_buffer(-1), tweak.
2636         (basic_filebuf): Don't set _M_buf_unified.
2637         (_M_destroy_internal_buffer): Don't call setg and setp.
2638         * include/ext/stdio_filebuf.h (stdio_filebuf): Use _M_reading,
2639         _M_writing and _M_set_buffer(-1).
2640         * include/std/std_streambuf.h (_M_move_out_cur, _M_move_in_cur,
2641         _M_out_lim, _M_buf_unified): Remove.
2642         (basic_streambuf): Don't set _M_out_lim and _M_buf_unified.
2643         (setp): Don't set _M_out_lim.
2644         * testsuite/27_io/basic_filebuf/sbumpc/char/1-io.cc: Fix for
2645         the new logic ('read', 'write' and 'uncommitted' modes): e.g.,
2646         upon open the mode is 'uncommitted' and therefore the put area
2647         pointers are null.
2648         * testsuite/27_io/basic_filebuf/sbumpc/char/1-out.cc: Ditto.
2649         * testsuite/27_io/basic_filebuf/seekoff/char/3-io.cc: Ditto.
2650         * testsuite/27_io/basic_filebuf/seekpos/char/3-io.cc: Ditto.
2651         * testsuite/27_io/basic_filebuf/setbuf/char/1.cc: Ditto.
2652         * testsuite/27_io/basic_filebuf/sgetc/char/1-io.cc: Ditto.
2653         * testsuite/27_io/basic_filebuf/sgetc/char/1-out.cc: Ditto.
2654         * testsuite/27_io/basic_filebuf/sgetn/char/1-io.cc: Ditto.
2655         * testsuite/27_io/basic_filebuf/sgetn/char/1-out.cc: Ditto.
2656         * testsuite/27_io/basic_filebuf/snextc/char/1-io.cc: Ditto.
2657         * testsuite/27_io/basic_filebuf/snextc/char/1-out.cc: Ditto.
2658         * testsuite/27_io/basic_filebuf/sputbackc/char/1-io.cc: Ditto.
2659         * testsuite/27_io/basic_filebuf/sputbackc/char/1-out.cc: Ditto.
2660         * testsuite/27_io/basic_filebuf/sputc/char/1-io.cc: Ditto.
2661         * testsuite/27_io/basic_filebuf/sputc/char/1-out.cc: Ditto.
2662         * testsuite/27_io/basic_filebuf/sputc/char/9701-2.cc: Ditto.
2663         * testsuite/27_io/basic_filebuf/sputn/char/1-io.cc: Ditto.
2664         * testsuite/27_io/basic_filebuf/sputn/char/1-out.cc: Ditto.
2665         * testsuite/27_io/basic_filebuf/sputn/char/9701-1.cc: Ditto.
2666         * testsuite/27_io/basic_filebuf/sungetc/char/1-io.cc: Ditto.
2667         * testsuite/27_io/basic_filebuf/sungetc/char/1-out.cc: Ditto.
2669         * include/bits/fstream.tcc (showmanyc): Use only the
2670         documented derivation interface to basic_streambuf (gptr(),
2671         setg(), etc.) to work right with user specializations.
2672         * include/bits/streambuf.tcc (sbumpc, sputbackc, sungetc,
2673         sputc, xsgetn, xsputn, __copy_streambufs): Likewise.
2674         * include/std/std_streambuf.h (in_avail, sgetc, uflow, stossc):
2675         Likewise.
2676         * include/std/std_fstream.h (_M_create_pback, _M_destroy_pback,
2677         xsgetn): Likewise.
2679 2003-06-23  Loren J. Rittle  <ljrittle@acm.org>
2681         * configure.host (freebsd*): Set abi_baseline_pair.
2682         * config/abi/i386-freebsd4/baseline_symbols.txt: Update from 3.2
2683         (at or near first release) to 3.3.
2684         * config/abi/i386-freebsd5/baseline_symbols.txt: New file.
2685         * config/abi/alpha-freebsd5/baseline_symbols.txt: New file.
2686         * config/abi/sparc-freebsd5/baseline_symbols.txt: New file.
2688         * include/ext/mt_allocator.h: Portability.
2689         * testsuite/testsuite_performance.h: Likewise.
2691 2003-06-23  Benjamin Kosnik  <bkoz@redhat.com>
2693         * docs/html/17_intro/libstdc++-assign.txt: Update address.
2695         * testsuite/performance/ifstream_getline.cc: Fix.
2697 2003-06-23  Doug Gregor <dgregor@apple.com>
2699         * include/bits/boost_concept_check.h: Don't use _D or _R for type
2700         names.
2702 2003-06-22  Paolo Carlini  <pcarlini@unitus.it>
2703             Nathan C. Myers  <ncm-nospam@cantrip.org>
2705         * include/std/std_streambuf.h (_M_move_out_cur): _M_out_lim
2706         is now used only for filebuf, when _M_buf_unified is true.
2707         epgtr() plays the role of _M_out_lim but it's only updated
2708         upon overflow, underflow, uflow, seekoff/pos.
2709         * include/bits/sstream.tcc (_M_underflow): New, implements
2710         stringbuf::underflow and uflow.
2711         (seekoff, seekpos): Tweak, use  _M_update_egptr.
2712         * include/std/std_sstream.h (str): Rewrote, deal correctly
2713         with the new logic, in particular, when pptr() > egptr().
2714         (_M_sync): When __testout && !__testin set all the get area
2715         pointers to the current string end.
2716         (_M_update_egptr): New, internal function updating egptr()
2717         to the actual string end.
2718         (_M_underflow): New, declare.
2719         (underflow): Dispatch to _M_underflow(false).
2720         (uflow): Dispatch to _M_underflow(true).
2722         * include/bits/sstream.tcc (pbackfail, overflow, seekoff,
2723         seekpos): Use only the documented derivation interface to
2724         basic_streambuf (gptr(), setg(), etc.) to work right with
2725         user specializations.
2726         * include/std/std_sstream.h (str, _M_sync): Likewise.
2728 2003-06-20  Doug Gregor <dgregor@apple.com>
2730         * testsuite/20_util/auto_ptr.cc: Don't dereference NULL auto_ptr
2731         * testsuite/21_strings/basic_string/replace/char/4.cc: Don't
2732         dereference end iterator.
2733         * testsuite/21_strings/basic_string/replace/wchar_t/4.cc: Same.
2734         * testsuite/22_locale/ctype/narrow/char/1.cc: Don't subscript with
2735         index equal to the length of a string.
2736         * testsuite/22_locale/ctype/narrow/char/2.cc: Same.
2737         * testsuite/22_locale/ctype/narrow/wchar_t/1.cc: Same.
2738         * testsuite/22_locale/ctype/narrow/wchar_t/2.cc: Same.
2739         * testsuite/22_locale/ctype/widen/char/1.cc: Same.
2740         * testsuite/22_locale/ctype/widen/wchar_t/1.cc: Same.
2741         * testsuite/23_containers/list_modifiers.cc: Don't dereference
2742         singular reverse iterator.
2743         * testsuite/23_containers/vector_bool.cc: Don't increment singular
2744         iterator.
2745         * testsuite/24_iterators/rel_ops.cc: Don't compare singular iterator.
2747 2003-06-20  Doug Gregor <dgregor@apple.com>
2749         * include/bits/basic_string.h (basic_string::replace): Dispatch
2750         _InputIterator version based on _Is_integer.
2751         * include/bits/basic_string.tcc (basic_string::replace):
2752         Renamed replace(iterator, iterator, size_type, _CharT) to
2753         _M_replace_aux.
2754         * testsuite/21_strings/basic_string/assign/char/1.cc (test01):
2755         Test basic_string::assign(_InputIterator, _InputIterator),
2756         which calls basic_string::replace(iterator, iterator,
2757         _Input_iterator, _InputIterator).
2759 2003-06-20  Benjamin Kosnik  <bkoz@redhat.com>
2761         * testsuite/testsuite_performance.h (resource_counter): Don't use
2762         mallinfo at the moment.
2764 2003-06-20  Matthias Klose  <doko@debian.org>
2766         * configure.host: Set try_cpu to target_cpu for existing
2767         baseline files.
2769 2003-06-19  Andreas Jaeger  <aj@suse.de>
2771         * testsuite/Makefile.am (extract_symvers): Revert accidental
2772         change.
2773         * testsuite/Makefile.in: Regenerate.
2775         * configure.in: Pass MULTISUBDIR to testsuite/Makefile.
2776         * configure: Regenerated.
2778 2003-06-19  Paolo Carlini  <pcarlini@unitus.it>
2780         * include/std/std_sstream.h (_M_sync): Make non virtual.
2782 2003-06-18  Benjamin Kosnik  <bkoz@redhat.com>
2784         * testsuite/testsuite_performance.h (time_counter): New.
2785         (resource_counter): New.
2786         (report_performance): New.
2787         (start_counters): New.
2788         (stop_counters): New.
2789         (clear_counters): New.
2790         * testsuite/performance/allocator.cc: Instrument.
2791         * testsuite/performance/cout_insert_int.cc: Same.
2792         * testsuite/performance/complex_norm.cc: Same.
2793         * testsuite/performance/filebuf_sputc.cc: New.
2794         * testsuite/performance/fstream_seek_write.cc: Same.
2795         * testsuite/performance/ifstream_getline.cc: Same.
2796         * testsuite/performance/map_create_fill.cc: Same.
2797         * testsuite/performance/ofstream_insert_float.cc: Same.
2798         * testsuite/performance/ofstream_insert_int.cc: Same.
2799         * testsuite/performance/string_append.cc: Convert.
2800         * scripts/check_performance: New.
2801         * testsuite/Makefile.am (check-performance): New.
2802         (CLEANFILES): Add.
2804 2003-06-18  Paolo Carlini  <pcarlini@unitus.it>
2805             Benjamin Kosnik  <bkoz@redhat.com>
2807         * include/std/std_sstream.h (setbuf): Check __n >= 0.
2808         * include/bits/fstream.tcc (setbuf): Tweak.
2810 2003-06-18  Paolo Carlini  <pcarlini@unitus.it>
2812         * include/bits/sstream.tcc (seekoff): We can't seek beyond
2813         _M_out_lim, therefore _M_move_out_cur boils down to simply
2814         updating _M_out_cur.
2815         (seekpos): Likewise, clean up.
2817 2003-06-18  Nathan C. Myers  <ncm-nospam@cantrip.org>
2818             Paolo Carlini  <pcarlini@unitus.it>
2820         * include/bits/fstream.tcc (setbuf): Allow (__s, 1) too,
2821         simply equivalent to the unbuffered case (0, 0) as far as
2822         _M_buf_size is concerned.
2824 2003-06-18  Andreas Jaeger  <aj@suse.de>
2826         * testsuite/Makefile.am (new-abi-baseline): Create baseline
2827         directory.
2828         (baseline_file): Use baseline_dir.
2829         (baseline_dir): New.
2830         (mkinstalldirs): New.
2832         * acinclude.m4: Rename baseline_file to baseline_dir, strip
2833         filename from baseline_dir.
2835         * testsuite/Makefile.in: Regenerated.
2836         * Makefile.in: Regenerated.
2837         * aclocal.m4: Regenerated.
2838         * configure: Regenerated.
2840 2003-06-17  Benjamin Kosnik  <bkoz@redhat.com>
2842         * configure.in: Missed check_survey bit.
2843         * configure: Regenerated.
2845 2003-06-17  Benjamin Kosnik  <bkoz@redhat.com>
2847         * scripts: New.
2848         * config/abi/extract_symvers: Move to...
2849         * scripts/extract_symvers: ...here.
2850         * mkcheck.in: Move to..
2851         * scripts/check_survey.in: ...here.
2852         * testsuite_flags.in: Move to..
2853         * scripts/testsuite_flags.in: ...here.
2854         * configure.in: Change check and testsuite_flags locations.
2855         * configure: Regenerate.
2856         * testsuite/Makefile.am (current_symbols.txt): Change location.
2857         * testsuite/Makefile.in: Regenerate.
2858         * testsuite/lib/libstdc++-v3-dg.exp (libstdc++-v3-init): Modify
2859         location of testsuite_flags.
2860         * Makefile.am (check-script): Move..
2861         (check-script-install): Move...
2862         * testsuite/Makefile.am: ... here.
2863         * testsuite/Makefile.in: Regenerate.
2864         * Makefile.in: Regenerate.
2866 2003-06-17  Benjamin Kosnik  <bkoz@redhat.com>
2868         * config/abi/i486-linux-gnu/baseline_symbols.txt: Update to 3.3.0.
2870 2003-06-16  Benjamin Kosnik  <bkoz@redhat.com>
2872         * Makefile.am (check-abi): Move...
2873         (new-abi-baseline): Move...
2874         * testsuite/Makefile.am: ...here.
2875         (new-abi-baseline): Conditionalize.
2876         (check-abi): Conditionalize.
2877         (check-abi-verbose): New.
2878         * Makefile.in: Regenerate.
2879         * testsuite/Makefile.in: Regenerate.
2880         * configure.in: Consolidate testsuite configure bits.
2881         * acinclude.m4 (GLIBCPP_CONFIGURE_TESTSUITE): Same.
2882         * configure: Regenerate.
2883         * aclocal.m4: Regenerate.
2884         * testsuite/abi_check.cc: Add --check-verbose.
2885         Only output detailed information if --check-verbose.
2887 2003-06-16  Andreas Jaeger  <aj@suse.de>
2889         * testsuite/abi_check.cc: Create summary report.
2891 2003-06-16  Paolo Carlini  <pcarlini@unitus.it>
2893         * testsuite/27_io/basic_filebuf/sgetn/char/1-in.cc: Fix
2894         for systems with BUFSIZ != 8192.
2895         * testsuite/27_io/basic_filebuf/sgetn/char/1-io.cc: Ditto.
2896         * testsuite/27_io/basic_filebuf/sgetn/char/1-out.cc:
2897         Minor tweaks.
2899 2003-06-16  Andreas Jaeger  <aj@suse.de>
2901         * acinclude.m4 (GLIBCPP_CONFIGURE_TESTSUITE): Make
2902         check-abi multilib aware.
2903         * aclocal.m4: Regenerate.
2904         * configure: Regenerate.
2906 2003-06-16  Benjamin Kosnik  <bkoz@redhat.com>
2907             Andreas Jaeger  <aj@suse.de>
2909         * configure.host: Set x86_64 abi_baseline pair correctly.
2911 2003-06-16  Paolo Carlini  <pcarlini@unitus.it>
2913         * testsuite/27_io/basic_filebuf/sungetc/char/1.cc: Split and
2914         fix for missing seeks between gets and puts into...
2915         * testsuite/27_io/basic_filebuf/sungetc/char/1-in.cc: New.
2916         * testsuite/27_io/basic_filebuf/sungetc/char/1-io.cc: New.
2917         * testsuite/27_io/basic_filebuf/sungetc/char/1-out.cc: New.
2918         * testsuite/27_io/basic_filebuf/sungetc/char/2-in.cc: New.
2919         * testsuite/27_io/basic_filebuf/sungetc/char/2-io.cc: New.
2920         * testsuite/27_io/basic_filebuf/sungetc/char/2-out.cc: New.
2922 2003-06-15  Richard Henderson  <rth@redhat.com>
2924         * config/linker-map.gnu: Export virtual function thunks for
2925         64-bit systems too.
2927 2003-06-13  Benjamin Kosnik  <bkoz@redhat.com>
2929         * config/abi/i686-pc-linux-gnu: To..
2930         * config/abi/i486-linux-gnu: ...this.
2931         * config/abi/alphaev67-unknown-linux-gnu: To..
2932         * config/abi/alpha-linux-gnu: ...this.
2933         * config/abi/ia64-unknown-linux-gnu: To...
2934         * config/abi/ia64-linux-gnu: ...this.
2935         * config/abi/x86_64-unknown-linux-gnu: To...
2936         * config/abi/x86_64-linux-gnu: ...this.
2937         * config/abi/i386-unknown-freebsd4: To...
2938         * config/abi/i386-freebsd4: ...this.
2939         * config/linker-map.gnu: Cleanups, move libsupc++ bits into
2940         CXXABI.
2941         * configure.host: abi_baseline_triplet to abi_baseline_pair.
2942         Simplify cpu bits so that abi_baseline_pair can use the same
2943         cpu configuration.
2944         * acinclude.m4: Same.
2945         * aclocal.m4: Regenerate.
2946         * configure.in: Can't get enable_abi_check to yes unless native.
2947         * configure: Regenerate.
2949 2003-06-13  Paolo Carlini  <pcarlini@unitus.it>
2951         * testsuite/27_io/basic_filebuf/seekoff/char/1.cc: Split and
2952         fix for missing seeks between gets and puts into...
2953         * testsuite/27_io/basic_filebuf/seekoff/char/3-io.cc: New.
2954         * testsuite/27_io/basic_filebuf/seekoff/char/4-io.cc: New.
2955         * testsuite/27_io/basic_filebuf/seekpos/char/1.cc: Same, into...
2956         * testsuite/27_io/basic_filebuf/seekpos/char/3-io.cc: New.
2957         * testsuite/27_io/basic_filebuf/seekpos/char/4-io.cc: New.
2958         * testsuite/27_io/basic_filebuf/sputbackc/char/1-io.cc: Fix
2959         for missing seeks between gets and puts.
2960         * testsuite/27_io/basic_filebuf/sputbackc/char/2-io.cc: Ditto.
2961         * testsuite/data/seekoff-1.tst: New.
2962         * testsuite/data/seekoff-2.tst: New.
2963         * testsuite/data/seekpos-1.tst: New.
2964         * testsuite/data/seekpos-2.tst: New.
2966 2003-06-13  Nathan C. Myers <ncm-nospam@cantrip.org>
2968         Avoid multi-processor bus contention on increment/decrement-and-
2969         test of the reference count in the empty-string object, by comparing
2970         addresses first, and never touching the reference count of the empty-
2971         string object.
2972         * include/bits/basic_string.h:
2973         (_S_empty_rep_storage): Move into basic_string<>::_Rep for use by its
2974         members.
2975         (_Rep::_S_empty_rep()): New accessor.
2976         (_Rep::_M_length, _Rep::_M_capacity, _Rep::_M_references): Move to
2977         a base class _Rep_base.
2978         (_Rep::_M_dispose, _Rep::_M_refcopy): Check for the empty string.
2979         (basic_string()): Change to use _M_refdata() in place of _M_refcopy(),
2980         since no longer must increment its refcount.
2981         * include/bits/basic_string.tcc:
2982         (_Rep::_M_destroy, _M_leak_hard): Check for the empty string and
2983         return immediately.  The former might be unnecessary.  The latter
2984         prevents begin() and end() from cloning it unnecessarily.
2985         (_S_construct(_InIterator, _InIterator, const _Alloc&,
2986         input_iterator_tag), _S_construct(_InIterator, _InIterator,
2987         const _Alloc&, forward_iterator_tag), _S_construct(size_type, _CharT,
2988         const _Alloc&)): Change to use _M_refdata() in place of _M_refcopy().
2989         (_M_mutate): Check for the empty string and treat it as shared.
2990         This is necessary here because _M_mutate is sometimes called with
2991         all-zero arguments; in all other uses of _M_is_shared, the test comes
2992         out right anyhow.
2994 2003-06-12  Benjamin Kosnik  <bkoz@redhat.com>
2996         * src/allocator-inst.cc: Explicitly instantiate.
2997         * include/ext/pool_allocator.h: Inhibit implicit instantiations.
2998         Tweaks.
2999         * config/linker-map.gnu: Add __pool_alloc bits. Tweaks.
3001 2003-06-11  Benjamin Kosnik  <bkoz@redhat.com>
3003         * acinclude.m4 (GLIBCPP_ENABLE_CSTDIO): Simplify.
3004         * aclocal.m4: Regenerate.
3005         * Makefile.am (SUBDIRS): Remove libio.
3006         * Makefile.in: Regenerate.
3007         * configure.in: Same.
3008         * configure: Regenerate.
3009         * config/io/basic_file_libio.cc: Remove.
3010         * config/io/basic_file_libio.h: Remove.
3011         * config/io/c_io_libio_codecvt.c: Remove.
3012         * config/io/c_io_libio.h: Remove.
3013         * libio/*: Remove.
3014         * src/Makefile.am: Same.
3015         * src/Makefile.in: Regenerate.
3016         * docs/html/configopts.html: Edits.
3017         * docs/html/explanations.html: Edits.
3019 2003-06-11  Benjamin Kosnik  <bkoz@redhat.com>
3021         * include/bits/stl_alloc.h (__debug_alloc): Move out.
3022         (__malloc_alloc): Same.
3023         (__pool_alloc): Same.
3024         (__new_alloc): Same.
3025         Rename to..
3026         * include/bits/allocator.h: ...this.
3027         * include/bits/stl_deque.h: Modify comment.
3028         * include/bits/stl_tree.h: Modify include.
3029         * include/std/std_memory.h: Same.
3030         * include/ext/rope: Same.
3031         * include/ext/slist: Same.
3032         * include/std/std_vector.h: Same.
3033         * include/std/std_stack.h: Same.
3034         * include/std/std_queue.h: Same.
3035         * include/std/std_list.h: Same.
3036         * include/std/std_deque.h: Same.
3037         * include/backward/alloc.h: Same.
3038         * include/ext/debug_allocator.h: New.
3039         * include/ext/malloc_allocator.h: New.
3040         * include/ext/pool_allocator.h: New.
3041         * include/ext/new_allocator.h: New.
3042         * include/bits/pthread_allocimpl.h: Remove.
3043         * include/bits/stl_pthread_alloc.h: Remove.
3044         * include/Makefile.am (ext_headers): Add.
3045         * include/Makefile.in: Regenerate.
3046         * src/stl-inst.cc: Use __gnu_cxx namespace.
3047         * src/stl-inst.cc: Move to...
3048         * src/allocator-inst.cc: Here.
3049         * src/Makefile.am (sources): Update.
3050         * src/Makefile.in: Regenerate.
3051         * config/linker-map.gnu: Remove __pool_alloc bits.
3052         * testsuite/ext/headers.cc: Add.
3053         * testsuite/ext/allocators.cc: Fixup.
3055 2003-06-11  Stefan Olsson  <stefan@snon.net>
3056             Ola Rönnerup  <fnolis@home.se>
3058         * include/Makefile.am (ext_headers): Add.
3059         * include/Makefile.in: Regenerate.
3060         * include/ext/mt_allocator.h: New file.
3062 2003-06-10  Paolo Carlini  <pcarlini@unitus.it>
3064         * include/bits/fstream.tcc (close): Clean up a bit.
3066         * include/bits/streambuf.tcc (sbumpc): Clean up a bit.
3068         * include/std/std_fstream.h (_M_destroy_pback): _M_pback_cur_save
3069         - the saved _M_in_cur, that is - cannot be null.
3070         (sync): Constify a variable.
3072         * include/std/std_streambuf.h: Tweak a comment.
3073         (in_avail): Constify a variable.
3075 2003-06-10  Phil Edwards  <pme@gcc.gnu.org>
3077         * docs/html/17_intro/BUGS:  Update from 2.90.8 snapshot.
3078         * docs/html/17_intro/CHECKLIST:  Bring up to date with respect to
3079         correctness of container::iterator typedefs.  Fix whitespace.
3080         * docs/html/20_util/howto.html, docs/html/ext/howto.html:  Add links
3081         to allocator docs.
3082         * docs/html/documentation.html:  Regenerate.
3084         * include/bits/basic_string.h, include/bits/basic_string.tcc,
3085         include/bits/deque.tcc, include/bits/list.tcc, include/bits/stl_algo.h,
3086         include/bits/stl_algobase.h, include/bits/stl_bvector.h,
3087         include/bits/stl_deque.h, include/bits/stl_iterator_base_funcs.h,
3088         include/bits/stl_list.h, include/bits/stl_uninitialized.h,
3089         include/bits/stl_vector.h, include/bits/vector.tcc,
3090         include/ext/algorithm, include/ext/slist, include/std/std_bitset.h:
3091         Change _Iter names to _Iterator, and __pos to __position.
3093         * include/bits/stl_relops.h, include/bits/stl_numeric.h,
3094         include/bits/stl_multiset.h, include/bits/stl_set.h:
3095         Remove emacs markers.
3097         * include/bits/stl_threads.h (_STL_auto_lock):  Add __unused__.
3099 2003-06-10  Paolo Carlini  <pcarlini@unitus.it>
3101         * include/bits/fstream.tcc (overflow): According to
3102         27.5.2.4.5, overflow() returns not_eof(eof()).
3103         * testsuite/27_io/basic_filebuf/overflow/char/2.cc: New.
3104         * testsuite/27_io/basic_filebuf/overflow/char/2-unbuf.cc: Ditto.
3106 2003-06-10  Paolo Carlini  <pcarlini@unitus.it>
3108         * include/bits/fstream.tcc (_M_underflow): Check overflow return
3109         value; tweak slightly.
3111 2003-06-09  Paolo Carlini  <pcarlini@unitus.it>
3113         * include/bits/fstream.tcc (_M_underflow): Do not special
3114         case the unbuffered case, which really means simply a one char
3115         get area.
3116         (basic_filebuf): Initialize _M_buf_size.
3117         (setbuf): Unbuffered means _M_buf_size == 1, since only
3118         _M_buf_size - 1 == 0 chars are going to be used for the
3119         put area and 1 for the get area.
3120         * include/std/std_streambuf.h (_M_buf_size): Move to basic_filebuf.
3121         (~basic_streambuf): Tweak.
3122         (basic_streambuf): Do not initialize _M_buf_size.
3123         * include/std/std_fstream.h (_M_buf_size): Add from basic_streambuf.
3124         (~basic_filebuf): Tweak.
3125         (_M_set_buffer): Tweak, considering that _M_buf_size == 1 is the
3126         unbuffered situation (i.e., put area pointers NULL).
3127         * include/bits/streambuf.tcc (sbumpc): Clean up.
3128         * testsuite/27_io/basic_filebuf/sputbackc/char/1.cc: Split into...
3129         * testsuite/27_io/basic_filebuf/sputbackc/char/1-in.cc: New.
3130         * testsuite/27_io/basic_filebuf/sputbackc/char/1-io.cc: New.
3131         * testsuite/27_io/basic_filebuf/sputbackc/char/1-out.cc: New.
3132         * testsuite/27_io/basic_filebuf/sputbackc/char/2-in.cc: New.
3133         * testsuite/27_io/basic_filebuf/sputbackc/char/2-io.cc: New.
3134         * testsuite/27_io/basic_filebuf/sputbackc/char/2-out.cc: New.
3136 2003-06-09  Phil Edwards  <pme@gcc.gnu.org>
3138         * acinclude.m4:  Move all AM_CONDITIONAL calls out.
3139         (GLIBCPP_CONFIGURE):  Set defaults for variables used in AM_CONDITIONAL
3140         statements.
3141         * configure.in:  Centralize AM_CONDITIONALs so that they are always
3142         run.  Make use of GLIBCPP_IS_CROSS_COMPILING.
3143         * aclocal.m4, configure:  Regenerated.
3145 2003-06-09  Paolo Carlini  <pcarlini@unitus.it>
3147         * docs/html/ext/howto.html ('LWG Issues'):  Add issue 235.
3149 2003-06-06  Nathan Myers  <ncm-nospam@cantrip.org>
3151         * include/bits/stl_iterator.h
3152         (reverse_iterator::reverse_iterator()): Apply DR235: default
3153         constructor default-initializes data member.  Instantiated on a
3154         pointer type, the member has to end up equal to zero.
3156 2003-06-06  Benjamin Kosnik  <bkoz@redhat.com>
3158         * include/bits/stl_alloc.h: Cleanups.
3159         * include/ext/functional: Same.
3160         * include/ext/hash_map: Same.
3161         * include/ext/hash_set: Same.
3162         * include/ext/iterator: Same.
3163         * include/ext/memory: Same.
3164         * include/ext/numeric: Same.
3165         * include/ext/rb_tree: Same.
3166         * include/ext/ropeimpl.h: Same.
3167         * include/ext/slist: Same.
3168         * include/ext/stdio_filebuf.h: Same.
3169         * include/ext/stdio_sync_filebuf.h: Same.
3170         * include/ext/stl_rope.h: Move to...
3171         * include/ext/rope: ...here.
3172         * include/ext/stl_hash_fun.h: Move to...
3173         * include/ext/hash_fun.h: ...here.
3174         * include/ext/stl_hashtable.h: Move to...
3175         * include/ext/hashtable.h: ...here.
3176         * include/backward/hashtable.h: Reflect new names.
3177         * include/Makefile.am: Same.
3178         * include/Makefile.in: Regenerated.
3180 2003-06-05  Benjamin Kosnik  <bkoz@redhat.com>
3182         PR libstdc++/9024
3183         * include/bits/fstream.tcc (_M_underflow): Fix for unbuffered.
3184         * include/bits/stl_algobase.h: Tweak.
3185         * include/std/std_fstream.h: Move _M_buf_size to...
3186         * include/std/std_streambuf.h: ...here. Modify.
3187         * include/bits/streambuf.tcc: Same.
3188         * testsuite/testsuite_hooks.h: Tweak.
3189         * testsuite/testsuite_io.h (constraint_filebuf): New.
3190         * testsuite/27_io/basic_filebuf/sbumpc/char/1.cc: Split into...
3191         * testsuite/27_io/basic_filebuf/sbumpc/char/1-in.cc: New.
3192         * testsuite/27_io/basic_filebuf/sbumpc/char/1-io.cc: New.
3193         * testsuite/27_io/basic_filebuf/sbumpc/char/1-out.cc: New.
3194         * testsuite/27_io/basic_filebuf/sbumpc/char/2-in.cc: New.
3195         * testsuite/27_io/basic_filebuf/sbumpc/char/2-io.cc: New.
3196         * testsuite/27_io/basic_filebuf/sbumpc/char/2-out.cc: New.
3197         * testsuite/27_io/basic_filebuf/sgetc/char/1.cc: Split into...
3198         * testsuite/27_io/basic_filebuf/sgetc/char/1-in.cc: New.
3199         * testsuite/27_io/basic_filebuf/sgetc/char/1-io.cc: New.
3200         * testsuite/27_io/basic_filebuf/sgetc/char/1-out.cc: New.
3201         * testsuite/27_io/basic_filebuf/sgetc/char/2-in.cc: New.
3202         * testsuite/27_io/basic_filebuf/sgetc/char/2-io.cc: New.
3203         * testsuite/27_io/basic_filebuf/sgetc/char/2-out.cc: New.
3204         * testsuite/27_io/basic_filebuf/sgetn/char/1.cc: Split into...
3205         * testsuite/27_io/basic_filebuf/sgetn/char/1-in.cc: New.
3206         * testsuite/27_io/basic_filebuf/sgetn/char/1-io.cc: New.
3207         * testsuite/27_io/basic_filebuf/sgetn/char/1-out.cc: New.
3208         * testsuite/27_io/basic_filebuf/sgetn/char/2.cc: Split into...
3209         * testsuite/27_io/basic_filebuf/sgetn/char/2-in.cc: New.
3210         * testsuite/27_io/basic_filebuf/sgetn/char/2-io.cc: New.
3211         * testsuite/27_io/basic_filebuf/sgetn/char/2-out.cc: New.
3212         * testsuite/27_io/basic_filebuf/sgetn/char/3.cc: New.
3213         * testsuite/27_io/basic_filebuf/snextc/char/1.cc: Split into...
3214         * testsuite/27_io/basic_filebuf/snextc/char/1-in.cc: New.
3215         * testsuite/27_io/basic_filebuf/snextc/char/1-io.cc: New.
3216         * testsuite/27_io/basic_filebuf/snextc/char/1-out.cc: New.
3217         * testsuite/27_io/basic_filebuf/snextc/char/2-in.cc: New.
3218         * testsuite/27_io/basic_filebuf/snextc/char/2-io.cc: New.
3219         * testsuite/27_io/basic_filebuf/snextc/char/2-out.cc: New.
3220         * testsuite/27_io/basic_filebuf/sputc/char/1.cc: Split into...
3221         * testsuite/27_io/basic_filebuf/sputc/char/1-in.cc: New.
3222         * testsuite/27_io/basic_filebuf/sputc/char/1-io.cc: New.
3223         * testsuite/27_io/basic_filebuf/sputc/char/1-out.cc: New.
3224         * testsuite/27_io/basic_filebuf/sputc/char/2.cc: Split into...
3225         * testsuite/27_io/basic_filebuf/sputc/char/2-in.cc: New.
3226         * testsuite/27_io/basic_filebuf/sputc/char/2-io.cc: New.
3227         * testsuite/27_io/basic_filebuf/sputc/char/2-out.cc: New.
3228         * testsuite/27_io/basic_filebuf/sputn/char/1.cc: Split into...
3229         * testsuite/27_io/basic_filebuf/sputn/char/1-in.cc: New.
3230         * testsuite/27_io/basic_filebuf/sputn/char/1-io.cc: New.
3231         * testsuite/27_io/basic_filebuf/sputn/char/1-out.cc: New.
3232         * testsuite/27_io/basic_filebuf/sputn/char/2-in.cc: New.
3233         * testsuite/27_io/basic_filebuf/sputn/char/2-io.cc: New.
3234         * testsuite/27_io/basic_filebuf/sputn/char/2-out.cc: New.
3235         * testsuite/data/sgetc.txt: New.
3236         * testsuite/data/sgetn.txt: New.
3238 2003-06-05  Paolo Carlini  <pcarlini@unitus.it>
3240         PR libstdc++/11095
3241         * include/bits/istream.tcc (operator>>(basic_istream&, _CharT*)):
3242         Deal with width() smaller than zero.
3243         * include/bits/ostream.tcc (operator<<(basic_ostream&, _CharT),
3244         operator<<(basic_ostream&, char), operator<<(basic_ostream&, const
3245         _CharT*), operator<<(basic_ostream<_CharT, _Traits>&, const
3246         char*), operator<<(basic_ostream<char, _Traits>&, const char*),
3247         operator<<(basic_ostream, const basic_string&)): Likewise.
3249         * testsuite/27_io/basic_istream/extractors_character/char/
3250         (11095-i.cc, 11095-oa.cc, 11095-ob.cc, 11095-oc.cc): New.
3251         * testsuite/27_io/basic_ostream/inserters_character/char/
3252         (11095-oa.cc, 11095-ob.cc, 11095-oc.cc): New.
3253         * testsuite/27_io/basic_ostream/inserters_character/wchar_t/
3254         (11095-od.cc, 11095-oe.cc, 11095-of.cc): New.
3256 2003-06-05  Rainer Orth  <ro@TechFak.Uni-Bielefeld.DE>
3258         * acinclude.m4 (GLIBCPP_CHECK_PCH): Only set glibcpp_PCHFLAGS if
3259         .gch compilation works.
3260         * aclocal.m4, configure: Regenerate.
3261         * testsuite_flags.in (--build-cxx): Use glibcpp_PCHFLAGS to
3262         initialize PCHFLAGS.
3264 2003-06-04  Paolo Carlini  <pcarlini@unitus.it>
3266         * include/bits/basic_string.h (_M_fold, insert(iterator, _CharT),
3267         erase(iterator), erase(iterator, iterator), c_str,
3268         compare(const basic_string&)): Constify various variables.
3269         * include/bits/basic_string.tcc (_S_construct(_InIter, _InIter,
3270         const _Alloc&, input_iterator_tag), _M_destroy, _M_mutate,
3271         _S_create, resize, _M_replace, _M_replace_safe,
3272         append(const basic_string&), append(const basic_string&, size_type,
3273         size_type), append(const _CharT*, size_type), append(size_type,
3274         _CharT), operator+(const _CharT*, const basic_string&),
3275         operator+(_CharT, const basic_string&), replace(iterator, iterator,
3276         size_type, _CharT), find(const _CharT*, size_type, size_type),
3277         find(_CharT, size_type), rfind(const _CharT*, size_type, size_type),
3278         rfind(_CharT, size_type), compare(size_type, size_type,
3279         const basic_string&), compare(size_type, size_type,
3280         const basic_string&, size_type, size_type), compare(const _CharT*),
3281         compare(size_type, size_type, const _CharT*), compare(size_type,
3282         size_type, const _CharT*, size_type)): Likewise.
3284 2003-06-03  Benjamin Kosnik  <bkoz@redhat.com>
3286         * include/bits/fstream.tcc (pbackfail): Make a rarely taken
3287         'if' branch less obscure.
3289 2003-06-02  Andrew Pinski  <pinskia@physics.uc.edu>
3291         PR libstdc++/9815
3292         * config/cpu/i386/atomicity.h (__exchange_and_add): add intel
3293         asm case to asm.
3294         * config/cpu/i486/atomicity.h (__exchange_and_add): Likewise.
3295         (__atomic_add): likewise.
3297 2003-06-02  Paolo Carlini  <pcarlini@unitus.it>
3299         * include/bits/sstream.tcc (pbackfail): Minor clean up and
3300         reformatting, consistent with basic_filebuf::pbackfail.
3302 2003-06-02  Richard Kreckel  <Richard.Kreckel@GiNaC.DE>
3304         PR libstdc++/11062
3305         * config/cpu/mips/atomicity.h:  Change __attribute__ ((unused)) to
3306         __attribute__ ((__unused__)).
3307         * config/os/aix/atomicity.h:  Likewise.
3309 2003-06-02  Paolo Carlini  <pcarlini@unitus.it>
3311         PR libstdc++/9761
3312         * include/bits/fstream.tcc (pbackfail): If the pback buffer
3313         is already active don't try to store in it a second char.
3314         * testsuite/27_io/basic_filebuf/pbackfail/char/9761.cc: New.
3316         * include/bits/fstream.tcc (pbackfail): Add unbuffered bits.
3318 2003-06-02  Paolo Carlini  <pcarlini@unitus.it>
3320         * testsuite/27_io/basic_stringbuf/seekpos/char/3.cc: Tweak
3321         line spacing.
3323 2003-06-02  Paolo Carlini  <pcarlini@unitus.it>
3325         * include/std/std_fstream.h (_M_destroy_pback): Use _M_in_beg
3326         instead of unnecessarily taking the address of _M_pback.
3327         (xsgetn): Simplify slightly for a single char pback buffer.
3329 2003-06-02  Paolo Carlini  <pcarlini@unitus.it>
3331         * include/bits/sstream.tcc (seekoff): Remove four unnecessary
3332         variables and two 'if', clean up.
3334 2003-06-02  Paolo Carlini  <pcarlini@unitus.it>
3336         * include/bits/sstream.tcc (seekpos): Test against _M_out_lim
3337         not _M_out_end, since the former actually points to the string
3338         end (vs buffer end).
3339         * testsuite/27_io/basic_stringbuf/seekpos/char/3.cc: New.
3341 2003-05-30  Phil Edwards  <pme@gcc.gnu.org>
3343         * docs/doxygen/filter:  New file.
3344         * docs/doxygen/filter.sed:  New file.
3345         * docs/doxygen/run_doxygen:  Add g flag to sed substitutions.  Duh.
3346         * docs/doxygen/user.cfg.in (INPUT_FILTER):  Point to new filter.
3347         * docs/html/documentation.html:  Fix links to doxygen pages.
3349 2003-05-30  Paolo Carlini  <pcarlini@unitus.it>
3351         * include/bits/fstream.tcc (_M_convert_to_external): Don't
3352         check for __ilen > 0.
3354 2003-05-29  Sylvain Pion  <Sylvain.Pion@mpi-sb.mpg.de>
3356         PR libstdc++/10783
3357         * include/bits/stl_iterator.h (class __normal_iterator):
3358         Don't inherit from iterator, add missing typedefs.
3360 2003-05-29  Paolo Carlini <pcarlini@unitus.it>
3362         * testsuite/24_iterators/reverse_iterator.cc: Split up, as follows.
3363         * testsuite/24_iterators/reverse_iterator/1.cc: New.
3364         * testsuite/24_iterators/reverse_iterator/2.cc: New.
3365         * testsuite/24_iterators/reverse_iterator/3.cc: New, from
3366         PR libstdc++/10783.
3368 2003-05-27  Steve Ellcey  <sje@cup.hp.com>
3370         * config/os/hpux/os_defines.h: Define _LIBUNWIND_STD_ABI if we are
3371         on IA64 HP-UX.
3372         * libsupc++/eh_throw.cc: Don't call _Unwind_Resume_or_Rethrow if
3373         _LIBUNWIND_STD_ABI is set.
3375 2003-05-26  Brendan Kehoe  <brendan@zen.org>
3377         * include/bits/locale_facets.tcc (do_get): Honor $22.2.6.3.3/8 and
3378         make sure the number of digits required after the decimal-point
3379         (if any) is exactly the value returned by frac_digits().
3380         * testsuite/22_locale/money_get/get/char/9.cc: New.
3381         * testsuite/22_locale/money_get/get/wchar_t/9.cc: New.
3383 2003-05-27  Jonathan Wakely  <redi@gcc.gnu.org>
3385         * include/std/std_istream.h, include/std/std_ostream.h: Typo in
3386         comment.
3388 2003-05-26  Benjamin Kosnik  <bkoz@redhat.com>
3390         PR libstdc++/9339
3391         * include/std/std_fstream.h (basic_filebuf::_M_overflow): Remove.
3392         (_M_pback): No array necessary.
3393         * include/bits/fstream.tcc (basic_filebuf::_M_overflow): Add
3394         unbuffered case, coalesec into ...
3395         (basic_filebuf::overflow): ...this.
3396         * testsuite/27_io/basic_filebuf/sputn/char/9339.cc: New.
3397         * testsuite/27_io/basic_filebuf/sputc/char/2.cc: Unbuffered.
3399 2003-05-24  Nathanael Nerode  <neroden@gcc.gnu.org>
3401         * libsupc++/Makefile.am, libsupc++/cxxabi.h, libsupc++/del_op.cc,
3402         libsupc++/del_opnt.cc, libsupc++/del_opv.cc, libsupc++/del_opvnt.cc,
3403         libsupc++/eh_alloc.cc, libsupc++/eh_aux_runtime.cc,
3404         libsupc++/eh_catch.cc, libsupc++/eh_exception.cc,
3405         libsupc++/eh_globals.cc, libsupc++/eh_personality.cc,
3406         libsupc++/eh_term_handler.cc, libsupc++/eh_terminate.cc,
3407         libsupc++/eh_throw.cc, libsupc++/eh_type.cc,
3408         libsupc++/eh_unex_handler.cc, libsupc++/exception,
3409         libsupc++/new, libsupc++/new_handler.cc, libsupc++/new_op.cc,
3410         libsupc++/new_opnt.cc, libsupc++/new_opv.cc, libsupc++/new_opvnt.cc,
3411         libsupc++/pure.cc, libsupc++/tinfo.cc, libsupc++/tinfo2.cc,
3412         libsupc++/typeinfo, libsupc++/unwind-cxx.h, libsupc++/vec.cc:
3413         Replace "GNU CC" with "GCC".
3415         * include/backward/new.h: Replace "GNU CC" with "GCC".
3417 2003-05-22  Benjamin Kosnik  <bkoz@redhat.com>
3419         PR libstdc++/3066.
3420         * configure.in: Switch target to host, don't assume newlib.
3421         (target_alias): Remove.
3422         * configure: Regenerate.
3423         * acinclude.m4: Same.
3424         * aclocal.m4: Regenerate.
3425         * configure.target: Same. Rename to...
3426         * configure.host: This.
3428 2003-05-22  Paolo Carlini  <pcarlini@unitus.it>
3430         * include/std/std_fstream.h (_S_pback_size): Remove definition.
3431         (_M_create_pback(), _M_destroy_pback()): Simplify for a single-char
3432         pback buffer.
3433         * include/bits/fstream.tcc (_S_pback_size): Remove declaration.
3434         * testsuite/27_io/basic_filebuf/3.cc: Remove explicit instantiation
3435         of _S_pback_size for systems with no COMDAT or weak support.
3436         * testsuite/27_io/basic_filebuf/seekoff/10132-2.cc: Likewise.
3437         * testsuite/27_io/basic_filebuf/seekpos/10132-3.cc: Likewise.
3438         * testsuite/27_io/basic_filebuf/underflow/10096.cc: Likewise.
3439         * testsuite/27_io/basic_fstream/3.cc: Likewise.
3440         * testsuite/27_io/basic_ifstream/3.cc: Likewise.
3441         * testsuite/27_io/basic_istream/sentry/char/3983-fstream.cc: Likewise.
3442         * testsuite/27_io/basic_ofstream/3.cc: Likewise.
3443         * testsuite/27_io/basic_ostream/sentry/char/3983-fstream.cc: Likewise.
3444         * testsuite/27_io/basic_streambuf/3.cc: Likewise.
3446 2003-05-22  Paolo Carlini  <pcarlini@unitus.it>
3448         * include/bits/fstream.tcc (_M_underflow): Simplify:
3449         !__testout implies _M_filepos == _M_in_end, therefore
3450         the first _M_file.seekoff call is never issued.
3452 2003-05-22  Benjamin Kosnik  <bkoz@redhat.com>
3454         * configure.in: Sort cross table.
3455         * configure: Regenerate.
3457 2003-05-22  Brad Spencer  <spencer@infointeractive.com>
3459         PR libstdc++/10106
3460         * configure.in: Add Solaris cross bits.
3462 2003-05-21  Danny Smith  <dannysmith@users.sourceforge.net>
3464         * libstdc++-v3/config/os/mingw32/os_defines.h
3465         (__GTHREAD_HIDE_WIN32API): Define to 1 by defualt.
3466         (NOMINMAX): Define.  Update copyright year.
3468 2003-05-21  Paolo Carlini  <pcarlini@unitus.it>
3470         * include/std/std_fstream.h (_M_set_buffer): Fix indentation.
3472 2003-05-21  Jonathan Wakely  <redi@gcc.gnu.org>
3474         * docs/html/faq/index.html: Fix typo.
3475         * docs/html/faq/index.txt: Regenerate.
3477 2003-05-21  Jonathan Wakely  <redi@gcc.gnu.org>
3479         * docs/html/test.html: Fix markup.
3481 2003-05-21  Danny Smith  <dannysmith@users.sourceforge.net>
3483         * libmath/stubs.c (hypot, hypotf, hypotl): Don't divide by
3484         zero.
3485         Update copyright year.
3487 2003-05-20  Paolo Carlini  <pcarlini@unitus.it>
3489         * testsuite/27_io/basic_filebuf/close/char/4.cc: Fix typo.
3491 2003-05-20  Paolo Carlini  <pcarlini@unitus.it>
3493         * testsuite/27_io/basic_filebuf/close/char/5.cc: New file,
3494         further testing that upon filebuf::close() 27.8.1.1,3 is enforced.
3496 2003-05-20  Gerald Pfeifer  <pfeifer@dbai.tuwien.ac.at>
3498         * include/bits/stl_alloc.h (__default_alloc_template::_S_chunk_alloc):
3499         Cast via void* to avoid -Wcast-align warnings.
3500         (__default_alloc_template::_S_refill): Likewise.
3502 2003-05-20  Benjamin Kosnik  <bkoz@redhat.com>
3504         * testsuite/README: Move to...
3505         * docs/html/test.html: ...here. Add documentation.
3506         * docs/html/install.html: Move testing bits out..
3507         * docs/html/documentation.html: Add separate testing link.
3508         * testsuite/performance: Add.
3509         * testsuite/performance/allocator.cc: New.
3510         * testsuite/performance/complex_norm.cc: New.
3511         * testsuite/performance/cout_insert_int.cc: New.
3512         * testsuite/performance/fstream_seek_write.cc: New.
3513         * testsuite/performance/ifstream_getline.cc: New.
3514         * testsuite/performance/map_create_fill.cc: New.
3515         * testsuite/performance/ofstream_insert_float.cc: New.
3516         * testsuite/performance/ofstream_insert_int.cc: New.
3517         * testsuite/performance/string_append.cc: New.
3518         * testsuite/lib/libstdc++-v3-dg.exp (v3-compute-tests): Filter
3519         performance tests.
3521 2003-05-20  Gabriel Dos Reis <gdr@integrable-solutions.net>
3523         PR libstdc++/10689
3524         * include/std/std_complex.h (pow): Tidy.
3526 2003-05-19  Paolo Carlini  <pcarlini@unitus.it>
3528         * testsuite/27_io/basic_filebuf/close/char/4.cc: New file, testing
3529         that upon filebuf::close() 27.8.1.1,3 is enforced.
3531 2003-05-15  Loren J. Rittle  <ljrittle@acm.org>
3533         * testsuite/thread/pthread4.cc: Further tweak to avoid fini race.
3535 2003-05-15  Paolo Carlini  <pcarlini@unitus.it>
3536             Nathan Myers  <ncm@cantrip.org>
3538         * include/bits/fstream.tcc (_M_overflow): Rewrote to call
3539         _M_convert_to_external only once (_M_buf_size is now the size of
3540         the put area + 1 for the overflow char of a full area); call
3541         _M_set_buffer instead of _M_set_indeterminate.
3542         (setbuf): Don't accept a buffer smaller than 2 chars.
3543         (_M_underflow): Refill _M_buf_size - 1 chars; call _M_set_buffer,
3544         instead of _M_set_determinate.
3545         (open): Call _M_set_buffer, instead of _M_set_indeterminate.
3546         (seekoff): Likewise.
3547         * include/ext/stdio_filebuf.h (stdio_filebuf(int,
3548         std::ios_base::openmode, bool, size_t),
3549         stdio_filebuf(std::__c_file*, std::ios_base::openmode, size_t):
3550         Likewise.
3551         * include/std/std_fstream.h (_M_set_indeterminate): Remove.
3552         (_M_set_determinate): Rename as _M_set_buffer, _M_buf_size ->
3553         _M_buf_size - 1.
3554         * include/std/std_streambuf.h: Tweak _M_out_lim comment.
3555         * testsuite/27_io/basic_filebuf/sgetn/char/1.cc: Tweak, taking
3556         into account that, for _M_buf_size == BUFSIZ == 8192, the size of
3557         the put area is now BUFSIZ - 1.
3558         * testsuite/ext/stdio_filebuf_2.cc: Tweak, taking into account
3559         that now the smallest _M_buf_size is 2 (still fails, for the same
3560         reason, with 3.2.3)
3562 2003-05-14  Loren J. Rittle  <ljrittle@acm.org>
3564         * testsuite/thread/pthread4.cc: Tweak test.
3566 2003-05-13  Benjamin Kosnik  <bkoz@redhat.com>
3568         * testsuite/27_io/ios_base/cons/copy_neg.cc: Remove
3569         excess errors dg marker, use dg-errors instead.
3570         * testsuite/27_io/ios_base/cons/assign_neg.cc: Same.
3571         * testsuite/20_util/auto_ptr_neg.cc: Same.
3573 2003-05-12  Benjamin Kosnik  <bkoz@redhat.com>
3575         * include/std/std_fstream.h (basic_filebuf::_M_codecvt): Add
3576         cached member.
3577         * include/bits/fstream.tcc (basic_filebuf::basic_filebuf):
3578         Initialize _M_codecvt.
3579         (basic_filebuf::imbue): Same.
3580         (basic_filebuf::showmanyc): Use it.
3581         (basic_filebuf::underflow): Use it.
3582         (basic_filebuf::_M_convert_to_external): Use it.
3583         (basic_filebuf::seekoff): Use it.
3584         (basic_filebuf::imbue): Use it, tweaks.
3585         * include/bits/localefwd.h (__check_facet): New.
3586         * include/bits/locale_classes.h: Tweaks.
3587         * include/bits/locale_facets.tcc: Tweaks.
3588         * include/bits/basic_ios.h (basic_ios::_M_check_facet): Remove.
3589         _M_fctype to _M_ctype, _M_fnumput to _M_num_put, _M_fnumget to
3590         _M_num_get. Change _M_check_facet to __check_facet. Tweaks.
3591         * include/bits/basic_ios.tcc: Same.
3592         * include/bits/istream.tcc: Same.
3593         * include/bits/ostream.tcc: Same.
3594         * include/std/std_streambuf.h: Same.
3595         * testsuite/27_io/basic_filebuf/imbue/char/2.cc: New.
3596         * testsuite/27_io/basic_filebuf/imbue/char/3.cc: New.
3597         * testsuite/27_io/basic_filebuf/imbue/wchar_t/1.cc: New.
3598         * testsuite/27_io/basic_filebuf/imbue/wchar_t/2.cc: New.
3599         * testsuite/27_io/basic_filebuf/imbue/wchar_t/3.cc: New.
3600         * testsuite/27_io/basic_filebuf/imbue/wchar_t/9322.cc: New.
3602 2003-05-12  Paolo Carlini  <pcarlini@unitus.it>
3604         * testsuite/27_io/basic_filebuf/sgetc/char/1.cc: Remove
3605         unnecessary includes and unused string literals.
3606         * testsuite/27_io/basic_filebuf/sputbackc/char/1.cc: Likewise.
3607         * testsuite/27_io/basic_filebuf/sputc/char/1.cc: Likewise.
3608         * testsuite/27_io/basic_filebuf/sputn/char/1.cc: Likewise.
3609         * testsuite/27_io/basic_filebuf/sungetc/char/1.cc: Likewise.
3611 2003-05-12  Benjamin Kosnik  <bkoz@redhat.com>
3613         * include/bits/fstream.tcc (_M_overflow): Remove unbuffered bits.
3615 2003-05-12  Paolo Carlini  <pcarlini@unitus.it>
3617         * include/std/std_fstream.h (_M_convert_to_external): Change
3618         to return bool, take two less streamsize parameters.
3619         * include/bits/fstream.tcc (_M_convert_to_external): Tweak
3620         consistently definition.
3621         (_M_overflow): Adjust call points.
3623 2003-05-12  Benjamin Kosnik  <bkoz@redhat.com>
3625         * testsuite/27_io/basic_filebuf/underflow/10096.cc: Add weak bits.
3627 2003-05-11  Phil Edwards  <pme@gcc.gnu.org>
3629         * testsuite/Makefile.am:  Properly quote /both/ LD_RUN_PATHs.
3630         * testsuite/Makefile.in:  Regenerate.
3632 2003-05-11  Phil Edwards  <pme@gcc.gnu.org>
3634         * testsuite/Makefile.am:  Properly quote LD_RUN_PATH.
3635         * testsuite/Makefile.in:  Regenerate.
3637 2003-05-11  Gabriel Dos Reis <gdr@integrable-solutions.net>
3639         PR libstdc++/3181
3640         * include/c_std/std_cmath.h: #include <bits/cpp_type_traits.h>
3641         (acos): Handle integer argument.
3642         (asin): Likewise.
3643         (atan): Likewise.
3644         (atan2): Likewise.
3645         (ceil): Likewise.
3646         (cos): Likewise.
3647         (cosh): Likewise.
3648         (exp): Likewise.
3649         (fabs): Likewise.
3650         (floor): Likewise.
3651         (frexp): Likewise.
3652         (ldexp): Likewise.
3653         (log): Likewise.
3654         (log10): Likewise.
3655         (sin): Likewise.
3656         (sinh): Likewise.
3657         (sqrt): Likewise.
3658         (tan): Likewise.
3659         (tanh): Likewise.
3660         * include/bits/cpp_type_traits.h (__are_same<>): New traits.
3661         (__enable_if): Likewise.
3662         * testsuite/26_numerics/cmath/overloads.C: New test.
3664 2003-05-10  Petur Runolfsson  <peturr02@ru.is>
3666         PR libstdc++/9027
3667         PR libstdc++/9520
3668         PR libstdc++/10096
3669         * include/bits/fstream.tcc (basic_file::_M_underflow):  Add generic
3670         implementation, based on old wchar_t specialization, add support
3671         for codecvt::in() return value of codecvt_base::noconv, remove
3672         _M_file.sys_ungetc() call.
3673         * include/std/std_fstream.h (basic_file::underflow,
3674         basic_file::uflow, basic_file::_M_underflow):  Remove
3675         specialization declarations, call _M_underflow from generic versions
3676         of underflow and uflow.
3677         * src/fstream.cc (basic_file::underflow, basic_file::uflow,
3678         basic_file::_M_underflow):  Remove specializations.
3679         * src/Makefile.am (sources):  Remove fstream.cc.
3680         * src/Makefile.in:  Regenerated.
3681         * testsuite/27_io/basic_filebuf/underflow/10096.cc:  New test.
3682         * testsuite/27_io/basic_filebuf/underflow/char/1.cc:  New test.
3683         * testsuite/27_io/basic_filebuf/underflow/char/9027.cc:  New test.
3684         * testsuite/27_io/basic_filebuf/underflow/wchar_t/9520.cc:  New test.
3686 2003-05-10  Benjamin Kosnik  <bkoz@redhat.com>
3688         * include/ext/stdio_filebuf.h (__stdio_filebuf): Remove stack
3689         buffer.
3690         * config/io/basic_file_stdio.h (__basic_file::xsgetn): Remove
3691         unbuffered bits.
3692         (__basic_file::xsputn): Same.
3693         (__basic_file::seekoff): Same.
3694         (__basic_file::seekpos): Same.
3695         (__basic_file::showmanyc): Same.
3696         * config/io/basic_file_stdio.cc: Same.
3697         * include/std/std_fstream.h: Same.
3698         * include/bits/fstream.tcc: Same.
3699         * src/fstream.cc: Same.
3700         * testsuite/27_io/basic_filebuf/sgetn/char/1.cc (test05): Tidy.
3702 2003-05-10  Petur Runolfsson  <peturr02@ru.is>
3704         PR libstdc++/9520
3705         PR libstdc++/9661
3706         PR libstdc++/9662
3707         * include/ext/stdio_sync_filebuf.h:  New file.
3708         (basic_stdiobuf):  New.
3709         * include/Makefile.am (ext_headers): Add ext/stdio_sync_filebuf.h
3710         * include/Makefile.in: Regenerate.
3711         * include/bits/ios_base.h (Init::_S_create_buffers,
3712         Init::_S_destroy_buffers):  Remove declarations.
3713         * src/globals.cc (buf_cout_sync, buf_cin_sync, buf_cerr_sync,
3714         buf_wcout_sync, buf_wcin_sync, buf_wcerr_sync):  Define.
3715         * src/ios.cc (Init::_S_create_buffers,
3716         Init::_S_destroy_buffers):  Remove.
3717         (Init::Init):  Create and use syncronized buffers.
3718         (ios_base::sync_with_stdio):  Destroy syncronized buffers,
3719         create and install unsyncronized buffers.
3720         * testsuite/27_io/objects/char/10.cc:  New test.
3721         * testsuite/27_io/objects/char/9.cc:  New test.
3722         * testsuite/27_io/objects/char/9661-1.cc:  New test.
3723         * testsuite/27_io/objects/char/9661-2_xin.cc:  New test.
3724         * testsuite/27_io/objects/char/9661-2_xin.in:  New.
3725         * testsuite/27_io/objects/wchar_t/1.cc:  New test.
3726         * testsuite/27_io/objects/wchar_t/10.cc:  New test.
3727         * testsuite/27_io/objects/wchar_t/2.cc:  New test.
3728         * testsuite/27_io/objects/wchar_t/2523-1_xin.cc:  New test.
3729         * testsuite/27_io/objects/wchar_t/2523-1_xin.in:  New.
3730         * testsuite/27_io/objects/wchar_t/2523-2_xin.cc:  New test.
3731         * testsuite/27_io/objects/wchar_t/2523-2_xin.in:  New.
3732         * testsuite/27_io/objects/wchar_t/3045.cc:  New test.
3733         * testsuite/27_io/objects/wchar_t/3647.cc:  New test.
3734         * testsuite/27_io/objects/wchar_t/3_xin.cc:  New test.
3735         * testsuite/27_io/objects/wchar_t/3_xin.in:  New.
3736         * testsuite/27_io/objects/wchar_t/4_xin.cc:  New test.
3737         * testsuite/27_io/objects/wchar_t/4_xin.in:  New.
3738         * testsuite/27_io/objects/wchar_t/5.cc:  New test.
3739         * testsuite/27_io/objects/wchar_t/5268.cc:  New test.
3740         * testsuite/27_io/objects/wchar_t/5280_xin.cc:  New test.
3741         * testsuite/27_io/objects/wchar_t/5280_xin.in:  New.
3742         * testsuite/27_io/objects/wchar_t/6.cc:  New test.
3743         * testsuite/27_io/objects/wchar_t/6548_xin.cc:  New test.
3744         * testsuite/27_io/objects/wchar_t/6548_xin.in:  New.
3745         * testsuite/27_io/objects/wchar_t/6648-1_xin.cc:  New test.
3746         * testsuite/27_io/objects/wchar_t/6648-1_xin.in:  New.
3747         * testsuite/27_io/objects/wchar_t/6648-2_xin.cc:  New test.
3748         * testsuite/27_io/objects/wchar_t/6648-2_xin.in:  New.
3749         * testsuite/27_io/objects/wchar_t/7.cc:  New test.
3750         * testsuite/27_io/objects/wchar_t/7744_xin.cc:  New test.
3751         * testsuite/27_io/objects/wchar_t/7744_xin.in:  New.
3752         * testsuite/27_io/objects/wchar_t/8.cc:  New test.
3753         * testsuite/27_io/objects/wchar_t/9_xin.cc:  New test.
3754         * testsuite/27_io/objects/wchar_t/9_xin.in:  New.
3755         * testsuite/27_io/objects/wchar_t/9520.cc:  New test.
3756         * testsuite/27_io/objects/wchar_t/9661-1.cc:  New test.
3757         * testsuite/27_io/objects/wchar_t/9661-2_xin.cc:  New test.
3758         * testsuite/27_io/objects/wchar_t/9661-2_xin.in:  New.
3759         * testsuite/27_io/objects/wchar_t/9662.cc:  New test.
3760         * testsuite/ext/stdiobuf_char.cc:  New test.
3761         * testsuite/ext/stdiobuf_wchar_t.cc:  New test.
3763 2003-05-10  Paolo Carlini  <pcarlini@unitus.it>
3765         * testsuite/27_io/basic_filebuf/close/char/3.cc: Remove
3766         unnecessary includes and unused string literals.
3767         * testsuite/27_io/basic_filebuf/in_avail/char/1.cc: Likewise.
3769 2003-05-08  Paolo Carlini  <pcarlini@unitus.it>
3771         * include/std/std_streambuf.h (setg, setp): Don't touch _M_mode.
3773 2003-05-07  Richard Henderson  <rth@redhat.com>
3775         PR c++/10570
3776         * libsupc++/eh_catch.cc (__cxa_begin_catch): Handle foreign exceptions.
3777         (__cxa_end_catch): Likewise.
3778         * libsupc++/eh_throw.cc (__cxa_rethrow): Likewise.  Use
3779         _Unwind_Resume_or_Rethrow.
3780         * libsupc++/eh_personality.cc (empty_exception_spec): New.
3781         (PERSONALITY_FUNCTION): Don't ignore terminate or catch-all
3782         for _UA_FORCE_UNWIND.  Honor empty filter spec for foreign
3783         exceptions.  Don't push terminate/unexpected to cxa functions.
3784         (__cxa_call_unexpected): Remove foreign exception fixmes.
3786 2003-05-07  Benjamin Kosnik  <bkoz@redhat.com>
3788         * testsuite/27_io/ios_base/cons: New.
3789         * testsuite/27_io/ios_base/cons/assign_neg.cc: New.
3790         * testsuite/27_io/ios_base/cons/copy_neg.cc: New.
3792 2003-05-07  Paolo Carlini  <pcarlini@unitus.it>
3794         * include/std/std_fstream.h (_M_is_indeterminate): Remove.
3795         * src/fstream.cc
3796         (basic_filebuf<char/wchar_t>::_M_underflow): Simplify: either
3797         there is no buffer or __testget == !__testinit.
3799         * src/fstream.cc
3800         (basic_filebuf<char/wchar_t>::_M_underflow): _M_set_determinate()
3801         automatically sets, if appropriate, _M_out_cur == _M_in_cur.
3803         * include/std/std_fstream.h (_M_destroy_pback): Don't set
3804         unnecessarily _M_pback_cur_save and _M_pback_end_save.
3806         * include/std/std_fstream.h (_M_set_determinate): Minor tweak.
3808         * include/std/std_sstream.h (_M_sync): Minor tweak.
3810         * include/bits/fstream.tcc (close): No need to call
3811         _M_destroy_pback, setting _M_pback_init to false suffices
3812         to clean up.
3814 2003-05-06  Benjamin Kosnik  <bkoz@redhat.com>
3816         * include/bits/stl_algo.h: Enums as _S_.
3817         * include/bits/stl_tree.h: Same.
3818         * include/bits/stl_bvector.h: Same.
3819         * include/bits/ios_base.h: Same.
3820         * include/bits/stl_alloc.h: Same.
3821         * include/ext/stl_hashtable.h: Same.
3822         * src/ios.cc: And here.
3824         * include/std/std_sstream.h: Replace _M_really_sync to _M_sync.
3825         * include/bits/sstream.tcc: Same.
3827         * include/bits/basic_ios.h: Correct spacing for '< ctype'.
3829         * include/bits/locale_facets.tcc: Replace __temp to __tmp.
3831         * include/bits/locale_facets.h (__num_base): Remove protected.
3832         Use _S_[io]* names for enumerations.
3833         (_S_format_int): Remove.
3834         * include/bits/locale_facets.tcc: Same.
3835         * src/locale.cc: Same.
3837         * include/std/std_sstream.h (stringbuf::str): Tweak formatting.
3839 2003-05-06  Phil Edwards  <pme@gcc.gnu.org>
3841         * docs/html/faq/index.html (3.10):  Add note about mips atomicity.h.
3842         * docs/html/faq/index.txt:  Regenerated.
3844 2003-05-06  Michael Ritzert <Ritzert@t-online.de>
3845             Matt Kraai <kraai@alumni.cmu.edu>
3847         * include/ext/stl_rope.h (_Rope_RopeRep<>::_M_c_string_lock): Tweak.
3848         And retweak.
3850 2003-05-06  Richard Sandiford  <rsandifo@redhat.com>
3852         * configure.target (mips*): Use the generic atomicity.h by default.
3854 2003-05-05  Loren J. Rittle  <ljrittle@acm.org>
3855             (Inspired by an alternate patch from Danny Smith.)
3857         * include/bits/stl_threads.h (_Atomic_swap): Kill it...
3858         (_Swap_lock_struct<>): ...and the horse it rode in on.
3859         * src/globals.cc (_Swap_lock_struct<>): Likewise.
3860         * include/ext/stl_rope.h (_Rope_RopeRep<>::_M_c_string_lock): New
3861         member to support...
3862         * include/ext/ropeimpl.h (rope<>::c_str): Follow *all* memory
3863         visibility rules related to POSIX threads.
3864         * testsuite/thread/pthread7-rope.cc: New test.
3866 2003-05-04  Paolo Carlini  <pcarlini@unitus.it>
3868         * testsuite/21_strings/basic_string/find/char/3.cc: New
3869         file, testing basic_string<char>::find_first_not_of.
3870         * testsuite/21_strings/basic_string/find/wchar_t/3.cc:
3871         Likewise for basic_string<wchar_t>.
3873 2003-05-03  Loren J. Rittle  <ljrittle@acm.org>
3875         * testsuite/thread/pthread1.cc: Remove special case for FreeBSD.
3877 2003-05-02  Benjamin Kosnik  <bkoz@redhat.com>
3879         * include/Makefile.am (CLEANFILES): Remove PCH files in target
3880         directory.
3881         * include/Makefile.in: Regenerate.
3883 2003-05-02  Paolo Carlini  <pcarlini@unitus.it>
3885         * include/std/std_sstream.h (str()): Tidy.
3887 2003-05-02  Nathan Myers  <ncm@cantrip.org>
3888             Paolo Carlini  <pcarlini@unitus.it>
3890         * include/bits/streambuf.tcc (__copy_streambufs): Rewrote.
3892 2003-05-02  Jonathan Wakely  <redi@gcc.gnu.org>
3894         * include/bits/basic_string.h (swap): Remove redundant template
3895         parameters from declaration of non-template member function.
3897 2003-05-01  Phil Edwards  <pme@gcc.gnu.org>
3899         * acconfig.h (_GLIBCPP_USE_NLS):  New symbol.
3900         * configure.in:  Move libintl.h header test...
3901         * acinclude.m4 (GLIBCPP_ENABLE_CLOCALE):  ...to here.  Gather all
3902         the NLS-related test results into one symbol.
3903         * src/functexcept.cc:  Use it here.
3904         * aclocal.m4, config.h.in, configure:  Regenerated.
3906 2003-05-01  Paolo Carlini  <pcarlini@unitus.it>
3908         * include/bits/sstream.tcc (overflow): Instead of calling
3909         str(), then _M_string.reserve, thus copying the contents
3910         of the current buffer two times, just copy the latter in
3911         a temporary, then use the 'swap trick'.
3913 2003-05-01  Paolo Carlini  <pcarlini@unitus.it>
3915         * include/std/std_sstream.h (str()): Revert the best of the
3916         previous 'improvement', incorrect due to the COW nature of
3917         v3 basic_string; simplify.
3919 2003-05-01  Paolo Carlini  <pcarlini@unitus.it>
3921         * include/bits/streambuf.tcc (__copy_streambufs): Adjust the
3922         type of __avail to ptrdiff_t to avoid signed-unsigned warning.
3924 2003-05-01  Benjamin Kosnik  <bkoz@redhat.com>
3926         * testsuite/abi_check.cc (check_version): Update known versions.
3927         Check added symbols for version_name != base version. Add missing
3928         symbols to incompatible list.
3930 2003-05-01  Benjamin Kosnik  <bkoz@redhat.com>
3932         * acinclude.m4 (GLIBCPP_EXPORT_FLAGS): Remove -Winline.
3933         * aclocal.m4: Regenerated.
3934         * configure: Regenerated.
3936 2003-05-01  Paolo Carlini  <pcarlini@unitus.it>
3938         * include/bits/streambuf.tcc (basic_streambuf::xsgetn):
3939         Const-ify some variables.
3940         (basic_streambuf::xsputn): Likewise; change the type of some
3941         variables to size_t.
3942         (__copy_streambufs): Change some variables to size_t.
3944 2003-05-01  Paolo Carlini  <pcarlini@unitus.it>
3946         * include/std/std_sstream.h (str()): Avoid constructing
3947         a basic_string temporary not only when it would turn out
3948         to be zero-sized but also when identical to the current
3949         _M_string buffer.
3951 2003-05-01  Paolo Carlini  <pcarlini@unitus.it>
3953         * include/ext/stdio_filebuf.h
3954         (stdio_filebuf(int, std::ios_base::openmode, bool, size_t),
3955         stdio_filebuf(std::__c_file*, std::ios_base::openmode, size_t)):
3956         Shorten a bit (-10 lines) by factoring out some code.
3958 2003-04-30  Phil Edwards  <pme@gcc.gnu.org>
3960         * acinclude.m4:  Add bit missing from previous patch.
3961         * aclocal.m4, configure:  Regenerated.
3963 2003-04-29  Phil Edwards  <pme@gcc.gnu.org>
3965         * docs/doxygen/mainpage.html:  Bring up to date.
3966         * docs/doxygen/run_doxygen:  Cosmetic tweaks.  Work around a bug
3967         in Doxygen.
3968         * docs/doxygen/user.cfg.in:  Scanning the precompiled headers
3969         breaks everything.  Don't scan them.
3970         * docs/html/documentation.html:  Point to "Write after approval"
3971         notes.
3973 2003-04-29  Phil Edwards  <pme@gcc.gnu.org>
3975         * acinclude.m4 (GLIBCPP_ENABLE_CLOCALE):  Search for gettext outside
3976         of libc if message translations are being used.  Fix info text in
3977         xieee_1003.1-2001 case.
3978         * aclocal.m4, configure:  Regenerate.
3980 2003-04-29 Joel Sherrill  <joel.sherrill@OARcorp.com>
3981            Loren J. Rittle <ljrittle@acm.org>
3982            Martin v. Loewis  <martin@v.loewis.de>
3984         * config/cpu/i386/atomicity.h: New file.
3986 2003-04-29  Paolo Carlini  <pcarlini@unitus.it>
3988         * include/bits/fstream.tcc (open): Change to single return.
3990 2003-04-29  Paolo Carlini  <pcarlini@unitus.it>
3992         * include/std/std_sstream.h (underflow): Change to single return.
3994 2003-04-28  Paolo Carlini  <pcarlini@unitus.it>
3996         * include/std/std_streambuf.h (_M_buf): is currently
3997         used only for basic_filebuf, therefore move it there.
3998         (basic_streambuf(), ~basic_streambuf()): Adjust.
3999         * include/std/std_fstream.h (_M_buf): Moved here.
4000         * include/std/std_sstream.h (setbuf): Don't set _M_buf,
4001         is actually redundant for basic_stringbuf.
4002         (_M_really_sync): Likewise.
4003         * include/bits/fstream.tcc (basic_filebuf()): Adjust.
4004         * include/bits/sstream.tcc (seekoff): Adjust.
4006 2003-04-28  Benjamin Kosnik  <bkoz@redhat.com>
4008         * src/localename.cc: Standardize exception strings.
4009         * src/locale.cc: Same.
4010         * src/ios.cc: Same.
4011         * include/bits/basic_string.tcc: Same.
4012         * include/bits/basic_ios.tcc: Same.
4013         * include/std/std_bitset.h: Same.
4014         * include/ext/ropeimpl.h: Same.
4015         * include/bits/stl_vector.h: Same.
4016         * include/bits/stl_deque.h: Same.
4017         * include/bits/stl_bvector.h: Same.
4018         * config/locale/generic/c_locale.cc: Same.
4019         * config/locale/gnu/c_locale.cc: Same.
4020         * config/locale/ieee_1003.1-2001/codecvt_specializations.h: Same.
4022         * testsuite/testsuite_hooks.cc (__gnu_cxx_test): Modify.
4024 2003-04-28  Paolo Carlini  <pcarlini@unitus.it>
4026         * include/std/std_streambuf.h (_M_buf_size): is currently
4027         used only for basic_filebuf, therefore move it there.
4028         (basic_streambuf(), ~basic_streambuf()): Adjust.
4029         * include/std/std_fstream.h (_M_buf_size): Moved here.
4030         * include/bits/fstream.tcc (basic_filebuf()): Adjust.
4032 2003-04-28  Paolo Carlini  <pcarlini@unitus.it>
4034         * include/bits/streambuf.tcc (__copy_streambufs): Don't use
4035         _M_buf_size (synced input is now correctly dealt with
4036         elsewhere); when the output buffer is full don't fall back
4037         to a snextc-sputc loop, call overflow instead.
4039 2003-04-28  Paolo Carlini  <pcarlini@unitus.it>
4041         * include/bits/sstream.tcc (pbackfail): Shorten a bit (6 lines)
4042         the innermost 'if' by factoring out some code.
4044 2003-04-28  Phil Edwards  <pme@gcc.gnu.org>
4046         * configure.in:  Test for libintl.h.
4047         * include/bits/c++config:  Define __N for everybody.
4048         * include/bits/basic_string.h, include/bits/stl_bvector.h,
4049         include/bits/stl_deque.h, include/bits/stl_vector.h,
4050         include/std/std_bitset.h:  Wrap all __throw* text with __N.
4051         * po/Makefile.am (pot):  New rule, mostly working.
4052         * src/functexcept.cc:  Call gettext on all __throw* arguments when
4053         -fexceptions is in effect.
4054         * po/Makefile.in, config.h.in, configure:  Regenerate.
4056 2003-04-28  Petur Runolfsson  <peturr02@ru.is>
4058         PR libstdc++/9523
4059         * include/bits/ios_base.h (Init::_S_ios_create,
4060         Init::_S_ios_destroy):  Remove declarations.
4061         (Init::_S_create_buffers,
4062         Init::_S_destroy_buffers):  Declare
4063         * src/ios.cc (Init::_S_ios_create):  Remove
4064         (Init::_S_create_buffers):  Create buffers and add to streams.
4065         (Init::_S_ios_destroy):  Rename to...
4066         (Init::_S_destroy_buffers):  this.
4067         (Init::Init):  Only construct streams once.
4068         (Init::~Init):  Flush streams, don't destroy them.
4069         (ios_base::sync_with_stdio):  Don't destroy streams, only buffers.
4070         * testsuite/27_io/ios_base/sync_with_stdio/9523.cc:  New test.
4071         * testsuite/27_io/objects/char/5.cc:  New test.
4072         * testsuite/27_io/objects/char/5268.cc:  Avoid undefined behavior.
4073         * testsuite/27_io/objects/char/6.cc:  New test.
4074         * testsuite/27_io/objects/char/7.cc:  New test.
4076 2003-04-28  Benjamin Kosnik  <bkoz@redhat.com>
4078         * testsuite/27_io/objects/char/8.cc:  New test.
4080 2003-04-28  Benjamin Kosnik  <bkoz@redhat.com>
4082         * testsuite/22_locale/codecvt/unicode/char.cc: Remove bom usage.
4083         * testsuite/22_locale/codecvt/unicode/wchar_t.cc: Same.
4085 2003-04-27  Benjamin Kosnik  <bkoz@redhat.com>
4087         * include/std/std_fstream.h (basic_filebuf): _M_pback_destroy to
4088         _M_destroy_pback. _M_pback_create to
4089         _M_create_pback. _M_underflow_common to
4090         _M_underflow. _M_really_overflow to _M_overflow.
4091         * include/bits/fstream.tcc: Same.
4092         * src/fstream.cc: Same.
4093         * include/std/std_streambuf.h (basic_streambuf): _M_in_cur_move to
4094         _M_move_in_cur.  _M_out_cur_move to _M_move_out_cur.
4095         * include/bits/streambuf.tcc: Same.
4096         * include/bits/fstream.tcc: Same.
4097         * include/bits/sstream.tcc: Same.
4099 2003-04-27  Benjamin Kosnik  <bkoz@redhat.com>
4101         * include/bits/locale_classes.h (locale::_Impl): Change _M_names
4102         from fixed size array.
4103         (locale): Change _S_categories as well.
4104         Formatting tweaks.
4105         * include/bits/locale_facets.tcc: Tweak.
4106         * config/locale/gnu/c_locale.cc: Assign _S_categories.
4107         * config/locale/generic/c_locale.cc: Same.
4108         * src/locale.cc: Tweak.
4109         * src/globals.cc: Change facet_name to name_vec, add names_c.
4110         * src/localename.cc: Use them.
4111         (locale::_Impl::~_Impl): Destroy _M_names.
4112         (locale::_Impl::_Impl): Create _M_names.
4114 2003-04-27  Andreas Schwab  <schwab@suse.de>
4116         * config/locale/ieee_1003.1-2001/codecvt_specializations.h
4117         (__enc_traits): Use __ibom and __ebom instead of ignoring them.
4119 2003-04-27  Nathan Myers  <ncm@cantrip.org>
4121         Move some basic_string members out of line because
4122         they are too big to reasonably be inline.
4123         * include/bits/basic_string.h
4124         (assign(const basic_string&, size_type, size_type),
4125         assign(const _CharT*, size_type),
4126         insert(size_type, const basic_string&, size_type, size_type),
4127         insert(size_type, const _CharT*, size_type),
4128         replace(size_type, size_type, const _CharT*, size_type)):
4129         Move from here to...
4130         * include/bits/basic_string.tcc: ...here.
4132 2003-04-26  Paolo Carlini  <pcarlini@unitus.it>
4134         * include/bits/fstream.tcc (pbackfail): Shorten a bit (10 lines)
4135         the innermost 'if' by factoring out some code.
4137 2003-04-26  Paolo Carlini  <pcarlini@unitus.it>
4139         * include/bits/streambuf.tcc (__copy_streambufs): Don't
4140         use in_avail(), simplify.
4142 2003-04-26  Paolo Carlini  <pcarlini@unitus.it>
4144         * include/std/std_sstream.h (setbuf): don't set _M_buf_size,
4145         in basic_stringbuf it's unused.
4147         * include/std/std_sstream.h (underflow): consistently use
4148         _M_in_cur, not gptr().
4150 2003-04-25  Ranjit Mathew  <rmathew@hotmail.com>
4151             Phil Edwards  <pme@gcc.gnu.org>
4153         * testsuite_flags.in: Guard against the possibility
4154         of having "xgcc" as a part of a folder name in the
4155         path to the GCC build folder.
4156         * testsuite/Makefile.am: Likewise.
4157         * testsuite/Makefile.in: Regenerated.
4159 2003-04-25  Benjamin Kosnik  <bkoz@redhat.com>
4161         PR libstdc++/10132
4162         * include/std/std_fstream.h (basic_filebuf::is_open): Add throw()
4163         exception specifications.
4164         (basic_filebuf::close): Same.
4165         (basic_filebuf::_M_pback_destroy): Same.
4166         (basic_filebuf::_M_destroy_internal_buffer): Same.
4167         (basic_filebuf): Remove __res_type typedef.
4168         * src/fstream.cc: Same.
4169         * include/bits/fstream.tcc
4170         (basic_filebuf::_M_convert_to_external): Simplify.
4171         (basic_filebuf::seekoff): Use has_facet before use_facet.
4172         (basic_filebuf::close): Add exception specification of throw().
4173         * testsuite/27_io/basic_filebuf/cons: New.
4174         * testsuite/27_io/basic_filebuf/cons/wchar_t: New.
4175         * testsuite/27_io/basic_filebuf/cons/wchar_t/10132-1.cc: New.
4176         * testsuite/27_io/basic_filebuf/seekoff/10132-2.cc: New.
4177         * testsuite/27_io/basic_filebuf/seekpos/10132-3.cc: New.
4179 2003-04-25  Benjamin Kosnik  <bkoz@redhat.com>
4181         * include/bits/locale_classes.h
4182         (locale::_S_extra_categories_size): Remove.
4183         * src/locale.cc: Remove _S_extra_categories_size.
4184         * src/localename.cc: Same.
4185         * config/locale/gnu/c_locale.cc: Same.
4186         * config/locale/generic/c_locale.cc: Same.
4188 2003-04-24  Richard Sandiford  <rsandifo@redhat.com>
4190         * src/localename.cc (__gnu_cxx::facet_vec): Correct types.
4192 2003-04-24  Phil Edwards  <pme@gcc.gnu.org>
4194         * docs/html/17_intro/howto.html:  Update some links.
4195         * docs/html/18_support/howto.html:  Link doxygen numeric_limits notes.
4196         * docs/html/27_io/howto.html:  Link doxygen stdio_filebuf notes.
4197         * docs/html/ext/howto.html:  Link to demangler notes and API.
4198         * docs/html/faq/index.html:  Remove trailing whitespace.
4199         (1.4, 2.4, 3.8, 4.1):  Bring up to date.
4200         (5.6):  Change to a bulleted list.
4202         * docs/html/faq/index.txt, docs/html/documentation.html,
4203         docs/html/17_intro/porting.html:  Regenerate.
4205 2003-04-23  Paolo Carlini  <pcarlini@unitus.it>
4207         * testsuite/27_io/basic_filebuf/3.cc: _S_pback_size now
4208         belongs to basic_filebuf.
4209         * testsuite/27_io/basic_fstream/3.cc: Likewise.
4210         * testsuite/27_io/basic_ifstream/3.cc: Likewise.
4211         * testsuite/27_io/basic_ios/3.cc: Remove _S_pback_size
4212         instantiation (now belongs to basic_filebuf).
4213         * testsuite/27_io/basic_iostream/3.cc: Likewise.
4214         * testsuite/27_io/basic_istream/3.cc: Likewise.
4215         * testsuite/27_io/basic_istream/sentry/char/3983-fstream.cc:
4216         _S_pback_size now belongs to basic_filebuf.
4217         * testsuite/27_io/basic_istringstream/3.cc: Remove _S_pback_size
4218         instantiation (now belongs to basic_filebuf).
4219         * testsuite/27_io/basic_ofstream/3.cc: _S_pback_size now
4220         belongs to basic_filebuf.
4221         * testsuite/27_io/basic_ostream/3.cc: Remove _S_pback_size
4222         instantiation (now belongs to basic_filebuf).
4223         * testsuite/27_io/basic_ostream/sentry/char/3983-fstream.cc:
4224         _S_pback_size now belongs to basic_filebuf.
4225         * testsuite/27_io/basic_ostringstream/3.cc: Remove _S_pback_size
4226         instantiation (now belongs to basic_filebuf).
4227         * testsuite/27_io/basic_streambuf/3.cc: _S_pback_size now belongs
4228         to basic_filebuf.
4229         * testsuite/27_io/basic_stringbuf/3.cc: Remove _S_pback_size
4230         instantiation (now belongs to basic_filebuf).
4231         * testsuite/27_io/basic_stringstream/3.cc: Likewise.
4233 2003-04-23  Benjamin Kosnik  <bkoz@redhat.com>
4235         * configure.in: Move GLIBCPP_CHECK_PCH before native/cross conditions.
4236         * configure: Regenerated.
4238 2003-04-23  Benjamin Kosnik  <bkoz@redhat.com>
4240         * config/locale/generic/c_locale.h (__convert_from_v): Use
4241         attribute unused.
4243 2003-04-23  Phil Edwards  <pme@gcc.gnu.org>
4245         * docs/html/ext/howto.html ('LWG Issues'):  Add issue 60, partial
4246         implementation only.
4247         * include/bits/istream.tcc (putback, unget, sync, tellg, seekg):
4248         Comment and change to comply with DR 60 and the effect on gcount().
4249         * include/std/std_istream.h:  Update comments.
4250         * testsuite/27_io/basic_istream/putback/char/1.cc (test01):  Add
4251         comments about reasons for tests.  Test sync() against gcount().
4252         * testsuite/27_io/basic_istream/seekg/char/2.cc:  New file, test
4253         for effect on gcount().
4254         * testsuite/27_io/basic_istream/tellg/char/2.cc:  New file, test
4255         for effect on gcount().
4257 2003-04-22  Loren J. Rittle  <ljrittle@acm.org>
4259         * testsuite/27_io/basic_filebuf/close/char/9964.cc (test_07):
4260         Adjust timing.
4262 2003-04-22  Paolo Carlini  <pcarlini@unitus.it>
4264         * include/std/std_streambuf.h (_S_pback_size, _M_pback,
4265         _M_pback_cur_save, _M_pback_end_save, _M_pback_init,
4266         _M_pback_create(), _M_pback_destroy()): Move to basic_filebuf.
4267         (basic_streambuf::basic_streambuf()): Adjust.
4268         * include/std/std_fstream.h (_S_pback_size, _M_pback,
4269         _M_pback_cur_save, _M_pback_end_save, _M_pback_init,
4270         _M_pback_create(), _M_pback_destroy()): Moved here
4271         from basic_streambuf.
4272         * include/bits/fstream.tcc (basic_filebuf::basic_filebuf()):
4273         Adjust.
4274         (basic_filebuf::_S_pback_size): Add declaration.
4275         * include/bits/streambuf.tcc (basic_streambuf::_S_pback_size):
4276         Remove declaration.
4278 2003-04-21  Paolo Carlini  <pcarlini@unitus.it>
4280         Consistently use _M_in_beg instead of eback(), _M_in_cur
4281         instead of gptr(), and so on.
4282         * include/bits/fstream.tcc (pbackfail, imbue): Here.
4283         * include/bits/sstream.tcc (pbackfail, seekoff, seekpos): Ditto.
4284         * include/bits/streambuf.tcc (sbumpc, sputbackc,
4285         __copy_streambufs): Ditto.
4286         * include/std/std_streambuf.h (sgetc): Ditto.
4288 2003-04-21  Paolo Carlini  <pcarlini@unitus.it>
4290         * include/bits/sstream.tcc (pbackfail, overflow):
4291         Formatting fixes.
4293 2003-04-21  Paolo Carlini  <pcarlini@unitus.it>
4295         * include/std/std_streambuf.h (uflow()): It's used only by
4296         basic_stringbuf (i.e., basic_filebuf provide its own uflow()),
4297         therefore do not consider the _M_buf_unified == true case.
4299         * include/std/std_streambuf.h (sgetc()): Restore __ret variable.
4301 2003-04-20  Paolo Carlini  <pcarlini@unitus.it>
4303         * docs/html/ext/howto.html ('LWG Issues'):
4304         Add issues 19, 90, 171, 231, 271.
4306 2003-04-20  Paolo Carlini  <pcarlini@unitus.it>
4308         * include/bits/sstream.tcc (pbackfail): Remove redundant
4309         NULL pointer check from test involving _M_in_*.
4310         (overflow, seekoff, seekpos): Const qualify bool variables.
4311         * include/std/std_sstream.h (underflow): Remove redundant
4312         NULL pointer check from test involving _M_in_*.
4313         (_M_really_sync): Const qualify bool variables.
4314         * src/fstream.cc (_M_underflow_common): Remove redundant
4315         NULL pointer check from test involving _M_in_*, const qualify
4316         bool variables.
4318         * include/std/std_streambuf.h (sgetc): Remove redundant
4319         variable.
4321 2003-04-18  Paolo Carlini  <pcarlini@unitus.it>
4323         According to 5.9 para 2 (second bullet) for pointers p, q
4324         pointing to the same type, with  p == 0 and q == 0, (p < q)
4325         is false.
4326         * include/bits/fstream.tcc (close, overflow, _M_really_overflow,
4327         seekoff): Remove redundant NULL pointer checks from tests
4328         involving _M_out_* and _M_in_*, const qualify bool variables.
4329         (showmanyc, pbackfail, _M_convert_to_external, imbue): Const
4330         qualify bool variables.
4331         * include/bits/streambuf.tcc (sbumpc, sputbackc, sungetc, sputc):
4332         Remove redundant NULL pointer checks from tests involving
4333         _M_out_* and _M_in_*, const qualify bool variables.
4334         * include/std/std_fstream.h (sync): Likewise.
4335         (_M_is_indeterminate): Const qualify bool variables.
4336         * include/std/std_streambuf.h (sgetc, uflow): Remove redundant
4337         NULL pointer checks from tests involving _M_out_* and _M_in_*,
4338         const qualify bool variables.
4339         (_M_in_cur_move, _M_out_cur_move, uflow): Const qualify bool
4340         variables.
4342 2003-04-18  Loren J. Rittle  <ljrittle@acm.org>
4344         * include/c_std/std_cmath.h (C99 FP capture): Only undefine said
4345         C99 FP macros, if actually captured.
4347         * docs/html/17_intro/porting.texi (_GLIBCPP_USE_C99_CHECK): New macro.
4348         (_GLIBCPP_USE_C99_DYNAMIC): New macro.
4349         (_GLIBCPP_USE_C99_LONG_LONG_CHECK): New macro.
4350         (_GLIBCPP_USE_C99_LONG_LONG_DYNAMIC): New macro.
4351         * config/os/bsd/freebsd/os_defines.h (_GLIBCPP_USE_C99_CHECK):
4352         New macro.
4353         (_GLIBCPP_USE_C99_DYNAMIC): New macro.
4354         (_GLIBCPP_USE_C99_LONG_LONG_CHECK): New macro.
4355         (_GLIBCPP_USE_C99_LONG_LONG_DYNAMIC): New macro.
4356         * include/c_std/std_cstdlib.h: Use new macros.
4357         * include/c_std/std_cstdio.h: Use new macros.
4358         * include/c_std/std_cwchar.h: Use new macros.
4360 2003-04-17  Benjamin Kosnik  <bkoz@redhat.com>
4362         PR libstdc++/9555
4363         * include/bits/ostream.tcc: Catch all exceptions for formatted
4364         output, instead of std::exception and derivatives.
4365         * include/bits/istream.tcc: Same.
4366         * testsuite/27_io/basic_ostream/inserters_arithmetic/char/9555-oa.cc:
4367         * testsuite/27_io/basic_ostream/inserters_character/char/9555-oc.cc:
4368         * testsuite/27_io/basic_ostream/inserters_other/char/9555-oo.cc:
4369         * testsuite/27_io/basic_istream/extractors_arithmetic/char/9555-ia.cc:
4370         * testsuite/27_io/basic_istream/extractors_character/char/9555-ic.cc:
4371         * testsuite/27_io/basic_istream/extractors_other/char/9555-io.cc:
4372         New.
4374 2003-04-17  Phil Edwards  <pme@gcc.gnu.org>
4376         * include/bits/c++config:  Minor cosmetic tweaks.
4378 2003-04-17  Loren J. Rittle  <ljrittle@acm.org>
4380         * testsuite_flags.in (PCHFLAGS): Find PCH in new home.
4381         * include/Makefile.am (pch_input): Find in ${target_builddir}.
4382         (pch_output): Rename to...
4383         (pch_output_builddir): ..this.  Find in ${target_builddir}.
4384         (pch_source): Tweak.
4385         (pch_build): Key off a built file.
4386         (pch_output rule): Rename to...
4387         (pch_input rule): ...this.  Produce ${pch_output_builddir}
4388         instead of ${pch_output}.
4389         (install-pch rule): Install ${pch_output_builddir}.
4390         * include/Makefile.in: Regenerated.
4392 2003-04-17  Paolo Carlini  <pcarlini@unitus.it>
4394         * include/std/std_streambuf.h (setp): _M_out_lim, being
4395         the end limit of used put area, is set equal to _M_out_beg.
4397 2003-04-16  Benjamin Kosnik  <bkoz@redhat.com>
4399         * acinclude.m4 (GLIBCPP_CHECK_PCH): New.
4400         * aclocal.m4: Regenerated.
4401         * configure.in: Remove old demangler bits.
4402         Call pch checks.
4403         * configure: Regenerate.
4404         * config.h.in: Regenerate.
4405         * include/Makefile.am (allstamps): Now allstamped.
4406         (allcreated): Define this.
4407         (all-local): Use 'em.
4408         Conditionally define pch_build, pch_install based on
4409         GLIBCPP_BUILD_PCH.
4410         (${pch_output}): New rule.
4411         (install-pch): New rule.
4412         (install-headers): New rule.
4413         (install-data-local): Install headers and conditionally pch.
4414         * include/Makefile.in: Regenerate.
4415         * testsuite_flags.in (--build-cxx): Use pch file.
4417 2003-04-16  Jonathan Wakely  <redi@gcc.gnu.org>
4419         * docs/html/ext/sgiexts.html: Fix path to stylesheet.
4421 2003-04-15  Benjamin Kosnik  <bkoz at redhat dot com>
4422             Paolo Carlini  <pcarlini at unitus dot it>
4424         PR libstdc++/9423
4425         * docs/html/27_io/howto.html
4426         ('The buffering is screwing up my program!'): Explain that
4427         opening counts as an I/O operation.
4429 2003-04-15  Andreas Tobler  <a.tobler@schweiz.ch>
4431         * testsuite/thread/pthread1.cc: Enable for darwin test.
4432         * testsuite/thread/pthread2.cc: Same.
4433         * testsuite/thread/pthread3.cc: Same.
4434         * testsuite/thread/pthread4.cc: Same.
4435         * testsuite/thread/pthread5.cc: Same.
4436         * testsuite/thread/pthread6.cc: Same.
4438 2003-04-15  Loren J. Rittle  <ljrittle@acm.org>
4440         libstdc++/7680
4441         * include/c_std/std_cmath.h (__gnu_cx::__c99_binding): New namespace.
4442         Populate it with multiple legal ways to obtain the C99 float
4443         transcendentals.  Use them instead of direct global reference.
4444         (C99 FP capture): Guard usage with _GLIBCPP_USE_C99_FP_MACROS_DYNAMIC.
4445         * docs/html/17_intro/porting.texi
4446         (_GLIBCPP_USE_C99_FLOAT_TRANSCENDENTALS_CHECK): New macro.
4447         (_GLIBCPP_USE_C99_FLOAT_TRANSCENDENTALS_DYNAMIC): New macro.
4448         (_GLIBCPP_USE_C99_FP_MACROS_DYNAMIC): New macro.
4449         * config/os/bsd/freebsd/os_defines.h
4450         (_GLIBCPP_USE_C99_FLOAT_TRANSCENDENTALS_CHECK): New macro.
4451         (_GLIBCPP_USE_C99_FLOAT_TRANSCENDENTALS_DYNAMIC): New macro.
4452         * testsuite/26_numerics/c_math_dynamic.cc: New file.
4454 2003-04-14  Andreas Tobler  <toa@pop.agri.ch>
4455             Benjamin Kosnik  <bkoz@redhat.com>
4457         * config/os/generic/ctype_inline.h: Fix.
4459 2003-04-14  Benjamin Kosnik  <bkoz@redhat.com>
4461         * testsuite/testsuite_hooks.h
4462         (__gnu_cxx_test::run_test_wrapped_generic_locale_exception_catcher):
4463         Change to try_named_locale.
4464         * testsuite/testsuite_hooks.cc (__gnu_cxx_test): Same.
4466         * testsuite/22_locale/codecvt/always_noconv/wchar_t/2.cc: Use
4467         try_named_locale.
4468         * testsuite/22_locale/codecvt/always_noconv/wchar_t/3.cc: Same.
4469         * testsuite/22_locale/codecvt/always_noconv/wchar_t/4.cc: Same.
4470         * testsuite/22_locale/codecvt/encoding/wchar_t/2.cc: Same.
4471         * testsuite/22_locale/codecvt/encoding/wchar_t/3.cc: Same.
4472         * testsuite/22_locale/codecvt/encoding/wchar_t/4.cc: Same.
4473         * testsuite/22_locale/codecvt/in/wchar_t/2.cc: Same.
4474         * testsuite/22_locale/codecvt/in/wchar_t/3.cc: Same.
4475         * testsuite/22_locale/codecvt/in/wchar_t/4.cc: Same.
4476         * testsuite/22_locale/codecvt/in/wchar_t/7.cc: Same.
4477         * testsuite/22_locale/codecvt/in/wchar_t/8.cc: Same.
4478         * testsuite/22_locale/codecvt/in/wchar_t/9.cc: Same.
4479         * testsuite/22_locale/codecvt/length/wchar_t/2.cc: Same.
4480         * testsuite/22_locale/codecvt/length/wchar_t/3.cc: Same.
4481         * testsuite/22_locale/codecvt/length/wchar_t/4.cc: Same.
4482         * testsuite/22_locale/codecvt/length/wchar_t/7.cc: Same.
4483         * testsuite/22_locale/codecvt/max_length/wchar_t/2.cc: Same.
4484         * testsuite/22_locale/codecvt/max_length/wchar_t/3.cc: Same.
4485         * testsuite/22_locale/codecvt/max_length/wchar_t/4.cc: Same.
4486         * testsuite/22_locale/codecvt/out/wchar_t/2.cc: Same.
4487         * testsuite/22_locale/codecvt/out/wchar_t/3.cc: Same.
4488         * testsuite/22_locale/codecvt/out/wchar_t/4.cc: Same.
4489         * testsuite/22_locale/codecvt/out/wchar_t/7.cc: Same.
4490         * testsuite/22_locale/codecvt/unshift/wchar_t/2.cc: Same.
4491         * testsuite/22_locale/codecvt/unshift/wchar_t/3.cc: Same.
4492         * testsuite/22_locale/codecvt/unshift/wchar_t/4.cc: Same.
4493         * testsuite/22_locale/collate/compare/char/1.cc: Same.
4494         * testsuite/22_locale/collate/compare/char/2.cc: Same.
4495         * testsuite/22_locale/collate/compare/char/3.cc: Same.
4496         * testsuite/22_locale/collate/compare/wchar_t/1.cc: Same.
4497         * testsuite/22_locale/collate/compare/wchar_t/2.cc: Same.
4498         * testsuite/22_locale/collate/compare/wchar_t/3.cc: Same.
4499         * testsuite/22_locale/collate/hash/char/2.cc: Same.
4500         * testsuite/22_locale/collate/hash/wchar_t/2.cc: Same.
4501         * testsuite/22_locale/collate/transform/char/2.cc: Same.
4502         * testsuite/22_locale/collate/transform/char/3.cc: Same.
4503         * testsuite/22_locale/collate/transform/wchar_t/2.cc: Same.
4504         * testsuite/22_locale/collate/transform/wchar_t/3.cc: Same.
4505         * testsuite/22_locale/collate_byname/1.cc: Same.
4506         * testsuite/22_locale/ctype/is/char/2.cc: Same.
4507         * testsuite/22_locale/ctype/is/wchar_t/2.cc: Same.
4508         * testsuite/22_locale/ctype/narrow/wchar_t/3.cc: Same.
4509         * testsuite/22_locale/ctype/widen/wchar_t/2.cc: Same.
4510         * testsuite/22_locale/ctype/widen/wchar_t/3.cc: Same.
4511         * testsuite/22_locale/facet/2.cc: Same.
4512         * testsuite/22_locale/locale/cons/2.cc: Same.
4513         * testsuite/22_locale/locale/cons/4.cc: Same.
4514         * testsuite/22_locale/locale/cons/5.cc: Same.
4515         * testsuite/22_locale/locale/cons/7.cc: Same.
4516         * testsuite/22_locale/locale/cons/7222-c.cc: Same.
4517         * testsuite/22_locale/locale/cons/7222-env.cc: Same.
4518         * testsuite/22_locale/locale/global_locale_objects/2.cc: Same.
4519         * testsuite/22_locale/messages/members/char/1.cc: Same.
4520         * testsuite/22_locale/messages/members/char/2.cc: Same.
4521         * testsuite/22_locale/messages/members/char/3.cc: Same.
4522         * testsuite/22_locale/messages_byname/1.cc: Same.
4523         * testsuite/22_locale/money_get/get/char/1.cc: Same.
4524         * testsuite/22_locale/money_get/get/char/2.cc: Same.
4525         * testsuite/22_locale/money_get/get/char/3.cc: Same.
4526         * testsuite/22_locale/money_get/get/char/4.cc: Same.
4527         * testsuite/22_locale/money_get/get/wchar_t/1.cc: Same.
4528         * testsuite/22_locale/money_get/get/wchar_t/2.cc: Same.
4529         * testsuite/22_locale/money_get/get/wchar_t/3.cc: Same.
4530         * testsuite/22_locale/money_get/get/wchar_t/4.cc: Same.
4531         * testsuite/22_locale/money_put/put/char/1.cc: Same.
4532         * testsuite/22_locale/money_put/put/char/2.cc: Same.
4533         * testsuite/22_locale/money_put/put/char/3.cc: Same.
4534         * testsuite/22_locale/money_put/put/wchar_t/1.cc: Same.
4535         * testsuite/22_locale/money_put/put/wchar_t/2.cc: Same.
4536         * testsuite/22_locale/money_put/put/wchar_t/3.cc: Same.
4537         * testsuite/22_locale/moneypunct/members/char/2.cc: Same.
4538         * testsuite/22_locale/moneypunct/members/wchar_t/2.cc: Same.
4539         * testsuite/22_locale/moneypunct_byname/1.cc: Same.
4540         * testsuite/22_locale/num_get/get/char/1.cc: Same.
4541         * testsuite/22_locale/num_get/get/char/2.cc: Same.
4542         * testsuite/22_locale/num_get/get/char/3.cc: Same.
4543         * testsuite/22_locale/num_get/get/char/5.cc: Same.
4544         * testsuite/22_locale/num_get/get/char/6.cc: Same.
4545         * testsuite/22_locale/num_get/get/wchar_t/1.cc: Same.
4546         * testsuite/22_locale/num_get/get/wchar_t/2.cc: Same.
4547         * testsuite/22_locale/num_get/get/wchar_t/3.cc: Same.
4548         * testsuite/22_locale/num_get/get/wchar_t/5.cc: Same.
4549         * testsuite/22_locale/num_get/get/wchar_t/6.cc: Same.
4550         * testsuite/22_locale/num_put/put/char/1.cc: Same.
4551         * testsuite/22_locale/num_put/put/char/2.cc: Same.
4552         * testsuite/22_locale/num_put/put/char/3.cc: Same.
4553         * testsuite/22_locale/num_put/put/char/5.cc: Same.
4554         * testsuite/22_locale/num_put/put/wchar_t/1.cc: Same.
4555         * testsuite/22_locale/num_put/put/wchar_t/2.cc: Same.
4556         * testsuite/22_locale/num_put/put/wchar_t/3.cc: Same.
4557         * testsuite/22_locale/num_put/put/wchar_t/5.cc: Same.
4558         * testsuite/22_locale/numpunct/members/char/1.cc: Same.
4559         * testsuite/22_locale/numpunct/members/char/2.cc: Same.
4560         * testsuite/22_locale/numpunct/members/wchar_t/1.cc: Same.
4561         * testsuite/22_locale/numpunct/members/wchar_t/2.cc: Same.
4562         * testsuite/22_locale/numpunct_byname/1.cc: Same.
4563         * testsuite/22_locale/numpunct_byname/2.cc: Same.
4564         * testsuite/22_locale/time_get/date_order/char/1.cc: Same.
4565         * testsuite/22_locale/time_get/date_order/wchar_t/1.cc: Same.
4566         * testsuite/22_locale/time_get/get_date/char/1.cc: Same.
4567         * testsuite/22_locale/time_get/get_date/char/2.cc: Same.
4568         * testsuite/22_locale/time_get/get_date/wchar_t/1.cc: Same.
4569         * testsuite/22_locale/time_get/get_date/wchar_t/2.cc: Same.
4570         * testsuite/22_locale/time_get/get_monthname/char/1.cc: Same.
4571         * testsuite/22_locale/time_get/get_monthname/char/2.cc: Same.
4572         * testsuite/22_locale/time_get/get_monthname/wchar_t/1.cc: Same.
4573         * testsuite/22_locale/time_get/get_monthname/wchar_t/2.cc: Same.
4574         * testsuite/22_locale/time_get/get_time/char/1.cc: Same.
4575         * testsuite/22_locale/time_get/get_time/char/2.cc: Same.
4576         * testsuite/22_locale/time_get/get_time/wchar_t/1.cc: Same.
4577         * testsuite/22_locale/time_get/get_time/wchar_t/2.cc: Same.
4578         * testsuite/22_locale/time_get/get_weekday/char/1.cc: Same.
4579         * testsuite/22_locale/time_get/get_weekday/char/2.cc: Same.
4580         * testsuite/22_locale/time_get/get_weekday/wchar_t/1.cc: Same.
4581         * testsuite/22_locale/time_get/get_weekday/wchar_t/2.cc: Same.
4582         * testsuite/22_locale/time_get/get_year/char/1.cc: Same.
4583         * testsuite/22_locale/time_get/get_year/wchar_t/1.cc: Same.
4584         * testsuite/22_locale/time_put/put/char/1.cc: Same.
4585         * testsuite/22_locale/time_put/put/char/2.cc: Same.
4586         * testsuite/22_locale/time_put/put/char/3.cc: Same.
4587         * testsuite/22_locale/time_put/put/char/4.cc: Same.
4588         * testsuite/22_locale/time_put/put/char/5.cc: Same.
4589         * testsuite/22_locale/time_put/put/char/6.cc: Same.
4590         * testsuite/22_locale/time_put/put/char/7.cc: Same.
4591         * testsuite/22_locale/time_put/put/char/8.cc: Same.
4592         * testsuite/22_locale/time_put/put/wchar_t/1.cc: Same.
4593         * testsuite/22_locale/time_put/put/wchar_t/2.cc: Same.
4594         * testsuite/22_locale/time_put/put/wchar_t/3.cc: Same.
4595         * testsuite/22_locale/time_put/put/wchar_t/4.cc: Same.
4596         * testsuite/22_locale/time_put/put/wchar_t/5.cc: Same.
4597         * testsuite/22_locale/time_put/put/wchar_t/6.cc: Same.
4598         * testsuite/22_locale/time_put/put/wchar_t/7.cc: Same.
4599         * testsuite/22_locale/time_put/put/wchar_t/8.cc: Same.
4600         * testsuite/27_io/basic_filebuf/imbue/char/9322.cc: Same.
4601         * testsuite/27_io/basic_ios/copyfmt/char/2.cc: Same.
4602         * testsuite/27_io/basic_ostream/inserters_arithmetic/char/2.cc: Same.
4603         * testsuite/27_io/basic_streambuf/imbue/char/9322.cc: Same.
4604         * testsuite/27_io/basic_stringbuf/imbue/char/9322.cc: Same.
4606 2003-04-14  Andreas Tobler  <toa@pop.agri.ch>
4608         * configure.target (_cpu_incdir_fullpath): Solaris 2.9 uses
4609         solaris includes, not generic.
4611 2003-04-14  Loren J. Rittle  <ljrittle@acm.org>
4613         * testsuite/26_numerics/c99_classification_macros_c.cc: Add XFAIL.
4615         * include/std/std_bitset.h (_M_do_find_next): Fix -Wall nit.
4616         * include/bits/concept_check.h: Fix multi-line comment.
4617         * testsuite/17_intro/headers.cc (dg-options): Add -Wall -Wsystem-header
4618         when target is *-*-freebsd*.
4620 2003-04-14  Nathan Myers  <ncm@cantrip.org>
4621             Paolo Carlini  <pcarlini@unitus.it>
4623         PR libstdc++/9701 (in_avail())
4624         * include/std/std_streambuf.h (in_avail): Simplify, in_avail
4625         doesn't care if there is anything in some putback cell.
4626         * testsuite/27_io/basic_streambuf/in_avail/char/9701-3.cc: Add.
4628         * testsuite/27_io/basic_filebuf/in_avail/char/1.cc: Remove some
4629         unused string literals.
4631 2003-04-14  Paolo Carlini  <pcarlini@unitus.it>
4633         * include/bits/fstream.tcc (basic_filebuf::setbuf): Don't set
4634         _M_out_end, _M_set_indeterminate() does it.
4636 2003-04-12  John David Anglin  <dave.anglin@nrc-cnrc.gc.ca>
4638         * os/hpux/ctype_inline.h: Replace with gnu-linux version.
4640 2003-04-12  David Edelsohn  <edelsohn@gnu.org>
4642         * testsuite/27_io/basic_istream/sentry/char/3983-fstream.cc:
4643         Change basic_streambuf instantiation to "unsigned char".
4644         * testsuite/27_io/basic_ostream/sentry/char/3983-fstream.cc: Same.
4646 2003-04-12  Paolo Carlini  <pcarlini@unitus.it>
4648         Remove _M_buf_size_opt, use directly _M_buf_size instead.
4649         * include/bits/fstream.tcc
4650         (basic_filebuf::_M_allocate_internal_buffer, setbuf): Remove
4651         references to _M_buf_size_opt.
4652         * include/bits/sstream.tcc (basic_stringbuf::overflow): Likewise.
4653         * include/bits/streambuf.tcc (__copy_streambufs): Likewise, rename
4654         __bufsize to __in_avail and __size_opt to __buf_size.
4655         * include/ext/stdio_filebuf.h (stdio_filebuf::stdio_filebuf): Likewise.
4656         * include/std/std_sstream.h (_M_stringbuf_init, setbuf): Likewise.
4657         * include/std/std_streambuf.h (~basic_streambuf(),
4658         basic_streambuf()): Likewise, remove _M_buf_size_opt member.
4659         * testsuite/27_io/basic_filebuf/close/char/3.cc: Set _M_buf_size.
4660         * testsuite/27_io/basic_filebuf/in_avail/char/1.cc: Likewise.
4661         * testsuite/27_io/basic_filebuf/sbumpc/char/1.cc: Likewise.
4662         * testsuite/27_io/basic_filebuf/seekoff/char/1.cc: Likewise.
4663         * testsuite/27_io/basic_filebuf/seekpos/char/1.cc: Likewise.
4664         * testsuite/27_io/basic_filebuf/sgetc/char/1.cc: Likewise.
4665         * testsuite/27_io/basic_filebuf/sgetn/char/1.cc: Likewise.
4666         * testsuite/27_io/basic_filebuf/snextc/char/1.cc: Likewise.
4667         * testsuite/27_io/basic_filebuf/sputbackc/char/1.cc: Likewise.
4668         * testsuite/27_io/basic_filebuf/sputc/char/1.cc: Likewise.
4669         * testsuite/27_io/basic_filebuf/sputn/char/1.cc: Likewise.
4670         * testsuite/27_io/basic_filebuf/sungetc/char/1.cc: Likewise.
4672 2003-04-12  Paolo Carlini  <pcarlini at unitus dot it>
4674         * include/ext/stdio_filebuf.h
4675         (stdio_filebuf::stdio_filebuf(int, openmode, bool, size_t),
4676         stdio_filebuf::stdio_filebuf(__c_file*, openmode, size_t):
4677         _M_buf_size_opt == 0 only means "not to use an allocated buffer"
4678         since a stack-based buffer is used for small values of the size_t
4679         parameter.
4680         * include/bits/fstream.tcc (basic_filebuf::_M_really_overflow).
4681         If _M_buf_size != 0 flush out the buffer (any kind, stack-based too).
4682         * testsuite/ext/stdio_filebuf_2.cc: New testfile.
4684 2003-04-12  Paolo Carlini  <pcarlini@unitus.it>
4686         PR libstdc++/9533
4687         * testsuite/27_io/basic_filebuf/showmanyc/char/9533-1.cc: New.
4688         * testsuite/27_io/basic_filebuf/showmanyc/char/9533-2.cc: Ditto.
4690 2003-04-11  Benjamin Kosnik  <bkoz@redhat.com>
4692         * testsuite/22_locale/locale/cons/3.cc: Split.
4693         * testsuite/22_locale/locale/cons/7222-c.cc: New.
4694         * testsuite/22_locale/locale/cons/7222-env.cc: New.
4695         Check before trying to create a locale from the environment.
4696         * testsuite/27_io/ios_base/state/1.cc (test02): Use "C" locale.
4697         * testsuite/27_io/basic_istream/extractors_arithmetic/char/12.cc:
4698         Adjust includes.
4700 2003-04-11  Benjamin Kosnik  <bkoz@redhat.com>
4702         * testsuite/22_locale/ctype/is/char/3.cc (test03): Use the classic
4703         locale to construct this hybrid locale, not the global locale.
4705 2003-04-11  Benjamin Kosnik  <bkoz@redhat.com>
4707         * testsuite/27_io/basic_istream/sentry/char/3983-fstream.cc: Add
4708         instantiation for AIX.
4709         * testsuite/27_io/basic_ostream/sentry/char/3983-fstream.cc: Same.
4710         * testsuite/25_algorithms/min_max.cc: Same.
4712 2003-04-10  John David Anglin  <dave.anglin@nrc-cnrc.gc.ca>
4714         * basic_file_stdio.cc (__basic_file<char>::close): Don't flush stream
4715         twice.  Always set _M_cfile to 0 when stream was open.
4717 2003-04-09  Benjamin Kosnik  <bkoz@redhat.com>
4719         Reshuffle 27_io testsuite.  * testsuite/27_io/filebuf.cc,
4720         filebuf_members-1.tst, filebuf_members-1.txt, filebuf_members.cc,
4721         filebuf_virtuals-1.tst, filebuf_virtuals-1.txt,
4722         filebuf_virtuals-2.tst, filebuf_virtuals-3.tst,
4723         filebuf_virtuals.cc, fpos.cc, fstream.cc, fstream_members.cc,
4724         ifstream.cc, ifstream_members-1.tst, ifstream_members-1.txt,
4725         ifstream_members.cc, instantiations.cc, ios.cc,
4726         ios_base_callbacks.cc, ios_base_members_static-1.tst,
4727         ios_base_members_static.cc, ios_base_storage.cc,
4728         ios_base_types.cc, ios_ctor.cc, ios_init.cc,
4729         ios_manip_basefield.cc, ios_manip_fmtflags.cc, ios_members.cc,
4730         iostream.cc, iostream_members.cc, istream.cc,
4731         istream_exception.cc, istream_extractor_char.cc,
4732         istream_extractor_other-1.tst, istream_extractor_other-1.txt,
4733         istream_extractor_other-2.tst, istream_extractor_other.cc,
4734         istream_manip.cc, istream_seeks-1.tst, istream_seeks-1.txt,
4735         istream_seeks-2.tst, istream_seeks-3.tst, istream_seeks.cc,
4736         istream_sentry.cc, istream_unformatted-1.tst,
4737         istream_unformatted-1.txt, istream_unformatted.cc,
4738         istringstream.cc, istringstream_members.cc,
4739         narrow_stream_objects.cc, ofstream.cc, ofstream_members-1.tst,
4740         ofstream_members.cc, ostream.cc, ostream_exception.cc,
4741         ostream_fail.cc, ostream_inserter_arith.cc,
4742         ostream_inserter_char-1.tst, ostream_inserter_char-1.txt,
4743         ostream_inserter_char.cc, ostream_inserter_other-1.tst,
4744         ostream_inserter_other-2.tst, ostream_inserter_other.cc,
4745         ostream_manip.cc, ostream_seeks-1.tst, ostream_seeks.cc,
4746         ostream_sentry.cc, ostream_unformatted.cc, ostringstream.cc,
4747         ostringstream_members.cc, standard_manipulators.cc, streambuf.cc,
4748         streambuf_members.cc, stringbuf.cc, stringbuf_members.cc,
4749         stringbuf_virtuals.cc, stringstream.cc, stringstream_members.cc,
4750         wide_stream_objects.cc, istream_extractor_arith/01.cc,
4751         istream_extractor_arith/02.cc, istream_extractor_arith/03.cc,
4752         istream_extractor_arith/06.cc, istream_extractor_arith/07.cc,
4753         istream_extractor_arith/08.cc, istream_extractor_arith/09.cc,
4754         istream_extractor_arith/10.cc, istream_extractor_arith/11.cc,
4755         istream_extractor_arith/12.cc, istream_extractor_arith/13.cc:
4756         Split into...
4757         * 27_io/basic_filebuf/1.cc: New.
4758         * 27_io/basic_filebuf/2.cc: New.
4759         * 27_io/basic_filebuf/3.cc: New.
4760         * 27_io/basic_filebuf/4.cc: New.
4761         * 27_io/basic_filebuf/close/char/1.cc: New.
4762         * 27_io/basic_filebuf/close/char/2.cc: New.
4763         * 27_io/basic_filebuf/close/char/3.cc: New.
4764         * 27_io/basic_filebuf/close/char/4879.cc: New.
4765         * 27_io/basic_filebuf/close/char/9964.cc: New.
4766         * 27_io/basic_filebuf/imbue/char/1.cc: New.
4767         * 27_io/basic_filebuf/imbue/char/9322.cc: New.
4768         * 27_io/basic_filebuf/in_avail/char/1.cc: New.
4769         * 27_io/basic_filebuf/is_open/char/1.cc: New.
4770         * 27_io/basic_filebuf/open/char/1.cc: New.
4771         * 27_io/basic_filebuf/open/char/2.cc: New.
4772         * 27_io/basic_filebuf/open/char/3.cc: New.
4773         * 27_io/basic_filebuf/open/char/9507.cc: New.
4774         * 27_io/basic_filebuf/overflow/char/1.cc: New.
4775         * 27_io/basic_filebuf/overflow/char/3599.cc: New.
4776         * 27_io/basic_filebuf/overflow/char/9169.cc: New.
4777         * 27_io/basic_filebuf/overflow/char/9182-2.cc: New.
4778         * 27_io/basic_filebuf/overflow/char/9988.cc: New.
4779         * 27_io/basic_filebuf/sbumpc/char/1.cc: New.
4780         * 27_io/basic_filebuf/sbumpc/char/9825.cc: New.
4781         * 27_io/basic_filebuf/seekoff/char/1.cc: New.
4782         * 27_io/basic_filebuf/seekoff/char/2.cc: New.
4783         * 27_io/basic_filebuf/seekpos/char/1.cc: New.
4784         * 27_io/basic_filebuf/seekpos/char/2.cc: New.
4785         * 27_io/basic_filebuf/setbuf/char/1.cc: New.
4786         * 27_io/basic_filebuf/setbuf/char/2.cc: New.
4787         * 27_io/basic_filebuf/setbuf/char/3.cc: New.
4788         * 27_io/basic_filebuf/sgetc/char/1.cc: New.
4789         * 27_io/basic_filebuf/sgetn/char/1.cc: New.
4790         * 27_io/basic_filebuf/sgetn/char/2.cc: New.
4791         * 27_io/basic_filebuf/snextc/char/1.cc: New.
4792         * 27_io/basic_filebuf/sputbackc/char/1.cc: New.
4793         * 27_io/basic_filebuf/sputbackc/char/9425.cc: New.
4794         * 27_io/basic_filebuf/sputc/char/1.cc: New.
4795         * 27_io/basic_filebuf/sputc/char/1057.cc: New.
4796         * 27_io/basic_filebuf/sputc/char/9701-2.cc: New.
4797         * 27_io/basic_filebuf/sputn/char/1.cc: New.
4798         * 27_io/basic_filebuf/sputn/char/1057.cc: New.
4799         * 27_io/basic_filebuf/sputn/char/9701-1.cc: New.
4800         * 27_io/basic_filebuf/sungetc/char/1.cc: New.
4801         * 27_io/basic_filebuf/sync/char/1057.cc: New.
4802         * 27_io/basic_filebuf/sync/char/9182-1.cc: New.
4803         * 27_io/basic_filebuf/underflow/char/10097.cc: New.
4804         * 27_io/basic_fstream/1.cc: New.
4805         * 27_io/basic_fstream/2.cc: New.
4806         * 27_io/basic_fstream/3.cc: New.
4807         * 27_io/basic_fstream/4.cc: New.
4808         * 27_io/basic_fstream/rdbuf/char/2832.cc: New.
4809         * 27_io/basic_ifstream/1.cc: New.
4810         * 27_io/basic_ifstream/2.cc: New.
4811         * 27_io/basic_ifstream/3.cc: New.
4812         * 27_io/basic_ifstream/4.cc: New.
4813         * 27_io/basic_ifstream/cons/char/1.cc: New.
4814         * 27_io/basic_ifstream/open/char/1.cc: New.
4815         * 27_io/basic_ifstream/rdbuf/char/2832.cc: New.
4816         * 27_io/basic_ios/1.cc: New.
4817         * 27_io/basic_ios/2.cc: New.
4818         * 27_io/basic_ios/3.cc: New.
4819         * 27_io/basic_ios/4.cc: New.
4820         * 27_io/basic_ios/clear/char/1.cc: New.
4821         * 27_io/basic_ios/cons/char/1.cc: New.
4822         * 27_io/basic_ios/cons/char/2.cc: New.
4823         * 27_io/basic_ios/cons/char/3.cc: New.
4824         * 27_io/basic_ios/copyfmt/char/1.cc: New.
4825         * 27_io/basic_ios/copyfmt/char/2.cc: New.
4826         * 27_io/basic_ios/exceptions/char/1.cc: New.
4827         * 27_io/basic_ios/locales/char/1.cc: New.
4828         * 27_io/basic_iostream/1.cc: New.
4829         * 27_io/basic_iostream/2.cc: New.
4830         * 27_io/basic_iostream/3.cc: New.
4831         * 27_io/basic_iostream/4.cc: New.
4832         * 27_io/basic_istream/1.cc: New.
4833         * 27_io/basic_istream/2.cc: New.
4834         * 27_io/basic_istream/3.cc: New.
4835         * 27_io/basic_istream/4.cc: New.
4836         * 27_io/basic_istream/exceptions/char/9561.cc: New.
4837         * 27_io/basic_istream/extractors_arithmetic/char/01.cc: New.
4838         * 27_io/basic_istream/extractors_arithmetic/char/02.cc: New.
4839         * 27_io/basic_istream/extractors_arithmetic/char/03.cc: New.
4840         * 27_io/basic_istream/extractors_arithmetic/char/06.cc: New.
4841         * 27_io/basic_istream/extractors_arithmetic/char/07.cc: New.
4842         * 27_io/basic_istream/extractors_arithmetic/char/08.cc: New.
4843         * 27_io/basic_istream/extractors_arithmetic/char/09.cc: New.
4844         * 27_io/basic_istream/extractors_arithmetic/char/10.cc: New.
4845         * 27_io/basic_istream/extractors_arithmetic/char/11.cc: New.
4846         * 27_io/basic_istream/extractors_arithmetic/char/12.cc: New.
4847         * 27_io/basic_istream/extractors_arithmetic/char/13.cc: New.
4848         * 27_io/basic_istream/extractors_character/char/1.cc: New.
4849         * 27_io/basic_istream/extractors_character/char/2.cc: New.
4850         * 27_io/basic_istream/extractors_character/char/3.cc: New.
4851         * 27_io/basic_istream/extractors_character/char/9826.cc: New.
4852         * 27_io/basic_istream/extractors_other/char/1.cc: New.
4853         * 27_io/basic_istream/extractors_other/char/2.cc: New.
4854         * 27_io/basic_istream/extractors_other/char/3.cc: New.
4855         * 27_io/basic_istream/extractors_other/char/9318-in.cc: New.
4856         * 27_io/basic_istream/extractors_other/char/9424-in.cc: New.
4857         * 27_io/basic_istream/get/char/1.cc: New.
4858         * 27_io/basic_istream/get/char/2.cc: New.
4859         * 27_io/basic_istream/getline/char/1.cc: New.
4860         * 27_io/basic_istream/getline/char/2.cc: New.
4861         * 27_io/basic_istream/getline/char/3.cc: New.
4862         * 27_io/basic_istream/ignore/char/1.cc: New.
4863         * 27_io/basic_istream/ignore/char/6360.cc: New.
4864         * 27_io/basic_istream/ignore/char/7220.cc: New.
4865         * 27_io/basic_istream/peek/char/1.cc: New.
4866         * 27_io/basic_istream/peek/char/6414.cc: New.
4867         * 27_io/basic_istream/putback/char/1.cc: New.
4868         * 27_io/basic_istream/read/char/1.cc: New.
4869         * 27_io/basic_istream/read/char/2.cc: New.
4870         * 27_io/basic_istream/read/char/3.cc: New.
4871         * 27_io/basic_istream/readsome/char/6746-1.cc: New.
4872         * 27_io/basic_istream/readsome/char/6746-2.cc: New.
4873         * 27_io/basic_istream/readsome/char/8258.cc: New.
4874         * 27_io/basic_istream/seekg/char/2346-fstream.cc: New.
4875         * 27_io/basic_istream/seekg/char/2346-sstream.cc: New.
4876         * 27_io/basic_istream/seekg/char/8348-1.cc: New.
4877         * 27_io/basic_istream/seekg/char/8348-2.cc: New.
4878         * 27_io/basic_istream/seekg/char/fstream.cc: New.
4879         * 27_io/basic_istream/seekg/char/sstream.cc: New.
4880         * 27_io/basic_istream/sentry/char/1.cc: New.
4881         * 27_io/basic_istream/sentry/char/2.cc: New.
4882         * 27_io/basic_istream/sentry/char/3.cc: New.
4883         * 27_io/basic_istream/sentry/char/3983-fstream.cc: New.
4884         * 27_io/basic_istream/sentry/char/3983-sstream.cc: New.
4885         * 27_io/basic_istream/tellg/char/1.cc: New.
4886         * 27_io/basic_istream/tellg/char/8348.cc: New.
4887         * 27_io/basic_istream/tellg/char/fstream.cc: New.
4888         * 27_io/basic_istream/tellg/char/sstream.cc: New.
4889         * 27_io/basic_istream/ws/char/1.cc: New.
4890         * 27_io/basic_istringstream/1.cc: New.
4891         * 27_io/basic_istringstream/2.cc: New.
4892         * 27_io/basic_istringstream/3.cc: New.
4893         * 27_io/basic_istringstream/4.cc: New.
4894         * 27_io/basic_istringstream/rdbuf/char/2832.cc: New.
4895         * 27_io/basic_istringstream/str/char/1.cc: New.
4896         * 27_io/basic_ofstream/1.cc: New.
4897         * 27_io/basic_ofstream/2.cc: New.
4898         * 27_io/basic_ofstream/3.cc: New.
4899         * 27_io/basic_ofstream/4.cc: New.
4900         * 27_io/basic_ofstream/cons/char/2.cc: New.
4901         * 27_io/basic_ofstream/open/char/1.cc: New.
4902         * 27_io/basic_ofstream/rdbuf/char/2832.cc: New.
4903         * 27_io/basic_ostream/1.cc: New.
4904         * 27_io/basic_ostream/2.cc: New.
4905         * 27_io/basic_ostream/3.cc: New.
4906         * 27_io/basic_ostream/4.cc: New.
4907         * 27_io/basic_ostream/cons/char/9827.cc: New.
4908         * 27_io/basic_ostream/endl/char/1.cc: New.
4909         * 27_io/basic_ostream/ends/char/1.cc: New.
4910         * 27_io/basic_ostream/ends/char/2.cc: New.
4911         * 27_io/basic_ostream/exceptions/char/9561.cc: New.
4912         * 27_io/basic_ostream/flush/char/1.cc: New.
4913         * 27_io/basic_ostream/inserters_arithmetic/char/1.cc: New.
4914         * 27_io/basic_ostream/inserters_arithmetic/char/2.cc: New.
4915         * 27_io/basic_ostream/inserters_arithmetic/char/3.cc: New.
4916         * 27_io/basic_ostream/inserters_arithmetic/char/4.cc: New.
4917         * 27_io/basic_ostream/inserters_arithmetic/char/4402.cc: New.
4918         * 27_io/basic_ostream/inserters_arithmetic/char/5.cc: New.
4919         * 27_io/basic_ostream/inserters_arithmetic/char/6.cc: New.
4920         * 27_io/basic_ostream/inserters_arithmetic/wchar_t/1.cc: New.
4921         * 27_io/basic_ostream/inserters_character/char/1.cc: New.
4922         * 27_io/basic_ostream/inserters_character/char/2.cc: New.
4923         * 27_io/basic_ostream/inserters_character/char/3.cc: New.
4924         * 27_io/basic_ostream/inserters_character/char/4.cc: New.
4925         * 27_io/basic_ostream/inserters_character/char/5.cc: New.
4926         * 27_io/basic_ostream/inserters_character/char/6.cc: New.
4927         * 27_io/basic_ostream/inserters_character/char/8.cc: New.
4928         * 27_io/basic_ostream/inserters_character/wchar_t/7.cc: New.
4929         * 27_io/basic_ostream/inserters_character/wchar_t/8.cc: New.
4930         * 27_io/basic_ostream/inserters_other/char/1.cc: New.
4931         * 27_io/basic_ostream/inserters_other/char/2.cc: New.
4932         * 27_io/basic_ostream/inserters_other/char/3.cc: New.
4933         * 27_io/basic_ostream/inserters_other/char/4.cc: New.
4934         * 27_io/basic_ostream/inserters_other/char/9318-out.cc: New.
4935         * 27_io/basic_ostream/inserters_other/char/9424-out.cc: New.
4936         * 27_io/basic_ostream/sentry/char/1.cc: New.
4937         * 27_io/basic_ostream/sentry/char/2.cc: New.
4938         * 27_io/basic_ostream/sentry/char/3983-fstream.cc: New.
4939         * 27_io/basic_ostream/sentry/char/3983-sstream.cc: New.
4940         * 27_io/basic_ostream/tellp/char/1.cc: New.
4941         * 27_io/basic_ostream/tellp/char/2.cc: New.
4942         * 27_io/basic_ostringstream/1.cc: New.
4943         * 27_io/basic_ostringstream/2.cc: New.
4944         * 27_io/basic_ostringstream/3.cc: New.
4945         * 27_io/basic_ostringstream/4.cc: New.
4946         * 27_io/basic_ostringstream/cons/char/3.cc: New.
4947         * 27_io/basic_ostringstream/rdbuf/char/2832.cc: New.
4948         * 27_io/basic_ostringstream/str/char/1.cc: New.
4949         * 27_io/basic_ostringstream/str/char/2.cc: New.
4950         * 27_io/basic_streambuf/1.cc: New.
4951         * 27_io/basic_streambuf/2.cc: New.
4952         * 27_io/basic_streambuf/3.cc: New.
4953         * 27_io/basic_streambuf/cons/char/1.cc: New.
4954         * 27_io/basic_streambuf/imbue/char/1.cc: New.
4955         * 27_io/basic_streambuf/imbue/char/9322.cc: New.
4956         * 27_io/basic_streambuf/overflow/char/1.cc: New.
4957         * 27_io/basic_streambuf/overflow/char/2.cc: New.
4958         * 27_io/basic_streambuf/overflow/char/3599.cc: New.
4959         * 27_io/basic_streambuf/sgetc/char/1.cc: New.
4960         * 27_io/basic_streambuf/sgetn/char/1.cc: New.
4961         * 27_io/basic_streambuf/sputbackc/char/9538.cc: New.
4962         * 27_io/basic_streambuf/sputc/char/1057.cc: New.
4963         * 27_io/basic_streambuf/sputn/char/1.cc: New.
4964         * 27_io/basic_streambuf/sputn/char/1057.cc: New.
4965         * 27_io/basic_streambuf/sync/char/1057.cc: New.
4966         * 27_io/basic_stringbuf/1.cc: New.
4967         * 27_io/basic_stringbuf/2.cc: New.
4968         * 27_io/basic_stringbuf/3.cc: New.
4969         * 27_io/basic_stringbuf/4.cc: New.
4970         * 27_io/basic_stringbuf/5.cc: New.
4971         * 27_io/basic_stringbuf/imbue/char/1.cc: New.
4972         * 27_io/basic_stringbuf/imbue/char/9322.cc: New.
4973         * 27_io/basic_stringbuf/in_avail/char/1.cc: New.
4974         * 27_io/basic_stringbuf/overflow/char/2.cc: New.
4975         * 27_io/basic_stringbuf/overflow/char/3599.cc: New.
4976         * 27_io/basic_stringbuf/overflow/char/9988.cc: New.
4977         * 27_io/basic_stringbuf/sbumpc/char/1.cc: New.
4978         * 27_io/basic_stringbuf/sbumpc/char/9825.cc: New.
4979         * 27_io/basic_stringbuf/seekoff/char/1.cc: New.
4980         * 27_io/basic_stringbuf/seekoff/char/2.cc: New.
4981         * 27_io/basic_stringbuf/seekpos/char/1.cc: New.
4982         * 27_io/basic_stringbuf/seekpos/char/2.cc: New.
4983         * 27_io/basic_stringbuf/setbuf/char/1.cc: New.
4984         * 27_io/basic_stringbuf/setbuf/char/2.cc: New.
4985         * 27_io/basic_stringbuf/setbuf/char/3.cc: New.
4986         * 27_io/basic_stringbuf/sgetc/char/1.cc: New.
4987         * 27_io/basic_stringbuf/sgetn/char/1.cc: New.
4988         * 27_io/basic_stringbuf/snextc/char/1.cc: New.
4989         * 27_io/basic_stringbuf/sputbackc/char/1.cc: New.
4990         * 27_io/basic_stringbuf/sputbackc/char/9425.cc: New.
4991         * 27_io/basic_stringbuf/sputc/char/1.cc: New.
4992         * 27_io/basic_stringbuf/sputc/char/1057.cc: New.
4993         * 27_io/basic_stringbuf/sputc/char/9404-1.cc: New.
4994         * 27_io/basic_stringbuf/sputn/char/1.cc: New.
4995         * 27_io/basic_stringbuf/sputn/char/1057.cc: New.
4996         * 27_io/basic_stringbuf/sputn/char/9404-2.cc: New.
4997         * 27_io/basic_stringbuf/str/char/1.cc: New.
4998         * 27_io/basic_stringbuf/str/char/2.cc: New.
4999         * 27_io/basic_stringbuf/str/char/3.cc: New.
5000         * 27_io/basic_stringbuf/str/char/3955.cc: New.
5001         * 27_io/basic_stringbuf/sungetc/char/1.cc: New.
5002         * 27_io/basic_stringbuf/sync/char/1057.cc: New.
5003         * 27_io/basic_stringstream/1.cc: New.
5004         * 27_io/basic_stringstream/2.cc: New.
5005         * 27_io/basic_stringstream/3.cc: New.
5006         * 27_io/basic_stringstream/4.cc: New.
5007         * 27_io/basic_stringstream/rdbuf/char/2832.cc: New.
5008         * 27_io/basic_stringstream/str/char/1.cc: New.
5009         * 27_io/basic_stringstream/str/char/2.cc: New.
5010         * 27_io/basic_stringstream/str/char/3.cc: New.
5011         * 27_io/basic_stringstream/str/char/4.cc: New.
5012         * 27_io/fpos/1.cc: New.
5013         * 27_io/fpos/2.cc: New.
5014         * 27_io/fpos/3.cc: New.
5015         * 27_io/ios_base/callbacks/1.cc: New.
5016         * 27_io/ios_base/state/1.cc: New.
5017         * 27_io/ios_base/storage/1.cc: New.
5018         * 27_io/ios_base/storage/2.cc: New.
5019         * 27_io/ios_base/storage/3.cc: New.
5020         * 27_io/ios_base/sync_with_stdio/1.cc: New.
5021         * 27_io/ios_base/sync_with_stdio/2.cc: New.
5022         * 27_io/manipulators/adjustfield/char/1.cc: New.
5023         * 27_io/manipulators/adjustfield/char/2.cc: New.
5024         * 27_io/manipulators/basefield/char/1.cc: New.
5025         * 27_io/manipulators/standard/char/1.cc: New.
5026         * 27_io/manipulators/standard/char/2.cc: New.
5027         * 27_io/objects/char/1.cc: New.
5028         * 27_io/objects/char/2.cc: New.
5029         * 27_io/objects/char/2523-1_xin.cc: New.
5030         * 27_io/objects/char/2523-1_xin.in: New.
5031         * 27_io/objects/char/2523-2_xin.cc: New.
5032         * 27_io/objects/char/2523-2_xin.in: New.
5033         * 27_io/objects/char/3045.cc: New.
5034         * 27_io/objects/char/3647.cc: New.
5035         * 27_io/objects/char/3_xin.cc: New.
5036         * 27_io/objects/char/3_xin.in: New.
5037         * 27_io/objects/char/4_xin.cc: New.
5038         * 27_io/objects/char/4_xin.in: New.
5039         * 27_io/objects/char/5268.cc: New.
5040         * 27_io/objects/char/5280_xin.cc: New.
5041         * 27_io/objects/char/5280_xin.in: New.
5042         * 27_io/objects/char/6548_xin.cc: New.
5043         * 27_io/objects/char/6548_xin.in: New.
5044         * 27_io/objects/char/6648-1_xin.cc: New.
5045         * 27_io/objects/char/6648-1_xin.in: New.
5046         * 27_io/objects/char/6648-2_xin.cc: New.
5047         * 27_io/objects/char/6648-2_xin.in: New.
5048         * 27_io/objects/char/7744_xin.cc: New.
5049         * 27_io/objects/char/7744_xin.in: New.
5050         * 27_io/objects/wchar_t/1.cc: New.
5051         * 27_io/types/1.cc: New.
5052         * 27_io/types/2.cc: New.
5053         * data/filebuf_members-1.tst: New.
5054         * data/filebuf_members-1.txt: New.
5055         * data/filebuf_virtuals-1.tst: New.
5056         * data/filebuf_virtuals-1.txt: New.
5057         * data/filebuf_virtuals-2.tst: New.
5058         * data/filebuf_virtuals-3.tst: New.
5059         * data/ifstream_members-1.tst: New.
5060         * data/ifstream_members-1.txt: New.
5061         * data/ios_base_members_static-1.tst: New.
5062         * data/istream_extractor_other-1.tst: New.
5063         * data/istream_extractor_other-1.txt: New.
5064         * data/istream_extractor_other-2.tst: New.
5065         * data/istream_seeks-1.tst: New.
5066         * data/istream_seeks-1.txt: New.
5067         * data/istream_seeks-2.tst: New.
5068         * data/istream_seeks-3.tst: New.
5069         * data/istream_unformatted-1.tst: New.
5070         * data/istream_unformatted-1.txt: New.
5071         * data/ofstream_members-1.tst: New.
5072         * data/ostream_inserter_char-1.tst: New.
5073         * data/ostream_inserter_char-1.txt: New.
5074         * data/ostream_inserter_other-1.tst: New.
5075         * data/ostream_inserter_other-2.tst: New.
5076         * data/ostream_seeks-1.tst: New.
5078 2003-04-09  Benjamin Kosnik  <bkoz@redhat.com>
5080         * include/bits/sstream.tcc (basic_stringbuf::seekpos): Remove
5081         requirement that __mode must be strict input or output.
5083         * include/std/std_streambuf.h (basic_streambuf::setp): Set
5084         _M_out_lim.
5086         * include/std/std_sstream.h (basic_strinbuf::str): Zero length
5087         output string shouldn't core.
5088         (basic_stringbuf::_M_really_sync): Add base argument. Remove rturn
5089         type.
5090         * include/bits/sstream.tcc: Adjust _M_really_sync bits here.
5092         * include/bits/istream.tcc (basic_istream::putback): Set gcount to
5093         zero.
5095 2003-04-09  Benjamin Kosnik  <bkoz@redhat.com>
5097         * testsuite/data: New directory.
5098         * testsuite/lib/libstdc++-v3-dg.exp (libstdc++-v3-init): Modify
5099         to copy files from the testsuite data directory.
5100         (libstdc++-v3-list-sourcefiles): Add another test list filter, for
5101         testfiles containing _xin, which now means this is an interactive
5102         test and should be run with the interactive dejagnu hooks.
5103         * testsuite/Makefile.am: Remove testsuite_* files.
5104         * testsuite/Makefile.in: Regenerate.
5106 2003-04-09  Zack Weinberg  <zack@codesourcery.com>
5108         * docs/html/install.html: Document complete list of locales
5109         required by test suite.  Document procedure for installing
5110         said locales under Debian.  Solicit instructions for other
5111         operating systems.
5113 2003-04-08  Alexandre Oliva  <aoliva@redhat.com>
5115         * include/bits/sstream.tcc (overflow): Make sure operands of min
5116         and max have the same type.
5118 2003-04-04  Jerry Quinn  <jlquinn@optonline.net>
5120         PR libstdc++/10276
5121         * src/ios.cc (ios_base::_M_init): Remove _M_callbacks
5122         initialization.
5124 2003-03-31  Paolo Carlini  <pcarlini@unitus.it>
5126         * include/std/std_streambuf.h (_M_out_buf_size()): Remove.
5127         * include/bits/fstream.tcc (_M_allocate_internal_buffer):
5128         Don't set _M_out_end.
5129         (basic_filebuf::overflow): Replace _M_out_buf_size() with
5130         this->_M_out_cur && this->_M_out_cur < this->_M_out_end.
5131         * include/bits/sstream.tcc (basic_stringbuf::overflow):
5132         Replace _M_out_buf_size() with this->_M_out_cur < this->_M_out_end;
5133         * include/bits/streambuf.tcc (basic_streambuf::sputc):
5134         Replace _M_out_buf_size() with _M_out_cur && _M_out_cur < _M_out_end.
5135         (basic_streambuf::xsputn): Replace _M_out_buf_size() with
5136         _M_out_end - _M_out_cur.
5137         (__copy_streambufs): Likewise.
5138         * include/std/std_fstream.h (_M_set_determinate): Set
5139         _M_out_end here.
5141 2003-03-30  Paolo Carlini  <pcarlini@unitus.it>
5143         * include/bits/fstream.tcc (basic_filebuf::showmanyc,
5144         _M_convert_to_external, _M_really_overflow, seekoff): Fix
5145         test for synced buffer.
5146         * include/std/std_fstream.h (sync): Likewise.
5147         * src/fstream.cc (basic_filebuf<char>::_M_underflow_common,
5148         basic_filebuf<wchar_t>::_M_underflow_common): Likewise.
5150 2003-03-28  Benjamin Kosnik  <bkoz@redhat.com>
5152         * include/std/std_sstream.h (basic_istringstream): Adjust
5153         initialization.
5154         (basic_ostringstream): Same.
5155         (basic_stringstream): Same.
5156         * include/std/std_fstream.h (basic_ifstream): Adjust initialization.
5157         (basic_ofstream): Same.
5158         (basic_fstream): Same.
5159         * include/std/std_ostream.h (basic_ostrem): Add protected ctor
5160         that does not call init.
5161         * include/std/std_istream.h (basic_istream): Same.
5162         (basic_iostream): Construct istream, ostream uninitialized, use
5163         init to initialize just once. Add protected ctor that does not
5164         call init.
5166 2003-03-28  Paolo Carlini  <pcarlini@unitus.it>
5167             Nathan Myers  <ncm@cantrip.org>
5169         PR libstdc++/9533
5170         * include/bits/fstream.tcc (basic_filebuf<>::open): Don't
5171         call underflow().
5172         (basic_filebuf<>::showmanyc): Use the information provided
5173         by codecvt and __basic_file<>::showmanyc_helper to implement
5174         a non-trivial showmanyc.
5175         * config/io/basic_file_stdio.h
5176         (__basic_file<>::showmanyc_helper): New, declare.
5177         * config/io/basic_file_stdio.cc
5178         (__basic_file<>::showmanyc_helper): Define.
5179         (__basic_file<>::_M_open_mode): Don't set O_NONBLOCK.
5180         (__basic_file<char>::open): Don't call fcntl().
5181         * acinclude.m4 (GLIBCPP_CHECK_S_ISREG_OR_S_IFREG,
5182         GLIBCPP_CHECK_POLL): New macros.
5183         * configure.in: Call here.
5184         * acconfig.h: Add #undefs for the corresponding symbols.
5185         * aclocal.m4: Regenerate.
5186         * configure: Regenerate.
5187         * config.h.in: Regenerate.
5189 2003-03-24  Benjamin Kosnik  <bkoz@redhat.com>
5191         * config/linker-map.gnu: Remove string export restrictions.
5193 2003-03-24  Paolo Carlini  <pcarlini@unitus.it>
5195         * testsuite/21_strings/basic_string/find/char/1.cc: Remove
5196         find_first_of, find_last_of and find_last_not_of tests.
5197         * testsuite/21_strings/basic_string/find/char/2.cc: find_first_of
5198         tests here, new file.
5199         * testsuite/21_strings/basic_string/find/wchar_t/1.cc: Likewise,
5200         remove wchar_t find_first_of, find_last_of and find_last_not_of tests.
5201         * testsuite/21_strings/basic_string/find/wchar_t/2.cc: Likewise,
5202         wchar_t find_first_of tests here, new file.
5203         * testsuite/21_strings/basic_string/rfind/char/2.cc: find_last_of
5204         tests here.
5205         * testsuite/21_strings/basic_string/rfind/char/3.cc: find_last_not_of
5206         tests here.
5207         * testsuite/21_strings/basic_string/rfind/wchar_t/2.cc: likewise,
5208         wchar_t find_last_of tests here.
5209         * testsuite/21_strings/basic_string/rfind/wchar_t/3.cc: likewise,
5210         wchar_t find_last_not_of tests here.
5212 2003-03-22  Loren J. Rittle  <ljrittle@acm.org>
5214         * config/os/hpux/ctype_noninline.h (ctype<char>::classic_table):
5215         Correct return value.
5217 2003-03-21  Jerry Quinn  <jlquinn@optonline.net>
5219         PR libstdc++/5730
5220         * include/bits/c++config (_GLIBCPP_FAST_MATH): Define.
5221         * include/std/std_complex.h (norm):  Use faster,
5222         less accurate computation for builtin float types under --fast-math.
5224 2003-03-21  Magnus Fromreide  <gnats@magfr.user.lysator.liu.se>
5226         * testsuite/testsuite_hooks.h: Fix warning nits.
5228 2003-03-19  Alexandre Oliva  <aoliva@redhat.com>
5230         * config/cpu/mips/atomicity.h (__exchange_and_add, __atomic_add):
5231         Only .set mips2 for the o32 ABI.
5233 2003-03-19  Paolo Carlini  <pcarlini@unitus.it>
5235         * testsuite/21_strings/char_traits/requirements/char/1.cc:
5236         Test char not wchar_t.
5238 2003-03-18  Paolo Carlini  <pcarlini@unitus.it>
5240         * testsuite/21_strings/basic_string/append/wchar_t/1.cc:
5241         Correct size, taking into account sizeof(wchar_t).
5243 2003-03-18  Paolo Carlini  <pcarlini@unitus.it>
5245         Reshuffle 21_strings testsuite.
5246         * testsuite/21_strings/append.cc, c_strings.cc, invariants.cc,
5247         assign.cc, ctor_copy_dtor.cc, nonmember.cc, capacity.cc,
5248         element_access.cc, operations.cc, char_traits_requirements.cc,
5249         find.cc, replace.cc, char_traits_typedefs.cc, insert.cc, rfind.cc,
5250         compare.cc, inserters_extractors.cc, substr.cc: Split up, add
5251         wchar_t tests as follows.
5252         * 21_strings/basic_string/append/char/1.cc: New.
5253         * 21_strings/basic_string/append/wchar_t/1.cc: New.
5254         * 21_strings/basic_string/assign/char/1.cc: New.
5255         * 21_strings/basic_string/assign/char/2.cc: New.
5256         * 21_strings/basic_string/assign/char/3.cc: New.
5257         * 21_strings/basic_string/assign/wchar_t/1.cc: New.
5258         * 21_strings/basic_string/assign/wchar_t/2.cc: New.
5259         * 21_strings/basic_string/assign/wchar_t/3.cc: New.
5260         * 21_strings/basic_string/capacity/1.cc: New.
5261         * 21_strings/basic_string/capacity/char/1.cc: New.
5262         * 21_strings/basic_string/capacity/char/2.cc: New.
5263         * 21_strings/basic_string/capacity/wchar_t/1.cc: New.
5264         * 21_strings/basic_string/capacity/wchar_t/2.cc: New.
5265         * 21_strings/basic_string/compare/char/1.cc: New.
5266         * 21_strings/basic_string/compare/wchar_t/1.cc: New.
5267         * 21_strings/basic_string/cons/char/1.cc: New.
5268         * 21_strings/basic_string/cons/char/2.cc: New.
5269         * 21_strings/basic_string/cons/char/3.cc: New.
5270         * 21_strings/basic_string/cons/char/4.cc: New.
5271         * 21_strings/basic_string/cons/char/5.cc: New.
5272         * 21_strings/basic_string/cons/wchar_t/1.cc: New.
5273         * 21_strings/basic_string/cons/wchar_t/2.cc: New.
5274         * 21_strings/basic_string/cons/wchar_t/3.cc: New.
5275         * 21_strings/basic_string/cons/wchar_t/4.cc: New.
5276         * 21_strings/basic_string/cons/wchar_t/5.cc: New.
5277         * 21_strings/basic_string/element_access/char/1.cc: New.
5278         * 21_strings/basic_string/element_access/char/2.cc: New.
5279         * 21_strings/basic_string/element_access/char/3.cc: New.
5280         * 21_strings/basic_string/element_access/wchar_t/1.cc: New.
5281         * 21_strings/basic_string/element_access/wchar_t/2.cc: New.
5282         * 21_strings/basic_string/element_access/wchar_t/3.cc: New.
5283         * 21_strings/basic_string/find/char/1.cc: New.
5284         * 21_strings/basic_string/find/wchar_t/1.cc: New.
5285         * 21_strings/basic_string/insert/char/1.cc: New.
5286         * 21_strings/basic_string/insert/char/2.cc: New.
5287         * 21_strings/basic_string/insert/wchar_t/1.cc: New.
5288         * 21_strings/basic_string/insert/wchar_t/2.cc: New.
5289         * 21_strings/basic_string/inserters_extractors/char/1.cc: New.
5290         * 21_strings/basic_string/inserters_extractors/char/4.cc: New.
5291         * 21_strings/basic_string/inserters_extractors/char/5.cc: New.
5292         * 21_strings/basic_string/inserters_extractors/char/6.cc: New.
5293         * 21_strings/basic_string/inserters_extractors/char/7.cc: New.
5294         * 21_strings/basic_string/inserters_extractors/char/8.cc: New.
5295         * 21_strings/basic_string/inserters_extractors/char/9.cc: New.
5296         * 21_strings/basic_string/inserters_extractors/wchar_t/1.cc: New.
5297         * 21_strings/basic_string/inserters_extractors/wchar_t/4.cc: New.
5298         * 21_strings/basic_string/inserters_extractors/wchar_t/5.cc: New.
5299         * 21_strings/basic_string/inserters_extractors/wchar_t/6.cc: New.
5300         * 21_strings/basic_string/inserters_extractors/wchar_t/7.cc: New.
5301         * 21_strings/basic_string/inserters_extractors/wchar_t/8.cc: New.
5302         * 21_strings/basic_string/inserters_extractors/wchar_t/9.cc: New.
5303         * 21_strings/basic_string/operators/char/1.cc: New.
5304         * 21_strings/basic_string/operators/char/2.cc: New.
5305         * 21_strings/basic_string/operators/wchar_t/1.cc: New.
5306         * 21_strings/basic_string/operators/wchar_t/2.cc: New.
5307         * 21_strings/basic_string/replace/char/1.cc: New.
5308         * 21_strings/basic_string/replace/char/2.cc: New.
5309         * 21_strings/basic_string/replace/char/3.cc: New.
5310         * 21_strings/basic_string/replace/char/4.cc: New.
5311         * 21_strings/basic_string/replace/char/5.cc: New.
5312         * 21_strings/basic_string/replace/wchar_t/1.cc: New.
5313         * 21_strings/basic_string/replace/wchar_t/2.cc: New.
5314         * 21_strings/basic_string/replace/wchar_t/3.cc: New.
5315         * 21_strings/basic_string/replace/wchar_t/4.cc: New.
5316         * 21_strings/basic_string/replace/wchar_t/5.cc: New.
5317         * 21_strings/basic_string/rfind/char/1.cc: New.
5318         * 21_strings/basic_string/rfind/char/2.cc: New.
5319         * 21_strings/basic_string/rfind/char/3.cc: New.
5320         * 21_strings/basic_string/rfind/wchar_t/1.cc: New.
5321         * 21_strings/basic_string/rfind/wchar_t/2.cc: New.
5322         * 21_strings/basic_string/rfind/wchar_t/3.cc: New.
5323         * 21_strings/basic_string/substr/char/1.cc: New.
5324         * 21_strings/basic_string/substr/wchar_t/1.cc: New.
5325         * 21_strings/c_strings/char/1.cc: New.
5326         * 21_strings/c_strings/char/2.cc: New.
5327         * 21_strings/c_strings/wchar_t/1.cc: New.
5328         * 21_strings/c_strings/wchar_t/2.cc: New.
5329         * 21_strings/char_traits/requirements/char/1.cc: New.
5330         * 21_strings/char_traits/requirements/wchar_t/1.cc: New.
5331         * 21_strings/char_traits/typedefs/char/1.cc: New.
5333 2003-03-17  Paolo Carlini  <pcarlini@unitus.it>
5334             Petur Runolfsson  <peturr02@ru.is>
5336         PR libstdc++/10097
5337         * src/fstream.cc (basic_filebuf<char>::_M_underflow_common,
5338         basic_filebuf<wchar_t>::_M_underflow_common):
5339         if (gptr() < egptr()) return *gptr().
5340         * testsuite/27_io/filebuf_virtuals.cc (test16): Add.
5342         * testsuite/27_io/filebuf_members.cc (test_04): Minor
5343         changes: unlink fifo before making it, fix spelling error.
5345 2003-03-17  Benjamin Kosnik  <bkoz@redhat.com>
5347         * testsuite/Makefile.am (CLEANFILES): Add tmp*.
5348         * testsuite/Makefile.in: Regenerate.
5349         * testsuite/27_io/filebuf_members.cc: Consistently name tmp files.
5350         Cleanups.
5352 2003-03-17  Petur Runolfsson  <peturr02@ru.is>
5354         PR libstdc++/9964
5355         * include/bits/fstream.tcc (basic_filebuf::close):
5356         Always close file, even when write fails.
5357         * testsuite/27_io/filebuf_members.cc (test_07):  New test.
5359 2003-03-17  Danny Smith  <dannysmith@users.sourceforge.net>
5361         * libsupc++/Makefile.am (C_COMPILE): Remove.
5362         (LTCOMPILE): Likewise.
5363         * libsupc++/Makefile.in: Regenerate.
5365 2003-03-14  Benjamin Kosnik  <bkoz@redhat.com>
5367         * testsuite/23_containers/bitset_members.cc: Add test variable.
5368         * testsuite/23_containers/map_insert.cc: Same.
5369         * testsuite/22_locale/ctype/cons/char/1.cc: Same.
5370         * testsuite/22_locale/codecvt/max_length/wchar_t/1.cc: Same.
5371         * testsuite/22_locale/codecvt/max_length/wchar_t/2.cc: Same.
5372         * testsuite/22_locale/codecvt/max_length/wchar_t/3.cc: Same.
5373         * testsuite/22_locale/codecvt/max_length/wchar_t/4.cc: Same.
5374         * testsuite/22_locale/codecvt/always_noconv/wchar_t/1.cc: Same.
5375         * testsuite/22_locale/codecvt/always_noconv/wchar_t/2.cc: Same.
5376         * testsuite/22_locale/codecvt/always_noconv/wchar_t/3.cc: Same.
5377         * testsuite/22_locale/codecvt/always_noconv/wchar_t/4.cc: Same.
5378         * testsuite/27_io/istream_exception.cc: Same.
5379         * testsuite/27_io/filebuf_virtuals.cc: Same.
5380         * testsuite/27_io/stringbuf_virtuals.cc: Same.
5381         * testsuite/27_io/ostream_inserter_arith.cc: Same.
5382         * testsuite/26_numerics/valarray_operators.cc: Same.
5383         * testsuite/26_numerics/slice.cc: Same.
5384         * testsuite/26_numerics/slice_array_assignment.cc: Same.
5385         * testsuite/24_iterators/istream_iterator.cc: Same.
5386         * mkcheck.in (TESTS_FILE): Use dejagnu-generated file if possible.
5388 2003-03-14  Petur Runolfsson  <peturr02@ru.is>
5390         PR libstdc++/9581
5391         PR libstdc++/9870
5392         * config/locale/generic/ctype_members.cc,
5393         * config/locale/gnu/ctype_members.cc
5394         (ctype<wchar_t>::do_widen(char)):  Cast argument to
5395         unsigned char before passing to btowc.
5396         (ctype<wchar_t>::do_widen(const char*, const char*, wchar_t*)):
5397         Convert characters with btowc instead of mbsrtowcs.
5398         (ctype<wchar_t>::do_narrow(const wchar_t*, const wchar_t*,
5399         char, char*):
5400         Convert characters with wctob instead of wcsrtombs.
5401         * testsuite/22_locale/ctype/narrow/wchar_t/3.cc:  New test.
5402         * testsuite/22_locale/ctype/widen/wchar_t/2.cc:  New test.
5403         * testsuite/22_locale/ctype/widen/wchar_t/3.cc:  New test.
5405 2003-03-14  Benjamin Kosnik  <bkoz@redhat.com>
5407         * include/stdc++.h: New.
5408         * libsupc++/exception_defines.h (__EXCEPTION_DEFINES_H): Add guard.
5409         * include/Makefile.am (stamp-std-precompile): Generate stdc++.h.gch
5410         * include/Makefile.in: Regenerate.
5411         * testsuite_flags.in (--build-cxx): Add, but don't use PCHFLAGS.
5412         (--cxxflags): Put -g -O2 here.
5413         * testsuite/libstdc++-v3.dg/dg.exp: Remove -g -O2 here.
5415 2003-03-14  Loren J. Rittle  <ljrittle@acm.org>
5417         * testsuite/testsuite_hooks.h: Suppress runtime exception thrown by
5418         missing named locale.
5420 2003-03-14  Andreas Schwab  <schwab@suse.de>
5422         * configure.in: Only append to makefiles that are newly created to
5423         avoid multiple multi-do/multi-clean rules.
5424         * configure: Rebuilt.
5426 2003-03-13  Jonathan Wakely  <redi@gcc.gnu.org>
5428         * docs/html/configopts.html, docs/html/documentation.html,
5429         docs/html/explanations.html, docs/html/install.html,
5430         docs/html/19_diagnostics/howto.html, docs/html/faq/index.html: Fix
5431         invalid XHTML and make page header style consistent.
5433 2003-03-12  Jonathan Wakely  <redi@gcc.gnu.org>
5435         * docs/html/faq/index.html: Explain memory "leaks" due to allocators.
5436         * docs/html/faq/index.txt: Regenerate.
5437         * docs/html/debug.html: Add a bit to allocator text and fix XHTML.
5439 2003-03-12  Andreas Schwab  <schwab@suse.de>
5441         * acinclude.m4 (GLIBCPP_EXPORT_INSTALL_INFO): Avoid trailing /. in
5442         glibcpp_toolexeclibdir.
5443         * aclocal.m4, configure: Rebuilt.
5445 2003-03-11  Jonathan Wakely  <redi@gcc.gnu.org>
5447         * docs/html/faq/index.html: Update text about location of headers.
5448         * docs/html/faq/index.txt: Regenerate.
5450 2003-03-11  Carlo Wood  <carlo@alinoe.com>
5452         * include/bits/demangle.h: Prepend accessors of
5453         class qualifier with 'get_' in order to fix warnings
5454         when compiling with -Wshadow.
5456 2003-03-11  Loren J. Rittle  <ljrittle@acm.org>
5458         * config/os/bsd/freebsd/ctype_inline.h:  Support _M_table
5459         when so installed.
5460         * testsuite/22_locale/ctype/cons/char/1.cc: Fix typo.
5462         * testsuite/testsuite_hooks.h (run_tests_wrapped_env): Do not
5463         report lack of setenv().
5465 2003-03-09  Paolo Carlini  <pcarlini@unitus.it>
5467         * config/io/basic_file_stdio.cc: include <unistd.h>.
5469 2003-03-09  Paolo Carlini  <pcarlini@unitus.it>
5470             Nathan Myers  <ncm@cantrip.org>
5472         PR libstdc++/7744
5473         * config/io/basic_file_stdio.h (__basic_file<>::xsgetn, xsputn,
5474         seekoff, seekpos): Add a boolean parameter __stdio.
5475         * config/io/basic_file_stdio.cc (__basic_file<>::xsgetn, xsputn,
5476         seekoff, seekpos): If __stdio == true, use fread (fwrite, fseek/ftell,
5477         fseek/ftell, respectively), otherwise read (write, lseek, lseek,
5478         respectively).
5479         * include/bits/fstream.tcc (basic_filebuf<>::_M_convert_to_external,
5480         _M_really_overflow, seekoff): Use the boolean parameter in the calls.
5481         * include/std/std_fstream.h (sync): Likewise.
5482         * src/fstream.cc (basic_filebuf<>::_M_underflow_common): Likewise.
5483         * src/ios.cc (ios_base::Init::_S_ios_create(bool)): Revert
5484         libstdc++/8399 commit involving isatty(0).
5485         * acinclude.m4 (GLIBCPP_CHECK_UNISTD_DECL_AND_LINKAGE_1): Remove.
5486         (GLIBCPP_CHECK_UNISTD_SUPPORT): Remove
5487         * configure.in: Remove call.
5488         * aclocal.m4: Regenerate.
5489         * config.h.in: Regenerate.
5490         * configure: Regenerate.
5491         * testsuite/27_io/narrow_stream_objects.cc (test11): Add.
5493 2003-03-09  Paolo Carlini  <pcarlini@unitus.it>
5495         PR libstdc++/9988
5496         * include/bits/fstream.tcc (overflow): don't write EOF to file.
5497         * testsuite/27_io/filebuf_virtuals.cc (test15): Add.
5499 2003-03-08  Jerry Quinn  <jlquinn@optonline.net>
5501         PR libstdc++/9561
5502         * include/bits/basic_ios.h (_M_setstate): New.
5503         * include/bits/ostream.tcc (operator<<): Use it.
5504         * include/bits/istream.tcc (operator>>): Use it.
5505         * include/std/std_ostream.h (operator<<): Make friends.
5506         * include/std/std_istream.h (operator>>): Make friends.
5507         * testsuite/27_io/ostream_exception.cc,
5508         testsuite/27_io/istream_exception.cc: New tests.
5510 2003-03-08  Benjamin Kosnik  <bkoz@redhat.com>
5512         * include/bits/locale_facets.tcc: Fix typo.
5514 2003-03-08  Loren J. Rittle  <ljrittle@acm.org>
5516         * testsuite/26_numerics/c99_classification_macros_c.cc: Tweak test.
5518         * config/locale/generic/c_locale.cc
5519         (locale::facet::_S_create_c_locale): Throw runtime exception when
5520         unsupported language is specified.
5521         * testsuite/testsuite_hooks.h
5522         (run_test_wrapped_generic_locale_exception_catcher): New function.
5523         * testsuite/testsuite_hooks.cc (run_tests_wrapped_locale):
5524         Suppress runtime exception thrown by generic implementation.
5525         (run_tests_wrapped_env): Likewise.
5526         (run_test_wrapped_generic_locale_exception_catcher): New function.
5527         * testsuite/22_locale/collate/compare/char/1.cc: New test wrap.
5528         * testsuite/22_locale/collate/compare/char/2.cc: New test wrap.
5529         * testsuite/22_locale/collate/compare/char/3.cc: New test wrap.
5530         * testsuite/22_locale/collate/hash/char/2.cc: New test wrap.
5531         * testsuite/22_locale/collate/transform/char/2.cc: New test wrap.
5532         * testsuite/22_locale/collate/transform/char/3.cc: New test wrap.
5533         * testsuite/22_locale/collate_byname/1.cc: New test wrap.
5534         * testsuite/22_locale/ctype/is/char/2.cc: New test wrap.
5535         * testsuite/22_locale/facet/2.cc: New test wrap.
5536         * testsuite/22_locale/locale/cons/4.cc: New test wrap.
5537         * testsuite/22_locale/locale/cons/5.cc: New test wrap.
5538         * testsuite/22_locale/locale/cons/7.cc: New test wrap.
5539         * testsuite/22_locale/messages/members/char/1.cc: New test wrap.
5540         * testsuite/22_locale/messages/members/char/2.cc: New test wrap.
5541         * testsuite/22_locale/messages/members/char/3.cc: New test wrap.
5542         * testsuite/22_locale/messages_byname/1.cc: New test wrap.
5543         * testsuite/22_locale/money_get/get/char/1.cc: New test wrap.
5544         * testsuite/22_locale/money_get/get/char/2.cc: New test wrap.
5545         * testsuite/22_locale/money_get/get/char/3.cc: New test wrap.
5546         * testsuite/22_locale/money_get/get/char/4.cc: New test wrap.
5547         * testsuite/22_locale/money_put/put/char/1.cc: New test wrap.
5548         * testsuite/22_locale/money_put/put/char/2.cc: New test wrap.
5549         * testsuite/22_locale/money_put/put/char/3.cc: New test wrap.
5550         * testsuite/22_locale/moneypunct/members/char/2.cc: New test wrap.
5551         * testsuite/22_locale/moneypunct_byname/1.cc: New test wrap.
5552         * testsuite/22_locale/num_get/get/char/1.cc: New test wrap.
5553         * testsuite/22_locale/num_get/get/char/2.cc: New test wrap.
5554         * testsuite/22_locale/num_get/get/char/3.cc: New test wrap.
5555         * testsuite/22_locale/num_get/get/char/5.cc: New test wrap.
5556         * testsuite/22_locale/num_get/get/char/6.cc: New test wrap.
5557         * testsuite/22_locale/num_put/put/char/1.cc: New test wrap.
5558         * testsuite/22_locale/num_put/put/char/2.cc: New test wrap.
5559         * testsuite/22_locale/num_put/put/char/3.cc: New test wrap.
5560         * testsuite/22_locale/num_put/put/char/5.cc: New test wrap.
5561         * testsuite/22_locale/numpunct/members/char/1.cc: New test wrap.
5562         * testsuite/22_locale/numpunct/members/char/2.cc: New test wrap.
5563         * testsuite/22_locale/numpunct_byname/1.cc: New test wrap.
5564         * testsuite/22_locale/numpunct_byname/2.cc: New test wrap.
5565         * testsuite/22_locale/time_get/date_order/char/1.cc: New test wrap.
5566         * testsuite/22_locale/time_get/get_date/char/1.cc: New test wrap.
5567         * testsuite/22_locale/time_get/get_date/char/2.cc: New test wrap.
5568         * testsuite/22_locale/time_get/get_monthname/char/1.cc: New test wrap.
5569         * testsuite/22_locale/time_get/get_monthname/char/2.cc: New test wrap.
5570         * testsuite/22_locale/time_get/get_time/char/1.cc: New test wrap.
5571         * testsuite/22_locale/time_get/get_time/char/2.cc: New test wrap.
5572         * testsuite/22_locale/time_get/get_weekday/char/1.cc: New test wrap.
5573         * testsuite/22_locale/time_get/get_weekday/char/2.cc: New test wrap.
5574         * testsuite/22_locale/time_get/get_year/char/1.cc: New test wrap.
5575         * testsuite/22_locale/time_put/put/char/1.cc: New test wrap.
5576         * testsuite/22_locale/time_put/put/char/2.cc: New test wrap.
5577         * testsuite/22_locale/time_put/put/char/3.cc: New test wrap.
5578         * testsuite/22_locale/time_put/put/char/4.cc: New test wrap.
5579         * testsuite/22_locale/time_put/put/char/5.cc: New test wrap.
5580         * testsuite/22_locale/time_put/put/char/6.cc: New test wrap.
5581         * testsuite/22_locale/time_put/put/char/7.cc: New test wrap.
5582         * testsuite/22_locale/time_put/put/char/8.cc: New test wrap.
5583         * testsuite/27_io/filebuf_virtuals.cc: New test wrap.
5584         * testsuite/27_io/ios_members.cc: New test wrap.
5585         * testsuite/27_io/ostream_inserter_arith.cc (test02): Make void.
5586         New test wrap.
5587         * testsuite/27_io/streambuf_members.cc: New test wrap.
5588         * testsuite/27_io/stringbuf_virtuals.cc: New test wrap.
5590 2003-03-08  Paolo Carlini <pcarlini@unitus.it>
5591             Petur Runolfsson  <peturr02@ru.is>
5593         PR libstdc++/9424
5594         * include/bits/streambuf.tcc (__copy_streambufs): Use
5595         sgetn-sputn only when sputn cannot fail, otherwise fall back
5596         to safe snextc-sputc.
5597         * testsuite/27_io/streambuf_members.cc (test11, test12): Add.
5599 2003-03-08  Jerry Quinn  <jlquinn@optonline.net>
5601         * include/bits/locale_facets.tcc (num_put::do_put(bool)): Use
5602         locale cache for truename and falsename.
5604 2003-03-08  Jerry Quinn  <jlquinn@optonline.net>
5606         * src/ios.cc (ios_base::ios_base): Correct order of _M_word and
5607         _M_word_size initialization.
5609 2003-03-07  Paolo Carlini  <pcarlini@unitus.it>
5611         * include/bits/fstream.tcc (_M_convert_to_external):
5612         Set __elen to zero if codecvt::out eventually fails.
5614 2003-03-07  Paolo Carlini  <pcarlini@unitus.it>
5616         PR libstdc++/9182
5617         * include/bits/fstream.tcc (_M_really_overflow): Check
5618         for _M_convert_to_external possible failures.
5619         * include/std/std_fstream.h (sync): Check _M_really_overflow
5620         return value and return -1 in case of failure.
5621         * testsuite/27_io/filebuf_virtuals.cc (test13, test14): Add.
5623 2003-03-07  Paolo Carlini  <pcarlini@unitus.it>
5625         PR libstdc++/9826
5626         * include/bits/istream.tcc (operator>>(_CharT*),
5627         operator>>(basic_string&), ws): Pass a char_type to __ctype.is.
5628         * testsuite/27_io/stringstream.cc (test02): Add.
5630         * include/bits/istream.tcc (operator>>(_CharT*)):
5631         Assign a char_type to *__s.
5633 2003-03-07  Petur Runolfsson  <peturr02@ru.is>
5635         PR libstdc++/9817
5636         * include/bits/locale_facets.tcc
5637         (collate::do_compare, collate::do_transform):
5638         Handle nul characters in input.
5639         * testsuite/22_locale/collate/compare/char/3.cc:  New test.
5640         * testsuite/22_locale/collate/compare/wchar_t/3.cc:  New test.
5641         * testsuite/22_locale/collate/transform/char/3.cc:  New test.
5642         * testsuite/22_locale/collate/transform/wchar_t/3.cc:  New test.
5644 2003-03-07  Jerry Quinn  <jlquinn@optonline.net>
5646         * include/bits/streambuf_iterator.h (_M_put): Set _M_failed if
5647         sputn fails.
5648         * testsuite/27_io/ostream_fail.cc: New test.
5650 2003-03-07  Matthias Klose  <doko@debian.org>
5652         * Makefile.am (AM_MAKEFLAGS): Also pass gxx_include_dir.
5653         FLAGS_TO_PASS: Set to AM_MAKEFLAGS
5654         * Makefile.in: Regenerate.
5655         * libsupc++/Makefile.am: Express glibcppinstalldir in terms
5656         of gxx_include_dir.
5657         AM_MAKEFLAGS: Pass gxx_include_dir.
5658         * libsupc++/Makefile.in: Regenerate.
5660 2003-03-06  Jerry Quinn  <jlquinn@optonline.net>
5662         * testsuite/27_io/ios_base_storage.cc (test02): Set exception
5663         mask.  Test setting small-numbered pword and iword slots.  Test
5664         behavior at limit of numeric_limits::max.  Check that values are
5665         still good after failures.
5667 2003-03-06  Jerry Quinn  <jlquinn@optonline.net>
5669         * src/ios.cc (ios_base::_M_init): Remove _M_word_size.
5670         (ios_base::ios_base): Set _M_word, _M_word_size.
5671         (ios_base::~ios_base): Remove redundant test.
5672         * testsuite/27_io/ios_base_storage.cc (test03): New.
5674 2003-03-04  Alexandre Oliva  <aoliva@redhat.com>
5676         * src/strstream.cc, include/bits/basic_string.tcc: Remove
5677         incorrect whitespace added in my previous change.
5679 2003-03-05  Carlo Wood  <carlo@alinoe.com>
5681         * include/bits/ios_base.h(ios_base::Init::_S_initialized()): Added
5682         _S_initialized() in order to allow debugging libraries to detect
5683         when the std streams are initialized from an overloaded operator
5684         new.
5686 2003-03-05  Benjamin Kosnik  <bkoz@redhat.com>
5688         * libsupc++/demangle.h: Move to..
5689         * include/bits/demangle.h: ...here.
5690         * src/demangle.cc: Adjust include.
5691         * include/Makefile.am (bits_headers): Add.
5692         * include/Makefile.in: Regenerate.
5694 2003-03-04  Benjamin Kosnik  <bkoz@redhat.com>
5696         * src/globals.cc: Clarify comments, remove c_locale_imp_compat.
5698         * config/linker-map.gnu: Filter typeinfo and vtable info.
5700 2003-03-04  Jerry Quinn  <jlquinn@optonline.net>
5702         * src/ios.cc (ios_base::_M_grow_words): Don't delete _M_word on
5703         new failure.  Throw exception if badbit and exception mask when ix
5704         >= numeric_limits<int>::max().
5706 2003-03-04  Alexandre Oliva  <aoliva@redhat.com>
5708         * src/strstream.cc (strstreambuf::overflow): Make sure operands of
5709         min and max have the same type.
5710         * include/bits/basic_string.tcc (append, rfind, compare): Likewise.
5712 2003-03-04  Benjamin Kosnik  <bkoz@redhat.com>
5714         * include/Makefile.am (allstamps): Remove stamp-std-precompile.
5715         * include/Makefile.in: Regenerate.
5717 2003-03-03  Benjamin Kosnik  <bkoz@redhat.com>
5719         * testsuite/abi_check.cc (report_symbol_info): Add version info.
5721         * config/linker-map.gnu: Hide more stuff.
5722         * include/Makefile.am: Cleanups.
5723         * include/Makefile.in: Regenerate.
5725 2003-02-27  Jerry Quinn  <jlquinn@optonline.net>
5727         * config/locale/generic/messages_members.h (messages::messages):
5728         Remove name from unused parameter.
5730 2003-02-27  Benjamin Kosnik  <bkoz@redhat.com>
5732         * src/Makefile.am (sources): Add demangle.cc.
5733         (demangle.o): Add.
5734         (demangle.lo): Add.
5735         * src/Makefile.in: Regenerate.
5736         * libsupc++/Makefile.am: Remove old __cxa_demangle bits.
5737         * libsupc++/Makefile.in: Regenerate.
5739         * testsuite/testsuite_hooks.h
5740         (__gnu_cxx_test::verify_demangle): New.
5741         * testsuite/testsuite_hooks.cc: Define.
5743 2003-02-27  Carlo Wood  <carlo@alinoe.com>
5745         * src/demangle.cc: New.
5746         * libsupc++/demangle.h: New.
5748 2003-02-27  Benjamin Kosnik  <bkoz@redhat.com>
5749             Carlo Wood  <carlo@alinoe.com>
5751         * testsuite/demangle/abi_examples/01.cc: New.
5752         * testsuite/demangle/abi_examples/02.cc: New.
5753         * testsuite/demangle/abi_examples/03.cc: New.
5754         * testsuite/demangle/abi_examples/04.cc: New.
5755         * testsuite/demangle/abi_examples/05.cc: New.
5756         * testsuite/demangle/abi_examples/06.cc: New.
5757         * testsuite/demangle/abi_examples/07.cc: New.
5758         * testsuite/demangle/abi_examples/08.cc: New.
5759         * testsuite/demangle/abi_examples/09.cc: New.
5760         * testsuite/demangle/abi_examples/10.cc: New.
5761         * testsuite/demangle/abi_examples/11.cc: New.
5762         * testsuite/demangle/abi_examples/12.cc: New.
5763         * testsuite/demangle/abi_examples/13.cc: New.
5764         * testsuite/demangle/abi_examples/14.cc: New.
5765         * testsuite/demangle/abi_examples/15.cc: New.
5766         * testsuite/demangle/abi_examples/16.cc: New.
5767         * testsuite/demangle/abi_examples/17.cc: New.
5768         * testsuite/demangle/abi_examples/18.cc: New.
5769         * testsuite/demangle/abi_examples/19.cc: New.
5770         * testsuite/demangle/abi_examples/20.cc: New.
5771         * testsuite/demangle/abi_examples/21.cc: New.
5772         * testsuite/demangle/abi_examples/22.cc: New.
5773         * testsuite/demangle/abi_examples/23.cc: New.
5774         * testsuite/demangle/abi_examples/24.cc: New.
5775         * testsuite/demangle/abi_examples/25.cc: New.
5776         * testsuite/demangle/abi_examples/26.cc: New.
5777         * testsuite/demangle/abi_text/01.cc: New.
5778         * testsuite/demangle/abi_text/02.cc: New.
5779         * testsuite/demangle/abi_text/03.cc: New.
5780         * testsuite/demangle/abi_text/04.cc: New.
5781         * testsuite/demangle/abi_text/05.cc: New.
5782         * testsuite/demangle/abi_text/06.cc: New.
5783         * testsuite/demangle/abi_text/07.cc: New.
5784         * testsuite/demangle/abi_text/08.cc: New.
5785         * testsuite/demangle/abi_text/09.cc: New.
5786         * testsuite/demangle/abi_text/10.cc: New.
5787         * testsuite/demangle/abi_text/11.cc: New.
5788         * testsuite/demangle/abi_text/12.cc: New.
5789         * testsuite/demangle/abi_text/13.cc: New.
5790         * testsuite/demangle/abi_text/14.cc: New.
5791         * testsuite/demangle/regression/3111-1.cc: New.
5792         * testsuite/demangle/regression/3111-2.cc: New.
5793         * testsuite/demangle/regression/7986-01.cc: New.
5794         * testsuite/demangle/regression/7986-02.cc: New.
5795         * testsuite/demangle/regression/7986-03.cc: New.
5796         * testsuite/demangle/regression/7986-04.cc: New.
5797         * testsuite/demangle/regression/7986-05.cc: New.
5798         * testsuite/demangle/regression/7986-06.cc: New.
5799         * testsuite/demangle/regression/7986-07.cc: New.
5800         * testsuite/demangle/regression/7986-08.cc: New.
5801         * testsuite/demangle/regression/7986-09.cc: New.
5802         * testsuite/demangle/regression/7986-10.cc: New.
5803         * testsuite/demangle/regression/7986-11.cc: New.
5804         * testsuite/demangle/regression/7986-12.cc: New.
5805         * testsuite/demangle/regression/7986.cc: New.
5806         * testsuite/demangle/regression/8897.cc: New.
5807         * testsuite/demangle/regression/cw-01.cc: New.
5808         * testsuite/demangle/regression/cw-02.cc: New.
5809         * testsuite/demangle/regression/cw-03.cc: New.
5810         * testsuite/demangle/regression/cw-04.cc: New.
5811         * testsuite/demangle/regression/cw-05.cc: New.
5812         * testsuite/demangle/regression/cw-06.cc: New.
5813         * testsuite/demangle/regression/cw-07.cc: New.
5814         * testsuite/demangle/regression/cw-08.cc: New.
5815         * testsuite/demangle/regression/cw-09.cc: New.
5816         * testsuite/demangle/regression/cw-10.cc: New.
5817         * testsuite/demangle/regression/cw-11.cc: New.
5818         * testsuite/demangle/regression/cw-12.cc: New.
5819         * testsuite/demangle/regression/cw-13.cc: New.
5820         * testsuite/demangle/regression/cw-14.cc: New.
5821         * testsuite/demangle/regression/old.cc: New.
5823 2003-02-25  Phil Edwards  <pme@gcc.gnu.org>
5825         * docs/doxygen/Intro.3:  Update with new (proper) names.
5826         * docs/doxygen/TODO:  Update.
5827         * docs/doxygen/run_doxygen:  More comments, fix up man pages.
5828         Fake entries for standard typedefs.
5829         * docs/doxygen/user.cfg.in:  Turn INLINE_INHERITED_MEMB back on.
5830         * docs/html/documentation.html:  Top-level man page is now called
5831         C++Intro.
5832         * include/std/std_limits.h:  Doxygenate.
5834 2003-02-25  Scott Snyder  <snyder@fnal.gov>
5836         PR libstdc++/9811
5837         * include/bits/stl_map.h (lower_bound, upper_bound, equal_range):
5838         Correct documentation.
5839         * include/bits/stl_multimap.h (lower_bound, upper_bound,
5840         equal_range): Likewise.
5842 2003-02-24  Paolo Carlini  <pcarlini@unitus.it>
5844         PR libstdc++/9825
5845         * src/fstream.cc
5846         (basic_filebuf<char/wchar_t>::_M_underflow_common): When
5847         __bump is true (uflow), always increment the read pointer
5848         (_M_in_cur) before returning successfully.
5849         * testsuite/27_io/filebuf_virtuals.cc (test12): Add.
5851 2003-02-24  Paolo Carlini <pcarlini@unitus.it>
5852             Nathan Myers <ncm@cantrip.org>
5854         PR libstdc++/9404, PR libstdc++/9701 (partial)
5855         (aka pptr == epptr implies overflow)
5856         * include/bits/fstream.tcc (_M_allocate_internal_buffer):
5857         Consistently, _M_out_end points to the end of the buffer just
5858         created.
5859         (overflow): Tweak to use _M_out_buf_size().
5860         (_M_convert_to_external): The role of the old _M_out_end is
5861         now played by _M_out_lim.
5862         (_M_really_overflow): Likewise.
5863         (seekoff): Likewise.
5864         (setbuf): _M_out_end points to the end of the external buffer.
5865         * include/bits/sstream.tcc (overflow): Rewrote, taking into
5866         account the resolution of DR 169 (TC).
5867         (seekoff): Use _M_string.capacity(); ios_base::end is now _M_out_lim.
5868         (seekpos): Use _M_string.capacity(); tweak.
5869         * include/bits/streambuf.tcc (sputc, xsputn): Remove comments.
5870         * include/std/std_fstream.h (sync): The role of the old
5871         _M_out_end is now played by _M_out_lim.
5872         (_M_set_indeterminate): Use _M_set_determinate.
5873         (_M_set_determinate): _M_out_end is now _M_out_lim.
5874         (_M_is_indeterminate): Likewise.
5875         * include/std/std_sstream.h (str()): _M_out_end is now _M_out_lim.
5876         (_M_stringbuf_init): Don't set _M_buf_size, unused for sstreams,
5877         which have the information readily available as _M_string.capacity();
5878         for ate and app modes, pass the string size to _M_really_sync.
5879         (_M_really_sync): Consistently set _M_out_end and _M_out_lim, to
5880         point to the end of the buffer (i.e., epptr) and to the string end,
5881         respectively.
5882         * include/std/std_streambuf.h: tweak comments, add _M_out_lim,
5883         which points to the right limit of the used put area.
5884         (_M_out_cur_move): The role of the old _M_out_end is now played
5885         by _M_out_lim.
5886         (_M_out_buf_size): Simplify: now (when _M_out_cur) return simply
5887         _M_out_end  - _M_out_cur (i.e., pptr), _very_ close to the letter
5888         of the standard.
5889         (basic_streambuf()): Initialize _M_out_lim too.
5890         * testsuite/27_io/filebuf_virtuals.cc (test10): Trivial tweak.
5891         * testsuite/27_io/filebuf_virtuals.cc (test11): Add.
5892         * testsuite/27_io/stringbuf_virtuals.cc (test09): Add.
5894 2003-02-24  Benjamin Kosnik  <bkoz@redhat.com>
5896         * testsuite/27_io/ios_base_storage.cc (main): Call
5897         set_memory_limits.
5899 2003-02-21  Jerry Quinn  <jlquinn@optonline.net>
5901         * include/bits/locale_facets.tcc (_M_convert_float): Replace
5902         numpunct facet accesses with data from __locale_cache.
5904 2003-02-20  Phil Edwards  <pme@gcc.gnu.org>
5906         * docs/html/faq/index.html (3.9):  New note, wchar_t on FreeBSD.
5907         * docs/html/faq/index.txt:  Regenerate.
5909 2003-02-20  Phil Edwards  <pme@gcc.gnu.org>
5911         * config/linker-map.gnu:  Also export locking symbols needed for the
5912         generic atomicity.h case.
5914 2003-02-20  Alexandre Oliva  <aoliva@redhat.com>
5916         * configure.in: Propagate ORIGINAL_LD_FOR_MULTILIBS to
5917         config.status.
5918         * configure: Rebuilt.
5920 2003-02-19  Paolo Carlini  <pcarlini@unitus.it>
5922         * include/bits/sstream.tcc (overflow): According to
5923         27.7.1.3, p5, actual output is performed by sputc(c).
5925 2003-02-19  Phil Edwards  <pme@gcc.gnu.org>
5927         PR libstdc++/9582
5928         * include/bits/stl_alloc.h:  Remove all traces of assert().
5930 2003-02-18  Paolo Carlini  <pcarlini@unitus.it>
5932         * include/std/std_sstream.h (str()): the size of the
5933         current string may be different from the initial one
5934         whenever _M_out_end > _M_out_beg.
5935         * testsuite/27_io/stringbuf_members.cc (test07): Add.
5937 2003-02-18  Paolo Carlini  <pcarlini@unitus.it>
5939         PR libstdc++/9582
5940         * include/bits/stl_alloc.h (__pool_alloc::allocate): Remove assert.
5942 2003-02-17  Benjamin Kosnik  <bkoz@redhat.com>
5944         * include/bits/basic_ios.tcc (copyfmt): Copy locale data as well.
5945         * testsuite/27_io/ios_members.cc (test03): New.
5947 2003-02-17  Jerry Quinn  <jlquinn@optonline.net>
5949         * include/bits/basic_ios.h (basic_ios::_M_cache_locale): Declare.
5950         (basic_ios::_M_cache_facets): Move into above.
5951         * include/bits/basic_ios.tcc (basic_ios::copyfmt): Rebuild locale
5952         cache.
5953         (basic_ios::imbue): Force locale cache to be built.
5954         (basic_ios::_M_init): Create and initialize locale cache.
5955         * include/bits/ios_base.h (__locale_cache_base): Declare.
5956         (ios_base::_M_locale_cache): New.
5957         (ios_base::_M_cache): Define.
5958         * include/bits/locale_facets.h: (__num_base): Fix comment.  Add
5959         _S_end.
5960         (__locale_cache_base,__locale_cache<_CharT>):  New classes.
5961         (__locale_cache<char>, __locale_cache<wchar_t>): New specializations.
5962         * include/bits/locale_facets.tcc (num_put::_M_convert_int): Use locale
5963         cache literal string, grouping flag, thousands separator.
5964         (__locale_cache<_CharT>::__locale_cache): New.
5965         (__locale_cache<_CharT>::_M_init): New.
5966         * src/ios.cc: Clear _M_locale_cache in constructor.
5967         * src/locale-inst.cc (__locale_cache<char>, __locale_cache<_char_t>):
5968         New.
5970 2003-02-17  Paolo Carlini  <pcarlini@unitus.it>
5972         * src/locale-inst.cc: Do not include <cassert>.
5973         * src/locale.cc: Likewise.
5975 2003-02-17  Paolo Carlini  <pcarlini@unitus.it>
5977         PR libstdc++/9580
5978         * include/std/std_fstream.h: Declare underflow and uflow
5979         specializations, change generic definitions to do nothing.
5980         * src/fstream.cc: Add underflow and uflow specializations.
5982 2003-02-17  Paolo Carlini  <pcarlini@unitus.it>
5984         PR libstdc++/9169
5985         * include/bits/fstream.tcc (_M_convert_to_external):
5986         Deal correctly with noconv, as prescribed by 27.8.1.4,p8.
5987         * testsuite/27_io/filebuf_virtuals.cc (test10): Add.
5989 2003-02-13  Benjamin Kosnik  <bkoz@redhat.com>
5991         * include/bits/c++config (_GLIBCPP_EXTERN_TEMPLATE): Define.
5992         * include/bits/basic_ios.tcc: Guard use of extern template.
5993         * include/std/std_iomanip.h: Same.
5994         * include/bits/streambuf.tcc: Same.
5995         * include/bits/stl_alloc.h: Same.
5996         * include/bits/locale_facets.tcc: Same.
5997         * include/bits/ostream.tcc: Same.
5998         * include/bits/istream.tcc: Same.
5999         * include/bits/fstream.tcc: Same.
6000         * include/bits/basic_string.tcc: Same.
6002 2003-02-13  Paolo Carlini  <pcarlini@unitus.it>
6004         * include/bits/ostream.tcc (sentry::sentry): Improve
6005         performance-wise the fix for libstdc++/9563.
6007 2003-02-12  Phil Edwards  <pme@gcc.gnu.org>
6009         * config/cpu/generic/atomicity.h (_Atomic_add_mutex):  Fix declaration.
6010         (_GLIBCPP_NEED_GENERIC_MUTEX):  Define for this file.
6011         (_Atomic_add_mutex_once, __gthread_atomic_add_mutex_once):  Declare
6012         when we don't have static mutex initialization.
6013         (__exchange_and_add):  Use _Atomic_add_mutex_once.
6014         * src/misc-inst.cc:  Definitions of all the above.
6016 2003-02-12  Paolo Carlini  <pcarlini@unitus.it>
6018         PR libstdc++/9563
6019         * include/bits/ostream.tcc (sentry::sentry): Check
6020         the state of the stream after the preparation.
6021         * testsuite/27_io/ostream_sentry.cc (test02): Add.
6023 2003-02-11  Benjamin Kosnik  <bkoz@redhat.com>
6025         * include/Makefile.am (stamp-std-precompile): Add rule.
6026         * include/Makefile.in: Regenerated.
6028 2003-02-11 Jerry Quinn  <jlquinn@optonline.net>
6029            Benjamin Kosnik  <benjamin@redhat.com>
6031         * include/bits/locale_facets.h (__num_base): Add _S_atoms_out.
6032         Add indexes into this array.
6033         (__num_base::_S_atoms): To _S_atoms_in.
6034         (num_put::_M_insert): Rename to _M_pad.
6035         (num_put::_M_convert_int): Adjust remove __mod, __modl arguments.
6036         (num_put::_M_widen_int): Rename to _M_group_int.
6037         (num_put::_M_widen_float): Rename to _M_group_float.
6038         * include/bits/locale_facets.tcc (__int_to_char): New inline
6039         function and adapter functions.
6040         (num_put::_M_group_int): Streamline.
6041         (num_put::_M_group_float): Streamline.
6042         (num_put::_M_convert_int): Remove unused parameter names. Choose
6043         large enough buffer for text.  Use __int_to_char instead of
6044         __convert_from_v.  Formatted text is now at the end of the buffer.
6045         (num_put::_M_convert_float): Preliminary fixups.
6046         * src/locale-inst.cc (__convert_from_v<long long>): Add ifdef.
6047         (__int_to_char<unsigned long long>): Same.
6048         (__int_to_char<char, unsigned long>): New.
6049         (__int_to_char<char, unsigned long long>): New.
6050         (__int_to_char<wchar_t, unsigned long>): New.
6051         (__int_to_char<wchar_t, unsigned long long>): New.
6053 2003-02-11  Scott Snyder  <snyder@fnal.gov>
6055         PR libstdc++/9659
6056         * include/bits/fstream.tcc (seekoff): Avoid operator+
6057         for pos_type.
6059 2003-02-11  Paolo Carlini  <pcarlini@unitus.it>
6061         PR libstdc++/9320
6062         * include/ext/stdio_filebuf.h
6063         (stdio_filebuf(int, std::ios_base::openmode, bool, int_type),
6064         stdio_filebuf(std::__c_file*, std::ios_base::openmode, int_type)):
6065         Change to take a __size parameter of type size_t, not
6066         of type (template parameter dependent) int_type.
6067         * src/ios.cc (ios_base::Init::_S_ios_create): Change type of
6068         size vars to size_t.
6069         * testsuite/ext/stdio_filebuf.cc: Add.
6071 2003-02-11  Paolo Carlini  <pcarlini@unitus.it>
6072             Petur Runolfsson  <peturr02@ru.is>
6074         PR libstdc++/9318
6075         * include/bits/streambuf.tcc (__copy_streambufs):
6076         Don't conditionalize the copy to __testput.
6077         * testsuite/27_io/streambuf_members.cc (test09, test10): Add.
6079 2002-02-11  DJ Delorie  <dj@redhat.com>
6081         * acinclude.m4: Check for native targets that can't link at
6082         this point in the build.
6083         * aclocal.m4: Regenerate.
6084         * configure: Regenerate.
6086 2003-02-08  John David Anglin  <dave.anglin@nrc-cnrc.gc.ca>
6088         * hppa/atomicity.h (__Atomicity_lock<__inst>::_S_atomicity_lock):
6089         Correct alignment.
6090         (__exchange_and_add, __atomic_add): Use PA 2.0 ordered store to reset
6091         lock.
6093 2003-02-07  Paolo Carlini  <pcarlini@unitus.it>
6095         * testsuite/27_io/filebuf_virtuals.cc (test08): Fix for
6096         unsigned char platforms.
6098 2003-02-06  Paolo Carlini  <pcarlini@unitus.it>
6100         PR libstdc++/9562
6101         * include/std/std_istream.h
6102         (basic_istream::sentry::operator bool()): Make const.
6103         * include/std/std_ostream.h
6104         (basic_ostream::sentry::operator bool()): Likewise.
6105         * testsuite/27_io/istream_sentry.cc (test03): Add.
6106         * testsuite/27_io/ostream_sentry.cc: Add.
6108 2003-02-06  Paolo Carlini  <pcarlini@unitus.it>
6110         PR libstdc++/9548
6111         Implement resolution of DR 231 (Ready)
6112         * include/bits/locale_facets.h (__num_base::_S_format_float):
6113         Change declaration: return void, remove __prec parameter.
6114         * src/locale.cc (__num_base::_S_format_float): Implement
6115         resolution of DR 231.
6116         * include/bits/locale_facets.tcc (num_put::_M_convert_float):
6117         Tweak uses. Check for negative precision.
6118         * testsuite/22_locale/num_put/put/char/6.cc: Add
6119         * testsuite/22_locale/num_put/put/wchar_t/6.cc: Likewise.
6121 2003-02-06  Peter Soetens  <peter.soetens@mech.kuleuven.ac.be>
6123         * config/io/basic_file_libio.h: Fixups.
6124         * config/io/c_io_libio.h: Same.
6125         * libio/Makefile.am: Same.
6126         * libio/Makefile.in: Regenerated.
6128 2003-02-06  Benjamin Kosnik  <bkoz@redhat.com>
6130         * testsuite/22_locale/codecvt/encoding/wchar_t/1.cc (test01):
6131         Explicitly use the "C" locale.
6132         * testsuite/22_locale/codecvt/max_length/wchar_t/1.cc (test01): Same.
6134 2003-02-06  Petur Runolfsson  <peturr02@ru.is>
6136         DR 75
6137         DR 305
6138         PR libstdc++/9028 (partial)
6139         PR libstdc++/9224
6140         PR libstdc++/9246
6141         PR libstdc++/9247
6143         * src/codecvt.cc
6144         (codecvt<wchar_t, char, mbstate_t>::do_encoding,
6145         codecvt<wchar_t, char, mbstate_t>::do_length,
6146         codecvt<wchar_t, char, mbstate_t>::do_max_length):
6147         Move...
6148         * config/locale/generic/codecvt_members.cc:  ...here.
6149         * config/locale/gnu/codecvt_members.cc:  ...and here.
6151         * config/locale/generic/codecvt_members.cc,
6152         * config/locale/gnu/codecvt_members.cc
6153         (codecvt<wchar_t, char, mbstate_t>::do_encoding
6154         codecvt<wchar_t, char, mbstate_t>::do_in,
6155         codecvt<wchar_t, char, mbstate_t>::do_length,
6156         codecvt<wchar_t, char, mbstate_t>::do_max_length,
6157         codecvt<wchar_t, char, mbstate_t>::do_out):
6158         New implementation that handles stateless encodings,
6159         including UTF-8.
6161         * config/locale/generic/codecvt_members.cc,
6162         * config/locale/gnu/codecvt_members.cc,
6163         * config/locale/ieee_1003.1-2001/codecvt_specializations.h,
6164         * include/bits/codecvt.h,
6165         * src/codecvt.cc
6166         (codecvt::length, codecvt::do_length):
6167         Change type of first argument of length and do_length from
6168         'const state_type&' to 'state_type&' according to DR 75.
6170         * testsuite/22_locale/codecvt/always_noconv/wchar_t/1.cc:  Cleanup.
6171         * testsuite/22_locale/codecvt/always_noconv/wchar_t/2.cc:  New test.
6172         * testsuite/22_locale/codecvt/always_noconv/wchar_t/3.cc:  New test.
6173         * testsuite/22_locale/codecvt/always_noconv/wchar_t/4.cc:  New test.
6174         * testsuite/22_locale/codecvt/encoding/wchar_t/1.cc:
6175         Cleanup and check for correct return value from encoding
6176         for "C" locale.
6177         * testsuite/22_locale/codecvt/encoding/wchar_t/2.cc:  New test.
6178         * testsuite/22_locale/codecvt/encoding/wchar_t/3.cc:  New test.
6179         * testsuite/22_locale/codecvt/encoding/wchar_t/4.cc:  New test.
6180         * testsuite/22_locale/codecvt/in/wchar_t/1.cc:  Cleanup.
6181         * testsuite/22_locale/codecvt/in/wchar_t/2.cc:  New test.
6182         * testsuite/22_locale/codecvt/in/wchar_t/3.cc:  New test.
6183         * testsuite/22_locale/codecvt/in/wchar_t/4.cc:  New test.
6184         * testsuite/22_locale/codecvt/in/wchar_t/5.cc:  New test.
6185         * testsuite/22_locale/codecvt/in/wchar_t/6.cc:  New test.
6186         * testsuite/22_locale/codecvt/in/wchar_t/7.cc:  New test.
6187         * testsuite/22_locale/codecvt/in/wchar_t/8.cc:  New test.
6188         * testsuite/22_locale/codecvt/in/wchar_t/9.cc:  New test.
6189         * testsuite/22_locale/codecvt/length/char/1.cc:  Cleanup.
6190         * testsuite/22_locale/codecvt/length/char/2.cc:  New test.
6191         * testsuite/22_locale/codecvt/length/wchar_t/1.cc:  Cleanup.
6192         * testsuite/22_locale/codecvt/length/wchar_t/2.cc:  New test.
6193         * testsuite/22_locale/codecvt/length/wchar_t/3.cc:  New test.
6194         * testsuite/22_locale/codecvt/length/wchar_t/4.cc:  New test.
6195         * testsuite/22_locale/codecvt/length/wchar_t/5.cc:  New test.
6196         * testsuite/22_locale/codecvt/length/wchar_t/6.cc:  New test.
6197         * testsuite/22_locale/codecvt/length/wchar_t/7.cc:  New test.
6198         * testsuite/22_locale/codecvt/max_length/wchar_t/1.cc:  Cleanup.
6199         * testsuite/22_locale/codecvt/max_length/wchar_t/2.cc:  New test.
6200         * testsuite/22_locale/codecvt/max_length/wchar_t/3.cc:  New test.
6201         * testsuite/22_locale/codecvt/max_length/wchar_t/4.cc:  New test.
6202         * testsuite/22_locale/codecvt/out/wchar_t/1.cc:  Cleanup.
6203         * testsuite/22_locale/codecvt/out/wchar_t/2.cc:  New test.
6204         * testsuite/22_locale/codecvt/out/wchar_t/3.cc:  New test.
6205         * testsuite/22_locale/codecvt/out/wchar_t/4.cc:  New test.
6206         * testsuite/22_locale/codecvt/out/wchar_t/5.cc:  New test.
6207         * testsuite/22_locale/codecvt/out/wchar_t/6.cc:  New test.
6208         * testsuite/22_locale/codecvt/out/wchar_t/7.cc:  New test.
6209         * testsuite/22_locale/codecvt/unicode/1.cc:  New test.
6210         * testsuite/22_locale/codecvt/unshift/wchar_t/1.cc:  Cleanup.
6211         * testsuite/22_locale/codecvt/unshift/wchar_t/2.cc:  New test.
6212         * testsuite/22_locale/codecvt/unshift/wchar_t/3.cc:  New test.
6213         * testsuite/22_locale/codecvt/unshfit/wchar_t/4.cc:  New test.
6215 2003-02-05  Benjamin Kosnik  <bkoz@redhat.com>
6217         * include/bits/locale_facets.tcc (time_put::do_put): Use __write.
6218         (money_put::do_put): Same.
6220 2003-02-05  Jerry Quinn  <jlquinn@optonline.net>
6222         * include/bits/ios_base.h (ios_base): Document reserved storage.
6224         * include/bits/locale_facets.h: (struct __pad): Comment on
6225         implementation.
6226         (__verify_grouping): Same.
6227         (__add_grouping): Same.
6228         * include/bits/locale_facets.tcc (__verify_grouping): Move
6229         comments to declaration.
6230         (__add_grouping): Same.
6232         * include/bits/locale_facets.tcc:
6233         (__write<_CharT, _OutIter>): New function.
6234         (__write<_CharT>): New function specialization.
6235         (num_put::_M_insert): Remove explicit loop over iterator.  Use
6236         __write.
6237         (num_put::_M_widen_float): Remove __basefield.
6238         (num_put::_M_widen_int): Move __basefield to within grouping block.
6240         * include/bits/streambuf_iterator.h: Include <streambuf>.
6241         (ostreambuf_iterator::_M_put): Add.
6243 2003-02-05  Paolo Carlini  <pcarlini@unitus.it>
6245         * testsuite/26_numerics/valarray_name_lookup.cc: Fix typo.
6247 2003-02-04  Nathan Myers  <ncm@cantrip.org>
6249         * testsuite/25_algorithms/min_max.cc (test02): Add.
6251 2003-02-04  Paolo Carlini  <pcarlini@unitus.it>
6253         PR libstdc++/9439, PR libstdc++/9425
6254         * config/io/basic_file_stdio.cc
6255         (__basic_file<char>::seekoff, seekpos): Return -1L if
6256         fseek fails.
6257         * include/bits/fstream.tcc (basic_filebuf::seekoff):
6258         Check _M_file.seekoff return value; always return
6259         pos_type(off_type(-1)) in case of failure.
6260         (basic_filebuf::pbackfail): Check this->seekoff return
6261         value and return traits_type::eof() in case of failure.
6262         * testsuite/27_io/filebuf_virtuals.cc (test09): Add.
6264 2003-02-04  Jerry Quinn  <jlquinn@optonline.net>
6266         * include/std/std_ostream.h (ostream::_M_write): Declare.
6267         * ostream.tcc (ostream::_M_write): Define.
6268         (basic_ostream::write): Use it.
6269         (operator<<(basic_ostream, _CharT)): Ditto.
6270         (operator<<(basic_ostream, char)): Ditto.
6271         (operator<<(basic_ostream, _CharT*)): Ditto.
6272         (operator<<(basic_ostream, char*)): Ditto.
6273         (operator<<(basic_ostream, basic_string)): Ditto.
6275 2003-02-04  Benjamin Kosnik  <bkoz@redhat.com>
6277         * testsuite/26_numerics/valarray_name_lookup.cc: Fix.
6279 2002-02-04  Jonathan Wakely  <redi@gcc.gnu.org>
6281         * docs/html/27_io/howto.html: Link to Dietmar Kuehl's IOStream page,
6282         add HTML comment about updating links if numbering changes.
6284 2003-02-04  Paolo Carlini  <pcarlini@unitus.it>
6286         PR libstdc++/9538
6287         * include/bits/streambuf.tcc (sputbackc): Access
6288         this->gptr()[-1] only if _M_in_beg < _M_in_cur.
6289         * testsuite/27_io/filebuf_virtuals.cc (test08): Add.
6291 2003-02-04  Paolo Carlini  <pcarlini@unitus.it>
6293         PR libstdc++/9507
6294         * include/bits/fstream.tcc (open): If the 'ate' repositioning
6295         operation fails, calls close _and_ returns a null pointer
6296         to indicate failure (27.8.1.3,4).
6297         * testsuite/27_io/filebuf_members.cc (test_06): Add.
6299 2003-02-04  Petur Runolfsson  <peturr02@ru.is>
6301         * testsuite/27_io/filebuf_members.cc (test_04): Remove exit(0).
6303 2002-02-04  Jonathan Wakely  <redi@gcc.gnu.org>
6305         * docs/html/27_io/howto.html: New section on stdio_filebuf.
6306         * docs/html/ext/howto.html: Move stdio_filebuf notes to 27_io.
6307         * docs/html/documentation.html: Regenerate.
6309 2003-02-04  Joseph S. Myers  <jsm@polyomino.org.uk>
6311         * docs/html/17_intro/porting.texi: Update to GFDL 1.2.
6312         * docs/html/17_intro/porting.html: Regenerate.
6314 2003-02-03  Falk Hueffner  <falk.hueffner@student.uni-tuebingen.de>
6315             Phil Edwards  <pme@gcc.gnu.org>
6317         * include/std/std_bitset.h:  Replace CHAR_BIT with __CHAR_BIT__, use
6318         numeric_limits for bits-per-word values.
6319         (_Base_bitset::_M_do_count, _Base_bitset<1>::_M_do_count):
6320         Use __builtin_popcountl instead.
6321         (_Base_bitset::_M_do_find_first, _Base_bitset::_M_do_find_next,
6322         _Base_bitset<1>::_M_do_find_first, _Base_bitset<1>::_M_do_find_next):
6323         Use __builtin_ctzl instead.
6324         (_S_bit_count, _S_first_one):  Remove.
6325         * config/linker-map.gnu (GLIBCPP_3.4):  Remove std::_S_bit_count.
6326         * src/Makefile.am (sources):  Remove bitset.cc.
6327         * src/bitset.cc:  Delete file.
6328         * src/Makefile.in:  Regenerate.
6330 2003-02-03  Phil Edwards  <pme@gcc.gnu.org>
6332         PR libstdc++/9527, PR libstdc++/8713
6333         * docs/html/install.html:  Mention glibc version requirement.
6334         * docs/html/faq/index.html (3.8):  New note, glibc 2.2.5+ is needed
6335         with 3.2.1+ (formatting bugfixes).
6336         * docs/html/faq/index.txt:  Regenerate.
6338 2003-02-03  Volker Reichelt  <reichelt@igpm.rwth-aachen.de>
6340         PR libstdc++/9234
6341         * include/bits/valarray_before.h (_UnBase::operator[]): Apply unary
6342         operator.
6344         * include/bits/valarray_before.h (__not_equal_to): Use != instead
6345         of ==.
6347         * testsuite/26_numerics/valarray_operators.cc: New test.
6349 2003-02-01  Phil Edwards  <pme@gcc.gnu.org>
6351         * docs/html/faq/index.html:  Correct link to libg++ information.
6352         * docs/html/faq/index.txt:  Regenerated.
6354 2003-02-01  Paolo Carlini  <pcarlini@unitus.it>
6355             Benjamin Kosnik  <bkoz@redhat.com>
6357         Const correctness issue:
6358         http://gcc.gnu.org/ml/libstdc++/2003-01/msg00370.html
6359         * include/bits/locale_classes.h
6360         (locale::_Impl::_M_facets): Change type to const facet**.
6361         (locale::_Impl::_M_install_facet): Change declaration to
6362         take const facet*.
6363         (locale::facet::_M_references): Make mutable.
6364         (locale::facet::_M_add_reference): Declare const.
6365         (locale::facet::_M_remove_reference): Likewise.
6366         * include/bits/locale_facets.tcc
6367         (use_facet(const locale&)): Tweak for const facet** _M_facets.
6368         (has_facet(const locale&)): Likewise.
6369         * src/locale.cc
6370         (locale::facet::_M_add_reference): Adjust definition.
6371         (locale::facet::_M_remove_reference): Likewise.
6372         * src/localename.cc
6373         (locale::_Impl::_Impl(const _Impl&, size_t)): Tweak for
6374         const facet** _M_facets.
6375         (locale::_Impl::_Impl(const char*, size_t)): Likewise.
6376         (locale::_Impl::_Impl(facet**, size_t, bool)): Likewise.
6377         (locale::_Impl::_M_install_facet): Adjust definition to take
6378         const facet* and for const facet** _M_facets.
6379         * testsuite/22_locale/locale/cons/8.cc: Add.
6381 2003-01-29  Mark Mitchell  <mark@codesourcery.com>
6383         * include/std/std_limits.h (numeric_limits<float>::has_infinity):
6384         Use __FLT_HAS_INIFINITY__ to initialize.
6385         (numeric_limits<float>::has_quiet_NaN): Likewise.
6386         (numeric_limits<double>::has_infinity): Use __DBL_HAS_INIFINITY__
6387         to initialize.
6388         (numeric_limits<double>::has_quiet_NaN): Likewise.
6389         (numeric_limits<long double>::has_infinity): Use
6390         __LDBL_HAS_INIFINITY__ to initialize.
6391         (numeric_limits<long_double>::has_quiet_NaN): Likewise.
6393 2003-01-28  Nathan Sidwell  <nathan@codesourcery.com>
6395         PR c++/9433
6396         * libsupc++/tinfo.cc (__vmi_class_type_info::__do_dyncast): Cope
6397         with bases which are very ambiguous.
6399 2003-01-28  Danny Smith  <dannysmith@users.sourceforge.net>
6401         * src/Makefile.am (CONFIG_CXXFLAGS): Reverse order of
6402         @EXTRA_CXX_FLAGS@ @SECTION_FLAGS@.
6403         * libsupc++/Makefile.am (CONFIG_CXXFLAGS): Likewise.
6404         * src/Makefile.in: Regenerate.
6405         * libsupc++/Makefile.in: Regenerate.
6407 2003-01-27  Alexandre Oliva  <aoliva@redhat.com>
6409         * acinclude.m4 (glibcpp_toolexeclibdir): Instead of
6410         $(MULTISUBDIR), use `$CC -print-multi-os-directory`, unless
6411         version_specific_libs is enabled.
6412         * aclocal.m4, configure: Rebuilt.
6414 2003-01-24  Nathan Sidwell  <nathan@codesourcery.com>
6416         * include/bits/valarray_meta.h: Remove, split into ...
6417         * include/bits/valarray_before.h: ... this, and ...
6418         * include/bits/valarray_after.h: ... this.
6419         * include/std/std_valarray.h: Adjust.
6420         * include/Makefile.am (bits_headers): Adjust.
6421         * include/Makefile.in: Regenerate.
6423 2003-01-24  Andreas Schwab  <schwab@suse.de>
6425         * config/linker-map.gnu: Fix for size_t variance.
6427 2003-01-23  Petur Runolfsson  <peturr02@ru.is>
6429         PR libstdc++/9322
6430         * include/std/std_streambuf.h
6431         (basic_streambuf::basic_streambuf,
6432         basic_streambuf::~basic_streambuf,
6433         basic_streambuf::getloc, basic_streambuf::imbue):
6434         Remove _M_buf_locale_init
6435         * include/bits/fstream.tcc (basic_filebuf::imbue):  Likewise
6436         * testsuite/27_io/filebuf_virtuals.cc (test08):  Add.
6437         * testsuite/27_io/streambuf_members.cc (test08):  Add.
6438         * testsuite/27_io/stringbuf_virtuals.cc (test08):  Add.
6440 2003-01-23  Benjamin Kosnik  <bkoz@redhat.com>
6442         Revert include ordering.
6443         * config/locale/generic/c_locale.h: Add include guards.
6444         * config/locale/gnu/c_locale.h: Same.
6445         * include/bits/locale_classes.h: Remove cctype include.
6446         * include/std/std_iosfwd.h: Add c++locale.h, cctype includes.
6447         * include/std/std_fstream.h: Remove streambuf include.
6448         * include/std/std_sstream.h: Remove streambuf include.
6450 2003-01-23  Benjamin Kosnik  <bkoz@redhat.com>
6452         * configure.in (libtool_VERSION): To 6:0:0.
6453         * configure: Regenerated.
6454         * config/linker-map.gnu: Clean.
6456         * src/misc-inst.cc: Remove instantiations.
6458         * include/bits/stl_alloc.h (__malloc_alloc_template):
6459         To __malloc_alloc.
6460         (__default_alloc_template): To __pool_alloc.
6461         * src/stl-inst.cc: Same.
6462         * include/backward/alloc.h: Update.
6463         * testsuite/ext/allocators.cc: Update.
6465         * src/globals.cc (__gnu_cxx): Remove _GLIBCPP_ASM_SYMVER. Should
6466         really try to remove these if possible.
6467         * src/locale.cc (std): Same.
6469         * testsuite/abi_check.cc (check_version): Add.
6471 2003-01-22  Benjamin Kosnik  <bkoz@redhat.com>
6472             Sysoltsev Slawa  <Vyatcheslav.Sysoltsev@intel.com>
6473             Mark Mitchell  <mark@codesourcery.com>
6475         PR libstdc++/9269
6476         * include/std/std_fstream.h (basic_filebuf::uflow): Declare.
6477         (basic_filebuf::underflow): Declare.
6478         Move definitions.
6480 2003-01-22  Benjamin Kosnik  <bkoz@redhat.com>
6482         * include/bits/locale_facets.h: Move non-facet classes requiring
6483         <string> to...
6484         * include/bits/locale_classes.h: New.
6485         * include/bits/Makefile.am (bits_headers_src): Add locale_classes.h.
6486         * include/bits/Makefile.in: Regenerate.
6488         * include/bits/locale_facets.tcc (__convert_from_v): Move to...
6489         * config/locale/gnu/c_locale.h: ...here.
6490         * config/locale/generic/c_locale.h: Same.
6492         * include/bits/locale_facets.tcc: Move declarations to...
6493         * include/bits/locale_facets.h: ...here.
6494         * include/bits/basic_ios.h: Tweak includes accordingly.
6495         * include/std/std_sstream.h: Add streambuf include.
6496         * include/std/std_fstream.h: Ditto.
6497         * include/std/std_locale.h: Add locale_classes.h include.
6498         * include/std/std_iosfwd.h: Tweak.
6499         * src/concept-inst.cc: Add iterator include.
6501         * config/linker-map.gnu: Specify __cxa functions, mark __cxa_dyn_*
6502         bits as unexported in the future.
6504 2003-01-21  Benjamin Kosnik  <bkoz@redhat.com>
6506         Reshuffle 22_locale testsuite.
6507         * 22_locale/(codecvt.cc money_get.cc
6508         codecvt_members_char_char.cc money_get_members_char.cc
6509         codecvt_members_unicode_char.cc money_get_members_wchar_t.cc
6510         codecvt_members_unicode_wchar_t.cc moneypunct_byname.cc
6511         codecvt_members_wchar_t_char.cc moneypunct.cc collate_byname.cc
6512         moneypunct_members_char.cc collate.cc moneypunct_members_wchar_t.cc
6513         collate_members_char.cc money_put.cc collate_members_wchar_t.cc
6514         money_put_members_char.cc ctor_copy_dtor.cc
6515         money_put_members_wchar_t.cc ctype.cc num_get.cc ctype_is_char.cc
6516         num_get_members_char.cc ctype_is_wchar_t.cc num_get_members_wchar_t.cc
6517         ctype_members_char.cc numpunct_byname.cc ctype_members_wchar_t.cc
6518         numpunct.cc ctype_narrow_char.cc numpunct_members_char.cc
6519         ctype_narrow_wchar_t.cc numpunct_members_wchar_t.cc ctype_scan_char.cc
6520         num_put.cc ctype_scan_wchar_t.cc num_put_members_char.cc
6521         ctype_to_char.cc num_put_members_wchar_t.cc ctype_to_wchar_t.cc
6522         operators.cc ctype_widen_char.cc static_members.cc
6523         ctype_widen_wchar_t.cc time_get.cc facet.cc time_get_members_char.cc
6524         global_templates.cc time_get_members_wchar_t.cc, members.cc,
6525         time_put.cc, messages_byname.cc, time_put_members_char.cc,
6526         messages.cc, time_put_members_wchar_t.cc, messages_members_char.cc):
6527         Split up into individual test cases...
6528         * 22_locale/codecvt/1.cc: New.
6529         * 22_locale/codecvt/2.cc: New.
6530         * 22_locale/codecvt/always_noconv/char/1.cc: New.
6531         * 22_locale/codecvt/always_noconv/char/wrapped_env.cc: New.
6532         * 22_locale/codecvt/always_noconv/char/wrapped_locale.cc: New.
6533         * 22_locale/codecvt/always_noconv/wchar_t/1.cc: New.
6534         * 22_locale/codecvt/always_noconv/wchar_t/wrapped_env.cc: New.
6535         * 22_locale/codecvt/always_noconv/wchar_t/wrapped_locale.cc: New.
6536         * 22_locale/codecvt/encoding/char/1.cc: New.
6537         * 22_locale/codecvt/encoding/char/wrapped_env.cc: New.
6538         * 22_locale/codecvt/encoding/char/wrapped_locale.cc: New.
6539         * 22_locale/codecvt/encoding/wchar_t/1.cc: New.
6540         * 22_locale/codecvt/encoding/wchar_t/wrapped_env.cc: New.
6541         * 22_locale/codecvt/encoding/wchar_t/wrapped_locale.cc: New.
6542         * 22_locale/codecvt/in/char/1.cc: New.
6543         * 22_locale/codecvt/in/char/wrapped_env.cc: New.
6544         * 22_locale/codecvt/in/char/wrapped_locale.cc: New.
6545         * 22_locale/codecvt/in/wchar_t/1.cc: New.
6546         * 22_locale/codecvt/in/wchar_t/wrapped_env.cc: New.
6547         * 22_locale/codecvt/in/wchar_t/wrapped_locale.cc: New.
6548         * 22_locale/codecvt/length/char/1.cc: New.
6549         * 22_locale/codecvt/length/char/wrapped_env.cc: New.
6550         * 22_locale/codecvt/length/char/wrapped_locale.cc: New.
6551         * 22_locale/codecvt/length/wchar_t/1.cc: New.
6552         * 22_locale/codecvt/length/wchar_t/wrapped_env.cc: New.
6553         * 22_locale/codecvt/length/wchar_t/wrapped_locale.cc: New.
6554         * 22_locale/codecvt/max_length/char/1.cc: New.
6555         * 22_locale/codecvt/max_length/char/wrapped_env.cc: New.
6556         * 22_locale/codecvt/max_length/char/wrapped_locale.cc: New.
6557         * 22_locale/codecvt/max_length/wchar_t/1.cc: New.
6558         * 22_locale/codecvt/max_length/wchar_t/wrapped_env.cc: New.
6559         * 22_locale/codecvt/max_length/wchar_t/wrapped_locale.cc: New.
6560         * 22_locale/codecvt/out/char/1.cc: New.
6561         * 22_locale/codecvt/out/char/wrapped_env.cc: New.
6562         * 22_locale/codecvt/out/char/wrapped_locale.cc: New.
6563         * 22_locale/codecvt/out/wchar_t/1.cc: New.
6564         * 22_locale/codecvt/out/wchar_t/wrapped_env.cc: New.
6565         * 22_locale/codecvt/out/wchar_t/wrapped_locale.cc: New.
6566         * 22_locale/codecvt/unicode/char.cc: New.
6567         * 22_locale/codecvt/unicode/wchar_t.cc: New.
6568         * 22_locale/codecvt/unshift/char/1.cc: New.
6569         * 22_locale/codecvt/unshift/char/wrapped_env.cc: New.
6570         * 22_locale/codecvt/unshift/char/wrapped_locale.cc: New.
6571         * 22_locale/codecvt/unshift/wchar_t/1.cc: New.
6572         * 22_locale/codecvt/unshift/wchar_t/wrapped_env.cc: New.
6573         * 22_locale/codecvt/unshift/wchar_t/wrapped_locale.cc: New.
6574         * 22_locale/collate/1.cc: New.
6575         * 22_locale/collate/2.cc: New.
6576         * 22_locale/collate/compare/char/1.cc: New.
6577         * 22_locale/collate/compare/char/2.cc: New.
6578         * 22_locale/collate/compare/char/wrapped_env.cc: New.
6579         * 22_locale/collate/compare/char/wrapped_locale.cc: New.
6580         * 22_locale/collate/compare/wchar_t/1.cc: New.
6581         * 22_locale/collate/compare/wchar_t/2.cc: New.
6582         * 22_locale/collate/compare/wchar_t/wrapped_env.cc: New.
6583         * 22_locale/collate/compare/wchar_t/wrapped_locale.cc: New.
6584         * 22_locale/collate/hash/char/1.cc: New.
6585         * 22_locale/collate/hash/char/2.cc: New.
6586         * 22_locale/collate/hash/char/wrapped_env.cc: New.
6587         * 22_locale/collate/hash/char/wrapped_locale.cc: New.
6588         * 22_locale/collate/hash/wchar_t/1.cc: New.
6589         * 22_locale/collate/hash/wchar_t/2.cc: New.
6590         * 22_locale/collate/hash/wchar_t/wrapped_env.cc: New.
6591         * 22_locale/collate/hash/wchar_t/wrapped_locale.cc: New.
6592         * 22_locale/collate/transform/char/2.cc: New.
6593         * 22_locale/collate/transform/char/wrapped_env.cc: New.
6594         * 22_locale/collate/transform/char/wrapped_locale.cc: New.
6595         * 22_locale/collate/transform/wchar_t/2.cc: New.
6596         * 22_locale/collate/transform/wchar_t/wrapped_env.cc: New.
6597         * 22_locale/collate/transform/wchar_t/wrapped_locale.cc: New.
6598         * 22_locale/collate_byname/1.cc: New.
6599         * 22_locale/ctype/1.cc: New.
6600         * 22_locale/ctype/2.cc: New.
6601         * 22_locale/ctype/cons/char/1.cc: New.
6602         * 22_locale/ctype/cons/char/wrapped_env.cc: New.
6603         * 22_locale/ctype/cons/char/wrapped_locale.cc: New.
6604         * 22_locale/ctype/is/char/1.cc: New.
6605         * 22_locale/ctype/is/char/2.cc: New.
6606         * 22_locale/ctype/is/char/3.cc: New.
6607         * 22_locale/ctype/is/char/wrapped_env.cc: New.
6608         * 22_locale/ctype/is/char/wrapped_locale.cc: New.
6609         * 22_locale/ctype/is/wchar_t/1.cc: New.
6610         * 22_locale/ctype/is/wchar_t/2.cc: New.
6611         * 22_locale/ctype/is/wchar_t/wrapped_env.cc: New.
6612         * 22_locale/ctype/is/wchar_t/wrapped_locale.cc: New.
6613         * 22_locale/ctype/narrow/char/1.cc: New.
6614         * 22_locale/ctype/narrow/char/2.cc: New.
6615         * 22_locale/ctype/narrow/char/wrapped_env.cc: New.
6616         * 22_locale/ctype/narrow/char/wrapped_locale.cc: New.
6617         * 22_locale/ctype/narrow/wchar_t/1.cc: New.
6618         * 22_locale/ctype/narrow/wchar_t/2.cc: New.
6619         * 22_locale/ctype/narrow/wchar_t/wrapped_env.cc: New.
6620         * 22_locale/ctype/narrow/wchar_t/wrapped_locale.cc: New.
6621         * 22_locale/ctype/scan/char/1.cc: New.
6622         * 22_locale/ctype/scan/char/wrapped_env.cc: New.
6623         * 22_locale/ctype/scan/char/wrapped_locale.cc: New.
6624         * 22_locale/ctype/scan/wchar_t/1.cc: New.
6625         * 22_locale/ctype/scan/wchar_t/wrapped_env.cc: New.
6626         * 22_locale/ctype/scan/wchar_t/wrapped_locale.cc: New.
6627         * 22_locale/ctype/to/char/1.cc: New.
6628         * 22_locale/ctype/to/char/wrapped_env.cc: New.
6629         * 22_locale/ctype/to/char/wrapped_locale.cc: New.
6630         * 22_locale/ctype/to/wchar_t/1.cc: New.
6631         * 22_locale/ctype/to/wchar_t/wrapped_env.cc: New.
6632         * 22_locale/ctype/to/wchar_t/wrapped_locale.cc: New.
6633         * 22_locale/ctype/widen/char/1.cc: New.
6634         * 22_locale/ctype/widen/char/wrapped_env.cc: New.
6635         * 22_locale/ctype/widen/char/wrapped_locale.cc: New.
6636         * 22_locale/ctype/widen/wchar_t/1.cc: New.
6637         * 22_locale/ctype/widen/wchar_t/wrapped_env.cc: New.
6638         * 22_locale/ctype/widen/wchar_t/wrapped_locale.cc: New.
6639         * 22_locale/facet/1.cc: New.
6640         * 22_locale/facet/2.cc: New.
6641         * 22_locale/global_templates/1.cc: New.
6642         * 22_locale/locale/cons/1.cc: New.
6643         * 22_locale/locale/cons/2.cc: New.
6644         * 22_locale/locale/cons/3.cc: New.
6645         * 22_locale/locale/cons/4.cc: New.
6646         * 22_locale/locale/cons/5.cc: New.
6647         * 22_locale/locale/cons/6.cc: New.
6648         * 22_locale/locale/cons/7.cc: New.
6649         * 22_locale/locale/global_locale_objects/1.cc: New.
6650         * 22_locale/locale/global_locale_objects/2.cc: New.
6651         * 22_locale/locale/global_locale_objects/3.cc: New.
6652         * 22_locale/locale/operations/1.cc: New.
6653         * 22_locale/locale/operations/2.cc: New.
6654         * 22_locale/messages/1.cc: New.
6655         * 22_locale/messages/2.cc: New.
6656         * 22_locale/messages/members/char/1.cc: New.
6657         * 22_locale/messages/members/char/2.cc: New.
6658         * 22_locale/messages/members/char/3.cc: New.
6659         * 22_locale/messages/members/char/wrapped_env.cc: New.
6660         * 22_locale/messages/members/char/wrapped_locale.cc: New.
6661         * 22_locale/messages_byname/1.cc: New.
6662         * 22_locale/money_get/1.cc: New.
6663         * 22_locale/money_get/2.cc: New.
6664         * 22_locale/money_get/get/char/1.cc: New.
6665         * 22_locale/money_get/get/char/2.cc: New.
6666         * 22_locale/money_get/get/char/3.cc: New.
6667         * 22_locale/money_get/get/char/4.cc: New.
6668         * 22_locale/money_get/get/char/5.cc: New.
6669         * 22_locale/money_get/get/char/6.cc: New.
6670         * 22_locale/money_get/get/char/7.cc: New.
6671         * 22_locale/money_get/get/char/8.cc: New.
6672         * 22_locale/money_get/get/char/wrapped_env.cc: New.
6673         * 22_locale/money_get/get/char/wrapped_locale.cc: New.
6674         * 22_locale/money_get/get/wchar_t/1.cc: New.
6675         * 22_locale/money_get/get/wchar_t/2.cc: New.
6676         * 22_locale/money_get/get/wchar_t/3.cc: New.
6677         * 22_locale/money_get/get/wchar_t/4.cc: New.
6678         * 22_locale/money_get/get/wchar_t/5.cc: New.
6679         * 22_locale/money_get/get/wchar_t/6.cc: New.
6680         * 22_locale/money_get/get/wchar_t/7.cc: New.
6681         * 22_locale/money_get/get/wchar_t/8.cc: New.
6682         * 22_locale/money_get/get/wchar_t/wrapped_env.cc: New.
6683         * 22_locale/money_get/get/wchar_t/wrapped_locale.cc: New.
6684         * 22_locale/money_put/1.cc: New.
6685         * 22_locale/money_put/2.cc: New.
6686         * 22_locale/money_put/put/char/1.cc: New.
6687         * 22_locale/money_put/put/char/2.cc: New.
6688         * 22_locale/money_put/put/char/3.cc: New.
6689         * 22_locale/money_put/put/char/4.cc: New.
6690         * 22_locale/money_put/put/char/5.cc: New.
6691         * 22_locale/money_put/put/char/6.cc: New.
6692         * 22_locale/money_put/put/char/wrapped_env.cc: New.
6693         * 22_locale/money_put/put/char/wrapped_locale.cc: New.
6694         * 22_locale/money_put/put/wchar_t/1.cc: New.
6695         * 22_locale/money_put/put/wchar_t/2.cc: New.
6696         * 22_locale/money_put/put/wchar_t/3.cc: New.
6697         * 22_locale/money_put/put/wchar_t/4.cc: New.
6698         * 22_locale/money_put/put/wchar_t/5.cc: New.
6699         * 22_locale/money_put/put/wchar_t/6.cc: New.
6700         * 22_locale/money_put/put/wchar_t/wrapped_env.cc: New.
6701         * 22_locale/money_put/put/wchar_t/wrapped_locale.cc: New.
6702         * 22_locale/moneypunct/1.cc: New.
6703         * 22_locale/moneypunct/2.cc: New.
6704         * 22_locale/moneypunct/3.cc: New.
6705         * 22_locale/moneypunct/members/char/1.cc: New.
6706         * 22_locale/moneypunct/members/char/2.cc: New.
6707         * 22_locale/moneypunct/members/char/wrapped_env.cc: New.
6708         * 22_locale/moneypunct/members/char/wrapped_locale.cc: New.
6709         * 22_locale/moneypunct/members/wchar_t/1.cc: New.
6710         * 22_locale/moneypunct/members/wchar_t/2.cc: New.
6711         * 22_locale/moneypunct/members/wchar_t/wrapped_env.cc: New.
6712         * 22_locale/moneypunct/members/wchar_t/wrapped_locale.cc: New.
6713         * 22_locale/moneypunct_byname/1.cc: New.
6714         * 22_locale/num_get/1.cc: New.
6715         * 22_locale/num_get/2.cc: New.
6716         * 22_locale/num_get/get/char/1.cc: New.
6717         * 22_locale/num_get/get/char/2.cc: New.
6718         * 22_locale/num_get/get/char/3.cc: New.
6719         * 22_locale/num_get/get/char/4.cc: New.
6720         * 22_locale/num_get/get/char/5.cc: New.
6721         * 22_locale/num_get/get/char/6.cc: New.
6722         * 22_locale/num_get/get/char/wrapped_env.cc: New.
6723         * 22_locale/num_get/get/char/wrapped_locale.cc: New.
6724         * 22_locale/num_get/get/wchar_t/1.cc: New.
6725         * 22_locale/num_get/get/wchar_t/2.cc: New.
6726         * 22_locale/num_get/get/wchar_t/3.cc: New.
6727         * 22_locale/num_get/get/wchar_t/4.cc: New.
6728         * 22_locale/num_get/get/wchar_t/5.cc: New.
6729         * 22_locale/num_get/get/wchar_t/6.cc: New.
6730         * 22_locale/num_get/get/wchar_t/wrapped_env.cc: New.
6731         * 22_locale/num_get/get/wchar_t/wrapped_locale.cc: New.
6732         * 22_locale/num_put/1.cc: New.
6733         * 22_locale/num_put/2.cc: New.
6734         * 22_locale/num_put/put/char/1.cc: New.
6735         * 22_locale/num_put/put/char/2.cc: New.
6736         * 22_locale/num_put/put/char/3.cc: New.
6737         * 22_locale/num_put/put/char/4.cc: New.
6738         * 22_locale/num_put/put/char/5.cc: New.
6739         * 22_locale/num_put/put/char/wrapped_env.cc: New.
6740         * 22_locale/num_put/put/char/wrapped_locale.cc: New.
6741         * 22_locale/num_put/put/wchar_t/1.cc: New.
6742         * 22_locale/num_put/put/wchar_t/2.cc: New.
6743         * 22_locale/num_put/put/wchar_t/3.cc: New.
6744         * 22_locale/num_put/put/wchar_t/4.cc: New.
6745         * 22_locale/num_put/put/wchar_t/5.cc: New.
6746         * 22_locale/num_put/put/wchar_t/wrapped_env.cc: New.
6747         * 22_locale/num_put/put/wchar_t/wrapped_locale.cc: New.
6748         * 22_locale/numpunct/1.cc: New.
6749         * 22_locale/numpunct/2.cc: New.
6750         * 22_locale/numpunct/members/char/1.cc: New.
6751         * 22_locale/numpunct/members/char/2.cc: New.
6752         * 22_locale/numpunct/members/char/wrapped_env.cc: New.
6753         * 22_locale/numpunct/members/char/wrapped_locale.cc: New.
6754         * 22_locale/numpunct/members/wchar_t/1.cc: New.
6755         * 22_locale/numpunct/members/wchar_t/2.cc: New.
6756         * 22_locale/numpunct/members/wchar_t/wrapped_env.cc: New.
6757         * 22_locale/numpunct/members/wchar_t/wrapped_locale.cc: New.
6758         * 22_locale/numpunct_byname/1.cc: New.
6759         * 22_locale/numpunct_byname/2.cc: New.
6760         * 22_locale/time_get/1.cc: New.
6761         * 22_locale/time_get/2.cc: New.
6762         * 22_locale/time_get/date_order/char/1.cc: New.
6763         * 22_locale/time_get/date_order/char/wrapped_env.cc: New.
6764         * 22_locale/time_get/date_order/char/wrapped_locale.cc: New.
6765         * 22_locale/time_get/date_order/wchar_t/1.cc: New.
6766         * 22_locale/time_get/date_order/wchar_t/wrapped_env.cc: New.
6767         * 22_locale/time_get/date_order/wchar_t/wrapped_locale.cc: New.
6768         * 22_locale/time_get/get_date/char/1.cc: New.
6769         * 22_locale/time_get/get_date/char/2.cc: New.
6770         * 22_locale/time_get/get_date/char/3.cc: New.
6771         * 22_locale/time_get/get_date/char/wrapped_env.cc: New.
6772         * 22_locale/time_get/get_date/char/wrapped_locale.cc: New.
6773         * 22_locale/time_get/get_date/wchar_t/1.cc: New.
6774         * 22_locale/time_get/get_date/wchar_t/2.cc: New.
6775         * 22_locale/time_get/get_date/wchar_t/3.cc: New.
6776         * 22_locale/time_get/get_date/wchar_t/wrapped_env.cc: New.
6777         * 22_locale/time_get/get_date/wchar_t/wrapped_locale.cc: New.
6778         * 22_locale/time_get/get_monthname/char/1.cc: New.
6779         * 22_locale/time_get/get_monthname/char/2.cc: New.
6780         * 22_locale/time_get/get_monthname/char/3.cc: New.
6781         * 22_locale/time_get/get_monthname/char/wrapped_env.cc: New.
6782         * 22_locale/time_get/get_monthname/char/wrapped_locale.cc: New.
6783         * 22_locale/time_get/get_monthname/wchar_t/1.cc: New.
6784         * 22_locale/time_get/get_monthname/wchar_t/2.cc: New.
6785         * 22_locale/time_get/get_monthname/wchar_t/3.cc: New.
6786         * 22_locale/time_get/get_monthname/wchar_t/wrapped_env.cc: New.
6787         * 22_locale/time_get/get_monthname/wchar_t/wrapped_locale.cc: New.
6788         * 22_locale/time_get/get_time/char/1.cc: New.
6789         * 22_locale/time_get/get_time/char/2.cc: New.
6790         * 22_locale/time_get/get_time/char/3.cc: New.
6791         * 22_locale/time_get/get_time/char/wrapped_env.cc: New.
6792         * 22_locale/time_get/get_time/char/wrapped_locale.cc: New.
6793         * 22_locale/time_get/get_time/wchar_t/1.cc: New.
6794         * 22_locale/time_get/get_time/wchar_t/2.cc: New.
6795         * 22_locale/time_get/get_time/wchar_t/3.cc: New.
6796         * 22_locale/time_get/get_time/wchar_t/wrapped_env.cc: New.
6797         * 22_locale/time_get/get_time/wchar_t/wrapped_locale.cc: New.
6798         * 22_locale/time_get/get_weekday/char/1.cc: New.
6799         * 22_locale/time_get/get_weekday/char/2.cc: New.
6800         * 22_locale/time_get/get_weekday/char/3.cc: New.
6801         * 22_locale/time_get/get_weekday/char/wrapped_env.cc: New.
6802         * 22_locale/time_get/get_weekday/char/wrapped_locale.cc: New.
6803         * 22_locale/time_get/get_weekday/wchar_t/1.cc: New.
6804         * 22_locale/time_get/get_weekday/wchar_t/2.cc: New.
6805         * 22_locale/time_get/get_weekday/wchar_t/3.cc: New.
6806         * 22_locale/time_get/get_weekday/wchar_t/wrapped_env.cc: New.
6807         * 22_locale/time_get/get_weekday/wchar_t/wrapped_locale.cc: New.
6808         * 22_locale/time_get/get_year/char/1.cc: New.
6809         * 22_locale/time_get/get_year/char/3.cc: New.
6810         * 22_locale/time_get/get_year/char/wrapped_env.cc: New.
6811         * 22_locale/time_get/get_year/char/wrapped_locale.cc: New.
6812         * 22_locale/time_get/get_year/wchar_t/1.cc: New.
6813         * 22_locale/time_get/get_year/wchar_t/3.cc: New.
6814         * 22_locale/time_get/get_year/wchar_t/wrapped_env.cc: New.
6815         * 22_locale/time_get/get_year/wchar_t/wrapped_locale.cc: New.
6816         * 22_locale/time_put/1.cc: New.
6817         * 22_locale/time_put/2.cc: New.
6818         * 22_locale/time_put/put/char/1.cc: New.
6819         * 22_locale/time_put/put/char/10.cc: New.
6820         * 22_locale/time_put/put/char/2.cc: New.
6821         * 22_locale/time_put/put/char/3.cc: New.
6822         * 22_locale/time_put/put/char/4.cc: New.
6823         * 22_locale/time_put/put/char/5.cc: New.
6824         * 22_locale/time_put/put/char/6.cc: New.
6825         * 22_locale/time_put/put/char/7.cc: New.
6826         * 22_locale/time_put/put/char/8.cc: New.
6827         * 22_locale/time_put/put/char/9.cc: New.
6828         * 22_locale/time_put/put/char/wrapped_env.cc: New.
6829         * 22_locale/time_put/put/char/wrapped_locale.cc: New.
6830         * 22_locale/time_put/put/wchar_t/1.cc: New.
6831         * 22_locale/time_put/put/wchar_t/10.cc: New.
6832         * 22_locale/time_put/put/wchar_t/2.cc: New.
6833         * 22_locale/time_put/put/wchar_t/3.cc: New.
6834         * 22_locale/time_put/put/wchar_t/4.cc: New.
6835         * 22_locale/time_put/put/wchar_t/5.cc: New.
6836         * 22_locale/time_put/put/wchar_t/6.cc: New.
6837         * 22_locale/time_put/put/wchar_t/7.cc: New.
6838         * 22_locale/time_put/put/wchar_t/8.cc: New.
6839         * 22_locale/time_put/put/wchar_t/9.cc: New.
6840         * 22_locale/time_put/put/wchar_t/wrapped_env.cc: New.
6841         * 22_locale/time_put/put/wchar_t/wrapped_locale.cc: New.
6843 2003-01-16  Jeffrey D. Oldham  <oldham@codesourcery.com>
6845         * config/locale/generic/messages_members.h
6846         (messages_byname<_CharT>::messages_byname): Use this-> to refer to
6847         unqualified members of base clasess.
6849 2003-01-16  Mark Mitchell  <mark@codesourcery.com>
6850             Jeffrey Oldham <oldham@codesourcery.com>
6852         * config/locale/gnu/messages_members.h: Use this-> to refer to
6853         unqualified members of base clasess.
6854         * config/locale/ieee_1003.1-2001/codecvt_specializations.h: Likewise.
6855         * include/bits/codecvt.h: Likewise.
6856         * include/bits/deque.tcc: Likewise.
6857         * include/bits/fstream.tcc: Likewise.
6858         * include/bits/istream.tcc: Likewise.
6859         * include/bits/list.tcc: Likewise.
6860         * include/bits/locale_facets.h: Likewise.
6861         * include/bits/ostream.tcc: Likewise.
6862         * include/bits/sstream.tcc: Likewise.
6863         * include/bits/stl_bvector.h: Likewise.
6864         * include/bits/stl_deque.h: Likewise.
6865         * include/bits/stl_list.h: Likewise.
6866         * include/bits/stl_tree.h: Likewise.
6867         * include/bits/stl_vector.h: Likewise.
6868         * include/bits/vector.tcc: Likewise.
6869         * include/ext/ropeimpl.h: Likewise.
6870         * include/ext/stdio_filebuf.h: Likewise.
6871         * include/ext/stl_rope.h: Likewise.
6872         * include/std/std_fstream.h: Likewise.
6873         * include/std/std_sstream.h: Likewise.
6875 2003-01-15  Phil Edwards  <pme@gcc.gnu.org>
6877         * include/bits/basic_string.tcc (_S_string_copy): Unused, remove.
6879 2003-01-15  Benjamin Kosnik  <bkoz@redhat.com>
6881         * acinclude.m4 (GLIBCPP_CHECK_WCHAR_T_SUPPORT): Substitute
6882         GLIBCPP_TEST_WCHAR_T if building wchar_t bits in the library.
6883         * aclocal.m4: Regenerate.
6884         * configure: Regenerate.
6885         * testsuite/Makefile.am (all-local): Add conditional rule to
6886         generate testsuite_wchar_t.
6887         * testsuite/Makefile.in: Regenerate.
6888         * testsuite/lib/libstdc++-v3-dg.exp
6889         (libstdc++-v3-list-sourcefiles): Remove wchar_t files if
6890         testsuite_wchar_t is not present in the build directory.
6891         * testsuite/libstdc++-v3.dg/dg.exp: Add -g -O2 to DEFAULT_CXXFLAGS.
6892         Remove setulimit bits.
6893         * testsuite/26_numerics/complex_value.cc: Set to noopts.
6894         * testsuite/Makefile.am (CLEANFILES): Add.
6895         * testsuite/Makefile.in: Regenerate.
6897 2003-01-15  John David Anglin  <dave@hiauly1.hia.nrc.ca>
6899         * config/os/hpux/os_defines.h (_GLIBCPP_GTHREAD_USE_WEAK): Define for
6900         __hppa__.
6902 2003-01-14  Jeffrey D. Oldham  <oldham@codesourcery.com>
6904         Further conform g++'s __vmi_class_type_info to the C++ ABI
6905         specification.
6906         * libsupc++/cxxabi.h
6907         (__vmi_class_type_info::__flags_masks): Remove enumerations not
6908         required by the specification.
6910 2003-01-12  Benjamin Kosnik  <bkoz@redhat.com>
6912         Renames, namespaces for testsuite utilities.
6913         * testsuite/testsuite_hooks.h: Put into namespace __gnu_cxx_test.
6914         (gnu_allocator_tracker): Rename to allocation_tracker.
6915         (gnu_new_allocator): Rename to tracker_alloc.
6916         (__set_testsuite_memlimit): Rename to set_memory_limits.
6917         (gnu_assignment_operator): Rename to assignment_operator.
6918         (gnu_destructor): Rename to destructor.
6919         (gnu_copy_tracker): Rename to copy_tracker.
6920         (gnu_char, gnu_int, gnu_long): Rename to pod_char, pod_int, pod_long.
6921         (run_tests_wrapped_locale): New.
6922         (run_tests_wrapped_env): New.
6923         * testsuite/testsuite_hooks.cc: Same.
6924         (class locale_data): Add.
6925         (class enviornment_variable): Add.
6926         (class not_found): Add.
6927         * testsuite/testsuite_allocator.h: Same.
6928         * testsuite/testsuite_allocator.cc: Same.
6929         * testsuite/23_containers/deque_ctor.cc
6930         (test_copy_ctor_exception_safety): Change gnu_allocator_tracker to
6931         allocation_tracker.
6932         Change gnu_new_allocator to tracker_alloc.
6933         Change gnu_counting_struct to counter.
6934         Change gnu_copy_tracker to copy_tracker.
6935         Change gnu_copy_constructor to copy_constructor.
6936         Change gnu_assignment_operator to assignment_operator.
6937         Inject.
6938         * testsuite/23_containers/vector_capacity.cc: Same.
6939         * testsuite/23_containers/vector_ctor.cc (test01): Same.
6940         * testsuite/23_containers/list_modifiers.cc: Change
6941         gnu_copy_tracker to copy_tracker.
6942         * testsuite/21_strings/ctor_copy_dtor.cc (main): Change
6943         __set_testsuite_memlimit to set_memory_limits.
6944         * testsuite/21_strings/insert.cc (main): Same.
6945         * testsuite/27_io/filebuf.cc: Change gnu_char to pod_char.
6946         * testsuite/27_io/stringstream.cc: Same.
6947         * testsuite/27_io/stringbuf.cc: Same.
6948         * testsuite/27_io/streambuf.cc: Same.
6949         * testsuite/27_io/ostream.cc: Same.
6950         * testsuite/27_io/istream.cc: Same.
6951         * testsuite/27_io/fstream.cc: Same.
6952         * testsuite/lib/libstdc++-v3-dg.exp
6953         (libstdc++-v3-list-sourcefiles): Additionally handle files two and
6954         three levels deeper in glob patterns.
6956 2003-01-11  Phil Edwards  <pme@gcc.gnu.org>
6958         * docs/doxygen/tables.html:  Finished now.
6959         * docs/doxygen/user.cfg.in:  Update to latest version of Doxygen.
6960         * include/bits/basic_ios.h (basic_ios::rdbuf):  Add example to
6961         comments.
6963         * include/bits/deque.tcc, include/bits/stl_alloc.h,
6964         include/bits/stl_deque.h, include/bits/stl_list.h,
6965         include/bits/stl_vector.h:  Remove _GLIBCPP_DEPRECATED bits scheduled
6966         for 3.4 removal.
6968 2003-01-09  Benjamin Kosnik  <bkoz@redhat.com>
6970         * configure.in: Revert.
6971         * configure: Regenerate.
6973 2003-01-09  Christian Cornelssen  <ccorn@cs.tu-berlin.de>
6975         * include/Makefile.am (install-data-local): Prepend
6976         $(DESTDIR) to destination paths in all (un)installation
6977         commands.  Use ${c_base_builddir} and ${std_builddir}
6978         as destination subdirectories to achieve consistency with
6979         preceding mkinstalldirs commands.  No effect because both
6980         variables contain "." only.
6981         * include/Makefile.in: Regenerate.
6983 2003-01-08  Benjamin Kosnik  <bkoz@redhat.com>
6985         * include/Makefile.am (stamp-*): Add checks for existing stamps.
6986         * include/Makefile.in: Regenerate.
6988         * acinclude.m4 (GLIBCPP_ENABLE_DEBUG): Correct comment.
6989         * aclocal.m4: Regenerate.
6991         * configure.in: Don't add new multi-do rules every time the
6992         directory is reconfigured.
6993         * configure: Regenerate.
6995 2003-01-08  Brad Spencer  <spencer@infointeractive.com>
6996             Nathan Myers  <ncm@cantrip.org>
6998         * src/Makefile.am (stamp-debug): Clean.
6999         * src/Makefile.in: Regenerate.
7001 2003-01-07  Benjamin Kosnik  <bkoz@redhat.com>
7003         PR libstdc++/8707
7004         * Makefile.am (distclean-multi): Fix.
7005         * Makefile.in: Regenerate.
7007 2003-01-06  Benjamin Kosnik  <bkoz@redhat.com>
7009         * include/bits/locale_facets.h (messages): Move ctor, dtor
7010         definitions to..
7011         (__timepunct): Same.
7012         * config/locale/gnu/messages_members.h (messages): Add dtor, ctor
7013         definitions. Conditionalize for GNU systems.
7014         * config/locale/generic/messages_members.h (messages): Add dtor, ctor
7015         definitions.
7016         * config/locale/gnu/time_members.h (messages): New. Add dtor, ctor
7017         definitions. Conditionalize for GNU systems.
7018         * config/locale/generic/time_members.h (messages): New. Add dtor, ctor
7019         definitions.
7020         * include/bits/localefwd.h (locale::facet::_S_c_name): Add.
7021         * src/locale.cc: Define.
7022         * src/localename.cc (locale::_Impl::_Impl(facet**, size_t, bool):
7023         Use it.
7024         * config/locale/gnu/time_members.h: Use it.
7025         * config/locale/gnu/messages_members.h: Use it.
7026         * config/linker-map.gnu: Add locale::facets details.
7027         * include/Makefile.am (target_headers_extra): Add time_members.h.
7028         * include/Makefile.in: Regenerate.
7029         * acinclude.m4: Export CTIME_H.
7030         * aclocal.m4: Regenerate.
7031         * configure: Regnerate.
7033 2003-01-06  Paolo Carlini  <pcarlini@unitus.it>
7035         * src/codecvt.cc
7036         (codecvt<char, char, mbstate_t>::do_in, do_out):
7037         Tweak parameters to avoid unused parameter warnings.
7039 2003-01-06  Paolo Carlini  <pcarlini@unitus.it>
7041         PR libstdc++/9151
7042         * include/bits/locale_facets.cc (num_put::_M_convert_float):
7043         Limit __prec to digits10 + 2, not digits10 + 1, taking into
7044         account the possibility of %{g,G} conversion specifiers
7045         inside _S_format_float.
7046         * testsuite/27_io/ostream_inserter_arith.cc (test06): Add.
7048 2003-01-06  Kaveh R. Ghazi  <ghazi@caip.rutgers.edu>
7050         * testsuite/lib/libstdc++-v3-dg.exp (libstdc++-v3-init,
7051         libstdc++-v3-list-sourcefiles): Additionally handle files one
7052         level deeper in glob patterns.
7054         * testsuite/27_io/istream_extractor_arith.cc: Delete, split...
7055         * testsuite/27_io/istream_extractor_arith/01.cc,
7056         testsuite/27_io/istream_extractor_arith/02.cc,
7057         testsuite/27_io/istream_extractor_arith/03.cc,
7058         testsuite/27_io/istream_extractor_arith/06.cc,
7059         testsuite/27_io/istream_extractor_arith/07.cc,
7060         testsuite/27_io/istream_extractor_arith/08.cc,
7061         testsuite/27_io/istream_extractor_arith/09.cc,
7062         testsuite/27_io/istream_extractor_arith/10.cc,
7063         testsuite/27_io/istream_extractor_arith/11.cc,
7064         testsuite/27_io/istream_extractor_arith/12.cc,
7065         testsuite/27_io/istream_extractor_arith/13.cc: ... to new files.
7066         * testsuite/27_io/istream_extractor_arith/12.cc: Add XFAIL for
7067         sparc*-*-solaris2*.
7069 2003-01-05  Paolo Carlini <pcarlini@unitus.it>
7071         PR libstdc++/9168
7072         * src/codecvt.cc
7073         (codecvt<char, char, mbstate_t>::do_in, do_out):
7074         Implement the resolution of DR19 (TC).
7075         * testsuite/22_locale/codecvt_members_char_char.cc
7076         (test01): Tweak.
7078 2003-01-02  Jason Merrill  <jason@redhat.com>
7080         * config/cpu/i486/atomicity.h (__exchange_and_add, __atomic_add):
7081         *__mem is also an output.
7082         * config/cpu/m68k/atomicity.h (__exchange_and_add): Likewise.