OSDN Git Service

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