OSDN Git Service

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